ruạṛ
-- MySQL dump 10.19 Distrib 10.3.39-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: juiceelectricalnew -- ------------------------------------------------------ -- Server version 10.3.39-MariaDB-cll-lve /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_actionscheduler_actions` -- DROP TABLE IF EXISTS `wp_actionscheduler_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_actions` ( `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `hook` varchar(191) NOT NULL, `status` varchar(20) NOT NULL, `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00', `args` varchar(191) DEFAULT NULL, `schedule` longtext DEFAULT NULL, `group_id` bigint(20) unsigned NOT NULL DEFAULT 0, `attempts` int(11) NOT NULL DEFAULT 0, `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00', `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00', `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0, `extended_args` varchar(8000) DEFAULT NULL, PRIMARY KEY (`action_id`), KEY `hook` (`hook`), KEY `status` (`status`), KEY `scheduled_date_gmt` (`scheduled_date_gmt`), KEY `args` (`args`), KEY `group_id` (`group_id`), KEY `last_attempt_gmt` (`last_attempt_gmt`), KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`) ) ENGINE=InnoDB AUTO_INCREMENT=1180 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_actions` -- LOCK TABLES `wp_actionscheduler_actions` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_claims` -- DROP TABLE IF EXISTS `wp_actionscheduler_claims`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_claims` ( `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`claim_id`), KEY `date_created_gmt` (`date_created_gmt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_claims` -- LOCK TABLES `wp_actionscheduler_claims` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_groups` -- DROP TABLE IF EXISTS `wp_actionscheduler_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_groups` ( `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(255) NOT NULL, PRIMARY KEY (`group_id`), KEY `slug` (`slug`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_groups` -- LOCK TABLES `wp_actionscheduler_groups` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_logs` -- DROP TABLE IF EXISTS `wp_actionscheduler_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_logs` ( `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `action_id` bigint(20) unsigned NOT NULL, `message` text NOT NULL, `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', `log_date_local` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`log_id`), KEY `action_id` (`action_id`), KEY `log_date_gmt` (`log_date_gmt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_logs` -- LOCK TABLES `wp_actionscheduler_logs` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, `comment_author` tinytext 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=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_draft_submissions` -- DROP TABLE IF EXISTS `wp_gf_draft_submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_draft_submissions` ( `uuid` char(32) NOT NULL, `email` varchar(255) DEFAULT NULL, `form_id` mediumint(10) unsigned NOT NULL, `date_created` datetime NOT NULL, `ip` varchar(45) NOT NULL, `source_url` longtext NOT NULL, `submission` longtext NOT NULL, PRIMARY KEY (`uuid`), KEY `form_id` (`form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_draft_submissions` -- LOCK TABLES `wp_gf_draft_submissions` WRITE; /*!40000 ALTER TABLE `wp_gf_draft_submissions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_gf_draft_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_entry` -- DROP TABLE IF EXISTS `wp_gf_entry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_entry` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `form_id` mediumint(10) unsigned NOT NULL, `post_id` bigint(10) unsigned DEFAULT NULL, `date_created` datetime NOT NULL, `date_updated` datetime DEFAULT NULL, `is_starred` tinyint(10) NOT NULL DEFAULT 0, `is_read` tinyint(10) NOT NULL DEFAULT 0, `ip` varchar(45) NOT NULL, `source_url` varchar(200) NOT NULL DEFAULT '', `user_agent` varchar(250) NOT NULL DEFAULT '', `currency` varchar(5) DEFAULT NULL, `payment_status` varchar(15) DEFAULT NULL, `payment_date` datetime DEFAULT NULL, `payment_amount` decimal(19,2) DEFAULT NULL, `payment_method` varchar(30) DEFAULT NULL, `transaction_id` varchar(50) DEFAULT NULL, `is_fulfilled` tinyint(10) DEFAULT NULL, `created_by` bigint(10) unsigned DEFAULT NULL, `transaction_type` tinyint(10) DEFAULT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `source_id` bigint(10) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `form_id` (`form_id`), KEY `form_id_status` (`form_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=2653 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_entry` -- LOCK TABLES `wp_gf_entry` WRITE; /*!40000 ALTER TABLE `wp_gf_entry` DISABLE KEYS */; INSERT INTO `wp_gf_entry` VALUES (1,1,NULL,'2023-04-03 00:37:17','2023-04-03 00:37:17',0,0,'151.210.171.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2,1,NULL,'2023-04-03 00:43:03','2023-04-03 00:43:03',0,0,'203.109.195.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,'active',NULL),(3,1,NULL,'2023-04-03 01:17:12','2023-04-03 01:17:12',0,0,'118.92.231.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(4,1,NULL,'2023-04-03 03:08:47','2023-04-03 03:08:47',0,0,'45.252.189.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(5,1,NULL,'2023-04-03 07:06:34','2023-04-03 07:06:34',0,0,'103.225.201.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(6,1,NULL,'2023-04-03 12:25:16','2023-04-03 12:25:16',0,0,'49.156.46.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(7,1,NULL,'2023-04-03 13:48:03','2023-04-03 13:48:03',0,0,'5.180.150.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(8,1,NULL,'2023-04-03 18:56:01','2023-04-03 18:56:01',0,0,'222.153.203.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(9,1,NULL,'2023-04-04 08:15:59','2023-04-04 08:15:59',0,0,'23.82.86.233','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(10,1,NULL,'2023-04-04 14:11:55','2023-04-04 14:11:55',0,0,'154.84.143.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(11,1,NULL,'2023-04-04 16:37:53','2023-04-04 16:37:53',0,0,'154.37.66.28','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(12,1,NULL,'2023-04-05 06:38:53','2023-04-05 06:38:53',0,0,'206.232.3.217','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(13,1,NULL,'2023-04-05 09:27:50','2023-04-05 09:27:50',0,0,'23.106.192.236','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(14,1,NULL,'2023-04-05 10:53:54','2023-04-05 10:53:54',0,0,'101.255.151.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(15,1,NULL,'2023-04-05 11:36:45','2023-04-05 11:36:45',0,0,'37.19.199.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(16,1,NULL,'2023-04-05 16:51:47','2023-04-05 16:51:47',0,0,'66.94.105.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(17,1,NULL,'2023-04-05 17:52:28','2023-04-05 17:52:28',0,0,'149.200.187.238','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(18,1,NULL,'2023-04-05 20:43:46','2023-04-05 20:43:46',0,0,'23.82.40.16','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(19,1,NULL,'2023-04-05 22:18:11','2023-04-05 22:18:11',0,0,'91.223.133.222','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(20,1,NULL,'2023-04-05 22:42:01','2023-04-05 22:42:01',0,0,'38.153.195.32','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(21,1,NULL,'2023-04-05 23:41:37','2023-04-05 23:41:37',0,0,'23.81.124.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(22,1,NULL,'2023-04-06 02:33:40','2023-04-06 02:33:40',0,0,'139.144.231.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(23,1,NULL,'2023-04-06 03:18:36','2023-04-06 03:18:36',0,0,'5.78.92.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(24,1,NULL,'2023-04-06 07:36:05','2023-04-06 07:36:05',0,0,'154.202.120.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(25,1,NULL,'2023-04-06 08:18:24','2023-04-06 08:18:24',0,0,'23.106.192.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(26,1,NULL,'2023-04-06 17:59:06','2023-04-06 17:59:06',0,0,'193.24.215.118','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(27,1,NULL,'2023-04-06 19:22:39','2023-04-06 19:22:39',0,0,'191.102.132.175','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(28,1,NULL,'2023-04-06 22:22:53','2023-04-06 22:22:53',0,0,'206.232.3.218','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(29,1,NULL,'2023-04-06 22:31:55','2023-04-06 22:31:55',0,0,'107.173.2.98','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(30,1,NULL,'2023-04-06 22:35:17','2023-04-06 22:35:17',0,0,'23.106.20.195','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(31,1,NULL,'2023-04-06 22:51:04','2023-04-06 22:51:04',0,0,'23.81.124.137','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(32,1,NULL,'2023-04-06 23:27:50','2023-04-06 23:27:50',0,0,'23.105.4.114','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(33,1,NULL,'2023-04-07 00:53:22','2023-04-07 00:53:22',0,0,'84.17.60.179','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(34,1,NULL,'2023-04-07 01:11:33','2023-04-07 01:11:33',0,0,'103.231.88.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(35,1,NULL,'2023-04-07 03:27:38','2023-04-07 03:27:38',0,0,'156.146.36.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(36,1,NULL,'2023-04-07 05:22:46','2023-04-07 05:22:46',0,0,'84.17.60.74','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(37,1,NULL,'2023-04-07 06:40:44','2023-04-07 06:40:44',0,0,'49.156.46.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(38,1,NULL,'2023-04-07 06:45:26','2023-04-07 06:45:26',0,0,'191.101.209.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(40,1,NULL,'2023-04-07 11:32:22','2023-04-07 11:32:22',0,0,'5.78.88.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(41,1,NULL,'2023-04-07 13:33:25','2023-04-07 13:33:25',0,0,'50.118.222.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(42,1,NULL,'2023-04-07 15:24:32','2023-04-07 15:24:32',0,0,'168.91.66.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(43,1,NULL,'2023-04-07 17:24:26','2023-04-07 17:24:26',0,0,'154.13.63.16','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(44,1,NULL,'2023-04-07 18:48:52','2023-04-07 18:48:52',0,0,'104.160.17.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(45,1,NULL,'2023-04-07 19:26:26','2023-04-07 19:26:26',0,0,'168.91.79.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(46,1,NULL,'2023-04-07 20:03:33','2023-04-07 20:03:33',0,0,'185.107.57.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(47,1,NULL,'2023-04-07 21:13:38','2023-04-07 21:13:38',0,0,'154.28.72.238','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(48,1,NULL,'2023-04-08 02:51:44','2023-04-08 02:51:44',0,0,'149.200.187.238','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(49,1,NULL,'2023-04-08 03:01:52','2023-04-08 03:01:52',0,0,'185.107.44.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(50,1,NULL,'2023-04-08 07:49:23','2023-04-08 07:49:23',0,0,'38.153.138.92','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(51,1,NULL,'2023-04-08 10:37:51','2023-04-08 10:37:51',0,0,'91.223.133.190','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(52,1,NULL,'2023-04-08 11:03:49','2023-04-08 11:03:49',0,0,'154.201.62.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(53,1,NULL,'2023-04-08 16:38:56','2023-04-08 16:38:56',0,0,'168.91.66.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(54,1,NULL,'2023-04-08 19:38:32','2023-04-08 19:38:32',0,0,'204.217.203.54','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(55,1,NULL,'2023-04-08 20:39:10','2023-04-08 20:39:10',0,0,'193.36.213.244','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(56,1,NULL,'2023-04-09 02:13:38','2023-04-09 02:13:38',0,0,'23.231.36.205','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(57,1,NULL,'2023-04-09 04:46:49','2023-04-09 04:46:49',0,0,'197.53.221.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(58,1,NULL,'2023-04-09 06:16:24','2023-04-09 06:16:24',0,0,'193.36.211.212','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(59,1,NULL,'2023-04-09 07:08:04','2023-04-09 07:08:04',0,0,'45.86.244.151','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(60,1,NULL,'2023-04-09 07:32:27','2023-04-09 07:32:27',0,0,'23.81.124.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(61,1,NULL,'2023-04-09 08:14:48','2023-04-09 08:14:48',0,0,'104.143.226.233','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(62,1,NULL,'2023-04-09 15:11:43','2023-04-09 15:11:43',0,0,'65.108.0.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(63,1,NULL,'2023-04-09 16:38:00','2023-04-09 16:38:00',0,0,'204.217.202.182','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(64,1,NULL,'2023-04-09 18:44:46','2023-04-09 18:44:46',0,0,'204.217.205.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(65,1,NULL,'2023-04-09 19:56:41','2023-04-09 19:56:41',0,0,'204.217.203.252','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(66,1,NULL,'2023-04-10 01:05:09','2023-04-10 01:05:09',0,0,'23.94.47.102','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(68,1,NULL,'2023-04-10 13:17:49','2023-04-10 13:17:49',0,0,'154.85.124.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(70,1,NULL,'2023-04-10 17:33:27','2023-04-10 17:33:27',0,0,'119.82.89.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(71,1,NULL,'2023-04-10 18:43:04','2023-04-10 18:43:04',0,0,'154.28.72.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(72,1,NULL,'2023-04-10 21:20:44','2023-04-10 21:20:44',0,0,'172.241.168.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(73,1,NULL,'2023-04-10 21:46:38','2023-04-10 21:46:38',0,0,'146.70.123.156','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(74,1,NULL,'2023-04-11 02:40:13','2023-04-11 02:40:13',0,0,'154.13.63.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(75,1,NULL,'2023-04-11 05:09:22','2023-04-11 05:09:22',0,0,'23.82.104.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(76,1,NULL,'2023-04-11 12:49:22','2023-04-11 12:49:22',0,0,'65.108.0.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(77,1,NULL,'2023-04-11 15:05:04','2023-04-11 15:05:04',0,0,'154.28.72.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(78,1,NULL,'2023-04-11 15:08:55','2023-04-11 15:08:55',0,0,'154.28.72.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(79,1,NULL,'2023-04-11 16:48:47','2023-04-11 16:48:47',0,0,'176.10.136.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(80,1,NULL,'2023-04-11 20:46:15','2023-04-11 20:46:15',0,0,'23.80.150.181','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(81,1,NULL,'2023-04-11 22:44:14','2023-04-11 22:44:14',0,0,'107.181.130.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(82,1,NULL,'2023-04-12 02:23:49','2023-04-12 02:23:49',0,0,'172.241.241.147','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(83,1,NULL,'2023-04-12 09:11:01','2023-04-12 09:11:01',0,0,'143.244.44.183','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(84,1,NULL,'2023-04-12 13:24:07','2023-04-12 13:24:07',0,0,'23.236.255.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(85,1,NULL,'2023-04-12 14:58:32','2023-04-12 14:58:32',0,0,'38.153.105.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(86,1,NULL,'2023-04-12 15:24:35','2023-04-12 15:24:35',0,0,'204.217.204.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(87,1,NULL,'2023-04-12 15:26:02','2023-04-12 15:26:02',0,0,'204.217.204.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(88,1,NULL,'2023-04-12 16:17:58','2023-04-12 16:17:58',0,0,'65.108.0.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(89,1,NULL,'2023-04-12 20:13:52','2023-04-12 20:13:52',0,0,'103.112.0.50','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(90,1,NULL,'2023-04-12 20:26:27','2023-04-12 20:26:27',0,0,'91.219.212.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecho) Chrome/51.0.2704.84 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(91,1,NULL,'2023-04-12 22:12:43','2023-04-12 22:12:43',0,0,'138.128.59.156','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(92,1,NULL,'2023-04-12 23:52:18','2023-04-12 23:52:18',0,0,'23.106.192.71','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(93,1,NULL,'2023-04-13 03:21:23','2023-04-13 03:21:23',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(94,1,NULL,'2023-04-13 10:34:15','2023-04-13 10:34:15',0,0,'172.241.117.188','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(95,1,NULL,'2023-04-13 12:29:30','2023-04-13 12:29:30',0,0,'136.0.45.71','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(96,1,NULL,'2023-04-13 12:29:38','2023-04-13 12:29:38',0,0,'136.0.45.71','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(97,1,NULL,'2023-04-13 13:08:33','2023-04-13 13:08:33',0,0,'204.217.205.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(98,1,NULL,'2023-04-13 14:59:27','2023-04-13 14:59:27',0,0,'173.208.27.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(99,1,NULL,'2023-04-13 16:03:39','2023-04-13 16:03:39',0,0,'38.153.113.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(100,1,NULL,'2023-04-13 20:31:37','2023-04-13 20:31:37',0,0,'23.106.192.71','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(101,1,NULL,'2023-04-13 22:37:37','2023-04-13 22:37:37',0,0,'5.181.43.3','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(102,1,NULL,'2023-04-14 05:10:27','2023-04-14 05:10:27',0,0,'191.102.151.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(103,1,NULL,'2023-04-14 07:37:33','2023-04-14 07:37:33',0,0,'193.36.209.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(104,1,NULL,'2023-04-14 15:58:53','2023-04-14 15:58:53',0,0,'107.179.114.210','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(105,1,NULL,'2023-04-14 17:01:00','2023-04-14 17:01:00',0,0,'103.221.234.45','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(106,1,NULL,'2023-04-14 20:06:18','2023-04-14 20:06:18',0,0,'23.81.60.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(107,1,NULL,'2023-04-15 04:53:28','2023-04-15 04:53:28',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(108,1,NULL,'2023-04-15 05:51:06','2023-04-15 05:51:06',0,0,'181.215.16.160','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(109,1,NULL,'2023-04-15 08:04:30','2023-04-15 08:04:30',0,0,'23.106.192.106','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(110,1,NULL,'2023-04-15 10:11:35','2023-04-15 10:11:35',0,0,'38.153.123.203','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(111,1,NULL,'2023-04-15 14:31:09','2023-04-15 14:31:09',0,0,'196.16.74.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(112,1,NULL,'2023-04-15 14:40:24','2023-04-15 14:40:24',0,0,'172.241.243.137','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(113,1,NULL,'2023-04-15 19:10:29','2023-04-15 19:10:29',0,0,'23.81.62.237','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(114,1,NULL,'2023-04-15 20:58:51','2023-04-15 20:58:51',0,0,'23.230.42.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(115,1,NULL,'2023-04-16 00:27:03','2023-04-16 00:27:03',0,0,'34.171.51.226','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(116,1,NULL,'2023-04-16 00:55:47','2023-04-16 00:55:47',0,0,'154.202.124.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(117,1,NULL,'2023-04-16 01:41:53','2023-04-16 01:41:53',0,0,'191.102.132.175','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(118,1,NULL,'2023-04-16 02:12:59','2023-04-16 02:12:59',0,0,'45.158.185.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(119,1,NULL,'2023-04-16 07:42:50','2023-04-16 07:42:50',0,0,'194.36.96.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(120,1,NULL,'2023-04-16 13:32:44','2023-04-16 13:32:44',0,0,'143.244.44.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(121,1,NULL,'2023-04-16 14:43:55','2023-04-16 14:43:55',0,0,'198.46.209.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(122,1,NULL,'2023-04-16 19:06:30','2023-04-16 19:06:30',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(123,1,NULL,'2023-04-17 04:03:10','2023-04-17 04:03:10',0,0,'38.153.134.91','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(124,1,NULL,'2023-04-17 14:42:11','2023-04-17 14:42:11',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(125,1,NULL,'2023-04-17 16:34:03','2023-04-17 16:34:03',0,0,'154.30.216.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(126,1,NULL,'2023-04-17 19:06:57','2023-04-17 19:06:57',0,0,'138.128.59.137','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(127,1,NULL,'2023-04-17 20:14:36','2023-04-17 20:14:36',0,0,'193.36.215.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(128,1,NULL,'2023-04-17 21:38:54','2023-04-17 21:38:54',0,0,'23.81.59.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(129,1,NULL,'2023-04-17 22:32:28','2023-04-17 22:32:28',0,0,'23.105.2.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(130,1,NULL,'2023-04-18 12:06:11','2023-04-18 12:06:11',0,0,'146.70.55.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(131,1,NULL,'2023-04-18 14:35:05','2023-04-18 14:35:05',0,0,'185.107.80.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(132,1,NULL,'2023-04-18 15:14:07','2023-04-18 15:14:07',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(133,1,NULL,'2023-04-18 17:01:36','2023-04-18 17:01:36',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(134,1,NULL,'2023-04-18 17:13:17','2023-04-18 17:13:17',0,0,'65.108.0.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(135,1,NULL,'2023-04-18 20:58:17','2023-04-18 20:58:17',0,0,'23.108.18.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(136,1,NULL,'2023-04-19 00:58:44','2023-04-19 00:58:44',0,0,'172.241.153.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(137,1,NULL,'2023-04-19 04:41:33','2023-04-19 04:41:33',0,0,'185.107.95.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(138,1,NULL,'2023-04-19 04:43:37','2023-04-19 04:43:37',0,0,'45.120.50.195','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(139,1,NULL,'2023-04-19 10:40:30','2023-04-19 10:40:30',0,0,'172.241.153.193','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(140,1,NULL,'2023-04-19 15:04:30','2023-04-19 15:04:30',0,0,'23.95.204.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(141,1,NULL,'2023-04-19 15:14:59','2023-04-19 15:14:59',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(142,1,NULL,'2023-04-19 20:14:08','2023-04-19 20:14:08',0,0,'46.185.191.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(143,1,NULL,'2023-04-19 20:48:19','2023-04-19 20:48:19',0,0,'185.85.163.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(144,1,NULL,'2023-04-20 00:03:48','2023-04-20 00:03:48',0,0,'65.108.0.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5042.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(145,1,NULL,'2023-04-20 02:44:48','2023-04-20 02:44:48',0,0,'140.99.75.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(146,1,NULL,'2023-04-20 06:57:08','2023-04-20 06:57:08',0,0,'185.107.80.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(147,1,NULL,'2023-04-20 07:34:56','2023-04-20 07:34:56',0,0,'185.136.160.220','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(148,1,NULL,'2023-04-20 10:40:17','2023-04-20 10:40:17',0,0,'173.208.28.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(149,1,NULL,'2023-04-20 11:19:06','2023-04-20 11:19:06',0,0,'173.44.223.122','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(150,1,NULL,'2023-04-20 12:58:01','2023-04-20 12:58:01',0,0,'23.106.26.113','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(151,1,NULL,'2023-04-20 15:39:57','2023-04-20 15:39:57',0,0,'50.3.84.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(152,1,NULL,'2023-04-20 19:20:31','2023-04-20 19:20:31',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(153,1,NULL,'2023-04-20 20:33:15','2023-04-20 20:33:15',0,0,'103.221.235.55','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(154,1,NULL,'2023-04-20 22:57:12','2023-04-20 22:57:12',0,0,'107.172.148.28','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(155,1,NULL,'2023-04-21 01:35:21','2023-04-21 01:35:21',0,0,'157.52.145.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(156,1,NULL,'2023-04-21 04:19:57','2023-04-21 04:19:57',0,0,'185.107.95.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(157,1,NULL,'2023-04-21 04:27:11','2023-04-21 04:27:11',0,0,'185.122.170.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(158,1,NULL,'2023-04-21 06:11:49','2023-04-21 06:11:49',0,0,'146.70.202.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(159,1,NULL,'2023-04-21 08:31:29','2023-04-21 08:31:29',0,0,'102.165.53.165','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(160,1,NULL,'2023-04-21 09:52:27','2023-04-21 09:52:27',0,0,'172.241.94.195','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(161,1,NULL,'2023-04-21 10:22:12','2023-04-21 10:22:12',0,0,'23.110.173.236','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(162,1,NULL,'2023-04-21 10:55:20','2023-04-21 10:55:20',0,0,'172.241.241.188','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(163,1,NULL,'2023-04-21 16:03:58','2023-04-21 16:03:58',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(164,1,NULL,'2023-04-21 19:03:25','2023-04-21 19:03:25',0,0,'84.17.47.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(165,1,NULL,'2023-04-21 20:08:16','2023-04-21 20:08:16',0,0,'154.202.116.150','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(166,1,NULL,'2023-04-21 23:25:35','2023-04-21 23:25:35',0,0,'172.241.240.170','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(167,1,NULL,'2023-04-22 02:57:44','2023-04-22 02:57:44',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(168,1,NULL,'2023-04-22 17:20:13','2023-04-22 17:20:13',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(169,1,NULL,'2023-04-23 02:27:47','2023-04-23 02:27:47',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(170,1,NULL,'2023-04-23 13:04:14','2023-04-23 13:04:14',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(171,1,NULL,'2023-04-23 13:49:22','2023-04-23 13:49:22',0,0,'172.241.168.100','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(172,1,NULL,'2023-04-23 21:47:47','2023-04-23 21:47:47',0,0,'38.152.153.203','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(173,1,NULL,'2023-04-24 06:15:50','2023-04-24 06:15:50',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(174,1,NULL,'2023-04-24 06:26:48','2023-04-24 06:26:48',0,0,'49.156.46.85','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(175,1,NULL,'2023-04-24 07:10:57','2023-04-24 07:10:57',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(176,1,NULL,'2023-04-24 08:45:58','2023-04-24 08:45:58',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(177,1,NULL,'2023-04-24 12:40:06','2023-04-24 12:40:06',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(178,1,NULL,'2023-04-24 14:15:15','2023-04-24 14:15:15',0,0,'23.19.216.248','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(179,1,NULL,'2023-04-25 05:11:49','2023-04-25 05:11:49',0,0,'31.171.152.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(180,1,NULL,'2023-04-25 16:45:44','2023-04-25 16:45:44',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(181,1,NULL,'2023-04-25 17:47:30','2023-04-25 17:47:30',0,0,'107.174.244.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(182,1,NULL,'2023-04-25 23:33:47','2023-04-25 23:33:47',0,0,'119.17.165.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(183,1,NULL,'2023-04-26 00:55:32','2023-04-26 00:55:32',0,0,'107.172.35.182','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(184,1,NULL,'2023-04-26 03:02:47','2023-04-26 03:02:47',0,0,'118.148.0.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(185,1,NULL,'2023-04-26 04:45:09','2023-04-26 04:45:09',0,0,'172.241.168.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(186,1,NULL,'2023-04-26 05:28:13','2023-04-26 05:28:13',0,0,'103.112.0.79','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(187,1,NULL,'2023-04-26 06:47:17','2023-04-26 06:47:17',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(188,1,NULL,'2023-04-26 08:39:44','2023-04-26 08:39:44',0,0,'95.164.232.170','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(189,1,NULL,'2023-04-26 12:10:23','2023-04-26 12:10:23',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(190,1,NULL,'2023-04-26 12:49:31','2023-04-26 12:49:31',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(191,1,NULL,'2023-04-26 13:48:26','2023-04-26 13:48:26',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(192,1,NULL,'2023-04-26 15:02:12','2023-04-26 15:02:12',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(193,1,NULL,'2023-04-26 15:58:55','2023-04-26 15:58:55',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(194,1,NULL,'2023-04-26 15:59:33','2023-04-26 15:59:33',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(195,1,NULL,'2023-04-26 16:01:24','2023-04-26 16:01:24',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(196,1,NULL,'2023-04-26 16:07:21','2023-04-26 16:07:21',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(197,1,NULL,'2023-04-26 16:07:34','2023-04-26 16:07:34',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(198,1,NULL,'2023-04-26 16:10:45','2023-04-26 16:10:45',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(199,1,NULL,'2023-04-26 16:12:20','2023-04-26 16:12:20',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(200,1,NULL,'2023-04-26 16:17:29','2023-04-26 16:17:29',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(201,1,NULL,'2023-04-26 16:20:35','2023-04-26 16:20:35',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(202,1,NULL,'2023-04-26 16:20:36','2023-04-26 16:20:36',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(203,1,NULL,'2023-04-26 16:33:26','2023-04-26 16:33:26',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(204,1,NULL,'2023-04-26 16:51:24','2023-04-26 16:51:24',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(205,1,NULL,'2023-04-26 17:03:01','2023-04-26 17:03:01',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(206,1,NULL,'2023-04-26 17:38:18','2023-04-26 17:38:18',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(207,1,NULL,'2023-04-26 19:57:52','2023-04-26 19:57:52',0,0,'23.110.173.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(208,1,NULL,'2023-04-27 00:31:14','2023-04-27 00:31:14',0,0,'185.245.27.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(209,1,NULL,'2023-04-27 01:24:15','2023-04-27 01:24:15',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(210,1,NULL,'2023-04-27 02:04:28','2023-04-27 02:04:28',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(211,1,NULL,'2023-04-27 03:51:32','2023-04-27 03:51:32',0,0,'23.161.3.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(212,1,NULL,'2023-04-27 05:04:40','2023-04-27 05:04:40',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(214,1,NULL,'2023-04-27 07:58:33','2023-04-27 07:58:33',0,0,'154.83.9.94','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(215,1,NULL,'2023-04-27 08:53:22','2023-04-27 08:53:22',0,0,'115.69.177.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(216,1,NULL,'2023-04-27 09:08:13','2023-04-27 09:08:13',0,0,'23.82.86.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(217,1,NULL,'2023-04-27 09:42:39','2023-04-27 09:42:39',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(218,1,NULL,'2023-04-27 13:16:37','2023-04-27 13:16:37',0,0,'172.225.245.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(219,1,NULL,'2023-04-27 14:52:06','2023-04-27 14:52:06',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(220,1,NULL,'2023-04-27 15:16:44','2023-04-27 15:16:44',0,0,'86.108.19.189','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(221,1,NULL,'2023-04-27 22:28:44','2023-04-27 22:28:44',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(222,1,NULL,'2023-04-28 05:10:37','2023-04-28 05:10:37',0,0,'210.54.249.76','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/20E252 [FBAN/FBIOS;FBDV/iPhone15,3;FBMD/iPhone;FBSN/iOS;FBSV/16.4.1;FBSS/3;FBID/phone;FBLC/en_GB;FBOP/5]','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(223,1,NULL,'2023-04-28 07:08:19','2023-04-28 07:08:19',0,0,'146.70.115.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(224,1,NULL,'2023-04-28 07:25:16','2023-04-28 07:25:16',0,0,'222.152.181.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/112.0.5615.167 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(225,1,NULL,'2023-04-28 09:55:47','2023-04-28 09:55:47',0,0,'23.81.124.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(226,1,NULL,'2023-04-28 16:21:45','2023-04-28 16:21:45',0,0,'172.241.241.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(227,1,NULL,'2023-04-28 17:44:28','2023-04-28 17:44:28',0,0,'65.108.0.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(228,1,NULL,'2023-04-28 22:07:27','2023-04-28 22:07:27',0,0,'172.241.241.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(229,1,NULL,'2023-04-29 01:40:28','2023-04-29 01:40:28',0,0,'191.96.252.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(230,1,NULL,'2023-04-29 02:25:41','2023-04-29 02:25:41',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(231,1,NULL,'2023-04-29 18:49:57','2023-04-29 18:49:57',0,0,'23.110.173.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(232,1,NULL,'2023-04-29 21:51:46','2023-04-29 21:51:46',0,0,'45.66.237.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(233,1,NULL,'2023-04-30 01:14:22','2023-04-30 01:14:22',0,0,'140.99.75.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(234,1,NULL,'2023-04-30 07:17:47','2023-04-30 07:17:47',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(235,1,NULL,'2023-04-30 09:34:09','2023-04-30 09:34:09',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(236,1,NULL,'2023-04-30 12:06:03','2023-04-30 12:06:03',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(237,1,NULL,'2023-04-30 14:12:58','2023-04-30 14:12:58',0,0,'86.108.19.185','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(238,1,NULL,'2023-04-30 17:25:33','2023-04-30 17:25:33',0,0,'36.255.191.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(239,1,NULL,'2023-04-30 17:50:41','2023-04-30 17:50:41',0,0,'185.122.170.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(240,1,NULL,'2023-04-30 20:39:34','2023-04-30 20:39:34',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(244,1,NULL,'2023-05-01 04:28:06','2023-05-01 04:28:06',0,0,'172.241.168.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(245,1,NULL,'2023-05-01 14:03:38','2023-05-01 14:03:38',0,0,'181.214.218.136','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(246,1,NULL,'2023-05-01 16:57:54','2023-05-01 16:57:54',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(247,1,NULL,'2023-05-01 23:29:07','2023-05-01 23:29:07',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(248,1,NULL,'2023-05-02 02:31:40','2023-05-02 02:31:40',0,0,'23.94.102.18','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(249,1,NULL,'2023-05-02 04:24:08','2023-05-02 04:24:08',0,0,'104.144.139.63','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(250,1,NULL,'2023-05-02 06:24:50','2023-05-02 06:24:50',0,0,'154.202.98.55','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(251,1,NULL,'2023-05-02 08:43:02','2023-05-02 08:43:02',0,0,'23.105.142.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(252,1,NULL,'2023-05-02 08:58:12','2023-05-02 08:58:12',0,0,'84.17.60.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(253,1,NULL,'2023-05-02 09:12:14','2023-05-02 09:12:14',0,0,'125.236.145.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.42','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(254,1,NULL,'2023-05-02 10:27:01','2023-05-02 10:27:01',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(255,1,NULL,'2023-05-02 13:44:34','2023-05-02 13:44:34',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(256,1,NULL,'2023-05-02 14:04:42','2023-05-02 14:04:42',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(257,1,NULL,'2023-05-02 19:42:27','2023-05-02 19:42:27',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(258,1,NULL,'2023-05-02 21:42:22','2023-05-02 21:42:22',0,0,'194.36.97.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(259,1,NULL,'2023-05-03 02:02:43','2023-05-03 02:02:43',0,0,'196.196.147.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(260,1,NULL,'2023-05-03 05:44:37','2023-05-03 05:44:37',0,0,'70.180.185.9','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(261,1,NULL,'2023-05-03 08:12:18','2023-05-03 08:12:18',0,0,'154.30.216.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(262,1,NULL,'2023-05-03 10:01:24','2023-05-03 10:01:24',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(263,1,NULL,'2023-05-03 18:04:03','2023-05-03 18:04:03',0,0,'107.158.85.248','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(264,1,NULL,'2023-05-03 18:13:24','2023-05-03 18:13:24',0,0,'23.110.173.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(265,1,NULL,'2023-05-03 20:22:49','2023-05-03 20:22:49',0,0,'104.250.207.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(266,1,NULL,'2023-05-03 20:31:30','2023-05-03 20:31:30',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(267,1,NULL,'2023-05-03 23:44:43','2023-05-03 23:44:43',0,0,'23.81.124.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(269,1,NULL,'2023-05-04 10:19:50','2023-05-04 10:19:50',0,0,'23.105.142.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(270,1,NULL,'2023-05-04 10:59:59','2023-05-04 10:59:59',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(271,1,NULL,'2023-05-04 13:45:58','2023-05-04 13:45:58',0,0,'45.152.199.203','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(272,1,NULL,'2023-05-04 16:22:14','2023-05-04 16:22:14',0,0,'172.241.240.147','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(273,1,NULL,'2023-05-04 19:43:09','2023-05-04 19:43:09',0,0,'172.241.94.81','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(274,1,NULL,'2023-05-04 20:15:47','2023-05-04 20:15:47',0,0,'23.82.86.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(275,1,NULL,'2023-05-04 20:45:36','2023-05-04 20:45:36',0,0,'86.108.18.121','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(276,1,NULL,'2023-05-04 22:49:37','2023-05-04 22:49:37',0,0,'191.96.252.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(277,1,NULL,'2023-05-05 07:47:42','2023-05-05 07:47:42',0,0,'23.108.18.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(278,1,NULL,'2023-05-05 08:53:50','2023-05-05 08:53:50',0,0,'37.19.223.110','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(279,1,NULL,'2023-05-05 12:00:17','2023-05-05 12:00:17',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(280,1,NULL,'2023-05-05 13:38:26','2023-05-05 13:38:26',0,0,'23.108.16.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(281,1,NULL,'2023-05-05 15:03:21','2023-05-05 15:03:21',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5042.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(282,1,NULL,'2023-05-05 19:27:23','2023-05-05 19:27:23',0,0,'191.102.148.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(283,1,NULL,'2023-05-05 21:49:51','2023-05-05 21:49:51',0,0,'185.191.119.77','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(284,1,NULL,'2023-05-05 23:31:19','2023-05-05 23:31:19',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(285,1,NULL,'2023-05-06 02:08:44','2023-05-06 02:08:44',0,0,'154.37.93.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(286,1,NULL,'2023-05-06 04:21:24','2023-05-06 04:21:24',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(287,1,NULL,'2023-05-06 04:57:22','2023-05-06 04:57:22',0,0,'49.147.201.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(288,1,NULL,'2023-05-06 08:34:50','2023-05-06 08:34:50',0,0,'93.120.32.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(289,1,NULL,'2023-05-06 15:48:43','2023-05-06 15:48:43',0,0,'23.105.142.144','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(291,1,NULL,'2023-05-06 22:18:50','2023-05-06 22:18:50',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(292,1,NULL,'2023-05-07 04:29:44','2023-05-07 04:29:44',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(293,1,NULL,'2023-05-07 06:53:46','2023-05-07 06:53:46',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(294,1,NULL,'2023-05-07 16:00:35','2023-05-07 16:00:35',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(295,1,NULL,'2023-05-07 22:31:42','2023-05-07 22:31:42',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(296,1,NULL,'2023-05-08 02:57:04','2023-05-08 02:57:04',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(297,1,NULL,'2023-05-08 03:08:46','2023-05-08 03:08:46',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(298,1,NULL,'2023-05-08 04:19:43','2023-05-08 04:19:43',0,0,'172.241.20.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(299,1,NULL,'2023-05-08 06:59:44','2023-05-08 06:59:44',0,0,'45.66.237.162','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(300,1,NULL,'2023-05-08 08:41:24','2023-05-08 08:41:24',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(301,1,NULL,'2023-05-08 11:49:50','2023-05-08 11:49:50',0,0,'185.204.151.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(302,1,NULL,'2023-05-08 15:29:49','2023-05-08 15:29:49',0,0,'107.174.245.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(303,1,NULL,'2023-05-08 19:32:41','2023-05-08 19:32:41',0,0,'107.175.71.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(304,1,NULL,'2023-05-08 22:51:39','2023-05-08 22:51:39',0,0,'199.249.230.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(305,1,NULL,'2023-05-08 23:06:35','2023-05-08 23:06:35',0,0,'136.0.95.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(306,1,NULL,'2023-05-09 00:03:55','2023-05-09 00:03:55',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(307,1,NULL,'2023-05-09 15:23:14','2023-05-09 15:23:14',0,0,'23.83.81.168','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(309,1,NULL,'2023-05-09 19:52:12','2023-05-09 19:52:12',0,0,'23.81.59.179','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(310,1,NULL,'2023-05-09 23:27:26','2023-05-09 23:27:26',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(312,1,NULL,'2023-05-10 11:36:07','2023-05-10 11:36:07',0,0,'64.137.88.120','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(314,1,NULL,'2023-05-10 12:23:52','2023-05-10 12:23:52',0,0,'49.37.53.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(315,1,NULL,'2023-05-10 20:14:54','2023-05-10 20:14:54',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(317,1,NULL,'2023-05-11 04:15:22','2023-05-11 04:15:22',0,0,'191.96.168.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(318,1,NULL,'2023-05-11 11:25:29','2023-05-11 11:25:29',0,0,'49.224.91.5','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/113.0.5672.69 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(319,1,NULL,'2023-05-11 17:45:25','2023-05-11 17:45:25',0,0,'37.19.217.222','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(321,1,NULL,'2023-05-11 19:56:04','2023-05-11 19:56:04',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(322,1,NULL,'2023-05-11 20:38:44','2023-05-11 20:38:44',0,0,'23.94.133.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(323,1,NULL,'2023-05-11 23:42:02','2023-05-11 23:42:02',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(324,1,NULL,'2023-05-11 23:54:58','2023-05-11 23:54:58',0,0,'161.123.33.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(325,1,NULL,'2023-05-12 02:16:56','2023-05-12 02:16:56',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(326,1,NULL,'2023-05-12 03:38:52','2023-05-12 03:38:52',0,0,'23.235.252.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(327,1,NULL,'2023-05-12 03:40:46','2023-05-12 03:40:46',0,0,'193.36.208.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(328,1,NULL,'2023-05-12 05:35:00','2023-05-12 05:35:00',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(329,1,NULL,'2023-05-12 06:16:16','2023-05-12 06:16:16',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(331,1,NULL,'2023-05-12 07:57:01','2023-05-12 07:57:01',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(333,1,NULL,'2023-05-12 10:57:31','2023-05-12 10:57:31',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(334,1,NULL,'2023-05-12 12:51:19','2023-05-12 12:51:19',0,0,'191.101.31.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(335,1,NULL,'2023-05-12 16:13:53','2023-05-12 16:13:53',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(336,1,NULL,'2023-05-12 19:13:50','2023-05-12 19:13:50',0,0,'23.82.86.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(337,1,NULL,'2023-05-12 22:27:10','2023-05-12 22:27:10',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(338,1,NULL,'2023-05-13 04:51:23','2023-05-13 04:51:23',0,0,'194.26.135.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(339,1,NULL,'2023-05-13 06:35:22','2023-05-13 06:35:22',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(340,1,NULL,'2023-05-13 07:29:54','2023-05-13 07:29:54',0,0,'104.218.195.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(341,1,NULL,'2023-05-13 08:30:49','2023-05-13 08:30:49',0,0,'194.36.96.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(342,1,NULL,'2023-05-13 08:54:45','2023-05-13 08:54:45',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(343,1,NULL,'2023-05-13 10:09:29','2023-05-13 10:09:29',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(344,1,NULL,'2023-05-13 12:47:11','2023-05-13 12:47:11',0,0,'181.214.218.158','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(345,1,NULL,'2023-05-13 14:30:09','2023-05-13 14:30:09',0,0,'23.108.47.218','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(346,1,NULL,'2023-05-13 21:25:49','2023-05-13 21:25:49',0,0,'72.49.49.11','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(347,1,NULL,'2023-05-13 22:03:25','2023-05-13 22:03:25',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(348,1,NULL,'2023-05-14 07:15:06','2023-05-14 07:15:06',0,0,'196.245.163.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(349,1,NULL,'2023-05-14 14:54:20','2023-05-14 14:54:20',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(350,1,NULL,'2023-05-14 16:21:22','2023-05-14 16:21:22',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(351,1,NULL,'2023-05-14 20:25:35','2023-05-14 20:25:35',0,0,'23.235.252.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(352,1,NULL,'2023-05-14 23:34:11','2023-05-14 23:34:11',0,0,'23.237.26.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(353,1,NULL,'2023-05-15 00:44:53','2023-05-15 00:44:53',0,0,'103.120.179.82','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(354,1,NULL,'2023-05-15 01:23:38','2023-05-15 01:23:38',0,0,'45.39.72.183','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(355,1,NULL,'2023-05-15 08:11:27','2023-05-15 08:11:27',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(356,1,NULL,'2023-05-15 09:14:55','2023-05-15 09:14:55',0,0,'196.196.147.225','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(357,1,NULL,'2023-05-15 10:47:12','2023-05-15 10:47:12',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(358,1,NULL,'2023-05-15 11:22:33','2023-05-15 11:22:33',0,0,'23.237.26.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(359,1,NULL,'2023-05-15 11:26:39','2023-05-15 11:26:39',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(360,1,NULL,'2023-05-15 19:05:20','2023-05-15 19:05:20',0,0,'173.44.223.122','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(361,1,NULL,'2023-05-15 20:07:18','2023-05-15 20:07:18',0,0,'63.161.76.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(362,1,NULL,'2023-05-15 21:19:29','2023-05-15 21:19:29',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(363,1,NULL,'2023-05-15 21:31:57','2023-05-15 21:31:57',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(364,1,NULL,'2023-05-16 00:50:19','2023-05-16 00:50:19',0,0,'138.128.59.138','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(365,1,NULL,'2023-05-16 00:51:39','2023-05-16 00:51:39',0,0,'107.172.148.28','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(366,1,NULL,'2023-05-16 02:38:05','2023-05-16 02:38:05',0,0,'163.47.236.113','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 12; SAMSUNG SM-G973F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/20.0 Chrome/106.0.5249.126 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(367,1,NULL,'2023-05-16 08:11:16','2023-05-16 08:11:16',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(368,1,NULL,'2023-05-16 09:38:38','2023-05-16 09:38:38',0,0,'45.56.175.120','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(369,1,NULL,'2023-05-16 18:45:12','2023-05-16 18:45:12',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(370,1,NULL,'2023-05-16 19:50:28','2023-05-16 19:50:28',0,0,'23.108.51.35','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(371,1,NULL,'2023-05-16 20:09:26','2023-05-16 20:09:26',0,0,'136.0.45.160','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(372,1,NULL,'2023-05-16 22:40:34','2023-05-16 22:40:34',0,0,'151.210.171.163','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(373,1,NULL,'2023-05-16 23:11:22','2023-05-16 23:11:22',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(374,1,NULL,'2023-05-17 04:38:20','2023-05-17 04:38:20',0,0,'65.109.11.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(375,1,NULL,'2023-05-17 08:12:39','2023-05-17 08:12:39',0,0,'196.242.4.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(376,1,NULL,'2023-05-17 13:09:20','2023-05-17 13:09:20',0,0,'84.46.250.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(377,1,NULL,'2023-05-17 18:23:13','2023-05-17 18:23:13',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(378,1,NULL,'2023-05-17 18:36:11','2023-05-17 18:36:11',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(379,1,NULL,'2023-05-17 19:39:44','2023-05-17 19:39:44',0,0,'196.196.247.109','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(380,1,NULL,'2023-05-17 20:04:49','2023-05-17 20:04:49',0,0,'194.36.96.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(381,1,NULL,'2023-05-17 22:19:25','2023-05-17 22:19:25',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(382,1,NULL,'2023-05-18 01:13:20','2023-05-18 01:13:20',0,0,'199.249.230.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(383,1,NULL,'2023-05-18 02:35:32','2023-05-18 02:35:32',0,0,'45.41.177.133','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(384,1,NULL,'2023-05-18 06:08:11','2023-05-18 06:08:11',0,0,'168.91.76.233','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(385,1,NULL,'2023-05-18 22:30:23','2023-05-18 22:30:23',0,0,'154.85.124.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(386,1,NULL,'2023-05-19 22:49:03','2023-05-19 22:49:03',0,0,'157.52.187.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(387,1,NULL,'2023-05-20 07:24:39','2023-05-20 07:24:39',0,0,'203.211.79.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(388,1,NULL,'2023-05-21 08:38:46','2023-05-21 08:38:46',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(389,1,NULL,'2023-05-21 11:19:41','2023-05-21 11:19:41',0,0,'159.117.1.11','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/20E252 [FBAN/FBIOS;FBDV/iPhone13,3;FBMD/iPhone;FBSN/iOS;FBSV/16.4.1;FBSS/3;FBID/phone;FBLC/en_GB;FBOP/5]','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(390,1,NULL,'2023-05-21 12:31:30','2023-05-21 12:31:30',0,0,'198.154.92.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(391,1,NULL,'2023-05-21 19:05:45','2023-05-21 19:05:45',0,0,'196.199.122.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(392,1,NULL,'2023-05-21 19:36:19','2023-05-21 19:36:19',0,0,'37.19.223.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(393,1,NULL,'2023-05-22 02:16:51','2023-05-22 02:16:51',0,0,'204.217.204.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(394,1,NULL,'2023-05-22 02:19:40','2023-05-22 02:19:40',0,0,'206.41.172.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(395,1,NULL,'2023-05-22 14:25:32','2023-05-22 14:25:32',0,0,'23.129.253.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(396,1,NULL,'2023-05-22 18:03:03','2023-05-22 18:03:03',0,0,'196.18.229.225','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(397,1,NULL,'2023-05-22 19:52:45','2023-05-22 19:52:45',0,0,'23.82.81.226','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(398,1,NULL,'2023-05-22 22:35:10','2023-05-22 22:35:10',0,0,'196.242.195.66','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(399,1,NULL,'2023-05-23 01:17:09','2023-05-23 01:17:09',0,0,'124.248.141.143','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(400,1,NULL,'2023-05-23 03:45:48','2023-05-23 03:45:48',0,0,'196.51.202.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(401,1,NULL,'2023-05-23 05:28:49','2023-05-23 05:28:49',0,0,'206.232.53.150','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(402,1,NULL,'2023-05-23 07:09:30','2023-05-23 07:09:30',0,0,'196.242.46.137','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(403,1,NULL,'2023-05-23 20:15:52','2023-05-23 20:15:52',0,0,'45.88.162.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(404,1,NULL,'2023-05-24 01:13:12','2023-05-24 01:13:12',0,0,'23.108.24.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(405,1,NULL,'2023-05-24 02:25:41','2023-05-24 02:25:41',0,0,'154.16.243.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(406,1,NULL,'2023-05-24 06:56:38','2023-05-24 06:56:38',0,0,'23.81.80.71','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(407,1,NULL,'2023-05-24 08:18:45','2023-05-24 08:18:45',0,0,'136.0.58.80','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(408,1,NULL,'2023-05-24 09:37:30','2023-05-24 09:37:30',0,0,'23.108.16.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(409,1,NULL,'2023-05-24 13:27:33','2023-05-24 13:27:33',0,0,'154.92.112.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(410,1,NULL,'2023-05-24 15:22:35','2023-05-24 15:22:35',0,0,'170.244.93.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(411,1,NULL,'2023-05-24 19:10:17','2023-05-24 19:10:17',0,0,'74.99.90.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(412,1,NULL,'2023-05-25 10:26:37','2023-05-25 10:26:37',0,0,'104.239.104.225','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(413,1,NULL,'2023-05-25 16:42:32','2023-05-25 16:42:32',0,0,'107.186.67.112','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(414,1,NULL,'2023-05-25 17:41:21','2023-05-25 17:41:21',0,0,'185.249.1.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(415,1,NULL,'2023-05-25 18:20:28','2023-05-25 18:20:28',0,0,'103.16.29.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.50','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(416,1,NULL,'2023-05-25 19:48:37','2023-05-25 19:48:37',0,0,'122.58.100.210','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.50','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(417,1,NULL,'2023-05-25 22:40:25','2023-05-25 22:40:25',0,0,'154.12.105.223','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(418,1,NULL,'2023-05-25 23:41:41','2023-05-25 23:41:41',0,0,'45.89.196.128','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(419,1,NULL,'2023-05-26 11:17:32','2023-05-26 11:17:32',0,0,'45.158.185.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(420,1,NULL,'2023-05-26 17:08:47','2023-05-26 17:08:47',0,0,'168.91.65.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(421,1,NULL,'2023-05-26 18:42:57','2023-05-26 18:42:57',0,0,'195.138.124.133','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(422,1,NULL,'2023-05-26 20:48:33','2023-05-26 20:48:33',0,0,'45.89.196.128','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(423,1,NULL,'2023-05-27 02:39:29','2023-05-27 02:39:29',0,0,'196.245.217.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(424,1,NULL,'2023-05-27 11:07:52','2023-05-27 11:07:52',0,0,'185.191.116.223','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(425,1,NULL,'2023-05-27 12:05:56','2023-05-27 12:05:56',0,0,'154.85.124.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(426,1,NULL,'2023-05-27 13:54:39','2023-05-27 13:54:39',0,0,'23.235.252.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(427,1,NULL,'2023-05-27 15:51:19','2023-05-27 15:51:19',0,0,'63.161.79.178','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(428,1,NULL,'2023-05-27 16:38:44','2023-05-27 16:38:44',0,0,'192.46.203.66','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(429,1,NULL,'2023-05-27 19:42:48','2023-05-27 19:42:48',0,0,'37.120.215.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(430,1,NULL,'2023-05-27 21:53:29','2023-05-27 21:53:29',0,0,'104.249.55.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(431,1,NULL,'2023-05-28 00:19:19','2023-05-28 00:19:19',0,0,'184.174.56.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(432,1,NULL,'2023-05-28 00:48:31','2023-05-28 00:48:31',0,0,'38.152.165.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(433,1,NULL,'2023-05-28 07:14:25','2023-05-28 07:14:25',0,0,'173.208.27.36','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(434,1,NULL,'2023-05-28 08:44:49','2023-05-28 08:44:49',0,0,'136.0.45.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(435,1,NULL,'2023-05-28 08:53:14','2023-05-28 08:53:14',0,0,'23.235.252.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(436,1,NULL,'2023-05-28 15:42:46','2023-05-28 15:42:46',0,0,'104.143.226.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(437,1,NULL,'2023-05-28 17:11:08','2023-05-28 17:11:08',0,0,'23.106.20.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(438,1,NULL,'2023-05-28 20:55:41','2023-05-28 20:55:41',0,0,'185.245.27.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(439,1,NULL,'2023-05-29 00:27:36','2023-05-29 00:27:36',0,0,'121.99.192.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(440,1,NULL,'2023-05-29 01:43:04','2023-05-29 01:43:04',0,0,'184.174.56.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(442,1,NULL,'2023-05-29 01:59:15','2023-05-29 01:59:15',0,0,'196.242.131.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(443,1,NULL,'2023-05-29 02:06:36','2023-05-29 02:06:36',0,0,'204.217.205.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(445,1,NULL,'2023-05-29 03:51:07','2023-05-29 03:51:07',0,0,'84.17.49.98','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(446,1,NULL,'2023-05-29 10:39:53','2023-05-29 10:39:53',0,0,'38.152.48.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(447,1,NULL,'2023-05-29 11:15:33','2023-05-29 11:15:33',0,0,'23.108.51.35','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(448,1,NULL,'2023-05-29 19:58:25','2023-05-29 19:58:25',0,0,'136.0.65.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(449,1,NULL,'2023-05-29 22:28:31','2023-05-29 22:28:31',0,0,'104.227.223.136','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(450,1,NULL,'2023-05-30 00:41:01','2023-05-30 00:41:01',0,0,'23.80.141.240','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(451,1,NULL,'2023-05-30 02:33:17','2023-05-30 02:33:17',0,0,'38.152.48.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(452,1,NULL,'2023-05-30 08:01:58','2023-05-30 08:01:58',0,0,'102.129.143.45','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(453,1,NULL,'2023-05-30 16:10:26','2023-05-30 16:10:26',0,0,'196.242.47.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(454,1,NULL,'2023-05-30 21:11:56','2023-05-30 21:11:56',0,0,'104.143.226.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(455,1,NULL,'2023-05-31 00:43:23','2023-05-31 00:43:23',0,0,'63.161.77.30','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(456,1,NULL,'2023-05-31 07:24:23','2023-05-31 07:24:23',0,0,'23.235.252.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(457,1,NULL,'2023-05-31 14:04:29','2023-05-31 14:04:29',0,0,'140.99.71.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(458,1,NULL,'2023-05-31 17:43:47','2023-05-31 17:43:47',0,0,'196.242.10.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(459,1,NULL,'2023-05-31 19:41:07','2023-05-31 19:41:07',0,0,'86.108.18.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(460,1,NULL,'2023-05-31 23:34:36','2023-05-31 23:34:36',0,0,'107.181.154.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(461,1,NULL,'2023-06-01 01:55:12','2023-06-01 01:55:12',0,0,'23.106.20.179','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(462,1,NULL,'2023-06-01 10:46:45','2023-06-01 10:46:45',0,0,'125.237.192.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(463,1,NULL,'2023-06-01 20:57:20','2023-06-01 20:57:20',0,0,'45.43.65.27','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(464,1,NULL,'2023-06-02 04:24:18','2023-06-02 04:24:18',0,0,'63.161.77.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(465,1,NULL,'2023-06-02 08:18:35','2023-06-02 08:18:35',0,0,'172.241.168.227','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(466,1,NULL,'2023-06-02 09:16:30','2023-06-02 09:16:30',0,0,'38.154.164.35','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(467,1,NULL,'2023-06-02 16:42:05','2023-06-02 16:42:05',0,0,'136.0.45.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(468,1,NULL,'2023-06-02 21:13:01','2023-06-02 21:13:01',0,0,'138.128.153.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(469,1,NULL,'2023-06-03 01:51:15','2023-06-03 01:51:15',0,0,'184.174.56.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(470,1,NULL,'2023-06-03 12:27:07','2023-06-03 12:27:07',0,0,'104.249.55.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(471,1,NULL,'2023-06-03 17:15:50','2023-06-03 17:15:50',0,0,'37.120.244.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(472,1,NULL,'2023-06-03 21:41:20','2023-06-03 21:41:20',0,0,'86.106.74.252','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(473,1,NULL,'2023-06-03 21:54:46','2023-06-03 21:54:46',0,0,'194.36.97.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(474,1,NULL,'2023-06-04 03:06:34','2023-06-04 03:06:34',0,0,'23.106.20.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(475,1,NULL,'2023-06-04 05:14:41','2023-06-04 05:14:41',0,0,'172.255.93.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(476,1,NULL,'2023-06-04 11:57:30','2023-06-04 11:57:30',0,0,'154.30.252.193','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(477,1,NULL,'2023-06-04 14:50:16','2023-06-04 14:50:16',0,0,'45.12.140.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(478,1,NULL,'2023-06-04 19:27:02','2023-06-04 19:27:02',0,0,'87.249.132.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(479,1,NULL,'2023-06-04 21:39:51','2023-06-04 21:39:51',0,0,'45.43.65.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(480,1,NULL,'2023-06-04 23:50:52','2023-06-04 23:50:52',0,0,'23.106.20.4','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(481,1,NULL,'2023-06-05 07:52:10','2023-06-05 07:52:10',0,0,'107.181.154.140','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(482,1,NULL,'2023-06-05 11:10:05','2023-06-05 11:10:05',0,0,'23.105.146.173','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(483,1,NULL,'2023-06-05 18:08:01','2023-06-05 18:08:01',0,0,'154.16.243.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(484,1,NULL,'2023-06-05 20:12:55','2023-06-05 20:12:55',0,0,'63.161.79.231','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(485,1,NULL,'2023-06-06 13:44:43','2023-06-06 13:44:43',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(486,1,NULL,'2023-06-06 20:32:27','2023-06-06 20:32:27',0,0,'37.202.72.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(487,1,NULL,'2023-06-06 20:57:16','2023-06-06 20:57:16',0,0,'84.17.60.183','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(488,1,NULL,'2023-06-06 23:17:50','2023-06-06 23:17:50',0,0,'154.13.105.200','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(489,1,NULL,'2023-06-07 00:06:08','2023-06-07 00:06:08',0,0,'184.174.56.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(490,1,NULL,'2023-06-07 00:25:04','2023-06-07 00:25:04',0,0,'107.186.67.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(491,1,NULL,'2023-06-07 01:16:47','2023-06-07 01:16:47',0,0,'122.61.202.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(492,1,NULL,'2023-06-07 09:37:54','2023-06-07 09:37:54',0,0,'196.199.119.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(493,1,NULL,'2023-06-07 13:33:46','2023-06-07 13:33:46',0,0,'23.81.61.191','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(494,1,NULL,'2023-06-07 19:09:53','2023-06-07 19:09:53',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(495,1,NULL,'2023-06-08 00:22:54','2023-06-08 00:22:54',0,0,'136.0.58.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(496,1,NULL,'2023-06-08 10:27:34','2023-06-08 10:27:34',0,0,'23.105.146.226','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(497,1,NULL,'2023-06-08 17:04:52','2023-06-08 17:04:52',0,0,'196.242.114.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(498,1,NULL,'2023-06-08 17:13:58','2023-06-08 17:13:58',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(499,1,NULL,'2023-06-08 20:30:47','2023-06-08 20:30:47',0,0,'161.29.136.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(500,1,NULL,'2023-06-08 21:21:45','2023-06-08 21:21:45',0,0,'23.106.20.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(501,1,NULL,'2023-06-08 23:50:17','2023-06-08 23:50:17',0,0,'181.214.218.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(502,1,NULL,'2023-06-09 11:31:28','2023-06-09 11:31:28',0,0,'23.81.49.162','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(503,1,NULL,'2023-06-09 11:45:15','2023-06-09 11:45:15',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(504,1,NULL,'2023-06-09 17:49:19','2023-06-09 17:49:19',0,0,'196.245.217.18','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(505,1,NULL,'2023-06-09 18:55:21','2023-06-09 18:55:21',0,0,'154.13.105.200','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(507,1,NULL,'2023-06-09 19:30:19','2023-06-09 19:30:19',0,0,'136.0.45.36','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(508,1,NULL,'2023-06-09 23:26:51','2023-06-09 23:26:51',0,0,'38.170.214.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(509,1,NULL,'2023-06-10 02:18:14','2023-06-10 02:18:14',0,0,'104.250.207.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(510,1,NULL,'2023-06-10 09:19:08','2023-06-10 09:19:08',0,0,'173.208.27.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(511,1,NULL,'2023-06-10 11:06:50','2023-06-10 11:06:50',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(512,1,NULL,'2023-06-10 11:16:57','2023-06-10 11:16:57',0,0,'196.245.163.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(513,1,NULL,'2023-06-10 14:18:08','2023-06-10 14:18:08',0,0,'23.81.62.172','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(514,1,NULL,'2023-06-11 06:26:40','2023-06-11 06:26:40',0,0,'174.95.104.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(515,1,NULL,'2023-06-11 06:50:42','2023-06-11 06:50:42',0,0,'181.177.111.109','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(516,1,NULL,'2023-06-11 10:21:21','2023-06-11 10:21:21',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(517,1,NULL,'2023-06-11 21:02:49','2023-06-11 21:02:49',0,0,'185.245.27.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(518,1,NULL,'2023-06-11 21:03:16','2023-06-11 21:03:16',0,0,'139.171.8.49','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(519,1,NULL,'2023-06-12 00:39:14','2023-06-12 00:39:14',0,0,'102.165.55.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(520,1,NULL,'2023-06-12 02:35:44','2023-06-12 02:35:44',0,0,'185.230.126.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(521,1,NULL,'2023-06-12 03:10:19','2023-06-12 03:10:19',0,0,'23.105.146.27','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(522,1,NULL,'2023-06-12 09:01:02','2023-06-12 09:01:02',0,0,'45.120.51.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(523,1,NULL,'2023-06-12 09:15:38','2023-06-12 09:15:38',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(524,1,NULL,'2023-06-12 13:40:32','2023-06-12 13:40:32',0,0,'91.108.177.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(525,1,NULL,'2023-06-12 19:10:42','2023-06-12 19:10:42',0,0,'172.248.42.210','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(526,1,NULL,'2023-06-13 02:07:35','2023-06-13 02:07:35',0,0,'146.70.144.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(528,1,NULL,'2023-06-13 03:43:18','2023-06-13 03:43:18',0,0,'23.81.49.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(529,1,NULL,'2023-06-13 11:48:59','2023-06-13 11:48:59',0,0,'181.177.111.109','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(530,1,NULL,'2023-06-13 12:03:30','2023-06-13 12:03:30',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(531,1,NULL,'2023-06-13 16:20:36','2023-06-13 16:20:36',0,0,'146.70.144.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(532,1,NULL,'2023-06-13 18:27:01','2023-06-13 18:27:01',0,0,'45.133.193.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(533,1,NULL,'2023-06-13 19:55:08','2023-06-13 19:55:08',0,0,'45.140.206.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(534,1,NULL,'2023-06-13 20:57:14','2023-06-13 20:57:14',0,0,'146.70.144.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(535,1,NULL,'2023-06-14 05:41:41','2023-06-14 05:41:41',0,0,'37.19.223.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(536,1,NULL,'2023-06-14 06:16:43','2023-06-14 06:16:43',0,0,'172.245.242.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(537,1,NULL,'2023-06-14 06:22:07','2023-06-14 06:22:07',0,0,'86.177.124.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(538,1,NULL,'2023-06-14 07:26:32','2023-06-14 07:26:32',0,0,'198.46.148.162','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(539,1,NULL,'2023-06-14 08:28:51','2023-06-14 08:28:51',0,0,'212.102.38.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(540,1,NULL,'2023-06-14 10:57:58','2023-06-14 10:57:58',0,0,'107.186.67.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(541,1,NULL,'2023-06-14 13:45:05','2023-06-14 13:45:05',0,0,'50.5.60.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(543,1,NULL,'2023-06-14 16:34:55','2023-06-14 16:34:55',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(544,1,NULL,'2023-06-14 20:31:22','2023-06-14 20:31:22',0,0,'63.161.77.121','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(545,1,NULL,'2023-06-14 22:21:34','2023-06-14 22:21:34',0,0,'23.105.146.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(546,1,NULL,'2023-06-14 22:45:44','2023-06-14 22:45:44',0,0,'23.81.61.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(547,1,NULL,'2023-06-15 02:57:52','2023-06-15 02:57:52',0,0,'50.5.60.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(548,1,NULL,'2023-06-15 05:21:00','2023-06-15 05:21:00',0,0,'50.5.60.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(549,1,NULL,'2023-06-15 12:54:48','2023-06-15 12:54:48',0,0,'172.245.242.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(550,1,NULL,'2023-06-15 16:38:17','2023-06-15 16:38:17',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(551,1,NULL,'2023-06-15 18:01:39','2023-06-15 18:01:39',0,0,'172.241.243.198','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(552,1,NULL,'2023-06-15 20:42:47','2023-06-15 20:42:47',0,0,'172.245.242.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(553,1,NULL,'2023-06-16 00:30:09','2023-06-16 00:30:09',0,0,'50.5.60.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(554,1,NULL,'2023-06-16 12:50:02','2023-06-16 12:50:02',0,0,'107.175.90.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(555,1,NULL,'2023-06-16 14:51:15','2023-06-16 14:51:15',0,0,'172.245.242.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(556,1,NULL,'2023-06-16 15:37:15','2023-06-16 15:37:15',0,0,'107.186.67.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(557,1,NULL,'2023-06-16 15:59:03','2023-06-16 15:59:03',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(558,1,NULL,'2023-06-16 16:26:49','2023-06-16 16:26:49',0,0,'104.223.57.229','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(559,1,NULL,'2023-06-16 19:32:09','2023-06-16 19:32:09',0,0,'122.61.179.31','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(560,1,NULL,'2023-06-16 22:01:12','2023-06-16 22:01:12',0,0,'154.12.203.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(561,1,NULL,'2023-06-17 16:31:12','2023-06-17 16:31:12',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(562,1,NULL,'2023-06-17 23:52:30','2023-06-17 23:52:30',0,0,'136.0.58.80','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(563,1,NULL,'2023-06-18 03:12:04','2023-06-18 03:12:04',0,0,'157.52.174.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(564,1,NULL,'2023-06-18 05:45:36','2023-06-18 05:45:36',0,0,'23.81.67.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(565,1,NULL,'2023-06-18 11:38:24','2023-06-18 11:38:24',0,0,'196.51.161.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(566,1,NULL,'2023-06-18 15:17:55','2023-06-18 15:17:55',0,0,'204.217.202.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(567,1,NULL,'2023-06-18 21:46:39','2023-06-18 21:46:39',0,0,'5.253.204.248','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(568,1,NULL,'2023-06-19 04:49:08','2023-06-19 04:49:08',0,0,'181.177.111.154','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(569,1,NULL,'2023-06-19 05:59:54','2023-06-19 05:59:54',0,0,'182.69.183.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(570,1,NULL,'2023-06-19 10:55:11','2023-06-19 10:55:11',0,0,'140.99.15.10','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(571,1,NULL,'2023-06-19 17:16:58','2023-06-19 17:16:58',0,0,'49.83.17.246','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(572,1,NULL,'2023-06-19 18:42:10','2023-06-19 18:42:10',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(573,1,NULL,'2023-06-19 22:42:16','2023-06-19 22:42:16',0,0,'172.245.242.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(574,1,NULL,'2023-06-19 22:57:22','2023-06-19 22:57:22',0,0,'181.177.111.109','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(575,1,NULL,'2023-06-20 04:48:59','2023-06-20 04:48:59',0,0,'125.239.17.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 LightSpeed [FBAN/MessengerLiteForiOS;FBAV/413.0.0.29.71;FBBV/484141376;FBDV/iPhone14,3;FBMD/iPhone;FBSN/iOS;FBSV/16.5;FBSS/3;FBCR/;FBID/phon','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(576,1,NULL,'2023-06-20 13:10:47','2023-06-20 13:10:47',0,0,'52.146.91.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(577,1,NULL,'2023-06-20 14:37:22','2023-06-20 14:37:22',0,0,'63.161.78.28','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(578,1,NULL,'2023-06-20 15:51:00','2023-06-20 15:51:00',0,0,'194.36.108.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(579,1,NULL,'2023-06-20 22:53:03','2023-06-20 22:53:03',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(580,1,NULL,'2023-06-21 01:48:32','2023-06-21 01:48:32',0,0,'23.81.49.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(581,1,NULL,'2023-06-21 02:19:33','2023-06-21 02:19:33',0,0,'172.102.216.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(582,1,NULL,'2023-06-21 02:53:35','2023-06-21 02:53:35',0,0,'38.240.179.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(583,1,NULL,'2023-06-21 04:49:19','2023-06-21 04:49:19',0,0,'130.185.159.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(584,1,NULL,'2023-06-21 05:16:00','2023-06-21 05:16:00',0,0,'191.101.209.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(585,1,NULL,'2023-06-21 12:01:36','2023-06-21 12:01:36',0,0,'196.242.114.193','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(586,1,NULL,'2023-06-21 21:41:01','2023-06-21 21:41:01',0,0,'63.161.78.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(587,1,NULL,'2023-06-22 10:47:35','2023-06-22 10:47:35',0,0,'196.51.185.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(588,1,NULL,'2023-06-22 16:12:16','2023-06-22 16:12:16',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(589,1,NULL,'2023-06-23 03:53:57','2023-06-23 03:53:57',0,0,'62.216.79.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(590,1,NULL,'2023-06-23 11:30:34','2023-06-23 11:30:34',0,0,'63.161.79.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(591,1,NULL,'2023-06-23 12:18:32','2023-06-23 12:18:32',0,0,'91.242.108.128','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(592,1,NULL,'2023-06-23 15:38:22','2023-06-23 15:38:22',0,0,'149.34.244.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(593,1,NULL,'2023-06-23 18:18:46','2023-06-23 18:18:46',0,0,'23.81.62.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(594,1,NULL,'2023-06-23 23:15:41','2023-06-23 23:15:41',0,0,'107.150.70.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(595,1,NULL,'2023-06-24 11:01:38','2023-06-24 11:01:38',0,0,'37.120.244.156','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(596,1,NULL,'2023-06-24 11:42:39','2023-06-24 11:42:39',0,0,'136.0.65.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(597,1,NULL,'2023-06-24 19:54:52','2023-06-24 19:54:52',0,0,'170.130.183.152','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(598,1,NULL,'2023-06-25 02:22:03','2023-06-25 02:22:03',0,0,'161.29.136.13','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(599,1,NULL,'2023-06-25 10:20:18','2023-06-25 10:20:18',0,0,'168.91.65.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(600,1,NULL,'2023-06-26 00:11:39','2023-06-26 00:11:39',0,0,'23.81.67.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(601,1,NULL,'2023-06-26 01:00:55','2023-06-26 01:00:55',0,0,'154.29.99.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(602,1,NULL,'2023-06-26 08:35:53','2023-06-26 08:35:53',0,0,'23.106.20.179','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(603,1,NULL,'2023-06-26 20:16:05','2023-06-26 20:16:05',0,0,'138.199.36.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(604,1,NULL,'2023-06-26 23:14:34','2023-06-26 23:14:34',0,0,'136.0.45.54','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(605,1,NULL,'2023-06-27 13:09:59','2023-06-27 13:09:59',0,0,'192.126.209.28','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(606,1,NULL,'2023-06-27 13:32:20','2023-06-27 13:32:20',0,0,'107.181.130.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(609,1,NULL,'2023-06-27 18:14:48','2023-06-27 18:14:48',0,0,'154.53.93.217','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(610,1,NULL,'2023-06-27 21:29:31','2023-06-27 21:29:31',0,0,'69.58.12.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(611,1,NULL,'2023-06-27 22:50:54','2023-06-27 22:50:54',0,0,'139.171.13.22','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(612,1,NULL,'2023-06-27 23:48:39','2023-06-27 23:48:39',0,0,'38.153.116.30','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(613,1,NULL,'2023-06-28 01:22:19','2023-06-28 01:22:19',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(614,1,NULL,'2023-06-28 02:22:26','2023-06-28 02:22:26',0,0,'154.16.152.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(615,1,NULL,'2023-06-28 03:58:09','2023-06-28 03:58:09',0,0,'150.107.106.6','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(616,1,NULL,'2023-06-28 11:17:34','2023-06-28 11:17:34',0,0,'107.174.242.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(617,1,NULL,'2023-06-28 17:52:44','2023-06-28 17:52:44',0,0,'142.252.40.79','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(618,1,NULL,'2023-06-28 18:28:25','2023-06-28 18:28:25',0,0,'107.172.52.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(619,1,NULL,'2023-06-28 20:30:46','2023-06-28 20:30:46',0,0,'23.106.20.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(620,1,NULL,'2023-06-28 22:10:51','2023-06-28 22:10:51',0,0,'139.171.15.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(621,1,NULL,'2023-06-29 01:05:28','2023-06-29 01:05:28',0,0,'172.245.250.189','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(622,1,NULL,'2023-06-29 01:14:49','2023-06-29 01:14:49',0,0,'23.81.59.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(623,1,NULL,'2023-06-29 04:24:09','2023-06-29 04:24:09',0,0,'38.152.161.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(624,1,NULL,'2023-06-29 17:29:19','2023-06-29 17:29:19',0,0,'107.173.137.158','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(625,1,NULL,'2023-06-29 18:53:15','2023-06-29 18:53:15',0,0,'168.91.65.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(626,1,NULL,'2023-06-29 21:19:16','2023-06-29 21:19:16',0,0,'139.171.13.22','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(627,1,NULL,'2023-06-30 14:12:00','2023-06-30 14:12:00',0,0,'139.171.12.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(628,1,NULL,'2023-06-30 20:13:03','2023-06-30 20:13:03',0,0,'37.19.217.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(629,1,NULL,'2023-06-30 21:34:19','2023-06-30 21:34:19',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(630,1,NULL,'2023-06-30 21:39:52','2023-06-30 21:39:52',0,0,'23.106.20.127','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(631,1,NULL,'2023-06-30 23:12:47','2023-06-30 23:12:47',0,0,'139.171.14.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(632,1,NULL,'2023-07-01 05:44:16','2023-07-01 05:44:16',0,0,'172.241.238.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(633,1,NULL,'2023-07-01 09:47:43','2023-07-01 09:47:43',0,0,'139.171.12.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(634,1,NULL,'2023-07-01 14:03:59','2023-07-01 14:03:59',0,0,'139.171.12.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(635,1,NULL,'2023-07-01 16:58:14','2023-07-01 16:58:14',0,0,'185.51.134.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(636,1,NULL,'2023-07-01 17:51:52','2023-07-01 17:51:52',0,0,'63.161.78.32','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(637,1,NULL,'2023-07-01 18:46:41','2023-07-01 18:46:41',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(638,1,NULL,'2023-07-01 19:17:29','2023-07-01 19:17:29',0,0,'193.56.113.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(639,1,NULL,'2023-07-01 19:26:06','2023-07-01 19:26:06',0,0,'154.12.203.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(640,1,NULL,'2023-07-01 19:49:55','2023-07-01 19:49:55',0,0,'198.145.153.94','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(641,1,NULL,'2023-07-01 20:24:21','2023-07-01 20:24:21',0,0,'23.81.59.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(642,1,NULL,'2023-07-01 22:00:23','2023-07-01 22:00:23',0,0,'24.130.89.136','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(643,1,NULL,'2023-07-02 00:31:31','2023-07-02 00:31:31',0,0,'192.126.194.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(644,1,NULL,'2023-07-02 00:56:50','2023-07-02 00:56:50',0,0,'172.241.238.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(645,1,NULL,'2023-07-02 08:30:17','2023-07-02 08:30:17',0,0,'63.161.76.162','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(646,1,NULL,'2023-07-02 14:46:27','2023-07-02 14:46:27',0,0,'154.13.199.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(647,1,NULL,'2023-07-02 22:23:20','2023-07-02 22:23:20',0,0,'154.13.199.25','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(648,1,NULL,'2023-07-03 00:00:35','2023-07-03 00:00:35',0,0,'38.152.153.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(649,1,NULL,'2023-07-03 07:42:01','2023-07-03 07:42:01',0,0,'91.245.255.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(650,1,NULL,'2023-07-03 07:49:10','2023-07-03 07:49:10',0,0,'45.120.51.163','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(651,1,NULL,'2023-07-03 10:54:29','2023-07-03 10:54:29',0,0,'154.29.104.21','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(652,1,NULL,'2023-07-03 12:22:20','2023-07-03 12:22:20',0,0,'49.83.16.233','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(653,1,NULL,'2023-07-03 14:05:00','2023-07-03 14:05:00',0,0,'23.105.146.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(654,1,NULL,'2023-07-03 17:55:07','2023-07-03 17:55:07',0,0,'45.87.214.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(655,1,NULL,'2023-07-03 18:13:59','2023-07-03 18:13:59',0,0,'172.241.243.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(656,1,NULL,'2023-07-03 19:41:33','2023-07-03 19:41:33',0,0,'136.0.58.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(657,1,NULL,'2023-07-03 19:58:27','2023-07-03 19:58:27',0,0,'149.62.41.11','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(658,1,NULL,'2023-07-03 22:19:47','2023-07-03 22:19:47',0,0,'115.189.99.203','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; ELS-NX9; HMSCore 6.11.0.302) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.88 HuaweiBrowser/13.0.5.303 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(659,1,NULL,'2023-07-04 01:49:51','2023-07-04 01:49:51',0,0,'140.228.24.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(660,1,NULL,'2023-07-04 23:49:55','2023-07-04 23:49:55',0,0,'63.161.79.127','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(661,1,NULL,'2023-07-05 01:05:36','2023-07-05 01:05:36',0,0,'204.217.205.6','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(662,1,NULL,'2023-07-05 04:04:01','2023-07-05 04:04:01',0,0,'23.81.49.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(663,1,NULL,'2023-07-05 05:45:47','2023-07-05 05:45:47',0,0,'204.217.204.50','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(664,1,NULL,'2023-07-06 00:19:31','2023-07-06 00:19:31',0,0,'52.128.0.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(665,1,NULL,'2023-07-06 00:19:57','2023-07-06 00:19:57',0,0,'52.128.0.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(666,1,NULL,'2023-07-06 06:09:17','2023-07-06 06:09:17',0,0,'63.161.76.147','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(667,1,NULL,'2023-07-06 10:51:12','2023-07-06 10:51:12',0,0,'181.214.218.165','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(668,1,NULL,'2023-07-06 13:01:42','2023-07-06 13:01:42',0,0,'92.118.232.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(669,1,NULL,'2023-07-06 17:23:17','2023-07-06 17:23:17',0,0,'185.121.138.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(671,1,NULL,'2023-07-07 08:56:19','2023-07-07 08:56:19',0,0,'23.81.50.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(673,1,NULL,'2023-07-07 11:05:39','2023-07-07 11:05:39',0,0,'172.255.93.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(674,1,NULL,'2023-07-08 05:45:39','2023-07-08 05:45:39',0,0,'136.0.58.80','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(675,1,NULL,'2023-07-08 13:06:59','2023-07-08 13:06:59',0,0,'23.94.162.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(676,1,NULL,'2023-07-08 16:58:54','2023-07-08 16:58:54',0,0,'103.225.201.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(677,1,NULL,'2023-07-09 06:56:07','2023-07-09 06:56:07',0,0,'49.205.100.159','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(678,1,NULL,'2023-07-09 07:01:05','2023-07-09 07:01:05',0,0,'63.161.79.127','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(679,1,NULL,'2023-07-09 13:48:48','2023-07-09 13:48:48',0,0,'165.231.159.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(680,1,NULL,'2023-07-09 20:34:08','2023-07-09 20:34:08',0,0,'104.252.134.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(681,1,NULL,'2023-07-09 22:06:26','2023-07-09 22:06:26',0,0,'125.236.211.3','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.67','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(682,1,NULL,'2023-07-10 02:11:46','2023-07-10 02:11:46',0,0,'136.0.58.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(683,1,NULL,'2023-07-10 07:50:07','2023-07-10 07:50:07',0,0,'23.81.62.114','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(684,1,NULL,'2023-07-10 08:10:47','2023-07-10 08:10:47',0,0,'173.208.43.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(685,1,NULL,'2023-07-10 15:47:28','2023-07-10 15:47:28',0,0,'107.174.242.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(686,1,NULL,'2023-07-10 16:55:49','2023-07-10 16:55:49',0,0,'38.153.113.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(687,1,NULL,'2023-07-10 23:50:13','2023-07-10 23:50:13',0,0,'154.92.112.225','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(688,1,NULL,'2023-07-11 00:07:53','2023-07-11 00:07:53',0,0,'45.87.214.214','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(689,1,NULL,'2023-07-11 05:57:07','2023-07-11 05:57:07',0,0,'82.102.18.246','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(690,1,NULL,'2023-07-11 14:21:44','2023-07-11 14:21:44',0,0,'107.186.67.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(691,1,NULL,'2023-07-11 21:25:02','2023-07-11 21:25:02',0,0,'196.240.254.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(692,1,NULL,'2023-07-12 00:39:33','2023-07-12 00:39:33',0,0,'125.236.217.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(693,1,NULL,'2023-07-12 08:35:47','2023-07-12 08:35:47',0,0,'103.130.176.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(694,1,NULL,'2023-07-12 09:50:24','2023-07-12 09:50:24',0,0,'136.0.45.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(695,1,NULL,'2023-07-12 14:11:36','2023-07-12 14:11:36',0,0,'185.218.149.238','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(696,1,NULL,'2023-07-12 15:21:00','2023-07-12 15:21:00',0,0,'96.8.122.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(697,1,NULL,'2023-07-12 18:11:32','2023-07-12 18:11:32',0,0,'45.127.248.81','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(698,1,NULL,'2023-07-13 00:56:59','2023-07-13 00:56:59',0,0,'23.80.141.225','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(699,1,NULL,'2023-07-13 01:56:01','2023-07-13 01:56:01',0,0,'196.51.185.229','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(700,1,NULL,'2023-07-13 07:30:12','2023-07-13 07:30:12',0,0,'182.69.181.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(701,1,NULL,'2023-07-13 17:04:49','2023-07-13 17:04:49',0,0,'45.39.45.55','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(702,1,NULL,'2023-07-13 17:37:40','2023-07-13 17:37:40',0,0,'63.161.76.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(704,1,NULL,'2023-07-13 20:30:53','2023-07-13 20:30:53',0,0,'185.76.9.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(705,1,NULL,'2023-07-13 22:01:43','2023-07-13 22:01:43',0,0,'37.19.223.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(706,1,NULL,'2023-07-13 22:39:33','2023-07-13 22:39:33',0,0,'104.223.57.214','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(707,1,NULL,'2023-07-14 05:15:38','2023-07-14 05:15:38',0,0,'45.61.158.3','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(708,1,NULL,'2023-07-14 09:07:56','2023-07-14 09:07:56',0,0,'39.53.236.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(709,1,NULL,'2023-07-14 17:42:57','2023-07-14 17:42:57',0,0,'107.175.246.165','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(710,1,NULL,'2023-07-14 21:07:18','2023-07-14 21:07:18',0,0,'107.186.67.112','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(711,1,NULL,'2023-07-15 01:10:47','2023-07-15 01:10:47',0,0,'107.173.137.154','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(712,1,NULL,'2023-07-15 07:40:20','2023-07-15 07:40:20',0,0,'186.233.185.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(713,1,NULL,'2023-07-15 08:48:47','2023-07-15 08:48:47',0,0,'196.199.55.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(714,1,NULL,'2023-07-15 17:47:31','2023-07-15 17:47:31',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(715,1,NULL,'2023-07-15 18:36:32','2023-07-15 18:36:32',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(716,1,NULL,'2023-07-15 20:32:06','2023-07-15 20:32:06',0,0,'136.0.45.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(717,1,NULL,'2023-07-15 22:21:05','2023-07-15 22:21:05',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(718,1,NULL,'2023-07-16 09:25:09','2023-07-16 09:25:09',0,0,'178.175.128.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(719,1,NULL,'2023-07-16 10:55:03','2023-07-16 10:55:03',0,0,'23.81.62.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(720,1,NULL,'2023-07-16 14:50:08','2023-07-16 14:50:08',0,0,'151.106.11.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(721,1,NULL,'2023-07-16 15:58:56','2023-07-16 15:58:56',0,0,'146.70.72.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(722,1,NULL,'2023-07-16 18:02:16','2023-07-16 18:02:16',0,0,'107.172.229.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(723,1,NULL,'2023-07-16 22:19:41','2023-07-16 22:19:41',0,0,'23.81.60.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(724,1,NULL,'2023-07-17 04:07:26','2023-07-17 04:07:26',0,0,'136.0.45.160','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(725,1,NULL,'2023-07-17 17:06:48','2023-07-17 17:06:48',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(726,1,NULL,'2023-07-17 18:35:47','2023-07-17 18:35:47',0,0,'181.214.89.102','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(727,1,NULL,'2023-07-17 19:08:04','2023-07-17 19:08:04',0,0,'194.36.96.25','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(729,1,NULL,'2023-07-18 06:46:30','2023-07-18 06:46:30',0,0,'23.81.61.191','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(730,1,NULL,'2023-07-18 09:24:41','2023-07-18 09:24:41',0,0,'196.244.48.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(731,1,NULL,'2023-07-18 09:31:34','2023-07-18 09:31:34',0,0,'191.101.114.48','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(732,1,NULL,'2023-07-18 09:43:02','2023-07-18 09:43:02',0,0,'60.234.87.154','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(734,1,NULL,'2023-07-18 12:16:30','2023-07-18 12:16:30',0,0,'196.244.48.198','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(735,1,NULL,'2023-07-18 13:50:08','2023-07-18 13:50:08',0,0,'108.165.218.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(737,1,NULL,'2023-07-18 23:09:53','2023-07-18 23:09:53',0,0,'172.86.123.178','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(738,1,NULL,'2023-07-18 23:58:07','2023-07-18 23:58:07',0,0,'191.101.118.151','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(739,1,NULL,'2023-07-19 05:54:52','2023-07-19 05:54:52',0,0,'222.155.87.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(740,1,NULL,'2023-07-19 09:47:50','2023-07-19 09:47:50',0,0,'193.176.86.55','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(741,1,NULL,'2023-07-19 13:23:52','2023-07-19 13:23:52',0,0,'23.80.141.133','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(742,1,NULL,'2023-07-19 20:09:35','2023-07-19 20:09:35',0,0,'87.248.131.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(743,1,NULL,'2023-07-20 07:02:56','2023-07-20 07:02:56',0,0,'196.242.178.81','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(744,1,NULL,'2023-07-20 13:24:06','2023-07-20 13:24:06',0,0,'139.171.6.220','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(745,1,NULL,'2023-07-20 19:08:06','2023-07-20 19:08:06',0,0,'195.138.125.113','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(746,1,NULL,'2023-07-20 20:19:50','2023-07-20 20:19:50',0,0,'87.248.131.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(747,1,NULL,'2023-07-20 20:23:19','2023-07-20 20:23:19',0,0,'193.24.215.118','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(748,1,NULL,'2023-07-21 10:39:20','2023-07-21 10:39:20',0,0,'193.176.86.92','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(749,1,NULL,'2023-07-21 12:46:29','2023-07-21 12:46:29',0,0,'23.81.50.9','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(750,1,NULL,'2023-07-21 21:11:13','2023-07-21 21:11:13',0,0,'87.248.131.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(751,1,NULL,'2023-07-22 04:44:26','2023-07-22 04:44:26',0,0,'146.70.72.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(752,1,NULL,'2023-07-22 17:13:07','2023-07-22 17:13:07',0,0,'196.245.247.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(753,1,NULL,'2023-07-22 17:45:32','2023-07-22 17:45:32',0,0,'23.81.59.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(754,1,NULL,'2023-07-22 19:56:45','2023-07-22 19:56:45',0,0,'196.240.254.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(755,1,NULL,'2023-07-23 11:35:40','2023-07-23 11:35:40',0,0,'104.223.57.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(756,1,NULL,'2023-07-23 14:17:24','2023-07-23 14:17:24',0,0,'196.242.84.9','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(757,1,NULL,'2023-07-23 15:52:40','2023-07-23 15:52:40',0,0,'87.249.132.181','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(758,1,NULL,'2023-07-23 16:59:06','2023-07-23 16:59:06',0,0,'172.241.169.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(759,1,NULL,'2023-07-23 18:25:03','2023-07-23 18:25:03',0,0,'210.61.162.59','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(760,1,NULL,'2023-07-24 00:33:56','2023-07-24 00:33:56',0,0,'196.240.51.185','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(761,1,NULL,'2023-07-24 03:54:03','2023-07-24 03:54:03',0,0,'196.51.164.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(762,1,NULL,'2023-07-24 14:00:10','2023-07-24 14:00:10',0,0,'72.206.181.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(763,1,NULL,'2023-07-24 15:16:00','2023-07-24 15:16:00',0,0,'37.19.223.238','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(764,1,NULL,'2023-07-24 17:00:29','2023-07-24 17:00:29',0,0,'196.240.51.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(765,1,NULL,'2023-07-24 19:23:42','2023-07-24 19:23:42',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(766,1,NULL,'2023-07-24 20:56:57','2023-07-24 20:56:57',0,0,'217.138.209.109','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(767,1,NULL,'2023-07-24 21:26:23','2023-07-24 21:26:23',0,0,'138.199.36.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(768,1,NULL,'2023-07-24 22:02:14','2023-07-24 22:02:14',0,0,'84.17.60.121','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(769,1,NULL,'2023-07-25 00:10:08','2023-07-25 00:10:08',0,0,'119.224.79.157','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(770,1,NULL,'2023-07-25 13:23:36','2023-07-25 13:23:36',0,0,'213.109.148.174','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(771,1,NULL,'2023-07-25 22:33:55','2023-07-25 22:33:55',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(772,1,NULL,'2023-07-26 00:46:32','2023-07-26 00:46:32',0,0,'49.83.23.223','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(773,1,NULL,'2023-07-26 01:22:21','2023-07-26 01:22:21',0,0,'107.166.113.156','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(775,1,NULL,'2023-07-26 09:42:22','2023-07-26 09:42:22',0,0,'49.224.82.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/115.0.5790.130 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(776,1,NULL,'2023-07-26 10:59:52','2023-07-26 10:59:52',0,0,'192.126.219.152','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(777,1,NULL,'2023-07-26 15:35:14','2023-07-26 15:35:14',0,0,'92.204.175.91','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(778,1,NULL,'2023-07-26 23:07:38','2023-07-26 23:07:38',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(779,1,NULL,'2023-07-27 02:50:50','2023-07-27 02:50:50',0,0,'107.172.229.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(780,1,NULL,'2023-07-28 00:39:33','2023-07-28 00:39:33',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(781,1,NULL,'2023-07-28 17:38:13','2023-07-28 17:38:13',0,0,'154.37.64.158','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(782,1,NULL,'2023-07-28 18:02:38','2023-07-28 18:02:38',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(783,1,NULL,'2023-07-28 21:08:01','2023-07-28 21:08:01',0,0,'196.51.252.79','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(784,1,NULL,'2023-07-28 22:08:19','2023-07-28 22:08:19',0,0,'91.219.212.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(785,1,NULL,'2023-07-29 09:54:14','2023-07-29 09:54:14',0,0,'23.81.60.35','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(787,1,NULL,'2023-07-30 15:16:08','2023-07-30 15:16:08',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(788,1,NULL,'2023-07-30 21:34:01','2023-07-30 21:34:01',0,0,'192.126.201.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(789,1,NULL,'2023-07-30 23:19:24','2023-07-30 23:19:24',0,0,'186.233.185.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(790,1,NULL,'2023-07-31 03:03:18','2023-07-31 03:03:18',0,0,'107.166.114.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(791,1,NULL,'2023-07-31 06:50:00','2023-07-31 06:50:00',0,0,'104.252.134.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(792,1,NULL,'2023-07-31 12:12:20','2023-07-31 12:12:20',0,0,'167.88.168.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(793,1,NULL,'2023-07-31 14:17:08','2023-07-31 14:17:08',0,0,'185.203.7.151','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(794,1,NULL,'2023-07-31 14:35:48','2023-07-31 14:35:48',0,0,'204.217.204.173','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(795,1,NULL,'2023-07-31 16:28:32','2023-07-31 16:28:32',0,0,'154.26.164.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(796,1,NULL,'2023-07-31 20:15:00','2023-07-31 20:15:00',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(797,1,NULL,'2023-08-01 12:29:17','2023-08-01 12:29:17',0,0,'154.12.205.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(798,1,NULL,'2023-08-01 18:05:46','2023-08-01 18:05:46',0,0,'37.120.244.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(799,1,NULL,'2023-08-01 18:11:07','2023-08-01 18:11:07',0,0,'192.210.176.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(800,1,NULL,'2023-08-01 23:58:24','2023-08-01 23:58:24',0,0,'141.164.90.226','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(801,1,NULL,'2023-08-02 00:06:07','2023-08-02 00:06:07',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(802,1,NULL,'2023-08-02 02:14:35','2023-08-02 02:14:35',0,0,'107.166.115.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(803,1,NULL,'2023-08-02 03:39:50','2023-08-02 03:39:50',0,0,'196.240.51.94','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(804,1,NULL,'2023-08-02 08:52:07','2023-08-02 08:52:07',0,0,'196.244.48.189','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(805,1,NULL,'2023-08-02 13:43:21','2023-08-02 13:43:21',0,0,'196.51.44.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(806,1,NULL,'2023-08-03 00:39:05','2023-08-03 00:39:05',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(807,1,NULL,'2023-08-03 11:44:28','2023-08-03 11:44:28',0,0,'95.214.144.32','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(808,1,NULL,'2023-08-03 17:29:29','2023-08-03 17:29:29',0,0,'102.129.143.10','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(809,1,NULL,'2023-08-03 19:12:49','2023-08-03 19:12:49',0,0,'134.73.18.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(810,1,NULL,'2023-08-03 22:29:40','2023-08-03 22:29:40',0,0,'45.83.130.244','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(812,1,NULL,'2023-08-04 18:57:59','2023-08-04 18:57:59',0,0,'154.39.27.226','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(813,1,NULL,'2023-08-04 22:30:30','2023-08-04 22:30:30',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(814,1,NULL,'2023-08-05 08:21:34','2023-08-05 08:21:34',0,0,'196.245.159.75','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(815,1,NULL,'2023-08-05 09:27:38','2023-08-05 09:27:38',0,0,'49.83.22.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(816,1,NULL,'2023-08-05 13:38:20','2023-08-05 13:38:20',0,0,'196.51.41.98','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(817,1,NULL,'2023-08-05 21:11:54','2023-08-05 21:11:54',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(818,1,NULL,'2023-08-06 18:43:54','2023-08-06 18:43:54',0,0,'89.187.170.158','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(819,1,NULL,'2023-08-06 19:28:38','2023-08-06 19:28:38',0,0,'194.36.97.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(820,1,NULL,'2023-08-06 19:34:52','2023-08-06 19:34:52',0,0,'196.245.158.238','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(821,1,NULL,'2023-08-06 20:24:10','2023-08-06 20:24:10',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(822,1,NULL,'2023-08-06 23:53:18','2023-08-06 23:53:18',0,0,'192.210.190.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(823,1,NULL,'2023-08-07 00:26:18','2023-08-07 00:26:18',0,0,'204.44.117.106','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(824,1,NULL,'2023-08-07 09:15:32','2023-08-07 09:15:32',0,0,'196.242.131.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(825,1,NULL,'2023-08-07 09:49:16','2023-08-07 09:49:16',0,0,'5.157.130.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(826,1,NULL,'2023-08-07 19:01:53','2023-08-07 19:01:53',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(827,1,NULL,'2023-08-08 00:54:40','2023-08-08 00:54:40',0,0,'37.120.200.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(828,1,NULL,'2023-08-08 15:55:51','2023-08-08 15:55:51',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(829,1,NULL,'2023-08-09 01:47:05','2023-08-09 01:47:05',0,0,'125.238.112.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(830,1,NULL,'2023-08-09 04:08:51','2023-08-09 04:08:51',0,0,'181.214.218.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(831,1,NULL,'2023-08-09 06:16:05','2023-08-09 06:16:05',0,0,'101.128.99.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(832,1,NULL,'2023-08-09 09:39:53','2023-08-09 09:39:53',0,0,'154.53.91.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(833,1,NULL,'2023-08-09 12:52:53','2023-08-09 12:52:53',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(834,1,NULL,'2023-08-09 23:30:12','2023-08-09 23:30:12',0,0,'146.70.189.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(835,1,NULL,'2023-08-09 23:31:22','2023-08-09 23:31:22',0,0,'172.174.252.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(836,1,NULL,'2023-08-10 04:29:32','2023-08-10 04:29:32',0,0,'103.102.116.113','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(837,1,NULL,'2023-08-10 05:55:15','2023-08-10 05:55:15',0,0,'209.79.65.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(838,1,NULL,'2023-08-10 19:31:28','2023-08-10 19:31:28',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(839,1,NULL,'2023-08-11 00:09:17','2023-08-11 00:09:17',0,0,'91.242.107.147','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(840,1,NULL,'2023-08-11 14:59:26','2023-08-11 14:59:26',0,0,'154.95.38.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(841,1,NULL,'2023-08-11 20:21:05','2023-08-11 20:21:05',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(842,1,NULL,'2023-08-12 21:31:48','2023-08-12 21:31:48',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(844,1,NULL,'2023-08-13 18:20:36','2023-08-13 18:20:36',0,0,'24.239.130.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.200','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(845,1,NULL,'2023-08-13 20:58:10','2023-08-13 20:58:10',0,0,'84.17.47.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(846,1,NULL,'2023-08-13 22:46:21','2023-08-13 22:46:21',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(847,1,NULL,'2023-08-14 16:18:11','2023-08-14 16:18:11',0,0,'43.245.117.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(848,1,NULL,'2023-08-14 21:47:36','2023-08-14 21:47:36',0,0,'38.154.195.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(849,1,NULL,'2023-08-15 04:27:11','2023-08-15 04:27:11',0,0,'46.29.248.141','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(850,1,NULL,'2023-08-15 19:07:41','2023-08-15 19:07:41',0,0,'45.41.162.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(851,1,NULL,'2023-08-15 20:25:29','2023-08-15 20:25:29',0,0,'92.148.204.147','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(852,1,NULL,'2023-08-16 02:42:38','2023-08-16 02:42:38',0,0,'45.61.124.25','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(853,1,NULL,'2023-08-16 05:45:22','2023-08-16 05:45:22',0,0,'38.153.191.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(854,1,NULL,'2023-08-16 11:44:53','2023-08-16 11:44:53',0,0,'67.201.33.50','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(855,1,NULL,'2023-08-16 12:35:23','2023-08-16 12:35:23',0,0,'138.199.59.181','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(856,1,NULL,'2023-08-16 12:47:51','2023-08-16 12:47:51',0,0,'37.19.223.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(857,1,NULL,'2023-08-16 18:59:42','2023-08-16 18:59:42',0,0,'23.236.170.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(859,1,NULL,'2023-08-17 05:54:20','2023-08-17 05:54:20',0,0,'38.153.147.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(860,1,NULL,'2023-08-17 08:40:05','2023-08-17 08:40:05',0,0,'118.92.248.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/116.0.5845.103 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(861,1,NULL,'2023-08-17 11:49:58','2023-08-17 11:49:58',0,0,'198.20.186.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(862,1,NULL,'2023-08-17 14:16:43','2023-08-17 14:16:43',0,0,'38.154.154.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(863,1,NULL,'2023-08-17 15:24:13','2023-08-17 15:24:13',0,0,'154.29.106.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(864,1,NULL,'2023-08-17 15:47:09','2023-08-17 15:47:09',0,0,'104.239.106.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(865,1,NULL,'2023-08-18 08:52:44','2023-08-18 08:52:44',0,0,'203.81.241.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(866,1,NULL,'2023-08-18 10:50:20','2023-08-18 10:50:20',0,0,'151.210.165.102','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(867,1,NULL,'2023-08-18 14:07:00','2023-08-18 14:07:00',0,0,'104.223.149.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(868,1,NULL,'2023-08-19 00:18:34','2023-08-19 00:18:34',0,0,'162.212.174.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(869,1,NULL,'2023-08-19 06:12:16','2023-08-19 06:12:16',0,0,'192.109.110.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(870,1,NULL,'2023-08-19 09:59:46','2023-08-19 09:59:46',0,0,'203.211.79.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(871,1,NULL,'2023-08-19 14:49:57','2023-08-19 14:49:57',0,0,'170.83.176.21','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(872,1,NULL,'2023-08-19 19:25:30','2023-08-19 19:25:30',0,0,'107.175.119.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(873,1,NULL,'2023-08-20 06:59:17','2023-08-20 06:59:17',0,0,'103.112.0.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(875,1,NULL,'2023-08-20 23:33:26','2023-08-20 23:33:26',0,0,'104.238.10.82','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(876,1,NULL,'2023-08-21 08:03:03','2023-08-21 08:03:03',0,0,'196.242.200.5','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(877,1,NULL,'2023-08-21 18:44:23','2023-08-21 18:44:23',0,0,'45.132.194.54','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(878,1,NULL,'2023-08-21 22:00:52','2023-08-21 22:00:52',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(879,1,NULL,'2023-08-22 07:11:50','2023-08-22 07:11:50',0,0,'138.199.36.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(880,1,NULL,'2023-08-22 08:52:53','2023-08-22 08:52:53',0,0,'69.58.12.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(881,1,NULL,'2023-08-22 13:06:20','2023-08-22 13:06:20',0,0,'38.170.173.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(882,1,NULL,'2023-08-22 21:10:59','2023-08-22 21:10:59',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(883,1,NULL,'2023-08-23 04:24:16','2023-08-23 04:24:16',0,0,'38.154.99.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(884,1,NULL,'2023-08-23 06:02:23','2023-08-23 06:02:23',0,0,'203.211.78.183','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 LightSpeed [FBAN/MessengerLiteForiOS;FBAV/422.0.0.19.104;FBBV/504881069;FBDV/iPhone14,7;FBMD/iPhone;FBSN/iOS;FBSV/16.6;FBSS/3;FBCR/;FBID/pho','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(885,1,NULL,'2023-08-23 10:04:02','2023-08-23 10:04:02',0,0,'121.74.118.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(886,1,NULL,'2023-08-23 22:24:33','2023-08-23 22:24:33',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(887,1,NULL,'2023-08-24 00:27:14','2023-08-24 00:27:14',0,0,'38.154.109.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(888,1,NULL,'2023-08-24 04:48:09','2023-08-24 04:48:09',0,0,'146.70.144.120','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(889,1,NULL,'2023-08-24 22:40:57','2023-08-24 22:40:57',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(890,1,NULL,'2023-08-25 00:11:05','2023-08-25 00:11:05',0,0,'154.16.20.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(891,1,NULL,'2023-08-25 22:29:04','2023-08-25 22:29:04',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(892,1,NULL,'2023-08-25 23:06:01','2023-08-25 23:06:01',0,0,'54.37.93.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(893,1,NULL,'2023-08-26 09:22:38','2023-08-26 09:22:38',0,0,'49.83.18.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(896,1,NULL,'2023-08-27 10:28:17','2023-08-27 10:28:17',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(897,1,NULL,'2023-08-27 11:58:18','2023-08-27 11:58:18',0,0,'146.70.144.79','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(898,1,NULL,'2023-08-27 12:21:02','2023-08-27 12:21:02',0,0,'185.253.160.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(899,1,NULL,'2023-08-28 19:15:53','2023-08-28 19:15:53',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(900,1,NULL,'2023-08-28 19:46:53','2023-08-28 19:46:53',0,0,'47.31.152.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.62','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(901,1,NULL,'2023-08-29 06:56:09','2023-08-29 06:56:09',0,0,'101.128.114.94','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(902,1,NULL,'2023-08-29 07:04:21','2023-08-29 07:04:21',0,0,'91.197.36.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(903,1,NULL,'2023-08-29 21:21:05','2023-08-29 21:21:05',0,0,'118.92.238.1','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(904,1,NULL,'2023-08-29 22:59:35','2023-08-29 22:59:35',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(905,1,NULL,'2023-08-30 11:40:15','2023-08-30 11:40:15',0,0,'185.189.114.125','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(906,1,NULL,'2023-08-30 17:43:32','2023-08-30 17:43:32',0,0,'192.252.220.92','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(907,1,NULL,'2023-08-30 21:08:50','2023-08-30 21:08:50',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(908,1,NULL,'2023-08-31 02:57:34','2023-08-31 02:57:34',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(909,1,NULL,'2023-08-31 17:54:25','2023-08-31 17:54:25',0,0,'54.37.93.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(910,1,NULL,'2023-08-31 23:23:46','2023-08-31 23:23:46',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(911,1,NULL,'2023-09-01 01:16:32','2023-09-01 01:16:32',0,0,'107.172.229.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(912,1,NULL,'2023-09-01 16:21:46','2023-09-01 16:21:46',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(913,1,NULL,'2023-09-01 16:25:59','2023-09-01 16:25:59',0,0,'191.101.109.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(914,1,NULL,'2023-09-01 17:33:37','2023-09-01 17:33:37',0,0,'38.154.224.95','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(915,1,NULL,'2023-09-01 18:59:10','2023-09-01 18:59:10',0,0,'103.112.0.85','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(916,1,NULL,'2023-09-02 22:06:12','2023-09-02 22:06:12',0,0,'185.107.44.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(917,1,NULL,'2023-09-03 14:20:43','2023-09-03 14:20:43',0,0,'146.70.189.159','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(918,1,NULL,'2023-09-03 16:53:41','2023-09-03 16:53:41',0,0,'38.152.107.112','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(919,1,NULL,'2023-09-03 19:47:19','2023-09-03 19:47:19',0,0,'146.70.189.159','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(920,1,NULL,'2023-09-03 20:44:05','2023-09-03 20:44:05',0,0,'196.245.153.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(921,1,NULL,'2023-09-03 21:02:07','2023-09-03 21:02:07',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(922,1,NULL,'2023-09-04 02:16:09','2023-09-04 02:16:09',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(923,1,NULL,'2023-09-04 12:28:36','2023-09-04 12:28:36',0,0,'49.83.21.255','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(924,1,NULL,'2023-09-04 15:13:49','2023-09-04 15:13:49',0,0,'139.171.5.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(925,1,NULL,'2023-09-04 15:16:15','2023-09-04 15:16:15',0,0,'139.171.5.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(926,1,NULL,'2023-09-04 19:13:12','2023-09-04 19:13:12',0,0,'40.76.247.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(927,1,NULL,'2023-09-05 00:17:04','2023-09-05 00:17:04',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(928,1,NULL,'2023-09-05 09:13:08','2023-09-05 09:13:08',0,0,'160.20.11.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(929,1,NULL,'2023-09-05 10:10:40','2023-09-05 10:10:40',0,0,'196.247.46.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(930,1,NULL,'2023-09-05 17:27:58','2023-09-05 17:27:58',0,0,'196.51.41.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(931,1,NULL,'2023-09-05 18:10:25','2023-09-05 18:10:25',0,0,'146.70.144.120','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(932,1,NULL,'2023-09-06 03:49:59','2023-09-06 03:49:59',0,0,'38.154.113.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(933,1,NULL,'2023-09-06 06:27:47','2023-09-06 06:27:47',0,0,'196.244.4.64','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(934,1,NULL,'2023-09-06 10:23:21','2023-09-06 10:23:21',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(935,1,NULL,'2023-09-07 06:17:49','2023-09-07 06:17:49',0,0,'27.252.4.22','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(936,1,NULL,'2023-09-07 12:20:06','2023-09-07 12:20:06',0,0,'107.181.132.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(937,1,NULL,'2023-09-07 23:56:27','2023-09-07 23:56:27',0,0,'116.50.62.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.76','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(938,1,NULL,'2023-09-08 15:23:49','2023-09-08 15:23:49',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(939,1,NULL,'2023-09-08 16:22:20','2023-09-08 16:22:20',0,0,'172.245.193.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(940,1,NULL,'2023-09-08 21:18:53','2023-09-08 21:18:53',0,0,'36.255.191.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(941,1,NULL,'2023-09-09 20:55:30','2023-09-09 20:55:30',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(942,1,NULL,'2023-09-09 22:04:25','2023-09-09 22:04:25',0,0,'49.83.16.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(943,1,NULL,'2023-09-10 00:46:36','2023-09-10 00:46:36',0,0,'162.212.170.163','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(944,1,NULL,'2023-09-10 07:10:09','2023-09-10 07:10:09',0,0,'185.254.66.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(945,1,NULL,'2023-09-10 19:01:07','2023-09-10 19:01:07',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(946,1,NULL,'2023-09-10 20:29:54','2023-09-10 20:29:54',0,0,'37.19.223.246','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(947,1,NULL,'2023-09-10 22:38:06','2023-09-10 22:38:06',0,0,'179.61.156.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(948,1,NULL,'2023-09-11 00:18:54','2023-09-11 00:18:54',0,0,'119.224.82.118','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(949,1,NULL,'2023-09-11 09:47:17','2023-09-11 09:47:17',0,0,'91.197.36.35','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(950,1,NULL,'2023-09-11 09:54:39','2023-09-11 09:54:39',0,0,'103.102.116.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(951,1,NULL,'2023-09-11 11:07:38','2023-09-11 11:07:38',0,0,'23.83.89.139','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(952,1,NULL,'2023-09-11 14:50:21','2023-09-11 14:50:21',0,0,'87.249.132.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(953,1,NULL,'2023-09-11 15:55:35','2023-09-11 15:55:35',0,0,'23.82.44.55','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(954,1,NULL,'2023-09-11 22:20:53','2023-09-11 22:20:53',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(955,1,NULL,'2023-09-12 00:37:25','2023-09-12 00:37:25',0,0,'146.70.189.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(956,1,NULL,'2023-09-12 07:03:41','2023-09-12 07:03:41',0,0,'45.41.178.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(957,1,NULL,'2023-09-12 15:41:20','2023-09-12 15:41:20',0,0,'172.245.193.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(958,1,NULL,'2023-09-12 21:39:09','2023-09-12 21:39:09',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(959,1,NULL,'2023-09-12 21:46:21','2023-09-12 21:46:21',0,0,'114.23.108.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(960,1,NULL,'2023-09-12 21:48:40','2023-09-12 21:48:40',0,0,'196.242.131.75','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(961,1,NULL,'2023-09-13 06:58:25','2023-09-13 06:58:25',0,0,'181.177.96.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(962,1,NULL,'2023-09-13 07:22:27','2023-09-13 07:22:27',0,0,'154.47.22.66','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(963,1,NULL,'2023-09-14 00:21:40','2023-09-14 00:21:40',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(964,1,NULL,'2023-09-14 01:18:25','2023-09-14 01:18:25',0,0,'196.196.147.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(965,1,NULL,'2023-09-14 01:26:14','2023-09-14 01:26:14',0,0,'194.36.99.13','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(966,1,NULL,'2023-09-14 10:33:39','2023-09-14 10:33:39',0,0,'181.177.96.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(967,1,NULL,'2023-09-14 14:58:16','2023-09-14 14:58:16',0,0,'23.81.50.229','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(968,1,NULL,'2023-09-14 19:23:52','2023-09-14 19:23:52',0,0,'117.93.32.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(969,1,NULL,'2023-09-14 23:39:38','2023-09-14 23:39:38',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(970,1,NULL,'2023-09-15 01:25:29','2023-09-15 01:25:29',0,0,'193.43.118.133','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(971,1,NULL,'2023-09-16 07:14:28','2023-09-16 07:14:28',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(972,1,NULL,'2023-09-16 21:28:42','2023-09-16 21:28:42',0,0,'23.81.227.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(973,1,NULL,'2023-09-17 13:17:38','2023-09-17 13:17:38',0,0,'115.189.99.108','https://juiceelectrical.co.nz/contact/?gclid=Cj0KCQjwx5qoBhDyARIsAPbMagCNq-DTLNazc53Sru9PJ7F5A8LXROJuopEqOPTq6AdA3tialADtCHAaAh1uEALw_wcB','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/175.0.393249130 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(974,1,NULL,'2023-09-17 15:27:49','2023-09-17 15:27:49',0,0,'45.95.39.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(975,1,NULL,'2023-09-17 22:08:22','2023-09-17 22:08:22',0,0,'23.81.227.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(976,1,NULL,'2023-09-18 00:51:15','2023-09-18 00:51:15',0,0,'191.101.209.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(977,1,NULL,'2023-09-18 08:16:21','2023-09-18 08:16:21',0,0,'196.196.37.114','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(978,1,NULL,'2023-09-18 18:05:09','2023-09-18 18:05:09',0,0,'23.82.40.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(979,1,NULL,'2023-09-18 18:43:52','2023-09-18 18:43:52',0,0,'45.41.178.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(980,1,NULL,'2023-09-18 20:06:09','2023-09-18 20:06:09',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(981,1,NULL,'2023-09-19 00:24:54','2023-09-19 00:24:54',0,0,'107.175.246.165','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(982,1,NULL,'2023-09-19 20:27:21','2023-09-19 20:27:21',0,0,'194.36.97.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(984,1,NULL,'2023-09-19 22:14:00','2023-09-19 22:14:00',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(985,1,NULL,'2023-09-19 23:18:26','2023-09-19 23:18:26',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(986,1,NULL,'2023-09-20 00:56:18','2023-09-20 00:56:18',0,0,'185.209.176.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(987,1,NULL,'2023-09-20 17:18:14','2023-09-20 17:18:14',0,0,'154.85.124.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(988,1,NULL,'2023-09-20 17:54:35','2023-09-20 17:54:35',0,0,'69.162.159.246','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(989,1,NULL,'2023-09-21 00:00:10','2023-09-21 00:00:10',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(990,1,NULL,'2023-09-21 15:08:00','2023-09-21 15:08:00',0,0,'172.241.243.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(991,1,NULL,'2023-09-21 19:15:34','2023-09-21 19:15:34',0,0,'209.127.17.140','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(992,1,NULL,'2023-09-21 21:21:22','2023-09-21 21:21:22',0,0,'23.83.81.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(993,1,NULL,'2023-09-21 21:56:11','2023-09-21 21:56:11',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(994,1,NULL,'2023-09-22 07:40:40','2023-09-22 07:40:40',0,0,'37.19.223.107','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(995,1,NULL,'2023-09-22 12:21:24','2023-09-22 12:21:24',0,0,'37.202.72.218','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(996,1,NULL,'2023-09-22 14:02:25','2023-09-22 14:02:25',0,0,'161.123.5.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(997,1,NULL,'2023-09-22 19:35:24','2023-09-22 19:35:24',0,0,'5.8.13.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(998,1,NULL,'2023-09-22 23:00:12','2023-09-22 23:00:12',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(999,1,NULL,'2023-09-23 01:00:18','2023-09-23 01:00:18',0,0,'195.138.109.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1000,1,NULL,'2023-09-23 04:37:46','2023-09-23 04:37:46',0,0,'146.70.144.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1001,1,NULL,'2023-09-23 09:48:30','2023-09-23 09:48:30',0,0,'181.214.218.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1002,1,NULL,'2023-09-23 11:22:06','2023-09-23 11:22:06',0,0,'125.239.23.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A536E) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/22.0 Chrome/111.0.5563.116 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1003,1,NULL,'2023-09-23 18:35:34','2023-09-23 18:35:34',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1004,1,NULL,'2023-09-24 06:54:45','2023-09-24 06:54:45',0,0,'162.212.170.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1005,1,NULL,'2023-09-24 11:39:41','2023-09-24 11:39:41',0,0,'64.120.34.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1006,1,NULL,'2023-09-24 14:42:19','2023-09-24 14:42:19',0,0,'194.36.98.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1007,1,NULL,'2023-09-24 19:18:29','2023-09-24 19:18:29',0,0,'84.17.43.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1008,1,NULL,'2023-09-24 22:00:52','2023-09-24 22:00:52',0,0,'49.83.108.212','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1009,1,NULL,'2023-09-25 00:21:18','2023-09-25 00:21:18',0,0,'107.166.119.57','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1010,1,NULL,'2023-09-25 08:48:30','2023-09-25 08:48:30',0,0,'196.242.131.210','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1011,1,NULL,'2023-09-25 11:18:28','2023-09-25 11:18:28',0,0,'101.115.150.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1012,1,NULL,'2023-09-25 18:41:16','2023-09-25 18:41:16',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1013,1,NULL,'2023-09-25 22:20:09','2023-09-25 22:20:09',0,0,'107.166.117.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1014,1,NULL,'2023-09-26 01:23:30','2023-09-26 01:23:30',0,0,'196.18.229.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1015,1,NULL,'2023-09-26 23:50:25','2023-09-26 23:50:25',0,0,'141.98.93.168','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1016,1,NULL,'2023-09-27 02:52:46','2023-09-27 02:52:46',0,0,'104.140.14.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1017,1,NULL,'2023-09-27 03:11:23','2023-09-27 03:11:23',0,0,'196.247.46.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1018,1,NULL,'2023-09-27 13:02:36','2023-09-27 13:02:36',0,0,'45.61.116.4','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1019,1,NULL,'2023-09-28 05:09:14','2023-09-28 05:09:14',0,0,'77.83.165.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1020,1,NULL,'2023-09-28 17:05:31','2023-09-28 17:05:31',0,0,'141.164.91.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1021,1,NULL,'2023-09-28 18:14:14','2023-09-28 18:14:14',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1022,1,NULL,'2023-09-28 19:42:40','2023-09-28 19:42:40',0,0,'37.19.223.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1023,1,NULL,'2023-09-28 20:59:48','2023-09-28 20:59:48',0,0,'107.166.116.198','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1024,1,NULL,'2023-09-29 01:01:46','2023-09-29 01:01:46',0,0,'38.153.195.36','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1025,1,NULL,'2023-09-29 03:04:53','2023-09-29 03:04:53',0,0,'196.242.131.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1026,1,NULL,'2023-09-29 03:16:58','2023-09-29 03:16:58',0,0,'119.224.111.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1027,1,NULL,'2023-09-29 03:40:59','2023-09-29 03:40:59',0,0,'146.70.144.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1028,1,NULL,'2023-09-29 05:48:50','2023-09-29 05:48:50',0,0,'38.152.107.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1029,1,NULL,'2023-09-29 05:52:19','2023-09-29 05:52:19',0,0,'172.241.243.254','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1030,1,NULL,'2023-09-29 14:23:02','2023-09-29 14:23:02',0,0,'23.247.37.173','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1031,1,NULL,'2023-09-30 00:57:32','2023-09-30 00:57:32',0,0,'38.57.254.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1032,1,NULL,'2023-09-30 03:45:26','2023-09-30 03:45:26',0,0,'146.70.128.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1033,1,NULL,'2023-09-30 04:30:57','2023-09-30 04:30:57',0,0,'23.94.6.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1034,1,NULL,'2023-10-01 00:17:26','2023-10-01 00:17:26',0,0,'192.186.172.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1035,1,NULL,'2023-10-01 11:17:27','2023-10-01 11:17:27',0,0,'168.91.12.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1036,1,NULL,'2023-10-01 11:20:51','2023-10-01 11:20:51',0,0,'66.203.112.102','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1037,1,NULL,'2023-10-01 14:25:06','2023-10-01 14:25:06',0,0,'159.100.29.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1038,1,NULL,'2023-10-01 19:35:37','2023-10-01 19:35:37',0,0,'51.161.66.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1039,1,NULL,'2023-10-01 20:44:47','2023-10-01 20:44:47',0,0,'154.29.105.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1040,1,NULL,'2023-10-01 22:31:41','2023-10-01 22:31:41',0,0,'154.22.56.122','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1041,1,NULL,'2023-10-02 01:50:25','2023-10-02 01:50:25',0,0,'162.212.170.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1042,1,NULL,'2023-10-02 07:16:35','2023-10-02 07:16:35',0,0,'196.242.57.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1043,1,NULL,'2023-10-02 08:47:07','2023-10-02 08:47:07',0,0,'107.181.178.74','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1044,1,NULL,'2023-10-02 12:47:26','2023-10-02 12:47:26',0,0,'38.152.153.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1045,1,NULL,'2023-10-02 16:52:39','2023-10-02 16:52:39',0,0,'172.187.153.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1046,1,NULL,'2023-10-03 00:05:00','2023-10-03 00:05:00',0,0,'64.137.92.151','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1047,1,NULL,'2023-10-03 02:22:20','2023-10-03 02:22:20',0,0,'192.186.151.18','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1048,1,NULL,'2023-10-03 11:16:04','2023-10-03 11:16:04',0,0,'23.83.81.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1049,1,NULL,'2023-10-03 19:20:39','2023-10-03 19:20:39',0,0,'203.211.78.57','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1050,1,NULL,'2023-10-03 19:55:32','2023-10-03 19:55:32',0,0,'86.108.21.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1051,1,NULL,'2023-10-04 02:24:05','2023-10-04 02:24:05',0,0,'45.41.160.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1052,1,NULL,'2023-10-04 04:05:58','2023-10-04 04:05:58',0,0,'49.83.207.94','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1053,1,NULL,'2023-10-04 05:31:54','2023-10-04 05:31:54',0,0,'146.70.128.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1054,1,NULL,'2023-10-04 09:30:33','2023-10-04 09:30:33',0,0,'23.81.61.114','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1055,1,NULL,'2023-10-04 14:19:54','2023-10-04 14:19:54',0,0,'196.242.57.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1056,1,NULL,'2023-10-04 17:09:05','2023-10-04 17:09:05',0,0,'107.181.143.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1057,1,NULL,'2023-10-04 17:27:17','2023-10-04 17:27:17',0,0,'138.199.52.248','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1058,1,NULL,'2023-10-04 21:31:48','2023-10-04 21:31:48',0,0,'166.88.224.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1059,1,NULL,'2023-10-05 01:13:22','2023-10-05 01:13:22',0,0,'104.143.252.113','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1060,1,NULL,'2023-10-05 05:34:51','2023-10-05 05:34:51',0,0,'192.177.86.198','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1061,1,NULL,'2023-10-05 10:38:52','2023-10-05 10:38:52',0,0,'223.29.253.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1062,1,NULL,'2023-10-05 18:39:21','2023-10-05 18:39:21',0,0,'122.176.207.140','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1063,1,NULL,'2023-10-05 19:45:24','2023-10-05 19:45:24',0,0,'107.181.148.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1064,1,NULL,'2023-10-05 23:07:31','2023-10-05 23:07:31',0,0,'157.52.145.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1065,1,NULL,'2023-10-05 23:07:41','2023-10-05 23:07:41',0,0,'157.52.145.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1066,1,NULL,'2023-10-06 03:27:12','2023-10-06 03:27:12',0,0,'38.154.109.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1067,1,NULL,'2023-10-06 17:00:44','2023-10-06 17:00:44',0,0,'45.63.104.188','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1068,1,NULL,'2023-10-06 18:41:01','2023-10-06 18:41:01',0,0,'154.85.125.174','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1069,1,NULL,'2023-10-06 19:52:51','2023-10-06 19:52:51',0,0,'85.203.32.18','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1070,1,NULL,'2023-10-07 08:17:19','2023-10-07 08:17:19',0,0,'37.19.223.122','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1071,1,NULL,'2023-10-07 12:20:07','2023-10-07 12:20:07',0,0,'154.12.196.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1072,1,NULL,'2023-10-07 14:51:29','2023-10-07 14:51:29',0,0,'196.18.229.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1073,1,NULL,'2023-10-08 06:03:57','2023-10-08 06:03:57',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1074,1,NULL,'2023-10-08 12:23:34','2023-10-08 12:23:34',0,0,'144.126.131.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1075,1,NULL,'2023-10-08 22:48:33','2023-10-08 22:48:33',0,0,'154.53.94.30','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1076,1,NULL,'2023-10-09 04:29:24','2023-10-09 04:29:24',0,0,'38.153.191.75','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1077,1,NULL,'2023-10-09 06:04:42','2023-10-09 06:04:42',0,0,'109.186.5.4','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1078,1,NULL,'2023-10-09 08:47:26','2023-10-09 08:47:26',0,0,'193.56.254.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1079,1,NULL,'2023-10-09 14:49:54','2023-10-09 14:49:54',0,0,'191.96.181.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1080,1,NULL,'2023-10-09 16:26:53','2023-10-09 16:26:53',0,0,'154.53.93.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1081,1,NULL,'2023-10-09 22:41:17','2023-10-09 22:41:17',0,0,'196.242.131.63','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1082,1,NULL,'2023-10-09 23:39:06','2023-10-09 23:39:06',0,0,'203.109.195.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,'spam',NULL),(1083,1,NULL,'2023-10-10 09:50:56','2023-10-10 09:50:56',0,0,'103.126.169.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1084,1,NULL,'2023-10-10 10:00:39','2023-10-10 10:00:39',0,0,'195.80.150.222','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1085,1,NULL,'2023-10-11 09:02:14','2023-10-11 09:02:14',0,0,'23.83.88.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1086,1,NULL,'2023-10-12 07:30:00','2023-10-12 07:30:00',0,0,'112.198.228.25','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1087,1,NULL,'2023-10-12 09:46:26','2023-10-12 09:46:26',0,0,'72.18.134.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1088,1,NULL,'2023-10-14 05:39:07','2023-10-14 05:39:07',0,0,'172.241.242.79','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1089,1,NULL,'2023-10-14 09:59:45','2023-10-14 09:59:45',0,0,'161.29.70.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1090,1,NULL,'2023-10-15 00:54:12','2023-10-15 00:54:12',0,0,'125.238.33.54','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1091,1,NULL,'2023-10-15 11:12:02','2023-10-15 11:12:02',0,0,'196.242.20.226','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1092,1,NULL,'2023-10-15 13:34:11','2023-10-15 13:34:11',0,0,'45.92.28.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1093,1,NULL,'2023-10-15 21:40:06','2023-10-15 21:40:06',0,0,'196.242.20.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1094,1,NULL,'2023-10-15 21:46:39','2023-10-15 21:46:39',0,0,'146.70.189.198','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1095,1,NULL,'2023-10-16 00:36:25','2023-10-16 00:36:25',0,0,'45.92.229.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1096,1,NULL,'2023-10-16 04:15:05','2023-10-16 04:15:05',0,0,'37.19.223.27','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1097,1,NULL,'2023-10-16 04:59:58','2023-10-16 04:59:58',0,0,'104.168.81.50','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1098,1,NULL,'2023-10-16 23:40:47','2023-10-16 23:40:47',0,0,'196.245.149.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1099,1,NULL,'2023-10-17 01:31:00','2023-10-17 01:31:00',0,0,'49.83.17.165','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1100,1,NULL,'2023-10-17 03:20:28','2023-10-17 03:20:28',0,0,'89.138.128.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1101,1,NULL,'2023-10-17 21:35:40','2023-10-17 21:35:40',0,0,'122.176.196.71','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1102,1,NULL,'2023-10-18 04:41:23','2023-10-18 04:41:23',0,0,'161.29.136.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1103,1,NULL,'2023-10-18 05:17:15','2023-10-18 05:17:15',0,0,'196.242.178.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1104,1,NULL,'2023-10-18 07:55:52','2023-10-18 07:55:52',0,0,'139.171.12.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1105,1,NULL,'2023-10-18 13:49:01','2023-10-18 13:49:01',0,0,'89.138.138.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1106,1,NULL,'2023-10-19 07:45:38','2023-10-19 07:45:38',0,0,'173.239.240.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1107,1,NULL,'2023-10-19 18:09:54','2023-10-19 18:09:54',0,0,'156.146.55.179','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1108,1,NULL,'2023-10-19 20:02:51','2023-10-19 20:02:51',0,0,'216.185.45.91','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1109,1,NULL,'2023-10-20 02:12:52','2023-10-20 02:12:52',0,0,'194.113.210.227','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1110,1,NULL,'2023-10-20 04:44:34','2023-10-20 04:44:34',0,0,'196.245.153.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1111,1,NULL,'2023-10-20 09:53:27','2023-10-20 09:53:27',0,0,'195.138.113.173','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1112,1,NULL,'2023-10-20 20:27:06','2023-10-20 20:27:06',0,0,'38.153.195.96','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1113,1,NULL,'2023-10-21 00:42:29','2023-10-21 00:42:29',0,0,'5.8.251.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1114,1,NULL,'2023-10-21 03:43:41','2023-10-21 03:43:41',0,0,'38.240.181.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1115,1,NULL,'2023-10-21 05:12:05','2023-10-21 05:12:05',0,0,'23.105.6.125','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1116,1,NULL,'2023-10-21 11:32:05','2023-10-21 11:32:05',0,0,'34.82.224.175','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1117,1,NULL,'2023-10-22 00:04:08','2023-10-22 00:04:08',0,0,'196.247.212.21','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1118,1,NULL,'2023-10-22 00:30:44','2023-10-22 00:30:44',0,0,'81.161.50.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1119,1,NULL,'2023-10-22 02:34:50','2023-10-22 02:34:50',0,0,'77.137.64.237','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1120,1,NULL,'2023-10-22 04:43:23','2023-10-22 04:43:23',0,0,'149.34.245.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1121,1,NULL,'2023-10-22 16:27:20','2023-10-22 16:27:20',0,0,'141.140.8.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1122,1,NULL,'2023-10-22 20:33:25','2023-10-22 20:33:25',0,0,'31.131.8.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1123,1,NULL,'2023-10-23 07:28:29','2023-10-23 07:28:29',0,0,'172.111.185.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1124,1,NULL,'2023-10-23 08:28:43','2023-10-23 08:28:43',0,0,'122.180.185.138','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1125,1,NULL,'2023-10-23 21:24:12','2023-10-23 21:24:12',0,0,'89.138.138.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1126,1,NULL,'2023-10-24 06:47:20','2023-10-24 06:47:20',0,0,'216.173.111.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1127,1,NULL,'2023-10-24 08:47:28','2023-10-24 08:47:28',0,0,'172.245.7.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1128,1,NULL,'2023-10-24 16:21:33','2023-10-24 16:21:33',0,0,'84.17.49.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1129,1,NULL,'2023-10-24 22:19:33','2023-10-24 22:19:33',0,0,'175.111.102.182','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1130,1,NULL,'2023-10-25 03:05:10','2023-10-25 03:05:10',0,0,'125.239.16.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/118.0.5993.92 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1131,1,NULL,'2023-10-25 09:55:11','2023-10-25 09:55:11',0,0,'192.186.144.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1132,1,NULL,'2023-10-26 01:00:39','2023-10-26 01:00:39',0,0,'65.108.20.198','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1133,1,NULL,'2023-10-26 04:58:38','2023-10-26 04:58:38',0,0,'196.242.131.227','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1134,1,NULL,'2023-10-26 09:19:25','2023-10-26 09:19:25',0,0,'154.47.25.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1135,1,NULL,'2023-10-26 10:58:49','2023-10-26 10:58:49',0,0,'196.244.4.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1136,1,NULL,'2023-10-26 23:26:01','2023-10-26 23:26:01',0,0,'45.43.71.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1137,1,NULL,'2023-10-27 02:32:44','2023-10-27 02:32:44',0,0,'157.52.233.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1138,1,NULL,'2023-10-27 07:54:02','2023-10-27 07:54:02',0,0,'172.241.119.79','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1139,1,NULL,'2023-10-27 08:37:30','2023-10-27 08:37:30',0,0,'139.171.112.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1140,1,NULL,'2023-10-28 17:56:26','2023-10-28 17:56:26',0,0,'49.83.17.112','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1141,1,NULL,'2023-10-29 03:44:42','2023-10-29 03:44:42',0,0,'172.241.243.5','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1142,1,NULL,'2023-10-29 14:39:35','2023-10-29 14:39:35',0,0,'45.43.189.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1143,1,NULL,'2023-10-29 21:22:48','2023-10-29 21:22:48',0,0,'196.240.237.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1144,1,NULL,'2023-10-30 02:05:36','2023-10-30 02:05:36',0,0,'51.77.122.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1145,1,NULL,'2023-10-30 04:30:59','2023-10-30 04:30:59',0,0,'23.82.186.128','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1146,1,NULL,'2023-10-30 12:57:40','2023-10-30 12:57:40',0,0,'156.235.89.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1147,1,NULL,'2023-10-31 02:42:36','2023-10-31 02:42:36',0,0,'38.57.148.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1148,1,NULL,'2023-10-31 06:34:01','2023-10-31 06:34:01',0,0,'38.154.182.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1149,1,NULL,'2023-10-31 06:36:16','2023-10-31 06:36:16',0,0,'196.245.220.74','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1150,1,NULL,'2023-10-31 17:05:35','2023-10-31 17:05:35',0,0,'23.106.24.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1151,1,NULL,'2023-10-31 21:58:35','2023-10-31 21:58:35',0,0,'101.53.218.91','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/118.0.5993.92 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1152,1,NULL,'2023-11-01 00:22:39','2023-11-01 00:22:39',0,0,'219.89.113.230','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1153,1,NULL,'2023-11-01 05:52:00','2023-11-01 05:52:00',0,0,'196.245.220.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1154,1,NULL,'2023-11-01 08:03:55','2023-11-01 08:03:55',0,0,'146.70.144.100','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1155,1,NULL,'2023-11-01 16:17:58','2023-11-01 16:17:58',0,0,'185.77.217.4','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1156,1,NULL,'2023-11-01 20:03:54','2023-11-01 20:03:54',0,0,'81.161.50.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1157,1,NULL,'2023-11-01 21:20:37','2023-11-01 21:20:37',0,0,'199.249.230.27','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1158,1,NULL,'2023-11-02 11:38:32','2023-11-02 11:38:32',0,0,'38.240.183.240','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1159,1,NULL,'2023-11-03 04:21:48','2023-11-03 04:21:48',0,0,'49.83.137.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1160,1,NULL,'2023-11-03 08:29:32','2023-11-03 08:29:32',0,0,'196.240.237.113','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1161,1,NULL,'2023-11-03 15:29:20','2023-11-03 15:29:20',0,0,'37.19.223.110','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1162,1,NULL,'2023-11-03 23:05:27','2023-11-03 23:05:27',0,0,'118.93.197.168','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1163,1,NULL,'2023-11-04 00:03:46','2023-11-04 00:03:46',0,0,'86.111.229.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1164,1,NULL,'2023-11-04 05:10:44','2023-11-04 05:10:44',0,0,'196.247.212.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1165,1,NULL,'2023-11-04 12:10:13','2023-11-04 12:10:13',0,0,'149.102.244.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1166,1,NULL,'2023-11-04 13:48:05','2023-11-04 13:48:05',0,0,'23.82.109.252','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1167,1,NULL,'2023-11-04 17:02:36','2023-11-04 17:02:36',0,0,'23.19.125.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1168,1,NULL,'2023-11-04 17:17:32','2023-11-04 17:17:32',0,0,'149.200.185.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1169,1,NULL,'2023-11-05 09:13:01','2023-11-05 09:13:01',0,0,'149.200.185.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1170,1,NULL,'2023-11-06 10:12:21','2023-11-06 10:12:21',0,0,'23.106.24.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1171,1,NULL,'2023-11-06 11:44:56','2023-11-06 11:44:56',0,0,'154.21.223.157','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1172,1,NULL,'2023-11-06 13:23:31','2023-11-06 13:23:31',0,0,'23.82.184.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1173,1,NULL,'2023-11-06 21:43:36','2023-11-06 21:43:36',0,0,'104.168.97.173','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1174,1,NULL,'2023-11-07 05:00:20','2023-11-07 05:00:20',0,0,'179.61.245.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1175,1,NULL,'2023-11-07 12:51:23','2023-11-07 12:51:23',0,0,'188.65.18.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1176,1,NULL,'2023-11-07 16:24:06','2023-11-07 16:24:06',0,0,'23.19.125.175','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1177,1,NULL,'2023-11-07 16:48:46','2023-11-07 16:48:46',0,0,'191.101.217.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1178,1,NULL,'2023-11-07 19:51:31','2023-11-07 19:51:31',0,0,'209.133.212.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1179,1,NULL,'2023-11-08 11:33:26','2023-11-08 11:33:26',0,0,'204.217.202.188','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1180,1,NULL,'2023-11-08 15:38:34','2023-11-08 15:38:34',0,0,'23.80.167.225','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1181,1,NULL,'2023-11-08 16:27:38','2023-11-08 16:27:38',0,0,'45.43.83.63','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1182,1,NULL,'2023-11-08 21:54:13','2023-11-08 21:54:13',0,0,'23.110.171.113','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1183,1,NULL,'2023-11-08 23:48:43','2023-11-08 23:48:43',0,0,'185.217.127.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1184,1,NULL,'2023-11-09 02:07:31','2023-11-09 02:07:31',0,0,'38.154.204.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1185,1,NULL,'2023-11-09 06:14:16','2023-11-09 06:14:16',0,0,'161.123.130.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1186,1,NULL,'2023-11-10 07:34:39','2023-11-10 07:34:39',0,0,'191.101.209.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1187,1,NULL,'2023-11-10 12:07:22','2023-11-10 12:07:22',0,0,'49.83.137.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1188,1,NULL,'2023-11-11 10:29:53','2023-11-11 10:29:53',0,0,'51.77.122.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1189,1,NULL,'2023-11-11 11:39:09','2023-11-11 11:39:09',0,0,'107.175.119.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1190,1,NULL,'2023-11-11 17:43:56','2023-11-11 17:43:56',0,0,'64.137.93.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1191,1,NULL,'2023-11-12 03:32:16','2023-11-12 03:32:16',0,0,'77.35.230.229','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1192,1,NULL,'2023-11-12 07:15:54','2023-11-12 07:15:54',0,0,'154.29.108.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1193,1,NULL,'2023-11-12 13:12:06','2023-11-12 13:12:06',0,0,'194.36.99.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1194,1,NULL,'2023-11-12 14:41:01','2023-11-12 14:41:01',0,0,'146.70.189.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1195,1,NULL,'2023-11-13 03:28:31','2023-11-13 03:28:31',0,0,'125.238.11.192','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1196,1,NULL,'2023-11-13 09:51:17','2023-11-13 09:51:17',0,0,'87.249.132.138','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1197,1,NULL,'2023-11-13 22:30:22','2023-11-13 22:30:22',0,0,'45.133.6.11','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1198,1,NULL,'2023-11-14 16:46:30','2023-11-14 16:46:30',0,0,'194.36.99.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1199,1,NULL,'2023-11-14 17:22:05','2023-11-14 17:22:05',0,0,'94.232.101.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1200,1,NULL,'2023-11-15 14:47:28','2023-11-15 14:47:28',0,0,'149.200.184.212','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1201,1,NULL,'2023-11-15 16:37:25','2023-11-15 16:37:25',0,0,'23.226.20.94','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1202,1,NULL,'2023-11-15 17:01:57','2023-11-15 17:01:57',0,0,'87.249.132.143','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1203,1,NULL,'2023-11-16 16:11:51','2023-11-16 16:11:51',0,0,'173.234.154.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1204,1,NULL,'2023-11-16 16:51:13','2023-11-16 16:51:13',0,0,'195.133.193.191','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1205,1,NULL,'2023-11-16 17:20:43','2023-11-16 17:20:43',0,0,'191.101.31.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1206,1,NULL,'2023-11-16 21:40:38','2023-11-16 21:40:38',0,0,'161.123.154.54','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1207,1,NULL,'2023-11-17 03:53:01','2023-11-17 03:53:01',0,0,'115.189.103.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1208,1,NULL,'2023-11-17 07:12:53','2023-11-17 07:12:53',0,0,'31.131.8.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1209,1,NULL,'2023-11-17 08:13:28','2023-11-17 08:13:28',0,0,'185.77.217.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1210,1,NULL,'2023-11-17 14:08:03','2023-11-17 14:08:03',0,0,'172.245.157.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1211,1,NULL,'2023-11-17 14:15:56','2023-11-17 14:15:56',0,0,'154.12.210.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1212,1,NULL,'2023-11-17 17:02:11','2023-11-17 17:02:11',0,0,'86.111.230.138','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1213,1,NULL,'2023-11-18 06:23:11','2023-11-18 06:23:11',0,0,'191.96.252.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1214,1,NULL,'2023-11-18 10:48:22','2023-11-18 10:48:22',0,0,'23.95.237.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1215,1,NULL,'2023-11-19 02:14:43','2023-11-19 02:14:43',0,0,'23.226.28.141','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1216,1,NULL,'2023-11-19 09:42:57','2023-11-19 09:42:57',0,0,'173.213.84.58','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1217,1,NULL,'2023-11-19 10:47:32','2023-11-19 10:47:32',0,0,'23.82.104.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1218,1,NULL,'2023-11-19 21:19:54','2023-11-19 21:19:54',0,0,'93.173.46.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1219,1,NULL,'2023-11-19 21:30:18','2023-11-19 21:30:18',0,0,'161.65.207.159','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1220,1,NULL,'2023-11-19 22:01:25','2023-11-19 22:01:25',0,0,'223.29.253.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1221,1,NULL,'2023-11-20 03:23:45','2023-11-20 03:23:45',0,0,'23.19.216.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1222,1,NULL,'2023-11-20 11:13:20','2023-11-20 11:13:20',0,0,'45.32.175.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1223,1,NULL,'2023-11-20 13:01:47','2023-11-20 13:01:47',0,0,'122.176.205.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1224,1,NULL,'2023-11-20 19:12:09','2023-11-20 19:12:09',0,0,'23.82.111.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1225,1,NULL,'2023-11-21 01:05:24','2023-11-21 01:05:24',0,0,'196.199.104.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1226,1,NULL,'2023-11-21 08:28:56','2023-11-21 08:28:56',0,0,'52.128.15.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1227,1,NULL,'2023-11-21 13:22:12','2023-11-21 13:22:12',0,0,'202.78.236.77','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1228,1,NULL,'2023-11-21 16:20:24','2023-11-21 16:20:24',0,0,'146.70.189.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1229,1,NULL,'2023-11-22 13:24:43','2023-11-22 13:24:43',0,0,'202.78.236.17','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1230,1,NULL,'2023-11-22 19:52:01','2023-11-22 19:52:01',0,0,'185.156.46.36','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1231,1,NULL,'2023-11-22 21:23:58','2023-11-22 21:23:58',0,0,'203.211.78.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1232,1,NULL,'2023-11-23 17:57:23','2023-11-23 17:57:23',0,0,'23.226.22.50','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1233,1,NULL,'2023-11-24 08:26:16','2023-11-24 08:26:16',0,0,'191.101.109.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1234,1,NULL,'2023-11-24 10:40:13','2023-11-24 10:40:13',0,0,'223.29.253.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1235,1,NULL,'2023-11-24 11:57:12','2023-11-24 11:57:12',0,0,'23.110.171.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1236,1,NULL,'2023-11-24 14:05:16','2023-11-24 14:05:16',0,0,'95.143.190.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1237,1,NULL,'2023-11-25 03:12:03','2023-11-25 03:12:03',0,0,'49.226.168.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1238,1,NULL,'2023-11-25 03:59:25','2023-11-25 03:59:25',0,0,'23.83.93.4','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1239,1,NULL,'2023-11-25 05:14:28','2023-11-25 05:14:28',0,0,'92.204.175.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1240,1,NULL,'2023-11-25 07:34:45','2023-11-25 07:34:45',0,0,'154.12.210.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1241,1,NULL,'2023-11-26 03:17:58','2023-11-26 03:17:58',0,0,'173.208.27.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1242,1,NULL,'2023-11-26 07:51:07','2023-11-26 07:51:07',0,0,'172.241.247.96','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1243,1,NULL,'2023-11-26 16:49:37','2023-11-26 16:49:37',0,0,'59.153.23.190','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1244,1,NULL,'2023-11-27 02:24:45','2023-11-27 02:24:45',0,0,'202.50.79.100','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1245,1,NULL,'2023-11-27 06:13:17','2023-11-27 06:13:17',0,0,'222.155.86.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1246,1,NULL,'2023-11-27 18:42:44','2023-11-27 18:42:44',0,0,'94.249.80.252','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1247,1,NULL,'2023-11-28 02:54:00','2023-11-28 02:54:00',0,0,'45.139.6.9','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1248,1,NULL,'2023-11-28 14:25:25','2023-11-28 14:25:25',0,0,'23.83.93.66','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1249,1,NULL,'2023-11-29 06:04:41','2023-11-29 06:04:41',0,0,'194.36.97.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1250,1,NULL,'2023-11-30 01:25:29','2023-11-30 01:25:29',0,0,'154.95.38.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1251,1,NULL,'2023-11-30 04:45:47','2023-11-30 04:45:47',0,0,'107.150.1.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1252,1,NULL,'2023-11-30 05:33:16','2023-11-30 05:33:16',0,0,'45.61.116.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1253,1,NULL,'2023-11-30 08:11:52','2023-11-30 08:11:52',0,0,'51.77.122.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1254,1,NULL,'2023-11-30 11:23:23','2023-11-30 11:23:23',0,0,'38.170.245.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1255,1,NULL,'2023-11-30 21:19:23','2023-11-30 21:19:23',0,0,'23.81.49.33','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1256,1,NULL,'2023-12-01 13:41:14','2023-12-01 13:41:14',0,0,'142.91.118.137','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1257,1,NULL,'2023-12-01 17:31:30','2023-12-01 17:31:30',0,0,'196.196.47.63','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1258,1,NULL,'2023-12-01 22:41:43','2023-12-01 22:41:43',0,0,'64.43.90.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1259,1,NULL,'2023-12-02 00:32:31','2023-12-02 00:32:31',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1260,1,NULL,'2023-12-02 00:56:38','2023-12-02 00:56:38',0,0,'149.34.245.200','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1261,1,NULL,'2023-12-02 01:41:34','2023-12-02 01:41:34',0,0,'107.172.156.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1262,1,NULL,'2023-12-02 04:41:43','2023-12-02 04:41:43',0,0,'162.241.40.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1263,1,NULL,'2023-12-02 08:47:34','2023-12-02 08:47:34',0,0,'37.19.223.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1264,1,NULL,'2023-12-02 09:57:29','2023-12-02 09:57:29',0,0,'146.70.189.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1265,1,NULL,'2023-12-02 11:42:51','2023-12-02 11:42:51',0,0,'38.154.166.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1266,1,NULL,'2023-12-02 15:04:18','2023-12-02 15:04:18',0,0,'194.36.99.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1267,1,NULL,'2023-12-02 16:33:41','2023-12-02 16:33:41',0,0,'149.102.247.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1268,1,NULL,'2023-12-02 16:49:40','2023-12-02 16:49:40',0,0,'191.101.110.9','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1269,1,NULL,'2023-12-03 00:24:28','2023-12-03 00:24:28',0,0,'185.158.106.205','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1270,1,NULL,'2023-12-03 01:32:15','2023-12-03 01:32:15',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1271,1,NULL,'2023-12-03 10:41:35','2023-12-03 10:41:35',0,0,'45.120.51.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1272,1,NULL,'2023-12-03 12:17:53','2023-12-03 12:17:53',0,0,'196.18.175.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1273,1,NULL,'2023-12-03 18:22:51','2023-12-03 18:22:51',0,0,'93.172.3.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1274,1,NULL,'2023-12-03 22:08:35','2023-12-03 22:08:35',0,0,'119.224.44.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1275,1,NULL,'2023-12-03 22:14:17','2023-12-03 22:14:17',0,0,'194.36.96.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1276,1,NULL,'2023-12-04 02:22:55','2023-12-04 02:22:55',0,0,'196.199.104.144','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1277,1,NULL,'2023-12-04 02:56:42','2023-12-04 02:56:42',0,0,'104.179.103.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1278,1,NULL,'2023-12-04 03:12:49','2023-12-04 03:12:49',0,0,'45.95.39.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1279,1,NULL,'2023-12-04 16:46:06','2023-12-04 16:46:06',0,0,'45.134.140.236','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1280,1,NULL,'2023-12-04 19:50:48','2023-12-04 19:50:48',0,0,'37.19.217.205','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1281,1,NULL,'2023-12-04 21:02:35','2023-12-04 21:02:35',0,0,'23.19.125.49','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1282,1,NULL,'2023-12-05 01:17:53','2023-12-05 01:17:53',0,0,'147.161.216.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1283,1,NULL,'2023-12-05 05:55:40','2023-12-05 05:55:40',0,0,'43.245.117.120','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1284,1,NULL,'2023-12-05 15:48:34','2023-12-05 15:48:34',0,0,'172.241.246.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1285,1,NULL,'2023-12-06 16:06:49','2023-12-06 16:06:49',0,0,'181.215.176.139','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1286,1,NULL,'2023-12-06 18:55:16','2023-12-06 18:55:16',0,0,'107.181.130.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1287,1,NULL,'2023-12-06 19:01:03','2023-12-06 19:01:03',0,0,'102.165.54.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1288,1,NULL,'2023-12-07 17:58:05','2023-12-07 17:58:05',0,0,'104.143.249.114','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1289,1,NULL,'2023-12-08 16:09:35','2023-12-08 16:09:35',0,0,'149.102.247.244','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1290,1,NULL,'2023-12-08 23:49:34','2023-12-08 23:49:34',0,0,'139.135.36.79','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1291,1,NULL,'2023-12-09 02:18:27','2023-12-09 02:18:27',0,0,'193.56.117.27','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1292,1,NULL,'2023-12-09 13:48:51','2023-12-09 13:48:51',0,0,'23.106.20.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1293,1,NULL,'2023-12-10 16:19:48','2023-12-10 16:19:48',0,0,'195.88.56.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1294,1,NULL,'2023-12-10 17:50:30','2023-12-10 17:50:30',0,0,'149.200.186.210','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1295,1,NULL,'2023-12-10 19:40:06','2023-12-10 19:40:06',0,0,'191.101.92.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1296,1,NULL,'2023-12-10 21:52:56','2023-12-10 21:52:56',0,0,'23.19.125.49','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1297,1,NULL,'2023-12-10 22:05:31','2023-12-10 22:05:31',0,0,'23.80.143.64','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1298,1,NULL,'2023-12-11 16:56:51','2023-12-11 16:56:51',0,0,'149.40.49.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1299,1,NULL,'2023-12-11 21:25:34','2023-12-11 21:25:34',0,0,'122.56.211.36','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1300,1,NULL,'2023-12-12 01:21:22','2023-12-12 01:21:22',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1301,1,NULL,'2023-12-12 19:19:00','2023-12-12 19:19:00',0,0,'5.133.166.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1302,1,NULL,'2023-12-12 22:01:42','2023-12-12 22:01:42',0,0,'173.208.27.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1303,1,NULL,'2023-12-13 03:05:23','2023-12-13 03:05:23',0,0,'196.18.175.122','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1304,1,NULL,'2023-12-13 03:06:27','2023-12-13 03:06:27',0,0,'172.241.153.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1305,1,NULL,'2023-12-13 06:31:26','2023-12-13 06:31:26',0,0,'5.133.166.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1306,1,NULL,'2023-12-13 10:42:23','2023-12-13 10:42:23',0,0,'84.17.51.21','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1307,1,NULL,'2023-12-13 16:27:28','2023-12-13 16:27:28',0,0,'45.127.248.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1308,1,NULL,'2023-12-13 18:54:26','2023-12-13 18:54:26',0,0,'94.232.101.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1309,1,NULL,'2023-12-13 20:16:50','2023-12-13 20:16:50',0,0,'23.19.125.49','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1310,1,NULL,'2023-12-13 20:17:20','2023-12-13 20:17:20',0,0,'196.242.131.88','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1311,1,NULL,'2023-12-14 03:14:46','2023-12-14 03:14:46',0,0,'37.19.223.229','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1312,1,NULL,'2023-12-14 18:41:50','2023-12-14 18:41:50',0,0,'23.95.204.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1313,1,NULL,'2023-12-14 19:42:37','2023-12-14 19:42:37',0,0,'107.179.60.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1314,1,NULL,'2023-12-14 20:35:22','2023-12-14 20:35:22',0,0,'141.98.254.175','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1315,1,NULL,'2023-12-14 20:49:49','2023-12-14 20:49:49',0,0,'196.244.4.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1316,1,NULL,'2023-12-15 03:17:22','2023-12-15 03:17:22',0,0,'149.200.187.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1317,1,NULL,'2023-12-15 16:23:41','2023-12-15 16:23:41',0,0,'45.150.170.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1318,1,NULL,'2023-12-15 22:03:00','2023-12-15 22:03:00',0,0,'104.143.251.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1319,1,NULL,'2023-12-16 04:28:01','2023-12-16 04:28:01',0,0,'104.168.153.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1320,1,NULL,'2023-12-17 00:24:36','2023-12-17 00:24:36',0,0,'23.106.24.159','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1321,1,NULL,'2023-12-17 00:57:52','2023-12-17 00:57:52',0,0,'136.144.35.225','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1322,1,NULL,'2023-12-17 01:30:55','2023-12-17 01:30:55',0,0,'171.4.222.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1323,1,NULL,'2023-12-18 00:22:03','2023-12-18 00:22:03',0,0,'191.101.126.192','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1324,1,NULL,'2023-12-18 00:54:13','2023-12-18 00:54:13',0,0,'45.179.245.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1325,1,NULL,'2023-12-18 00:54:15','2023-12-18 00:54:15',0,0,'45.179.245.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1326,1,NULL,'2023-12-18 00:54:23','2023-12-18 00:54:23',0,0,'45.179.245.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1327,1,NULL,'2023-12-18 00:54:26','2023-12-18 00:54:26',0,0,'45.179.245.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1328,1,NULL,'2023-12-18 03:57:29','2023-12-18 03:57:29',0,0,'154.21.223.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1329,1,NULL,'2023-12-18 10:18:25','2023-12-18 10:18:25',0,0,'38.152.14.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1330,1,NULL,'2023-12-18 19:31:37','2023-12-18 19:31:37',0,0,'104.233.15.92','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1331,1,NULL,'2023-12-18 22:18:13','2023-12-18 22:18:13',0,0,'38.57.149.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1332,1,NULL,'2023-12-19 02:43:00','2023-12-19 02:43:00',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1333,1,NULL,'2023-12-19 09:01:49','2023-12-19 09:01:49',0,0,'121.74.71.139','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1.1 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1334,1,NULL,'2023-12-19 09:23:38','2023-12-19 09:23:38',0,0,'172.241.162.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1335,1,NULL,'2023-12-21 01:06:50','2023-12-21 01:06:50',0,0,'45.201.133.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1336,1,NULL,'2023-12-21 01:06:52','2023-12-21 01:06:52',0,0,'45.201.133.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1337,1,NULL,'2023-12-21 01:07:00','2023-12-21 01:07:00',0,0,'45.201.133.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1338,1,NULL,'2023-12-21 01:07:02','2023-12-21 01:07:02',0,0,'45.201.133.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1339,1,NULL,'2023-12-21 11:08:24','2023-12-21 11:08:24',0,0,'104.168.132.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1340,1,NULL,'2023-12-22 00:39:43','2023-12-22 00:39:43',0,0,'45.87.214.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1341,1,NULL,'2023-12-22 18:26:31','2023-12-22 18:26:31',0,0,'171.4.220.218','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1342,1,NULL,'2023-12-22 19:47:45','2023-12-22 19:47:45',0,0,'121.99.222.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1343,1,NULL,'2023-12-22 22:18:29','2023-12-22 22:18:29',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1344,1,NULL,'2023-12-23 03:52:08','2023-12-23 03:52:08',0,0,'23.106.16.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1345,1,NULL,'2023-12-23 05:57:12','2023-12-23 05:57:12',0,0,'196.18.229.118','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1346,1,NULL,'2023-12-23 21:34:17','2023-12-23 21:34:17',0,0,'87.249.132.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1347,1,NULL,'2023-12-23 22:39:23','2023-12-23 22:39:23',0,0,'104.233.19.140','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1348,1,NULL,'2023-12-24 00:31:00','2023-12-24 00:31:00',0,0,'23.81.49.222','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1349,1,NULL,'2023-12-24 04:47:08','2023-12-24 04:47:08',0,0,'173.208.27.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1350,1,NULL,'2023-12-24 19:31:02','2023-12-24 19:31:02',0,0,'104.168.132.32','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1351,1,NULL,'2023-12-25 10:56:49','2023-12-25 10:56:49',0,0,'141.140.9.139','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1352,1,NULL,'2023-12-25 11:41:36','2023-12-25 11:41:36',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1353,1,NULL,'2023-12-25 22:40:24','2023-12-25 22:40:24',0,0,'171.4.220.218','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1354,1,NULL,'2023-12-25 23:31:05','2023-12-25 23:31:05',0,0,'122.56.210.173','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6.1 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1355,1,NULL,'2023-12-26 15:15:14','2023-12-26 15:15:14',0,0,'23.83.93.222','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1356,1,NULL,'2023-12-26 18:20:11','2023-12-26 18:20:11',0,0,'171.4.248.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1357,1,NULL,'2023-12-27 01:23:24','2023-12-27 01:23:24',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1358,1,NULL,'2023-12-27 05:45:38','2023-12-27 05:45:38',0,0,'23.106.30.114','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1359,1,NULL,'2023-12-27 08:02:51','2023-12-27 08:02:51',0,0,'171.4.248.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1360,1,NULL,'2023-12-27 09:09:53','2023-12-27 09:09:53',0,0,'46.185.191.227','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1361,1,NULL,'2023-12-27 13:03:57','2023-12-27 13:03:57',0,0,'141.140.10.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1362,1,NULL,'2023-12-28 16:03:25','2023-12-28 16:03:25',0,0,'188.65.17.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1363,1,NULL,'2023-12-28 23:11:21','2023-12-28 23:11:21',0,0,'172.241.247.223','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1364,1,NULL,'2023-12-29 02:56:13','2023-12-29 02:56:13',0,0,'196.244.48.10','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1365,1,NULL,'2023-12-29 10:00:10','2023-12-29 10:00:10',0,0,'37.19.223.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1366,1,NULL,'2023-12-29 10:49:35','2023-12-29 10:49:35',0,0,'172.241.147.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1367,1,NULL,'2023-12-30 05:44:48','2023-12-30 05:44:48',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1368,1,NULL,'2023-12-30 21:58:34','2023-12-30 21:58:34',0,0,'104.168.218.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1369,1,NULL,'2023-12-30 22:17:56','2023-12-30 22:17:56',0,0,'171.4.221.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1370,1,NULL,'2024-01-01 03:31:01','2024-01-01 03:31:01',0,0,'94.232.100.6','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1371,1,NULL,'2024-01-01 06:03:56','2024-01-01 06:03:56',0,0,'171.4.221.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1372,1,NULL,'2024-01-01 12:54:08','2024-01-01 12:54:08',0,0,'138.199.22.100','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1373,1,NULL,'2024-01-01 22:20:49','2024-01-01 22:20:49',0,0,'38.170.126.71','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1374,1,NULL,'2024-01-02 01:53:33','2024-01-02 01:53:33',0,0,'104.168.134.223','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1375,1,NULL,'2024-01-02 02:06:57','2024-01-02 02:06:57',0,0,'191.101.126.21','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1376,1,NULL,'2024-01-02 12:07:50','2024-01-02 12:07:50',0,0,'196.240.237.143','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1377,1,NULL,'2024-01-03 13:15:33','2024-01-03 13:15:33',0,0,'154.38.153.50','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1378,1,NULL,'2024-01-03 15:39:37','2024-01-03 15:39:37',0,0,'27.34.64.143','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1379,1,NULL,'2024-01-03 19:47:26','2024-01-03 19:47:26',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1380,1,NULL,'2024-01-03 20:39:38','2024-01-03 20:39:38',0,0,'161.29.237.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1381,1,NULL,'2024-01-03 22:29:18','2024-01-03 22:29:18',0,0,'185.238.231.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1382,1,NULL,'2024-01-04 00:43:26','2024-01-04 00:43:26',0,0,'104.168.133.185','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1383,1,NULL,'2024-01-04 07:20:48','2024-01-04 07:20:48',0,0,'196.242.47.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1384,1,NULL,'2024-01-04 07:40:20','2024-01-04 07:40:20',0,0,'161.123.33.85','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1385,1,NULL,'2024-01-04 16:03:26','2024-01-04 16:03:26',0,0,'178.157.65.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1386,1,NULL,'2024-01-05 02:25:46','2024-01-05 02:25:46',0,0,'191.101.209.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1387,1,NULL,'2024-01-05 13:10:10','2024-01-05 13:10:10',0,0,'171.4.221.249','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1388,1,NULL,'2024-01-05 18:14:06','2024-01-05 18:14:06',0,0,'45.38.60.94','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1389,1,NULL,'2024-01-06 01:00:27','2024-01-06 01:00:27',0,0,'185.192.71.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1390,1,NULL,'2024-01-06 03:02:51','2024-01-06 03:02:51',0,0,'31.131.10.27','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1391,1,NULL,'2024-01-06 04:01:09','2024-01-06 04:01:09',0,0,'207.244.118.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1392,1,NULL,'2024-01-06 11:31:20','2024-01-06 11:31:20',0,0,'154.36.80.190','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1393,1,NULL,'2024-01-06 19:47:02','2024-01-06 19:47:02',0,0,'171.4.250.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1394,1,NULL,'2024-01-07 01:59:19','2024-01-07 01:59:19',0,0,'49.225.114.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1395,1,NULL,'2024-01-07 08:33:07','2024-01-07 08:33:07',0,0,'66.8.205.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1396,1,NULL,'2024-01-07 10:22:54','2024-01-07 10:22:54',0,0,'173.239.254.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1397,1,NULL,'2024-01-07 12:45:37','2024-01-07 12:45:37',0,0,'185.107.44.112','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1398,1,NULL,'2024-01-07 15:26:10','2024-01-07 15:26:10',0,0,'216.74.80.11','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1399,1,NULL,'2024-01-08 12:22:18','2024-01-08 12:22:18',0,0,'23.106.193.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1400,1,NULL,'2024-01-09 00:12:16','2024-01-09 00:12:16',0,0,'172.241.152.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1401,1,NULL,'2024-01-09 02:41:44','2024-01-09 02:41:44',0,0,'23.106.24.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1402,1,NULL,'2024-01-09 10:58:32','2024-01-09 10:58:32',0,0,'45.39.57.85','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1403,1,NULL,'2024-01-09 15:08:19','2024-01-09 15:08:19',0,0,'171.4.221.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1404,1,NULL,'2024-01-09 17:01:47','2024-01-09 17:01:47',0,0,'171.4.221.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1405,1,NULL,'2024-01-09 18:49:15','2024-01-09 18:49:15',0,0,'203.176.137.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1406,1,NULL,'2024-01-09 18:49:19','2024-01-09 18:49:19',0,0,'203.176.137.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1407,1,NULL,'2024-01-09 18:49:32','2024-01-09 18:49:32',0,0,'203.176.137.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1408,1,NULL,'2024-01-09 18:49:35','2024-01-09 18:49:35',0,0,'203.176.137.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1409,1,NULL,'2024-01-10 00:22:50','2024-01-10 00:22:50',0,0,'179.61.245.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1410,1,NULL,'2024-01-10 04:56:01','2024-01-10 04:56:01',0,0,'181.177.111.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1411,1,NULL,'2024-01-10 05:16:21','2024-01-10 05:16:21',0,0,'38.154.99.252','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1412,1,NULL,'2024-01-10 09:43:39','2024-01-10 09:43:39',0,0,'171.4.221.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1413,1,NULL,'2024-01-10 15:26:10','2024-01-10 15:26:10',0,0,'217.39.34.18','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1414,1,NULL,'2024-01-11 01:23:04','2024-01-11 01:23:04',0,0,'203.173.182.165','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1415,1,NULL,'2024-01-11 02:51:19','2024-01-11 02:51:19',0,0,'202.56.36.13','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1416,1,NULL,'2024-01-11 03:43:01','2024-01-11 03:43:01',0,0,'154.36.80.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1417,1,NULL,'2024-01-11 09:19:57','2024-01-11 09:19:57',0,0,'38.57.255.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1418,1,NULL,'2024-01-11 11:20:58','2024-01-11 11:20:58',0,0,'84.17.51.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1419,1,NULL,'2024-01-11 12:51:44','2024-01-11 12:51:44',0,0,'173.208.27.170','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1420,1,NULL,'2024-01-11 15:50:06','2024-01-11 15:50:06',0,0,'102.212.90.16','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1421,1,NULL,'2024-01-11 16:35:46','2024-01-11 16:35:46',0,0,'45.132.227.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1422,1,NULL,'2024-01-11 18:53:26','2024-01-11 18:53:26',0,0,'181.214.165.181','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1423,1,NULL,'2024-01-12 00:51:41','2024-01-12 00:51:41',0,0,'23.106.193.61','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1424,1,NULL,'2024-01-12 03:04:26','2024-01-12 03:04:26',0,0,'107.186.5.147','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1425,1,NULL,'2024-01-12 20:14:05','2024-01-12 20:14:05',0,0,'185.242.111.165','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1426,1,NULL,'2024-01-13 01:53:02','2024-01-13 01:53:02',0,0,'185.102.48.110','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1427,1,NULL,'2024-01-13 03:03:15','2024-01-13 03:03:15',0,0,'196.18.229.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1428,1,NULL,'2024-01-13 10:02:43','2024-01-13 10:02:43',0,0,'104.239.13.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1429,1,NULL,'2024-01-13 12:32:06','2024-01-13 12:32:06',0,0,'64.120.33.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1430,1,NULL,'2024-01-13 19:03:01','2024-01-13 19:03:01',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1431,1,NULL,'2024-01-13 21:12:43','2024-01-13 21:12:43',0,0,'104.164.38.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1432,1,NULL,'2024-01-13 22:43:59','2024-01-13 22:43:59',0,0,'103.187.243.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1433,1,NULL,'2024-01-14 11:54:10','2024-01-14 11:54:10',0,0,'23.106.26.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1434,1,NULL,'2024-01-14 17:27:15','2024-01-14 17:27:15',0,0,'23.106.193.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1435,1,NULL,'2024-01-14 22:46:17','2024-01-14 22:46:17',0,0,'161.29.139.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1436,1,NULL,'2024-01-15 01:32:17','2024-01-15 01:32:17',0,0,'202.36.150.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1437,1,NULL,'2024-01-15 08:06:46','2024-01-15 08:06:46',0,0,'172.241.247.174','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1438,1,NULL,'2024-01-15 13:59:56','2024-01-15 13:59:56',0,0,'45.192.145.82','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1439,1,NULL,'2024-01-15 19:42:11','2024-01-15 19:42:11',0,0,'142.147.245.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1440,1,NULL,'2024-01-16 05:15:27','2024-01-16 05:15:27',0,0,'38.154.206.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1441,1,NULL,'2024-01-16 11:39:54','2024-01-16 11:39:54',0,0,'172.241.152.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1442,1,NULL,'2024-01-16 13:39:11','2024-01-16 13:39:11',0,0,'5.133.162.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1443,1,NULL,'2024-01-16 17:05:10','2024-01-16 17:05:10',0,0,'23.105.145.147','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1444,1,NULL,'2024-01-16 17:37:39','2024-01-16 17:37:39',0,0,'23.81.152.5','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1445,1,NULL,'2024-01-17 00:59:37','2024-01-17 00:59:37',0,0,'101.128.118.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1446,1,NULL,'2024-01-17 05:19:14','2024-01-17 05:19:14',0,0,'118.92.253.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1447,1,NULL,'2024-01-17 05:32:19','2024-01-17 05:32:19',0,0,'104.164.38.17','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1448,1,NULL,'2024-01-17 10:34:04','2024-01-17 10:34:04',0,0,'23.106.24.4','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1449,1,NULL,'2024-01-17 16:06:53','2024-01-17 16:06:53',0,0,'172.241.244.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1450,1,NULL,'2024-01-17 19:28:43','2024-01-17 19:28:43',0,0,'172.241.246.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1451,1,NULL,'2024-01-17 20:05:27','2024-01-17 20:05:27',0,0,'84.17.48.127','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1452,1,NULL,'2024-01-18 01:29:07','2024-01-18 01:29:07',0,0,'172.241.247.190','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1453,1,NULL,'2024-01-18 02:32:13','2024-01-18 02:32:13',0,0,'207.244.219.136','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1454,1,NULL,'2024-01-18 09:57:43','2024-01-18 09:57:43',0,0,'23.82.104.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1455,1,NULL,'2024-01-19 00:08:36','2024-01-19 00:08:36',0,0,'38.170.170.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1456,1,NULL,'2024-01-19 06:37:50','2024-01-19 06:37:50',0,0,'102.64.68.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1457,1,NULL,'2024-01-19 06:37:55','2024-01-19 06:37:55',0,0,'102.64.68.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1458,1,NULL,'2024-01-19 06:38:18','2024-01-19 06:38:18',0,0,'102.64.68.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1459,1,NULL,'2024-01-19 06:38:23','2024-01-19 06:38:23',0,0,'102.64.68.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1460,1,NULL,'2024-01-19 21:39:40','2024-01-19 21:39:40',0,0,'207.244.219.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1461,1,NULL,'2024-01-20 14:11:13','2024-01-20 14:11:13',0,0,'146.70.129.168','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1462,1,NULL,'2024-01-21 02:06:32','2024-01-21 02:06:32',0,0,'193.56.117.220','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1463,1,NULL,'2024-01-21 08:09:32','2024-01-21 08:09:32',0,0,'2.68.70.158','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1464,1,NULL,'2024-01-21 08:15:09','2024-01-21 08:15:09',0,0,'196.244.4.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1465,1,NULL,'2024-01-21 14:45:42','2024-01-21 14:45:42',0,0,'23.106.20.125','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1466,1,NULL,'2024-01-21 20:36:02','2024-01-21 20:36:02',0,0,'64.137.71.144','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1467,1,NULL,'2024-01-22 06:04:38','2024-01-22 06:04:38',0,0,'125.238.114.172','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1468,1,NULL,'2024-01-22 06:55:18','2024-01-22 06:55:18',0,0,'23.106.28.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1469,1,NULL,'2024-01-22 15:17:21','2024-01-22 15:17:21',0,0,'192.99.161.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1470,1,NULL,'2024-01-22 15:17:24','2024-01-22 15:17:24',0,0,'192.99.161.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1471,1,NULL,'2024-01-22 15:17:39','2024-01-22 15:17:39',0,0,'192.99.161.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1472,1,NULL,'2024-01-22 15:17:42','2024-01-22 15:17:42',0,0,'192.99.161.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1473,1,NULL,'2024-01-22 16:12:47','2024-01-22 16:12:47',0,0,'23.106.26.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1474,1,NULL,'2024-01-22 16:58:12','2024-01-22 16:58:12',0,0,'154.21.239.236','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1475,1,NULL,'2024-01-22 21:35:12','2024-01-22 21:35:12',0,0,'154.38.173.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1476,1,NULL,'2024-01-23 01:09:35','2024-01-23 01:09:35',0,0,'84.17.48.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1477,1,NULL,'2024-01-23 03:02:08','2024-01-23 03:02:08',0,0,'203.173.191.114','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1478,1,NULL,'2024-01-23 03:56:39','2024-01-23 03:56:39',0,0,'52.87.254.205','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1479,1,NULL,'2024-01-23 03:59:27','2024-01-23 03:59:27',0,0,'2.57.169.162','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1480,1,NULL,'2024-01-23 04:03:10','2024-01-23 04:03:10',0,0,'146.70.86.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1481,1,NULL,'2024-01-23 05:47:27','2024-01-23 05:47:27',0,0,'196.19.240.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1482,1,NULL,'2024-01-23 10:22:08','2024-01-23 10:22:08',0,0,'23.82.44.55','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1483,1,NULL,'2024-01-23 15:58:48','2024-01-23 15:58:48',0,0,'172.241.152.192','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1484,1,NULL,'2024-01-23 19:21:12','2024-01-23 19:21:12',0,0,'27.34.64.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1485,1,NULL,'2024-01-24 00:25:26','2024-01-24 00:25:26',0,0,'172.241.243.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1486,1,NULL,'2024-01-24 10:34:03','2024-01-24 10:34:03',0,0,'195.78.54.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1487,1,NULL,'2024-01-24 16:07:05','2024-01-24 16:07:05',0,0,'171.4.223.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1488,1,NULL,'2024-01-25 03:58:54','2024-01-25 03:58:54',0,0,'45.154.138.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1489,1,NULL,'2024-01-25 06:48:56','2024-01-25 06:48:56',0,0,'103.37.180.244','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1490,1,NULL,'2024-01-25 08:38:39','2024-01-25 08:38:39',0,0,'154.202.101.222','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1491,1,NULL,'2024-01-25 09:44:13','2024-01-25 09:44:13',0,0,'86.111.229.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1492,1,NULL,'2024-01-25 16:05:13','2024-01-25 16:05:13',0,0,'77.247.178.163','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1493,1,NULL,'2024-01-25 19:50:50','2024-01-25 19:50:50',0,0,'107.172.241.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1494,1,NULL,'2024-01-26 01:36:56','2024-01-26 01:36:56',0,0,'85.186.138.170','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1495,1,NULL,'2024-01-26 16:17:25','2024-01-26 16:17:25',0,0,'185.251.19.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1496,1,NULL,'2024-01-27 09:42:41','2024-01-27 09:42:41',0,0,'185.107.56.230','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1497,1,NULL,'2024-01-27 11:02:47','2024-01-27 11:02:47',0,0,'172.241.247.57','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1498,1,NULL,'2024-01-27 17:05:00','2024-01-27 17:05:00',0,0,'37.19.223.106','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1499,1,NULL,'2024-01-28 07:44:02','2024-01-28 07:44:02',0,0,'23.92.209.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1500,1,NULL,'2024-01-28 17:26:02','2024-01-28 17:26:02',0,0,'81.161.53.222','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1501,1,NULL,'2024-01-28 18:49:20','2024-01-28 18:49:20',0,0,'172.241.168.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1502,1,NULL,'2024-01-29 09:00:56','2024-01-29 09:00:56',0,0,'37.19.217.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1503,1,NULL,'2024-01-29 14:26:29','2024-01-29 14:26:29',0,0,'37.63.27.133','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1504,1,NULL,'2024-01-29 17:58:43','2024-01-29 17:58:43',0,0,'196.242.200.75','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1505,1,NULL,'2024-01-29 23:56:21','2024-01-29 23:56:21',0,0,'23.106.19.170','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1506,1,NULL,'2024-01-30 00:19:23','2024-01-30 00:19:23',0,0,'23.82.110.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1507,1,NULL,'2024-01-30 02:40:44','2024-01-30 02:40:44',0,0,'46.246.8.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1508,1,NULL,'2024-01-30 12:42:14','2024-01-30 12:42:14',0,0,'119.224.71.193','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1509,1,NULL,'2024-01-30 16:41:12','2024-01-30 16:41:12',0,0,'146.70.129.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1510,1,NULL,'2024-01-30 17:33:10','2024-01-30 17:33:10',0,0,'192.186.155.150','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1511,1,NULL,'2024-01-30 18:31:09','2024-01-30 18:31:09',0,0,'196.19.249.121','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1512,1,NULL,'2024-01-30 19:45:44','2024-01-30 19:45:44',0,0,'203.211.77.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.6 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1513,1,NULL,'2024-01-30 22:42:47','2024-01-30 22:42:47',0,0,'119.224.14.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2.1 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1514,1,NULL,'2024-01-31 08:10:26','2024-01-31 08:10:26',0,0,'196.242.47.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1515,1,NULL,'2024-01-31 11:39:19','2024-01-31 11:39:19',0,0,'23.82.44.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1516,1,NULL,'2024-01-31 13:38:12','2024-01-31 13:38:12',0,0,'185.107.83.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1517,1,NULL,'2024-02-01 01:03:17','2024-02-01 01:03:17',0,0,'23.106.16.6','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1518,1,NULL,'2024-02-01 04:58:59','2024-02-01 04:58:59',0,0,'84.17.43.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1519,1,NULL,'2024-02-01 06:05:46','2024-02-01 06:05:46',0,0,'196.242.20.225','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1520,1,NULL,'2024-02-01 06:44:59','2024-02-01 06:44:59',0,0,'173.239.204.92','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1521,1,NULL,'2024-02-01 09:10:05','2024-02-01 09:10:05',0,0,'81.181.56.64','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1522,1,NULL,'2024-02-01 13:02:33','2024-02-01 13:02:33',0,0,'23.108.93.157','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1523,1,NULL,'2024-02-02 05:17:41','2024-02-02 05:17:41',0,0,'200.71.127.127','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1524,1,NULL,'2024-02-02 07:06:35','2024-02-02 07:06:35',0,0,'173.239.204.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1525,1,NULL,'2024-02-02 11:21:35','2024-02-02 11:21:35',0,0,'23.81.60.226','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1526,1,NULL,'2024-02-02 14:38:19','2024-02-02 14:38:19',0,0,'173.239.204.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1527,1,NULL,'2024-02-02 23:03:22','2024-02-02 23:03:22',0,0,'94.249.80.141','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1528,1,NULL,'2024-02-03 05:47:46','2024-02-03 05:47:46',0,0,'172.241.247.170','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1529,1,NULL,'2024-02-03 07:57:58','2024-02-03 07:57:58',0,0,'64.137.48.48','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1530,1,NULL,'2024-02-03 08:30:37','2024-02-03 08:30:37',0,0,'209.127.127.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1531,1,NULL,'2024-02-04 22:52:14','2024-02-04 22:52:14',0,0,'172.241.235.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1532,1,NULL,'2024-02-05 02:54:54','2024-02-05 02:54:54',0,0,'196.242.195.110','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1533,1,NULL,'2024-02-05 06:31:59','2024-02-05 06:31:59',0,0,'45.91.23.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1534,1,NULL,'2024-02-05 06:39:52','2024-02-05 06:39:52',0,0,'222.152.179.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1535,1,NULL,'2024-02-05 12:44:43','2024-02-05 12:44:43',0,0,'24.249.199.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1536,1,NULL,'2024-02-05 12:53:45','2024-02-05 12:53:45',0,0,'23.106.18.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1537,1,NULL,'2024-02-05 16:36:25','2024-02-05 16:36:25',0,0,'23.106.192.13','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1538,1,NULL,'2024-02-05 19:47:45','2024-02-05 19:47:45',0,0,'64.120.34.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1539,1,NULL,'2024-02-06 07:00:21','2024-02-06 07:00:21',0,0,'23.81.152.179','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1540,1,NULL,'2024-02-07 01:28:30','2024-02-07 01:28:30',0,0,'203.211.79.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1541,1,NULL,'2024-02-07 13:13:50','2024-02-07 13:13:50',0,0,'107.186.5.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1542,1,NULL,'2024-02-07 13:43:18','2024-02-07 13:43:18',0,0,'172.241.152.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1543,1,NULL,'2024-02-07 18:48:04','2024-02-07 18:48:04',0,0,'23.110.173.121','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1544,1,NULL,'2024-02-07 19:16:23','2024-02-07 19:16:23',0,0,'154.30.251.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1545,1,NULL,'2024-02-08 00:33:03','2024-02-08 00:33:03',0,0,'23.80.156.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1546,1,NULL,'2024-02-08 03:45:27','2024-02-08 03:45:27',0,0,'38.152.148.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1547,1,NULL,'2024-02-08 04:25:48','2024-02-08 04:25:48',0,0,'69.4.88.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1548,1,NULL,'2024-02-08 13:08:14','2024-02-08 13:08:14',0,0,'23.106.20.48','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1549,1,NULL,'2024-02-09 03:36:21','2024-02-09 03:36:21',0,0,'154.13.252.13','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1550,1,NULL,'2024-02-09 04:34:13','2024-02-09 04:34:13',0,0,'23.105.144.170','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1551,1,NULL,'2024-02-09 04:39:46','2024-02-09 04:39:46',0,0,'222.155.85.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1552,1,NULL,'2024-02-09 06:26:27','2024-02-09 06:26:27',0,0,'198.46.161.85','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1553,1,NULL,'2024-02-09 14:28:34','2024-02-09 14:28:34',0,0,'196.240.51.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1554,1,NULL,'2024-02-09 15:07:43','2024-02-09 15:07:43',0,0,'188.65.17.91','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1555,1,NULL,'2024-02-09 15:37:22','2024-02-09 15:37:22',0,0,'192.126.186.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1556,1,NULL,'2024-02-09 15:39:36','2024-02-09 15:39:36',0,0,'107.186.31.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1557,1,NULL,'2024-02-09 21:28:46','2024-02-09 21:28:46',0,0,'161.29.136.220','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1558,1,NULL,'2024-02-10 06:24:36','2024-02-10 06:24:36',0,0,'98.159.37.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1559,1,NULL,'2024-02-10 09:23:51','2024-02-10 09:23:51',0,0,'178.233.20.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1560,1,NULL,'2024-02-10 10:16:23','2024-02-10 10:16:23',0,0,'47.90.220.185','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1561,1,NULL,'2024-02-10 13:22:01','2024-02-10 13:22:01',0,0,'64.120.34.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1562,1,NULL,'2024-02-10 17:12:32','2024-02-10 17:12:32',0,0,'23.106.22.205','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1563,1,NULL,'2024-02-11 00:03:56','2024-02-11 00:03:56',0,0,'138.199.52.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1564,1,NULL,'2024-02-11 09:49:51','2024-02-11 09:49:51',0,0,'172.241.152.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1565,1,NULL,'2024-02-11 10:22:49','2024-02-11 10:22:49',0,0,'84.247.48.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1566,1,NULL,'2024-02-11 22:43:55','2024-02-11 22:43:55',0,0,'23.82.44.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1567,1,NULL,'2024-02-12 01:03:51','2024-02-12 01:03:51',0,0,'38.153.137.54','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1568,1,NULL,'2024-02-12 14:12:24','2024-02-12 14:12:24',0,0,'216.73.163.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1569,1,NULL,'2024-02-13 04:32:51','2024-02-13 04:32:51',0,0,'23.106.22.36','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1570,1,NULL,'2024-02-13 06:16:12','2024-02-13 06:16:12',0,0,'198.12.112.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1571,1,NULL,'2024-02-13 12:47:04','2024-02-13 12:47:04',0,0,'23.106.27.237','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1572,1,NULL,'2024-02-13 14:10:16','2024-02-13 14:10:16',0,0,'104.251.85.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1573,1,NULL,'2024-02-13 14:24:53','2024-02-13 14:24:53',0,0,'68.68.110.190','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1574,1,NULL,'2024-02-13 20:28:49','2024-02-13 20:28:49',0,0,'49.43.41.218','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1575,1,NULL,'2024-02-13 22:42:52','2024-02-13 22:42:52',0,0,'45.224.228.95','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1576,1,NULL,'2024-02-14 01:43:22','2024-02-14 01:43:22',0,0,'203.109.195.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1577,1,NULL,'2024-02-14 16:00:18','2024-02-14 16:00:18',0,0,'193.31.106.95','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1578,1,NULL,'2024-02-14 19:29:52','2024-02-14 19:29:52',0,0,'107.150.71.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1579,1,NULL,'2024-02-14 20:13:32','2024-02-14 20:13:32',0,0,'209.127.110.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1580,1,NULL,'2024-02-15 03:21:32','2024-02-15 03:21:32',0,0,'172.241.152.106','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1581,1,NULL,'2024-02-15 17:25:50','2024-02-15 17:25:50',0,0,'92.119.168.114','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1582,1,NULL,'2024-02-15 21:26:36','2024-02-15 21:26:36',0,0,'87.249.132.163','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1583,1,NULL,'2024-02-16 00:40:48','2024-02-16 00:40:48',0,0,'216.24.216.13','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1584,1,NULL,'2024-02-16 09:57:37','2024-02-16 09:57:37',0,0,'24.108.106.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1585,1,NULL,'2024-02-16 12:48:10','2024-02-16 12:48:10',0,0,'23.81.61.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1586,1,NULL,'2024-02-16 19:09:31','2024-02-16 19:09:31',0,0,'52.128.8.49','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1587,1,NULL,'2024-02-16 21:31:34','2024-02-16 21:31:34',0,0,'104.239.52.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1588,1,NULL,'2024-02-16 21:41:15','2024-02-16 21:41:15',0,0,'104.223.149.94','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1589,1,NULL,'2024-02-17 00:11:36','2024-02-17 00:11:36',0,0,'193.31.107.110','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1590,1,NULL,'2024-02-17 03:35:17','2024-02-17 03:35:17',0,0,'45.249.106.16','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1591,1,NULL,'2024-02-17 04:27:30','2024-02-17 04:27:30',0,0,'66.56.83.102','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1592,1,NULL,'2024-02-17 12:30:25','2024-02-17 12:30:25',0,0,'64.120.34.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1593,1,NULL,'2024-02-17 16:12:09','2024-02-17 16:12:09',0,0,'172.241.152.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1594,1,NULL,'2024-02-17 18:01:16','2024-02-17 18:01:16',0,0,'157.97.121.174','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1595,1,NULL,'2024-02-17 22:24:38','2024-02-17 22:24:38',0,0,'24.108.106.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1596,1,NULL,'2024-02-17 23:17:14','2024-02-17 23:17:14',0,0,'185.172.64.79','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1597,1,NULL,'2024-02-18 21:35:54','2024-02-18 21:35:54',0,0,'23.81.60.74','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1598,1,NULL,'2024-02-19 04:21:58','2024-02-19 04:21:58',0,0,'154.84.140.181','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1599,1,NULL,'2024-02-19 12:18:09','2024-02-19 12:18:09',0,0,'194.39.32.25','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1600,1,NULL,'2024-02-19 12:48:14','2024-02-19 12:48:14',0,0,'107.187.118.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1601,1,NULL,'2024-02-19 13:09:04','2024-02-19 13:09:04',0,0,'46.35.252.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1602,1,NULL,'2024-02-19 13:18:20','2024-02-19 13:18:20',0,0,'23.106.18.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1603,1,NULL,'2024-02-19 20:30:46','2024-02-19 20:30:46',0,0,'103.241.36.43','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1604,1,NULL,'2024-02-19 21:12:41','2024-02-19 21:12:41',0,0,'92.119.36.158','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1605,1,NULL,'2024-02-19 21:28:00','2024-02-19 21:28:00',0,0,'103.53.219.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1606,1,NULL,'2024-02-19 23:18:04','2024-02-19 23:18:04',0,0,'102.212.90.110','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1607,1,NULL,'2024-02-20 00:07:21','2024-02-20 00:07:21',0,0,'95.143.190.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1608,1,NULL,'2024-02-20 06:27:53','2024-02-20 06:27:53',0,0,'103.241.36.43','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1609,1,NULL,'2024-02-21 07:08:35','2024-02-21 07:08:35',0,0,'104.143.248.198','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1610,1,NULL,'2024-02-21 10:14:53','2024-02-21 10:14:53',0,0,'38.170.245.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1611,1,NULL,'2024-02-21 12:59:00','2024-02-21 12:59:00',0,0,'23.106.18.189','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1612,1,NULL,'2024-02-21 13:38:33','2024-02-21 13:38:33',0,0,'207.244.85.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1613,1,NULL,'2024-02-21 14:54:44','2024-02-21 14:54:44',0,0,'45.133.158.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1614,1,NULL,'2024-02-21 21:06:54','2024-02-21 21:06:54',0,0,'45.157.73.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1615,1,NULL,'2024-02-21 22:46:47','2024-02-21 22:46:47',0,0,'107.187.114.212','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1616,1,NULL,'2024-02-21 23:17:20','2024-02-21 23:17:20',0,0,'196.240.51.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1617,1,NULL,'2024-02-22 04:52:13','2024-02-22 04:52:13',0,0,'154.30.251.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1618,1,NULL,'2024-02-22 14:30:49','2024-02-22 14:30:49',0,0,'45.41.173.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1619,1,NULL,'2024-02-23 05:55:20','2024-02-23 05:55:20',0,0,'64.43.125.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1620,1,NULL,'2024-02-23 11:43:09','2024-02-23 11:43:09',0,0,'193.160.237.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1621,1,NULL,'2024-02-23 17:43:52','2024-02-23 17:43:52',0,0,'45.43.68.87','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1622,1,NULL,'2024-02-23 18:01:59','2024-02-23 18:01:59',0,0,'104.168.113.81','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1623,1,NULL,'2024-02-23 21:37:48','2024-02-23 21:37:48',0,0,'196.196.147.133','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1624,1,NULL,'2024-02-24 01:24:22','2024-02-24 01:24:22',0,0,'104.239.88.113','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1625,1,NULL,'2024-02-24 02:50:23','2024-02-24 02:50:23',0,0,'198.105.101.182','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1626,1,NULL,'2024-02-24 07:49:20','2024-02-24 07:49:20',0,0,'64.120.34.203','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1627,1,NULL,'2024-02-24 08:42:55','2024-02-24 08:42:55',0,0,'196.240.105.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1628,1,NULL,'2024-02-24 11:07:00','2024-02-24 11:07:00',0,0,'23.81.60.43','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1629,1,NULL,'2024-02-24 15:12:56','2024-02-24 15:12:56',0,0,'23.82.40.151','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1630,1,NULL,'2024-02-24 21:46:34','2024-02-24 21:46:34',0,0,'146.70.189.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1631,1,NULL,'2024-02-24 22:55:49','2024-02-24 22:55:49',0,0,'23.106.28.151','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1632,1,NULL,'2024-02-25 03:46:10','2024-02-25 03:46:10',0,0,'23.105.144.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1633,1,NULL,'2024-02-25 07:04:16','2024-02-25 07:04:16',0,0,'154.202.101.222','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1634,1,NULL,'2024-02-25 07:58:14','2024-02-25 07:58:14',0,0,'103.3.227.137','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1635,1,NULL,'2024-02-25 16:20:39','2024-02-25 16:20:39',0,0,'103.221.232.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1636,1,NULL,'2024-02-25 20:34:06','2024-02-25 20:34:06',0,0,'193.36.204.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1637,1,NULL,'2024-02-25 23:30:58','2024-02-25 23:30:58',0,0,'31.171.152.139','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1638,1,NULL,'2024-02-26 00:11:27','2024-02-26 00:11:27',0,0,'222.153.102.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1639,1,NULL,'2024-02-26 00:40:32','2024-02-26 00:40:32',0,0,'138.186.139.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1640,1,NULL,'2024-02-26 04:55:21','2024-02-26 04:55:21',0,0,'196.242.114.109','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1641,1,NULL,'2024-02-26 05:22:27','2024-02-26 05:22:27',0,0,'107.174.150.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1642,1,NULL,'2024-02-26 22:47:35','2024-02-26 22:47:35',0,0,'184.174.46.127','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1643,1,NULL,'2024-02-27 05:56:34','2024-02-27 05:56:34',0,0,'172.255.93.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1644,1,NULL,'2024-02-27 13:14:10','2024-02-27 13:14:10',0,0,'45.192.140.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1645,1,NULL,'2024-02-27 14:34:50','2024-02-27 14:34:50',0,0,'104.238.10.195','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1646,1,NULL,'2024-02-27 17:26:48','2024-02-27 17:26:48',0,0,'219.89.232.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.6 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1647,1,NULL,'2024-02-27 23:21:07','2024-02-27 23:21:07',0,0,'193.56.116.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1648,1,NULL,'2024-02-28 00:33:35','2024-02-28 00:33:35',0,0,'203.109.195.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,'active',NULL),(1649,1,NULL,'2024-02-28 09:46:44','2024-02-28 09:46:44',0,0,'139.171.26.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1650,1,NULL,'2024-02-28 14:49:18','2024-02-28 14:49:18',0,0,'45.12.179.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1651,1,NULL,'2024-02-28 19:09:10','2024-02-28 19:09:10',0,0,'181.215.176.244','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1652,1,NULL,'2024-02-28 19:12:22','2024-02-28 19:12:22',0,0,'23.247.105.32','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1653,1,NULL,'2024-02-29 00:21:32','2024-02-29 00:21:32',0,0,'114.198.3.156','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1654,1,NULL,'2024-02-29 02:03:54','2024-02-29 02:03:54',0,0,'194.5.53.227','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1655,1,NULL,'2024-02-29 02:48:34','2024-02-29 02:48:34',0,0,'91.217.73.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1656,1,NULL,'2024-02-29 05:20:07','2024-02-29 05:20:07',0,0,'38.170.252.138','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1657,1,NULL,'2024-02-29 20:34:55','2024-02-29 20:34:55',0,0,'170.83.179.127','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1658,1,NULL,'2024-02-29 22:18:57','2024-02-29 22:18:57',0,0,'45.95.119.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1659,1,NULL,'2024-03-01 02:24:05','2024-03-01 02:24:05',0,0,'154.16.49.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1660,1,NULL,'2024-03-01 03:39:55','2024-03-01 03:39:55',0,0,'23.106.20.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1661,1,NULL,'2024-03-01 07:40:25','2024-03-01 07:40:25',0,0,'185.187.168.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1662,1,NULL,'2024-03-01 10:25:06','2024-03-01 10:25:06',0,0,'46.191.185.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1663,1,NULL,'2024-03-01 14:55:54','2024-03-01 14:55:54',0,0,'64.137.62.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1664,1,NULL,'2024-03-01 17:44:54','2024-03-01 17:44:54',0,0,'49.49.242.183','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1665,1,NULL,'2024-03-01 19:29:25','2024-03-01 19:29:25',0,0,'217.69.121.58','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1666,1,NULL,'2024-03-02 04:42:00','2024-03-02 04:42:00',0,0,'222.154.136.22','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1667,1,NULL,'2024-03-02 07:57:43','2024-03-02 07:57:43',0,0,'160.20.10.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1668,1,NULL,'2024-03-02 09:17:53','2024-03-02 09:17:53',0,0,'119.224.50.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1669,1,NULL,'2024-03-02 12:51:32','2024-03-02 12:51:32',0,0,'45.61.123.254','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1670,1,NULL,'2024-03-02 20:10:33','2024-03-02 20:10:33',0,0,'198.46.202.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1671,1,NULL,'2024-03-03 01:30:17','2024-03-03 01:30:17',0,0,'151.251.251.217','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1672,1,NULL,'2024-03-03 03:31:32','2024-03-03 03:31:32',0,0,'136.144.35.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1673,1,NULL,'2024-03-03 03:38:39','2024-03-03 03:38:39',0,0,'23.81.61.30','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1674,1,NULL,'2024-03-03 06:39:54','2024-03-03 06:39:54',0,0,'161.29.237.240','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1675,1,NULL,'2024-03-03 08:24:57','2024-03-03 08:24:57',0,0,'194.36.108.85','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1676,1,NULL,'2024-03-03 08:30:38','2024-03-03 08:30:38',0,0,'50.2.39.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1677,1,NULL,'2024-03-03 08:32:24','2024-03-03 08:32:24',0,0,'62.216.64.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1678,1,NULL,'2024-03-03 12:16:12','2024-03-03 12:16:12',0,0,'172.241.234.236','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1679,1,NULL,'2024-03-03 21:33:31','2024-03-03 21:33:31',0,0,'49.49.242.183','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1680,1,NULL,'2024-03-04 03:08:44','2024-03-04 03:08:44',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.289 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1681,1,NULL,'2024-03-04 09:37:45','2024-03-04 09:37:45',0,0,'196.247.46.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1682,1,NULL,'2024-03-04 11:35:40','2024-03-04 11:35:40',0,0,'91.217.73.33','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1683,1,NULL,'2024-03-04 19:29:51','2024-03-04 19:29:51',0,0,'154.30.242.131','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1684,1,NULL,'2024-03-04 20:44:06','2024-03-04 20:44:06',0,0,'109.196.161.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1685,1,NULL,'2024-03-04 21:04:12','2024-03-04 21:04:12',0,0,'185.223.152.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1686,1,NULL,'2024-03-05 01:49:53','2024-03-05 01:49:53',0,0,'64.137.93.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1687,1,NULL,'2024-03-05 04:24:38','2024-03-05 04:24:38',0,0,'87.249.132.182','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1688,1,NULL,'2024-03-05 06:18:38','2024-03-05 06:18:38',0,0,'219.89.183.237','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A525F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/23.0 Chrome/115.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1689,1,NULL,'2024-03-05 07:36:44','2024-03-05 07:36:44',0,0,'196.242.195.185','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1690,1,NULL,'2024-03-05 13:21:21','2024-03-05 13:21:21',0,0,'172.241.168.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1691,1,NULL,'2024-03-05 18:15:22','2024-03-05 18:15:22',0,0,'154.30.252.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1692,1,NULL,'2024-03-05 18:58:36','2024-03-05 18:58:36',0,0,'161.29.70.178','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1693,1,NULL,'2024-03-05 21:14:27','2024-03-05 21:14:27',0,0,'47.72.254.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:123.0) Gecko/20100101 Firefox/123.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1694,1,NULL,'2024-03-05 22:19:19','2024-03-05 22:19:19',0,0,'66.128.200.27','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1695,1,NULL,'2024-03-06 06:32:50','2024-03-06 06:32:50',0,0,'45.43.191.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1696,1,NULL,'2024-03-06 18:05:28','2024-03-06 18:05:28',0,0,'107.172.156.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1697,1,NULL,'2024-03-07 02:07:32','2024-03-07 02:07:32',0,0,'180.214.238.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1698,1,NULL,'2024-03-07 07:02:43','2024-03-07 07:02:43',0,0,'180.214.238.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1699,1,NULL,'2024-03-07 08:44:32','2024-03-07 08:44:32',0,0,'188.213.34.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1700,1,NULL,'2024-03-07 18:00:27','2024-03-07 18:00:27',0,0,'180.214.238.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1701,1,NULL,'2024-03-08 09:38:08','2024-03-08 09:38:08',0,0,'168.228.46.212','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1702,1,NULL,'2024-03-08 10:16:14','2024-03-08 10:16:14',0,0,'198.46.241.125','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1703,1,NULL,'2024-03-08 11:32:33','2024-03-08 11:32:33',0,0,'138.199.36.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1704,1,NULL,'2024-03-08 18:34:21','2024-03-08 18:34:21',0,0,'103.187.243.64','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1705,1,NULL,'2024-03-08 20:37:52','2024-03-08 20:37:52',0,0,'75.212.213.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1706,1,NULL,'2024-03-09 07:36:27','2024-03-09 07:36:27',0,0,'203.173.177.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1707,1,NULL,'2024-03-09 09:27:19','2024-03-09 09:27:19',0,0,'154.29.239.102','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1708,1,NULL,'2024-03-09 15:42:56','2024-03-09 15:42:56',0,0,'50.118.141.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1709,1,NULL,'2024-03-09 19:13:57','2024-03-09 19:13:57',0,0,'23.106.19.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1710,1,NULL,'2024-03-10 14:24:34','2024-03-10 14:24:34',0,0,'134.73.18.212','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1711,1,NULL,'2024-03-10 14:32:41','2024-03-10 14:32:41',0,0,'104.238.50.91','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1712,1,NULL,'2024-03-10 17:06:18','2024-03-10 17:06:18',0,0,'172.241.234.28','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1713,1,NULL,'2024-03-11 14:46:47','2024-03-11 14:46:47',0,0,'67.227.119.74','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1714,1,NULL,'2024-03-11 15:52:33','2024-03-11 15:52:33',0,0,'185.161.251.240','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1715,1,NULL,'2024-03-11 19:27:16','2024-03-11 19:27:16',0,0,'66.56.75.21','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1716,1,NULL,'2024-03-12 04:07:40','2024-03-12 04:07:40',0,0,'50.114.104.159','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1717,1,NULL,'2024-03-12 10:21:15','2024-03-12 10:21:15',0,0,'209.99.129.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1718,1,NULL,'2024-03-12 13:50:13','2024-03-12 13:50:13',0,0,'188.74.169.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1719,1,NULL,'2024-03-12 14:25:31','2024-03-12 14:25:31',0,0,'104.250.207.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1720,1,NULL,'2024-03-13 04:20:47','2024-03-13 04:20:47',0,0,'37.19.223.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1721,1,NULL,'2024-03-13 11:20:43','2024-03-13 11:20:43',0,0,'45.139.6.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1722,1,NULL,'2024-03-13 17:07:37','2024-03-13 17:07:37',0,0,'104.129.36.31','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1723,1,NULL,'2024-03-13 18:09:54','2024-03-13 18:09:54',0,0,'45.61.96.85','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1724,1,NULL,'2024-03-13 19:18:24','2024-03-13 19:18:24',0,0,'104.232.209.226','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1725,1,NULL,'2024-03-13 19:42:10','2024-03-13 19:42:10',0,0,'154.16.192.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1726,1,NULL,'2024-03-13 23:21:07','2024-03-13 23:21:07',0,0,'64.137.95.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1727,1,NULL,'2024-03-14 06:49:27','2024-03-14 06:49:27',0,0,'185.192.69.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1728,1,NULL,'2024-03-15 08:47:55','2024-03-15 08:47:55',0,0,'186.179.33.185','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1729,1,NULL,'2024-03-15 15:45:38','2024-03-15 15:45:38',0,0,'38.154.195.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1730,1,NULL,'2024-03-15 15:57:36','2024-03-15 15:57:36',0,0,'209.127.127.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1731,1,NULL,'2024-03-15 20:54:48','2024-03-15 20:54:48',0,0,'64.43.114.138','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1732,1,NULL,'2024-03-16 06:42:30','2024-03-16 06:42:30',0,0,'122.56.206.137','https://juiceelectrical.co.nz/contact/?gad_source=1&gclid=CjwKCAjw48-vBhBbEiwAzqrZVCGCzR99CUHGrr9NvXqd0NOzd0JVVWMqJaJZrtfn0WqDya-11bdvKhoCFz4QAvD_BwE','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1733,1,NULL,'2024-03-16 18:18:09','2024-03-16 18:18:09',0,0,'23.81.67.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1734,1,NULL,'2024-03-17 00:26:36','2024-03-17 00:26:36',0,0,'64.137.65.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1735,1,NULL,'2024-03-17 21:08:13','2024-03-17 21:08:13',0,0,'64.64.110.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1736,1,NULL,'2024-03-17 22:27:03','2024-03-17 22:27:03',0,0,'162.245.188.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1737,1,NULL,'2024-03-17 22:48:24','2024-03-17 22:48:24',0,0,'116.50.62.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1738,1,NULL,'2024-03-18 06:54:28','2024-03-18 06:54:28',0,0,'45.131.193.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1739,1,NULL,'2024-03-18 09:06:29','2024-03-18 09:06:29',0,0,'5.253.247.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1740,1,NULL,'2024-03-18 14:40:58','2024-03-18 14:40:58',0,0,'185.98.61.25','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1741,1,NULL,'2024-03-18 15:06:22','2024-03-18 15:06:22',0,0,'106.76.212.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1742,1,NULL,'2024-03-18 17:12:03','2024-03-18 17:12:03',0,0,'45.146.117.140','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1743,1,NULL,'2024-03-19 04:21:33','2024-03-19 04:21:33',0,0,'23.106.26.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1744,1,NULL,'2024-03-19 05:04:33','2024-03-19 05:04:33',0,0,'172.241.247.218','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1745,1,NULL,'2024-03-19 09:44:53','2024-03-19 09:44:53',0,0,'45.56.174.128','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1746,1,NULL,'2024-03-19 10:16:11','2024-03-19 10:16:11',0,0,'161.29.225.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1747,1,NULL,'2024-03-19 14:38:51','2024-03-19 14:38:51',0,0,'184.174.56.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1748,1,NULL,'2024-03-19 20:51:11','2024-03-19 20:51:11',0,0,'170.130.115.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1749,1,NULL,'2024-03-19 22:16:18','2024-03-19 22:16:18',0,0,'173.239.219.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1750,1,NULL,'2024-03-20 01:12:21','2024-03-20 01:12:21',0,0,'212.30.36.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1751,1,NULL,'2024-03-21 04:11:09','2024-03-21 04:11:09',0,0,'38.57.253.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1752,1,NULL,'2024-03-21 06:34:29','2024-03-21 06:34:29',0,0,'112.198.179.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1753,1,NULL,'2024-03-21 15:46:10','2024-03-21 15:46:10',0,0,'38.153.152.3','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1754,1,NULL,'2024-03-21 23:47:40','2024-03-21 23:47:40',0,0,'154.30.241.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1755,1,NULL,'2024-03-22 02:56:04','2024-03-22 02:56:04',0,0,'104.233.15.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1756,1,NULL,'2024-03-22 15:23:51','2024-03-22 15:23:51',0,0,'154.29.101.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1757,1,NULL,'2024-03-22 22:00:54','2024-03-22 22:00:54',0,0,'45.41.162.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1758,1,NULL,'2024-03-23 06:29:59','2024-03-23 06:29:59',0,0,'109.230.218.92','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1759,1,NULL,'2024-03-23 11:29:53','2024-03-23 11:29:53',0,0,'172.98.92.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1760,1,NULL,'2024-03-23 12:39:45','2024-03-23 12:39:45',0,0,'38.57.253.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1761,1,NULL,'2024-03-23 20:06:00','2024-03-23 20:06:00',0,0,'98.159.38.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1762,1,NULL,'2024-03-24 02:16:14','2024-03-24 02:16:14',0,0,'206.206.73.198','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1763,1,NULL,'2024-03-24 07:55:43','2024-03-24 07:55:43',0,0,'109.69.108.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1764,1,NULL,'2024-03-24 15:05:26','2024-03-24 15:05:26',0,0,'5.62.49.118','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1765,1,NULL,'2024-03-24 17:15:10','2024-03-24 17:15:10',0,0,'193.148.92.59','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1766,1,NULL,'2024-03-24 20:14:32','2024-03-24 20:14:32',0,0,'185.3.134.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1767,1,NULL,'2024-03-25 07:42:14','2024-03-25 07:42:14',0,0,'191.102.150.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1768,1,NULL,'2024-03-25 12:50:59','2024-03-25 12:50:59',0,0,'198.46.148.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1769,1,NULL,'2024-03-26 07:41:32','2024-03-26 07:41:32',0,0,'172.98.32.95','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1770,1,NULL,'2024-03-26 20:08:07','2024-03-26 20:08:07',0,0,'106.78.85.58','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1771,1,NULL,'2024-03-26 22:31:30','2024-03-26 22:31:30',0,0,'45.61.125.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1772,1,NULL,'2024-03-27 05:43:54','2024-03-27 05:43:54',0,0,'103.102.116.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1773,1,NULL,'2024-03-27 20:49:58','2024-03-27 20:49:58',0,0,'154.30.244.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1774,1,NULL,'2024-03-27 23:06:49','2024-03-27 23:06:49',0,0,'191.101.132.27','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1775,1,NULL,'2024-03-28 05:50:20','2024-03-28 05:50:20',0,0,'38.153.164.156','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1776,1,NULL,'2024-03-28 07:10:51','2024-03-28 07:10:51',0,0,'136.144.35.173','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1777,1,NULL,'2024-03-28 12:01:47','2024-03-28 12:01:47',0,0,'170.130.115.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1778,1,NULL,'2024-03-28 17:36:44','2024-03-28 17:36:44',0,0,'122.176.206.27','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1779,1,NULL,'2024-03-29 09:43:58','2024-03-29 09:43:58',0,0,'38.240.178.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1780,1,NULL,'2024-03-29 17:08:41','2024-03-29 17:08:41',0,0,'38.153.138.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1781,1,NULL,'2024-03-29 20:56:50','2024-03-29 20:56:50',0,0,'206.206.73.218','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1782,1,NULL,'2024-03-30 04:27:23','2024-03-30 04:27:23',0,0,'181.215.25.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1783,1,NULL,'2024-03-30 06:15:53','2024-03-30 06:15:53',0,0,'181.214.94.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1784,1,NULL,'2024-03-30 07:43:17','2024-03-30 07:43:17',0,0,'104.233.13.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1785,1,NULL,'2024-03-31 05:59:56','2024-03-31 05:59:56',0,0,'186.179.34.22','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1786,1,NULL,'2024-03-31 06:19:52','2024-03-31 06:19:52',0,0,'184.174.56.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1787,1,NULL,'2024-03-31 10:06:02','2024-03-31 10:06:02',0,0,'107.158.117.21','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1788,1,NULL,'2024-03-31 18:02:48','2024-03-31 18:02:48',0,0,'146.70.189.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1789,1,NULL,'2024-04-01 01:48:32','2024-04-01 01:48:32',0,0,'121.74.64.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1790,1,NULL,'2024-04-03 03:24:39','2024-04-03 03:24:39',0,0,'125.238.108.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1791,1,NULL,'2024-04-03 08:40:50','2024-04-03 08:40:50',0,0,'89.37.66.162','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1792,1,NULL,'2024-04-03 21:42:26','2024-04-03 21:42:26',0,0,'49.224.96.80','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1793,1,NULL,'2024-04-03 22:00:09','2024-04-03 22:00:09',0,0,'111.69.34.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1794,1,NULL,'2024-04-04 22:37:37','2024-04-04 22:37:37',0,0,'223.204.247.33','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1795,1,NULL,'2024-04-05 00:54:02','2024-04-05 00:54:02',0,0,'198.23.152.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1796,1,NULL,'2024-04-05 01:05:05','2024-04-05 01:05:05',0,0,'172.255.94.220','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1797,1,NULL,'2024-04-05 10:51:43','2024-04-05 10:51:43',0,0,'45.141.80.36','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1798,1,NULL,'2024-04-05 14:23:29','2024-04-05 14:23:29',0,0,'192.126.91.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1799,1,NULL,'2024-04-06 08:20:58','2024-04-06 08:20:58',0,0,'101.53.218.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 14; SM-A536E Build/UP1A.231005.007; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/123.0.6312.77 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/457.0.0.54.84;]','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1800,1,NULL,'2024-04-07 04:03:39','2024-04-07 04:03:39',0,0,'223.204.247.33','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1801,1,NULL,'2024-04-08 17:39:10','2024-04-08 17:39:10',0,0,'196.243.240.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1802,1,NULL,'2024-04-09 09:21:55','2024-04-09 09:21:55',0,0,'119.224.95.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1803,1,NULL,'2024-04-09 15:59:53','2024-04-09 15:59:53',0,0,'138.186.138.77','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1804,1,NULL,'2024-04-10 08:44:41','2024-04-10 08:44:41',0,0,'107.174.151.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1805,1,NULL,'2024-04-10 16:02:33','2024-04-10 16:02:33',0,0,'23.82.41.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1806,1,NULL,'2024-04-10 17:35:46','2024-04-10 17:35:46',0,0,'23.82.85.195','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1807,1,NULL,'2024-04-10 18:40:20','2024-04-10 18:40:20',0,0,'24.108.106.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1808,1,NULL,'2024-04-10 22:00:51','2024-04-10 22:00:51',0,0,'103.157.53.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 Edg/123.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1809,1,NULL,'2024-04-11 03:04:52','2024-04-11 03:04:52',0,0,'23.82.80.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1810,1,NULL,'2024-04-11 05:00:43','2024-04-11 05:00:43',0,0,'23.82.80.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1811,1,NULL,'2024-04-11 05:50:56','2024-04-11 05:50:56',0,0,'161.29.138.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1812,1,NULL,'2024-04-11 06:19:10','2024-04-11 06:19:10',0,0,'141.11.36.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1813,1,NULL,'2024-04-11 11:29:54','2024-04-11 11:29:54',0,0,'23.105.5.182','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1814,1,NULL,'2024-04-11 20:55:41','2024-04-11 20:55:41',0,0,'223.204.220.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1815,1,NULL,'2024-04-13 04:00:35','2024-04-13 04:00:35',0,0,'173.213.93.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1816,1,NULL,'2024-04-13 04:26:28','2024-04-13 04:26:28',0,0,'23.82.81.10','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1817,1,NULL,'2024-04-13 20:18:07','2024-04-13 20:18:07',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1818,1,NULL,'2024-04-14 02:20:24','2024-04-14 02:20:24',0,0,'51.68.196.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1819,1,NULL,'2024-04-14 12:19:42','2024-04-14 12:19:42',0,0,'223.204.249.237','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1820,1,NULL,'2024-04-14 13:23:53','2024-04-14 13:23:53',0,0,'38.162.7.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1821,1,NULL,'2024-04-14 20:50:17','2024-04-14 20:50:17',0,0,'172.241.171.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1822,1,NULL,'2024-04-15 01:31:54','2024-04-15 01:31:54',0,0,'98.159.226.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1823,1,NULL,'2024-04-15 23:44:50','2024-04-15 23:44:50',0,0,'51.68.196.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1824,1,NULL,'2024-04-16 04:57:05','2024-04-16 04:57:05',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1825,1,NULL,'2024-04-16 11:47:17','2024-04-16 11:47:17',0,0,'37.63.22.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1826,1,NULL,'2024-04-16 20:17:44','2024-04-16 20:17:44',0,0,'196.247.162.246','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1827,1,NULL,'2024-04-16 22:29:08','2024-04-16 22:29:08',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1828,1,NULL,'2024-04-17 03:19:06','2024-04-17 03:19:06',0,0,'170.83.177.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1829,1,NULL,'2024-04-17 12:06:50','2024-04-17 12:06:50',0,0,'190.123.219.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1830,1,NULL,'2024-04-17 12:13:47','2024-04-17 12:13:47',0,0,'24.108.106.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1831,1,NULL,'2024-04-17 15:33:48','2024-04-17 15:33:48',0,0,'146.70.189.143','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1832,1,NULL,'2024-04-18 04:54:17','2024-04-18 04:54:17',0,0,'192.186.172.110','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1833,1,NULL,'2024-04-18 05:41:51','2024-04-18 05:41:51',0,0,'161.29.138.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1834,1,NULL,'2024-04-19 03:55:26','2024-04-19 03:55:26',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.289 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1835,1,NULL,'2024-05-13 13:24:21','2024-05-13 13:24:21',0,0,'23.80.147.16','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1836,1,NULL,'2024-05-13 17:39:02','2024-05-13 17:39:02',0,0,'130.185.157.96','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1837,1,NULL,'2024-05-13 19:50:08','2024-05-13 19:50:08',0,0,'178.168.114.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1838,1,NULL,'2024-05-14 00:07:05','2024-05-14 00:07:05',0,0,'23.82.104.102','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1839,1,NULL,'2024-05-14 00:38:17','2024-05-14 00:38:17',0,0,'116.50.62.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Edg/124.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1840,1,NULL,'2024-05-14 05:23:12','2024-05-14 05:23:12',0,0,'114.23.108.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,'active',NULL),(1841,1,NULL,'2024-05-14 06:14:21','2024-05-14 06:14:21',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1842,1,NULL,'2024-05-14 06:59:45','2024-05-14 06:59:45',0,0,'23.226.18.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1843,1,NULL,'2024-05-14 09:10:09','2024-05-14 09:10:09',0,0,'125.238.109.143','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1.2 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1844,1,NULL,'2024-05-14 19:51:43','2024-05-14 19:51:43',0,0,'23.106.18.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1845,1,NULL,'2024-05-14 20:09:20','2024-05-14 20:09:20',0,0,'23.82.186.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1846,1,NULL,'2024-05-16 03:37:29','2024-05-16 03:37:29',0,0,'23.82.104.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1847,1,NULL,'2024-05-16 06:32:09','2024-05-16 06:32:09',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1848,1,NULL,'2024-05-16 07:15:13','2024-05-16 07:15:13',0,0,'77.247.114.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1849,1,NULL,'2024-05-17 09:38:24','2024-05-17 09:38:24',0,0,'196.242.89.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1850,1,NULL,'2024-05-17 13:58:10','2024-05-17 13:58:10',0,0,'104.239.37.227','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1851,1,NULL,'2024-05-18 11:06:18','2024-05-18 11:06:18',0,0,'166.1.13.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1852,1,NULL,'2024-05-18 11:26:16','2024-05-18 11:26:16',0,0,'116.204.166.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1853,1,NULL,'2024-05-18 17:39:53','2024-05-18 17:39:53',0,0,'154.16.206.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1854,1,NULL,'2024-05-19 06:05:09','2024-05-19 06:05:09',0,0,'23.108.24.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1855,1,NULL,'2024-05-20 03:21:59','2024-05-20 03:21:59',0,0,'202.124.109.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1856,1,NULL,'2024-05-20 08:32:39','2024-05-20 08:32:39',0,0,'89.149.87.92','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1857,1,NULL,'2024-05-20 11:29:22','2024-05-20 11:29:22',0,0,'23.81.67.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1858,1,NULL,'2024-05-20 16:53:39','2024-05-20 16:53:39',0,0,'104.251.90.193','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1859,1,NULL,'2024-05-20 17:25:49','2024-05-20 17:25:49',0,0,'104.223.149.144','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1860,1,NULL,'2024-05-21 01:32:51','2024-05-21 01:32:51',0,0,'121.75.76.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1861,1,NULL,'2024-05-21 07:33:46','2024-05-21 07:33:46',0,0,'192.3.188.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1862,1,NULL,'2024-05-21 12:01:48','2024-05-21 12:01:48',0,0,'23.81.67.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1863,1,NULL,'2024-05-22 03:46:52','2024-05-22 03:46:52',0,0,'104.168.53.139','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1864,1,NULL,'2024-05-22 05:56:23','2024-05-22 05:56:23',0,0,'104.239.35.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1865,1,NULL,'2024-05-22 15:21:30','2024-05-22 15:21:30',0,0,'122.176.207.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1866,1,NULL,'2024-05-22 19:28:34','2024-05-22 19:28:34',0,0,'178.168.114.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1867,1,NULL,'2024-05-23 02:09:42','2024-05-23 02:09:42',0,0,'85.193.65.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1868,1,NULL,'2024-05-23 23:06:10','2024-05-23 23:06:10',0,0,'188.138.129.64','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1869,1,NULL,'2024-05-24 12:52:14','2024-05-24 12:52:14',0,0,'199.187.211.159','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1870,1,NULL,'2024-05-24 16:58:55','2024-05-24 16:58:55',0,0,'198.46.248.223','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1871,1,NULL,'2024-05-24 17:18:40','2024-05-24 17:18:40',0,0,'154.13.11.43','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1872,1,NULL,'2024-05-25 03:13:18','2024-05-25 03:13:18',0,0,'23.106.20.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1873,1,NULL,'2024-05-25 04:24:49','2024-05-25 04:24:49',0,0,'102.129.152.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1874,1,NULL,'2024-05-25 21:23:39','2024-05-25 21:23:39',0,0,'60.234.181.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1875,1,NULL,'2024-05-25 21:23:42','2024-05-25 21:23:42',0,0,'60.234.181.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1876,1,NULL,'2024-05-25 21:23:46','2024-05-25 21:23:46',0,0,'60.234.181.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1877,1,NULL,'2024-05-25 21:24:25','2024-05-25 21:24:25',0,0,'60.234.181.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1878,1,NULL,'2024-05-26 05:17:17','2024-05-26 05:17:17',0,0,'104.168.53.139','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1879,1,NULL,'2024-05-26 15:58:02','2024-05-26 15:58:02',0,0,'87.249.132.168','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1880,1,NULL,'2024-05-27 02:41:59','2024-05-27 02:41:59',0,0,'206.206.122.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1881,1,NULL,'2024-05-27 02:57:33','2024-05-27 02:57:33',0,0,'176.111.174.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1882,1,NULL,'2024-05-27 11:08:21','2024-05-27 11:08:21',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1883,1,NULL,'2024-05-27 12:52:34','2024-05-27 12:52:34',0,0,'104.239.13.17','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1884,1,NULL,'2024-05-28 01:43:29','2024-05-28 01:43:29',0,0,'107.172.181.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1885,1,NULL,'2024-05-29 00:07:21','2024-05-29 00:07:21',0,0,'85.64.154.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1886,1,NULL,'2024-05-29 01:48:04','2024-05-29 01:48:04',0,0,'89.149.87.92','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1887,1,NULL,'2024-05-29 02:52:22','2024-05-29 02:52:22',0,0,'165.231.159.76','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1888,1,NULL,'2024-05-29 04:34:07','2024-05-29 04:34:07',0,0,'114.23.26.225','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1889,1,NULL,'2024-05-30 10:49:37','2024-05-30 10:49:37',0,0,'23.106.27.181','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1890,1,NULL,'2024-05-30 16:27:20','2024-05-30 16:27:20',0,0,'122.176.203.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1891,1,NULL,'2024-05-30 18:02:14','2024-05-30 18:02:14',0,0,'178.168.114.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1892,1,NULL,'2024-05-31 01:42:08','2024-05-31 01:42:08',0,0,'51.68.196.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1893,1,NULL,'2024-05-31 03:46:46','2024-05-31 03:46:46',0,0,'85.64.154.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1894,1,NULL,'2024-05-31 22:25:34','2024-05-31 22:25:34',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1895,1,NULL,'2024-06-01 09:14:08','2024-06-01 09:14:08',0,0,'5.157.23.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1896,1,NULL,'2024-06-01 22:01:19','2024-06-01 22:01:19',0,0,'5.157.21.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1897,1,NULL,'2024-06-02 12:06:26','2024-06-02 12:06:26',0,0,'192.3.114.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1898,1,NULL,'2024-06-02 13:33:05','2024-06-02 13:33:05',0,0,'46.146.230.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1899,1,NULL,'2024-06-02 17:10:53','2024-06-02 17:10:53',0,0,'168.228.45.77','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1900,1,NULL,'2024-06-02 23:38:43','2024-06-02 23:38:43',0,0,'121.74.122.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1901,1,NULL,'2024-06-03 09:49:35','2024-06-03 09:49:35',0,0,'198.46.150.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1902,1,NULL,'2024-06-04 04:41:29','2024-06-04 04:41:29',0,0,'101.53.218.31','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1903,1,NULL,'2024-06-04 06:19:21','2024-06-04 06:19:21',0,0,'89.149.87.92','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1904,1,NULL,'2024-06-04 07:18:11','2024-06-04 07:18:11',0,0,'85.64.154.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1905,1,NULL,'2024-06-04 07:50:34','2024-06-04 07:50:34',0,0,'178.168.114.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1906,1,NULL,'2024-06-04 08:39:52','2024-06-04 08:39:52',0,0,'161.29.136.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1907,1,NULL,'2024-06-04 21:29:44','2024-06-04 21:29:44',0,0,'178.168.114.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 11.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5814.214 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1908,1,NULL,'2024-06-05 01:21:53','2024-06-05 01:21:53',0,0,'23.106.20.9','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1909,1,NULL,'2024-06-05 01:58:13','2024-06-05 01:58:13',0,0,'45.62.100.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1910,1,NULL,'2024-06-05 01:59:49','2024-06-05 01:59:49',0,0,'122.56.210.35','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1911,1,NULL,'2024-06-05 02:40:24','2024-06-05 02:40:24',0,0,'202.124.109.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1912,1,NULL,'2024-06-05 02:40:34','2024-06-05 02:40:34',0,0,'202.124.109.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1913,1,NULL,'2024-06-05 09:54:19','2024-06-05 09:54:19',0,0,'173.244.55.16','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1914,1,NULL,'2024-06-06 10:14:34','2024-06-06 10:14:34',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1915,1,NULL,'2024-06-06 10:51:11','2024-06-06 10:51:11',0,0,'192.3.188.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1916,1,NULL,'2024-06-06 19:05:49','2024-06-06 19:05:49',0,0,'194.156.126.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1917,1,NULL,'2024-06-06 20:58:22','2024-06-06 20:58:22',0,0,'154.37.64.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1918,1,NULL,'2024-06-07 05:38:48','2024-06-07 05:38:48',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1919,1,NULL,'2024-06-07 09:42:46','2024-06-07 09:42:46',0,0,'23.80.158.210','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1920,1,NULL,'2024-06-07 17:24:43','2024-06-07 17:24:43',0,0,'73.211.251.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1921,1,NULL,'2024-06-08 14:34:11','2024-06-08 14:34:11',0,0,'95.65.104.100','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1922,1,NULL,'2024-06-08 17:30:59','2024-06-08 17:30:59',0,0,'23.105.147.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1923,1,NULL,'2024-06-09 07:35:34','2024-06-09 07:35:34',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1924,1,NULL,'2024-06-09 10:39:05','2024-06-09 10:39:05',0,0,'86.108.21.74','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1925,1,NULL,'2024-06-09 13:23:34','2024-06-09 13:23:34',0,0,'178.168.114.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1926,1,NULL,'2024-06-09 13:44:09','2024-06-09 13:44:09',0,0,'193.24.212.227','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1927,1,NULL,'2024-06-09 14:27:20','2024-06-09 14:27:20',0,0,'5.157.29.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1928,1,NULL,'2024-06-09 22:16:02','2024-06-09 22:16:02',0,0,'188.138.129.64','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1929,1,NULL,'2024-06-09 23:00:12','2024-06-09 23:00:12',0,0,'85.193.65.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1930,1,NULL,'2024-06-10 03:41:53','2024-06-10 03:41:53',0,0,'23.108.18.48','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1931,1,NULL,'2024-06-10 04:30:09','2024-06-10 04:30:09',0,0,'42.119.142.179','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1932,1,NULL,'2024-06-10 12:52:57','2024-06-10 12:52:57',0,0,'193.24.212.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1933,1,NULL,'2024-06-10 16:35:38','2024-06-10 16:35:38',0,0,'24.108.106.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1934,1,NULL,'2024-06-11 01:40:35','2024-06-11 01:40:35',0,0,'66.115.149.36','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1935,1,NULL,'2024-06-12 04:32:47','2024-06-12 04:32:47',0,0,'23.94.146.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1936,1,NULL,'2024-06-12 04:51:46','2024-06-12 04:51:46',0,0,'23.80.154.95','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1937,1,NULL,'2024-06-12 06:57:12','2024-06-12 06:57:12',0,0,'176.44.174.212','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1938,1,NULL,'2024-06-12 09:53:56','2024-06-12 09:53:56',0,0,'23.230.167.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1939,1,NULL,'2024-06-12 10:18:25','2024-06-12 10:18:25',0,0,'176.111.174.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1940,1,NULL,'2024-06-12 13:22:28','2024-06-12 13:22:28',0,0,'154.13.94.122','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1941,1,NULL,'2024-06-12 17:49:57','2024-06-12 17:49:57',0,0,'84.229.63.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1942,1,NULL,'2024-06-13 00:59:38','2024-06-13 00:59:38',0,0,'45.43.81.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1943,1,NULL,'2024-06-13 09:43:54','2024-06-13 09:43:54',0,0,'188.138.129.64','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1944,1,NULL,'2024-06-13 13:45:31','2024-06-13 13:45:31',0,0,'165.231.182.114','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1945,1,NULL,'2024-06-13 17:55:16','2024-06-13 17:55:16',0,0,'172.245.194.28','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1946,1,NULL,'2024-06-14 18:50:36','2024-06-14 18:50:36',0,0,'154.36.83.28','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1947,1,NULL,'2024-06-15 01:09:06','2024-06-15 01:09:06',0,0,'104.165.127.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1948,1,NULL,'2024-06-15 05:58:14','2024-06-15 05:58:14',0,0,'198.46.248.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1949,1,NULL,'2024-06-15 19:02:35','2024-06-15 19:02:35',0,0,'203.211.77.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1950,1,NULL,'2024-06-16 05:49:00','2024-06-16 05:49:00',0,0,'104.160.17.32','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1951,1,NULL,'2024-06-16 21:16:39','2024-06-16 21:16:39',0,0,'154.37.64.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1952,1,NULL,'2024-06-17 00:17:12','2024-06-17 00:17:12',0,0,'185.223.234.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1953,1,NULL,'2024-06-17 04:00:43','2024-06-17 04:00:43',0,0,'196.196.53.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1954,1,NULL,'2024-06-17 09:45:45','2024-06-17 09:45:45',0,0,'196.245.181.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1955,1,NULL,'2024-06-17 22:40:31','2024-06-17 22:40:31',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1956,1,NULL,'2024-06-18 00:40:34','2024-06-18 00:40:34',0,0,'122.56.77.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1957,1,NULL,'2024-06-18 15:24:16','2024-06-18 15:24:16',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1958,1,NULL,'2024-06-18 15:44:54','2024-06-18 15:44:54',0,0,'192.67.161.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1959,1,NULL,'2024-06-18 18:40:55','2024-06-18 18:40:55',0,0,'198.23.250.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1960,1,NULL,'2024-06-19 17:32:58','2024-06-19 17:32:58',0,0,'154.201.57.236','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1961,1,NULL,'2024-06-19 22:38:12','2024-06-19 22:38:12',0,0,'219.89.129.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1962,1,NULL,'2024-06-20 04:05:50','2024-06-20 04:05:50',0,0,'203.211.79.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPad; CPU OS 16_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/321.1.642804631 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1963,1,NULL,'2024-06-20 06:10:32','2024-06-20 06:10:32',0,0,'206.41.164.240','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1964,1,NULL,'2024-06-21 06:32:22','2024-06-21 06:32:22',0,0,'104.223.227.88','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1965,1,NULL,'2024-06-21 14:09:01','2024-06-21 14:09:01',0,0,'107.150.80.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1966,1,NULL,'2024-06-21 14:26:46','2024-06-21 14:26:46',0,0,'156.248.89.210','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1967,1,NULL,'2024-06-22 14:06:22','2024-06-22 14:06:22',0,0,'107.175.149.182','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1968,1,NULL,'2024-06-23 10:21:59','2024-06-23 10:21:59',0,0,'101.53.217.121','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1969,1,NULL,'2024-06-23 11:57:59','2024-06-23 11:57:59',0,0,'212.102.33.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1970,1,NULL,'2024-06-23 19:45:58','2024-06-23 19:45:58',0,0,'216.109.161.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1971,1,NULL,'2024-06-23 21:24:29','2024-06-23 21:24:29',0,0,'45.61.122.156','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1972,1,NULL,'2024-06-23 22:08:30','2024-06-23 22:08:30',0,0,'45.138.119.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1973,1,NULL,'2024-06-23 22:39:10','2024-06-23 22:39:10',0,0,'45.61.98.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1974,1,NULL,'2024-06-24 01:37:38','2024-06-24 01:37:38',0,0,'125.238.245.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1975,1,NULL,'2024-06-24 02:21:34','2024-06-24 02:21:34',0,0,'5.157.32.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1976,1,NULL,'2024-06-25 15:50:21','2024-06-25 15:50:21',0,0,'142.91.118.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1977,1,NULL,'2024-06-25 23:01:07','2024-06-25 23:01:07',0,0,'49.224.114.236','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1978,1,NULL,'2024-06-26 06:49:34','2024-06-26 06:49:34',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1979,1,NULL,'2024-06-26 08:57:32','2024-06-26 08:57:32',0,0,'130.185.154.56','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1980,1,NULL,'2024-06-26 21:37:44','2024-06-26 21:37:44',0,0,'101.100.140.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(1981,1,NULL,'2024-06-27 00:59:54','2024-06-27 00:59:54',0,0,'138.186.137.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1982,1,NULL,'2024-06-27 18:53:09','2024-06-27 18:53:09',0,0,'200.10.37.100','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1983,1,NULL,'2024-06-28 10:34:19','2024-06-28 10:34:19',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1984,1,NULL,'2024-06-28 12:30:38','2024-06-28 12:30:38',0,0,'50.3.91.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1985,1,NULL,'2024-06-28 17:43:26','2024-06-28 17:43:26',0,0,'104.196.239.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1986,1,NULL,'2024-06-28 22:45:24','2024-06-28 22:45:24',0,0,'198.1.224.192','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1987,1,NULL,'2024-06-30 01:35:24','2024-06-30 01:35:24',0,0,'45.41.178.71','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1988,1,NULL,'2024-06-30 09:58:51','2024-06-30 09:58:51',0,0,'192.186.155.61','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1989,1,NULL,'2024-06-30 12:59:15','2024-06-30 12:59:15',0,0,'185.195.19.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1990,1,NULL,'2024-06-30 19:57:35','2024-06-30 19:57:35',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.120 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1991,1,NULL,'2024-07-01 08:30:40','2024-07-01 08:30:40',0,0,'192.177.93.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1992,1,NULL,'2024-07-01 16:26:10','2024-07-01 16:26:10',0,0,'46.135.39.5','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1993,1,NULL,'2024-07-01 18:59:58','2024-07-01 18:59:58',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1994,1,NULL,'2024-07-01 19:12:15','2024-07-01 19:12:15',0,0,'176.123.1.195','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1995,1,NULL,'2024-07-01 19:13:05','2024-07-01 19:13:05',0,0,'149.71.179.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1996,1,NULL,'2024-07-01 20:16:26','2024-07-01 20:16:26',0,0,'176.111.174.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1997,1,NULL,'2024-07-02 00:48:42','2024-07-02 00:48:42',0,0,'192.210.191.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1998,1,NULL,'2024-07-02 05:13:48','2024-07-02 05:13:48',0,0,'191.102.152.31','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(1999,1,NULL,'2024-07-02 12:28:29','2024-07-02 12:28:29',0,0,'200.10.47.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2000,1,NULL,'2024-07-02 18:47:23','2024-07-02 18:47:23',0,0,'107.158.118.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2001,1,NULL,'2024-07-03 07:21:46','2024-07-03 07:21:46',0,0,'168.91.68.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2002,1,NULL,'2024-07-04 04:17:39','2024-07-04 04:17:39',0,0,'111.69.34.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2003,1,NULL,'2024-07-04 04:21:44','2024-07-04 04:21:44',0,0,'45.95.118.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2004,1,NULL,'2024-07-04 06:45:00','2024-07-04 06:45:00',0,0,'165.231.108.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2005,1,NULL,'2024-07-04 22:36:46','2024-07-04 22:36:46',0,0,'110.92.19.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2006,1,NULL,'2024-07-05 01:52:47','2024-07-05 01:52:47',0,0,'103.241.36.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2007,1,NULL,'2024-07-05 05:39:47','2024-07-05 05:39:47',0,0,'216.173.120.230','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2008,1,NULL,'2024-07-06 04:15:56','2024-07-06 04:15:56',0,0,'64.43.125.31','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2009,1,NULL,'2024-07-06 23:51:40','2024-07-06 23:51:40',0,0,'184.66.242.107','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2010,1,NULL,'2024-07-07 01:40:07','2024-07-07 01:40:07',0,0,'38.154.75.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2011,1,NULL,'2024-07-07 01:50:20','2024-07-07 01:50:20',0,0,'51.68.196.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2012,1,NULL,'2024-07-07 06:32:12','2024-07-07 06:32:12',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2013,1,NULL,'2024-07-07 11:22:09','2024-07-07 11:22:09',0,0,'38.57.148.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2014,1,NULL,'2024-07-07 16:57:48','2024-07-07 16:57:48',0,0,'192.227.240.120','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2015,1,NULL,'2024-07-07 19:32:21','2024-07-07 19:32:21',0,0,'104.239.35.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2016,1,NULL,'2024-07-08 01:59:23','2024-07-08 01:59:23',0,0,'158.115.251.48','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2017,1,NULL,'2024-07-08 09:29:51','2024-07-08 09:29:51',0,0,'216.109.161.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2018,1,NULL,'2024-07-08 18:44:43','2024-07-08 18:44:43',0,0,'107.172.155.174','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2019,1,NULL,'2024-07-09 03:44:03','2024-07-09 03:44:03',0,0,'107.173.185.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2020,1,NULL,'2024-07-09 12:49:55','2024-07-09 12:49:55',0,0,'151.251.247.223','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2021,1,NULL,'2024-07-09 14:41:15','2024-07-09 14:41:15',0,0,'198.46.241.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2022,1,NULL,'2024-07-09 19:43:02','2024-07-09 19:43:02',0,0,'23.105.145.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2023,1,NULL,'2024-07-09 23:49:21','2024-07-09 23:49:21',0,0,'192.227.244.59','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2024,1,NULL,'2024-07-10 07:13:51','2024-07-10 07:13:51',0,0,'95.142.120.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2025,1,NULL,'2024-07-10 15:36:08','2024-07-10 15:36:08',0,0,'136.0.109.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2026,1,NULL,'2024-07-10 20:40:55','2024-07-10 20:40:55',0,0,'82.211.3.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2027,1,NULL,'2024-07-11 05:40:36','2024-07-11 05:40:36',0,0,'168.227.140.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2028,1,NULL,'2024-07-11 05:46:40','2024-07-11 05:46:40',0,0,'186.179.33.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2029,1,NULL,'2024-07-11 07:14:39','2024-07-11 07:14:39',0,0,'64.43.123.163','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2030,1,NULL,'2024-07-11 08:13:44','2024-07-11 08:13:44',0,0,'107.150.71.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2031,1,NULL,'2024-07-11 08:38:48','2024-07-11 08:38:48',0,0,'50.3.86.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2032,1,NULL,'2024-07-11 09:52:13','2024-07-11 09:52:13',0,0,'168.91.71.197','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2033,1,NULL,'2024-07-11 14:22:47','2024-07-11 14:22:47',0,0,'194.35.55.57','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2034,1,NULL,'2024-07-11 17:09:15','2024-07-11 17:09:15',0,0,'194.35.55.179','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2035,1,NULL,'2024-07-11 21:10:29','2024-07-11 21:10:29',0,0,'176.230.29.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2036,1,NULL,'2024-07-12 01:37:26','2024-07-12 01:37:26',0,0,'192.210.132.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2037,1,NULL,'2024-07-12 03:25:20','2024-07-12 03:25:20',0,0,'193.28.182.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2038,1,NULL,'2024-07-12 06:22:43','2024-07-12 06:22:43',0,0,'107.172.156.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2039,1,NULL,'2024-07-12 06:38:08','2024-07-12 06:38:08',0,0,'198.20.182.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2040,1,NULL,'2024-07-12 12:18:09','2024-07-12 12:18:09',0,0,'71.19.252.139','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2041,1,NULL,'2024-07-12 14:07:24','2024-07-12 14:07:24',0,0,'192.241.65.248','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2042,1,NULL,'2024-07-12 16:21:41','2024-07-12 16:21:41',0,0,'64.43.123.163','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2043,1,NULL,'2024-07-12 18:41:24','2024-07-12 18:41:24',0,0,'104.239.39.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2044,1,NULL,'2024-07-12 22:02:55','2024-07-12 22:02:55',0,0,'23.105.150.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2045,1,NULL,'2024-07-13 00:50:59','2024-07-13 00:50:59',0,0,'23.105.150.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2046,1,NULL,'2024-07-13 00:51:08','2024-07-13 00:51:08',0,0,'142.111.93.77','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2047,1,NULL,'2024-07-13 01:07:33','2024-07-13 01:07:33',0,0,'94.103.188.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2048,1,NULL,'2024-07-13 01:44:34','2024-07-13 01:44:34',0,0,'177.234.138.22','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2049,1,NULL,'2024-07-13 14:46:39','2024-07-13 14:46:39',0,0,'92.204.175.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2050,1,NULL,'2024-07-13 18:31:42','2024-07-13 18:31:42',0,0,'194.35.53.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2051,1,NULL,'2024-07-13 21:14:13','2024-07-13 21:14:13',0,0,'92.204.175.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2052,1,NULL,'2024-07-14 01:35:03','2024-07-14 01:35:03',0,0,'45.127.248.174','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2053,1,NULL,'2024-07-14 05:24:05','2024-07-14 05:24:05',0,0,'89.37.66.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2054,1,NULL,'2024-07-14 12:40:09','2024-07-14 12:40:09',0,0,'162.253.129.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2055,1,NULL,'2024-07-14 18:26:11','2024-07-14 18:26:11',0,0,'154.37.64.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2056,1,NULL,'2024-07-15 01:14:45','2024-07-15 01:14:45',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2057,1,NULL,'2024-07-15 08:10:34','2024-07-15 08:10:34',0,0,'203.211.79.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2058,1,NULL,'2024-07-15 11:24:28','2024-07-15 11:24:28',0,0,'103.221.234.148','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2059,1,NULL,'2024-07-16 11:46:28','2024-07-16 11:46:28',0,0,'23.110.173.141','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2060,1,NULL,'2024-07-17 01:49:27','2024-07-17 01:49:27',0,0,'198.46.184.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2061,1,NULL,'2024-07-17 09:55:38','2024-07-17 09:55:38',0,0,'209.242.211.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2062,1,NULL,'2024-07-17 13:33:15','2024-07-17 13:33:15',0,0,'96.8.117.81','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2063,1,NULL,'2024-07-17 13:40:05','2024-07-17 13:40:05',0,0,'172.245.103.233','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2064,1,NULL,'2024-07-17 21:08:46','2024-07-17 21:08:46',0,0,'146.247.113.170','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2065,1,NULL,'2024-07-17 21:26:45','2024-07-17 21:26:45',0,0,'102.212.97.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2066,1,NULL,'2024-07-18 18:03:08','2024-07-18 18:03:08',0,0,'194.35.53.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2067,1,NULL,'2024-07-18 20:03:07','2024-07-18 20:03:07',0,0,'46.29.250.236','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2068,1,NULL,'2024-07-19 01:35:11','2024-07-19 01:35:11',0,0,'23.105.151.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2069,1,NULL,'2024-07-19 04:37:24','2024-07-19 04:37:24',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2070,1,NULL,'2024-07-19 08:30:58','2024-07-19 08:30:58',0,0,'192.67.163.48','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2071,1,NULL,'2024-07-19 11:45:50','2024-07-19 11:45:50',0,0,'191.102.152.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2072,1,NULL,'2024-07-19 13:11:03','2024-07-19 13:11:03',0,0,'192.186.191.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2073,1,NULL,'2024-07-19 14:31:02','2024-07-19 14:31:02',0,0,'50.3.86.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2074,1,NULL,'2024-07-20 11:12:20','2024-07-20 11:12:20',0,0,'192.210.144.50','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2075,1,NULL,'2024-07-20 12:13:07','2024-07-20 12:13:07',0,0,'188.253.4.188','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2076,1,NULL,'2024-07-20 12:36:56','2024-07-20 12:36:56',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2077,1,NULL,'2024-07-21 20:00:19','2024-07-21 20:00:19',0,0,'23.105.147.231','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2078,1,NULL,'2024-07-21 20:28:46','2024-07-21 20:28:46',0,0,'45.95.243.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2079,1,NULL,'2024-07-21 20:30:58','2024-07-21 20:30:58',0,0,'154.37.64.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2080,1,NULL,'2024-07-21 21:32:19','2024-07-21 21:32:19',0,0,'161.29.79.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2081,1,NULL,'2024-07-22 03:24:08','2024-07-22 03:24:08',0,0,'118.92.228.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2082,1,NULL,'2024-07-22 10:38:02','2024-07-22 10:38:02',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2083,1,NULL,'2024-07-22 20:58:55','2024-07-22 20:58:55',0,0,'125.239.17.212','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2084,1,NULL,'2024-07-23 00:58:04','2024-07-23 00:58:04',0,0,'203.118.134.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2085,1,NULL,'2024-07-23 14:55:48','2024-07-23 14:55:48',0,0,'23.105.145.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2086,1,NULL,'2024-07-23 14:58:00','2024-07-23 14:58:00',0,0,'194.35.55.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2087,1,NULL,'2024-07-23 19:04:24','2024-07-23 19:04:24',0,0,'196.197.25.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2088,1,NULL,'2024-07-23 20:22:50','2024-07-23 20:22:50',0,0,'23.110.173.141','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2089,1,NULL,'2024-07-24 12:18:51','2024-07-24 12:18:51',0,0,'154.202.99.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2090,1,NULL,'2024-07-24 19:21:20','2024-07-24 19:21:20',0,0,'198.154.81.88','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2091,1,NULL,'2024-07-25 00:18:02','2024-07-25 00:18:02',0,0,'192.186.151.25','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2092,1,NULL,'2024-07-25 02:28:51','2024-07-25 02:28:51',0,0,'138.199.59.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2093,1,NULL,'2024-07-25 03:53:28','2024-07-25 03:53:28',0,0,'146.70.111.138','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2094,1,NULL,'2024-07-25 18:54:05','2024-07-25 18:54:05',0,0,'184.75.214.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2095,1,NULL,'2024-07-27 04:45:59','2024-07-27 04:45:59',0,0,'87.249.132.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2096,1,NULL,'2024-07-27 14:38:36','2024-07-27 14:38:36',0,0,'165.231.165.6','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2097,1,NULL,'2024-07-27 18:02:11','2024-07-27 18:02:11',0,0,'155.94.171.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2098,1,NULL,'2024-07-28 02:03:40','2024-07-28 02:03:40',0,0,'192.198.114.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2099,1,NULL,'2024-07-28 08:08:03','2024-07-28 08:08:03',0,0,'194.35.52.9','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2100,1,NULL,'2024-07-28 08:49:30','2024-07-28 08:49:30',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2101,1,NULL,'2024-07-28 12:44:44','2024-07-28 12:44:44',0,0,'176.111.174.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2102,1,NULL,'2024-07-28 15:43:36','2024-07-28 15:43:36',0,0,'181.177.110.230','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2103,1,NULL,'2024-07-28 21:17:33','2024-07-28 21:17:33',0,0,'104.239.7.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2104,1,NULL,'2024-07-29 00:40:09','2024-07-29 00:40:09',0,0,'79.140.25.163','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5042.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2105,1,NULL,'2024-07-29 04:33:20','2024-07-29 04:33:20',0,0,'192.227.240.42','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2106,1,NULL,'2024-07-29 12:30:06','2024-07-29 12:30:06',0,0,'62.216.79.158','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2107,1,NULL,'2024-07-29 18:55:28','2024-07-29 18:55:28',0,0,'109.69.109.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2108,1,NULL,'2024-07-29 23:39:02','2024-07-29 23:39:02',0,0,'203.118.171.11','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2109,1,NULL,'2024-07-30 04:16:54','2024-07-30 04:16:54',0,0,'164.163.124.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2110,1,NULL,'2024-07-30 23:19:14','2024-07-30 23:19:14',0,0,'185.104.218.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2111,1,NULL,'2024-07-30 23:39:16','2024-07-30 23:39:16',0,0,'84.239.42.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.93 Chrome/124.0.6367.93 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2112,1,NULL,'2024-07-31 10:36:16','2024-07-31 10:36:16',0,0,'47.238.103.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2113,1,NULL,'2024-07-31 12:00:55','2024-07-31 12:00:55',0,0,'195.222.126.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2114,1,NULL,'2024-07-31 17:43:11','2024-07-31 17:43:11',0,0,'192.186.147.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2115,1,NULL,'2024-07-31 18:27:18','2024-07-31 18:27:18',0,0,'149.5.1.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2116,1,NULL,'2024-07-31 20:11:35','2024-07-31 20:11:35',0,0,'209.127.245.250','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2117,1,NULL,'2024-07-31 20:41:04','2024-07-31 20:41:04',0,0,'45.147.63.178','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2118,1,NULL,'2024-08-01 04:18:31','2024-08-01 04:18:31',0,0,'140.99.151.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2119,1,NULL,'2024-08-01 06:21:24','2024-08-01 06:21:24',0,0,'171.4.249.236','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2120,1,NULL,'2024-08-01 08:28:52','2024-08-01 08:28:52',0,0,'142.91.118.58','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2121,1,NULL,'2024-08-01 09:25:31','2024-08-01 09:25:31',0,0,'96.8.122.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2122,1,NULL,'2024-08-01 18:41:47','2024-08-01 18:41:47',0,0,'138.186.137.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2123,1,NULL,'2024-08-01 22:20:16','2024-08-01 22:20:16',0,0,'185.220.100.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2124,1,NULL,'2024-08-02 22:03:53','2024-08-02 22:03:53',0,0,'23.105.151.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2125,1,NULL,'2024-08-02 23:48:35','2024-08-02 23:48:35',0,0,'46.37.123.165','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2126,1,NULL,'2024-08-02 23:54:46','2024-08-02 23:54:46',0,0,'31.6.55.162','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2127,1,NULL,'2024-08-03 00:11:31','2024-08-03 00:11:31',0,0,'23.110.173.174','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2128,1,NULL,'2024-08-03 01:06:24','2024-08-03 01:06:24',0,0,'196.196.53.116','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2129,1,NULL,'2024-08-03 01:40:44','2024-08-03 01:40:44',0,0,'38.170.126.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2130,1,NULL,'2024-08-04 05:32:43','2024-08-04 05:32:43',0,0,'45.41.178.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2131,1,NULL,'2024-08-04 19:33:45','2024-08-04 19:33:45',0,0,'23.231.36.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2132,1,NULL,'2024-08-04 21:24:52','2024-08-04 21:24:52',0,0,'172.245.107.240','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2133,1,NULL,'2024-08-05 02:47:13','2024-08-05 02:47:13',0,0,'138.186.137.74','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2134,1,NULL,'2024-08-05 16:11:25','2024-08-05 16:11:25',0,0,'102.88.83.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2135,1,NULL,'2024-08-05 17:25:14','2024-08-05 17:25:14',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2136,1,NULL,'2024-08-05 19:34:11','2024-08-05 19:34:11',0,0,'185.220.238.75','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2137,1,NULL,'2024-08-05 22:15:02','2024-08-05 22:15:02',0,0,'172.241.245.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2138,1,NULL,'2024-08-06 03:04:51','2024-08-06 03:04:51',0,0,'118.148.72.6','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-G780G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/21.0 Chrome/110.0.5481.154 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2139,1,NULL,'2024-08-06 04:23:43','2024-08-06 04:23:43',0,0,'23.105.151.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2140,1,NULL,'2024-08-06 04:26:47','2024-08-06 04:26:47',0,0,'23.105.151.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2141,1,NULL,'2024-08-06 06:12:26','2024-08-06 06:12:26',0,0,'23.105.145.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2142,1,NULL,'2024-08-06 16:53:12','2024-08-06 16:53:12',0,0,'196.197.25.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2143,1,NULL,'2024-08-07 06:39:23','2024-08-07 06:39:23',0,0,'49.36.233.185','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2144,1,NULL,'2024-08-07 10:41:52','2024-08-07 10:41:52',0,0,'174.219.14.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2145,1,NULL,'2024-08-07 15:57:00','2024-08-07 15:57:00',0,0,'23.105.147.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2146,1,NULL,'2024-08-08 05:20:00','2024-08-08 05:20:00',0,0,'178.175.130.244','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.60 Chrome/124.0.6367.60 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2147,1,NULL,'2024-08-08 05:33:15','2024-08-08 05:33:15',0,0,'156.255.6.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2148,1,NULL,'2024-08-08 13:07:48','2024-08-08 13:07:48',0,0,'162.253.129.122','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2149,1,NULL,'2024-08-08 13:12:12','2024-08-08 13:12:12',0,0,'23.105.143.125','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2150,1,NULL,'2024-08-08 16:51:57','2024-08-08 16:51:57',0,0,'149.200.186.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2151,1,NULL,'2024-08-08 20:07:29','2024-08-08 20:07:29',0,0,'220.116.232.6','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2152,1,NULL,'2024-08-08 22:31:55','2024-08-08 22:31:55',0,0,'23.95.237.109','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2153,1,NULL,'2024-08-09 12:59:55','2024-08-09 12:59:55',0,0,'149.200.186.72','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2154,1,NULL,'2024-08-09 16:56:58','2024-08-09 16:56:58',0,0,'45.134.142.75','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2155,1,NULL,'2024-08-09 20:22:57','2024-08-09 20:22:57',0,0,'60.234.68.223','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2156,1,NULL,'2024-08-09 22:03:13','2024-08-09 22:03:13',0,0,'45.141.83.95','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2157,1,NULL,'2024-08-10 00:00:04','2024-08-10 00:00:04',0,0,'45.148.10.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2158,1,NULL,'2024-08-10 00:18:32','2024-08-10 00:18:32',0,0,'176.111.174.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2159,1,NULL,'2024-08-10 03:46:04','2024-08-10 03:46:04',0,0,'181.177.102.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2160,1,NULL,'2024-08-10 03:59:49','2024-08-10 03:59:49',0,0,'142.91.118.151','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2161,1,NULL,'2024-08-10 06:10:20','2024-08-10 06:10:20',0,0,'95.164.150.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2162,1,NULL,'2024-08-11 00:28:55','2024-08-11 00:28:55',0,0,'149.102.232.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.78 Chrome/124.0.6367.78 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2163,1,NULL,'2024-08-11 13:59:25','2024-08-11 13:59:25',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2164,1,NULL,'2024-08-12 02:23:08','2024-08-12 02:23:08',0,0,'185.228.194.63','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2165,1,NULL,'2024-08-12 10:48:40','2024-08-12 10:48:40',0,0,'203.46.97.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2166,1,NULL,'2024-08-13 03:42:27','2024-08-13 03:42:27',0,0,'168.227.140.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2167,1,NULL,'2024-08-13 03:46:43','2024-08-13 03:46:43',0,0,'186.179.33.64','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2168,1,NULL,'2024-08-13 06:47:33','2024-08-13 06:47:33',0,0,'106.219.158.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2169,1,NULL,'2024-08-13 19:35:28','2024-08-13 19:35:28',0,0,'23.26.108.133','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2170,1,NULL,'2024-08-14 17:11:00','2024-08-14 17:11:00',0,0,'149.200.184.241','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2171,1,NULL,'2024-08-14 23:32:03','2024-08-14 23:32:03',0,0,'104.223.82.141','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2172,1,NULL,'2024-08-15 04:41:21','2024-08-15 04:41:21',0,0,'84.239.42.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2173,1,NULL,'2024-08-15 20:56:38','2024-08-15 20:56:38',0,0,'23.105.147.231','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2174,1,NULL,'2024-08-15 22:47:14','2024-08-15 22:47:14',0,0,'142.91.118.102','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2175,1,NULL,'2024-08-15 23:05:58','2024-08-15 23:05:58',0,0,'80.211.224.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2176,1,NULL,'2024-08-16 03:11:32','2024-08-16 03:11:32',0,0,'112.198.179.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2177,1,NULL,'2024-08-16 10:39:59','2024-08-16 10:39:59',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.289 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2178,1,NULL,'2024-08-17 03:18:29','2024-08-17 03:18:29',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2179,1,NULL,'2024-08-17 08:47:07','2024-08-17 08:47:07',0,0,'149.102.232.106','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2180,1,NULL,'2024-08-18 13:50:20','2024-08-18 13:50:20',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 11.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5814.214 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2181,1,NULL,'2024-08-18 22:18:25','2024-08-18 22:18:25',0,0,'185.192.16.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2182,1,NULL,'2024-08-19 00:13:37','2024-08-19 00:13:37',0,0,'168.151.226.254','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2183,1,NULL,'2024-08-19 02:58:13','2024-08-19 02:58:13',0,0,'202.124.123.173','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2184,1,NULL,'2024-08-19 04:36:14','2024-08-19 04:36:14',0,0,'23.105.150.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2185,1,NULL,'2024-08-19 21:43:58','2024-08-19 21:43:58',0,0,'222.152.182.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2186,1,NULL,'2024-08-19 22:59:08','2024-08-19 22:59:08',0,0,'51.68.196.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.119 Chrome/124.0.6367.119 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2187,1,NULL,'2024-08-20 18:53:48','2024-08-20 18:53:48',0,0,'82.118.230.81','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2188,1,NULL,'2024-08-20 21:35:59','2024-08-20 21:35:59',0,0,'45.142.212.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/116.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2189,1,NULL,'2024-08-20 22:37:39','2024-08-20 22:37:39',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2190,1,NULL,'2024-08-20 23:27:58','2024-08-20 23:27:58',0,0,'209.242.211.76','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2191,1,NULL,'2024-08-21 14:27:10','2024-08-21 14:27:10',0,0,'51.68.196.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.93 Chrome/124.0.6367.93 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2192,1,NULL,'2024-08-21 22:22:09','2024-08-21 22:22:09',0,0,'121.99.224.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2193,1,NULL,'2024-08-22 06:17:36','2024-08-22 06:17:36',0,0,'168.227.140.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2194,1,NULL,'2024-08-23 08:42:18','2024-08-23 08:42:18',0,0,'199.187.211.207','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2195,1,NULL,'2024-08-23 15:05:11','2024-08-23 15:05:11',0,0,'188.126.89.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.63 Chrome/124.0.6367.63 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2196,1,NULL,'2024-08-24 03:04:50','2024-08-24 03:04:50',0,0,'51.68.196.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.91 Chrome/124.0.6367.91 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2197,1,NULL,'2024-08-24 03:04:55','2024-08-24 03:04:55',0,0,'188.126.89.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.92 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2198,1,NULL,'2024-08-24 19:26:46','2024-08-24 19:26:46',0,0,'172.241.160.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2199,1,NULL,'2024-08-25 01:22:28','2024-08-25 01:22:28',0,0,'181.177.110.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2200,1,NULL,'2024-08-25 07:42:26','2024-08-25 07:42:26',0,0,'82.165.198.169','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2201,1,NULL,'2024-08-25 23:16:02','2024-08-25 23:16:02',0,0,'166.88.245.232','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2202,1,NULL,'2024-08-26 06:33:02','2024-08-26 06:33:02',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2203,1,NULL,'2024-08-26 16:22:34','2024-08-26 16:22:34',0,0,'85.118.80.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2204,1,NULL,'2024-08-26 16:48:48','2024-08-26 16:48:48',0,0,'178.178.6.143','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2205,1,NULL,'2024-08-27 00:36:52','2024-08-27 00:36:52',0,0,'170.130.115.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2206,1,NULL,'2024-08-27 21:03:45','2024-08-27 21:03:45',0,0,'200.71.124.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2207,1,NULL,'2024-08-28 10:54:23','2024-08-28 10:54:23',0,0,'23.83.93.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2208,1,NULL,'2024-08-29 01:22:19','2024-08-29 01:22:19',0,0,'91.229.105.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2209,1,NULL,'2024-08-29 12:26:03','2024-08-29 12:26:03',0,0,'186.179.36.157','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2210,1,NULL,'2024-08-29 19:14:02','2024-08-29 19:14:02',0,0,'192.67.162.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2211,1,NULL,'2024-08-30 00:27:58','2024-08-30 00:27:58',0,0,'154.73.250.33','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2212,1,NULL,'2024-08-30 05:42:20','2024-08-30 05:42:20',0,0,'98.159.226.154','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2213,1,NULL,'2024-08-30 19:53:37','2024-08-30 19:53:37',0,0,'172.241.142.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2214,1,NULL,'2024-08-31 03:15:29','2024-08-31 03:15:29',0,0,'108.165.232.36','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2215,1,NULL,'2024-08-31 13:46:01','2024-08-31 13:46:01',0,0,'23.81.61.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2216,1,NULL,'2024-09-01 01:43:48','2024-09-01 01:43:48',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2217,1,NULL,'2024-09-01 12:59:22','2024-09-01 12:59:22',0,0,'5.102.119.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2218,1,NULL,'2024-09-01 21:16:16','2024-09-01 21:16:16',0,0,'162.253.131.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2219,1,NULL,'2024-09-01 22:52:09','2024-09-01 22:52:09',0,0,'156.239.55.6','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2220,1,NULL,'2024-09-02 01:42:46','2024-09-02 01:42:46',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2221,1,NULL,'2024-09-02 23:30:38','2024-09-02 23:30:38',0,0,'104.245.244.229','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2222,1,NULL,'2024-09-03 07:16:47','2024-09-03 07:16:47',0,0,'38.153.215.80','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2223,1,NULL,'2024-09-03 08:06:17','2024-09-03 08:06:17',0,0,'103.83.145.22','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2224,1,NULL,'2024-09-03 08:17:45','2024-09-03 08:17:45',0,0,'64.64.115.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2225,1,NULL,'2024-09-03 08:30:10','2024-09-03 08:30:10',0,0,'85.209.138.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2226,1,NULL,'2024-09-04 09:56:33','2024-09-04 09:56:33',0,0,'38.153.15.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2227,1,NULL,'2024-09-04 22:03:02','2024-09-04 22:03:02',0,0,'122.56.209.75','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2228,1,NULL,'2024-09-04 23:11:10','2024-09-04 23:11:10',0,0,'86.108.19.198','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2229,1,NULL,'2024-09-06 17:51:15','2024-09-06 17:51:15',0,0,'149.34.245.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2230,1,NULL,'2024-09-06 19:47:23','2024-09-06 19:47:23',0,0,'138.199.59.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.63 Chrome/124.0.6367.63 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2231,1,NULL,'2024-09-06 21:56:04','2024-09-06 21:56:04',0,0,'172.241.142.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2232,1,NULL,'2024-09-06 22:03:22','2024-09-06 22:03:22',0,0,'98.159.226.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2233,1,NULL,'2024-09-07 04:00:05','2024-09-07 04:00:05',0,0,'176.111.174.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2234,1,NULL,'2024-09-08 06:43:12','2024-09-08 06:43:12',0,0,'119.224.59.109','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2235,1,NULL,'2024-09-08 17:05:47','2024-09-08 17:05:47',0,0,'213.252.140.118','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2236,1,NULL,'2024-09-09 00:24:50','2024-09-09 00:24:50',0,0,'154.47.29.240','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2237,1,NULL,'2024-09-09 05:28:57','2024-09-09 05:28:57',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2238,1,NULL,'2024-09-09 05:56:42','2024-09-09 05:56:42',0,0,'154.47.29.240','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.119 Chrome/124.0.6367.119 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2239,1,NULL,'2024-09-10 07:46:13','2024-09-10 07:46:13',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.93 Chrome/124.0.6367.93 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2240,1,NULL,'2024-09-10 14:09:03','2024-09-10 14:09:03',0,0,'194.53.137.101','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2241,1,NULL,'2024-09-10 14:29:55','2024-09-10 14:29:55',0,0,'83.97.73.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2242,1,NULL,'2024-09-11 04:17:11','2024-09-11 04:17:11',0,0,'31.217.248.16','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2243,1,NULL,'2024-09-11 13:28:49','2024-09-11 13:28:49',0,0,'38.153.164.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2244,1,NULL,'2024-09-12 06:01:32','2024-09-12 06:01:32',0,0,'143.244.41.145','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 15.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.119 Chrome/124.0.6367.119 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2245,1,NULL,'2024-09-12 06:48:57','2024-09-12 06:48:57',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2246,1,NULL,'2024-09-12 17:42:20','2024-09-12 17:42:20',0,0,'172.241.146.122','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2247,1,NULL,'2024-09-12 18:10:37','2024-09-12 18:10:37',0,0,'185.220.101.153','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.18 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2248,1,NULL,'2024-09-12 23:20:11','2024-09-12 23:20:11',0,0,'23.83.131.30','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2249,1,NULL,'2024-09-13 00:23:33','2024-09-13 00:23:33',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2250,1,NULL,'2024-09-13 02:09:35','2024-09-13 02:09:35',0,0,'154.12.126.13','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2251,1,NULL,'2024-09-13 04:44:26','2024-09-13 04:44:26',0,0,'27.252.2.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2252,1,NULL,'2024-09-13 04:53:59','2024-09-13 04:53:59',0,0,'49.225.21.121','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2253,1,NULL,'2024-09-13 15:30:19','2024-09-13 15:30:19',0,0,'188.74.138.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2254,1,NULL,'2024-09-14 03:21:01','2024-09-14 03:21:01',0,0,'23.105.151.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2255,1,NULL,'2024-09-14 05:59:56','2024-09-14 05:59:56',0,0,'103.102.116.210','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2256,1,NULL,'2024-09-14 07:05:02','2024-09-14 07:05:02',0,0,'103.102.116.210','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2257,1,NULL,'2024-09-14 17:21:32','2024-09-14 17:21:32',0,0,'23.105.150.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2258,1,NULL,'2024-09-15 17:01:41','2024-09-15 17:01:41',0,0,'15.204.59.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2259,1,NULL,'2024-09-16 00:22:51','2024-09-16 00:22:51',0,0,'23.105.151.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2260,1,NULL,'2024-09-16 04:56:38','2024-09-16 04:56:38',0,0,'209.242.211.66','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2261,1,NULL,'2024-09-17 09:21:11','2024-09-17 09:21:11',0,0,'125.239.57.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2262,1,NULL,'2024-09-17 13:15:48','2024-09-17 13:15:48',0,0,'23.105.150.7','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2263,1,NULL,'2024-09-17 19:06:10','2024-09-17 19:06:10',0,0,'23.105.151.135','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2264,1,NULL,'2024-09-18 05:31:20','2024-09-18 05:31:20',0,0,'172.241.142.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2265,1,NULL,'2024-09-18 07:25:29','2024-09-18 07:25:29',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2266,1,NULL,'2024-09-18 22:22:30','2024-09-18 22:22:30',0,0,'192.126.137.71','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2267,1,NULL,'2024-09-19 04:55:42','2024-09-19 04:55:42',0,0,'149.71.177.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2268,1,NULL,'2024-09-19 06:57:15','2024-09-19 06:57:15',0,0,'69.165.7.49','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2269,1,NULL,'2024-09-19 08:09:40','2024-09-19 08:09:40',0,0,'203.211.77.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPad; CPU OS 16_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/334.0.674067880 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2270,1,NULL,'2024-09-19 22:41:43','2024-09-19 22:41:43',0,0,'107.150.65.35','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2271,1,NULL,'2024-09-20 04:29:36','2024-09-20 04:29:36',0,0,'216.213.24.128','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:46.0) Gecko/20100101 Firefox/46.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2272,1,NULL,'2024-09-20 11:24:50','2024-09-20 11:24:50',0,0,'37.67.53.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2273,1,NULL,'2024-09-20 22:49:06','2024-09-20 22:49:06',0,0,'172.241.142.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2274,1,NULL,'2024-09-21 11:15:10','2024-09-21 11:15:10',0,0,'168.91.71.226','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2275,1,NULL,'2024-09-22 17:45:33','2024-09-22 17:45:33',0,0,'5.157.14.94','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2276,1,NULL,'2024-09-23 05:56:53','2024-09-23 05:56:53',0,0,'191.102.165.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2277,1,NULL,'2024-09-23 10:47:06','2024-09-23 10:47:06',0,0,'200.10.41.218','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2278,1,NULL,'2024-09-23 16:20:56','2024-09-23 16:20:56',0,0,'23.104.162.85','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2279,1,NULL,'2024-09-23 21:44:12','2024-09-23 21:44:12',0,0,'172.241.142.151','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2280,1,NULL,'2024-09-24 00:42:55','2024-09-24 00:42:55',0,0,'219.89.136.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2281,1,NULL,'2024-09-24 00:45:23','2024-09-24 00:45:23',0,0,'219.89.136.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2282,1,NULL,'2024-09-24 00:45:27','2024-09-24 00:45:27',0,0,'219.89.136.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2283,1,NULL,'2024-09-24 03:40:37','2024-09-24 03:40:37',0,0,'5.102.101.222','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2284,1,NULL,'2024-09-24 04:05:37','2024-09-24 04:05:37',0,0,'23.110.173.141','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2285,1,NULL,'2024-09-24 05:00:40','2024-09-24 05:00:40',0,0,'173.234.151.33','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2286,1,NULL,'2024-09-24 05:45:31','2024-09-24 05:45:31',0,0,'85.193.65.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 15.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.60 Chrome/124.0.6367.60 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2287,1,NULL,'2024-09-24 06:41:56','2024-09-24 06:41:56',0,0,'107.175.151.22','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2288,1,NULL,'2024-09-24 11:15:18','2024-09-24 11:15:18',0,0,'162.212.168.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2289,1,NULL,'2024-09-25 03:27:07','2024-09-25 03:27:07',0,0,'121.74.11.55','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 14; SM-A528B Build/UP1A.231005.007; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/129.0.6668.51 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/482.0.0.51.80;]','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2290,1,NULL,'2024-09-25 11:14:28','2024-09-25 11:14:28',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2291,1,NULL,'2024-09-25 16:34:20','2024-09-25 16:34:20',0,0,'109.196.163.227','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2292,1,NULL,'2024-09-25 19:43:28','2024-09-25 19:43:28',0,0,'38.170.21.31','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2293,1,NULL,'2024-09-26 05:31:57','2024-09-26 05:31:57',0,0,'186.179.34.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2294,1,NULL,'2024-09-26 06:27:26','2024-09-26 06:27:26',0,0,'209.242.209.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2295,1,NULL,'2024-09-26 07:36:20','2024-09-26 07:36:20',0,0,'23.104.184.203','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2296,1,NULL,'2024-09-26 08:57:18','2024-09-26 08:57:18',0,0,'23.110.173.174','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2297,1,NULL,'2024-09-26 11:46:31','2024-09-26 11:46:31',0,0,'130.44.201.61','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:46.0) Gecko/20100101 Firefox/46.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2298,1,NULL,'2024-09-26 23:06:45','2024-09-26 23:06:45',0,0,'222.153.31.96','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2299,1,NULL,'2024-09-27 05:04:49','2024-09-27 05:04:49',0,0,'106.219.166.105','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2300,1,NULL,'2024-09-27 08:20:48','2024-09-27 08:20:48',0,0,'200.71.124.118','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2301,1,NULL,'2024-09-27 10:13:57','2024-09-27 10:13:57',0,0,'45.146.54.142','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2302,1,NULL,'2024-09-27 20:12:44','2024-09-27 20:12:44',0,0,'50.114.94.90','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2303,1,NULL,'2024-09-29 02:52:31','2024-09-29 02:52:31',0,0,'23.81.55.244','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2304,1,NULL,'2024-09-29 08:07:41','2024-09-29 08:07:41',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2305,1,NULL,'2024-09-30 00:43:48','2024-09-30 00:43:48',0,0,'104.239.38.121','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2306,1,NULL,'2024-09-30 07:56:32','2024-09-30 07:56:32',0,0,'118.148.68.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2307,1,NULL,'2024-09-30 12:19:44','2024-09-30 12:19:44',0,0,'23.80.151.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2308,1,NULL,'2024-09-30 19:14:18','2024-09-30 19:14:18',0,0,'139.135.32.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2309,1,NULL,'2024-10-01 06:42:22','2024-10-01 06:42:22',0,0,'131.108.16.12','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2310,1,NULL,'2024-10-02 01:32:57','2024-10-02 01:32:57',0,0,'38.170.157.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2311,1,NULL,'2024-10-02 07:43:05','2024-10-02 07:43:05',0,0,'185.220.101.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2312,1,NULL,'2024-10-02 07:56:09','2024-10-02 07:56:09',0,0,'118.92.255.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2313,1,NULL,'2024-10-02 09:12:18','2024-10-02 09:12:18',0,0,'94.16.121.91','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.82 Safari/537.36 OPR/35.0.2066.37','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2314,1,NULL,'2024-10-02 15:15:39','2024-10-02 15:15:39',0,0,'45.61.127.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2315,1,NULL,'2024-10-03 02:28:07','2024-10-03 02:28:07',0,0,'80.208.227.60','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2316,1,NULL,'2024-10-03 05:11:14','2024-10-03 05:11:14',0,0,'149.62.205.103','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2317,1,NULL,'2024-10-03 07:02:30','2024-10-03 07:02:30',0,0,'85.193.65.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.62 Chrome/124.0.6367.62 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2318,1,NULL,'2024-10-03 09:49:24','2024-10-03 09:49:24',0,0,'64.137.99.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2319,1,NULL,'2024-10-03 11:39:15','2024-10-03 11:39:15',0,0,'152.89.198.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2320,1,NULL,'2024-10-03 22:12:13','2024-10-03 22:12:13',0,0,'62.4.17.140','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2321,1,NULL,'2024-10-04 00:32:21','2024-10-04 00:32:21',0,0,'203.211.78.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2322,1,NULL,'2024-10-04 00:44:23','2024-10-04 00:44:23',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.63 Chrome/124.0.6367.63 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2323,1,NULL,'2024-10-04 01:42:15','2024-10-04 01:42:15',0,0,'109.196.160.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2324,1,NULL,'2024-10-04 05:26:11','2024-10-04 05:26:11',0,0,'185.245.80.127','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2325,1,NULL,'2024-10-04 12:25:11','2024-10-04 12:25:11',0,0,'46.191.185.91','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2326,1,NULL,'2024-10-04 18:34:40','2024-10-04 18:34:40',0,0,'49.224.108.112','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.7 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2327,1,NULL,'2024-10-05 10:20:35','2024-10-05 10:20:35',0,0,'198.154.89.59','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2328,1,NULL,'2024-10-06 00:40:33','2024-10-06 00:40:33',0,0,'45.43.191.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2329,1,NULL,'2024-10-06 06:57:45','2024-10-06 06:57:45',0,0,'23.105.145.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2330,1,NULL,'2024-10-07 02:44:46','2024-10-07 02:44:46',0,0,'23.80.151.13','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2331,1,NULL,'2024-10-07 02:57:14','2024-10-07 02:57:14',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2332,1,NULL,'2024-10-07 07:34:33','2024-10-07 07:34:33',0,0,'85.209.11.117','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.92 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2333,1,NULL,'2024-10-08 05:47:57','2024-10-08 05:47:57',0,0,'107.158.118.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2334,1,NULL,'2024-10-08 06:41:57','2024-10-08 06:41:57',0,0,'172.241.142.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2335,1,NULL,'2024-10-08 21:08:41','2024-10-08 21:08:41',0,0,'185.39.207.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2336,1,NULL,'2024-10-08 22:34:10','2024-10-08 22:34:10',0,0,'49.225.104.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2337,1,NULL,'2024-10-09 09:14:37','2024-10-09 09:14:37',0,0,'62.122.184.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2338,1,NULL,'2024-10-09 15:38:58','2024-10-09 15:38:58',0,0,'104.207.45.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2339,1,NULL,'2024-10-09 20:44:37','2024-10-09 20:44:37',0,0,'38.154.233.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2340,1,NULL,'2024-10-10 16:34:52','2024-10-10 16:34:52',0,0,'167.160.76.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2341,1,NULL,'2024-10-10 21:27:33','2024-10-10 21:27:33',0,0,'23.80.149.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2342,1,NULL,'2024-10-10 21:45:57','2024-10-10 21:45:57',0,0,'170.254.3.49','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2343,1,NULL,'2024-10-10 22:20:07','2024-10-10 22:20:07',0,0,'107.172.230.76','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2344,1,NULL,'2024-10-11 05:56:01','2024-10-11 05:56:01',0,0,'125.238.24.181','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2345,1,NULL,'2024-10-11 18:32:57','2024-10-11 18:32:57',0,0,'158.115.250.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2346,1,NULL,'2024-10-11 22:18:05','2024-10-11 22:18:05',0,0,'104.239.81.253','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2347,1,NULL,'2024-10-12 00:44:13','2024-10-12 00:44:13',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.62 Chrome/124.0.6367.62 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2348,1,NULL,'2024-10-12 10:29:49','2024-10-12 10:29:49',0,0,'196.58.229.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2349,1,NULL,'2024-10-12 18:21:17','2024-10-12 18:21:17',0,0,'130.44.200.109','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2350,1,NULL,'2024-10-13 14:34:19','2024-10-13 14:34:19',0,0,'152.89.198.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.119 Chrome/124.0.6367.119 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2351,1,NULL,'2024-10-13 20:18:49','2024-10-13 20:18:49',0,0,'192.126.140.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2352,1,NULL,'2024-10-13 20:22:33','2024-10-13 20:22:33',0,0,'23.105.145.239','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2353,1,NULL,'2024-10-13 20:51:07','2024-10-13 20:51:07',0,0,'172.241.160.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2354,1,NULL,'2024-10-14 04:25:20','2024-10-14 04:25:20',0,0,'172.241.142.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2355,1,NULL,'2024-10-14 04:55:28','2024-10-14 04:55:28',0,0,'212.102.33.37','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2356,1,NULL,'2024-10-14 06:16:53','2024-10-14 06:16:53',0,0,'222.153.181.120','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2357,1,NULL,'2024-10-14 11:43:36','2024-10-14 11:43:36',0,0,'91.108.193.128','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2358,1,NULL,'2024-10-15 01:52:02','2024-10-15 01:52:02',0,0,'130.44.203.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2359,1,NULL,'2024-10-15 15:51:50','2024-10-15 15:51:50',0,0,'23.80.151.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2360,1,NULL,'2024-10-15 19:05:28','2024-10-15 19:05:28',0,0,'130.44.202.23','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2361,1,NULL,'2024-10-15 22:29:30','2024-10-15 22:29:30',0,0,'139.135.32.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2362,1,NULL,'2024-10-16 01:32:46','2024-10-16 01:32:46',0,0,'172.241.169.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2363,1,NULL,'2024-10-16 01:56:13','2024-10-16 01:56:13',0,0,'219.89.113.152','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2364,1,NULL,'2024-10-16 02:18:51','2024-10-16 02:18:51',0,0,'181.214.173.76','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.91 Chrome/124.0.6367.91 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2365,1,NULL,'2024-10-16 04:46:11','2024-10-16 04:46:11',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 15.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.60 Chrome/124.0.6367.60 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2366,1,NULL,'2024-10-17 00:02:31','2024-10-17 00:02:31',0,0,'4.228.50.244','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2367,1,NULL,'2024-10-17 02:31:51','2024-10-17 02:31:51',0,0,'54.37.60.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2368,1,NULL,'2024-10-17 19:05:16','2024-10-17 19:05:16',0,0,'4.228.50.244','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2369,1,NULL,'2024-10-17 20:07:01','2024-10-17 20:07:01',0,0,'23.80.151.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2370,1,NULL,'2024-10-17 23:58:21','2024-10-17 23:58:21',0,0,'23.105.147.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2371,1,NULL,'2024-10-18 15:14:58','2024-10-18 15:14:58',0,0,'51.68.196.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2372,1,NULL,'2024-10-19 06:00:21','2024-10-19 06:00:21',0,0,'196.198.13.159','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2373,1,NULL,'2024-10-19 11:29:21','2024-10-19 11:29:21',0,0,'104.244.75.89','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.794.0 Safari/535.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2374,1,NULL,'2024-10-20 00:49:45','2024-10-20 00:49:45',0,0,'5.252.179.112','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2375,1,NULL,'2024-10-20 18:51:54','2024-10-20 18:51:54',0,0,'155.94.240.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2376,1,NULL,'2024-10-21 02:43:31','2024-10-21 02:43:31',0,0,'161.29.78.172','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2377,1,NULL,'2024-10-22 13:34:11','2024-10-22 13:34:11',0,0,'139.99.49.246','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2378,1,NULL,'2024-10-24 07:55:03','2024-10-24 07:55:03',0,0,'190.123.219.128','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2379,1,NULL,'2024-10-24 15:20:42','2024-10-24 15:20:42',0,0,'37.187.74.97','https://juiceelectrical.co.nz/contact','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2380,1,NULL,'2024-10-25 13:59:36','2024-10-25 13:59:36',0,0,'172.241.153.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2381,1,NULL,'2024-10-25 18:41:09','2024-10-25 18:41:09',0,0,'172.241.168.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2382,1,NULL,'2024-10-26 10:03:57','2024-10-26 10:03:57',0,0,'185.54.231.19','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2383,1,NULL,'2024-10-27 01:01:32','2024-10-27 01:01:32',0,0,'23.105.2.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2384,1,NULL,'2024-10-27 02:41:54','2024-10-27 02:41:54',0,0,'45.86.200.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2385,1,NULL,'2024-10-27 05:03:07','2024-10-27 05:03:07',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.93 Chrome/124.0.6367.93 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2386,1,NULL,'2024-10-27 09:12:05','2024-10-27 09:12:05',0,0,'172.241.142.184','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2387,1,NULL,'2024-10-27 13:10:44','2024-10-27 13:10:44',0,0,'196.0.111.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2388,1,NULL,'2024-10-27 13:35:57','2024-10-27 13:35:57',0,0,'172.241.142.98','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2389,1,NULL,'2024-10-27 23:29:08','2024-10-27 23:29:08',0,0,'23.105.147.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2390,1,NULL,'2024-10-28 10:08:40','2024-10-28 10:08:40',0,0,'198.105.101.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2391,1,NULL,'2024-10-28 22:35:20','2024-10-28 22:35:20',0,0,'147.161.216.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2392,1,NULL,'2024-10-28 23:27:00','2024-10-28 23:27:00',0,0,'152.89.198.68','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 15.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.119 Chrome/124.0.6367.119 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2393,1,NULL,'2024-10-28 23:53:31','2024-10-28 23:53:31',0,0,'45.66.209.182','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2394,1,NULL,'2024-10-29 04:34:20','2024-10-29 04:34:20',0,0,'173.0.9.243','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2395,1,NULL,'2024-10-29 15:56:29','2024-10-29 15:56:29',0,0,'51.68.196.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2396,1,NULL,'2024-10-29 18:16:03','2024-10-29 18:16:03',0,0,'193.28.182.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2397,1,NULL,'2024-10-29 21:47:40','2024-10-29 21:47:40',0,0,'176.222.6.205','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2398,1,NULL,'2024-10-29 23:12:00','2024-10-29 23:12:00',0,0,'23.105.145.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2399,1,NULL,'2024-10-30 02:30:54','2024-10-30 02:30:54',0,0,'172.241.142.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2400,1,NULL,'2024-10-30 08:35:45','2024-10-30 08:35:45',0,0,'173.234.100.55','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2401,1,NULL,'2024-10-30 12:21:15','2024-10-30 12:21:15',0,0,'192.210.177.123','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2402,1,NULL,'2024-10-30 16:50:31','2024-10-30 16:50:31',0,0,'172.241.152.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2403,1,NULL,'2024-10-31 08:52:41','2024-10-31 08:52:41',0,0,'104.239.81.171','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2404,1,NULL,'2024-10-31 15:01:22','2024-10-31 15:01:22',0,0,'92.119.182.220','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2405,1,NULL,'2024-11-01 09:45:29','2024-11-01 09:45:29',0,0,'23.80.151.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2406,1,NULL,'2024-11-01 15:41:23','2024-11-01 15:41:23',0,0,'185.94.32.167','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2407,1,NULL,'2024-11-01 23:10:06','2024-11-01 23:10:06',0,0,'172.241.168.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2408,1,NULL,'2024-11-02 11:47:30','2024-11-02 11:47:30',0,0,'184.181.217.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2409,1,NULL,'2024-11-02 11:56:46','2024-11-02 11:56:46',0,0,'23.81.59.152','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2410,1,NULL,'2024-11-02 21:34:12','2024-11-02 21:34:12',0,0,'104.239.81.9','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2411,1,NULL,'2024-11-03 05:43:45','2024-11-03 05:43:45',0,0,'191.102.182.119','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2412,1,NULL,'2024-11-03 06:01:20','2024-11-03 06:01:20',0,0,'54.37.234.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.63 Chrome/124.0.6367.63 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2413,1,NULL,'2024-11-03 21:06:58','2024-11-03 21:06:58',0,0,'5.161.118.59','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2414,1,NULL,'2024-11-03 22:17:12','2024-11-03 22:17:12',0,0,'23.105.2.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2415,1,NULL,'2024-11-04 08:11:34','2024-11-04 08:11:34',0,0,'219.89.136.240','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2416,1,NULL,'2024-11-04 09:42:39','2024-11-04 09:42:39',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.60 Chrome/124.0.6367.60 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2417,1,NULL,'2024-11-04 14:04:42','2024-11-04 14:04:42',0,0,'172.241.153.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2418,1,NULL,'2024-11-04 14:15:00','2024-11-04 14:15:00',0,0,'23.105.147.54','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2419,1,NULL,'2024-11-04 18:03:46','2024-11-04 18:03:46',0,0,'23.105.150.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2420,1,NULL,'2024-11-04 21:40:44','2024-11-04 21:40:44',0,0,'172.241.153.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2421,1,NULL,'2024-11-05 11:07:45','2024-11-05 11:07:45',0,0,'23.94.150.181','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2422,1,NULL,'2024-11-05 12:11:42','2024-11-05 12:11:42',0,0,'23.105.147.172','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2423,1,NULL,'2024-11-05 19:18:27','2024-11-05 19:18:27',0,0,'130.44.201.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2424,1,NULL,'2024-11-05 19:23:30','2024-11-05 19:23:30',0,0,'130.44.201.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2425,1,NULL,'2024-11-05 19:42:01','2024-11-05 19:42:01',0,0,'207.244.217.47','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2426,1,NULL,'2024-11-05 23:50:06','2024-11-05 23:50:06',0,0,'125.239.18.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2427,1,NULL,'2024-11-05 23:50:12','2024-11-05 23:50:12',0,0,'125.239.18.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2428,1,NULL,'2024-11-05 23:50:18','2024-11-05 23:50:18',0,0,'125.239.18.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2429,1,NULL,'2024-11-05 23:50:20','2024-11-05 23:50:20',0,0,'125.239.18.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2430,1,NULL,'2024-11-05 23:50:21','2024-11-05 23:50:21',0,0,'125.239.18.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2431,1,NULL,'2024-11-05 23:50:22','2024-11-05 23:50:22',0,0,'125.239.18.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2432,1,NULL,'2024-11-05 23:50:22','2024-11-05 23:50:22',0,0,'125.239.18.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2433,1,NULL,'2024-11-05 23:50:38','2024-11-05 23:50:38',0,0,'125.239.18.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2434,1,NULL,'2024-11-06 03:39:47','2024-11-06 03:39:47',0,0,'172.241.142.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2435,1,NULL,'2024-11-06 04:28:09','2024-11-06 04:28:09',0,0,'37.140.254.216','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2436,1,NULL,'2024-11-06 12:18:39','2024-11-06 12:18:39',0,0,'108.177.131.129','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2437,1,NULL,'2024-11-06 16:21:32','2024-11-06 16:21:32',0,0,'5.62.49.128','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2438,1,NULL,'2024-11-07 01:49:03','2024-11-07 01:49:03',0,0,'23.81.59.152','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2439,1,NULL,'2024-11-07 06:11:38','2024-11-07 06:11:38',0,0,'192.3.188.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2440,1,NULL,'2024-11-07 06:48:15','2024-11-07 06:48:15',0,0,'173.234.100.203','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2441,1,NULL,'2024-11-07 14:12:29','2024-11-07 14:12:29',0,0,'172.245.113.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2442,1,NULL,'2024-11-07 16:20:25','2024-11-07 16:20:25',0,0,'172.241.153.48','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2443,1,NULL,'2024-11-07 18:57:29','2024-11-07 18:57:29',0,0,'23.81.70.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2444,1,NULL,'2024-11-07 21:08:07','2024-11-07 21:08:07',0,0,'124.248.141.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2445,1,NULL,'2024-11-07 22:19:45','2024-11-07 22:19:45',0,0,'89.19.34.25','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2446,1,NULL,'2024-11-07 23:33:48','2024-11-07 23:33:48',0,0,'149.102.238.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2447,1,NULL,'2024-11-08 01:35:58','2024-11-08 01:35:58',0,0,'185.147.125.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.119 Chrome/124.0.6367.119 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2448,1,NULL,'2024-11-08 20:00:08','2024-11-08 20:00:08',0,0,'23.105.150.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2449,1,NULL,'2024-11-08 20:29:09','2024-11-08 20:29:09',0,0,'5.161.118.59','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2450,1,NULL,'2024-11-08 23:12:18','2024-11-08 23:12:18',0,0,'172.241.152.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2451,1,NULL,'2024-11-08 23:51:21','2024-11-08 23:51:21',0,0,'192.42.116.185','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.164 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2452,1,NULL,'2024-11-09 16:32:30','2024-11-09 16:32:30',0,0,'23.106.211.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2453,1,NULL,'2024-11-11 00:31:59','2024-11-11 00:31:59',0,0,'185.147.125.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2454,1,NULL,'2024-11-11 04:28:09','2024-11-11 04:28:09',0,0,'23.82.40.195','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2455,1,NULL,'2024-11-11 06:38:54','2024-11-11 06:38:54',0,0,'23.105.150.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2456,1,NULL,'2024-11-11 22:44:29','2024-11-11 22:44:29',0,0,'124.157.115.5','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 Edg/130.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2457,1,NULL,'2024-11-12 03:15:04','2024-11-12 03:15:04',0,0,'216.41.235.254','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2458,1,NULL,'2024-11-12 06:37:23','2024-11-12 06:37:23',0,0,'107.175.26.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2459,1,NULL,'2024-11-12 16:49:29','2024-11-12 16:49:29',0,0,'143.244.41.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.60 Chrome/124.0.6367.60 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2460,1,NULL,'2024-11-12 17:08:49','2024-11-12 17:08:49',0,0,'191.101.188.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2461,1,NULL,'2024-11-12 17:24:32','2024-11-12 17:24:32',0,0,'196.243.240.70','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2462,1,NULL,'2024-11-12 19:10:24','2024-11-12 19:10:24',0,0,'92.113.241.78','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2463,1,NULL,'2024-11-13 07:21:17','2024-11-13 07:21:17',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.78 Chrome/124.0.6367.78 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2464,1,NULL,'2024-11-13 09:33:32','2024-11-13 09:33:32',0,0,'106.219.163.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2465,1,NULL,'2024-11-13 14:37:33','2024-11-13 14:37:33',0,0,'23.81.70.17','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2466,1,NULL,'2024-11-13 20:30:24','2024-11-13 20:30:24',0,0,'172.241.242.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2467,1,NULL,'2024-11-14 01:16:58','2024-11-14 01:16:58',0,0,'104.245.145.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2468,1,NULL,'2024-11-14 04:01:26','2024-11-14 04:01:26',0,0,'107.172.35.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2469,1,NULL,'2024-11-14 05:11:43','2024-11-14 05:11:43',0,0,'136.0.116.230','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2470,1,NULL,'2024-11-14 06:36:03','2024-11-14 06:36:03',0,0,'193.233.143.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2471,1,NULL,'2024-11-14 08:28:52','2024-11-14 08:28:52',0,0,'23.105.150.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2472,1,NULL,'2024-11-14 20:35:51','2024-11-14 20:35:51',0,0,'196.244.48.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2473,1,NULL,'2024-11-15 01:03:02','2024-11-15 01:03:02',0,0,'219.89.137.106','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2474,1,NULL,'2024-11-15 07:18:38','2024-11-15 07:18:38',0,0,'98.159.226.220','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2475,1,NULL,'2024-11-15 07:58:44','2024-11-15 07:58:44',0,0,'46.3.48.80','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2476,1,NULL,'2024-11-16 07:52:54','2024-11-16 07:52:54',0,0,'167.160.74.196','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2477,1,NULL,'2024-11-16 13:29:05','2024-11-16 13:29:05',0,0,'196.242.89.77','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2478,1,NULL,'2024-11-16 21:45:25','2024-11-16 21:45:25',0,0,'172.241.243.38','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2479,1,NULL,'2024-11-18 07:01:38','2024-11-18 07:01:38',0,0,'185.147.125.16','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.93 Chrome/124.0.6367.93 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2480,1,NULL,'2024-11-18 07:19:58','2024-11-18 07:19:58',0,0,'196.199.10.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2481,1,NULL,'2024-11-18 09:58:26','2024-11-18 09:58:26',0,0,'108.177.131.192','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2482,1,NULL,'2024-11-18 14:31:40','2024-11-18 14:31:40',0,0,'23.105.145.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2483,1,NULL,'2024-11-19 04:09:11','2024-11-19 04:09:11',0,0,'23.106.211.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2484,1,NULL,'2024-11-19 10:29:34','2024-11-19 10:29:34',0,0,'223.185.34.18','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2485,1,NULL,'2024-11-19 16:28:54','2024-11-19 16:28:54',0,0,'181.214.165.140','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2486,1,NULL,'2024-11-20 00:46:58','2024-11-20 00:46:58',0,0,'173.234.100.93','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2487,1,NULL,'2024-11-20 03:05:00','2024-11-20 03:05:00',0,0,'172.241.242.234','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',NULL),(2488,1,NULL,'2024-11-20 19:22:50','2024-11-20 19:22:50',0,0,'23.106.211.229','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2489,1,NULL,'2024-11-20 21:28:05','2024-11-20 21:28:05',0,0,'103.250.118.2','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2490,1,NULL,'2024-11-20 23:23:47','2024-11-20 23:23:47',0,0,'161.29.86.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2491,1,NULL,'2024-11-21 02:21:47','2024-11-21 02:21:47',0,0,'5.161.118.59','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2492,1,NULL,'2024-11-21 02:34:57','2024-11-21 02:34:57',0,0,'188.213.202.40','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2493,1,NULL,'2024-11-21 03:29:31','2024-11-21 03:29:31',0,0,'154.53.85.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2494,1,NULL,'2024-11-21 04:06:49','2024-11-21 04:06:49',0,0,'172.241.142.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2495,1,NULL,'2024-11-21 06:37:19','2024-11-21 06:37:19',0,0,'122.161.78.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2496,1,NULL,'2024-11-21 10:48:38','2024-11-21 10:48:38',0,0,'158.115.250.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2497,1,NULL,'2024-11-21 15:14:37','2024-11-21 15:14:37',0,0,'185.147.125.18','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.91 Chrome/124.0.6367.91 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2498,1,NULL,'2024-11-21 15:22:31','2024-11-21 15:22:31',0,0,'154.53.85.209','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2499,1,NULL,'2024-11-21 16:23:59','2024-11-21 16:23:59',0,0,'108.165.153.86','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2500,1,NULL,'2024-11-21 18:47:15','2024-11-21 18:47:15',0,0,'172.96.90.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2501,1,NULL,'2024-11-21 20:15:33','2024-11-21 20:15:33',0,0,'2.57.171.233','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2502,1,NULL,'2024-11-21 21:24:34','2024-11-21 21:24:34',0,0,'172.241.142.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2503,1,NULL,'2024-11-22 16:45:52','2024-11-22 16:45:52',0,0,'185.147.125.18','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.91 Chrome/124.0.6367.91 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2504,1,NULL,'2024-11-22 20:22:06','2024-11-22 20:22:06',0,0,'23.80.154.212','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2505,1,NULL,'2024-11-23 04:52:57','2024-11-23 04:52:57',0,0,'23.105.145.247','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2506,1,NULL,'2024-11-23 05:11:53','2024-11-23 05:11:53',0,0,'122.161.76.175','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2507,1,NULL,'2024-11-23 06:59:53','2024-11-23 06:59:53',0,0,'173.234.100.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2508,1,NULL,'2024-11-23 09:42:54','2024-11-23 09:42:54',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 15.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.60 Chrome/124.0.6367.60 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2509,1,NULL,'2024-11-23 13:42:46','2024-11-23 13:42:46',0,0,'185.159.157.50','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2510,1,NULL,'2024-11-23 15:49:22','2024-11-23 15:49:22',0,0,'149.50.218.137','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2511,1,NULL,'2024-11-23 19:16:32','2024-11-23 19:16:32',0,0,'23.105.145.188','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2512,1,NULL,'2024-11-23 23:23:16','2024-11-23 23:23:16',0,0,'176.126.111.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2513,1,NULL,'2024-11-25 02:04:03','2024-11-25 02:04:03',0,0,'216.180.106.211','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2514,1,NULL,'2024-11-25 04:42:53','2024-11-25 04:42:53',0,0,'23.81.70.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2515,1,NULL,'2024-11-25 05:22:31','2024-11-25 05:22:31',0,0,'161.65.217.254','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0.1 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2516,1,NULL,'2024-11-25 11:02:24','2024-11-25 11:02:24',0,0,'130.44.202.22','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2517,1,NULL,'2024-11-25 17:41:34','2024-11-25 17:41:34',0,0,'212.102.33.141','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2518,1,NULL,'2024-11-25 20:45:56','2024-11-25 20:45:56',0,0,'23.80.151.69','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2519,1,NULL,'2024-11-25 23:02:56','2024-11-25 23:02:56',0,0,'156.249.138.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2520,1,NULL,'2024-11-26 02:21:50','2024-11-26 02:21:50',0,0,'104.207.35.51','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2521,1,NULL,'2024-11-26 03:08:20','2024-11-26 03:08:20',0,0,'23.82.40.206','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2522,1,NULL,'2024-11-26 12:21:59','2024-11-26 12:21:59',0,0,'156.249.137.111','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2523,1,NULL,'2024-11-26 18:47:09','2024-11-26 18:47:09',0,0,'23.80.140.65','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2524,1,NULL,'2024-11-26 20:09:49','2024-11-26 20:09:49',0,0,'5.161.118.59','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2525,1,NULL,'2024-11-26 20:21:53','2024-11-26 20:21:53',0,0,'23.105.145.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2526,1,NULL,'2024-11-26 21:38:32','2024-11-26 21:38:32',0,0,'23.81.70.17','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2527,1,NULL,'2024-11-27 06:19:30','2024-11-27 06:19:30',0,0,'154.213.197.110','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2528,1,NULL,'2024-11-27 07:31:46','2024-11-27 07:31:46',0,0,'23.105.145.106','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2529,1,NULL,'2024-11-27 23:36:54','2024-11-27 23:36:54',0,0,'23.105.145.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2530,1,NULL,'2024-11-28 06:18:50','2024-11-28 06:18:50',0,0,'23.81.69.9','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2531,1,NULL,'2024-11-28 06:46:47','2024-11-28 06:46:47',0,0,'85.193.65.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.63 Chrome/124.0.6367.63 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2532,1,NULL,'2024-11-28 16:41:18','2024-11-28 16:41:18',0,0,'154.213.197.110','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2533,1,NULL,'2024-11-28 19:53:32','2024-11-28 19:53:32',0,0,'162.253.129.118','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2534,1,NULL,'2024-11-28 19:58:34','2024-11-28 19:58:34',0,0,'23.105.151.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2535,1,NULL,'2024-11-28 21:37:29','2024-11-28 21:37:29',0,0,'85.193.65.155','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.91 Chrome/124.0.6367.91 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2536,1,NULL,'2024-11-28 22:07:46','2024-11-28 22:07:46',0,0,'23.105.145.126','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2537,1,NULL,'2024-11-29 00:06:07','2024-11-29 00:06:07',0,0,'23.81.70.252','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2538,1,NULL,'2024-11-29 15:11:11','2024-11-29 15:11:11',0,0,'185.147.125.58','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2539,1,NULL,'2024-11-29 22:27:25','2024-11-29 22:27:25',0,0,'23.105.145.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2540,1,NULL,'2024-11-30 03:51:22','2024-11-30 03:51:22',0,0,'172.241.142.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2541,1,NULL,'2024-11-30 07:34:01','2024-11-30 07:34:01',0,0,'172.241.142.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2542,1,NULL,'2024-11-30 13:47:13','2024-11-30 13:47:13',0,0,'181.214.173.193','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.92 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2543,1,NULL,'2024-11-30 19:01:19','2024-11-30 19:01:19',0,0,'23.81.69.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2544,1,NULL,'2024-11-30 20:17:14','2024-11-30 20:17:14',0,0,'156.233.92.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2545,1,NULL,'2024-11-30 20:22:14','2024-11-30 20:22:14',0,0,'172.241.142.158','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2546,1,NULL,'2024-11-30 21:51:58','2024-11-30 21:51:58',0,0,'192.3.240.124','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2547,1,NULL,'2024-12-01 09:03:49','2024-12-01 09:03:49',0,0,'104.167.30.215','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2548,1,NULL,'2024-12-01 19:41:28','2024-12-01 19:41:28',0,0,'125.236.146.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2549,1,NULL,'2024-12-01 23:58:28','2024-12-01 23:58:28',0,0,'125.238.20.161','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2550,1,NULL,'2024-12-02 00:21:51','2024-12-02 00:21:51',0,0,'130.185.154.150','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2551,1,NULL,'2024-12-02 02:09:53','2024-12-02 02:09:53',0,0,'185.147.125.24','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 15.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.119 Chrome/124.0.6367.119 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2552,1,NULL,'2024-12-02 04:53:26','2024-12-02 04:53:26',0,0,'23.105.151.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2553,1,NULL,'2024-12-02 06:44:25','2024-12-02 06:44:25',0,0,'23.80.154.183','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2554,1,NULL,'2024-12-02 08:44:25','2024-12-02 08:44:25',0,0,'196.51.84.199','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2555,1,NULL,'2024-12-02 10:20:07','2024-12-02 10:20:07',0,0,'23.105.145.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2556,1,NULL,'2024-12-02 20:29:36','2024-12-02 20:29:36',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2557,1,NULL,'2024-12-02 21:23:28','2024-12-02 21:23:28',0,0,'23.80.154.233','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2558,1,NULL,'2024-12-03 00:41:08','2024-12-03 00:41:08',0,0,'23.105.151.194','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2559,1,NULL,'2024-12-03 03:01:31','2024-12-03 03:01:31',0,0,'196.51.84.147','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2560,1,NULL,'2024-12-03 09:37:37','2024-12-03 09:37:37',0,0,'173.239.196.26','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2561,1,NULL,'2024-12-03 12:11:45','2024-12-03 12:11:45',0,0,'23.105.145.188','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2562,1,NULL,'2024-12-03 12:33:13','2024-12-03 12:33:13',0,0,'94.41.129.112','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5042.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2563,1,NULL,'2024-12-04 00:08:58','2024-12-04 00:08:58',0,0,'181.214.173.73','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2564,1,NULL,'2024-12-04 01:59:48','2024-12-04 01:59:48',0,0,'103.75.11.57','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2565,1,NULL,'2024-12-04 04:17:42','2024-12-04 04:17:42',0,0,'23.106.27.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2566,1,NULL,'2024-12-04 08:04:03','2024-12-04 08:04:03',0,0,'23.81.69.224','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2567,1,NULL,'2024-12-04 10:32:28','2024-12-04 10:32:28',0,0,'23.82.40.140','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2568,1,NULL,'2024-12-04 11:07:47','2024-12-04 11:07:47',0,0,'165.231.98.166','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2569,1,NULL,'2024-12-04 12:28:30','2024-12-04 12:28:30',0,0,'185.220.100.245','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 YaBrowser/20.9.3.126 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2570,1,NULL,'2024-12-05 01:09:48','2024-12-05 01:09:48',0,0,'23.105.150.251','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2571,1,NULL,'2024-12-05 07:50:42','2024-12-05 07:50:42',0,0,'23.81.70.138','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2572,1,NULL,'2024-12-05 19:01:25','2024-12-05 19:01:25',0,0,'23.105.150.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2573,1,NULL,'2024-12-06 01:43:48','2024-12-06 01:43:48',0,0,'154.16.206.113','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2574,1,NULL,'2024-12-06 01:58:59','2024-12-06 01:58:59',0,0,'156.228.76.20','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2575,1,NULL,'2024-12-06 07:57:55','2024-12-06 07:57:55',0,0,'166.88.171.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2576,1,NULL,'2024-12-06 18:09:41','2024-12-06 18:09:41',0,0,'23.81.69.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2577,1,NULL,'2024-12-06 22:08:42','2024-12-06 22:08:42',0,0,'49.149.71.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2578,1,NULL,'2024-12-07 07:28:47','2024-12-07 07:28:47',0,0,'202.78.236.39','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2579,1,NULL,'2024-12-07 08:28:14','2024-12-07 08:28:14',0,0,'172.241.242.235','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2580,1,NULL,'2024-12-07 11:39:30','2024-12-07 11:39:30',0,0,'23.105.5.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2581,1,NULL,'2024-12-07 22:45:02','2024-12-07 22:45:02',0,0,'23.82.81.192','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2582,1,NULL,'2024-12-07 23:38:56','2024-12-07 23:38:56',0,0,'23.81.152.95','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2583,1,NULL,'2024-12-08 07:06:12','2024-12-08 07:06:12',0,0,'23.106.201.44','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2584,1,NULL,'2024-12-08 09:19:14','2024-12-08 09:19:14',0,0,'185.40.4.132','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36 OPR/34.0.2036.25 (Edition Campaign 38)','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2585,1,NULL,'2024-12-08 21:13:47','2024-12-08 21:13:47',0,0,'23.105.2.29','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2586,1,NULL,'2024-12-09 03:55:23','2024-12-09 03:55:23',0,0,'23.105.5.143','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2587,1,NULL,'2024-12-09 05:59:11','2024-12-09 05:59:11',0,0,'206.83.103.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2588,1,NULL,'2024-12-09 09:51:08','2024-12-09 09:51:08',0,0,'92.255.85.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 15.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.60 Chrome/124.0.6367.60 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2589,1,NULL,'2024-12-09 15:17:07','2024-12-09 15:17:07',0,0,'104.207.52.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2590,1,NULL,'2024-12-09 17:56:29','2024-12-09 17:56:29',0,0,'212.102.35.104','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.78 Chrome/124.0.6367.78 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2591,1,NULL,'2024-12-09 20:09:55','2024-12-09 20:09:55',0,0,'194.99.25.201','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2592,1,NULL,'2024-12-09 22:46:26','2024-12-09 22:46:26',0,0,'172.241.147.5','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2593,1,NULL,'2024-12-10 01:42:50','2024-12-10 01:42:50',0,0,'23.106.207.228','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2594,1,NULL,'2024-12-10 08:27:50','2024-12-10 08:27:50',0,0,'23.105.5.108','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2595,1,NULL,'2024-12-10 19:00:40','2024-12-10 19:00:40',0,0,'23.106.196.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2596,1,NULL,'2024-12-11 00:58:47','2024-12-11 00:58:47',0,0,'172.241.168.157','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2597,1,NULL,'2024-12-11 03:20:11','2024-12-11 03:20:11',0,0,'156.228.94.62','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2598,1,NULL,'2024-12-11 05:30:19','2024-12-11 05:30:19',0,0,'23.110.166.208','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2599,1,NULL,'2024-12-11 07:10:05','2024-12-11 07:10:05',0,0,'23.106.201.97','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2600,1,NULL,'2024-12-11 11:35:40','2024-12-11 11:35:40',0,0,'23.82.81.221','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2601,1,NULL,'2024-12-11 12:55:34','2024-12-11 12:55:34',0,0,'45.145.128.186','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2602,1,NULL,'2024-12-11 13:44:47','2024-12-11 13:44:47',0,0,'173.232.7.84','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2603,1,NULL,'2024-12-11 14:50:32','2024-12-11 14:50:32',0,0,'143.159.198.204','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2604,1,NULL,'2024-12-11 15:06:01','2024-12-11 15:06:01',0,0,'156.146.55.181','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2605,1,NULL,'2024-12-11 22:47:58','2024-12-11 22:47:58',0,0,'121.99.248.149','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 OPR/114.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2606,1,NULL,'2024-12-11 23:28:46','2024-12-11 23:28:46',0,0,'23.105.151.120','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2607,1,NULL,'2024-12-12 00:08:14','2024-12-12 00:08:14',0,0,'222.153.178.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36 OPR/86.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2608,1,NULL,'2024-12-12 00:08:19','2024-12-12 00:08:19',0,0,'222.153.178.14','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36 OPR/86.0.0.0','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2609,1,NULL,'2024-12-12 00:24:05','2024-12-12 00:24:05',0,0,'119.224.58.136','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1.1 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2610,1,NULL,'2024-12-12 01:15:03','2024-12-12 01:15:03',0,0,'172.241.152.83','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2611,1,NULL,'2024-12-12 07:56:32','2024-12-12 07:56:32',0,0,'208.70.11.164','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2612,1,NULL,'2024-12-12 09:09:08','2024-12-12 09:09:08',0,0,'23.105.147.180','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2613,1,NULL,'2024-12-12 17:51:02','2024-12-12 17:51:02',0,0,'174.72.208.67','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2614,1,NULL,'2024-12-12 18:36:29','2024-12-12 18:36:29',0,0,'23.82.105.88','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2615,1,NULL,'2024-12-12 22:22:50','2024-12-12 22:22:50',0,0,'23.82.81.237','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2616,1,NULL,'2024-12-12 23:31:35','2024-12-12 23:31:35',0,0,'23.81.69.15','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2617,1,NULL,'2024-12-13 00:51:57','2024-12-13 00:51:57',0,0,'172.81.58.53','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2618,1,NULL,'2024-12-13 01:40:26','2024-12-13 01:40:26',0,0,'196.51.81.134','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2619,1,NULL,'2024-12-13 02:13:33','2024-12-13 02:13:33',0,0,'125.236.229.157','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2620,1,NULL,'2024-12-13 02:31:51','2024-12-13 02:31:51',0,0,'203.211.79.252','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (iPad; CPU OS 17_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/345.2.700885593 Mobile/15E148 Safari/604.1','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2621,1,NULL,'2024-12-13 04:27:04','2024-12-13 04:27:04',0,0,'172.241.153.48','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2622,1,NULL,'2024-12-13 17:18:30','2024-12-13 17:18:30',0,0,'23.82.81.118','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2623,1,NULL,'2024-12-14 01:10:58','2024-12-14 01:10:58',0,0,'196.51.245.35','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2624,1,NULL,'2024-12-14 06:20:43','2024-12-14 06:20:43',0,0,'23.81.59.152','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2625,1,NULL,'2024-12-14 16:07:25','2024-12-14 16:07:25',0,0,'37.19.223.107','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 15.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.119 Chrome/124.0.6367.119 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2626,1,NULL,'2024-12-14 16:49:55','2024-12-14 16:49:55',0,0,'23.82.81.192','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2627,1,NULL,'2024-12-14 16:52:24','2024-12-14 16:52:24',0,0,'23.105.5.213','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2628,1,NULL,'2024-12-14 23:31:21','2024-12-14 23:31:21',0,0,'138.199.36.242','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.63 Chrome/124.0.6367.63 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2629,1,NULL,'2024-12-15 00:58:02','2024-12-15 00:58:02',0,0,'23.81.70.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2630,1,NULL,'2024-12-15 02:19:57','2024-12-15 02:19:57',0,0,'23.105.150.115','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2631,1,NULL,'2024-12-15 05:25:11','2024-12-15 05:25:11',0,0,'64.137.108.8','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2632,1,NULL,'2024-12-15 07:06:45','2024-12-15 07:06:45',0,0,'172.241.153.48','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2633,1,NULL,'2024-12-15 08:12:46','2024-12-15 08:12:46',0,0,'23.106.27.177','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2634,1,NULL,'2024-12-15 17:18:51','2024-12-15 17:18:51',0,0,'23.81.70.46','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2635,1,NULL,'2024-12-16 04:17:40','2024-12-16 04:17:40',0,0,'23.82.105.34','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2636,1,NULL,'2024-12-16 07:46:34','2024-12-16 07:46:34',0,0,'23.105.145.227','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2637,1,NULL,'2024-12-16 08:42:37','2024-12-16 08:42:37',0,0,'16.163.43.59','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3),(2638,1,NULL,'2024-12-16 17:48:24','2024-12-16 17:48:24',0,0,'23.81.152.95','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2639,1,NULL,'2024-12-16 18:17:38','2024-12-16 18:17:38',0,0,'212.102.35.49','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.63 Chrome/124.0.6367.63 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2640,1,NULL,'2024-12-16 18:19:22','2024-12-16 18:19:22',0,0,'172.241.168.187','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2641,1,NULL,'2024-12-16 23:22:55','2024-12-16 23:22:55',0,0,'168.151.215.176','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2642,1,NULL,'2024-12-17 00:18:27','2024-12-17 00:18:27',0,0,'172.241.238.146','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2643,1,NULL,'2024-12-17 07:30:19','2024-12-17 07:30:19',0,0,'23.105.147.107','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2644,1,NULL,'2024-12-17 12:50:35','2024-12-17 12:50:35',0,0,'194.38.29.112','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2645,1,NULL,'2024-12-17 21:38:54','2024-12-17 21:38:54',0,0,'23.105.145.230','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2646,1,NULL,'2024-12-18 01:44:34','2024-12-18 01:44:34',0,0,'23.81.70.99','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2647,1,NULL,'2024-12-18 05:33:29','2024-12-18 05:33:29',0,0,'23.105.145.41','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2648,1,NULL,'2024-12-18 12:20:45','2024-12-18 12:20:45',0,0,'5.252.162.219','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2649,1,NULL,'2024-12-18 16:03:31','2024-12-18 16:03:31',0,0,'23.105.151.98','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2650,1,NULL,'2024-12-18 17:52:37','2024-12-18 17:52:37',0,0,'23.105.150.52','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2651,1,NULL,'2024-12-18 18:47:56','2024-12-18 18:47:56',0,0,'185.7.214.130','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.63 Chrome/124.0.6367.63 Not-A.Brand/99 Safari/537.36','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3),(2652,1,NULL,'2024-12-18 22:31:29','2024-12-18 22:31:29',0,0,'23.80.166.202','https://juiceelectrical.co.nz/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','NZD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam',3); /*!40000 ALTER TABLE `wp_gf_entry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_entry_meta` -- DROP TABLE IF EXISTS `wp_gf_entry_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_entry_meta` ( `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `form_id` mediumint(10) unsigned NOT NULL DEFAULT 0, `entry_id` bigint(10) unsigned NOT NULL, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, `item_index` varchar(60) DEFAULT NULL, PRIMARY KEY (`id`), KEY `meta_key` (`meta_key`(191)), KEY `entry_id` (`entry_id`), KEY `meta_value` (`meta_value`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=11107 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_entry_meta` -- LOCK TABLES `wp_gf_entry_meta` WRITE; /*!40000 ALTER TABLE `wp_gf_entry_meta` DISABLE KEYS */; INSERT INTO `wp_gf_entry_meta` VALUES (1,1,1,'6','Justin Blakie',''),(2,1,1,'2','0211411705',''),(3,1,1,'3','justin.blakie@gmail.com',''),(4,1,1,'4','Hi, we are starting to think about installing a wall mounted EV charging box in our garage. To help us decide what options we should look at can you provide a rough idea price-wise what installing a 3 phase charger box including getting 3 phase connected from street. Our home currently has single phase connection only. Because of the faster charging speeds available on 3 phase ac, our ev can handle up to 11 kwh ac charging, we just want to know whether we could afford to go down the 3 phase option, or if realistically it is out of our budget. Thanks for any advice you can provide.',''),(5,1,1,'5','Previous customer',''),(6,1,2,'6','Chic Templeton',''),(7,1,2,'2','033770350 ',''),(8,1,2,'3','chic@pinnacleandco.nz',''),(9,1,2,'4','Hi, this is a test on your contact form. Can you please reply to chic@pinnacleandco.nz to advise you have received this form? Thanks, Chic :) ',''),(10,1,2,'5','Pinnacle&Co.',''),(11,1,3,'6','Stephen Gregory',''),(12,1,3,'2','+64212024098',''),(13,1,3,'3','stepheng.innz@outlook.com',''),(14,1,3,'4','Hi,\r\n\r\nI am helping a friend with a new build in Rolleston, which is currently at the foundation stage. \r\n\r\nWe are looking for a subcontractor that can provide us with some options utilising the Mitsubishi range of products in their standalone, ducted and Omnicore systems. Because we are working to a fixed budget, the idea is that we start off with a system that heats the priority spaces first, and then expand to other spaces in the future. The Omnicore system may be an option?\r\n\r\nWould you please contact me for further information if you think you can help.',''),(15,1,3,'5','Online',''),(16,1,4,'6','Eric Jones',''),(17,1,4,'2','555-555-1212',''),(18,1,4,'3','ericjonesmyemail@gmail.com',''),(19,1,4,'4','Dear juiceelectrical.co.nz Admin! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(20,1,5,'6','Eric Jones',''),(21,1,5,'2','555-555-1212',''),(22,1,5,'3','ericjonesmyemail@gmail.com',''),(23,1,5,'4','Dear juiceelectrical.co.nz Admin. my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(24,1,6,'6','Eunice Lloyd',''),(25,1,6,'2','781-924-4020',''),(26,1,6,'3','eunice.lloyd7@gmail.com',''),(27,1,6,'4','Dear juiceelectrical.co.nz team,\r\n\r\nDon’t you think more traffic leads to more business and hence more revenue? Are you looking to improve your Google Ranking of juiceelectrical.co.nz?\r\n\r\nGreat! I have ranked thousands of websites. You\'re at the most advanced & successful white hat backlink SEO service! I\'ve developed “LatticeWork Technique” after closely working with 1000s of clients around the globe. I focus on E.A.T, aka Expertise, Authoritativeness, and Trustworthiness for best results during your campaign. \r\n\r\nMy Fiverr gig: https://go.fiverr.com/visit/?bta=570412&brand=fiverrhybrid&landingPage=https2F%2Fwww.fiverr.com%2Fmiranda_davis%2Fwhite-hat-dofollow-seo-backlinks\r\n\r\nLatticeWork Technique for Google Rank\r\nRelevancy & Foundation Tiered backlinks\r\nContextual SEO backlinks\r\nPublic blogs & Web 2.0\r\nBrand mention & Social sharing\r\nMix of Comment, Forum, & Files backlinks & more for tiered linking.\r\n\r\nWhat do I do? \r\n\r\nFollow tailored \"LatticeWork Technique,\"; a proven white hat off-page SEO technique\r\nDo everything manually; drip-feed all the links naturally with diverse anchor text, keywords, and a mix of no-follow & dofollow\r\n\r\nDon\'t wait for tomorrow; kick-off campaign today and beat your competitors!\r\n\r\nCheck my service on Fiverr with more than 1000 5-star reviews: https://go.fiverr.com/visit/?bta=570412&brand=fiverrhybrid&landingPage=https2F%2Fwww.fiverr.com%2Fmiranda_davis%2Fwhite-hat-dofollow-seo-backlinks',''),(28,1,7,'6','Glena Wilson',''),(29,1,7,'2','073 43 58 31',''),(30,1,7,'3','glendawilson031@gmail.com',''),(31,1,7,'4','Hello,\r\n\r\nDo you struggle with creating high-quality videos that capture your audience\'s attention? \r\n\r\nAre you frustrated with the complicated and time-consuming process of video editing? \r\n\r\nWe understand your pain, and that\'s why we created Pictory – the AI-powered video editing tool that simplifies the process for you. \r\n\r\nSay goodbye to the hassle of video editing and hello to effortless, professional-looking videos that elevate your brand.\r\n\r\nClick here to see how Pictory can revolutionize your video marketing game.\r\n\r\nvideoswithbots.com\r\n\r\n\r\nRegards, \r\n\r\nGlenda\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(32,1,8,'6','Victoria Sawyer',''),(33,1,8,'2','0211844877',''),(34,1,8,'3','vjsvapm@gmail.com',''),(35,1,8,'4','hello do you service Mitsubishi Heatpumps? If so would you be able to give me a quote for inside and outside unit? I am based in Rolleston.\r\n\r\nAlso if its within my budget, how much would it cost to repair 2 wall sockets (looks as though somebody\'s messed with it - its a double one but the other side works) and perhaps put a new socket in wall behind mounted tv?\r\n\r\nMany thanks\r\nVictoria',''),(36,1,8,'5','Partner in Lincoln recommended you',''),(37,1,9,'6','Richard Cole',''),(38,1,9,'2','05023 16 50 07',''),(39,1,9,'3','richard@ai-hustle.com',''),(40,1,9,'4','Hey,\r\n\r\nLet AI write your emails, responses, content and much more for you.\r\n\r\nGo to www.bestcopytool.com and try it the best AI tool for free.\r\n\r\nHave fun :)\r\n\r\nBest,\r\n\r\nDavid\r\n\r\nPs. You can write 5000 words for free every day in 30+ languages\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you do not want to receive any more marketing emails please send us an email at info@ai-hustle.com and include your URL',''),(41,1,10,'6','Enid Essex',''),(42,1,10,'2','0664 597 44 15',''),(43,1,10,'3','essex.enid@yahoo.com',''),(44,1,10,'4','Hey,\r\n\r\nHave you ever thought of starting a YouTube Carrier without Showing your FACE?\r\n\r\nOR Even without Recording Videos?\r\n\r\nThis FREE Webinar is worth for you if you are interested.\r\n\r\nLearn how a 19 Years old guy Matt is running 3 companies, 9 YouTube Channels with over 300 million views all over his channel.\r\n\r\nYes he is hosting the Live webinar so you can learn from his own real life experience.\r\n\r\nClick here if you are interested >>>> https://bit.ly/ytfreewebinarx\r\n\r\nCheers\r\n\r\nArif Watson\r\n89 Queens St. MI\r\n88780\r\n=====\r\nClick here to Unsubscribe',''),(45,1,11,'6','Jesper C',''),(46,1,11,'2','(07) 4920 2235',''),(47,1,11,'3','ideafullco@gmail.com',''),(48,1,11,'4','Want 5-10 new auto customers to reach out each month, without having to post to social media or run ads?\r\n \r\nDownload it for free below.\r\n\r\nhttps://www.ideafull.co\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nYou can opt out of future messages by replying to this message and saying opt out.\r\njuiceelectrical.co.nz',''),(49,1,12,'6','Latisha Burgos',''),(50,1,12,'3','latisha.burgos31@hotmail.com',''),(51,1,12,'4','Hey there,\r\n\r\nI saw your site juiceelectrical.co.nz \r\nand I really like it.\r\n\r\nWe have a new product that\r\nwe are trying to get the buzz\r\nout.\r\n\r\nCan I pay you to send\r\nan email to your list?\r\n\r\nWe can repeat this every week\r\nand it can be a nice steady\r\nincome for you.\r\n\r\nNo pressure :)\r\n\r\nPlease drop me a line if interested\r\nwith the subject: advertise \r\njerrycam56@gmail.com\r\n\r\n\r\nThanks,\r\n\r\n\r\nJerry',''),(52,1,13,'6','Stephanie Sain',''),(53,1,13,'2','427 5388',''),(54,1,13,'3','stephanie.sain@gmail.com',''),(55,1,13,'4','Hi, \r\n\r\nNo doubt, the fastest & easiest\r\nway to make sales online is having\r\na list - be it email, SMS or Whatsapp.. \r\n\r\nBut, it\'s not as easy as it seems.\r\n\r\nEvery autoresponder hate affiliate\r\nmarketers, they ban us, restrict us, \r\nlimit us - they don\'t care!\r\n\r\n==> Get this 1st ever Affiliate friendly \r\nChatGPT multi-autoresponder here..\r\nhttps://warriorplus.com/o2/a/p5k9d0/0 \r\n\r\nIntroducing AI MultiMarketer - the \r\nfirst ever affiliate friendly ChatGPT3 \r\nmulti-autoresponder that lets you..\r\n\r\nUpload UNlLIMITED emails & contacts,\r\nSend UNLIMITED broadcasts across \r\nALL 3 channels from one dashboard \r\n- email, SMS, Whatsapp.\r\n\r\n❌ without writing anything manually,\r\n❌ without getting banned\r\n❌ without any restriction of limitation\r\n\r\nIt comes with FREE SMTP accounts,\r\npre-approved affiliate offers with DFY \r\ncampaigns.. so you can start selling \r\nright away.\r\n\r\nPlus, get 95% open rates every time \r\nyou send messages - something \r\nyou can never get on email..\r\n\r\n==> Get AI MultiMarketer For A Low \r\nOne-Time Price Now\r\n https://warriorplus.com/o2/a/p5k9d0/0\r\n\r\nIt\'s time to dominate all 3 channels - \r\nemail, SMS and Whatsapp and unlock the \r\ntrue income potential of your business. \r\n \r\nGrab your AI MultiMarketer account \r\nnow for a one-time investment during \r\nthe launch period only.. \r\n\r\nTalk soon,',''),(56,1,14,'6','Allan Burns',''),(57,1,14,'2','432 5350',''),(58,1,14,'3','burns.allan99@gmail.com',''),(59,1,14,'4','I bet you will like it. Checked out this themes for your site - https://www.komputerize.com/go/wordpress-theme',''),(60,1,15,'6','Elbert',''),(61,1,15,'2','434-848-2480',''),(62,1,15,'3','elbert@juiceelectrical.co.nz',''),(63,1,15,'4','Hi there,\r\n\r\nIf 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.\r\n\r\nWe are confident that our Toenail Clippers will provide you with the results you are looking for.\r\n\r\nGet yours today with 60% OFF: https://podiatristusa.com\r\n\r\nBest regards,\r\n\r\nElbert',''),(64,1,16,'6','Chelsey Eatock',''),(65,1,16,'2','468 0697',''),(66,1,16,'3','chelsey.eatock@gmail.com',''),(67,1,16,'4','We are professional web designer highly experienced in Wordpress, HTML, JAVASCRIPT and CSS. We are always willing to help our customers and offer them the best web project.\r\n\r\nhttps://bit.ly/websiteservice1\r\n\r\nWhat\'s Special In This GIG?\r\n\r\nWe will build a responsive Wordpress website for your business. Easy to edit by your company to update all the content efficiently and quickly. 100% Responsive on all devices. This also includes the below services:\r\n\r\nClean, Elegant & Responsive Wordpress Website Design with Blogfully responsive website as per your requirements\r\n100% Customer Satisfaction Guarantee\r\nsupport & maintenance 24/7\r\noptimal performance of the website.\r\n\r\nhttps://bit.ly/websiteservice1\r\n\r\nSome bonuses in my package include:\r\n\r\nFREE of COST consultation.\r\n7 days after completion support.\r\nResponsive to any mobile, tablet and desktop\r\nSocial Link Integration of your business\r\nBeautiful & Elegant Popups to attract visitor attention\r\nSecurity and Speed Optimized\r\n\r\nhttps://bit.ly/websiteservice1\r\n\r\nWE CAN ALSO PROVIDE:\r\n\r\nDebugging/Fixing\r\nImproving Speed\r\nAdding of new content\r\nIf you have any question feel free to contact us!',''),(68,1,17,'6','Adriana Danforth',''),(69,1,17,'2','08459 89 70 00',''),(70,1,17,'3','adriana.danforth@outlook.com',''),(71,1,17,'4','best alternative for GoHighLevel with onetime fee\r\n\r\nGo Get your best LTD for 2023 >>>>> https://rebrand.ly/infinityflow',''),(72,1,18,'6','Garfield Kibble',''),(73,1,18,'2','0150-4209574',''),(74,1,18,'3','kibble.garfield@hotmail.com',''),(75,1,18,'4','Hi,\r\n\r\nI saw your website and thought that you might be interested in learning how to generate passive income with bots and A.I.. Our program can teach you how to create bots that automate your sales process and generate leads, allowing you to earn money even while you\'re away from your computer. To learn more and watch our FREE video, visit our website at https://www.botincomemastery.com/passive\r\nBest regards,\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n2590 Welton Street Ste. 200 Denver, CO 80205\r\nTo opt out of further marketing communications click here: https://www.nomatic.digital/website-opt-out/?customer_domain=juiceelectrical.co.nz',''),(76,1,19,'6','Sadye Baugh',''),(77,1,19,'2','03.07.16.79.24',''),(78,1,19,'3','baugh.sadye79@gmail.com',''),(79,1,19,'4','Hi there juiceelectrical.co.nz,\r\n\r\nDue to recent expansion, we are\r\nlooking for a number of people\r\nwho can monitor user submissions\r\nto ensure they meet the given\r\ncriteria. We need individuals\r\nwho are meticulous and good at\r\nchecking things out to do this\r\nwork from home. \r\n\r\nhttp://bit.ly/3U8Ypsm\r\n\r\nThis means you will be\r\nmonitoring contestants\'\r\nsubmissions to social media\r\ncontests by checking photos and\r\nreading through their entry\r\nforms. The work is simple and\r\ntypically pays around 288 bucks\r\nper day.\r\n\r\nIt doesn\'t matter if you\'re new\r\nto the industry or are a social\r\nmedia guru, this opportunity\r\nwill show you what it takes to\r\nbe successful in this field.\r\n\r\nThis is an online job, and we\r\nare looking for applicants from\r\nall countries. To qualify for\r\nthis role, you need an\r\ninternet-connected device such\r\nas a laptop, phone, or tablet\r\n(Android or IOS). You must have\r\nregular internet access and be\r\navailable for work at least 10\r\nhours a week. Social Media\r\nAssistants are in huge demand\r\nworldwide right now. \r\n\r\nFill out your application now\r\nand start earning $36 per hour. \r\n\r\nhttp://bit.ly/3U8Ypsm\r\n\r\n\r\nLater,\r\n\r\n\r\nSadye',''),(80,1,20,'6','Isabella Wilson',''),(81,1,20,'2','04746 97 67 73',''),(82,1,20,'3','realestateai@sales.com',''),(83,1,20,'4','Hello,\r\n\r\nAre you tired of struggling to find the right investors for your real estate deals? We know the feeling. That\'s why there\'s an all-in-one lead generation software to make the process faster and easier for property owners, wholesalers, real estate agents, Airbnb/STR hosts, real estate brokers, and mortgage brokers like you.\r\n\r\nThis AI-powered software has been proven to increase seller response rates by a staggering 271%. With this software, you\'ll have access to an abundance of data that will allow you to target the right investors for your deals. You\'ll be able to identify the investors who are most likely to be interested in your properties, saving you time and effort in your lead generation efforts.\r\n\r\nDon\'t miss out on this opportunity to revolutionize your real estate lead generation efforts. \r\n\r\nClick the link below to discover the powerful software tool now: https://bit.ly/3ZEl3dr\r\n\r\nSincerely\r\n\r\nAva Taylor',''),(84,1,21,'6','Steven Ross',''),(85,1,21,'2','02.73.44.78.45',''),(86,1,21,'3','florencia.joseph@yahoo.com',''),(87,1,21,'4','Hi,\r\n\r\nRanking websites have never been easier. \r\n\r\nLet me explain, why pay money to a company to rank on the first page of google?\r\nWhen you can spend a few bucks and minimum 10 minutes of your precious time and let the AI do the rest.\r\n\r\nWant to take matters into your own hands? \r\nThis AiTool will automate, trending keywords, write pages of content and much MUCH more.\r\n\r\nTrust me, you get what you pay for. It\'s better than ChatGPT!\r\n\r\nAdditionally, when you sign up using my link below, you will get a Special bonus.\r\n\r\nCheck out the link below, visit https://cutt.ly/bonuses\r\n\r\nFollow the link, sign-up to get free newsletters.\r\nIf not, don\'t signup and go straight to the offer.\r\n\r\nThank you for your time!\r\n\r\nBest,\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(88,1,22,'6','Belinda Pigdon',''),(89,1,22,'2','027 847 68 32',''),(90,1,22,'3','belinda.pigdon@yahoo.com',''),(91,1,22,'4','With this simple and to-the-point method, you\'ll be making money faster than you can say \'abracadabra\'.\r\n==> https://bit.ly/3JFX3QV\r\nMuch Love,\r\nBelinda Pigdon',''),(92,1,23,'6','Areeb Khan',''),(93,1,23,'2','918979723431',''),(94,1,23,'3','technopinesolutionindia@gmail.com',''),(95,1,23,'4','Dear juiceelectrical.co.nz owner,\r\n\r\nAs a leading software development company in India, Technopine Solutions offers top-notch software development services to businesses worldwide. We understand that outsourcing software development work can be a strategic decision for many companies, and we would like to offer our expertise to help you achieve your goals.\r\n\r\nOur team of skilled software developers and engineers has years of experience in developing high-quality software solutions that meet our clients\' specific needs. We use the latest technologies and tools to ensure that our products are reliable, scalable, and secure.\r\n\r\nBy outsourcing your software development work to Technopine Solutions, you can benefit from:\r\n\r\n- Access to a team of experienced software developers and engineers\r\n- Reduced development costs without compromising on quality\r\n- Faster time-to-market for your products and services\r\n- Scalability and flexibility to adapt to changing business needs\r\n- Dedicated project managers to ensure smooth communication and project delivery\r\n\r\nWe would be happy to discuss your software development needs and how we can help you achieve your business objectives. Please feel free to contact us at hitesh@team.technopine.com or visit our website at www.technopine.com\r\n\r\nThank you for considering Technopine Solutions as your software development partner. We look forward to hearing from you soon.\r\n\r\nRequest a Callback: Click Here\r\n\r\nBest regards,\r\n\r\nAreeb Khan\r\nBusiness Development Manager,\r\nTechnopine Solutions India\r\nwww.technopine.com\r\nCall/Wa: +91 8979723431, +91 8279608123\r\nEmail : areebkhan@technopine.com',''),(96,1,24,'6','Stepanie Humphreys',''),(97,1,24,'2','0681 978 99 97',''),(98,1,24,'3','stepanie.humphreys@googlemail.com',''),(99,1,24,'4','Hi,\r\n\r\nAs i was watching through your website i got a question myself, so thought to ask you about it.\r\n\r\nAre you promoting your business on Instagram ?\r\n\r\nWe all know Instagram get\'s millions of traffic daily \r\n\r\nand a piece of Cake of that whole traffic can be your niche targeted audiences, Agree me?\r\n\r\nLet me come to the point.\r\n\r\nAs i discovered this thing called MR Domination that helps to get viral traffic from Instagram.\r\n\r\nYes, i had tested it myself before writing to you about this.\r\n\r\nIf you have few minutes for the sake of increasing your Business sales\r\n\r\nI would like you to check out this VIDEO and Think if this can be applicable for your business.\r\n\r\nCheck out the video here =====>>> https://bit.ly/mrdvideopreview\r\n\r\nI hope it helps your business growth onwards to 5x-10x easily.\r\n\r\nCheers\r\n\r\nRoyal Naidu\r\n98 Will St.\r\nTX, 88465\r\n=========\r\nClick here to Unsubscribe',''),(100,1,25,'6','Garry Hopson',''),(101,1,25,'2','070 1944 4294',''),(102,1,25,'3','garry.hopson@gmail.com',''),(103,1,25,'4','I am excited to introduce you to the ChatGPT4 (OpenAI) powered app for social media automation, a revolutionary tool that will change the way you manage your social media accounts forever!\r\nIntroducing…Soci Ai\r\n\r\nChatGPT4 (OpenAI) Powered App for Social Media Automation\r\nAnd Content Creation\r\n\r\n==> Here Full Scoop https://warriorplus.com/o2/a/kp8x0p/0\r\nSoci Ai app is designed to help you effortlessly post, schedule, and automate your social media platforms like Facebook, TikTok, Instagram, and more. With just a few simple voice commands, \r\nSoci Ai will curate trending viral content, video reels, and posts that will drive massive traffic, views, and following to your accounts.\r\nThe best part? Soci Ai works on complete autopilot, meaning you can sit back and relax while it does all the heavy lifting for you. It\'s like having your own personal assistant!\r\nSome of the key features of Soci Ai include:\r\n\r\nEasy-to-use interface: SociAi app is designed to be user-friendly, even for those who are not tech-savvy. Simply speak your commands, and Soci Ai will do the rest.\r\n\r\nTrending viral content: Soci Ai will automatically curate trending viral content and posts that are guaranteed to drive traffic to your social media accounts.\r\n\r\nSchedule posts: You can schedule posts for future dates and times, allowing you to plan your social media strategy ahead of time.\r\n\r\nSiri-like voice commands: Soci Ai responds to voice commands, just like Siri. This means you can use it hands-free while on the go.\r\n\r\nMassive following: With Soci Ai, you can drive 10,000s of views, traffic, and massive following to your social media accounts with ease.\r\n\r\nAuto-post, schedule, and automate 12+ major Social media Platforms\r\n\r\nLive Streaming (Pre recorded video) On FB,Youtube,Instagram\r\n\r\nAi Short Video Generator\r\n\r\nAi Viral Content Generator\r\n\r\nAi Image Generator\r\n\r\nIf you\'re ready to take your social media game to the next level, Soci Ai is the tool you need. It\'s fast, efficient, and will save you hours of time and effort.\r\nDon\'t wait any longer to get started. Download Soci Ai today and see the results for yourself.https://warriorplus.com/o2/a/kp8x0p/0\r\nBest regards,',''),(104,1,26,'6','Matt Smith',''),(105,1,26,'2','+44 1438 94 1174',''),(106,1,26,'3','groundupseo2018@gmail.com',''),(107,1,26,'4','Hi!\r\n\r\nI use your website fairly often, but noticed some ways in which your page isn\'t optimised.\r\n\r\nThis is stopping you ranking higher online and in search.\r\n\r\nI\'d like to help and offer a free audit if you\'re interested.\r\n\r\nwww.groundupseo.com/audit-request\r\n\r\nThanks for your time,\r\n\r\nKind regards',''),(108,1,27,'6','Lola Bourget',''),(109,1,27,'2','0650 977 53 76',''),(110,1,27,'3','bourget.lola@gmail.com',''),(111,1,27,'4','Hi juiceelectrical.co.nz,\r\n\r\nAre you having problems with\r\ngoogle traffic, ranking and not\r\nenough profits?\r\n\r\nI am giving you the secret hack\r\nto solve all this:\r\nhttps://earnlivez.net/l/secret\r\n\r\n\r\nThanks,\r\n\r\n\r\nLola',''),(112,1,28,'6','Elwood Goodisson',''),(113,1,28,'2','0372 7868693',''),(114,1,28,'3','elwood.goodisson@outlook.com',''),(115,1,28,'4','Hello juiceelectrical.co.nz,\r\n\r\nGet the 3 step easy secret\r\nto making 15k a month\r\nfrom your site:\r\n\r\nhttps://earnlivez.net/l/4ekf\r\n\r\n\r\nRegards,\r\n\r\n\r\nElwood',''),(116,1,29,'6','Georgina Haynes',''),(117,1,29,'2','0367 3428181',''),(118,1,29,'3','georginahaynes95@gmail.com',''),(119,1,29,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nGeorgina',''),(120,1,30,'6','Charissa Agee',''),(121,1,30,'2','408-210-7838',''),(122,1,30,'3','agee.charissa@msn.com',''),(123,1,30,'4','Hey,\r\nI noticed that you\'re in the digital marketing business and wanted to introduce you to our AI SEO product. It can help your agency generate more SEO clients or create high quality content with AI for your customers. To learn more and get started, visit our website at www.aiseotactics.com/tools\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n2590 Welton Street Ste. 200 Denver, CO 80205\r\nTo opt out of further marketing communications click here: https://www.nomatic.digital/website-opt-out/?customer_domain=juiceelectrical.co.nz',''),(124,1,31,'6','James Roser',''),(125,1,31,'2','61-29-71-42',''),(126,1,31,'3','hunter.sherwood@gmail.com',''),(127,1,31,'4','Have you heard of ChatGPT? This is ChatGPT but on steroids. \r\n\r\nBuilt specifically to help you get organic traffic and pop up on Google\'s First Page.\r\n\r\nClick here and try it for free, visit https://cutt.ly/e4QrKiA\r\n\r\n\r\nThank you for your time!\r\nJames Roser\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(128,1,32,'6','Allan Ricketson',''),(129,1,32,'2','036-2538429',''),(130,1,32,'3','ricketson.allan36@googlemail.com',''),(131,1,32,'4','Hello,\r\n\r\nWe found your website and thought you might be looking for a way to earn passive income without having to put in a lot of time and effort. Our program can teach you how to create bots that automate your sales process and attract clients passively, allowing you to earn money with minimal investment. To learn more and get started, visit our website at https://www.botincomemastery.com/passive\r\nThank you,\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n2590 Welton Street Ste. 200 Denver, CO 80205\r\nTo opt out of further marketing communications click here: https://www.nomatic.digital/website-opt-out/?customer_domain=juiceelectrical.co.nz',''),(132,1,33,'6','Mike Farrell',''),(133,1,33,'2','89467432547',''),(134,1,33,'3','no-replyinquiff@gmail.com',''),(135,1,33,'4','Howdy \r\n \r\nI have just verified your SEO on juiceelectrical.co.nz for its SEO metrics and saw that your website could use a push. \r\n \r\nWe will improve your ranks organically and safely, using state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Farrell',''),(136,1,33,'5','Google',''),(137,1,34,'6','Una Smart',''),(138,1,34,'2','06374 81 37 65',''),(139,1,34,'3','una.smart73@outlook.com',''),(140,1,34,'4','Warm regards,\r\n\r\nAre you tired of struggling with inconsistent leads and expensive advertising campaigns that don\'t deliver results? As a fellow business owner, I understand how crucial it is to keep your sales pipeline full of high-quality prospects.\r\n\r\nThat\'s why I\'d like to introduce you to our pay-per-appointment lead generation agency. We specialize in helping B2B service agencies like yours consistently book 5-20 high-quality meetings every month with our proven cold email system.\r\n\r\nWhy pay-per-appointment is a better client acquisition option?\r\n\r\n- Pay only for results: You only pay for the meetings we book, ensuring you get the results you need.\r\n- High precision targeting: Your offer will only be pitch to key decision makers within your defined ICP.\r\n- High ROI marketing: Our cold email system bring your client acquisition cost down compare to expensive channel like paid ads.\r\n\r\nLearn more about revolutionizing your B2B lead generation process:\r\n===> https://go.manyleads.app/b2bsuccess\r\n\r\n\r\nLooking forward to helping your business grow!\r\n\r\nBest regards,\r\nUna\r\n\r\n<a href=\"https://go.manyleads.app/unsub?d=juiceelectrical.co.nz\">Unsubscribe</a>',''),(141,1,35,'6','Hassie Grimes',''),(142,1,35,'2','09321 27 96 33',''),(143,1,35,'3','vedernikovan@4su.one',''),(144,1,35,'4','I can blast your ad text to millions of website contact forms. One flat rate, never any per click costs. People will read your message just like you\'re reading this one that I just sent through your website contact form now. Drop me a line here for more details : abasaka@goldinbox.net',''),(145,1,36,'6','LinaKi',''),(146,1,36,'2','83684868752',''),(147,1,36,'3','linaKi@olympicent.com',''),(148,1,36,'4','Hеllo!\r\nPerhaрѕ mу mеѕsage is too sрeсіfic.\r\nВut mу оldеr ѕistеr found a wonderful man herе and thеу havе а grеat rеlаtionship, but whаt аbоut me?\r\nΙ am 28 yеаrs old, Linа, from thе Czеch Republiс, knоw Еngliѕh languаgе аlsо\r\nΑnd... better to sаy іt immediatеlу. I am bіseхual. I аm not ϳeаlouѕ оf anоthеr wоmаn... еѕрecially іf we make lоve tоgеthеr.\r\nΑh уеs, Ι cоok vеrу tаstу! аnd I lovе not оnlу сoоk ;))\r\nΙm rеal girl and loоkіng fоr ѕerіоus аnd hot relаtіоnshiр...\r\nАnywау, уоu can fіnd mу рrоfіlе hеrе: http://buchfavabena.tk/usr-2462/',''),(149,1,36,'5','Google',''),(150,1,37,'6','Jane Strehlow',''),(151,1,37,'2','(07) 4082 0031',''),(152,1,37,'3','strehlow.jane@gmail.com',''),(153,1,37,'4','Hi there\r\n\r\nLooking for a stunning, responsive, and custom-built WordPress website? As a Senior Web Designer & Developer, I\'m dedicated to understanding your needs and delivering engaging and impactful WordPress websites that leave lasting impressions.\r\n\r\nWhat to Expect:\r\n\r\nProfessional, Eye-catching, and Responsive WordPress Design\r\nSpeed, Security, and SEO optimized for better performance\r\nRoyalty-Free Images to showcase your brand\r\nOptimized Image Slider, Popup, and Call-to-Action buttons for maximum conversion\r\nSeamless integration with Email Marketing Platforms (Mailchimp, Aweber, etc.)\r\nSocial Media Platforms integration for better reach\r\nEasy to edit Page Builder for hassle-free customization\r\n\r\nWhy Me?\r\n\r\nBuilt thousands of websites with satisfied clients worldwide\r\nUnlimited Revisions until you\'re happy with the final product\r\nAfter-Sale Support for your peace of mind\r\nExpert in WordPress 360° Custom Development for unique projects\r\n\r\nDon\'t take my word for it! Check out my portfolio on Fiverr to see my exceptional work and what my clients have to say about my services.\r\n\r\nLet\'s get started and build a custom WordPress website that\'s tailored to your needs and requirements. Contact me today and let\'s make your dream website a reality!\r\n\r\nCheck out my portfolio on Fiverr: https://go.fiverr.com/visit/?bta=570412&brand=fiverrhybrid&landingPage=https2F%2Fwww.fiverr.com2Fcreate-professional-wordpress-website',''),(154,1,38,'6','Mike Scott',''),(155,1,38,'2','81943637723',''),(156,1,38,'3','no-replyinquiff@gmail.com',''),(157,1,38,'4','Hi there \r\n \r\nJust checked your juiceelectrical.co.nz in MOZ and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed Domain Authority score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Semrush DA is now possible \r\nhttps://www.monkeydigital.co/semrush-da/ \r\n \r\nThanks and regards \r\nMike Scott',''),(158,1,38,'5','Google',''),(159,1,40,'6','Epifania Vanwagenen',''),(160,1,40,'2','(02) 6743 3208',''),(161,1,40,'3','epifania.vanwagenen54@gmail.com',''),(162,1,40,'4','Hlo Business Owner I found your website on 10th page in google due to lack of content on your website.\r\n\r\nhttps://youtube.com/shorts/opfwfcnAmeA?feature=share\r\n\r\nHope this video helps you..',''),(163,1,41,'6','Kacey Birchell',''),(164,1,41,'2','78 343 22 20',''),(165,1,41,'3','kacey.birchell@yahoo.com',''),(166,1,41,'4','Hello Sir/Ma \r\nHope you having a good day.\r\nI Would like to invite potential investors into the multinational growing global company.\r\n\r\nReturn Of Investment related Systems services.The brief about the kind of services is mentioned in the companies catalog and corporate website.\r\nI would appreciate if you would take a look at this invitation opportunity put forward by Technologies board of directors and accept it. \r\nCurrently the company has clients,Investors,partners, distributors, resellers and others in more than 100+ countries across the globe.\r\nAs a company we are looking at growing and becoming one of the major multinational Investment Company in many countries across the globe.\r\nWe see that there is a huge potential and opportunities for the kind of services and products which we offer.\r\nThe company has a global vision for growth. We as a company are open for following options of legal investment options into the company .\r\n\r\nClick here to join our platform today: http:/proven-zenith.com/?ref=roland2210',''),(167,1,42,'6','James Jackson',''),(168,1,42,'2','041 336 67 35',''),(169,1,42,'3','james.jacksons@gmail.com',''),(170,1,42,'4','NEW “AI” Tech Generating Leads For Local Businesses\r\n\r\n\r\nHello,\r\n\r\nTogether these 3 Marketing Veterans have 32 Years of experience in developing cutting-edge Marketing Software.\r\n\r\nTheir latest creation is their best yet!\r\n\r\nIt’s “Artificial Intelligence” Technology similar to that used by HUGE Fortune 500 companies like:\r\n\r\nFacebook\r\n\r\nSpotify\r\n\r\nStarbucks\r\n\r\nStaples\r\n\r\nThe Wall Street Journal\r\n\r\nPizza Hut\r\n\r\nAmtrak\r\n\r\nDisney\r\n\r\nH&M\r\n\r\n& Mastercard\r\n\r\n\r\n======\r\n\r\n\r\nSo what’s this all about?\r\n\r\nCHATBOTS.\r\n\r\nThey’re NEW and rapidly taking over the Internet.\r\n\r\nIf you use Facebook Messenger, it’s very likely you’ve interacted with a Chatbot.\r\n\r\nSometimes it’s actually quite hard to tell whether it’s a Robot or a real human speaking to you!\r\n\r\nIt’s an incredibly powerful way, in 2019, to get more customers WITHOUT spending thousands on Live Chat agent employees.\r\n\r\n\r\n=====\r\n\r\n\r\nHowever..\r\n\r\nMost local businesses can’t afford to develop Chatbots for their own Website and their own brand.\r\n\r\nIt’s highly sophisticated technology and it costs THOUSANDS and THOUSANDS of dollars to develop.\r\n\r\nAllow me to introduce ConversioBot - the Internet’s #1 Chatbot for Business Website Owners.\r\n\r\nIt comes with a simple drag-and-drop builder. You can use it to easily create a branded, custom Bot for your business.\r\n\r\n\r\nWITHOUT any technical knowledge or special skills.\r\n\r\n\r\nIt also comes with a range of DONE-FOR-YOU Bots which are designed to get any business more leads and more customers.\r\n\r\nConversioBot comes with a full Commercial License allowing you to sell Bots to hungry local businesses.\r\n\r\nTheir highly experienced team will show you exactly where there’s HOT demand for Chatbots.\r\n\r\nYou can sell their Done-For-You Bots directly to local businesses.\r\n\r\n\r\nThink about how many businesses out there have a Website and DON’T have a Chatbot.\r\n\r\n\r\nIt’s very common to sell them for $200 to $500 EACH! Sometimes even more!\r\n\r\nWatch this short video to uncover this goldmine >> https://bit.ly/3Mn7RGH\r\n\r\nThe team at ConversioBot will also give you “pitch templates” you can copy and paste.\r\n\r\nThese will do so much of the selling for you.\r\n\r\nThey pitch Chatbots as a no-brainer to the businesses you’re selling them to.\r\n\r\n\r\nSo you DON’T need:\r\n\r\n- any special skills or experience\r\n\r\n- to build your own Bots\r\n\r\n- any prior selling skills\r\n\r\nWatch ConversioBot In Action On This Page >> https://bit.ly/3Mn7RGH\r\n\r\n\r\n=====\r\n\r\n\r\nChatbots are here to stay.\r\n\r\nMark Zuckerburg, the founder of Facebook, has built a 10 Year Plan around them.\r\n\r\nThis is a HOT business opportunity with serious LONG-TERM potential.\r\n\r\nGet in and ahead of the competition before it’s too late >> https://bit.ly/3Mn7RGH\r\n\r\nRegards,\r\n\r\nJames',''),(171,1,43,'6','Waldo Amsel',''),(172,1,43,'2','02.35.23.71.94',''),(173,1,43,'3','amsel.waldo@googlemail.com',''),(174,1,43,'4','Attention juiceelectrical.co.nz owner! \r\n\r\nAre you struggling to rank your\r\nwebsite on the first page of\r\nGoogle? \r\n\r\nOur off-page high-quality links\r\nSEO services can help boost your\r\nwebsite\'s search engine rankings\r\nand drive more traffic to your\r\nsite. \r\n\r\nOur team of SEO experts will\r\nbuild high-quality, relevant\r\nbacklinks from reputable\r\nwebsites, increasing your\r\nwebsite\'s authority and\r\ncredibility. \r\n\r\nDon\'t let your competitors\r\noutrank you any longer. Contact\r\nus today to take your website\'s\r\nSEO to the next level!\r\n\r\nText us at +17373095254 \r\nfor more info.\r\n\r\n\r\nThank you,\r\n\r\n\r\nWaldo',''),(175,1,44,'6','Bill Cavana',''),(176,1,44,'2','033870 65 72',''),(177,1,44,'3','billcavana696@gmail.com',''),(178,1,44,'4','Hello,\r\n\r\nThe world of email marketing is constantly evolving, and it can be challenging to stay ahead of the game. \r\n\r\nGet Response offers advanced features like automation and personalization to help you stand out from the competition. \r\n\r\nSay goodbye to feeling left behind and hello to a modern, effective email marketing strategy by clicking the link to learn more.\r\n\r\n\r\nsavemytimebizhub.com\r\n\r\n\r\nRegards,\r\n\r\nBill\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(179,1,45,'6','Adam Johnson',''),(180,1,45,'2','604-534-9058',''),(181,1,45,'3','adam.johnsons1@gmail.com',''),(182,1,45,'4','Launch Your \"ChatGPT-like\" AI ChatBot \r\n\r\nAI is here to change the world, and people are going crazy over it\r\n\r\nSo the question is, would you like a piece of that pie?\r\n\r\nBrainBox - The World’s First AI App Let You Launch Your Own “ChatGPT-like” AI Chatbot with 50 stunning AI features\r\n\r\nYou can even customize this AI Chatbot with your own domain, branding and style and charge people for using it.\r\n\r\nForget paying huge fees for Content Writers, Programmers, Designers, Translators, Video Editors, SEO Experts, Customer Support, etc\r\n\r\nBrainBox handles all of that for you 100% \r\n\r\n>> Click the link To See The Live Demo & Get Full Access Before Price Increases: https://bit.ly/40E8f8b\r\n\r\n\r\n\r\nTo get access to BrainBox you need just 4 easy steps away \r\n\r\n\r\nStep1: Login to BrainBox Cloud-Based App ( super-easy to navigate dashboard)\r\n\r\n\r\nStep 2: Create- With Just One Click, Create Your Very Own ChatGPT-Like AI Chatbot( this takes just few minutes)\r\n\r\n\r\nStep 3: Now Launch- You’re Ready To Charge Millions Of Hungry Customers For Using Your Very Own AI Chatbot.\r\n\r\n\r\nStep 4: Start Getting Paid by your Customers and Clients \r\n\r\n\r\n\r\nBrainBox comes with over 50 AI features that which includes ;\r\n\r\n\r\nWrite engaging, high quality content for videos, blogs, scripts, emails, newsletters, ebooks literally anything\r\n\r\n\r\nTurn plain text into engaging, professional videos that attract thousands of free hits of traffic\r\n\r\n\r\nGenerate the best AI designs that put 99% of graphic designers to shame, in just seconds\r\n\r\n\r\nDesign salespages, sales funnels, fully functional blogs\r\n\r\n\r\nProofread your writing without paying anything\r\n\r\n\r\nTranslate your writing to over 50 different languages and profit\r\n\r\n\r\nThat’s just a tiny fraction of all the features that BrainBox has to offer…\r\n\r\n\r\nUsing BrainBox will give you full control and cut down your expenses on hiring freelancers that give you low service .\r\n\r\n\r\n>> Get Unlimited Access to BrainBox AI Technology: https://bit.ly/40E8f8b\r\n\r\n\r\nAnd to make this a no-brainer, the first 25 people will get full access to my 100 bonuses.\r\n\r\nPS: If you act now, you will instantly receive [bonuses] worth over $14,659.44... These bonuses is designed specifically to help you get 10x the results, in half the time required\r\n\r\n\r\n>>Click here to secure your access to BrainBox today: https://bit.ly/40E8f8b\r\n\r\n\r\nSincerely,\r\n\r\nAdam',''),(183,1,46,'6','Fease',''),(184,1,46,'2','83947774775',''),(185,1,46,'3','yar853mq@gmail.com',''),(186,1,46,'4','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/2g9bd872',''),(187,1,46,'5','Google',''),(188,1,47,'6','Oskar Axelsson',''),(189,1,47,'2','571-275-4266',''),(190,1,47,'3','oskar.axelssonat@gmail.com',''),(191,1,47,'4','Launch Your \"ChatGPT-like\" AI ChatBot \r\n\r\nAI is here to change the world, and people are going crazy over it\r\n\r\nSo the question is, would you like a piece of that pie?\r\n\r\nBrainBox - The World’s First AI App Let You Launch Your Own “ChatGPT-like” AI Chatbot with 50 stunning AI features\r\n\r\nYou can even customize this AI Chatbot with your own domain, branding and style and charge people for using it.\r\n\r\nForget paying huge fees for Content Writers, Programmers, Designers, Translators, Video Editors, SEO Experts, Customer Support, etc\r\n\r\nBrainBox handles all of that for you 100% \r\n\r\n>> Click the link To See The Live Demo & Get Full Access Before Price Increases: https://bit.ly/40E8f8b\r\n\r\n\r\n\r\nTo get access to BrainBox you need just 4 easy steps away \r\n\r\n\r\nStep1: Login to BrainBox Cloud-Based App ( super-easy to navigate dashboard)\r\n\r\n\r\nStep 2: Create- With Just One Click, Create Your Very Own ChatGPT-Like AI Chatbot( this takes just few minutes)\r\n\r\n\r\nStep 3: Now Launch- You’re Ready To Charge Millions Of Hungry Customers For Using Your Very Own AI Chatbot.\r\n\r\n\r\nStep 4: Start Getting Paid by your Customers and Clients \r\n\r\n\r\n\r\nBrainBox comes with over 50 AI features that which includes ;\r\n\r\n\r\nWrite engaging, high quality content for videos, blogs, scripts, emails, newsletters, ebooks literally anything\r\n\r\n\r\nTurn plain text into engaging, professional videos that attract thousands of free hits of traffic\r\n\r\n\r\nGenerate the best AI designs that put 99% of graphic designers to shame, in just seconds\r\n\r\n\r\nDesign salespages, sales funnels, fully functional blogs\r\n\r\n\r\nProofread your writing without paying anything\r\n\r\n\r\nTranslate your writing to over 50 different languages and profit\r\n\r\n\r\nThat’s just a tiny fraction of all the features that BrainBox has to offer…\r\n\r\n\r\nUsing BrainBox will give you full control and cut down your expenses on hiring freelancers that give you low service .\r\n\r\n\r\n>> Get Unlimited Access to BrainBox AI Technology: https://bit.ly/40E8f8b\r\n\r\n\r\nAnd to make this a no-brainer, the first 25 people will get full access to my 100 bonuses.\r\n\r\nPS: If you act now, you will instantly receive [bonuses] worth over $14,659.44... These bonuses is designed specifically to help you get 10x the results, in half the time required\r\n\r\n\r\n>>Click here to secure your access to BrainBox today: https://bit.ly/40E8f8b\r\n\r\n\r\nSincerely,\r\n\r\nOskar',''),(192,1,48,'6','Ulysses Eyre',''),(193,1,48,'2','0699 985 10 15',''),(194,1,48,'3','ulysses.eyre@gmail.com',''),(195,1,48,'4','Looking for a competitive advantage? \r\n\r\nGet the edge on your competition with HighLevel. \r\n\r\nHighLevel was built to help agencies scale endlessly, automate processes, reduce churn, and efficiently run all of their digital marketing. \r\n\r\nWe’ve met with so many other marketers and know that agencies need a platform that can do it all.\r\n\r\nSign up for a free trial today and see how HighLevel can help you take your business to the next level!\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(196,1,49,'6','Fease',''),(197,1,49,'2','87243384471',''),(198,1,49,'3','h9ajdm7v@gmail.com',''),(199,1,49,'4','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/2zjym5r6',''),(200,1,49,'5','Google',''),(201,1,50,'6','Avery Smeaton',''),(202,1,50,'2','06-66591357',''),(203,1,50,'3','smeaton.avery55@yahoo.com',''),(204,1,50,'4','Are you tired of traditional online gaming platforms that lack transparency, fairness, and security? If so, look no further than BC.game!\r\n\r\nAs a leading blockchain-based gaming platform, BC.game offers a wide variety of games and features that prioritize privacy, anonymity, and responsible gambling. With our platform, you can enjoy a seamless gaming experience without sacrificing the security of your personal information or your financial transactions.\r\n\r\nHere are just a few reasons why BC.game stands out from the competition:\r\n\r\nTransparency: Unlike traditional online casinos, BC.game operates on a blockchain network that provides a completely transparent gaming experience. You can easily verify game results and payouts, ensuring that every game is fair and honest.\r\n\r\n\r\nSecurity: With the power of blockchain technology, your personal information and financial transactions are protected by advanced security measures. Our platform utilizes the latest encryption technology to keep your data safe and secure.\r\n\r\n\r\nAnonymity: BC.game is one of the few gaming platforms that offer complete anonymity. You don\'t need to provide any personal information to start playing. You can simply create an account and start playing right away!\r\n\r\n\r\nWide range of games: Whether you prefer classic casino games like roulette and blackjack or exciting crypto games like crash and hilo, BC.game has something for everyone. Our platform offers a wide variety of games, each with their own unique features and mechanics.\r\n\r\n\r\nSocial integration: BC.game is not just a gaming platform. We also offer social integration features that allow you to connect with other players from around the world. You can create your own profile, follow other players, and even share your gaming experiences on social media!\r\n\r\n\r\nRewards program: We believe in rewarding our loyal players, which is why we offer a comprehensive rewards program. You can earn coins and other rewards simply by playing games on our platform. The more you play, the more rewards you can earn!\r\n\r\n\r\nAt BC.game, we are committed to providing the best possible gaming experience for our players. Whether you are a seasoned player or new to online gaming, our platform offers everything you need to enjoy a safe, secure, and enjoyable gaming experience.\r\n\r\nSo why wait? Sign up for BC.game at https://bc.game/i-a94eqyqb-n/ today and start playing your favorite games in a fair, transparent, and secure environment. We look forward to seeing you on the platform!\r\n\r\n\r\nBest regards,\r\n\r\nThe BC.game team\r\n\r\nhttps://bc.game/i-a94eqyqb-n/',''),(205,1,51,'6','Amparo Fix',''),(206,1,51,'2','0495 26 50 41',''),(207,1,51,'3','amparo.fix50@yahoo.com',''),(208,1,51,'4','Hey juiceelectrical.co.nz owner! \r\n\r\nAre you struggling to rank your\r\nwebsite on the first page of\r\nGoogle? \r\n\r\nGet important info by email:\r\nhttp://bit.ly/40REcKg\r\n\r\nOur off-page high-quality links\r\nSEO services can help boost your\r\nwebsite\'s search engine rankings\r\nand drive more traffic to your\r\nsite. \r\n\r\nGet important info by email:\r\nhttp://bit.ly/40REcKg\r\n\r\nOur team of SEO experts will\r\nbuild high-quality, relevant\r\nbacklinks from reputable\r\nwebsites, increasing your\r\nwebsite\'s authority and\r\ncredibility. \r\n\r\nDon\'t let your competitors\r\noutrank you any longer. Contact\r\nus today to take your website\'s\r\nSEO to the next level!\r\n\r\nGet important info by email:\r\nhttp://bit.ly/40REcKg\r\n\r\nOr Text us at +17373095254 \r\nfor more info.\r\n\r\n\r\nThank you,\r\n\r\n\r\nAmparo',''),(209,1,52,'6','Humberto Santoro',''),(210,1,52,'2','907-787-8121',''),(211,1,52,'3','santoro.humberto@gmail.com',''),(212,1,52,'4','Hi,\r\n\r\nEveryone is using ChatGPT nowadays… \r\nIt’s taking over the internet… \r\n\r\nBut what if there is a way to capitalize on it and make a killing using it? \r\n\r\nImagine if you let a powerful AI app, write, design and sell eBooks for you in any niche… \r\nAll you have to do is pick the niche, and then collect the profit… \r\nEverything in between is done by This New System \r\n\r\nClick here to watch demo >>> https://bit.ly/inkai4\r\n\r\nAnd today, you have the chance to get access to it at an incredibly early-bird discount…\r\n\r\nHere, Let me show you how it works\r\n\r\nStep 1 Login: Login to Ink AI Cloud-Based Dashboard\r\nStep 2 Create: Enter One Keyword And Instantly Generate a Fully Designed eBook, Reports, Flipbook, PDF, Lead Magnet, And More… \r\nStep 3: Syndicate: With One Click, Let AI Syndicate Your eBook Across Millions Of Buyers In Any Niche… \r\n\r\nStep 4: Profit - Yup that’s it.\r\n\r\nI don’t think it gets easier than this… \r\n\r\nIt\'s just 1 Click away:\r\n\r\n► No Writing\r\n► No proofreading \r\n► No designing\r\n► No publishing\r\n► No marketing\r\n\r\nAll of that is done for you\r\n\r\nThe technology behind this all IS rocket science..\r\nBut setting this up is as easy as popping a meal in a microwave…\r\nYou just press a few buttons and kapoosh, you’re done!\r\n\r\nTo begin extracting profit from the 107 million users of ChatGPT, go here to get started while the one-time pricing is still available.\r\n\r\nEnjoy!\r\n\r\nWilliams B\r\nManhatten, OT\r\n46234\r\n======\r\nClick here to unsubscribe',''),(213,1,53,'6','Peter Watson',''),(214,1,53,'2','819-587-7695',''),(215,1,53,'3','peter.watson@gmail.com',''),(216,1,53,'4','AI Turns Any URL, Website, Blog To “eBooks & Flipbooks”\r\n\r\n\r\nInfo products (eBooks, flipbooks, etc) are the most profitable products on the internet… Because they sell like crazy.\r\n\r\n\r\nBut writing a full blown eBook, designing, & formatting is a tough nut to crack… It could take you months to write just 10-20 pages eBook. \r\n\r\n\r\nAnd if you hire a freelancer, you\'ll spend $300 - $500 for just an average boring eBook that sucks\r\n\r\n\r\nBut all that ends today…\r\n\r\n\r\nYou can now Autocreate Ebooks, Flipbooks, reports and any other Info–products and profit from over 20 million readers Private Marketplace without selling using the power of Ink AI\r\n\r\n\r\n>> Click here to Check it out here: https://bit.ly/416Pud6\r\n\r\n\r\nThis is the World\'s First Software that converts any Blog post, Websites, URL, or Content into a Fully Designed eBook Or FlipBook Creator with an in-built Marketplace.\r\n\r\n\r\nAnd Instantly Generates 3D eCovers, 100% Human-like And Unique eBooks with Stunning and eye-grabbing Designs.\r\n\r\n\r\nYou never have to pay for multiple software or platforms with low-quality outcomes.\r\n\r\n\r\nYet, you can Instantly kickstart your way to profiting on Automation on Filpbooks and ebooks with Ink AI that is 100x better than any Flipbook or Ebook creator.\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\n\r\nAll you need is a simple 4 steps to activate this Ink AI;\r\n\r\n\r\nStep 1: Login - Login to Ink AI Cloud-Based Dashboard\r\n\r\n\r\nStep 2: Create - Enter One Keyword And Instantly Generate a Fully Designed eBook, Reports, Flipbook, PDF, Lead Magnet, And More…\r\n\r\n\r\nStep 3: Syndicate - With One Click, Let AI Syndicate Your eBook Across Millions Of Buyers In Any Niche…\r\n\r\n\r\nStep 4: Profit - Yup that’s it. For Each eBook You Create, You Get Automated Sales Like This: https://bit.ly/416Pud6\r\n\r\n\r\nIn fact, if you have been using Amazon to sell your ebook without getting sales, this is a breakthrough to make insane profits from Info-products without spending a dime.\r\n\r\n\r\nAnd the Best Part is,\r\n\r\n\r\nYou can do virtually anything like generating content, Graphics, Designs and so much more and get them all ready in 60secs\r\n\r\n\r\nAnd also Turn your voice or any speech into an Ebook without hiring a Ghostwriter\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\nFor today you have full access to get Ink AI at a ridiculous price today using my Coupon Code (Closes soon)\r\n\r\n\r\nNote: Presently this Software that carries out the heavy tasks for you while you sit -back and make insane profits with Flipbooks has a Limited Entry.\r\n\r\n\r\nAnd was only able to secure 19 slots from the Vendor… which means you need to act fast.\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\nAdditionally, the First 19 people to get access to Ink AI will automatically get amazing and profit-making Bonuses that will make your online business journey as easy as ABC even if you are a Newbie.\r\n\r\n\r\nSincerely, \r\n\r\n\r\nPeter',''),(217,1,54,'6','Eric Miller',''),(218,1,54,'2','077 6854 9176',''),(219,1,54,'3','eric.miller@gmail.com',''),(220,1,54,'4','Launch Your \"ChatGPT-like\" AI ChatBot \r\n\r\nAI is here to change the world, and people are going crazy over it\r\n\r\nSo the question is, would you like a piece of that pie?\r\n\r\nBrainBox - The World’s First AI App Let You Launch Your Own “ChatGPT-like” AI Chatbot with 50 stunning AI features\r\n\r\nYou can even customize this AI Chatbot with your own domain, branding and style and charge people for using it.\r\n\r\nForget paying huge fees for Content Writers, Programmers, Designers, Translators, Video Editors, SEO Experts, Customer Support, etc\r\n\r\nBrainBox handles all of that for you 100% \r\n\r\n>> Click the link To See The Live Demo & Get Full Access Before Price Increases: https://bit.ly/40E8f8b\r\n\r\n\r\n\r\nTo get access to BrainBox you need just 4 easy steps away \r\n\r\n\r\nStep1: Login to BrainBox Cloud-Based App ( super-easy to navigate dashboard)\r\n\r\n\r\nStep 2: Create- With Just One Click, Create Your Very Own ChatGPT-Like AI Chatbot( this takes just few minutes)\r\n\r\n\r\nStep 3: Now Launch- You’re Ready To Charge Millions Of Hungry Customers For Using Your Very Own AI Chatbot.\r\n\r\n\r\nStep 4: Start Getting Paid by your Customers and Clients \r\n\r\n\r\n\r\nBrainBox comes with over 50 AI features that which includes ;\r\n\r\n\r\nWrite engaging, high quality content for videos, blogs, scripts, emails, newsletters, ebooks literally anything\r\n\r\n\r\nTurn plain text into engaging, professional videos that attract thousands of free hits of traffic\r\n\r\n\r\nGenerate the best AI designs that put 99% of graphic designers to shame, in just seconds\r\n\r\n\r\nDesign salespages, sales funnels, fully functional blogs\r\n\r\n\r\nProofread your writing without paying anything\r\n\r\n\r\nTranslate your writing to over 50 different languages and profit\r\n\r\n\r\nThat’s just a tiny fraction of all the features that BrainBox has to offer…\r\n\r\n\r\nUsing BrainBox will give you full control and cut down your expenses on hiring freelancers that give you low service .\r\n\r\n\r\n>> Get Unlimited Access to BrainBox AI Technology: https://bit.ly/40E8f8b\r\n\r\n\r\nAnd to make this a no-brainer, the first 25 people will get full access to my 100 bonuses.\r\n\r\nPS: If you act now, you will instantly receive [bonuses] worth over $14,659.44... These bonuses is designed specifically to help you get 10x the results, in half the time required\r\n\r\n\r\n>>Click here to secure your access to BrainBox today: https://bit.ly/40E8f8b\r\n\r\n\r\nSincerely,\r\n\r\nEric',''),(221,1,55,'6','Jim Marison',''),(222,1,55,'2','01.08.93.44.86',''),(223,1,55,'3','jim.marison@gmail.com',''),(224,1,55,'4','Have you seen this?\r\n\r\n\r\nGlynn just released his latest system...\r\n\r\n\r\nThe AI 30K Copy & Paste Commissions!!\r\n\r\n\r\n=> CLICK HERE FOR INSTANT ACCESS: https://bit.ly/3zDMfhy\r\n\r\n\r\nThis one shows you how\r\n\r\nto make 30K THIS MONTH!\r\n\r\n\r\nI\'ve tested it and it\'s proven to work!!\r\n\r\n\r\nI even bought it myself.\r\n\r\n\r\nOnly costs about 17 bux...\r\n\r\n\r\nPlus, I got the 10 incredible\r\n\r\nbonuses worth thousands!\r\n\r\n\r\nThis is probably the biggest\r\n\r\ndigital deal of the year.\r\n\r\n\r\nCheck it out before it\'s too late...\r\n\r\n\r\n=> Click here to secure your access: https://bit.ly/3zDMfhy\r\n\r\n\r\nBest regards, \r\n\r\n\r\nEric',''),(225,1,56,'6','Glena Wilson',''),(226,1,56,'3','glendawilson031@gmail.com',''),(227,1,56,'4','Hello,\r\n\r\nDo you struggle with creating high-quality videos that capture your audience\'s attention? \r\n\r\nAre you frustrated with the complicated and time-consuming process of video editing? \r\n\r\nWe understand your pain, and that\'s why we created Pictory – the AI-powered video editing tool that simplifies the process for you. \r\n\r\nSay goodbye to the hassle of video editing and hello to effortless, professional-looking videos that elevate your brand.\r\n\r\nClick here to see how Pictory can revolutionize your video marketing game.\r\n\r\nvideoswithbots.com\r\n\r\n\r\nRegards, \r\n\r\nGlenda\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(228,1,57,'6','Jasper AI',''),(229,1,57,'2','078 1647 8515',''),(230,1,57,'3','erdmann.micheal@gmail.com',''),(231,1,57,'4','Hey there,\r\n\r\nAre you struggling to keep up with customer service demands? Jasper AI can help!\r\n\r\nJasper AI uses AI and machine learning to automate customer service interactions. With Jasper, you can provide quick and accurate responses to your customers\' inquiries using chatbots and voice assistants.\r\n\r\n- Increased efficiency\r\n- Improved customer satisfaction\r\n- Cost savings\r\n- Advanced analytics\r\n\r\n\r\nWant to learn more? Check out our landing page at https://bit.ly/3KkH4bl and schedule a demo today. Thank you for considering Jasper AI!\r\n\r\nBest regards,\r\nJasper AI',''),(232,1,58,'6','Jeanette Whitten',''),(233,1,58,'2','850-724-7849',''),(234,1,58,'3','whitten.jeanette@gmail.com',''),(235,1,58,'4','Have you imagined been able to own your own AI Chatbot…\r\n\r\n>> Click here to start https://bit.ly/432KnN0\r\n\r\nChatGPT is the new Big thing now and if you can own your ChatGPT AI it will make you unimaginable profit in your online business\r\n\r\nWhere you can do virtually everything in the online space\r\n\r\nRanging from;\r\n\r\nWriting powerful codes for your websites\r\nWriting attention Grabbing Contents\r\nDesigning Stunning Graphics \r\nDoing data analysis\r\nautomated Replies to customer Chats.\r\nBuilding a Strong SEO Websites thats pulls in Traffic \r\nVideo Editing,Proofreading, Translation,\r\n\r\nAnd even a lot more… Just name any skill.\r\n\r\nYou literally don’t have to pay any freelancer or expert to do any of these things for you.\r\n\r\nCome see what it can do for you.\r\n\r\nhttps://bit.ly/432KnN0\r\n\r\nHave a great day!',''),(236,1,59,'6','Cornelius McGill',''),(237,1,59,'2','0680 213 05 83',''),(238,1,59,'3','mcgill.cornelius@gmail.com',''),(239,1,59,'4','I am intrigued to introduce you to the world\'s first \"AI-Powered\" app; INK AI which turns any VSL, voice, keyword, blog post, or website, into stunning and professional-grade ebooks, reports, pdfs, lead magnets, and flipbooks in any niche whatsoever (be it weight loss, keto, make money, forex, crypto… anything) under 45secs...\r\n\r\nWithout writing a single word, selling, downtime issues, pitching and spamming clients not even the traffic and SEO hassles or rather going bankrupt!\r\n\r\n>> Click on link below to secure your early bird & lifetime access immediately before it goes LIVE! | 10 People (Zero Cost, No Monthly fee)\r\nhttps://shortz.pro/ink-ai\r\n\r\nHere is a sneak peek of the key features of this AI:\r\n\r\n- 50X Crazy than the popular chatGPT\r\n- Multiple customization options, including cover design, color schemes, fonts, and more\r\n- Seamless integration with major email marketing platforms and CRMs\r\n- 24/7 customer support and technical assistance\r\n- Syndicate Your E-book to 50+ Publication For Instant Buyers Traffic\r\n- And many more…\r\n \r\n INK AI is perfect for bloggers, marketers, authors, and anyone looking to create high-quality digital content quickly and easily. \r\n\r\nThe sweetest part is, This AI automatically sells your content in our private marketplace with over 20 million readers bringing forth a maximum and 3-figure commission for you every 24hrs even if you don\'t have prior knowledge about creating or selling ebooks.\r\n\r\nYou can as well reach millions of readers, and grow your audience and revenue like never before.\r\n\r\n>> Click here to secure your earlybird & lifetime access immediately before it goes LIVE! | 10 People (Zero Cost, No Monthly fee!)\r\nhttps://shortz.pro/ink-ai\r\n\r\nSee, This is an incredible opportunity to streamline your content creation and distribution processes and it\'s poised to revolutionize the way we create and sell digital content with no strings attached!.\r\n\r\nRemember, INK AI would be going live Today by 10AM EST. \r\n\r\nNOTE: The first 10 early birds to grab Ink AI would automatically get instant BONUS of “5 Done-For-You” + Profit Accelerator (worth $1,997).\r\n\r\nTry your possible best in order not to miss out of this powerful, undiluted opportunity with lifetime benefits today.\r\n \r\n>> Click here to secure your early bird & lifetime access immediately before it goes LIVE! | 10 People (Zero Cost, No Monthly Fee!)\r\nhttps://shortz.pro/ink-ai',''),(240,1,60,'6','James Roser',''),(241,1,60,'2','06-71653844',''),(242,1,60,'3','luis.hans@gmail.com',''),(243,1,60,'4','Struggling to finish those blog articles?\r\n\r\nStruggling to figure out what to say in your next tiktok video?\r\n\r\nLet A.I. create all your content with a snap of your finger, visit https://cutt.ly/e4QrKiA\r\n\r\nDon\'t miss out on the next wave of A.I.!\r\nJames Roser\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(244,1,61,'6','Steven Moore',''),(245,1,61,'2','06-83732305',''),(246,1,61,'3','stevenmoorebot@gmail.com',''),(247,1,61,'4','Good Day,\r\n\r\nTired of spending hours on content creation? Let AI save you 90% of your time. Try our solution at http://contentbotassistant.com.\r\n\r\n\r\nRegards \r\n\r\nSteven\r\nSenior Consultant\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n---------Opt-Out-------\r\n\r\nif you want to opt out of any further communication then please do so \r\nat https://optoutjangle.com/',''),(248,1,62,'6','datafastproxiespx01',''),(249,1,62,'2','89824638147',''),(250,1,62,'3','datafastpx@gmail.com',''),(251,1,62,'4','DataFast Proxies, Definitive Solution in IPv6 Proxy to Solve CAPTCHA, reCAPTCHA, funCAPTCHA! \r\nIPv6 Proxy for XEvil 4, XEvil 5, XEvil Beta 6, CAPMONSTER 2! \r\n \r\n- High Speed IPv6 Proxy \r\n- Virgin IPv6 proxy \r\n- Anonymous IPv6 proxy \r\n- Rotating IPv6 Proxy (configurable) \r\n- Static IPv6 proxy (configurable) \r\n- 24 Hour IPv6 Proxy \r\n- IPv6 Proxy (Uptime 99.9%) \r\n \r\nDataFast Proxies | Definitive Solution in IPv6 Proxy! \r\nhttps://datafastproxies.com/ \r\n \r\nContact: \r\nhttps://datafastproxies.com/contact/',''),(252,1,62,'5','Google',''),(253,1,63,'6','Adam Sandberg',''),(254,1,63,'2','25-67-53-31',''),(255,1,63,'3','adam.sandberg@gmail.com',''),(256,1,63,'4','Become a remote, beginner-paid emailer!\r\n\r\n$40 per hour, regular work\r\n\r\nHello,\r\n\r\nHave you ever written short email messages before? We need to talk if you have that skill set.\r\n\r\nWe are currently looking for new beginner-paid remote workers who want to start work right away!\r\n\r\nAll 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.\r\n\r\nClick here to complete your application if interested: https://bit.ly/3KKa9i5\r\n\r\nIn 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.\r\n\r\nThe 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.\r\n\r\nInterested? Check out this page before completing an application to get everything important: https://bit.ly/3KKa9i5\r\n\r\nBest of luck!\r\n\r\nAdam',''),(257,1,64,'6','Carl Peterson',''),(258,1,64,'2','516-443-1819',''),(259,1,64,'3','carl.peterson@gmail.com',''),(260,1,64,'4','NEW “AI” Tech Generating Leads For Local Businesses\r\n\r\n\r\nHey,\r\n\r\nTogether these 3 Marketing Veterans have 32 Years of experience in developing cutting-edge Marketing Software.\r\n\r\nTheir latest creation is their best yet!\r\n\r\nIt’s “Artificial Intelligence” Technology similar to that used by HUGE Fortune 500 companies like:\r\n\r\nFacebook\r\n\r\nSpotify\r\n\r\nStarbucks\r\n\r\nStaples\r\n\r\nThe Wall Street Journal\r\n\r\nPizza Hut\r\n\r\nAmtrak\r\n\r\nDisney\r\n\r\nH&M\r\n\r\n& Mastercard\r\n\r\n======\r\n\r\nSo what’s this all about?\r\n\r\nCHATBOTS.\r\n\r\nThey’re NEW and rapidly taking over the Internet.\r\n\r\nIf you use Facebook Messenger, it’s very likely you’ve interacted with a Chatbot.\r\n\r\nSometimes it’s actually quite hard to tell whether it’s a Robot or a real human speaking to you!\r\n\r\nIt’s an incredibly powerful way, in 2019, to get more customers WITHOUT spending thousands on Live Chat agent employees.\r\n\r\n=====\r\n\r\nHowever..\r\n\r\nMost local businesses can’t afford to develop Chatbots for their own Website and their own brand.\r\n\r\nIt’s highly sophisticated technology and it costs THOUSANDS and THOUSANDS of dollars to develop.\r\n\r\nAllow me to introduce ConversioBot - the Internet’s #1 Chatbot for Business Website Owners.\r\n\r\nIt comes with a simple drag-and-drop builder. You can use it to easily create a branded, custom Bot for your business.\r\n\r\nWITHOUT any technical knowledge or special skills.\r\n\r\nIt also comes with a range of DONE-FOR-YOU Bots which are designed to get any business more leads and more customers.\r\n\r\nConversioBot comes with a full Commercial License allowing you to sell Bots to hungry local businesses.\r\n\r\nTheir highly experienced team will show you exactly where there’s HOT demand for Chatbots.\r\n\r\nYou can sell their Done-For-You Bots directly to local businesses.\r\n\r\nThink about how many businesses out there have a Website and DON’T have a Chatbot.\r\n\r\nIt’s very common to sell them for $200 to $500 EACH! Sometimes even more!\r\n\r\nWatch this short video to uncover this goldmine >> https://bit.ly/3Mn7RGH\r\n\r\nThe team at ConversioBot will also give you “pitch templates” you can copy and paste.\r\n\r\nThese will do so much of the selling for you.\r\n\r\nThey pitch Chatbots as a no-brainer to the businesses you’re selling them to.\r\n\r\nSo you DON’T need:\r\n\r\n- any special skills or experience\r\n\r\n- to build your own Bots\r\n\r\n- any prior selling skills\r\n\r\nWatch ConversioBot In Action On This Page >> https://bit.ly/3Mn7RGH\r\n\r\n=====\r\n\r\nChatbots are here to stay.\r\n\r\nMark Zuckerburg, the founder of Facebook, has built a 10 Year Plan around them.\r\n\r\nThis is a HOT business opportunity with serious LONG-TERM potential.\r\n\r\nGet in and ahead of the competition before it’s too late >> https://bit.ly/3Mn7RGH\r\n\r\nRegards,\r\n\r\nCarl',''),(261,1,65,'6','Steve Reid',''),(262,1,65,'2','69 791 19 62',''),(263,1,65,'3','steve.reid@gmail.com',''),(264,1,65,'4','AI Turns Any URL, Website, Blog To “eBooks & Flipbooks”\r\n\r\n\r\nInfo products (eBooks, flipbooks, etc) are the most profitable products on the internet… Because they sell like crazy.\r\n\r\n\r\nBut writing a full blown eBook, designing, & formatting is a tough nut to crack… It could take you months to write just 10-20 pages eBook. \r\n\r\n\r\nAnd if you hire a freelancer, you\'ll spend $300 - $500 for just an average boring eBook that sucks\r\n\r\n\r\nBut all that ends today…\r\n\r\n\r\nYou can now Autocreate Ebooks, Flipbooks, reports and any other Info–products and profit from over 20 million readers Private Marketplace without selling using the power of Ink AI\r\n\r\n\r\n>> Click here to Check it out here: https://bit.ly/416Pud6\r\n\r\n\r\nThis is the World\'s First Software that converts any Blog post, Websites, URL, or Content into a Fully Designed eBook Or FlipBook Creator with an in-built Marketplace.\r\n\r\n\r\nAnd Instantly Generates 3D eCovers, 100% Human-like And Unique eBooks with Stunning and eye-grabbing Designs.\r\n\r\n\r\nYou never have to pay for multiple software or platforms with low-quality outcomes.\r\n\r\n\r\nYet, you can Instantly kickstart your way to profiting on Automation on Filpbooks and ebooks with Ink AI that is 100x better than any Flipbook or Ebook creator.\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\n\r\nAll you need is a simple 4 steps to activate this Ink AI;\r\n\r\n\r\nStep 1: Login - Login to Ink AI Cloud-Based Dashboard\r\n\r\n\r\nStep 2: Create - Enter One Keyword And Instantly Generate a Fully Designed eBook, Reports, Flipbook, PDF, Lead Magnet, And More…\r\n\r\n\r\nStep 3: Syndicate - With One Click, Let AI Syndicate Your eBook Across Millions Of Buyers In Any Niche…\r\n\r\n\r\nStep 4: Profit - Yup that’s it. For Each eBook You Create, You Get Automated Sales Like This: https://bit.ly/416Pud6\r\n\r\n\r\nIn fact, if you have been using Amazon to sell your ebook without getting sales, this is a breakthrough to make insane profits from Info-products without spending a dime.\r\n\r\n\r\nAnd the Best Part is,\r\n\r\n\r\nYou can do virtually anything like generating content, Graphics, Designs and so much more and get them all ready in 60secs\r\n\r\n\r\nAnd also Turn your voice or any speech into an Ebook without hiring a Ghostwriter\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\nFor today you have full access to get Ink AI at a ridiculous price today using my Coupon Code (Closes soon)\r\n\r\n\r\nNote: Presently this Software that carries out the heavy tasks for you while you sit -back and make insane profits with Flipbooks has a Limited Entry.\r\n\r\n\r\nAnd was only able to secure 19 slots from the Vendor… which means you need to act fast.\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\nAdditionally, the First 19 people to get access to Ink AI will automatically get amazing and profit-making Bonuses that will make your online business journey as easy as ABC even if you are a Newbie.\r\n\r\n\r\nSincerely, \r\n\r\n\r\nSteve',''),(265,1,66,'6','Nick Thompson',''),(266,1,66,'2','022 346 61 32',''),(267,1,66,'3','palma.carey@msn.com',''),(268,1,66,'4','Hey there - \r\n\r\nIs your website not converting visitors into customers, no matter how hard you try? It\'s like you\'re speaking a different language to your audience and they\'re just not getting it.\r\n\r\nWell, I\'ve got some good news for you. I\'ve created a short video that shows you how to make your first $1,000 online. That\'s right, I said $1,000. And the best part? It doesn\'t matter if you\'re a complete newbie or a seasoned pro, anyone can do it.\r\n\r\nI\'ll teach you both the classic method (which takes a bit of time) and the new, faster method. Plus, I\'m throwing in some bonus material to help you get started online.\r\n\r\nWhat\'s been holding you back from making money online? Ready to start seeing results?\r\n\r\nYou know the drill → https://bit.ly/yourfirst1Konline\r\n\r\nAll the best, \r\nNick\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe:\r\nhttp://bit.ly/3Zi5Lve',''),(269,1,68,'6','Emanuel Pappas',''),(270,1,68,'2','04903 39 54 47',''),(271,1,68,'3','pappas.emanuel@gmail.com',''),(272,1,68,'4','World’s First 70-In-One AI Based SEO App That Creates Unlimited Backlinks And Best Website Analysis To Ranks Your Pages Instantly On Top Of Google. \r\n\r\n>> https://shortz.pro/backlinks\r\n\r\nBacklinksBuilder Can Create Best Backlinks And Website Analysis To Bring You 5X Traffic & Sales\r\n\r\n- Get 5X more traffic from google with words best backlink creator and website analysis platform \r\n- Use the power of best SEO app to rank your or your client\'s pages on top of google\r\n- Make your life easy with 100s of tech tools which everyone needs in their daily business\r\n- Sell these services to generate maximum profits from platforms like fiverr.\r\n- Use it for unlimited times without paying any extra cost.\r\n\r\nCheck it out, and use it immediately.\r\n>> https://shortz.pro/backlinks\r\n \r\nCheers.',''),(273,1,70,'6','Sam smith',''),(274,1,70,'2','7145007363',''),(275,1,70,'3','sam@seolabpros.com',''),(276,1,70,'4','Hi,\r\n\r\nAre you still in business?\r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\nRegards,\r\nSam Smith\r\n(714) 500-7363',''),(277,1,70,'5','google',''),(278,1,71,'6','Kennedy Russel',''),(279,1,71,'2','03.14.65.33.66',''),(280,1,71,'3','kennedy.russel@gmail.com',''),(281,1,71,'4','Launch Your \"ChatGPT-like\" AI ChatBot \r\n\r\nAI is here to change the world, and people are going crazy over it\r\n\r\nSo the question is, would you like a piece of that pie?\r\n\r\nBrainBox - The World’s First AI App Let You Launch Your Own “ChatGPT-like” AI Chatbot with 50 stunning AI features\r\n\r\nYou can even customize this AI Chatbot with your own domain, branding and style and charge people for using it.\r\n\r\nForget paying huge fees for Content Writers, Programmers, Designers, Translators, Video Editors, SEO Experts, Customer Support, etc\r\n\r\nBrainBox handles all of that for you 100% \r\n\r\n>> Click the link To See The Live Demo & Get Full Access Before Price Increases: https://bit.ly/40E8f8b\r\n\r\n\r\n\r\nTo get access to BrainBox you need just 4 easy steps away \r\n\r\n\r\nStep1: Login to BrainBox Cloud-Based App ( super-easy to navigate dashboard)\r\n\r\n\r\nStep 2: Create- With Just One Click, Create Your Very Own ChatGPT-Like AI Chatbot( this takes just few minutes)\r\n\r\n\r\nStep 3: Now Launch- You’re Ready To Charge Millions Of Hungry Customers For Using Your Very Own AI Chatbot.\r\n\r\n\r\nStep 4: Start Getting Paid by your Customers and Clients \r\n\r\n\r\n\r\nBrainBox comes with over 50 AI features that which includes ;\r\n\r\n\r\nWrite engaging, high quality content for videos, blogs, scripts, emails, newsletters, ebooks literally anything\r\n\r\n\r\nTurn plain text into engaging, professional videos that attract thousands of free hits of traffic\r\n\r\n\r\nGenerate the best AI designs that put 99% of graphic designers to shame, in just seconds\r\n\r\n\r\nDesign salespages, sales funnels, fully functional blogs\r\n\r\n\r\nProofread your writing without paying anything\r\n\r\n\r\nTranslate your writing to over 50 different languages and profit\r\n\r\n\r\nThat’s just a tiny fraction of all the features that BrainBox has to offer…\r\n\r\n\r\nUsing BrainBox will give you full control and cut down your expenses on hiring freelancers that give you low service .\r\n\r\n\r\n>> Get Unlimited Access to BrainBox AI Technology: https://bit.ly/40E8f8b\r\n\r\n\r\nAnd to make this a no-brainer, the first 25 people will get full access to my 100 bonuses.\r\n\r\nPS: If you act now, you will instantly receive [bonuses] worth over $14,659.44... These bonuses is designed specifically to help you get 10x the results, in half the time required\r\n\r\n\r\n>>Click here to secure your access to BrainBox today: https://bit.ly/40E8f8b\r\n\r\n\r\nSincerely,\r\n\r\nOskar',''),(282,1,72,'6','Kellye Tarleton',''),(283,1,72,'2','06-10965035',''),(284,1,72,'3','kellye.tarleton@gmail.com',''),(285,1,72,'4','Are you tired of spending hours creating social media posts and managing multiple platforms? Do you struggle to keep up with the latest viral content trends? Look no further than the ChatGPT4 (OpenAI) powered app for social media automation.\r\nIntroducing…Soci Ai\r\n\r\nChatGPT4 (OpenAI) Powered App for Social Media Automation\r\nAnd Content Creation\r\n\r\n==> Watch Full Demo Here https://warriorplus.com/o2/a/kp8x0p/0\r\nSoci Ai app is designed to make your life easier by automatically posting, scheduling, and curating viral content for your social media platforms like Facebook, TikTok, Instagram, and more. With Siri-like voice commands and a user-friendly interface, you can manage your social media game in less than 60 seconds.\r\nSoci Ai uses advanced AI technology to curate trending viral content, video reels, and posts that are guaranteed to drive traffic, views, and massive following to your social media accounts. With complete autopilot, you can sit back and relax while Soci Ai does all the work for you.\r\n\r\nHere are some of the key features of Soci Ai:\r\n\r\nTrending viral content: Soci Ai automatically curates trending viral content, video reels, and posts for your social media platforms.\r\nSchedule posts: You can easily schedule posts for future dates and times, allowing you to plan ahead and save time.\r\nSiri-like voice commands: With Soci Ai, you can control your social media game with simple voice commands, just like Siri.\r\nAutopilot mode: Soci Ai works on complete autopilot, meaning you can focus on other aspects of your business while Soci Ai drives views, traffic, and massive following to your accounts.\r\nUser-friendly interface: Soci Ai is designed to be user-friendly, even for those who are not tech-savvy.\r\nAuto-post, schedule, and automate 12+ major Social media Platforms\r\nLive Streaming (Pre recorded video) On FB,Youtube,Instagram\r\nAi Short Video Generator\r\nAi Viral Content Generator\r\nAi Image Generator\r\n\r\nIf you\'re ready to boost your social media game and take it to the next level, the ChatGPT4 (OpenAI) powered app is the tool you need. With Soci Ai, you can transform your social media presence and unlock the power of AI in your social media marketing strategy.\r\nDon\'t wait any longer to get started. \r\nGe Access Soci Ai today and see the results for yourself.\r\nClick Here To Get Started https://warriorplus.com/o2/a/kp8x0p/0\r\n\r\nBest regards,',''),(286,1,73,'6','Mike Dutton',''),(287,1,73,'2','86332162124',''),(288,1,73,'3','no-replyinquiff@gmail.com',''),(289,1,73,'4','Greetings \r\n \r\nI have just checked juiceelectrical.co.nz for the current onsite SEO status and saw that your website has a handful of issues which should be addressed. \r\n \r\nNo matter what you are offering or selling, having a poor optimized site, full of bugs and errors, will never help your ranks. \r\n \r\nLet us fix your wordpress site errors today and get your ranks reach their full potential \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/product/wordpress-seo-audit-and-fix-service/ \r\n \r\n \r\nRegards \r\nMike Dutton',''),(290,1,73,'5','Google',''),(291,1,74,'6','Jacki Mackerras',''),(292,1,74,'2','04.58.66.98.78',''),(293,1,74,'3','mackerras.jacki@gmail.com',''),(294,1,74,'4','Hey there juiceelectrical.co.nz owner! \r\n\r\nAre you struggling to rank your\r\nwebsite on the first page of\r\nGoogle? \r\n\r\nhttp://bit.ly/3o0fecR\r\n\r\nOur off-page high-quality links\r\nSEO services can help boost your\r\nwebsite\'s search engine rankings\r\nand drive more traffic to your\r\nsite. \r\n\r\nhttp://bit.ly/3o0fecR\r\n\r\nOur team of SEO experts will\r\nbuild high-quality, relevant\r\nbacklinks from reputable\r\nwebsites, increasing your\r\nwebsite\'s authority and\r\ncredibility. \r\n\r\nDon\'t let your competitors\r\noutrank you any longer. Contact\r\nus today to take your website\'s\r\nSEO to the next level!\r\n\r\nhttp://bit.ly/3o0fecR\r\n\r\nCall or Text us at +17373095254 \r\nfor more info.\r\n\r\n\r\nCheers,\r\n\r\n\r\nJacki',''),(295,1,75,'6','Ute Cedeno',''),(296,1,75,'2','(85) 5565-2509',''),(297,1,75,'3','ute.cedeno@hotmail.com',''),(298,1,75,'4','Hey,\r\nEver wanted to take complete control of your business & enjoy a lavish lifestyle right from the comfort of your home…\r\nWithout burning your midnight lamps, sipping cups of coffee to remain focused & work round-the-clock like a pendulum.\r\nGREAT NEWS…\r\nHere’s how you can get all that & much more.\r\nClick Here To See The Full Scoop- https://warriorplus.com/o2/a/qt25mf/0\r\nPut your hands together for Backlinks Builder-\r\nA fresh, revolutionary & completely unique technology that automates the complete process of driving quality buyer traffic from google to your offers hands down.\r\nHere’re just a few numbers to further substantiate its huge potential -\r\n· Social Media is the network in U.S with more than 800 million monthly active users\r\n· There are over 20 Billion searches on social media every month\r\n· 77% of weekly users regularly discover new brands and products on social media\r\nNothing like this is available at such a low price anywhere...\r\nand I bet these never seen before amazing features at the crazy low one time price will surely make your buying experience a pleasant one.\r\nSo, before all this expires, act soon and get your hands on this masterpiece!\r\nPLUS, you’re getting EXCLUSIVE bonuses only if you act today-\r\n\r\nBONUS #1 - TextMonster\r\nThe Next Gen A.I Based Create Image to Text In Just 2 clicks\r\n\r\nBONUS #2- SociFire\r\n3 In 1 Traffic App Get You Passive Traffic, Leads & Sales In 60 Seconds!\r\n\r\nBONUS #3 - AudioCreator [Premium]\r\nThe Next Gen A.I Based Create Audio to Text In Just 2 clicks\r\n\r\nYou can’t afford to miss out on this one…\r\nGet Backlinks Builder With Cool Bonuses Today- Link Here\r\nTo Your Success,',''),(299,1,76,'6','datafastproxiespx01',''),(300,1,76,'2','84864855994',''),(301,1,76,'3','datafastpx@gmail.com',''),(302,1,76,'4','DataFast Proxies, Definitive Solution in IPv6 Proxy to Solve CAPTCHA, reCAPTCHA, funCAPTCHA! \r\nIPv6 Proxy for XEvil 4, XEvil 5, XEvil Beta 6, CAPMONSTER 2! \r\n \r\n- High Speed IPv6 Proxy \r\n- Virgin IPv6 proxy \r\n- Anonymous IPv6 proxy \r\n- Rotating IPv6 Proxy (configurable) \r\n- Static IPv6 proxy (configurable) \r\n- 24 Hour IPv6 Proxy \r\n- IPv6 Proxy (Uptime 99.9%) \r\n \r\nDataFast Proxies | Definitive Solution in IPv6 Proxy! \r\nhttps://datafastproxies.com/ \r\n \r\nContact: \r\nhttps://datafastproxies.com/contact/',''),(303,1,76,'5','Google',''),(304,1,77,'6','Brown Smith',''),(305,1,77,'2','079 3521 3964',''),(306,1,77,'3','brown.smith@gmail.com',''),(307,1,77,'4','AI Turns Any URL, Website, Blog To “eBooks & Flipbooks”\r\n\r\n\r\nInfo products (eBooks, flipbooks, etc) are the most profitable products on the internet… Because they sell like crazy.\r\n\r\n\r\nBut writing a full blown eBook, designing, & formatting is a tough nut to crack… It could take you months to write just 10-20 pages eBook. \r\n\r\n\r\nAnd if you hire a freelancer, you\'ll spend $300 - $500 for just an average boring eBook that sucks\r\n\r\n\r\nBut all that ends today…\r\n\r\n\r\nYou can now Autocreate Ebooks, Flipbooks, reports and any other Info–products and profit from over 20 million readers Private Marketplace without selling using the power of Ink AI\r\n\r\n\r\n>> Click here to Check it out here: https://bit.ly/416Pud6\r\n\r\n\r\nThis is the World\'s First Software that converts any Blog post, Websites, URL, or Content into a Fully Designed eBook Or FlipBook Creator with an in-built Marketplace.\r\n\r\n\r\nAnd Instantly Generates 3D eCovers, 100% Human-like And Unique eBooks with Stunning and eye-grabbing Designs.\r\n\r\n\r\nYou never have to pay for multiple software or platforms with low-quality outcomes.\r\n\r\n\r\nYet, you can Instantly kickstart your way to profiting on Automation on Filpbooks and ebooks with Ink AI that is 100x better than any Flipbook or Ebook creator.\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\n\r\nAll you need is a simple 4 steps to activate this Ink AI;\r\n\r\n\r\nStep 1: Login - Login to Ink AI Cloud-Based Dashboard\r\n\r\n\r\nStep 2: Create - Enter One Keyword And Instantly Generate a Fully Designed eBook, Reports, Flipbook, PDF, Lead Magnet, And More…\r\n\r\n\r\nStep 3: Syndicate - With One Click, Let AI Syndicate Your eBook Across Millions Of Buyers In Any Niche…\r\n\r\n\r\nStep 4: Profit - Yup that’s it. For Each eBook You Create, You Get Automated Sales Like This: https://bit.ly/416Pud6\r\n\r\n\r\nIn fact, if you have been using Amazon to sell your ebook without getting sales, this is a breakthrough to make insane profits from Info-products without spending a dime.\r\n\r\n\r\nAnd the Best Part is,\r\n\r\n\r\nYou can do virtually anything like generating content, Graphics, Designs and so much more and get them all ready in 60secs\r\n\r\n\r\nAnd also Turn your voice or any speech into an Ebook without hiring a Ghostwriter\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\nFor today you have full access to get Ink AI at a ridiculous price today using my Coupon Code (Closes soon)\r\n\r\n\r\nNote: Presently this Software that carries out the heavy tasks for you while you sit -back and make insane profits with Flipbooks has a Limited Entry.\r\n\r\n\r\nAnd was only able to secure 19 slots from the Vendor… which means you need to act fast.\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\nAdditionally, the First 19 people to get access to Ink AI will automatically get amazing and profit-making Bonuses that will make your online business journey as easy as ABC even if you are a Newbie.\r\n\r\n\r\nSincerely, \r\n\r\n\r\nSteve',''),(308,1,78,'6','Steve Anderson',''),(309,1,78,'2','0498 79 73 29',''),(310,1,78,'3','steve.anderson@gmail.com',''),(311,1,78,'4','Have you seen this?\r\n\r\n\r\nGlynn just released his latest system...\r\n\r\n\r\nThe AI 30K Copy & Paste Commissions!!\r\n\r\n\r\n=> CLICK HERE FOR INSTANT ACCESS: https://bit.ly/3zDMfhy\r\n\r\n\r\nThis one shows you how\r\n\r\nto make 30K THIS MONTH!\r\n\r\n\r\nI\'ve tested it and it\'s proven to work!!\r\n\r\n\r\nI even bought it myself.\r\n\r\n\r\nOnly costs about 17 bux...\r\n\r\n\r\nPlus, I got the 10 incredible\r\n\r\nbonuses worth thousands!\r\n\r\n\r\nThis is probably the biggest\r\n\r\ndigital deal of the year.\r\n\r\n\r\nCheck it out before it\'s too late...\r\n\r\n\r\n=> Click here to secure your access: https://bit.ly/3zDMfhy\r\n\r\n\r\nBest regards, \r\n\r\n\r\nEric',''),(312,1,79,'6','Rachel Leclair',''),(313,1,79,'2','0330 8584415',''),(314,1,79,'3','kandace.leclair@outlook.com',''),(315,1,79,'4','Hi there,\r\n\r\nI\'m Rachel from Sender, a top-notch email marketing platform that can help you achieve incredible results for your business.\r\n\r\nWant to effortlessly connect with your customers and boost your revenue? With Sender, you can quickly and easily build the bridge between your email lists and revenue, while saving time and money.\r\n\r\nOur user-friendly tools make creating and sending engaging emails a breeze. Plus, our platform offers powerful analytics and reporting features to help you make data-driven decisions and optimize your email marketing strategies.\r\n\r\nReady to take your email marketing to the next level? Sign up for a free trial of Sender now and experience the benefits for yourself:\r\n\r\nhttps://www.sender.net?ref=48213 : Sign Up for a Free Trial of Sender\r\n\r\nDon\'t miss out on the opportunity to supercharge your business with Sender\'s powerful email marketing platform. Sign up today and watch your revenue soar!\r\n\r\nBest,\r\nRachel\r\nSender\'s Email Marketing Team',''),(316,1,80,'6','Larry Kavanaugh',''),(317,1,80,'2','0303-5312137',''),(318,1,80,'3','larry.kavanaugh@msn.com',''),(319,1,80,'4','Do you want to make money online, but you’re not sure how? \r\n\r\nDon’t worry, Jasper.AI has got you covered! \r\n\r\nThis revolutionary AI copywriting tool is the best way to create high-quality content in a fraction of the time it takes to write it manually.\r\n\r\nCheck it how to use it and grab a free tiral here: \r\n\r\nhttps://medium.com/@webmoneyrevolution/make-money-online-with-jasper-ai-the-1-ai-copywriting-tool-that-will-change-your-life-forever-f96d64cc2c69',''),(320,1,81,'6','Les Tuck',''),(321,1,81,'2','(03) 5392 5805',''),(322,1,81,'3','les.tuck@outlook.com',''),(323,1,81,'4','Many ‘gooroos’ like to talk about how easy affiliate marketing is …\r\nBut the reality is there a LOT of moving parts to get right.\r\n\r\nIt’s why there are SO MANY products, softwares & tools on the subject.\r\n\r\nAI 30K Copy & Paste Commissions! is brand new & the most complete affiliate solution \r\nI’ve ever seen. Here’s a summary of what’s included:\r\n\r\n- Powerful, push-button bonus page creator. This lets you instantly create \r\nstunning bonus pages that look as good as the ones run by 7 figure \r\nmarketers … with all the bells & whistles including scarcity timers\r\n\r\n- INCLUDED hosting. This is a HUGE money & time saver. Every bonus \r\npage you create is hosted FOR YOU on premium servers\r\n\r\n- Massive vault of 100+ premium bonuses. You’ll never run out of quality giveaways to maximize conversions on your promos\r\n\r\n- 30+ DFY affiliate marketing campaigns. These ‘best of the best’ campaigns have been hand-created by the vendors. Each includes an evergreen, top-converting product; custom bonus page & bonuses; AND full sequence \r\nof promo emails\r\n\r\n- Step by step, industry-leading training on how to make the highest commissions in the shortest time\r\n\r\n- INCLUDED free traffic methods. Perfect for beginners AND seasoned marketers looking for even higher results\r\n\r\n- Multiple powerful bonuses, including live master training with a legendary super affiliate [only available during launch week]\r\n\r\nThere’s proof of results all over the page.\r\n\r\nPersonally, I’m surprised this package includes EVERYTHING for one low price. \r\nThey could easily have split this into multiple programs & sold them separately …\r\n\r\nIf you’ve ever wanted to make more commissions in less time …\r\n\r\n>> Everything you need is right here: \r\nhttps://shortz.pro/ai-30k',''),(324,1,82,'6','Anthony Stow',''),(325,1,82,'3','stow.anthony@gmail.com',''),(326,1,82,'4','I started my journey online back in 2004\r\n\r\nAnd it\'s been a wild journey....\r\n\r\nI\'ve gone from making absolutely no money online to making over 5,000 in a single day!\r\n\r\nWhen I first started out over 19 years ago I never thought this would be possible...\r\n\r\nWhat\'s the most important thing I\'ve learnt in the last 19 years?\r\n\r\nHow to make $100!\r\n\r\nIf I hadn\'t learnt how to make that first $100...\r\n\r\nIt wouldn\'t have been possible to make six figures in one day!\r\n\r\nOnce you know the process, and the system for making $100...\r\n\r\nIt becomes very easy to replicate that again and again...\r\n\r\nThis is exactly what taught in a brand-new course called the 100 formula...\r\n\r\nClick here to check it out :-) http://bit.ly/40Rx4gQ\r\n\r\nThis is how fortunes are made on the Internet...\r\n\r\nNot by making $100....\r\n\r\nBut by knowing how to repeat the process...\r\n\r\nIn other words...\r\n\r\nRepeatability....\r\n\r\nThis is the difference between a hobby and a full-time income...\r\n\r\nUncertain times in 2023\r\n\r\nA lot of people are being laid off\r\n\r\nCompanies are going bankrupt...\r\n\r\nHowever online businesses are flourishing....\r\n\r\nIf you know the process for making $100 per day....\r\n\r\nYou\'ll be ahead of the curve...\r\n\r\nWatch the video below to learn how to make $100 every day...\r\n\r\nClick here to watch the video :-)\r\n\r\nhttp://bit.ly/40Rx4gQ\r\n\r\nall the best,',''),(327,1,83,'6','Rosetta',''),(328,1,83,'2','070-4523951',''),(329,1,83,'3','info@juiceelectrical.co.nz',''),(330,1,83,'4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.shop\r\n\r\nEnjoy,\r\n\r\nRosetta\r\nHome - Juice Electrical',''),(331,1,84,'6','Antonetta Tribolet',''),(332,1,84,'2','078 1389 4861',''),(333,1,84,'3','antonetta.tribolet@hotmail.com',''),(334,1,84,'4','Dear Future RPM Superstar:\r\n\r\nIf you\'re reading this then you likely know there\'s plenty of money to be made online ....\r\n\r\nOf course you have to go through a lot of trial and error to find something that actually works.\r\n\r\nMy guess is if you\'re here this isn\'t your first rodeo.\r\n\r\nMost get rich quick sc... I mean online programs promise to take you by the hand to generate income online and they cost literally THOUSANDS OF DOLLARS to just get your foot in the door...\r\n\r\nThe difference here is I give you the tools training and know how to get results for FREE...\r\n\r\nhttps://shortz.pro/rpm',''),(335,1,85,'6','Julie Durand',''),(336,1,85,'3','contentgenius@ai.com',''),(337,1,85,'4','Hello!\r\n\r\nWe all know that creating compelling content that engages users and drives conversions is a time-consuming and challenging process. That\'s why we\'re excited to introduce you to a new tool - an AI-powered tool that can help you create text and visuals 10 times faster and easier, with patented optimization for SEO and user engagement that can increase your reach by up to 450%.\r\n\r\nThis AI is like sending your content to marketing school and having it retro-engineered to outperform your competitors - in real-time. With this tool, you can triple your engagement, click-through rates, conversion rates, and add hundreds of thousands of organic visitors to your site in just a few weeks.\r\n\r\nOur AI can write video sales letters, scripts, blogs, SEO content, emails, social media threads, e-commerce copies, and more. It can help you find the perfect keywords, with information on potential traffic and paid costs, to easily develop your brand. For advanced users, we also include keyword clustering. With over 130 trained marketing scenarios, you can ask the assistant anything - from social threads to video scripts, emails, and sales frameworks.\r\n\r\nIt is the only generative AI on the market that can tell you if your content is at risk of plagiarism and being detected as AI.\r\n\r\nAre you ready to create compelling content faster and more easily? Click on this link to get started: https://bit.ly/3mrcXHk (you have an exclusive private 10% discount coupon code: 10_TRUSTED_REFERRAL).\r\n\r\nBest regards',''),(338,1,86,'6','Ceasar Axelsson',''),(339,1,86,'2','0371 9419414',''),(340,1,86,'3','ceasar.axelsson@gmail.com',''),(341,1,86,'4','NEW “AI” Tech Generating Leads For Local Businesses\r\n\r\n\r\nHey,\r\n\r\nTogether these 3 Marketing Veterans have 32 Years of experience in developing cutting-edge Marketing Software.\r\n\r\nTheir latest creation is their best yet!\r\n\r\nIt’s “Artificial Intelligence” Technology similar to that used by HUGE Fortune 500 companies like:\r\n\r\nFacebook\r\n\r\nSpotify\r\n\r\nStarbucks\r\n\r\nStaples\r\n\r\nThe Wall Street Journal\r\n\r\nPizza Hut\r\n\r\nAmtrak\r\n\r\nDisney\r\n\r\nH&M\r\n\r\n& Mastercard\r\n\r\n======\r\n\r\nSo what’s this all about?\r\n\r\nCHATBOTS.\r\n\r\nThey’re NEW and rapidly taking over the Internet.\r\n\r\nIf you use Facebook Messenger, it’s very likely you’ve interacted with a Chatbot.\r\n\r\nSometimes it’s actually quite hard to tell whether it’s a Robot or a real human speaking to you!\r\n\r\nIt’s an incredibly powerful way, in 2019, to get more customers WITHOUT spending thousands on Live Chat agent employees.\r\n\r\n=====\r\n\r\nHowever..\r\n\r\nMost local businesses can’t afford to develop Chatbots for their own Website and their own brand.\r\n\r\nIt’s highly sophisticated technology and it costs THOUSANDS and THOUSANDS of dollars to develop.\r\n\r\nAllow me to introduce ConversioBot - the Internet’s #1 Chatbot for Business Website Owners.\r\n\r\nIt comes with a simple drag-and-drop builder. You can use it to easily create a branded, custom Bot for your business.\r\n\r\nWITHOUT any technical knowledge or special skills.\r\n\r\nIt also comes with a range of DONE-FOR-YOU Bots which are designed to get any business more leads and more customers.\r\n\r\nConversioBot comes with a full Commercial License allowing you to sell Bots to hungry local businesses.\r\n\r\nTheir highly experienced team will show you exactly where there’s HOT demand for Chatbots.\r\n\r\nYou can sell their Done-For-You Bots directly to local businesses.\r\n\r\nThink about how many businesses out there have a Website and DON’T have a Chatbot.\r\n\r\nIt’s very common to sell them for $200 to $500 EACH! Sometimes even more!\r\n\r\nWatch this short video to uncover this goldmine >> https://bit.ly/3Mn7RGH\r\n\r\nThe team at ConversioBot will also give you “pitch templates” you can copy and paste.\r\n\r\nThese will do so much of the selling for you.\r\n\r\nThey pitch Chatbots as a no-brainer to the businesses you’re selling them to.\r\n\r\nSo you DON’T need:\r\n\r\n- any special skills or experience\r\n\r\n- to build your own Bots\r\n\r\n- any prior selling skills\r\n\r\nWatch ConversioBot In Action On This Page >> https://bit.ly/3Mn7RGH\r\n\r\n=====\r\n\r\nChatbots are here to stay.\r\n\r\nMark Zuckerburg, the founder of Facebook, has built a 10 Year Plan around them.\r\n\r\nThis is a HOT business opportunity with serious LONG-TERM potential.\r\n\r\nGet in and ahead of the competition before it’s too late >> https://bit.ly/3Mn7RGH\r\n\r\nRegards,\r\n\r\nCarl',''),(342,1,87,'6','Douglas Karlson',''),(343,1,87,'2','(07) 4077 2771',''),(344,1,87,'3','douglas.karlson@gmail.com',''),(345,1,87,'4','ChatGPT Gained over 100 million customers within a month… \r\n\r\n\r\nEven tech giant Google launched their own AI Chatbot called Bard… \r\n\r\n\r\nBecause they understand that AI is the future, and there is no going back… \r\n\r\n\r\nBut here is the thing…\r\n\r\nLaunching your own ChatBot is not an easy task… \r\n\r\n\r\nIt’s a very techy task, and it requires a lot of work and dedication… \r\n\r\n\r\nBut what if there is a way to launch your very own chatGPT-like bot \r\n\r\n\r\nIn less than 30 seconds?\r\n\r\n\r\nSounds good, huh?\r\n\r\n\r\nIt comes equipped with over 50 mind-blowing features that will stun you and your customers \r\n\r\n\r\nWrite, research, and proofread any text you want with 1 click\r\n\r\nGenerate AI-based designs with zero technical skills\r\n\r\nTranslate to over 55 different language \r\n\r\nGenerate Stunning videos without any video editing\r\n\r\nSell access to your chatbot and keep 100% of the profit\r\n\r\n\r\n\r\nIf that sounds like music to your ears… \r\n\r\n\r\nThen you’re in luck, because BrainBox is just launched \r\n\r\n\r\nAnd you can secure your Earlybird discount by clicking here: \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\n\r\nDon\'t miss this opportunity to revolutionize your online business with BrainBox. \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\nTry it now!\r\n\r\nBest regards,\r\n\r\n\r\nScott',''),(346,1,88,'6','datafastproxiespx01',''),(347,1,88,'2','89192955867',''),(348,1,88,'3','datafastpx@gmail.com',''),(349,1,88,'4','DataFast Proxies, Definitive Solution in IPv6 Proxy to Solve CAPTCHA, reCAPTCHA, funCAPTCHA! \r\nIPv6 Proxy for XEvil 4, XEvil 5, XEvil Beta 6, CAPMONSTER 2! \r\n \r\n- High Speed IPv6 Proxy \r\n- Virgin IPv6 proxy \r\n- Anonymous IPv6 proxy \r\n- Rotating IPv6 Proxy (configurable) \r\n- Static IPv6 proxy (configurable) \r\n- 24 Hour IPv6 Proxy \r\n- IPv6 Proxy (Uptime 99.9%) \r\n \r\nDataFast Proxies | Definitive Solution in IPv6 Proxy! \r\nhttps://datafastproxies.com/ \r\n \r\nContact: \r\nhttps://datafastproxies.com/contact/',''),(350,1,88,'5','Google',''),(351,1,89,'6','Eric Jones',''),(352,1,89,'2','555-555-1212',''),(353,1,89,'3','ericjonesmyemail@gmail.com',''),(354,1,89,'4','To the juiceelectrical.co.nz Owner. my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(355,1,90,'6','Jay Abby',''),(356,1,90,'2','3037369129',''),(357,1,90,'3','jay.abby73@gmail.com',''),(358,1,90,'4','Hi, I\'m Jay, a 14-year-experienced SEO copywriter and content writer. I have created top-ranking content for blogs, articles, e-commerce products, and websites for my clients. My fee is USD 50 for 1000 words, and I\'m open to discussing your requirements. \r\nJust send me an email at Jay.Abby73@gmail.com.',''),(359,1,91,'6','Dalton Cosby',''),(360,1,91,'2','0331 9780330',''),(361,1,91,'3','cosby.dalton@gmail.com',''),(362,1,91,'4','Are you tired of creating fresh content for your business?\r\n\r\nProblem solved forever:\r\n\r\nhttps://shortz.pro/gpt-dash\r\n\r\nThis new A.I. dashboard is the perfect solution for busy entrepreneurs and business owners who want to create high-quality content without spending hours (or even minutes) writing or hiring expensive writers.\r\n\r\nA team of professional internet marketers and copywriters have created a user-friendly dashboard that allows you to simply fill in a few blanks, click a button, and let the engine do all the \"work\".\r\n\r\nWith GPTDash, you can easily generate emails, social media updates, sales letters, video scripts, and more. Just enter a few keywords and watch as GPTDash creates engaging and persuasive content that resonates with your target audience.\r\n\r\nThis dashboard is a game-changer and they could be charging an arm and a leg for it. However, they\'re offering a launch special which will be ending soon.\r\n\r\nI recommend checking it out and getting access to this dashboard today:\r\n\r\nhttps://shortz.pro/gpt-dash\r\n\r\nDon\'t let content creation hold you back from achieving your goals. Try GPTDash today and experience the power of automated content creation for yourself.\r\n\r\nBest regards.',''),(363,1,92,'6','Dannie Loyau',''),(364,1,92,'2','519-288-1690',''),(365,1,92,'3','loyau.dannie91@msn.com',''),(366,1,92,'4','Hey,\r\nEver wanted to take complete control of your business & enjoy a lavish lifestyle right from the comfort of your home…\r\nWithout burning your midnight lamps, sipping cups of coffee to remain focused & work round-the-clock like a pendulum.\r\nGREAT NEWS…\r\n\r\nHere’s how you can get all that & much more.\r\nClick Here To See The Full Scoop- Link Here\r\nPut your hands together for Backlinks Builder-\r\n\r\nA fresh, revolutionary & completely unique technology that automates the complete process of driving quality buyer traffic from google to your offers hands down.\r\nHere’re just a few numbers to further substantiate its huge potential -\r\n· Social Media is the network in U.S with more than 800 million monthly active users\r\n· There are over 20 Billion searches on social media every month\r\n· 77% of weekly users regularly discover new brands and products on social media\r\nNothing like this is available at such a low price anywhere...\r\nand I bet these never seen before amazing features at the crazy low one time price will surely make your buying experience a pleasant one.\r\nSo, before all this expires, act soon and get your hands on this masterpiece!\r\n\r\nYou can’t afford to miss out on this one…\r\nGet Backlinks Builder With Cool Bonuses Today-https://warriorplus.com/o2/a/qt25mf/0\r\nTo Your Success,\r\nYour Name Here\r\nP.S- Crazy deals like these seldom come your way. So get your hands on this before it flies away forever.',''),(367,1,93,'6','Raleigh Mawson',''),(368,1,93,'2','420 5651',''),(369,1,93,'3','raleigh.mawson@gmail.com',''),(370,1,93,'4','I will do 400 contextual dofollow white hat high da seo backlinks for google ranking for 5$.\r\n\r\nhttps://bit.ly/seoservice02',''),(371,1,94,'6','Steven Ross',''),(372,1,94,'2','445 0279',''),(373,1,94,'3','nicki.zubia@outlook.com',''),(374,1,94,'4','Hi,\r\n\r\nRanking websites have never been easier. \r\n\r\nLet me explain, why pay money to a company to rank on the first page of google?\r\nWhen you can spend a few bucks and minimum 10 minutes of your precious time and let the AI do the rest.\r\n\r\nWant to take matters into your own hands? \r\nThis AiTool will automate, trending keywords, write pages of content and much MUCH more.\r\n\r\nTrust me, you get what you pay for. It\'s better than ChatGPT!\r\n\r\nAdditionally, when you sign up using my link below, you will get a Special bonus.\r\n\r\nCheck out the link below, visit https://cutt.ly/bonuses\r\n\r\nFollow the link, sign-up to get free newsletters.\r\nIf not, don\'t signup and go straight to the offer.\r\n\r\nThank you for your time!\r\n\r\nBest,\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(375,1,95,'6','Boyle Bruce',''),(376,1,95,'2','071 859 65 32',''),(377,1,95,'3','boyle.bruce@gmail.com',''),(378,1,95,'4','ChatGPT Gained over 100 million customers within a month… \r\n\r\n\r\nEven tech giant Google launched their own AI Chatbot called Bard… \r\n\r\n\r\nBecause they understand that AI is the future, and there is no going back… \r\n\r\n\r\nBut here is the thing…\r\n\r\nLaunching your own ChatBot is not an easy task… \r\n\r\n\r\nIt’s a very techy task, and it requires a lot of work and dedication… \r\n\r\n\r\nBut what if there is a way to launch your very own chatGPT-like bot \r\n\r\n\r\nIn less than 30 seconds?\r\n\r\n\r\nSounds good, huh?\r\n\r\n\r\nIt comes equipped with over 50 mind-blowing features that will stun you and your customers \r\n\r\n\r\nWrite, research, and proofread any text you want with 1 click\r\n\r\nGenerate AI-based designs with zero technical skills\r\n\r\nTranslate to over 55 different language \r\n\r\nGenerate Stunning videos without any video editing\r\n\r\nSell access to your chatbot and keep 100% of the profit\r\n\r\n\r\n\r\nIf that sounds like music to your ears… \r\n\r\n\r\nThen you’re in luck, because BrainBox is just launched \r\n\r\n\r\nAnd you can secure your Earlybird discount by clicking here: \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\n\r\nDon\'t miss this opportunity to revolutionize your online business with BrainBox. \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\nTry it now!\r\n\r\nBest regards,\r\n\r\n\r\nScott',''),(379,1,96,'6','David Hunter',''),(380,1,96,'2','(94) 7572-3899',''),(381,1,96,'3','david.hunter@gmail.com',''),(382,1,96,'4','Have you seen this?\r\n\r\n\r\nGlynn just released his latest system...\r\n\r\n\r\nThe AI 30K Copy & Paste Commissions!!\r\n\r\n\r\n=> CLICK HERE FOR INSTANT ACCESS: https://bit.ly/3zDMfhy\r\n\r\n\r\nThis one shows you how\r\n\r\nto make 30K THIS MONTH!\r\n\r\n\r\nI\'ve tested it and it\'s proven to work!!\r\n\r\n\r\nI even bought it myself.\r\n\r\n\r\nOnly costs about 17 bux...\r\n\r\n\r\nPlus, I got the 10 incredible\r\n\r\nbonuses worth thousands!\r\n\r\n\r\nThis is probably the biggest\r\n\r\ndigital deal of the year.\r\n\r\n\r\nCheck it out before it\'s too late...\r\n\r\n\r\n=> Click here to secure your access: https://bit.ly/3zDMfhy\r\n\r\n\r\nBest regards, \r\n\r\n\r\nEric',''),(383,1,97,'6','Clark Walker',''),(384,1,97,'2','044 455 73 89',''),(385,1,97,'3','clark.walker@gmail.com',''),(386,1,97,'4','AI Turns Any URL, Website, Blog To “eBooks & Flipbooks”\r\n\r\n\r\nInfo products (eBooks, flipbooks, etc) are the most profitable products on the internet… Because they sell like crazy.\r\n\r\n\r\nBut writing a full blown eBook, designing, & formatting is a tough nut to crack… It could take you months to write just 10-20 pages eBook. \r\n\r\n\r\nAnd if you hire a freelancer, you\'ll spend $300 - $500 for just an average boring eBook that sucks\r\n\r\n\r\nBut all that ends today…\r\n\r\n\r\nYou can now Autocreate Ebooks, Flipbooks, reports and any other Info–products and profit from over 20 million readers Private Marketplace without selling using the power of Ink AI\r\n\r\n\r\n>> Click here to Check it out here: https://bit.ly/416Pud6\r\n\r\n\r\nThis is the World\'s First Software that converts any Blog post, Websites, URL, or Content into a Fully Designed eBook Or FlipBook Creator with an in-built Marketplace.\r\n\r\n\r\nAnd Instantly Generates 3D eCovers, 100% Human-like And Unique eBooks with Stunning and eye-grabbing Designs.\r\n\r\n\r\nYou never have to pay for multiple software or platforms with low-quality outcomes.\r\n\r\n\r\nYet, you can Instantly kickstart your way to profiting on Automation on Filpbooks and ebooks with Ink AI that is 100x better than any Flipbook or Ebook creator.\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\n\r\nAll you need is a simple 4 steps to activate this Ink AI;\r\n\r\n\r\nStep 1: Login - Login to Ink AI Cloud-Based Dashboard\r\n\r\n\r\nStep 2: Create - Enter One Keyword And Instantly Generate a Fully Designed eBook, Reports, Flipbook, PDF, Lead Magnet, And More…\r\n\r\n\r\nStep 3: Syndicate - With One Click, Let AI Syndicate Your eBook Across Millions Of Buyers In Any Niche…\r\n\r\n\r\nStep 4: Profit - Yup that’s it. For Each eBook You Create, You Get Automated Sales Like This: https://bit.ly/416Pud6\r\n\r\n\r\nIn fact, if you have been using Amazon to sell your ebook without getting sales, this is a breakthrough to make insane profits from Info-products without spending a dime.\r\n\r\n\r\nAnd the Best Part is,\r\n\r\n\r\nYou can do virtually anything like generating content, Graphics, Designs and so much more and get them all ready in 60secs\r\n\r\n\r\nAnd also Turn your voice or any speech into an Ebook without hiring a Ghostwriter\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\nFor today you have full access to get Ink AI at a ridiculous price today using my Coupon Code (Closes soon)\r\n\r\n\r\nNote: Presently this Software that carries out the heavy tasks for you while you sit -back and make insane profits with Flipbooks has a Limited Entry.\r\n\r\n\r\nAnd was only able to secure 19 slots from the Vendor… which means you need to act fast.\r\n\r\n\r\n>> Click here to get Profit from Ebooks, and Flipooks with an In-Built Marketplace of over 20 million: https://bit.ly/416Pud6\r\n\r\n\r\nAdditionally, the First 19 people to get access to Ink AI will automatically get amazing and profit-making Bonuses that will make your online business journey as easy as ABC even if you are a Newbie.\r\n\r\n\r\nSincerely, \r\n\r\n\r\nSteve',''),(387,1,98,'6','Richard Cole',''),(388,1,98,'2','061 963 10 85',''),(389,1,98,'3','richard@ai-hustle.com',''),(390,1,98,'4','Hey,\r\n\r\nIf you want to create better and quicker content than your competitors for free, than check the link below.\r\n\r\nGo to www.bestcopytool.com and use the power of AI to your advantage before the others know about it.\r\n\r\nBest,\r\n\r\nRichard\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you do not want to receive any more marketing emails please send us an email at info@ai-hustle.com and include your URL',''),(391,1,99,'6','Eric Jones',''),(392,1,99,'2','555-555-1212',''),(393,1,99,'3','ericjonesmyemail@gmail.com',''),(394,1,99,'4','To the juiceelectrical.co.nz Owner! my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(395,1,100,'6','Emery Tovell',''),(396,1,100,'2','512-812-4683',''),(397,1,100,'3','emery.tovell@hotmail.com',''),(398,1,100,'4','Hi,\r\n\r\nAre you tired of spending hours every day on social media, trying to keep up with your followers and post engaging content? Do you wish there was a way to automate your social media accounts so you could focus on other things?\r\n\r\nIf so, then you need to check out SociAi! SociAi is the world\'s first fully ChatGPT4-driven app that automates social media accounts by creating and posting trending viral content such as videos, images, reels, and much more.\r\n\r\nSociAi uses artificial intelligence to create high-quality content that is sure to engage your followers. It also automatically schedules your posts so you don\'t have to worry about it.\r\n\r\nIn addition, SociAi tracks your analytics so you can see how your posts are performing. This way, you can make sure you\'re getting the most out of your social media efforts.\r\n\r\nSociAi is the perfect solution for busy entrepreneurs who want to grow their social media presence without spending hours every day on it.\r\n\r\nHere are some additional details about Soci Ai:\r\n\r\nSoci Ai uses the power of OpenAI\'s ChatGPT4 language model to create and post trending viral content, video reels, and posts.\r\nSoci Ai is perfect for anyone who wants to save time, get more views, and drive traffic to their social media accounts.\r\nSoci Ai is easy to use and can be set up in minutes.\r\nSoci Ai is affordable and offers a free trial.\r\n\r\nTry SociAi today and see the results for yourself! https://warriorplus.com/o2/a/kp8x0p/0\r\n\r\nSincerely,\r\n\r\nP.S. If you act now, you can get a special discount on SociAi. Just use the code \"EARLYBIRD\" at checkout.',''),(399,1,101,'6','Isabell Gardener',''),(400,1,101,'3','isabell.gardener@msn.com',''),(401,1,101,'4','How would you like to make up to 5,500 a day just by\r\ntapping an app on your phone?\r\n\r\nThis is not some pipedream, this is for REAL!\r\n\r\nSee how normal people like you are making a fortune \r\nfrom this revolutionary new app!\r\n\r\n>>> https://shortz.pro/smb\r\nPlaces are going fast, so check it out NOW!\r\n\r\nProfit now, thank me later ;)',''),(402,1,102,'6','Eric Jones',''),(403,1,102,'2','555-555-1212',''),(404,1,102,'3','ericjonesmyemail@gmail.com',''),(405,1,102,'4','To the juiceelectrical.co.nz Webmaster. \r\n\r\nEric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(406,1,103,'6','Tim Lee',''),(407,1,103,'2','256-792-2633',''),(408,1,103,'3','clicktraffictoday@gmail.com',''),(409,1,103,'4','Hey it\'s Tim,\r\nWhile doing SEO audits I noticed a few things wrong with your website.\r\nLet\'s chat sometime here\'s my number, call or text me when you have a second : 256-792-2633',''),(410,1,104,'6','Christiane Lamarr',''),(411,1,104,'2','0362 1399560',''),(412,1,104,'3','lamarr.christiane31@gmail.com',''),(413,1,104,'4','I will do 400 contextual dofollow white hat high da seo backlinks for google ranking for 5$.\r\n\r\nhttps://bit.ly/seoservice02',''),(414,1,105,'6','Eric Jones',''),(415,1,105,'2','555-555-1212',''),(416,1,105,'3','ericjonesmyemail@gmail.com',''),(417,1,105,'4','Hello juiceelectrical.co.nz Owner.\r\n\r\nEric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(418,1,106,'6','Lucille Wardill',''),(419,1,106,'2','905-322-8149',''),(420,1,106,'3','lucille.wardill@outlook.com',''),(421,1,106,'4','Hello,\r\n\r\nAre you looking to enhance your online presence and attract more customers? \r\n\r\nOur website remodeling services can help you achieve just that. \r\n\r\nOur team of experts specializes in website redesigning, optimization, and maintenance to create a\r\n\r\nwebsite that is both visually appealing and functional.\r\n\r\n\r\nOur services are available at a monthly subscription of $250, \r\n\r\nwhich includes website remodeling, redesigning, optimization (SEO), \r\n\r\nand ongoing maintenance (monthly report). \r\n\r\nThis ensures that your website stays up-to-date and optimized for search engines, \r\n\r\nand you can have peace of mind knowing that your website is taken care of.\r\n\r\n\r\nWe understand the importance of having a strong online presence, \r\n\r\nwhich is why we offer a free website report to help you identify areas for improvement.\r\n\r\nIf you\'re interested in our services or have any questions, \r\n\r\nplease don\'t hesitate to contact us at thewebsiterenovator@gmail.com or give us a call/text @ 404-458-9963.\r\n \r\nand be sure to check out our mock up design here: https://tinyurl.com/msj93h4k\r\n\r\n\r\nThank you for considering our website remodeling services. \r\n\r\nWe look forward to hearing from you soon.\r\n\r\n\r\nBest regards,\r\nTucker M\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n6201 Memorial Dr\r\n#C\r\nStone Mountain, GA 30083\r\n\r\nunsubscribe: tinyurl.com/5cc4wepr',''),(422,1,107,'6','Robertphync',''),(423,1,107,'2','82617419223',''),(424,1,107,'3','zelatcol@gmail.com',''),(425,1,107,'4','Hej, jeg ønskede at kende din pris.',''),(426,1,107,'5','Google',''),(427,1,108,'6','Eric Jones',''),(428,1,108,'2','555-555-1212',''),(429,1,108,'3','ericjonesmyemail@gmail.com',''),(430,1,108,'4','Hello juiceelectrical.co.nz Webmaster. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(431,1,109,'6','Dominic Hawes',''),(432,1,109,'3','dominic.hawes@outlook.com',''),(433,1,109,'4','Are you tired of spending hours creating social media posts and managing multiple platforms? Do you struggle to keep up with the latest viral content trends? Look no further than the ChatGPT4 (OpenAI) powered app for social media automation.\r\nIntroducing…Soci Ai\r\n\r\nChatGPT4 (OpenAI) Powered App for Social Media Automation\r\nAnd Content Creation\r\n\r\n==> Watch Full Demo Here https://warriorplus.com/o2/a/kp8x0p/0\r\n\r\nSoci Ai app is designed to make your life easier by automatically posting, scheduling, and curating viral content for your social media platforms like Facebook, TikTok, Instagram, and more. With Siri-like voice commands and a user-friendly interface, you can manage your social media game in less than 60 seconds.\r\nSoci Ai uses advanced AI technology to curate trending viral content, video reels, and posts that are guaranteed to drive traffic, views, and massive following to your social media accounts. With complete autopilot, you can sit back and relax while Soci Ai does all the work for you.\r\nHere are some of the key features of Soci Ai:\r\n\r\nTrending viral content: Soci Ai automatically curates trending viral content, video reels, and posts for your social media platforms.\r\nSchedule posts: You can easily schedule posts for future dates and times, allowing you to plan ahead and save time.\r\nSiri-like voice commands: With Soci Ai, you can control your social media game with simple voice commands, just like Siri.\r\nAutopilot mode: Soci Ai works on complete autopilot, meaning you can focus on other aspects of your business while Soci Ai drives views, traffic, and massive following to your accounts.\r\nUser-friendly interface: Soci Ai is designed to be user-friendly, even for those who are not tech-savvy.\r\nAuto-post, schedule, and automate 12+ major Social media Platforms\r\nLive Streaming (Pre recorded video) On FB,Youtube,Instagram\r\nAi Short Video Generator\r\nAi Viral Content Generator\r\nAi Image Generator\r\n\r\nIf you\'re ready to boost your social media game and take it to the next level, the ChatGPT4 (OpenAI) powered app is the tool you need. With Soci Ai, you can transform your social media presence and unlock the power of AI in your social media marketing strategy.\r\nDon\'t wait any longer to get started. \r\nGe Access Soci Ai today https://warriorplus.com/o2/a/kp8x0p/0 and see the results for yourself.\r\n\r\nBest regards,',''),(434,1,110,'6','Glena Wilson',''),(435,1,110,'2','702-437-8737',''),(436,1,110,'3','glendawilson031@gmail.com',''),(437,1,110,'4','Hello,\r\n\r\nDo you struggle with creating high-quality videos that capture your audience\'s attention? \r\n\r\nAre you frustrated with the complicated and time-consuming process of video editing? \r\n\r\nWe understand your pain, and that\'s why we created Pictory – the AI-powered video editing tool that simplifies the process for you. \r\n\r\nSay goodbye to the hassle of video editing and hello to effortless, professional-looking videos that elevate your brand.\r\n\r\nClick here to see how Pictory can revolutionize your video marketing game.\r\n\r\nvideoswithbots.com\r\n\r\n\r\nRegards, \r\n\r\nGlenda\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(438,1,111,'6','Eric Jones',''),(439,1,111,'2','555-555-1212',''),(440,1,111,'3','ericjonesmyemail@gmail.com',''),(441,1,111,'4','To the juiceelectrical.co.nz Admin. this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(442,1,112,'6','Franklin Fallon',''),(443,1,112,'2','061 818 99 50',''),(444,1,112,'3','franklin.fallon@yahoo.com',''),(445,1,112,'4','Hey,\r\nEver wanted to take complete control of your business & enjoy a lavish lifestyle right from the comfort of your home…\r\nWithout burning your midnight lamps, sipping cups of coffee to remain focused & work round-the-clock like a pendulum.\r\nGREAT NEWS…\r\nHere’s how you can get all that & much more.\r\nClick Here To See The Full Scoop- https://warriorplus.com/o2/a/qt25mf/0\r\nPut your hands together for Backlinks Builder-\r\nA fresh, revolutionary & completely unique technology that automates the complete process of driving quality buyer traffic from google to your offers hands down.\r\nHere’re just a few numbers to further substantiate its huge potential -\r\n· Social Media is the network in U.S with more than 800 million monthly active users\r\n· There are over 20 Billion searches on social media every month\r\n· 77% of weekly users regularly discover new brands and products on social media\r\nNothing like this is available at such a low price anywhere...\r\nand I bet these never seen before amazing features at the crazy low one time price will surely make your buying experience a pleasant one.\r\nSo, before all this expires, act soon and get your hands on this masterpiece!\r\n\r\nYou can’t afford to miss out on this one…\r\nGet Backlinks Builder With Cool Bonuses Today- https://warriorplus.com/o2/a/qt25mf/0\r\nTo Your Success,\r\nYour Name Here\r\nP.S- Crazy deals like these seldom come your way. So get your hands on this before it flies away forever.',''),(446,1,113,'6','Tucker Broadus',''),(447,1,113,'2','0347 2139801',''),(448,1,113,'3','martianonlinemarketing1@gmail.com',''),(449,1,113,'4','Hey it\'s Tucker,\r\n\r\nI noticed your website and it looks great!\r\n\r\n However, with the constantly changing digital landscape,\r\n\r\n it\'s important to keep your website up-to-date to attract new customers and keep them engaged.\r\n\r\nIf you\'re interested in updating your website, I\'d be happy to discuss the process with you. \r\n\r\nYou can reach me at (404) 458-9963.\r\n\r\n Let\'s work together to make sure your website is performing at its best.\r\n\r\nBest regards,\r\nTucker M\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n6201 Memorial Dr\r\n#C\r\nStone Mountain, GA 30083\r\n\r\nunsubscribe: tinyurl.com/5cc4wepr',''),(450,1,114,'6','Colin Asbury',''),(451,1,114,'2','(02) 4065 3409',''),(452,1,114,'3','seosubmitter@mail.com',''),(453,1,114,'4','You are looking for Free Backlinks for juiceelectrical.co.nz \r\n\r\nWe offering you a free trial to try out our link-building service.\r\n\r\nThis can be used to link out to your website, inner page, google map, video, to any link you want to help power up and get more relevance too.\r\n\r\nWe want to prove to you that our backlinks work and so we’re willing to prove it to you risk-free.\r\n\r\nSubmit your details >> https://zeep.ly/sTQKV\r\n\r\nThanks, \r\nAsbury\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAustralia, NSW, Yarragrin, 2842, 54 Forrest Road\r\n \r\nTo stop any further communication through your website form, Please reply with subject: Unsubscribe juiceelectrical.co.nz',''),(454,1,115,'6','Park',''),(455,1,115,'3','sima.thomson@hotmail.com',''),(456,1,115,'4','Dear Client,\r\n\r\nI hope this email finds you well. I wanted to introduce you to a powerful platform called LeadsLeap that can help your business generate high-quality leads and increase your sales.\r\n\r\nLeadsLeap https://bit.ly/41vb1N2 offers a variety of tools and resources that are designed to help online marketers like you succeed. With their advanced tracking and analytics capabilities, you can easily monitor your campaigns and measure their success.\r\n\r\nOne of the most impressive features of LeadsLeap https://bit.ly/41vb1N2 is their Traffic Exchange program. This program allows you to get exposure for your website to a large audience of potential customers. You can also earn credits by visiting other websites in the network, which can then be used to promote your own site.\r\n\r\nIn addition, LeadsLeap offers a variety of other tools and resources to help you build your email list and connect with potential customers. You can create landing pages, set up autoresponders, and even track your email campaigns to see which ones are the most effective.\r\n\r\nLeadsLeap is a powerful platform that can help your business get the leads and sales that you need to grow and succeed. If you\'re interested in learning more about how LeadsLeap can benefit your business, I encourage you to check out their website and sign up for free.\r\n\r\nSign up here: https://bit.ly/41vb1N2 \r\n\r\nBest regards,\r\nGregory Park',''),(457,1,116,'6','Verlene Thyer',''),(458,1,116,'2','078 2091 9524',''),(459,1,116,'3','verlene.thyer96@hotmail.com',''),(460,1,116,'4','Hi,\r\n\r\nAs the world is again going into Recession.\r\n\r\nMost of the people are already investing some % of money into Crypto.\r\n\r\nAs Crypto market is already down since last time high and now preparing to spike up in near years.\r\n\r\nIt\'s very wise to invest some money (i don\'t recommend to invest your life savings) into some top coins with good future.\r\n\r\nIf we analyse the market we can see BTC, ETH, ADA etc. to spike up in next 2-4 years as we read their History.\r\n\r\nBy the way it\'s FREE to create your wallet (where you can hold, buy, sell, exchange any crypto currency) \r\n\r\nGet Started here >>> https://bit.ly/cryptowalletreg\r\n\r\nIt\'s wise to open a Free wallet on World\'s No 1 Crypto Exchange, who knows when we gonna need it...\r\n\r\nRegards\r\n\r\nBiplov K\r\n99 Manhatten Road, TX\r\n87845',''),(461,1,117,'6','Vince Kunze',''),(462,1,117,'2','53 844 13 48',''),(463,1,117,'3','kunze.vince78@msn.com',''),(464,1,117,'4','Hey juiceelectrical.co.nz owner! \r\n\r\nAre you struggling to rank your\r\nwebsite on the first page of\r\nGoogle? \r\n\r\nhttp://bit.ly/3o0fecR\r\n\r\nOur off-page high-quality links\r\nSEO services can help boost your\r\nwebsite\'s search engine rankings\r\nand drive more traffic to your\r\nsite. \r\n\r\nhttp://bit.ly/3o0fecR\r\n\r\nOur team of SEO experts will\r\nbuild high-quality, relevant\r\nbacklinks from reputable\r\nwebsites, increasing your\r\nwebsite\'s authority and\r\ncredibility. \r\n\r\nDon\'t let your competitors\r\noutrank you any longer. Contact\r\nus today to take your website\'s\r\nSEO to the next level!\r\n\r\nhttp://bit.ly/3o0fecR\r\n\r\nCall or Text us at +17373095254 \r\nfor more info.\r\n\r\n\r\nThank you,\r\n\r\n\r\nVince',''),(465,1,118,'6','Milton Puckett',''),(466,1,118,'2','(08) 9023 8716',''),(467,1,118,'3','milton.puckett@googlemail.com',''),(468,1,118,'4','TikTok Insiders is the World’s Leading TikTok Marketing Community.\r\n\r\nEvery day marketers around the world are seeing TikTok ads become their most profitable ad channel - even over Facebook and YouTube.\r\n\r\nWhen you become an Insider, you get everything you need to go from launch to scaling while staying up-to-date on the latest tactics throughout the year - all in one value-packed, cutting-edge program.\r\n\r\nFind Out More:\r\nhttps://shortz.pro/tiktok',''),(469,1,119,'6','Eric Jones',''),(470,1,119,'2','555-555-1212',''),(471,1,119,'3','ericjonesmyemail@gmail.com',''),(472,1,119,'4','Hello juiceelectrical.co.nz Webmaster!\r\n\r\nMy name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(473,1,120,'6','Joellen',''),(474,1,120,'2','04.58.28.57.84',''),(475,1,120,'3','joellen@juiceelectrical.co.nz',''),(476,1,120,'4','New Multifunction Anti-theft Waterproof Sling Bag\r\n\r\nThe best ever SUPER Sling Bag: Drop-proof/Anti-theft/Scratch-resistant/USB Charging\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashiondaily.shop\r\n\r\nKind Regards, \r\n\r\nJoellen\r\nHome - Juice Electrical',''),(477,1,121,'6','Jacqueline Ruyle',''),(478,1,121,'2','070 6338 7731',''),(479,1,121,'3','jacqueline.ruyle79@gmail.com',''),(480,1,121,'4','Hi there!Are you tired of spending countless hours creating content for your business? What if I told you that you can have high-quality content generated for you in just seconds?\r\n\r\nIntroducing Jasper - the \"easy button\" for producing marketing copy and content like ads, landing pages, emails, and more. With Jasper, you can generate content in 29 languages and get 10,000 words written by AI for free.\r\n\r\nDon\'t just take my word for it. I was skeptical too until I saw it in action. Jasper wrote 5 ads for my business in just 5 seconds, and they were amazing! Now I\'m hooked and using Jasper for all my content needs.\r\n\r\nJoin me and try Jasper for free today link: tryjasper.co. Say goodbye to content creation struggles and hello to effortless content generation with Jasper.\r\n\r\nBest regards,\r\n\r\nJacqueline Ruyle',''),(481,1,122,'6','Robertphync',''),(482,1,122,'2','86788577594',''),(483,1,122,'3','zelatcol@gmail.com',''),(484,1,122,'4','Hi, roeddwn i eisiau gwybod eich pris.',''),(485,1,122,'5','Google',''),(486,1,123,'6','Steve Collins',''),(487,1,123,'2','09286 49 43 90',''),(488,1,123,'3','stevecollins@gmail.com',''),(489,1,123,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://www.theaisocial.com/writeappreviews\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nBest regards,\r\nSteve from AISocial',''),(490,1,124,'6','Cesar Salisbury',''),(491,1,124,'2','0315 7747454',''),(492,1,124,'3','salisbury.cesar48@gmail.com',''),(493,1,124,'4','I will convert website to webview based pro mobile apps android and IOS for 20$.\r\n\r\ncancel anytime if you dont like it.\r\n\r\nlink : https://bit.ly/mobileapp-creation-service',''),(494,1,125,'6','Sophie Martin',''),(495,1,125,'2','412 9633',''),(496,1,125,'3','webscrapai@sales.com',''),(497,1,125,'4','Hello!\r\n\r\nAs a modern business owner, you know how critical data is to stay ahead of the competition. That\'s why web scraping is a vital tool to help you extract valuable insights from websites and online platforms. With this easy-to-use platform, you don\'t need to be an expert in coding or data science to get started.\r\n\r\nThis intelligent bots can be configured in just two minutes, allowing you to extract valuable data and stay ahead of market trends without wasting any time. With this powerful AI algorithms, you can stay on top of your competitors, track market prices, monitor customer sentiment, and much more.\r\n\r\nIn today\'s fast-paced business world, time is of the essence. That\'s why this platform is designed to help you optimize your data monitoring and extraction, without any coding or technical knowledge required. You can access all the critical information you need, without any hassle or complexity.\r\n\r\nDon\'t wait another minute to take your business to the next level. Click on the link below and start taking advantage of this cutting-edge platform today. With this solution, you can stay ahead of the competition and stay on top of your game.\r\n\r\nDon\'t miss out on this opportunity to take your business to the next level.\r\n\r\nClick here now to get started: https://bit.ly/3m42Nwo (you have a discount of 10% forever).\r\n\r\nBest regards\r\n\r\n\r\n\r\nPS : Why web scraping is important ?\r\n\r\n- Data collection: Scraping allows for large-scale data collection from the web, which can be used for market analysis, competitive intelligence, trend research, customer needs identification, and more.\r\n\r\n- Automation: Scraping allows for the automation of web data collection and analysis, saving time and money while reducing human errors.\r\n\r\n- Decision-making: Data collected through scraping can help businesses make more informed decisions by providing accurate information about market trends, customer preferences, competitor performance, and other relevant factors.\r\n\r\n- Strategy improvement: Scraping can help businesses improve their marketing strategy by providing valuable data about their customers and market. This information can be used to develop offers tailored to customer needs, improve advertising campaigns, and optimize sales strategies.\r\n\r\nClick here now to get started: https://bit.ly/3m42Nwo (you have a discount of 10% forever).',''),(498,1,126,'6','Della Vachon',''),(499,1,126,'2','79 101 85 98',''),(500,1,126,'3','della.vachon@hotmail.com',''),(501,1,126,'4','Listen, \r\n\r\nYou can finally generate an easy commission of $585.45 in 24hrs on complete autopilot without spending an arm and a leg!\r\n\r\n>>> Click on the link below to see how to generate easy $585.45 in a day\r\nhttps://shortz.pro/ink-ai\r\n\r\nMeaning, you ain’t lifting a finger yet you generate an easy daily commission on automation right from your own comforts, whether you\'re mowing, sipping your moocha, or relaxing …\r\n\r\nWithout pitching clients, \r\nWithout running ads, \r\nWithout selling products, \r\nWithout trading crypto, \r\nWithout hustling for traffic,\r\nWithout paying monthly…\r\n\r\nI mean you practically are not doing a single shit all by yourself.\r\n\r\nSuper amazing right?\r\n\r\n>>> Click on the link below to tap into this income generating source FAST!\r\nhttps://shortz.pro/ink-ai\r\n\r\nThe most interesting part is, you may choose this to be your direct and full-time income source, or make it a side hustle without you spending fortunes.\r\n \r\nIsn’t this interesting?\r\n\r\n>> Fire Up your click rocket and blast this link for quick and easy commission today!\r\nhttps://shortz.pro/ink-ai\r\n\r\nDo not sit on the fence, it is literally nuts, don’t let it go away!',''),(502,1,127,'6','James Ross',''),(503,1,127,'2','079 4149 8050',''),(504,1,127,'3','james.ross@gmail.com',''),(505,1,127,'4','Hey,\r\n\r\n\r\nIf you ever used email marketing,\r\n\r\nyou know how difficult it is to get\r\n\r\neven a 5% open rate nowadays.\r\n\r\n\r\n\r\nBut what if tell you - you can get\r\n\r\n95% OPEN RATES to all your messages\r\n\r\nwithout any extra effort?\r\n\r\n\r\n\r\nSounds unbelievable, right?\r\n\r\n\r\n==> Here\'s how to do it: https://bit.ly/3KAH8VZ\r\n\r\n \r\n\r\nWhile email is dying, SMS and\r\n\r\nWhatsapp are emerging as the new\r\n\r\nking of marketing.\r\n\r\n\r\n\r\n- they get 98-99% open rates\r\n\r\n- Whatsapp has the highest click-thru rates\r\n\r\n- 90% SMS are read within 3 minutes\r\n\r\n- 97% of WhatsApp messages are read\r\n\r\n- customers engages 5x more than email\r\n\r\n \r\n\r\nThat\'s why its MUST to include\r\n\r\nSMS & Whatsapp in your marketing\r\n\r\nstrategy if you want to stay ahead\r\n\r\nof the competition. \r\n\r\n\r\n\r\nWith AI MultiMarketer, you can\r\n\r\ndominate all 3 channels from one\r\n\r\ndashboard and get 95% open rates\r\n\r\nevery time you send messages.\r\n\r\n \r\n\r\nPlus, their intelligent ChatGPT A.I. \r\n\r\nwrite all your emails, SMS messages \r\n\r\nand whatsapp messages in seconds \r\n\r\nwithout having to manually \r\n\r\nwrite them yourself. \r\n\r\n\r\n\r\n==> https://bit.ly/3KAH8VZ\r\n\r\n\r\n\r\nIt\'s affiliate friendly, no bans, no \r\n\r\nrestrictions, no limitations - get \r\n\r\nunlimited reach and start sending \r\n\r\npromo campaigns across SMS, email\r\n\r\nand WhatsApp all from one dashboard.\r\n\r\n\r\n\r\nAnd the best part? You get lifetime\r\n\r\naccess to AI MultiMarketer for just a \r\n\r\nONE-TIME investment during the \r\n\r\nlaunch period only.. \r\n\r\n\r\n\r\n==> https://bit.ly/3KAH8VZ\r\n\r\n\r\n\r\nDon\'t let this opportunity pass you by, \r\n\r\nor you will regret it later. Grab your \r\n\r\ncopy now and get started today!\r\n\r\n\r\n\r\nThanks, \r\n\r\nJames',''),(506,1,128,'6','Deidre Desaillly',''),(507,1,128,'2','(08) 8350 2890',''),(508,1,128,'3','desaillly.deidre64@googlemail.com',''),(509,1,128,'4','Hey,\r\nI won’t play the same old drums again.\r\nBy now, you’re aware of the immense benefits Backlinks Builder holds for your business.\r\n& without this in your kitty, you’re missing out on a LIFETIME of opportunities…\r\nThis is the only chance you can convert your dreams into reality as…\r\nThe launch special deal for Backlinks Builder is almost gone FOREVER…\r\nAnd so, this is your LAST chance to grab it before it goes away never to come back…\r\nGrab It Now Before It Flies Away- https://warriorplus.com/o2/a/qt25mf/0\r\nSo, if you too are looking to make the most from driving targeted traffic from social media & boost sales and conversions,\r\nWithout falling prey to any hit and trial methods ever, don’t miss out on this.\r\nYou know this is a limited time deal & you can grab it for a crazy low price with no monthly fees.\r\nSo stop thinking and…\r\nGrab Backlinks Builder Before It\'s Gone Forever- https://warriorplus.com/o2/a/qt25mf/0\r\nTo Your Forever Success,',''),(510,1,129,'6','Casimira Macdonald',''),(511,1,129,'2','03.76.04.99.63',''),(512,1,129,'3','macdonald.casimira@gmail.com',''),(513,1,129,'4','Hey,\r\nI won’t play the same old drums again.\r\nBy now, you’re aware of the immense benefits Backlinks Builder holds for your business.\r\n& without this in your kitty, you’re missing out on a LIFETIME of opportunities…\r\nThis is the only chance you can convert your dreams into reality as…\r\nThe launch special deal for Backlinks Builder is almost gone FOREVER…\r\nAnd so, this is your LAST chance to grab it before it goes away never to come back…\r\nGrab It Now Before It Flies Away- https://warriorplus.com/o2/a/tkfwkz/0\r\nSo, if you too are looking to make the most from driving targeted traffic from social media & boost sales and conversions,\r\nWithout falling prey to any hit and trial methods ever, don’t miss out on this.\r\nYou know this is a limited time deal & you can grab it for a crazy low price with no monthly fees.\r\nSo stop thinking and…\r\nGrab Backlinks Builder Before It\'s Gone Forever-https://warriorplus.com/o2/a/tkfwkz/0\r\nTo Your Forever Success,',''),(514,1,130,'6','Daksh',''),(515,1,130,'2','23-96-92-37',''),(516,1,130,'3','darshak@djsteelengineering.com',''),(517,1,130,'4','Hi there,\r\n\r\nI’m writing in hopes of finding the appropriate person who handles estimating or sales department. So if it makes sense to talk, let me know how your calendar looks.\r\n\r\nI noticed that your company provides construction and civil engineering related services. We help companies with steel detailing, rebar detailing, modelling and drafting services.\r\n\r\nDo you want to look at our detailing samples? Don\'t hesitate to reach me.\r\n\r\nSome of our clients include DoorKing of Texas LLC, Cann-Tech LLC, H. Nielsen Drafting Services and Midwest Steel Fab LLC.\r\n\r\nLet me know if you\'re open for a quick call sometime this week and see if we\'re a good fit for each other!\r\n\r\nThanks,\r\nDaksh\r\nDJ Steel Engineering Consultant\r\nEmail: darshak@djsteelengineering.com',''),(518,1,131,'6','Fease',''),(519,1,131,'2','89375435726',''),(520,1,131,'3','nwjsri9b@gmail.com',''),(521,1,131,'4','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/29rg4e75',''),(522,1,131,'5','Google',''),(523,1,132,'6','Robertphync',''),(524,1,132,'2','81171984377',''),(525,1,132,'3','zelatcol@gmail.com',''),(526,1,132,'4','Hola, quería saber tu precio..',''),(527,1,132,'5','Google',''),(528,1,133,'6','Elijah Mares',''),(529,1,133,'2','0338 1013874',''),(530,1,133,'3','mares.elijah@gmail.com',''),(531,1,133,'4','I will convert your website into mobile app both android and IOS for 5$\r\n\r\ncancel anytime if you dont like it.\r\n\r\nlink : https://bit.ly/mobileappcreations',''),(532,1,134,'6','datafastproxiespx01',''),(533,1,134,'2','86313445152',''),(534,1,134,'3','datafastpx@gmail.com',''),(535,1,134,'4','DataFast Proxies, Definitive Solution in IPv6 Proxy to Solve CAPTCHA, reCAPTCHA, funCAPTCHA! \r\nIPv6 Proxy for XEvil 4, XEvil 5, XEvil Beta 6, CAPMONSTER 2! \r\n \r\n- High Speed IPv6 Proxy \r\n- Virgin IPv6 proxy \r\n- Anonymous IPv6 proxy \r\n- Rotating IPv6 Proxy (configurable) \r\n- Static IPv6 proxy (configurable) \r\n- 24 Hour IPv6 Proxy \r\n- IPv6 Proxy (Uptime 99.9%) \r\n \r\nDataFast Proxies | Definitive Solution in IPv6 Proxy! \r\nhttps://datafastproxies.com/ \r\n \r\nContact: \r\nhttps://datafastproxies.com/contact/',''),(536,1,134,'5','Google',''),(537,1,135,'6','Max Johnson',''),(538,1,135,'2','0492 96 07 23',''),(539,1,135,'3','max.johnson@gmail.com',''),(540,1,135,'4','The difference between getting rich or struggling comes down to what you’re selling.\r\n\r\n\r\nPeople selling BMWs make more than those selling Hyundai’s.\r\n\r\nPeople selling mansions make more than those selling mobile homes.\r\n\r\n\r\nThe same is true online - when you sell HIGH TICKET offers, you make more - \r\n\r\nit’s that simple.\r\n\r\n\r\nSo instead of fighting for scraps & competing with thousands of other marketers promoting $10-$20 offers for tiny commissions …\r\n\r\n\r\n>> Just grab THIS to take home the BIG paydays! https://bit.ly/43MJVCP\r\n\r\n\r\nEverything you need is included:\r\n\r\n\r\n=> Automated software that builds you the money pages to convert visitors \r\n\r\n into profits\r\n\r\n=> FREE traffic methods to get targeted buyers \r\n\r\n=> An included PREMIUM evergreen offer to promote where you make $1,000+ \r\n\r\n PER SALE\r\n\r\n=> And step-by-step training that walks you through the hassle-free set up \r\n\r\n\r\nThis is so easy and is jam-packed with real proof, both from the creator AND from \r\n\r\nbeta testers.\r\n\r\n\r\nYou WON’T need a list, any previous experience, copywriting or tech skills.\r\n\r\nYou WON’T need to wait for results - you can be banking 3+ figure commissions by \r\n\r\nthis time TOMORROW.\r\n\r\nYou WON’T need to pay for traffic - free methods are part of the package!\r\n\r\n\r\nFor an extremely limited time, you get complete & ongoing access for a steeply discounted one-time fee.\r\n\r\n\r\nBut HURRY because the price is increasing and this is your shot to get in for the \r\n\r\nlowest possible cost.\r\n\r\n\r\nMake way more in way less time?\r\n\r\n\r\n>> Now you can with THIS app & proven method! https://bit.ly/43MJVCP\r\n\r\n\r\nRegards, \r\n\r\n\r\nMax',''),(541,1,136,'6','Domingo Mcclendon',''),(542,1,136,'2','052 828 56 68',''),(543,1,136,'3','mcclendon.domingo@gmail.com',''),(544,1,136,'4','Do you want to automate your social media accounts and drive 10,000s of views and traffic?\r\nIf so, then you need to check out SociAi.\r\nSociAi is the world\'s first fully ChatGPT4-driven app that automates social media accounts by creating and posting trending viral content such as videos, images, reels, and much more.\r\nWith SociAi, you can easily automate your social media accounts and get more views, traffic, and engagement.\r\nHere are just a few of the benefits of using SociAi:\r\nAutomate your social media accounts and save time\r\nGet more views, traffic, and engagement\r\nIncrease your brand awareness and reach\r\nBoost your sales and revenue\r\nSociAi is the perfect tool for anyone who wants to automate their social media accounts and get more results.\r\nSo what are you waiting for?\r\nTry SociAi today and see the results for yourself.\r\nClick here to learn more and get started today: https://warriorplus.com/o2/a/kp8x0p/0\r\nI hope to hear from you soon.\r\nBest regards,',''),(545,1,137,'6','Fease',''),(546,1,137,'2','84142485926',''),(547,1,137,'3','64w17yr7@yahoo.com',''),(548,1,137,'4','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/28k8k4k2',''),(549,1,137,'5','Google',''),(550,1,138,'6','Eric Jones',''),(551,1,138,'2','555-555-1212',''),(552,1,138,'3','ericjonesmyemail@gmail.com',''),(553,1,138,'4','Hi juiceelectrical.co.nz Administrator. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(554,1,139,'6','Rich Mault',''),(555,1,139,'2','08033 71 22 08',''),(556,1,139,'3','mault.rich@googlemail.com',''),(557,1,139,'4','Hey,\r\nEver wanted to take complete control of your business & enjoy a lavish lifestyle right from the comfort of your home…\r\nWithout burning your midnight lamps, sipping cups of coffee to remain focused & work round-the-clock like a pendulum.\r\nGREAT NEWS…\r\nHere’s how you can get all that & much more.\r\nClick Here To See The Full Scoop- https://warriorplus.com/o2/a/tkfwkz/0\r\nPut your hands together for Backlinks Builder-\r\nA fresh, revolutionary & completely unique technology that automates the complete process of driving quality buyer traffic from google to your offers hands down.\r\nHere’re just a few numbers to further substantiate its huge potential -\r\n· Social Media is the network in U.S with more than 800 million monthly active users\r\n· There are over 20 Billion searches on social media every month\r\n· 77% of weekly users regularly discover new brands and products on social media\r\nNothing like this is available at such a low price anywhere...\r\nand I bet these never seen before amazing features at the crazy low one time price will surely make your buying experience a pleasant one.\r\nSo, before all this expires, act soon and get your hands on this masterpiece!\r\nPLUS, you’re getting EXCLUSIVE bonuses only if you act today-',''),(558,1,140,'6','Eric Jones',''),(559,1,140,'2','555-555-1212',''),(560,1,140,'3','ericjonesmyemail@gmail.com',''),(561,1,140,'4','To the juiceelectrical.co.nz Owner. my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(562,1,141,'6','Piper Major',''),(563,1,141,'2','52-48-73-21',''),(564,1,141,'3','piper.major@hotmail.com',''),(565,1,141,'4','Hey Website I found That your website has lots of problem like seo, website design, backlink and more..\r\n\r\nAll of this problem is solved by proffesionals starting from 5$.\r\n\r\nI suggest to order pro service for fast service..\r\n\r\nlink : https://bit.ly/fiverr-services1',''),(566,1,142,'6','Polly Hartsock',''),(567,1,142,'2','06553 58 58 82',''),(568,1,142,'3','polly.hartsock@hotmail.com',''),(569,1,142,'4','Looking for a competitive advantage? \r\n\r\nGet the edge on your competition with HighLevel. \r\n\r\nHighLevel was built to help agencies scale endlessly, automate processes, reduce churn, and efficiently run all of their digital marketing. \r\n\r\nWe’ve met with so many other marketers and know that agencies need a platform that can do it all.\r\n\r\nSign up for a free trial today and see how HighLevel can help you take your business to the next level!\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(570,1,143,'6','Sonyajer',''),(571,1,143,'2','87526267334',''),(572,1,143,'3','woodthighgire1988@gmail.com',''),(573,1,143,'4','Hey. All my photos and videos here https://love2me.page.link/UkMX',''),(574,1,143,'5','Google',''),(575,1,144,'6','datafastproxiespx01',''),(576,1,144,'2','87946825877',''),(577,1,144,'3','datafastpx@gmail.com',''),(578,1,144,'4','DataFast Proxies, Definitive Solution in IPv6 Proxy to Solve CAPTCHA, reCAPTCHA, funCAPTCHA! \r\nIPv6 Proxy for XEvil 4, XEvil 5, XEvil Beta 6, CAPMONSTER 2! \r\n \r\n- High Speed IPv6 Proxy \r\n- Virgin IPv6 proxy \r\n- Anonymous IPv6 proxy \r\n- Rotating IPv6 Proxy (configurable) \r\n- Static IPv6 proxy (configurable) \r\n- 24 Hour IPv6 Proxy \r\n- IPv6 Proxy (Uptime 99.9%) \r\n \r\nDataFast Proxies | Definitive Solution in IPv6 Proxy! \r\nhttps://datafastproxies.com/ \r\n \r\nContact: \r\nhttps://datafastproxies.com/contact/',''),(579,1,144,'5','Google',''),(580,1,145,'6','Adriene Denovan',''),(581,1,145,'2','077 6393 5728',''),(582,1,145,'3','adriene.denovan64@googlemail.com',''),(583,1,145,'4','Be honest.\r\n\r\n... you\'ve brought a product \r\ncause the sales pages are \r\nflashy - \r\n\r\n - luxury cars, yachts,\r\nvacation spots, houses\r\n\r\nThen you discover that \r\nthe products offered are\r\ncomplicated.\r\n\r\nI\'ve been there.\r\n\r\nI\'ve learned my lesson\r\n\r\nSo today...\r\n\r\nBilly Darr offers a refreshing \r\nsoftware that makes it possible \r\nfor newbies to crush it online.\r\n\r\n>>> Check it out!\r\nhttps://shortz.pro/nexus',''),(584,1,146,'6','Fease',''),(585,1,146,'2','86986885915',''),(586,1,146,'3','ksccgtun@yahoo.com',''),(587,1,146,'4','Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/2d4m979z',''),(588,1,146,'5','Google',''),(589,1,147,'6','JosephMOR',''),(590,1,147,'2','83874359777',''),(591,1,147,'3','no.reply.OlivierBonnet@gmail.com',''),(592,1,147,'4','Hi there! juiceelectrical.co.nz \r\n \r\nDid you know that it is possible to send proposals consequently legally? We present a unique way of sending commercial offers through contact forms. You can find these feedback forms on numerous sites. \r\nWhen such proposals are sent, no personal data is used, and messages are sent to specially designed forms to receive messages and appeals. Messages that are sent with the help of Feedback Forms are not viewed as spam since they are seen as important. \r\nWe are now offering you the chance to use our service for free. \r\nWe will provide up to 50,000 messages for you. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis offer is automatically generated. \r\nPlease use the contact details below to get in touch with us. \r\n \r\nContact us. \r\nTelegram - https://t.me/FeedbackFormEU \r\nSkype live:feedbackform2019 \r\nWhatsApp +375259112693 \r\nWhatsApp https://wa.me/+375259112693 \r\n \r\nWe only use chat for communication.',''),(593,1,147,'5','Google',''),(594,1,148,'6','James McGregor',''),(595,1,148,'2','03.51.82.61.04',''),(596,1,148,'3','james@mcgregorinc.com',''),(597,1,148,'4','Hey,\r\n\r\nCanva not cutting it for your small business? (spoiler alert: you’re not alone!)\r\n \r\nUse the power of AI to generate sales-optimized creatives lightning fast. No fuss. No design skills required.\r\n\r\nWhat will YOU do with all of your new-found time?\r\n\r\nStart your FREE 7-day trial today -> https://free-trial.adcreative.ai/april23\r\n\r\nBest,\r\n\r\nJames',''),(598,1,149,'6','Bill Cavana',''),(599,1,149,'2','077 4222 3447',''),(600,1,149,'3','billcavana696@gmail.com',''),(601,1,149,'4','Hello,\r\n\r\nDon\'t miss out on an incredible opportunity to be a WINNER of $4500!\r\n\r\nSimply enter now to find out if you\'re the lucky winner.\r\n\r\nWith such great odds, there\'s no reason not to give it a try. So what are you waiting for?\r\n\r\nEnter today and you could be walking away with $4500!\r\n\r\n\r\nmoneyideas4you.com\r\n\r\n\r\nGood Luck!\r\n\r\n\r\n\r\nBill\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(602,1,150,'6','Oskar Axelsson',''),(603,1,150,'2','091 770 38 17',''),(604,1,150,'3','fullwebsiteaudit@gmail.com',''),(605,1,150,'4','Hi, my name is Oskar and I\'d like to volunteer my time to you. I have a ton of experience building and marketing websites. \r\nI\'ve found that one of the best ways to get to know new people is by volunteering, so I\'d like to donate my time to you. \r\nSend me an email at fullwebsiteaudit@gmail.com \r\nTalk soon, \r\n\r\nOskar',''),(606,1,151,'6','Eric Jones',''),(607,1,151,'2','555-555-1212',''),(608,1,151,'3','ericjonesmyemail@gmail.com',''),(609,1,151,'4','To the juiceelectrical.co.nz Webmaster.\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.”\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(610,1,152,'6','Young Hadley',''),(611,1,152,'2','079 2032 8310',''),(612,1,152,'3','young.hadley@gmail.com',''),(613,1,152,'4','Go High Level is a software solution designed to help you manage your customer relationships, automate your sales processes and boost your lead generation efforts. Sometimes you need an extra set of hands (or, in this case, brains) to get things done, and that’s where CRM tools like GHL come in.\r\n\r\nGoHighLevel is the brainchild of Shaun Clark. Shaun founded HighLevel in 2018 to help small businesses and agencies automate and scale. \r\n\r\nTry for free : https://bit.ly/gohighlevell',''),(614,1,153,'6','Eric Jones',''),(615,1,153,'2','555-555-1212',''),(616,1,153,'3','ericjonesmyemail@gmail.com',''),(617,1,153,'4','Dear juiceelectrical.co.nz Administrator. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(618,1,154,'6','Glena Wilson',''),(619,1,154,'2','06-96799775',''),(620,1,154,'3','glendawilson031@gmail.com',''),(621,1,154,'4','Hello,\r\n\r\nDon\'t miss out on an incredible opportunity to be a WINNER of $4500!\r\n\r\nSimply enter now to find out if you\'re the lucky winner.\r\n\r\nWith such great odds, there\'s no reason not to give it a try. So what are you waiting for?\r\n\r\nEnter today and you could be walking away with $4500!\r\n\r\n\r\nmoneyideas4you.com\r\n\r\n\r\nGood Luck!\r\n\r\nGlenda\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(622,1,155,'6','Aida Duckworth',''),(623,1,155,'3','duckworth.aida60@gmail.com',''),(624,1,155,'4','Hey,\r\n\r\nIf you ever used email marketing,\r\nyou know how difficult it is to get\r\neven a 5% open rate nowadays..\r\n\r\nBut what if tell you - you can get\r\n95% OPEN RATES to all your messages\r\nwithout any extra effort?\r\n\r\nSounds unbelievable, right?\r\n\r\n==> Here\'s how to do it…\r\nhttps://shortz.pro/ai-mm\r\n \r\nWhile email is dying, SMS and\r\nWhatsapp are emerging as the new\r\nking of marketing.\r\n\r\n- they get 98-99% open rates\r\n- Whatsapp has the highest click-thru rates\r\n- 90% SMS are read within 3 minutes\r\n- 97% of WhatsApp messages are read\r\n- customers engages 5x more than email\r\n \r\nThat\'s why its MUST to include\r\nSMS & Whatsapp in your marketing\r\nstrategy if you want to stay ahead\r\nof the competition. \r\n\r\nWith AI MultiMarketer, you can\r\ndominate all 3 channels from one\r\ndashboard and get 95% open rates\r\nevery time you send messages.\r\n \r\nPlus, their intelligent ChatGPT A.I. \r\nwrite all your emails, SMS messages \r\nand whatsapp messages in seconds \r\nwithout having to manually \r\nwrite them yourself. \r\n\r\n==> https://shortz.pro/ai-mm\r\n\r\nIt\'s affiliate friendly, no bans, no \r\nrestrictions, no limitations - get \r\nunlimited reach and start sending \r\npromo campaigns across SMS, email\r\nand WhatsApp all from one dashboard.\r\n\r\nAnd the best part? You get lifetime\r\naccess to AI MultiMarketer for just a \r\nONE-TIME investment during the \r\nlaunch period only.. \r\n\r\n==> https://shortz.pro/ai-mm\r\n\r\nDon\'t let this opportunity pass you by, \r\nor you will regret it later. Grab your \r\ncopy now and get started today!',''),(625,1,156,'6','Fease',''),(626,1,156,'2','85761482731',''),(627,1,156,'3','5ov9hn6e@gmail.com',''),(628,1,156,'4','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/26mrh3kj',''),(629,1,156,'5','Google',''),(630,1,157,'6','Eric Jones',''),(631,1,157,'2','555-555-1212',''),(632,1,157,'3','ericjonesmyemail@gmail.com',''),(633,1,157,'4','Hello juiceelectrical.co.nz Administrator!\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.”\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(634,1,158,'6','Shaunte',''),(635,1,158,'2','0211 98 69 17',''),(636,1,158,'3','shaunte.krouse@zoho.com',''),(637,1,158,'4','Get The Worlds Greatest Magic Sand Free Beach Mat!\r\n\r\nWatch sand, dirt & dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking.\r\n\r\nAct Now And Receive A Special Discount For Our Magic Mat!\r\n\r\nGet Yours Here: https://magicmat.biz\r\n\r\nMany Thanks, \r\n \r\nShaunte',''),(638,1,159,'6','Eric Jones',''),(639,1,159,'2','555-555-1212',''),(640,1,159,'3','eric.jones.z.mail@gmail.com',''),(641,1,159,'4','Hi juiceelectrical.co.nz Admin!\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(642,1,160,'6','Steve Smith',''),(643,1,160,'2','077 7397 2457',''),(644,1,160,'3','steve.smith@gmail.com',''),(645,1,160,'4','Hello, \r\n\r\nHere is something you\'ll absolutely love if you\'re a woodworker.\r\n\r\nGet access to 16,000 woodworking plans: https://bit.ly/3GqI0dl\r\n\r\n\r\n\r\nYou can get instant access to over *16,000* woodworking projects in the next 5 minutes or less..\r\n\r\nYou got to check out Ted\'s video now: https://bit.ly/3GqI0dl\r\n\r\n\r\nTed has spent years putting together \"Earth\'s largest collection of woodworking plans!\"\r\n\r\nI\'m talking about 16,000 \"done-for-you\" plans with STEP-BY- STEP instructions, photos and diagrams to make every project laughably easy...\r\n\r\nAnd the best part is, it doesn\'t matter if you don\'t have a large workshop or expensive tools!\r\n\r\nGet access to TedsWoodworking now >> https://bit.ly/3GqI0dl\r\n\r\n\r\nYou 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.\r\n\r\nYou can be going through all the plans in just a few minutes from now\r\n\r\n\r\nExperience the joy.. the satisfaction, to know with 100% certainty that your project will turn out exactly the way you want it to look.\r\n\r\nIt\'s an incredible feeling…\r\n\r\n...being able to wake up on a Saturday morning and get to work on your project with absolute confidence it will turn out right.\r\n\r\nWith no strange gut feeling you’ll make a mistake or you won’t finish what you start...\r\n\r\nThat\'s the way woodworking is supposed to be.\r\n\r\nClick here to take a look at his plans: https://bit.ly/3GqI0dl\r\n\r\n\r\nTHIS IS A TIME-LIMITED OFFER\r\n\r\nTed is running a time limited \"launch discount\" and the complete package of plans is 77% off the regular price\r\n\r\nThis 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.\r\n\r\nSo grab your discount while it lasts: https://bit.ly/3GqI0dl',''),(646,1,161,'6','Sara Johnson',''),(647,1,161,'2','0333 3761113',''),(648,1,161,'3','sara.johnson@gmail.com',''),(649,1,161,'4','Do this before you go to bed tonight...\r\n\r\nA bizarre 5-second \"Himalayan ice hack\" discovered last week\r\n\r\nThat instantly turbo-charges your metabolism by up to 450% or more: https://bit.ly/3USA36M\r\n\r\nAll you need is some ice from your freezer, and this alpine secret.\r\n\r\nIt\'s more powerful than any diet or exercise plan on earth...\r\n\r\nAnd so easy it\'ll feel like you\'re cheating at weight loss.\r\n\r\nTry it for yourself before you go to bed tonight and be lighter by tomorrow morning!\r\n\r\n==> One Ice Hack Turbo Charges Metabolism By Up To 450%: https://bit.ly/3USA36M\r\n\r\nWishing you health and happiness,\r\n\r\nGood luck, \r\n\r\nSara\r\n\r\nPS. The $78 billion weight loss industry would HATE for you to see this video. It will change everything you thought you knew about weight loss. Watch it now before it\'s too late.\r\n\r\nGrab my coupon from here: https://bit.ly/3USA36M',''),(650,1,162,'6','Kristal Iredale',''),(651,1,162,'2','070 6225 4061',''),(652,1,162,'3','iredale.kristal@hotmail.com',''),(653,1,162,'4','Do you want to automate your social media accounts and drive 10,000s of views and traffic?\r\nIf so, then you need to check out SociAi.\r\nSociAi is the world\'s first fully ChatGPT4-driven app that automates social media accounts by creating and posting trending viral content such as videos, images, reels, and much more.\r\nWith SociAi, you can easily automate your social media accounts and get more views, traffic, and engagement.\r\nHere are just a few of the benefits of using SociAi:\r\nAutomate your social media accounts and save time\r\nGet more views, traffic, and engagement\r\nIncrease your brand awareness and reach\r\nBoost your sales and revenue\r\nSociAi is the perfect tool for anyone who wants to automate their social media accounts and get more results.\r\nSo what are you waiting for?\r\nTry SociAi today and see the results for yourself.\r\nClick here to learn more and get started today: https://warriorplus.com/o2/a/kp8x0p/0\r\nI hope to hear from you soon.',''),(654,1,163,'6','Robertphync',''),(655,1,163,'2','86275457624',''),(656,1,163,'3','zelatcol@gmail.com',''),(657,1,163,'4','Hai, saya ingin tahu harga Anda.',''),(658,1,163,'5','Google',''),(659,1,164,'6','Mike Wainwright',''),(660,1,164,'2','87412358146',''),(661,1,164,'3','no-replyinquiff@gmail.com',''),(662,1,164,'4','Hi there \r\n \r\nThis is Mike Wainwright\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Wainwright\r\n \r\nmike@strictlydigital.net',''),(663,1,164,'5','Google',''),(664,1,165,'6','Eliza Bermingham',''),(665,1,165,'2','0317 0205874',''),(666,1,165,'3','bermingham.eliza@gmail.com',''),(667,1,165,'4','Hi,\r\n\r\nSorry to disturb you. I was wondering if you Promote your business with Google or Facebook or any platform ?\r\n\r\nIf you don\'t you can simply DELETE this message.\r\n\r\nBut if you do, how Converting are your AD Copy?\r\n\r\nHow do you optimize your Ad Copy?\r\n\r\nAre you SATISFIED with your Results?\r\n\r\nI am asking you these Questions because we don\'t want to BURN our Hard Earned money on Ads if they are not CONVERTING...\r\n\r\nI don\'t know if you had tried AdCreative yet.\r\n\r\nLearn about AdCreative here >>> https://bit.ly/adcopyc\r\n\r\nBecause this Tools is really Insane while creating AD Copies and Conversions.\r\n\r\nYou can try if it sounds needy for you as it\'s simply FREE to TEST.\r\n\r\nCheers\r\n\r\nHannah F\r\n88 Rugby Street\r\n88994\r\n======\r\nClick here to unsubscribe\r\nhttps://bit.ly/stop69',''),(668,1,166,'6','Aretha Guertin',''),(669,1,166,'2','02191 25 63 16',''),(670,1,166,'3','aretha.guertin47@gmail.com',''),(671,1,166,'4','Dear,\r\n\r\nAre you tired of struggling to increase your website\'s search engine ranking? Are you looking for a quick and easy solution to get your website on the top of search results? Well, we have some exciting news for you!\r\n\r\nWe have recently discovered an amazing tool that can help you improve your website\'s search engine ranking in just one click! Yes, you heard it right. With this tool, you can get higher rankings for your website almost instantly.\r\n\r\nIntroducing https://warriorplus.com/o2/a/tkfwkz/0, a powerful SEO tool that has been designed to help website owners like you get higher rankings in search engine results pages (SERPs). With this tool, you can analyze your website\'s SEO performance and identify areas that need improvement.\r\n\r\nSome of the key features of [Insert tool name] include [Insert key features and benefits along with links for more information]. With these features, you can easily optimize your website for search engines and get higher rankings in no time.\r\n\r\nSo, what are you waiting for? Click on the link below to learn more about https://warriorplus.com/o2/a/tkfwkz/0 and start improving your website\'s search engine ranking today.\r\n\r\nhttps://warriorplus.com/o2/a/tkfwkz/0\r\n\r\nWe hope you find this tool as helpful as we have. If you have any questions or need any assistance, feel free to reach out to us.\r\n\r\nBest regards,',''),(672,1,167,'6','Marvin Milligan',''),(673,1,167,'2','347-756-5813',''),(674,1,167,'3','milligan.marvin@hotmail.com',''),(675,1,167,'4','Go High Level is a software solution designed to help you manage your customer relationships, automate your sales processes and boost your lead generation efforts. Sometimes you need an extra set of hands (or, in this case, brains) to get things done, and that’s where CRM tools like GHL come in.\r\n\r\nGoHighLevel is the brainchild of Shaun Clark. Shaun founded HighLevel in 2018 to help small businesses and agencies automate and scale. \r\n\r\nTry for free : https://bit.ly/gohighlevell',''),(676,1,168,'6','Layne Mullagh',''),(677,1,168,'2','06-80123153',''),(678,1,168,'3','layne.mullagh79@yahoo.com',''),(679,1,168,'4','I will do 400 contextual dofollow white hat high da seo backlinks for google ranking for 5$\r\n\r\nLink : https://bit.ly/seoservice02',''),(680,1,169,'6','Edmund Rayburn',''),(681,1,169,'2','0711 43 73 94',''),(682,1,169,'3','rayburn.edmund@gmail.com',''),(683,1,169,'4','https://bit.ly/TryInkAIExclusiveOffer\r\n\r\nIntroducing the World\'s first \"AI-Powered\" App that\'s about to change the game in the world of eBooks and Flipbooks!\r\n\r\nhttps://bit.ly/TryInkAIExclusiveOffer\r\n\r\nAre you tired of spending hours creating eBooks and Flipbooks for your business, only to find that they don\'t convert as well as you hoped? Well, say hello to our revolutionary new app that will make your life a whole lot easier.\r\n\r\nhttps://bit.ly/TryInkAIExclusiveOffer\r\n\r\nOur app can turn any keyword, website, blog or URL into a fully designed eBook or Flipbook in a matter of minutes! That\'s right, you no longer have to spend countless hours designing your own eBooks or Flipbooks. With just a few clicks, our app will create a stunning, professionally designed eBook or Flipbook that\'s sure to impress your audience.\r\n\r\nBut that\'s not all. Our private marketplace has over 20 million readers waiting to devour your content! Imagine the exposure your business could get by having your eBook or Flipbook seen by millions of people. It\'s an incredible opportunity that you simply can\'t afford to miss.\r\n\r\nSo why waste any more time trying to design your own eBooks and Flipbooks? Let our app do the work for you, and watch as your sales and conversions skyrocket. Get started today and take your business to the next level!\r\n\r\nhttps://bit.ly/TryInkAIExclusiveOffer',''),(684,1,170,'6','Josefina Nunley',''),(685,1,170,'2','(07) 5359 9572',''),(686,1,170,'3','josefina.nunley4@gmail.com',''),(687,1,170,'4','I will create high quality da 50 to 90 backlinks, guest posts, off page SEO for 5$\r\n\r\nLink : https://bit.ly/seoservice5',''),(688,1,171,'6','Candelaria Hacking',''),(689,1,171,'2','0711 90 82 49',''),(690,1,171,'3','candelaria.hacking@gmail.com',''),(691,1,171,'4','How would you like to have a personal assistant that can help you create high-quality content, generate AI graphics, and respond like a human?\r\n\r\nWell, your wish has come true! \r\n\r\nIntroducing… https://warriorplus.com/o2/a/fs4p4j/0\r\n\r\nAiPal - The world’s first ChatGPT 4-powered “google-killer” app that…\r\n\r\nSee why this may be the last AI app you ever need… >>\r\n\r\n✅ Generates human-like responses to complex questions…\r\n✅ Creates high-quality content…\r\n✅ Crafts high-converting marketing materials…\r\n✅ And designs stunning Ai graphics & art…\r\n✅ Converts Speech-To-Text\r\n✅ Spinner/rewriter Your existing Content\r\n✅Translate Your Content to 200+ languages\r\n✅Generate Viral Idea\r\n✅Fix Grammar Errors\r\n✅Generate Startup Idea\r\n+ Much More…\r\n\r\nWith Siri-Like Voice Commands In Just 2 Minutes FLAT!\r\n\r\nWith AiPal, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\nAnd the best part? \r\n\r\nAiPa is easy to use! \r\n\r\nAll you have to do is chat with it, and it will do the rest.\r\nSo, why wait?\r\n\r\n>> Go & check it out before they take it down… https://warriorplus.com/o2/a/fs4p4j/0',''),(692,1,172,'6','Émilie Perrot',''),(693,1,172,'3','adoptimize@gmail.com',''),(694,1,172,'4','Hello!\r\n\r\nAre you tired of spending countless hours and resources on creating ads that just don\'t convert?\r\n\r\nI’m are thrilled to introduce you to a cutting-edge artificial intelligence that is revolutionizing the advertising industry. This AI was recognized as a category leader by G2 and the 2nd best product by Product Hunt in 2022.\r\n\r\nWith conversion rates up to 14 times higher than traditional ad visuals, this AI can help you boost your sales and ROI in record time!\r\n\r\nIn today\'s fast-paced business world, having effective and targeted ads is crucial to staying ahead of the competition.\r\n\r\nThis AI can reduce design tasks and costs by up to 90%, which means you can save money while achieving superior results. It can also generate hundreds of convertible ad variations while staying true to your brand.\r\n\r\nWhether you are a start-up, e-commerce or marketing agency, this AI can help you reach new heights in creativity and profitability. So why wait?\r\n\r\nDon\'t miss out on the power of AI advertising!\r\n\r\nUnleash the power of AI for your ad campaigns - click the link now to discover this magic AI with a free trial at https://bit.ly/3MRuxPH (and you get 25% OFF ANY PACKAGE! Use the code: TODAY25 today!)\r\n\r\nAnd if something goes wrong, just log in to the application and talk to the support team in the live chat. You have a 100% refund policy!\r\n\r\nBest regards\r\n\r\n\r\n\r\nPS: I strongly believe that utilizing AI to optimize visual advertising is crucial for businesses. Here are the key points to support this claim:\r\n\r\n- Personalization: AI-powered visual advertising can customize the ads based on the user\'s past behavior and preferences, increasing the chances of conversions.\r\n\r\n- Cost-Efficiency: AI can automate the creation and optimization of visual ads, reducing the cost of hiring a large team of designers and marketers.\r\n\r\n- Speed: With AI, it\'s possible to generate hundreds of visual ad variations in a matter of minutes, which significantly saves time and allows marketers to test different ad strategies quickly.\r\n\r\n- Accuracy: AI can analyze vast amounts of data to identify patterns and optimize ad campaigns accordingly, leading to better targeting, messaging, and results.\r\n\r\n- Optimization: AI can continually learn and improve its algorithms, which means the ad campaigns can become more efficient and effective over time.\r\n\r\n- Competitive Advantage: Utilizing AI for visual advertising can give businesses a competitive advantage, allowing them to stay ahead of their competitors and increase their market share.\r\n\r\nClick the link now to claim a free trial at https://bit.ly/3MRuxPH (and you get 25% OFF ANY PACKAGE! Use the code: TODAY25 today!)',''),(695,1,173,'6','Robertphync',''),(696,1,173,'2','87256926414',''),(697,1,173,'3','zelatcol@gmail.com',''),(698,1,173,'4','Dia duit, theastaigh uaim do phraghas a fháil.',''),(699,1,173,'5','Google',''),(700,1,174,'6','Leesa Kaufmann',''),(701,1,174,'2','01.36.06.25.62',''),(702,1,174,'3','kaufmann.leesa16@gmail.com',''),(703,1,174,'4','Hi there,\r\n\r\nQmy.li Advanced URL Shortener has 90% discount with this coupon code: SAVE90\r\nVisit now: https://qmy.li\r\n\r\nLifetime package form one month price of Bitly: https://qmy.li \r\n\r\nQmy.li the ultimate solution for all your link management needs! Better than bitly, linktree, rebrandly. Say goodbye to cluttered and confusing URL links, and say hello to neat, professional, and trackable links.\r\n\r\nAdvanced link shortener\r\nQR code generation & Customization\r\n20+ Tracking pixels support\r\nAdvanced Targeting (Geo, Device, Language)\r\nMultiple domains: qmy.li, brnd.li, bynd.li, linkmybio.in, biolinkr.me, linkme.best, mrkt.best, idiec.com, peynr.com\r\nCustom domains (use your own domain)\r\nAd support and advanced analytics\r\nCampaigns & link rotator & A/B Testing\r\nLink in Bio generator with remove branding feature\r\nCustom splash pages\r\nCTA overlay: contact forms, polls, messages, newsletters, images, coupons, and more\r\nCSV bulk link import & export\r\nAPI\r\nWordpress plugin included\r\nCustom CMS integration guide (easy)\r\nA suite of marketing tools\r\nPowerful integrations: WordPress (plugin included), Zapier, Slack, Shortcuts, Google Analytics, Google Tag Manager, Facebook, Bing, Twitter, Snapchat, Reddit, Linkedin, Pinterest, Quora, TikTok, Adroll, and more...\r\n\r\n\r\nAll of these features are designed to help you improve your online presence and drive conversions.\r\n\r\nQmy.li Advanced URL Shortener is an all-in-one platform that gives you everything you need to manage your links like a pro. \r\n\r\nQmy.li will improve your online presence, drive conversions, or simply keep track of your links. Start using Qmy.li today and take your link management to the next level!\r\n\r\nOur bio links, and custom splash pages will make your links look professional and presented in a way that makes sense for your brand. You can customize your bio links and add content widgets as well as embed widgets.\r\n\r\nBio Link Embeds:\r\n\r\nPayPal Button\r\nWhatsApp Message & Call\r\nPhone\r\nFAQ\r\nRSS Feed\r\nOpenSea NFT\r\nYouTube Embed\r\nFacebook Post\r\nInstagram Post\r\nTweets Embed\r\nSpotify Embed\r\nSoundCloud Embed\r\nApple Music Embed\r\nTikTok Embed\r\nContact Form Embed\r\nNewsletter Embed\r\nProduct Embed (Amazon, Ebay, Etsy, any website)\r\nand more\r\n\r\n\r\nYou can also use our CTA overlays to encourage your visitors to take a specific action, such as signing up for your newsletter, filling out a contact form, or taking a poll.\r\n\r\n\r\nSkyrocket your marketing performance with qmy.li link shortener suite! \r\n\r\nQmy.li Advanced URL Shortener has 90% discount with this coupon code: SAVE90\r\n\r\nVisit now: https://qmy.li',''),(704,1,175,'6','Gerard Humphries',''),(705,1,175,'2','(02) 6171 6764',''),(706,1,175,'3','humphries.gerard@outlook.com',''),(707,1,175,'4','https://bit.ly/BrainBoxVip\r\n\r\nAre you ready to step into the future of customer service and communication? Introducing BrainBox, the first hard-coded AI app that allows you to launch your very own \"ChatGPT-like\" chatbot and charge people for using it.\r\n\r\nWith BrainBox, you\'ll have access to over 50 AI features that will stun both you and your customers. This revolutionary app uses the latest in artificial intelligence technology to provide your customers with a seamless and personalized experience. From natural language processing to sentiment analysis, BrainBox has everything you need to create a chatbot that is not only responsive but intelligent and engaging.\r\n\r\nhttps://bit.ly/BrainBoxVip\r\n\r\nImagine being able to offer your customers a 24/7 support system that never takes a break. With BrainBox, you can do just that. Your customers will be able to get instant answers to their questions, and you\'ll be able to focus on growing your business.\r\n\r\nBut that\'s not all. BrainBox is also incredibly easy to use. You don\'t need any coding skills or technical knowledge to get started. With just a few clicks, you can create your chatbot and start charging your customers.\r\n\r\nAnd the best part? BrainBox is completely customizable. You can create a chatbot that matches your brand\'s tone and personality. You can also add your own custom responses and triggers, ensuring that your chatbot is unique to your business.\r\n\r\nDon\'t miss out on this opportunity to take your business to the next level. Try BrainBox today and see for yourself how it can transform the way you communicate with your customers.\r\n\r\nhttps://bit.ly/BrainBoxVip',''),(708,1,176,'6','Elba Redrick',''),(709,1,176,'3','redrick.elba@gmail.com',''),(710,1,176,'4','https://bit.ly/RpmSystem\r\n\r\nRPM 3.0 is FINALLY ready! With new income streams, higher converting pages and many new features, this is not the RPM you knew and loved, this is a new beast entirely... Using a new autotag technology, the user can have a full system set up without ever editing anything. Using our unique affiliate marketing system. You can earn fromn dozens of income streams using one main link that tracks across all the income streams we have.\r\n\r\nhttps://bit.ly/RpmSystem',''),(711,1,177,'6','Janet Wight',''),(712,1,177,'2','434-847-0241',''),(713,1,177,'3','janet.wight@googlemail.com',''),(714,1,177,'4','I will make SEO backlinks da50 homepage blogroll or sidebar report for 5$\r\n\r\nLink : https://bit.ly/seoservice6\r\n\r\nover 5500 order completed..',''),(715,1,178,'6','Eileen Moffat',''),(716,1,178,'2','06-66670479',''),(717,1,178,'3','eileen.moffat@yahoo.com',''),(718,1,178,'4','Get rich with Royalties!\r\n\r\nEarn Future Revenue Today!\r\nhttps://moneymakingnft.com\r\n\r\nLearn More: \r\nGet a FREE ebook when you.\r\nSign up to our FREE newsletter.',''),(719,1,179,'6','Mike Murphy',''),(720,1,179,'2','87223917539',''),(721,1,179,'3','no-replyinquiff@gmail.com',''),(722,1,179,'4','If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Murphy\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/',''),(723,1,179,'5','Google',''),(724,1,180,'6','Alvin Rudolph',''),(725,1,180,'2','02.36.08.92.21',''),(726,1,180,'3','rudolph.alvin@msn.com',''),(727,1,180,'4','I will create high quality da 50 to 90 backlinks, guest posts, off page SEO for 5$\r\n\r\nLink : https://bit.ly/seoservice5',''),(728,1,181,'6','Bill Cavana',''),(729,1,181,'2','06-58967792',''),(730,1,181,'3','billcavana696@gmail.com',''),(731,1,181,'4','Hello,\r\n\r\nAre you fed up with Microsoft Ads eating up your business revenue with exorbitant costs?\r\n\r\nAre you frustrated with getting phony clicks on your ads that drain your wallet under highly competitive keywords?\r\n\r\nAre you still searching for another so-called \"agency\" that makes lofty promises with no results?\r\n\r\nIf you\'re dealing with any of these issues (or all of them), there\'s a straightforward solution\r\n\r\nCheck out the link below and you can avoid these problems plus receive a $500 Google ad credit.\r\n\r\n\r\nsavemytimebizhub.com\r\n\r\n\r\nAll the best,\r\n\r\nBill\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(732,1,182,'6','Sarah Hughes',''),(733,1,182,'2','0272470445',''),(734,1,182,'3','rolleston@nationalstorage.nz',''),(735,1,182,'4','Hi there\r\n\r\nI was wondering if you could please quote us for two seperate jobs.\r\n\r\n1. Installing 4x outdoor floodlights.\r\n\r\n2. Installing 6-8 outdoor covered (and lockable) plug points.\r\n\r\nOur opening hours are weekdays, 8am - 5pm and Saturdays, 9am - 2pm.\r\n\r\nThank you.\r\n\r\nSarah\r\nNational Storage Rolleston',''),(736,1,182,'5','Google',''),(737,1,183,'6','Glena Wilson',''),(738,1,183,'2','01.63.42.55.76',''),(739,1,183,'3','glendawilson031@gmail.com',''),(740,1,183,'4','Hello,\r\n\r\nAre you fed up with Microsoft Ads eating up your business revenue with exorbitant costs?\r\n\r\nAre you frustrated with getting phony clicks on your ads that drain your wallet under highly competitive keywords?\r\n\r\nAre you still searching for another so-called \"agency\" that makes lofty promises with no results?\r\n\r\nIf you\'re dealing with any of these issues (or all of them), there\'s a straightforward solution\r\n\r\nCheck out the link below and you can avoid these problems plus receive a $500 Google ad credit.\r\n\r\n\r\nsavemytimebizhub.com\r\n\r\n\r\nAll the best,\r\n\r\n\r\nGlenda\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(741,1,184,'6','Dave Gardner',''),(742,1,184,'2','0220439503',''),(743,1,184,'3','eunbolt@gmail.com',''),(744,1,184,'4','Hi,\r\nI was wondering if you move breaker boxes, and how much that might cost.\r\nI live in the Rewood area.\r\n\r\nRegards\r\nDave',''),(745,1,184,'5','google',''),(746,1,185,'6','Tiffany Blaubaum',''),(747,1,185,'2','078 2488 6317',''),(748,1,185,'3','tiffany.blaubaum0@gmail.com',''),(749,1,185,'4','I wanted to share some exciting news with you about a powerful tool that\r\ncan revolutionize the way you create content for your business.\r\n\r\nIntroducing..Ai Buddy\r\n\r\nThis cutting-edge app is powered by ChatGPT\r\nHelp you to create unique, high-quality content , Ai Arts & Images in a fraction of the time it would take to write it manually.\r\n\r\nImagine being able to generate product descriptions, blog posts, and even entire webpages\r\nwith just a few simple prompts. Ai Buddy (ChatGPT Powered) makes it possible, delivering content that is not only fast and efficient, but also engaging and informative\r\n\r\n==> Here Full Scoop https://warriorplus.com/o2/a/qzs6yx/0\r\n\r\nWhether you\'re looking for answers to complex questions, assistance with daily tasks,\r\nor just someone to talk to, this app has you covered. And with its constantly evolving\r\nunderstanding of language, it\'s always getting smarter and more helpful.\r\n\r\n✅ World\'s FIRST fully ChatGPT driven App\r\n✅ Generate human-like responses to complex questions with just 1-click...\r\n✅ Generate High-Quality contents, ebooks, stories, novels, articles, sales scripts, video scripts or anything you wanted....\r\n✅ AiBuddy gives crisp and clear answers to your any question instantly…\r\n✅Designs Stunning Ai Arts & Images\r\n✅ Create SEO-Optimized and plagiarism-free content for your blogs, emails, and website 10X faster.\r\n\r\n\r\n==> Watch Live Demo here https://warriorplus.com/o2/a/qzs6yx/0\r\n\r\nBecause for the early users of AI Buddy, we are offering access for just a low one-time price\r\n equivalent to the price of a takeout dinner for a couple.\r\n\r\nClick the button below right now to get started with Ai Buddy\r\nhttps://warriorplus.com/o2/a/qzs6yx/0',''),(750,1,186,'6','Eric Jones',''),(751,1,186,'2','555-555-1212',''),(752,1,186,'3','ericjonesmyemail@gmail.com',''),(753,1,186,'4','Hello juiceelectrical.co.nz Administrator. I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(754,1,187,'6','Ernesto Cooney',''),(755,1,187,'3','cooney.ernesto@googlemail.com',''),(756,1,187,'4','https://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nIntroducing DFY LinkedIn Mastery - the ultimate solution for professionals looking to master LinkedIn and boost their career or business. With our exclusive access to high-quality, done-for-you LinkedIn mastery resources, you can take your LinkedIn game to the next level without any effort!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nOur DFY LinkedIn Mastery package includes:\r\n\r\n- Professionally written LinkedIn profile templates that grab attention and showcase your skills and expertise.\r\n- Proven strategies for growing your LinkedIn network and generating high-quality leads.\r\n- Step-by-step guidance on how to optimize your LinkedIn content for maximum visibility and engagement.\r\n- Access to our exclusive LinkedIn training videos that provide insider tips and tricks for LinkedIn success.\r\n- And much more!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nWith DFY LinkedIn Mastery, you\'ll get everything you need to master LinkedIn and achieve your goals. Whether you\'re a job seeker, a business owner, or a marketer, our package will help you leverage the power of LinkedIn to achieve success and grow your career or business.\r\n\r\nAnd the best part? You get 100% full unrestricted use rights to use, rebrand, re-sell, and profit from our DFY LinkedIn Mastery package. That\'s right - you can use our package to grow your own LinkedIn presence, or you can sell it to others for a profit!\r\n\r\nSo why wait? Get exclusive instant access to DFY LinkedIn Mastery today and start taking your LinkedIn game to the next level!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery',''),(757,1,188,'6','Steve Collins',''),(758,1,188,'2','01.03.11.30.88',''),(759,1,188,'3','stevecollins@gmail.com',''),(760,1,188,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more social media specialists to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve completing various tasks on social media platforms.\r\n\r\nWe currently are hiring 4 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://www.theaisocial.com/socialmediajobs\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nLooking out for you,\r\nSteve from AISocial',''),(761,1,189,'6','Nola Pence',''),(762,1,189,'2','586-888-2445',''),(763,1,189,'3','nola.pence@googlemail.com',''),(764,1,189,'4','https://bit.ly/Instagram_For_Business_Vip\r\n\r\nAttention Business Owners: \r\n\r\nAre you struggling to find ways to increase your online presence and drive more sales? Look no further! Our comprehensive guide \"Instagram For Business\" is the solution you\'ve been searching for!\r\n\r\nWith over 1 billion active users, Instagram is a goldmine for businesses of all sizes. But with so much competition, it can be difficult to stand out and make an impact. That\'s where our guide comes in. \r\n\r\nOur carefully crafted ebook is designed to help you navigate the world of Instagram for business with ease. Whether you\'re a beginner or an experienced user, we\'ve got you covered with 11 chapters packed full of valuable information.\r\n\r\nhttps://bit.ly/Instagram_For_Business_Vip\r\n\r\nHere\'s a sneak peek at what you can expect to learn:\r\n\r\n- The WHY behind Instagram for business \r\n- Creating a solid foundation \r\n- Developing your Instagram brand \r\n- Growing your following \r\n- Generating superior leads \r\n- Building trust with your audience \r\n- Driving sales from your page \r\n- Launching your product \r\n- Mastering Instagram Stories and Live \r\n- Achieving magical results \r\n\r\nhttps://bit.ly/Instagram_For_Business_Vip\r\n\r\nWe know that time is money, so we\'ve made it easy for you to get started. Our guide is available in a convenient PDF format, allowing you to access it from anywhere at any time. And with clear, concise language and easy-to-follow steps, you\'ll be on your way to Instagram success in no time.\r\n\r\nDon\'t let your competitors steal the spotlight. Invest in \"Instagram For Business\" today and take your business to the next level. Order now and receive a free bonus chapter on Instagram advertising strategies.\r\n\r\nJoin the millions of businesses already thriving on Instagram. Order your copy now!\r\n\r\nhttps://bit.ly/Instagram_For_Business_Vip',''),(765,1,190,'6','Roberto Narvaez',''),(766,1,190,'2','812-438-8024',''),(767,1,190,'3','roberto.narvaez@gmail.com',''),(768,1,190,'4','Hey, entrepreneurs and affiliate marketers! Are you ready to take your game to the next level? Check out RPM 3.0 at https://bit.ly/RpmSystem! \r\n\r\nAttention all entrepreneurs and affiliate marketers! RPM 3.0 is here and it\'s a game-changer! Say goodbye to the days of editing and tweaking - our new autotag technology sets up a full system for you! Get started today at https://bit.ly/RpmSystem. \r\n\r\nThis is not the RPM you knew and loved, this is a new beast entirely! Our higher converting pages and many new features mean that you can finally reach the income levels you\'ve always dreamed of. Don\'t wait any longer, try RPM 3.0 now at https://bit.ly/RpmSystem.\r\n\r\nOur unique affiliate marketing system means you can earn from dozens of income streams using just one main link that tracks across all the income streams we have. That\'s right, dozens of income streams with just one link! Don\'t miss out on this opportunity to transform your business and start earning like never before. Sign up for RPM 3.0 today at https://bit.ly/RpmSystem!\r\n\r\nAre you ready to take your income to the next level? RPM 3.0 is the tool you\'ve been waiting for. Don\'t miss out on this opportunity to transform your business and start earning like never before. Try RPM 3.0 today at https://bit.ly/RpmSystem!',''),(769,1,191,'6','Erika Hillyard',''),(770,1,191,'2','01.49.21.13.05',''),(771,1,191,'3','hillyard.erika@yahoo.com',''),(772,1,191,'4','https://bit.ly/TheAIHub\r\n\r\nAre you tired of spending hours upon hours creating content for your business? Look no further than AI Hub, the 20-in-one app that will revolutionize the way you create content.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nWith the power of ChatGPT (OpenAI) technology, AI Hub offers a wide range of content creation tools that are sure to meet all of your needs. From generating AI content for your website to creating stunning videos and images with just a few clicks, AI Hub has you covered.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nSay goodbye to writer\'s block with the AI Content Generator, which uses advanced algorithms to create unique and engaging content for your website or social media channels. Or use the AI Text to Video and Image Generators to turn your written content into visually stunning videos and images that will captivate your audience.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nThe ChatGPT AI Chatbot is the perfect solution for businesses looking to provide exceptional customer service 24/7. This advanced chatbot can handle customer inquiries and even place orders, leaving your staff free to focus on other important tasks.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nAnd that\'s just the beginning! AI Hub also includes tools for grammar correction, image variation generation, graphic editing, product name generation, interview generation, text summarization, topic outlining, sentiment analysis, proof-reading, analogy making, keyword extraction, ad copy generation, and even spreadsheet generation.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nDon\'t let content creation be a time-consuming and frustrating task. Let AI Hub do the heavy lifting for you, leaving you with more time to focus on growing your business. Try AI Hub today and see the difference it can make!\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>',''),(773,1,192,'6','Sanora Nava',''),(774,1,192,'2','08651 18 27 33',''),(775,1,192,'3','nava.sanora@googlemail.com',''),(776,1,192,'4','I will create website design, website mockup, wordpress landing page design for 15$\r\n\r\nLink : https://bit.ly/websitedesignservice2',''),(777,1,193,'6','Barry Schutt',''),(778,1,193,'2','02.92.03.66.47',''),(779,1,193,'3','barry.schutt@gmail.com',''),(780,1,193,'4','https://bit.ly/10web_AIBuiltWebsites\r\n\r\nAre you tired of spending countless hours building and optimizing your WordPress website? Look no further than 10web.io - the AI-powered WordPress platform that takes care of all your website needs.\r\n\r\nWith our automated website builder, you can create a stunning website in just minutes. Our platform uses AI technology to generate personalized website templates based on your preferences, ensuring a unique and professional design every time.\r\n\r\nBut that\'s not all - 10web.io also offers powerful hosting features that ensure your website loads quickly and runs smoothly. Our page speed booster optimizes your website for lightning-fast load times, keeping your visitors engaged and improving your search engine rankings.\r\n\r\nDon\'t waste another moment struggling with WordPress - let 10web.io handle everything for you. Sign up now and start building your dream website today!\r\n\r\nhttps://bit.ly/10web_AIBuiltWebsites',''),(781,1,194,'6','Jarred Catalano',''),(782,1,194,'2','0261 79 15 19',''),(783,1,194,'3','jarred.catalano5@gmail.com',''),(784,1,194,'4','Introducing High Ticket AI, the groundbreaking new product that is revolutionizing the way entrepreneurs make money online. With our state-of-the-art AI technology, you can now tap into a world of untapped potential and start making $5k, $10k, $15k and even $20k payments straight into your bank account. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nWe know you\'ve tried everything under the sun to make money online, from affiliate marketing to dropshipping, and you\'re tired of all the empty promises and false hope. That\'s why we created High Ticket AI - to finally give you the breakthrough you\'ve been waiting for. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nOur AI system is unlike anything you\'ve ever seen before. It\'s not some cheap gimmick or software that\'s been cobbled together by some fly-by-night operator. No, our system is the real deal, built from the ground up by a team of expert developers and AI engineers. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nAnd the best part? You don\'t need any technical skills or experience to start using High Ticket AI. Our intuitive, user-friendly interface makes it easy for anyone to start making money with AI - even if you\'ve never heard of the technology before. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nBut don\'t take our word for it - listen to what some of our satisfied customers have to say: \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\n\"I was skeptical at first, but after using High Ticket AI for just a few days, I was blown away by the results. I\'ve never seen anything like it before.\" - John D. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\n\"I\'ve been struggling to make money online for years, but High Ticket AI has finally given me the breakthrough I\'ve been looking for. I\'m making more money than I ever thought possible.\" - Sarah K. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nSo what are you waiting for? If you\'re tired of struggling to make ends meet and you\'re ready to finally start making the kind of money you deserve, then High Ticket AI is the answer. With our brand new AI technology, you can crush 2023 and beyond. Don\'t wait - get started today and start living the life you\'ve always dreamed of. \r\n\r\nhttps://bit.ly/HighTicketAI2023',''),(785,1,195,'6','Adele Banuelos',''),(786,1,195,'2','215-602-8560',''),(787,1,195,'3','adele.banuelos51@gmail.com',''),(788,1,195,'4','https://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nIntroducing Nexus - the game-changing add-on that harnesses the power of AI to help you drive massive amounts of free traffic from YouTube in just 30 seconds! With Nexus, you\'ll never have to worry about tedious video creation, tech skills or even being on camera. \r\n\r\nNexus is the ultimate solution for anyone who wants to skyrocket their online business without breaking the bank. You can now tap into the billions of users on YouTube and convert them into loyal customers, effortlessly. \r\n\r\nWith its cutting-edge technology, Nexus finds you the most profitable niches and keywords, so you can start generating massive amounts of targeted traffic to your offers, products or services within minutes. This powerful tool does all the heavy lifting for you, so you can focus on what really matters - growing your business and making more money.\r\n\r\nBut that\'s not all. With Nexus, you\'ll also get access to a step-by-step training that shows you how to maximize your results and scale your business to new heights. You\'ll learn the insider secrets of top marketers who are already crushing it with YouTube traffic and how to replicate their success.\r\n\r\nDon\'t miss out on this incredible opportunity to get your hands on Nexus today. Say goodbye to the frustration and overwhelm of trying to generate traffic on your own and say hello to a new era of online success. With Nexus, you\'ll be able to enjoy a consistent flow of targeted traffic that converts into real profits, all while working less and enjoying more freedom. \r\n\r\nOrder now and start seeing results in as little as 30 seconds!\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI',''),(789,1,196,'6','Etsuko Franz',''),(790,1,196,'2','052 592 82 54',''),(791,1,196,'3','franz.etsuko57@gmail.com',''),(792,1,196,'4','https://bit.ly/AIBuildervip\r\n\r\nAre you tired of struggling with clunky website builders? Are you ready to enter the future of website creation? Look no further than AIBuilder, the world\'s first voice-activated page builder!\r\n\r\nhttps://bit.ly/AIBuildervip\r\n\r\nWith AIBuilder, you don\'t have to fumble around with complicated interfaces or worry about coding. Simply speak your commands and watch as our brand new AI technology creates stunning websites, landing pages, and funnels that will knock your socks off!\r\n\r\nhttps://bit.ly/AIBuildervip\r\n\r\nNot only will AIBuilder save you time and frustration, but it will also make you look like a design genius. Your friends and colleagues will be scratching their heads, wondering how you managed to create such gorgeous pages with ease.\r\n\r\nhttps://bit.ly/AIBuildervip\r\n\r\nBut don\'t take our word for it! Try AIBuilder for yourself and experience the magic firsthand. Trust us, your website creation game will never be the same. Say goodbye to the headaches and hello to the future of web design with AIBuilder.\r\n\r\nhttps://bit.ly/AIBuildervip',''),(793,1,197,'6','Bryon Nance',''),(794,1,197,'2','01.62.00.39.21',''),(795,1,197,'3','bryon.nance@gmail.com',''),(796,1,197,'4','https://bit.ly/GPTBlasterVip\r\n\r\nIntroducing GPT Blaster - the world\'s first true auto chat GPT website publisher that allows you to create set-and-forget websites in any niche on autopilot mode!\r\n\r\nWith GPT Blaster, you can harness the power of chat GPT to effortlessly create stunning websites that are optimized for maximum conversions. Simply choose your niche, set it and forget it, and watch as GPT Blaster does all the work for you.\r\n\r\nhttps://bit.ly/GPTBlasterVip\r\n\r\nWhether you\'re a seasoned marketer or just starting out, GPT Blaster is the perfect tool to take your business to the next level. Say goodbye to the hassle of website building and hello to effortless online success.\r\n\r\nSo why wait? Get started with GPT Blaster today and start building your dream website with ease!\r\n\r\nhttps://bit.ly/GPTBlasterVip',''),(797,1,198,'6','Russell Hely',''),(798,1,198,'2','062 910 96 53',''),(799,1,198,'3','hely.russell@googlemail.com',''),(800,1,198,'4','https://bit.ly/Get_ERC_Today\r\n\r\nI hope this message finds you doing well. I have some exciting news to share with you that could potentially help your business receive a 7-figure refund. Yes, you read that right – 7 figures!\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nThe US government has established a stimulus program designed to assist businesses that were able to retain their employees during the Covid-19 pandemic. At first, I was skeptical about this program too. However, after conducting some research and going through the process myself, I found out that my company was eligible for a huge refund. And now, I strongly believe that your business could be eligible too.\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nThis program is a refundable tax credit – a grant, not a loan – that your business can claim based on qualified wages and healthcare paid to employees. To help you with the process, I work with a reputable 3rd party advisor who will walk you through every step of the way, provide you with a refund estimate, and even process the refund with the IRS. This 3rd party has already helped over 7,000 customers recover more than 2 billion in refunds since 2009, and they work with many of the Fortune 500 companies.\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nIf you are interested in learning more about this program and how it could benefit your business, I invite you to text me at (786) 708-9592. From there, I will get the process started for you right away.\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nDon\'t let this once-in-a-lifetime opportunity pass you by. Contact me today, and let\'s work together to help your business receive the refund it deserves.\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nSincerely,\r\n\r\nMike',''),(801,1,199,'6','Zandra Ashe',''),(802,1,199,'2','0370 8479535',''),(803,1,199,'3','ashe.zandra65@gmail.com',''),(804,1,199,'4','https://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nAre you tired of struggling to make a decent income online? Are you ready to start earning big ticket commissions without all the hard work? Look no further than AI 1K Big Ticket Commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nOur revolutionary system is powered by AI and ChatGPT, making it easy for you to generate profits without lifting a finger. With over $10,000 in monthly high ticket commissions, you can finally achieve financial freedom and live the life you\'ve always dreamed of.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nBut what makes AI 1K Big Ticket Commissions different from other programs out there? It\'s 100% done-for-you, meaning you don\'t have to worry about creating content, building websites, or any of the other tedious tasks that come with running an online business. Everything you need to succeed is right at your fingertips, all within one platform.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nDon\'t miss out on this incredible opportunity to turn your financial situation around. Join the countless others who have already seen massive success with AI 1K Big Ticket Commissions. Sign up now and start earning those big ticket commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions',''),(805,1,200,'6','Anh Acuna',''),(806,1,200,'2','(08) 9407 5532',''),(807,1,200,'3','acuna.anh@gmail.com',''),(808,1,200,'4','https://bit.ly/KleverSend_AI\r\n\r\nAttention all business owners! Are you tired of struggling to keep up with your customer inquiries on WhatsApp? Do you want to take your sales game to the next level? Look no further than KleverSend AI - the all-in-one WhatsApp autoresponder and bot powered by ChatGPT4!\r\n\r\nWith KleverSend AI, you can acquire new leads, simultaneously talk to unlimited prospects just like a human would, follow-up with them, and close sales automatically - all 24X7! Say goodbye to manual responses, and hello to automated sales success.\r\n\r\nClick here to start automating your sales process with KleverSend AI: https://bit.ly/KleverSend_AI\r\n\r\nImagine having an AI-powered sales assistant that can handle all your WhatsApp customer inquiries with ease. KleverSend AI is the solution you\'ve been searching for! It\'s designed to help you focus on what matters most - closing more sales and growing your business.\r\n\r\nDon\'t waste any more time manually responding to customer inquiries. Let KleverSend AI do the work for you! Click here to get started: https://bit.ly/KleverSend_AI\r\n\r\nKleverSend AI is the perfect tool for business owners who want to streamline their sales process and close more deals. It\'s easy to set up and use, and it\'s powered by ChatGPT4 - the most advanced language model in the world. Plus, with unlimited prospect outreach and automatic follow-ups, you can rest assured that no lead will slip through the cracks.\r\n\r\nDon\'t wait any longer to start automating your sales process. Click here to get started with KleverSend AI today: https://bit.ly/KleverSend_AI\r\n\r\nIn conclusion, if you\'re looking for a game-changing tool that can help you acquire new leads, talk to unlimited prospects just like a human would, and close more sales automatically 24X7, KleverSend AI is the answer. Click here to start automating your sales process today: https://bit.ly/KleverSend_AI',''),(809,1,201,'6','Joshua Tillery',''),(810,1,201,'2','078 8865 0402',''),(811,1,201,'3','joshua.tillery@hotmail.com',''),(812,1,201,'4','https://bit.ly/Crypto_Ai\r\n\r\nWelcome to The Crypto Code - the ultimate solution for investors looking to succeed in the world of crypto. Our comprehensive system is designed to give you a competitive edge, and at the heart of it all is our cutting-edge AI technology.\r\n\r\nOur proprietary WaveBot and Predictions Bot are just the beginning. With our AI technology built in throughout our system, you\'ll have access to intelligent and informed trading decisions that maximize your profits and keep you ahead of the curve.\r\n\r\nhttps://bit.ly/Crypto_Ai\r\n\r\nWhether you\'re a beginner just starting out or a seasoned investor looking to take your crypto game to the next level, The Crypto Code has everything you need to succeed. Our comprehensive training system walks you through specific strategies that have been proven to bring success in the world of crypto, and our powerful bots and software tools make trading easy and profitable.\r\n\r\nBut what really sets The Crypto Code apart is our AI technology. With our intelligent algorithms analyzing market trends and data, you\'ll have an unbeatable edge in the crypto market. Join The Crypto Code today and take your trading to the next level with the power of AI.\r\n\r\nhttps://bit.ly/Crypto_Ai',''),(813,1,202,'6','Quinton Tall',''),(814,1,202,'2','07426 20 23 17',''),(815,1,202,'3','quinton.tall67@gmail.com',''),(816,1,202,'4','https://bit.ly/Robin_AI\r\n\r\nBrand New AI Tool creates \'\'internet assets\'\' like Marketing Copy for your Landing Pages, Websites, Stunning Graphics like banners, visuals, graphics, and more in minutes. Fully powered by ChatGPT\r\nhttps://bit.ly/Robin_AI',''),(817,1,203,'6','Spencer Grunewald',''),(818,1,203,'3','spencer.grunewald@outlook.com',''),(819,1,203,'4','https://bit.ly/VoiceGPT_AI\r\n\r\nIntroducing VoiceGPT AI, the revolutionary cloud-based app that combines the power of ChatGPT4 with advanced voice technology to create unique high-quality content and convert it into real human emotion-based voices and audiobooks. Say goodbye to generic, robotic-sounding voices and hello to engaging, emotive audio content that captivates your audience and drives conversions.\r\n\r\nWith VoiceGPT AI, you can create custom audio content in minutes. Simply input your text, select your preferred voice and tone, and let our advanced technology do the rest. Our app generates natural-sounding audio that conveys the emotions and nuances of your text, creating a listening experience that engages your audience and leaves a lasting impression.\r\n\r\nhttps://bit.ly/VoiceGPT_AI\r\n\r\nWhether you\'re a content creator, marketer, or business owner, VoiceGPT AI is the perfect tool to take your audio content to the next level. Use it to create engaging podcasts, audiobooks, video voiceovers, and more. Our app is easy to use, intuitive, and requires no technical expertise. Plus, it\'s cloud-based, so you can access it from anywhere and collaborate with your team in real-time.\r\n\r\nDon\'t settle for generic, lifeless audio content that fails to capture your audience\'s attention. Upgrade to VoiceGPT AI and experience the power of emotive audio content that converts. Try it out today and see the difference for yourself.\r\n\r\nhttps://bit.ly/VoiceGPT_AI',''),(820,1,204,'6','Cruz Staten',''),(821,1,204,'2','(08) 9023 8572',''),(822,1,204,'3','staten.cruz@yahoo.com',''),(823,1,204,'4','https://bit.ly/Twitter_Profit_Hive\r\n\r\nAre you tired of scrolling through your Twitter feed and not making any money from it? Do you want to turn your Twitter account into a source of income? Then you\'ve come to the right place! ADDED BONUS: Twitter Standalone Software- (TWITTELLIGENCE).\r\nhttps://bit.ly/Twitter_Profit_Hive',''),(824,1,205,'6','Zelma Comstock',''),(825,1,205,'2','(03) 5317 3438',''),(826,1,205,'3','comstock.zelma@outlook.com',''),(827,1,205,'4','https://bit.ly/The_Home_Dr\r\n\r\nHow to Stockpile Antibiotics Without a Prescription\r\n\r\nAntibiotics can save your life but they are notoriously hard to stockpile if you don’t know about this ingenious method:\r\n\r\nhttps://bit.ly/The_Home_Dr\r\n\r\nHow to Stockpile Antibiotics Without a Prescription\r\n\r\nIt is completely legal and perfectly safe.\r\n\r\nThe best part is you can also use it for other medicines that require a prescription like insulin or Humira for example.\r\n\r\nThis is just one of the many ingenious tidbits of medical knowledge you’ll discover inside The Home Doctor: Practical Medicine for Every Household\r\n\r\nThis unique book was written by doctors to help people take care of their health ailments at home when the medical system cannot be depended on anymore.\r\n\r\nIt will prove vital in the next crisis, and you should check it out while it’s still available.\r\n\r\nhttps://bit.ly/The_Home_Dr',''),(828,1,206,'6','Raleigh Bray',''),(829,1,206,'2','079 4425 7432',''),(830,1,206,'3','bray.raleigh11@hotmail.com',''),(831,1,206,'4','https://bit.ly/steel_bites\r\n\r\nGet Stronger Teeth and Healthier Gums in Just 60 Seconds!\r\n\r\nHi,\r\n\r\nAre you tired of struggling with tooth decay and weak gums? If so, then you\'re in the right place. I wanted to reach out and let you know about a simple and effective 60-second dental trick that can rebuild your teeth and gums while eliminating tooth decay. \r\n\r\nIt\'s a proven method that has helped countless people get back their dental health and avoid costly dental procedures like implants. Users are raving about how effective this trick is, and they can\'t believe the results they\'re seeing in just a matter of days. \r\n\r\nIf you\'re interested in learning more about this incredible trick and how it can transform your dental health, then I invite you to check out our program. You\'ll discover the step-by-step instructions you need to start using this dental trick tonight before bed, and you\'ll be on your way to healthier teeth and gums in no time.\r\n\r\nDon\'t let dental issues hold you back any longer. Take control of your dental health today with our proven 60-second dental trick. Click the link below to get started:\r\n\r\nhttps://bit.ly/steel_bites\r\n\r\nThank you for your time, and I look forward to hearing from you soon!\r\n\r\nBest regards,\r\n\r\nhttps://bit.ly/steel_bites',''),(832,1,207,'6','Scott Clarke',''),(833,1,207,'2','02354 46 79 30',''),(834,1,207,'3','scott.clarke@gmail.com',''),(835,1,207,'4','ChatGPT Gained over 100 million customers within a month… \r\n\r\n\r\nEven tech giant Google launched their own AI Chatbot called Bard… \r\n\r\n\r\nBecause they understand that AI is the future, and there is no going back… \r\n\r\n\r\nBut here is the thing…\r\n\r\nLaunching your own ChatBot is not an easy task… \r\n\r\n\r\nIt’s a very techy task, and it requires a lot of work and dedication… \r\n\r\n\r\nBut what if there is a way to launch your very own chatGPT-like bot \r\n\r\n\r\nIn less than 30 seconds?\r\n\r\n\r\nSounds good, huh?\r\n\r\n\r\nIt comes equipped with over 50 mind-blowing features that will stun you and your customers \r\n\r\n\r\nWrite, research, and proofread any text you want with 1 click\r\n\r\nGenerate AI-based designs with zero technical skills\r\n\r\nTranslate to over 55 different language \r\n\r\nGenerate Stunning videos without any video editing\r\n\r\nSell access to your chatbot and keep 100% of the profit\r\n\r\n\r\n\r\nIf that sounds like music to your ears… \r\n\r\n\r\nThen you’re in luck, because BrainBox is just launched \r\n\r\n\r\nAnd you can secure your Earlybird discount by clicking here: \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\n\r\nDon\'t miss this opportunity to revolutionize your online business with BrainBox. \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\nTry it now!\r\n\r\nBest regards,\r\n\r\n\r\nScott',''),(836,1,208,'6','Leon Peeples',''),(837,1,208,'2','347-747-7376',''),(838,1,208,'3','peeples.leon@outlook.com',''),(839,1,208,'4','Hello,\r\n\r\nWe are excited to introduce you to ElleVet, the trusted leader in hemp-based products for pets. In partnership with the esteemed Cornell University College of Veterinary Medicine, we conducted the first-ever study examining how hemp is metabolized by dogs. Our research has been a game-changer, allowing us to create products that are safe, effective, and formulated with the highest standards in mind.\r\n\r\nOur products have been tested and approved by leading veterinarians and recommended by pet parents, industry leaders, and national media outlets. With ElleVet, you can trust that your furry friend is getting the best possible care. We combine a love of science with a love of animals to create products that are gentle, yet effective, helping your pet feel their best.\r\n\r\nAt ElleVet, we believe that all pets deserve the very best care. That\'s why our products are made with only the highest quality ingredients and are rigorously tested to ensure safety and efficacy. Whether you\'re looking to support your pet\'s overall wellness or help manage specific conditions, our products can help.\r\n\r\nSo why wait? Give your furry friend the gift of wellness with ElleVet today. We are confident that you and your pet will love the results.\r\n\r\nThank you for considering ElleVet as your trusted source for pet wellness.\r\n\r\nhttps://shortz.pro/elle-vet\r\n\r\nBest regards.',''),(840,1,209,'6','Lillie Easton',''),(841,1,209,'2','03421 51 39 77',''),(842,1,209,'3','easton.lillie@gmail.com',''),(843,1,209,'4','https://bit.ly/ChatgptEbooks\r\n\r\nAre you tired of spending countless hours writing eBooks to grow your business or website? Are you looking for a fast and effective way to create unique eBooks without sacrificing quality? Look no further than our brand new PLR pack that turns ChatGPT into your own collection of over 10,000 unique eBooks!\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nWith this PLR pack, you can finally take advantage of the powerful capabilities of ChatGPT to create high-quality eBooks quickly and easily. Whether you\'re looking to grow your email list, generate more leads, or increase your revenue, our PLR pack has you covered.\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nOur pack includes a variety of niches to choose from, including business, health and wellness, personal development, and more. Plus, with over 10,000 unique eBooks, you\'ll never run out of content to share with your audience.\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nWhat\'s more, our PLR pack is fully customizable. You can edit, modify, and brand each eBook to suit your needs and preferences. This means that you can quickly and easily create eBooks that align with your brand and resonate with your audience.\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nDon\'t waste any more time writing eBooks from scratch. Get our brand new PLR pack today and turn ChatGPT into your own collection of over 10,000 unique eBooks! With our PLR pack, you\'ll have everything you need to grow your business and reach your goals. Order now and see the results for yourself! \r\n\r\nhttps://bit.ly/ChatgptEbooks',''),(844,1,210,'6','Roberto Kuhn',''),(845,1,210,'2','(07) 4090 3161',''),(846,1,210,'3','kuhn.roberto@gmail.com',''),(847,1,210,'4','https://bit.ly/GPTBlasterVip\r\n\r\nIntroducing GPT Blaster - the world\'s first true auto chat GPT website publisher that allows you to create set-and-forget websites in any niche on autopilot mode!\r\n\r\nWith GPT Blaster, you can harness the power of chat GPT to effortlessly create stunning websites that are optimized for maximum conversions. Simply choose your niche, set it and forget it, and watch as GPT Blaster does all the work for you.\r\n\r\nhttps://bit.ly/GPTBlasterVip\r\n\r\nWhether you\'re a seasoned marketer or just starting out, GPT Blaster is the perfect tool to take your business to the next level. Say goodbye to the hassle of website building and hello to effortless online success.\r\n\r\nSo why wait? Get started with GPT Blaster today and start building your dream website with ease!\r\n\r\nhttps://bit.ly/GPTBlasterVip',''),(848,1,211,'6','Rod Wallin',''),(849,1,211,'2','06-33899787',''),(850,1,211,'3','rod.wallin34@gmail.com',''),(851,1,211,'4','Is this still relevant to you?\r\nhttps://youtube.com/shorts/QjdZcVPJDqY?feature=share',''),(852,1,212,'6','Quinn Mendis',''),(853,1,212,'2','079 8378 6712',''),(854,1,212,'3','mendis.quinn43@gmail.com',''),(855,1,212,'4','https://bit.ly/GPTBlasterVip\r\n\r\nIntroducing GPT Blaster - the world\'s first true auto chat GPT website publisher that allows you to create set-and-forget websites in any niche on autopilot mode!\r\n\r\nWith GPT Blaster, you can harness the power of chat GPT to effortlessly create stunning websites that are optimized for maximum conversions. Simply choose your niche, set it and forget it, and watch as GPT Blaster does all the work for you.\r\n\r\nhttps://bit.ly/GPTBlasterVip\r\n\r\nWhether you\'re a seasoned marketer or just starting out, GPT Blaster is the perfect tool to take your business to the next level. Say goodbye to the hassle of website building and hello to effortless online success.\r\n\r\nSo why wait? Get started with GPT Blaster today and start building your dream website with ease!\r\n\r\nhttps://bit.ly/GPTBlasterVip',''),(856,1,214,'6','Shirley Holiday',''),(857,1,214,'2','(08) 9050 9498',''),(858,1,214,'3','holiday.shirley@googlemail.com',''),(859,1,214,'4','Hi,\r\n\r\nHave you been trying to make money online, but nothing seems to be working for you? Are you tired of scams promising you overnight success, only to leave you feeling disappointed and frustrated?\r\n\r\nI have good news for you! I want to introduce you to our Affiliate Marketing for Beginners E-book, which will teach you everything you need to know about affiliate marketing. This e-book is perfect for beginners who want to learn how to make money online with affiliate marketing.\r\n\r\nIn this e-book, you will learn how to choose the right affiliate programs, how to promote products, how to drive traffic to your website, and much more. With the knowledge and strategies you will learn in this e-book, you can start making money online today!\r\n\r\nDon\'t wait any longer! Get your copy of Affiliate Marketing for Beginners E-book now and start your journey towards financial freedom.\r\n\r\n===>>> https://bit.ly/affmstry\r\n\r\n* Open For people who Seriously want to learn Affiliate Marketing (Please ignore this message if you are not Interested)\r\n** It\'s NOT a Get Rich Scheme overnight. Seriously people only can get Good Results with our mentorship as it\'s PROVEN over & over again.\r\n\r\nRegards\r\n\r\nCharlie T\r\n90 Rugby ST. TX\r\n44435\r\n==========\r\nClick here to unsubscribe\r\nhttps://bit.ly/stop69',''),(860,1,215,'6','Sue',''),(861,1,215,'3','sue-73@live.com',''),(862,1,215,'4','How much do you charge to install a new oven',''),(863,1,216,'6','James McGregor',''),(864,1,216,'2','06-26274345',''),(865,1,216,'3','james@mcgregorinc.com',''),(866,1,216,'4','Hey, \r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://free-trial.adcreative.ai/april23\r\n\r\nBest,\r\n\r\nJames',''),(867,1,217,'6','Fanny Ugalde',''),(868,1,217,'2','079 7999 4381',''),(869,1,217,'3','ugalde.fanny@msn.com',''),(870,1,217,'4','https://bit.ly/WebbyAi_Vip\r\n\r\nAre you tired of spending countless hours building and hosting your own funnels and websites? Say hello to WebbyAi – the world\'s first AI-driven ClickFunnels killer app!\r\n\r\nWith WebbyAi, you can create breathtaking funnels and websites in any niche with just a single keyword – and all in less than 2 minutes! Our powerful AI technology does all the heavy lifting for you, so you can focus on what really matters – growing your business.\r\n\r\nhttps://bit.ly/WebbyAi_Vip\r\n\r\nNot only that, but WebbyAi also hosts your funnels and websites for you, saving you time and money. Plus, our platform is constantly evolving and improving, so you can be sure that you\'re always using the latest and greatest technology.\r\n\r\nSo whether you\'re a seasoned marketer or just starting out, WebbyAi is the perfect tool for taking your business to the next level. With our easy-to-use platform, you\'ll be creating stunning funnels and websites in no time. And with our AI-driven technology, you can be sure that your funnels and websites will be optimized for maximum conversions and sales.\r\n\r\nDon\'t waste another minute struggling with outdated funnel and website builders. Sign up for WebbyAi today and experience the power of the world\'s first AI-driven ClickFunnels killer app!\r\n\r\nhttps://bit.ly/WebbyAi_Vip',''),(871,1,218,'6','Phuriwat singkleebut',''),(872,1,218,'2','027 826 6463',''),(873,1,218,'3','Golf0956639665@gmail.com',''),(874,1,218,'4','I want to install my entire house with Philips hue lights.',''),(875,1,218,'5','Google',''),(876,1,219,'6','Alfredo Linney',''),(877,1,219,'2','01.63.49.21.11',''),(878,1,219,'3','alfredo.linney@gmail.com',''),(879,1,219,'4','Go High Level is a software solution designed to help you manage your customer relationships, automate your sales processes and boost your lead generation efforts. Sometimes you need an extra set of hands (or, in this case, brains) to get things done, and that’s where CRM tools like GHL come in.\r\n\r\nGoHighLevel is the brainchild of Shaun Clark. Shaun founded HighLevel in 2018 to help small businesses and agencies automate and scale. \r\n\r\nFull review link : https://worldnewspot.com/gohighlevel-review-2023-is-highlevel-worth-it/\r\n\r\nTry for Free..',''),(880,1,220,'6','Kandy Bushell',''),(881,1,220,'2','0353 2496918',''),(882,1,220,'3','bushell.kandy@hotmail.com',''),(883,1,220,'4','Looking for a competitive advantage? \r\n\r\nGet the edge on your competition with HighLevel. \r\n\r\nHighLevel was built to help agencies scale endlessly, automate processes, reduce churn, and efficiently run all of their digital marketing. \r\n\r\nWe’ve met with so many other marketers and know that agencies need a platform that can do it all.\r\n\r\nSign up for a free trial today and see how HighLevel can help you take your business to the next level!\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(884,1,221,'6','Vania Nathan',''),(885,1,221,'2','070 8933 3861',''),(886,1,221,'3','vania.nathan@yahoo.com',''),(887,1,221,'4','Claim your FREE Amazon gift card here, while supplies last. \r\n\r\nhttps://amzn.to/3UuXVwT',''),(888,1,222,'6','Sandeep',''),(889,1,222,'2','0210348542',''),(890,1,222,'3','panwarsandeep285@gmail.com',''),(891,1,222,'4','I’m looking electrical apprenticeship and I done pre-trade course from Ara institute',''),(892,1,222,'5','Ads',''),(893,1,223,'6','Joyce Booker',''),(894,1,223,'2','0660 775 60 05',''),(895,1,223,'3','joyce.booker@googlemail.com',''),(896,1,223,'4','https://bit.ly/GetGenie_Vip\r\n\r\nIntroducing GetGenie - Your Personal AI Assistant for Content & SEO!\r\n\r\nAre you tired of using multiple apps to manage your website\'s content and SEO? Look no further, GetGenie is here to replace all those apps with its AI magic and simple WordPress plugin.\r\n\r\nWith GetGenie, you can optimize your website\'s content and SEO with ease. Say goodbye to tedious keyword research and content optimization tasks, as GetGenie does it all for you, and in a fraction of the time.\r\n\r\nhttps://bit.ly/GetGenie_Vip\r\n\r\nGetGenie\'s intelligent algorithm analyzes your website\'s content and suggests the most relevant keywords to improve your search engine ranking. It even offers real-time content suggestions to help you create high-quality content that engages your audience and drives conversions.\r\n\r\nWith GetGenie, you no longer need to switch between different tools to monitor your website\'s performance. Its comprehensive analytics dashboard provides you with all the insights you need to make data-driven decisions.\r\n\r\nGetGenie\'s simple WordPress plugin makes it easy to integrate its features into your website, without the need for any technical expertise.\r\n\r\nSay hello to GetGenie, and say goodbye to the hassle of managing multiple apps for your content and SEO needs. Try it now, and experience the magic of AI for yourself!\r\n\r\nhttps://bit.ly/GetGenie_Vip',''),(897,1,224,'6','Millie Townsend',''),(898,1,224,'2','0273622382',''),(899,1,224,'3','millie.townsend@live.com',''),(900,1,224,'4','Hi there, we have purchased a house with a Mitsubishi ducted heat pump system. We’ve noticed that some rooms are getting a lot of heat and airflow while others aren’t getting much at all (if any). \r\nI’m wondering if the system needs to be rebalanced. \r\nIs this something you could look at for us? And if so, what would be the approximate cost involved? We are based in Lincoln. \r\nThanks!',''),(901,1,224,'5','Mitsubishi website list of authorised service centres',''),(902,1,225,'6','Christopher James',''),(903,1,225,'2','0386 5280221',''),(904,1,225,'3','christopherjamescharles9@gmail.com',''),(905,1,225,'4','Hiya!\r\n\r\nBoost your online biz with Systeme.io, an all-in-one website builder, email marketing, and sales funnel tool. \r\nNo coding skills needed! \r\n\r\nGet 30% OFF using my link:\r\n\r\nhttps://cutt.ly/System30\r\n\r\nPlus, access templates here for excellent prices:\r\n\r\nhttps://cutt.ly/Discounttemplates\r\n\r\nDon\'t miss out on this amazing deal! Happy website building!\r\n\r\nBest,\r\nChris,\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(906,1,226,'6','Ramona Hartsock',''),(907,1,226,'2','032 763 51 84',''),(908,1,226,'3','ramona.hartsock@gmail.com',''),(909,1,226,'4','Are you tired of spending countless hours managing your social media accounts? Do you want to take your social media presence to the next level without all the hassle? Look no further than ChatGPT4 (OpenAI) powered app for social media automation.\r\nIntroducing…Soci Ai\r\n\r\nChatGPT4 (OpenAI) Powered App for Social Media Automation\r\nAnd Content Creation\r\n\r\n==> Watch Full Demo Here https://warriorplus.com/o2/a/kp8x0p/0\r\nSociAl app is designed to make social media management a breeze. With just a few simple voice commands, you can auto-post, schedule, and automate your social media platforms like Facebook, TikTok, Instagram, and more. Soci Ai uses AI-powered algorithms to curate trending viral content, video reels, and posts that will drive massive traffic, views, and following to your accounts.\r\nHere are just a few of the features Soci Ai offers:\r\nEasy-to-use interface: Soci Ai is user-friendly and intuitive, making it easy for anyone to use.\r\nSchedule posts: You can schedule your posts in advance, ensuring that your social media presence remains consistent even when you\'re not actively posting.\r\nSiri-like voice commands: Soci Ai responds to voice commands, just like Siri. This means you can use it hands-free while on the go.\r\nTrending viral content: Soci Ai uses AI algorithms to curate trending viral content, video reels, and posts that are guaranteed to drive traffic to your social media accounts.\r\nMassive following: With Soci Ai, you can drive 10,000s of views, traffic, and massive following to your social media accounts with ease.\r\nAuto-post, schedule, and automate 12+ major Social media Platforms\r\nLive Streaming (Pre recorded video) On FB,Youtube,Instagram\r\nAi Short Video Generator\r\nAi Viral Content Generator\r\nAi Image Generator\r\nDon\'t let social media management be a burden any longer. Download Soci app today and see the results for yourself. Let ChatGPT4 (OpenAI) powered app automate your social media presence, so you can focus on what really matters.\r\nBecause for the early users of SociAi , we are offering access for just a low one-time price\r\n equivalent to the price of a takeout dinner for a couple.\r\n\r\nClick the button below right now to get started with Soci Ai\r\nhttps://warriorplus.com/o2/a/kp8x0p/0',''),(910,1,227,'6','datafastproxiespx01',''),(911,1,227,'2','88631973461',''),(912,1,227,'3','datafastpx@gmail.com',''),(913,1,227,'4','DataFast Proxies, Definitive Solution in IPv6 Proxy to Solve CAPTCHA, reCAPTCHA, funCAPTCHA! \r\nIPv6 Proxy for XEvil 4, XEvil 5, XEvil Beta 6, CAPMONSTER 2! \r\n \r\n- High Speed IPv6 Proxy \r\n- Virgin IPv6 proxy \r\n- Anonymous IPv6 proxy \r\n- Rotating IPv6 Proxy (configurable) \r\n- Static IPv6 proxy (configurable) \r\n- 24 Hour IPv6 Proxy \r\n- IPv6 Proxy (Uptime 99.9%) \r\n \r\nDataFast Proxies | Definitive Solution in IPv6 Proxy! \r\nhttps://datafastproxies.com/ \r\n \r\nContact: \r\nhttps://datafastproxies.com/contact/',''),(914,1,227,'5','Google',''),(915,1,228,'6','Analisa Segundo',''),(916,1,228,'2','055 843 19 10',''),(917,1,228,'3','segundo.analisa@gmail.com',''),(918,1,228,'4','Did you hear about AiPal?\r\n\r\nThe World’s First ChatGPT 4-powered “google-killer” app is LIVE…\r\n\r\n>> See AiPal In Action…https://warriorplus.com/o2/a/fs4p4j/0\r\n\r\n\r\nIn minutes from now, you can get access to…\r\n\r\n✅Fully ChatGPT 4-powered app…\r\n\r\n✅Generate human-like crisp & clear answers to complex questions in real-time…\r\n✅Create high-quality contents & charge anything you like…\r\n✅Design and sell jaw-dropping ai visuals, art, and images…\r\n✅Craft & sell high-converting marketing materials like sales scripts, video scripts, email swipes, and so much more…\r\n✅Create & sell stunning websites, and funnels codes…\r\n✅ Built-in Siri-like voice command technology…\r\n✅ Automate & revolutionize your repetitive routine tasks with Ai...\r\n✅ Converts Speech-To-Text\r\n✅ spinner/rewriter Your existing Content\r\n✅Translate Your Content to 200+ languages\r\n✅Generate Viral Idea\r\n✅Fix Grammar Errors\r\n✅Generate Startup Idea\r\n+ Much More…\r\n\r\nFinally, you don’t have to deal with…\r\n❌Expensive copywriters and content writers…\r\n❌Expensive website & funnel designers…\r\n❌Expensive Ai graphics & art creators…\r\n\r\n>> Click here https://warriorplus.com/o2/a/fs4p4j/0 to see AiPal DEMO\r\n\r\nYou’re just 3 steps away..\r\n\r\nStep 1: Ask: Give Siri-like voice commands or type your desired specification about anything that want like content, ai graphics, marketing materials, etc…\r\n\r\nStep 2: Generate: AiPal harnesses the power of ChatGPT 4 & OpenAi and generates high-quality content, ai graphics, marketing materials, or anything you desired for…\r\n\r\nStep 3: Profit: Start profiting by selling these high-in-demand marketing contents, ai graphics and so much more to your clients…\r\n\r\nOverall, AiPal offers superior service, and premium experience and gives you a DFY business.\r\n\r\nAs a valued customer we’re giving you 3 off Disc0unt for the entire funnel\r\n \r\nCoupon Code: AiPal3\r\n\r\n>> Check AiPal In Action While Its Still Around… https://warriorplus.com/o2/a/fs4p4j/0\r\n\r\nSee you in the next mail,',''),(919,1,229,'6','Eric Jones',''),(920,1,229,'2','555-555-1212',''),(921,1,229,'3','ericjonesmyemail@gmail.com',''),(922,1,229,'4','Dear juiceelectrical.co.nz Administrator! my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(923,1,230,'6','Ken Cuellar',''),(924,1,230,'3','ken.cuellar@gmail.com',''),(925,1,230,'4','Go High Level is a software solution designed to help you manage your customer relationships, automate your sales processes and boost your lead generation efforts. Sometimes you need an extra set of hands (or, in this case, brains) to get things done, and that’s where CRM tools like GHL come in.\r\n\r\nGoHighLevel is the brainchild of Shaun Clark. Shaun founded HighLevel in 2018 to help small businesses and agencies automate and scale. \r\n\r\nFull review link : https://worldnewspot.com/gohighlevel-review-2023-is-highlevel-worth-it/\r\n\r\nTry for Free..',''),(926,1,231,'6','Adam Williams',''),(927,1,231,'2','05971 96 66 10',''),(928,1,231,'3','adam.williams@gmail.com',''),(929,1,231,'4','You\'re just one click...\r\n\r\n\r\nFrom plugging into a turbo-charged AI...\r\n\r\n\r\nThat make $400 per day...\r\n\r\n\r\n$55 per hour...\r\n\r\n\r\nEven $2,200 per day...\r\n\r\n\r\nJust by pasting a few words...\r\n\r\n\r\nInto a new AI app - that is the ULTIMATE AI available right now\r\n\r\n\r\nThat’s because it’s just the most PROFITABLE AI.\r\n\r\n\r\nSee for yourself:\r\n\r\n\r\n==> https://bit.ly/3Vh88NO\r\n\r\n\r\nWhy?\r\n\r\n\r\nBecause...\r\n\r\n\r\nEVERY time you paste into the AI...\r\n\r\n\r\nIt builds an instant Internet asset...\r\n\r\n\r\nA new and unique asset, that makes FAST commissions...\r\n\r\n\r\nGets buyer leads...\r\n\r\n\r\nBanks commissions...\r\n\r\n\r\nCrushes ClickBank...\r\n\r\n\r\nSmashes Shopify...\r\n\r\n\r\nCloses on UpWork...\r\n\r\n\r\nAnd 27x other mega-sites...\r\n\r\n\r\nSee the INSANE proof from THIS WEEK here:\r\n\r\n\r\n==> https://bit.ly/3Vh88NO\r\n\r\n\r\nYES. This uses Chat-GPT (and 4x other secret AIs).\r\n\r\n\r\nAnd yes, you can do this, right from your browser.\r\n\r\n\r\nWithout needing to understand...\r\n\r\n\r\nHow the AI works...\r\n\r\n\r\nWhy the AI works...\r\n\r\n\r\nOr any of the hardcore tech stuff needed to make this happen.\r\n\r\n\r\nCurious?\r\n\r\n\r\nHit this link:\r\n\r\n\r\n==> https://bit.ly/3Vh88NO\r\n\r\n\r\nLOOK. With the AI.. and THIS new tactic...\r\n\r\n\r\nProfiting in 2023 is as DONE FOR YOU as it gets.\r\n\r\n\r\nSimply PASTE in a few words from any site.\r\n\r\n\r\nAnd the AI does the rest...\r\n\r\n\r\nSeriously, this is THE holy grail.\r\n\r\n\r\nA NEW money-making method...\r\n\r\n\r\nThat requires no writing whatsoever.\r\n\r\n\r\nIn fact, all you need to open up a website...\r\n\r\n\r\nCopy a few words from the website...\r\n\r\n\r\nPaste it into the AI software tool...\r\n\r\n\r\nAnd wait for the AI to build you an income-generating asset...\r\n\r\n\r\nFrom scratch, right from your browser\r\n\r\n\r\nGo here NOW:\r\n\r\n\r\n==> https://bit.ly/3Vh88NO\r\n\r\n\r\nIt\'s NEW for April 2023. No-one else knows about this.\r\n\r\n\r\nThis is a BRAND NEW method that NO-ONE knows about…\r\n\r\n\r\nIt’s completely UNTAPPED and new...\r\n\r\n\r\nAnd even though it\'s a few days old...\r\n\r\n\r\nIt\'s already proven - and ready for you to try!\r\n\r\n\r\n==> https://bit.ly/3Vh88NO\r\n\r\n\r\nThis is 100% DONE FOR YOU online profiteering.\r\n\r\n\r\nIt\'s as push-button simple for you as possible.\r\n\r\n\r\nThat\'s why THIS... is world’s first COPY AND PASTE moneymaking AI.\r\n\r\n\r\nEven if you’re brand new, don’t have a list...\r\n\r\n\r\nDon\'t have a product to sell...\r\n\r\n\r\nAnd even if you don\'t have a website... \r\n\r\n\r\nYou don’t need one because...\r\n\r\n\r\nBecause the AI will build them all for you - AUTOMATICALLY - IF you can copy... and paste.\r\n\r\n\r\nSo what are you waiting for?\r\n\r\n\r\nClick below to get started.\r\n\r\n\r\n==> https://bit.ly/3Vh88NO\r\n\r\n\r\nPS. Do it now, the price jumps IN THE NEXT FEW MINUTES.\r\n\r\n\r\nAnd then again.. and AGAIN.. EVERY hour after that!\r\n\r\n\r\n==> https://bit.ly/3Vh88NO',''),(930,1,232,'6','Erma Warfe',''),(931,1,232,'3','erma.warfe@yahoo.com',''),(932,1,232,'4','Are you struggling to achieve online success due to roadblocks like IP bans, location restrictions, and privacy concerns? Instant Proxies can help.\r\n\r\nOur high-quality proxies are the key to unlocking your online potential. With our service, you\'ll have access to:\r\n\r\nA large pool of high-speed, anonymous proxies\r\nIPs from multiple locations and countries\r\nDedicated support and 24/7 uptime\r\nWhether you\'re a marketer, data analyst, or just someone looking to protect their online privacy, Instant Proxies can help you overcome the obstacles standing in your way. Don\'t let roadblocks hold you back any longer. \r\n\r\nSign up for Instant Proxies today and TEST THEM FOR FREE: https://tinyurl.com/instaproxie',''),(933,1,233,'6','Steffen Quinn',''),(934,1,233,'2','06-28763805',''),(935,1,233,'3','steffen.quinn@hotmail.com',''),(936,1,233,'4','Are you interested in starting or scaling a YouTube channel, without having to show your face or becoming a traditional YouTuber?\r\n\r\nPrice going up soon - act now!\r\n\r\nhttps://shortz.pro/tube-mastery',''),(937,1,234,'6','Shanon Muir',''),(938,1,234,'2','(22) 8047-8371',''),(939,1,234,'3','muir.shanon44@gmail.com',''),(940,1,234,'4','https://bit.ly/steel_bites\r\n\r\nGet Stronger Teeth and Healthier Gums in Just 60 Seconds!\r\n\r\nHi,\r\n\r\nAre you tired of struggling with tooth decay and weak gums? If so, then you\'re in the right place. I wanted to reach out and let you know about a simple and effective 60-second dental trick that can rebuild your teeth and gums while eliminating tooth decay. \r\n\r\nIt\'s a proven method that has helped countless people get back their dental health and avoid costly dental procedures like implants. Users are raving about how effective this trick is, and they can\'t believe the results they\'re seeing in just a matter of days. \r\n\r\nIf you\'re interested in learning more about this incredible trick and how it can transform your dental health, then I invite you to check out our program. You\'ll discover the step-by-step instructions you need to start using this dental trick tonight before bed, and you\'ll be on your way to healthier teeth and gums in no time.\r\n\r\nDon\'t let dental issues hold you back any longer. Take control of your dental health today with our proven 60-second dental trick. Click the link below to get started:\r\n\r\nhttps://bit.ly/steel_bites\r\n\r\nThank you for your time, and I look forward to hearing from you soon!\r\n\r\nBest regards,\r\n\r\nhttps://bit.ly/steel_bites',''),(941,1,235,'6','Ezekiel Kahl',''),(942,1,235,'2','01.50.66.88.07',''),(943,1,235,'3','kahl.ezekiel26@gmail.com',''),(944,1,235,'4','https://bit.ly/Crypto_Ai\r\n\r\nWelcome to The Crypto Code - the ultimate solution for investors looking to succeed in the world of crypto. Our comprehensive system is designed to give you a competitive edge, and at the heart of it all is our cutting-edge AI technology.\r\n\r\nOur proprietary WaveBot and Predictions Bot are just the beginning. With our AI technology built in throughout our system, you\'ll have access to intelligent and informed trading decisions that maximize your profits and keep you ahead of the curve.\r\n\r\nhttps://bit.ly/Crypto_Ai\r\n\r\nWhether you\'re a beginner just starting out or a seasoned investor looking to take your crypto game to the next level, The Crypto Code has everything you need to succeed. Our comprehensive training system walks you through specific strategies that have been proven to bring success in the world of crypto, and our powerful bots and software tools make trading easy and profitable.\r\n\r\nBut what really sets The Crypto Code apart is our AI technology. With our intelligent algorithms analyzing market trends and data, you\'ll have an unbeatable edge in the crypto market. Join The Crypto Code today and take your trading to the next level with the power of AI.\r\n\r\nhttps://bit.ly/Crypto_Ai',''),(945,1,236,'6','Robertphync',''),(946,1,236,'2','84159241857',''),(947,1,236,'3','zelatcol@gmail.com',''),(948,1,236,'4','হাই, আমি আপনার মূল্য জানতে চেয়েছিলাম.',''),(949,1,236,'5','Google',''),(950,1,237,'6','Kellee Lui',''),(951,1,237,'2','05725 87 72 51',''),(952,1,237,'3','kellee.lui@gmail.com',''),(953,1,237,'4','Looking for a competitive advantage? \r\n\r\nGet the edge on your competition with HighLevel. \r\n\r\nHighLevel was built to help agencies scale endlessly, automate processes, reduce churn, and efficiently run all of their digital marketing. \r\n\r\nWe’ve met with so many other marketers and know that agencies need a platform that can do it all.\r\n\r\nSign up for a free trial today and see how HighLevel can help you take your business to the next level!\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(954,1,238,'6','Eric Jones',''),(955,1,238,'2','555-555-1212',''),(956,1,238,'3','ericjonesmyemail@gmail.com',''),(957,1,238,'4','To the juiceelectrical.co.nz Webmaster.\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(958,1,239,'6','Eric Jones',''),(959,1,239,'2','555-555-1212',''),(960,1,239,'3','ericjonesmyemail@gmail.com',''),(961,1,239,'4','Dear juiceelectrical.co.nz Webmaster!\r\n\r\nThis is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(962,1,240,'6','Rosetta Faunce',''),(963,1,240,'3','faunce.rosetta@gmail.com',''),(964,1,240,'4','https://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nIntroducing DFY LinkedIn Mastery - the ultimate solution for professionals looking to master LinkedIn and boost their career or business. With our exclusive access to high-quality, done-for-you LinkedIn mastery resources, you can take your LinkedIn game to the next level without any effort!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nOur DFY LinkedIn Mastery package includes:\r\n\r\n- Professionally written LinkedIn profile templates that grab attention and showcase your skills and expertise.\r\n- Proven strategies for growing your LinkedIn network and generating high-quality leads.\r\n- Step-by-step guidance on how to optimize your LinkedIn content for maximum visibility and engagement.\r\n- Access to our exclusive LinkedIn training videos that provide insider tips and tricks for LinkedIn success.\r\n- And much more!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nWith DFY LinkedIn Mastery, you\'ll get everything you need to master LinkedIn and achieve your goals. Whether you\'re a job seeker, a business owner, or a marketer, our package will help you leverage the power of LinkedIn to achieve success and grow your career or business.\r\n\r\nAnd the best part? You get 100% full unrestricted use rights to use, rebrand, re-sell, and profit from our DFY LinkedIn Mastery package. That\'s right - you can use our package to grow your own LinkedIn presence, or you can sell it to others for a profit!\r\n\r\nSo why wait? Get exclusive instant access to DFY LinkedIn Mastery today and start taking your LinkedIn game to the next level!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery',''),(965,1,244,'6','Jacqueline River',''),(966,1,244,'2','956 73 319',''),(967,1,244,'3','jacqueline.river@yahoo.com',''),(968,1,244,'4','Hi \r\nI wanted to reach out and let you know about a final opportunity to get your hands on AI Buddy, the cutting-edge artificial intelligence software that is taking the market by storm.\r\nAi Buddy launch is closing in 4 hours from now.\r\nDon\'t miss out on this incredible opportunity to transform the way you work.\r\nAct now and get AI Buddy https://warriorplus.com/o2/a/qzs6yx/0\r\nAs you may already know, AI Buddy is designed to revolutionize the way you work and simplify your daily tasks.\r\nThe world’s first ChatGPT-powered “google-killer” app that…\r\n\r\n✅ Generates human-like responses to complex questions…\r\n✅ Creates high-quality content…\r\n✅ Crafts high-converting marketing materials…\r\n✅ Writes codes…\r\n✅ And designs stunning Ai graphics & art…\r\n\r\nBut here\'s the catch: this is the last chance to take advantage of our exclusive offer and get AI Buddy at a discounted price. That\'s right, time is running out and you don\'t want to miss this opportunity to enhance your productivity and streamline your work process.\r\nSo what are you waiting for? Get your hands on AI Buddy today and experience the future of artificial intelligence. Hurry, this offer won\'t last long!\r\nAccess AiBuddy Now https://warriorplus.com/o2/a/qzs6yx/0\r\n\r\nBest regards,',''),(969,1,245,'6','Mike Wesley',''),(970,1,245,'2','88296894484',''),(971,1,245,'3','no-replyinquiff@gmail.com',''),(972,1,245,'4','Hi there \r\n \r\nJust checked your juiceelectrical.co.nz in MOZ and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed Domain Authority score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Semrush DA is now possible \r\nhttps://www.monkeydigital.co/semrush-da/ \r\n \r\nThanks and regards \r\nMike Wesley',''),(973,1,245,'5','Google',''),(974,1,246,'6','Finlay Crandall',''),(975,1,246,'2','856-336-5270',''),(976,1,246,'3','finlay.crandall@googlemail.com',''),(977,1,246,'4','https://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nIntroducing Nexus - the game-changing add-on that harnesses the power of AI to help you drive massive amounts of free traffic from YouTube in just 30 seconds! With Nexus, you\'ll never have to worry about tedious video creation, tech skills or even being on camera. \r\n\r\nNexus is the ultimate solution for anyone who wants to skyrocket their online business without breaking the bank. You can now tap into the billions of users on YouTube and convert them into loyal customers, effortlessly. \r\n\r\nWith its cutting-edge technology, Nexus finds you the most profitable niches and keywords, so you can start generating massive amounts of targeted traffic to your offers, products or services within minutes. This powerful tool does all the heavy lifting for you, so you can focus on what really matters - growing your business and making more money.\r\n\r\nBut that\'s not all. With Nexus, you\'ll also get access to a step-by-step training that shows you how to maximize your results and scale your business to new heights. You\'ll learn the insider secrets of top marketers who are already crushing it with YouTube traffic and how to replicate their success.\r\n\r\nDon\'t miss out on this incredible opportunity to get your hands on Nexus today. Say goodbye to the frustration and overwhelm of trying to generate traffic on your own and say hello to a new era of online success. With Nexus, you\'ll be able to enjoy a consistent flow of targeted traffic that converts into real profits, all while working less and enjoying more freedom. \r\n\r\nOrder now and start seeing results in as little as 30 seconds!\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI',''),(978,1,247,'6','Dulcie Kallas',''),(979,1,247,'2','(07) 4075 4761',''),(980,1,247,'3','dulcie.kallas63@msn.com',''),(981,1,247,'4','https://bit.ly/WebbyAi_Vip\r\n\r\nAre you tired of spending countless hours building and hosting your own funnels and websites? Say hello to WebbyAi – the world\'s first AI-driven ClickFunnels killer app!\r\n\r\nWith WebbyAi, you can create breathtaking funnels and websites in any niche with just a single keyword – and all in less than 2 minutes! Our powerful AI technology does all the heavy lifting for you, so you can focus on what really matters – growing your business.\r\n\r\nhttps://bit.ly/WebbyAi_Vip\r\n\r\nNot only that, but WebbyAi also hosts your funnels and websites for you, saving you time and money. Plus, our platform is constantly evolving and improving, so you can be sure that you\'re always using the latest and greatest technology.\r\n\r\nSo whether you\'re a seasoned marketer or just starting out, WebbyAi is the perfect tool for taking your business to the next level. With our easy-to-use platform, you\'ll be creating stunning funnels and websites in no time. And with our AI-driven technology, you can be sure that your funnels and websites will be optimized for maximum conversions and sales.\r\n\r\nDon\'t waste another minute struggling with outdated funnel and website builders. Sign up for WebbyAi today and experience the power of the world\'s first AI-driven ClickFunnels killer app!\r\n\r\nhttps://bit.ly/WebbyAi_Vip',''),(982,1,248,'6','Shawna Laws',''),(983,1,248,'2','18663021068',''),(984,1,248,'3','hitcloudlocal+30@gmail.com',''),(985,1,248,'4','Hey,\r\n\r\nDon\'t want to save time and money while ranking your online business? Then stop reading. But if you\'re ready to revolutionize your online presence overnight, we\'ve got the game-changing solution you\'ve been looking for!\r\n\r\nOur A.I. Cloud Stacking software guarantees top rankings online, boosts Google My Business listings within hours, and creates thousands of humanized articles, all without requiring any A.I. prompt engineering. And unlike other A.I. content software, Google can\'t even tell that it\'s not human-written!\r\n\r\nOur software generates thousands of pages of humanized content in just minutes, automatically creates FAQs, schema markup, and inner page linking, and creates massively authoratative backlinks that you need to stand out to Google. \r\n\r\nThese sites that HITCloud A.I. creates have massive metrics (Average DA/DR of 80+) and instant indexing (ie they are picked up and put on Google crazy fast), it\'s like having your own personal team of developers and content creators working for you at lightning speed.\r\n\r\nBut don\'t just take our word for it - see for yourself by watching our short demo: https://now.hitcloud.io. In less than 15 minutes, we\'ll show you how to set up a 50-page website that instantly pushes power to any site you want, and can rank literally any entity on the planet.\r\n\r\nSay goodbye to ineffective marketing strategies and hello to a brighter online future! Watch our demo now and experience the power of A.I. Cloud Stacking firsthand.\r\n\r\nHead to https://now.hitcloud.io to learn more about our A.I. marketing, A.I. website creation, and cloud stacking SEO backlink software, and start improving your website\'s ranking today!\r\n\r\nP.S. If you\'re still manually generating backlinks, creating websites, paying for SEO, etc...it\'s time to let go of the past and join us in the future of A.I. backlinks. Trust us, your fingers will thank you.\r\n\r\nTalk Soon!',''),(986,1,249,'6','Megan Atkinson',''),(987,1,249,'2','0470 29 21 26',''),(988,1,249,'3','meganatkinson352@gmail.com',''),(989,1,249,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 400-1200+ followers per month.\r\n- Real, human followers: People follow you because they are interested in your business or niche.\r\n- Safe: All actions are made manually. We do not use any bots.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you are interested, and would like to see some of our previous work, let me know and we can discuss further.\r\n\r\nKind Regards,\r\nMegan',''),(990,1,250,'6','Tegan Epps',''),(991,1,250,'2','0477 46 77 48',''),(992,1,250,'3','epps.tegan70@gmail.com',''),(993,1,250,'4','Hey there,\r\n\r\nCanva not cutting it for your small business? (spoiler alert: you’re not alone!)\r\n \r\nUse the power of AI to generate sales-optimized creatives lightning fast. No fuss. No design skills required.\r\n\r\nA few clicks and words typed out – and ad creatives for your small business are DONE.\r\n \r\nIt’s that easy. No expensive outsourcing. No spending hours figuring it out yourself.\r\n \r\nStart your FREE 7-day trial today -> https://bit.ly/get7daystrialnow\r\n\r\nBest Regards\r\n\r\nChryl J\r\n77 Rugby St.\r\nLondon\r\n52542\r\n=====\r\nClick here to unsubscribe\r\nhttps://bit.ly/stop69',''),(994,1,251,'6','Steve Johnson',''),(995,1,251,'2','05193 58 44 38',''),(996,1,251,'3','steve.johnson@gmail.com',''),(997,1,251,'4','Have you seen this?\r\n\r\n\r\nGlynn just released his latest system...\r\n\r\n\r\nThe AI 30K Copy & Paste Commissions!!\r\n\r\n\r\n=> CLICK HERE FOR INSTANT ACCESS: https://bit.ly/3zDMfhy\r\n\r\n\r\nThis one shows you how\r\n\r\nto make 30K THIS MONTH!\r\n\r\n\r\nI\'ve tested it and it\'s proven to work!!\r\n\r\n\r\nI even bought it myself.\r\n\r\n\r\nOnly costs about 17 bux...\r\n\r\n\r\nPlus, I got the 10 incredible\r\n\r\nbonuses worth thousands!\r\n\r\n\r\nThis is probably the biggest\r\n\r\ndigital deal of the year.\r\n\r\n\r\nCheck it out before it\'s too late...\r\n\r\n\r\n=> Click here to secure your access: https://bit.ly/3zDMfhy\r\n\r\n\r\nBest regards, \r\n\r\n\r\nSteve',''),(998,1,252,'6','Wilfredrof',''),(999,1,252,'2','85139745385',''),(1000,1,252,'3','emailsending222@gmail.com',''),(1001,1,252,'4','We at ideahommy.com offering home and garden items supply. Many category of products such as decoration, kitchen pantry, household cleaning supply and others. Very Affordable prices for quality products. Free shipping worldwide and we give guarantee to our customer satisfaction. Checkout our online store and subscribe to our newsletter and discover discount, new offer , new arrival of products and many more.... http://Ideahommy.com serve your need...',''),(1002,1,252,'5','Google',''),(1003,1,253,'6','Wynne Zhang',''),(1004,1,253,'2','0273996038',''),(1005,1,253,'3','wynnezhang19@gmail.com',''),(1006,1,253,'4','Hi, my BC batten holders are broken. I need to replace them. I need to replace two. How much does it cost to replace them? Do I need to buy the batten holders by myself? Or the price is included? Cheers',''),(1007,1,253,'5','Website',''),(1008,1,254,'6','Jolene Bauman',''),(1009,1,254,'2','21-29-43-26',''),(1010,1,254,'3','jolene.bauman@outlook.com',''),(1011,1,254,'4','Introducing High Ticket AI, the groundbreaking new product that is revolutionizing the way entrepreneurs make money online. With our state-of-the-art AI technology, you can now tap into a world of untapped potential and start making $5k, $10k, $15k and even $20k payments straight into your bank account. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nWe know you\'ve tried everything under the sun to make money online, from affiliate marketing to dropshipping, and you\'re tired of all the empty promises and false hope. That\'s why we created High Ticket AI - to finally give you the breakthrough you\'ve been waiting for. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nOur AI system is unlike anything you\'ve ever seen before. It\'s not some cheap gimmick or software that\'s been cobbled together by some fly-by-night operator. No, our system is the real deal, built from the ground up by a team of expert developers and AI engineers. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nAnd the best part? You don\'t need any technical skills or experience to start using High Ticket AI. Our intuitive, user-friendly interface makes it easy for anyone to start making money with AI - even if you\'ve never heard of the technology before. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nBut don\'t take our word for it - listen to what some of our satisfied customers have to say: \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\n\"I was skeptical at first, but after using High Ticket AI for just a few days, I was blown away by the results. I\'ve never seen anything like it before.\" - John D. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\n\"I\'ve been struggling to make money online for years, but High Ticket AI has finally given me the breakthrough I\'ve been looking for. I\'m making more money than I ever thought possible.\" - Sarah K. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nSo what are you waiting for? If you\'re tired of struggling to make ends meet and you\'re ready to finally start making the kind of money you deserve, then High Ticket AI is the answer. With our brand new AI technology, you can crush 2023 and beyond. Don\'t wait - get started today and start living the life you\'ve always dreamed of. \r\n\r\nhttps://bit.ly/HighTicketAI2023',''),(1012,1,255,'6','Rubye Winfrey',''),(1013,1,255,'2','(02) 6763 8646',''),(1014,1,255,'3','rubye.winfrey@msn.com',''),(1015,1,255,'4','Go High Level is a software solution designed to help you manage your customer relationships, automate your sales processes and boost your lead generation efforts. Sometimes you need an extra set of hands (or, in this case, brains) to get things done, and that’s where CRM tools like GHL come in.\r\n\r\nGoHighLevel is the brainchild of Shaun Clark. Shaun founded HighLevel in 2018 to help businesses and agencies automate and scale. \r\n\r\nFull review link : https://worldnewspot.com/gohighlevel-review-2023-is-highlevel-worth-it/\r\n\r\nTry for Free..',''),(1016,1,256,'6','Roosevelt Selig',''),(1017,1,256,'2','06-50963760',''),(1018,1,256,'3','selig.roosevelt94@gmail.com',''),(1019,1,256,'4','https://bit.ly/Rpm_Vip\r\n\r\nHey, entrepreneurs and affiliate marketers! Are you ready to take your game to the next level? Check out RPM 3.0 at https://bit.ly/Rpm_Vip\r\n\r\nAttention all entrepreneurs and affiliate marketers! RPM 3.0 is here and it\'s a game-changer! Say goodbye to the days of editing and tweaking - our new autotag technology sets up a full system for you! Get started today at https://bit.ly/Rpm_Vip \r\n\r\nThis is not the RPM you knew and loved, this is a new beast entirely! Our higher converting pages and many new features mean that you can finally reach the income levels you\'ve always dreamed of. Don\'t wait any longer, try RPM 3.0 now at https://bit.ly/Rpm_Vip\r\n\r\nOur unique affiliate marketing system means you can earn from dozens of income streams using just one main link that tracks across all the income streams we have. That\'s right, dozens of income streams with just one link! Don\'t miss out on this opportunity to transform your business and start earning like never before. \r\n\r\nSign up for RPM 3.0 today at https://bit.ly/Rpm_Vip\r\n\r\nAre you ready to take your income to the next level? RPM 3.0 is the tool you\'ve been waiting for. Don\'t miss out on this opportunity to transform your business and start earning like never before. Try RPM 3.0 today at https://bit.ly/Rpm_Vip',''),(1020,1,257,'6','Sadie Redrick',''),(1021,1,257,'2','077 2304 3901',''),(1022,1,257,'3','sadie.redrick25@gmail.com',''),(1023,1,257,'4','https://bit.ly/RoboCHAT_Vip\r\n\r\nAre you tired of spending endless hours building and maintaining your own chatbot platform? Look no further than RoboCHAT! Our revolutionary app lets you create your very own AI chatbot platform with just one click. \r\n\r\nRoboCHAT fuses the powerful AI technologies of both Google and Microsoft to create a platform that is unmatched by anything else on the market, including ChatGPT. This means that your chatbot will be smarter, faster, and more intuitive than ever before, making it the perfect tool for engaging with your customers and driving sales.\r\n\r\nhttps://bit.ly/RoboCHAT_Vip\r\n\r\nNot only that, but with RoboCHAT, you\'ll start earning money every time someone engages with your chatbot. That\'s right – you can turn your chatbot into a powerful revenue stream, all without lifting a finger.\r\n\r\nSo why wait? Sign up for RoboCHAT today and experience the power of the world\'s most advanced chatbot platform. With just one click, you can transform your business and start seeing real results. Don\'t miss out – get started with RoboCHAT now!\r\n\r\nhttps://bit.ly/RoboCHAT_Vip',''),(1024,1,258,'6','Eric Jones',''),(1025,1,258,'2','555-555-1212',''),(1026,1,258,'3','ericjonesmyemail@gmail.com',''),(1027,1,258,'4','Hello juiceelectrical.co.nz Administrator! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1028,1,259,'6','Eric Jones',''),(1029,1,259,'2','555-555-1212',''),(1030,1,259,'3','ericjonesmyemail@gmail.com',''),(1031,1,259,'4','Dear juiceelectrical.co.nz Administrator. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1032,1,260,'6','Merri Messerly',''),(1033,1,260,'2','032 856 77 19',''),(1034,1,260,'3','bigmanlanre@gmail.com',''),(1035,1,260,'4','Did you know that if you own a website, you are GUARANTEED to be sued at least \r\n$50,000? \r\n\r\nWhy? Because right now (and unknown to you) your website is violating \r\nthis Government Internet Law…which you had no idea even existed.\r\n\r\nAnd because you haven’t fixed this little problem on your website…you will\r\nend up becoming a victim…to get-rich-quick people…who would gladly take \r\nyou to court.\r\n\r\nIt happened to famous R&B singer Beyonce, who was shocked when she was\r\nsued because her website…was not in compliance with this Government Internet\r\nLaw. \r\n\r\nRight now, the lawsuits are rising…as many website owners…are shocked to\r\nfind themselves in court…and…are FORCED to settle out of court for outrageous\r\namounts of money.\r\n\r\nThe amounts are so ridiculous that even…big and well-known companies like…\r\n\r\nNetflix not only had to pay the defendants but it spent over $755,000 in attorney \r\nfees alone.\r\n\r\nTarget had to pay a jaw-dropping $6 million in damages. And…\r\n\r\nHarvard did not only settle out of court but also spent $1,575,000 in legal costs.\r\n\r\nEven NBC News, ABC News, Fox Business News, and other stations have reported\r\non this growing and alarming lawsuits all over the place.\r\n\r\nThe bottom line: Thousands of companies…are becoming victims of these insane \r\nlawsuits…which are already sweeping websites across the internet. \r\n\r\nYou need to be aware, that MANY scam artists…now see this as way to make a \r\nfast buck. So, they are browsing the internet and looking for any website…that is\r\nin violation of this Government Internet Law. If unfortunately, they find your website\r\n…you can be rest assured…YOU WILL BE SUED!\r\n\r\nNow, if you too don’t want your website to be next victim of this INEVITABLE lawsuit \r\nshakedowns…and…would like to know what these laws are…and…HOW TO FIX IT \r\nFAST…AND PROTECT YOURSELF…\r\n\r\nThen just go to this website, for the thrilling details…\r\n\r\n https://t2m.io/9nArWsa',''),(1036,1,261,'6','Aurélie Lefebvre',''),(1037,1,261,'2','0150-7753228',''),(1038,1,261,'3','contact@salesassistant.com',''),(1039,1,261,'4','Hello!\r\n\r\nI am happy to introduce you to the future of commercial agents : a new AI assistant.\r\n\r\nSay goodbye to boring chatbots on your website that don\'t offer an immersive, engaging, and personalized customer experience.\r\n\r\nWith this generative AI bot, you can now offer 24/7 customer support in 120 languages at a fraction of the cost of a traditional customer service representative.\r\n\r\nBut that\'s not all. Here are 11 reasons why you should consider this new conversational AI to improve customer experience and increase sales:\r\n\r\n- Improve customer engagement: with this AI, you can provide personalized assistance to each visitor of your website, helping them navigate the site and find what they are looking for. This increases the chances of converting visitors into customers.\r\n\r\n- Availability 24/7: your generative AI bot runs continuously, even outside of business hours, ensuring that your website is always available for potential customers, no matter where they are in the world.\r\n\r\n- Cost-effectiveness: hiring a customer service representative can be expensive, especially for small businesses. The AI provides continuous support at a fraction of the cost.\r\n\r\n- Multilingual support: with this AI, your generative AI bot is pre-trained in over 150 languages, making it easy to assist customers from around the world. This improves accessibility and helps you reach a wider audience.\r\n\r\n- Fast response times: generative AI bots can instantly respond to customer requests without the need for human intervention. This improves customer satisfaction and reduces wait times.\r\n\r\n- Increased efficiency: by automating repetitive tasks, a generative AI bot can free up your customer service team to focus on more complex issues that require human attention.\r\n\r\n- Scalability: your generative AI bot can handle virtually an unlimited number of customers simultaneously, making it easy to scale your customer service operations as your business grows.\r\n\r\n- Data collection: by analyzing customer interactions with your generative AI bot, you can gain valuable insights into their needs and preferences. This information can be used to improve your products and services and better target your marketing efforts.\r\n\r\n- Personalization: generative AI bots can use machine learning algorithms to personalize their interactions with customers, providing personalized recommendations and improving the overall customer experience.\r\n\r\n- Brand consistency: by using a generative AI bot, you can ensure that all customer interactions with your brand are consistent and reflect the values and messages of your company.\r\n\r\n- Increased sales: by improving customer engagement, providing fast and efficient assistance, and offering personalized recommendations, a generative AI bot can help you convert more website visitors into paying customers, ultimately increasing your sales\r\n\r\nThis conversational AI is the ideal solution to improve customer experience on your website. With personalized support available 24/7 in over 150 languages, you can be sure your customers will be satisfied.\r\n\r\nYou can start creating your bot by simply answering a few basic questions about your business. Customize your bot by adding features and integrations.\r\n\r\nThis will only take you 2 minutes. But don\'t wait, customer engagement is crucial for your business and website visitors expect a quick response.\r\n\r\nClick now on this link to discover how conversational AI can help your business reach new heights: https://bit.ly/42dRe4R\r\n\r\nBest regards',''),(1040,1,262,'6','Maricruz Crossland',''),(1041,1,262,'2','077 0618 9008',''),(1042,1,262,'3','maricruz.crossland@gmail.com',''),(1043,1,262,'4','https://bit.ly/ProfitBot_Ai\r\n\r\nYou\'re just one click...\r\n\r\nFrom plugging into a turbo-charged AI...\r\n\r\nThat make $400 per day...\r\n\r\n$55 per hour...\r\n\r\nEven $2,200 per day...\r\n\r\nJust by pasting a few words...\r\n\r\nInto a new AI app - that is the ULTIMATE AI available right now\r\n\r\nThat’s because it’s just the most PROFITABLE AI.\r\n\r\nSee for yourself:\r\n\r\n==> https://bit.ly/ProfitBot_Ai\r\n\r\nWhy?\r\n\r\nBecause...\r\n\r\nEVERY time you paste into the AI...\r\n\r\nIt builds an instant Internet asset...\r\n\r\nA new and unique asset, that makes FAST commissions...\r\n\r\nGets buyer leads...\r\n\r\nBanks commissions...\r\n\r\nCrushes ClickBank...\r\n\r\nSmashes Shopify...\r\n\r\nCloses on UpWork...\r\n\r\nAnd 27x other mega-sites...\r\n\r\nhttps://bit.ly/ProfitBot_Ai',''),(1044,1,263,'6','Bill Cavana',''),(1045,1,263,'2','070 0095 7428',''),(1046,1,263,'3','billcavana696@gmail.com',''),(1047,1,263,'4','Hello,\r\n\r\nDo you struggle with creating high-quality videos that capture your audience\'s attention?\r\n\r\nAre you frustrated with the complicated and time-consuming process of video editing?\r\n\r\nWe understand your pain, and that\'s why we created Pictory – the AI-powered video editing tool that simplifies the process for you.\r\n\r\nSay goodbye to the hassle of video editing and hello to effortless, professional-looking videos that elevate your brand.\r\n\r\nClick here to see how Pictory can revolutionize your video marketing game.\r\n\r\nsimplevideobot.com\r\n\r\nRegards,\r\n\r\nBill\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(1048,1,264,'6','Fergal Jackson',''),(1049,1,264,'2','0387 4435651',''),(1050,1,264,'3','fergal.jackson1@gmail.com',''),(1051,1,264,'4','Would an extra $128 per day make a difference in your life?\r\n\r\n\r\nIf you’re like most people, $128 per day is pretty life-changing money…\r\n\r\n\r\n$128 per day is $3,840 per month…\r\n\r\n\r\nAn extra $3,840 per month would give you enough to…\r\n\r\n\r\nSave for a rainy day\r\n\r\n\r\nCover your bills\r\n\r\n\r\nPay down your mortgage or cover your rent\r\n\r\n\r\nUpgrade your car\r\n\r\n\r\nGo on a trip\r\n\r\n\r\nStop stressing about money once and for all\r\n\r\n\r\nInside the brand new step-by-step training course called Empire, you’ll discover a simple method for quickly going from ZERO to $128 per day. \r\n\r\n\r\nIt\'s already proven - and ready for you to try!\r\n\r\n\r\n>>> https://bit.ly/3LFO4S0\r\n\r\n\r\nThis method is simple…\r\n\r\n\r\nIt’s actually something new you haven’t seen before…\r\n\r\n\r\nYou don’t need any technical skills or prior experience…\r\n\r\n\r\nYou don’t have to buy Facebook or Google ads…\r\n\r\n\r\nThis starts working RIGHT AWAY and you can make money within 24 hours from RIGHT NOW…\r\n\r\n\r\nOnce you get this started, the money just keeps flowing in without any hard work required on your part…\r\n\r\n\r\nIf you’re looking to make a life-changing amount of online income, you owe it to yourself to take a look at the brand new training course, Empire by clicking the link below…\r\n\r\n\r\n>>> https://bit.ly/3LFO4S0\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nFergal\r\n\r\n\r\nP.S. - The price on Empire is highly-discounted right now, but that discount is going away soon…\r\n\r\n\r\nClick the link below NOW to get your hands on Empire before the price goes up…\r\n\r\n\r\n>>> https://bit.ly/3LFO4S0',''),(1052,1,265,'6','Chong Lorenz',''),(1053,1,265,'2','954-888-6604',''),(1054,1,265,'3','lorenz.chong@gmail.com',''),(1055,1,265,'4','Hey,\r\n\r\nAre you tired of running paid ads or going through the hassle of physical selling and delivery? Do you want to tap into WhatsApp\'s 2 billion user base and sell anything you want effortlessly? \r\n\r\nIf yes, then you\'re in the right place.\r\n\r\n>>Click here to get yourself a slot because the copies are limited: https://shortz.pro/ai-spark\r\n\r\nI’m thrilled to introduce to you our latest AI-App; AI SPARK - a unique tool that creates a ChatGPT4-powered marketplace and leverages on DFY 2billion WhatsApp contacts which allows you to easily sell anything you want, from products to services, and reach out to them without spending a dime on ads or pitching on messenger.\r\n\r\n>>Click here to see this blockbuster in action: https://shortz.pro/ai-spark\r\n\r\nThe app leverages the power of AI chatbots to provide an engaging and personalized shopping experience to your customers. These chatbots are designed to answer any queries, provide recommendations, and even make purchases on behalf of your customers, making the whole buying process smoother and faster.\r\n\r\nWait, there’s more… \r\n\r\nOur AI-App also takes care of the payment and delivery process, ensuring that you don\'t have to worry about anything. With our automated payment system, you\'ll receive your earnings directly to your bank account, without any delay or hassle.\r\n\r\n>>Click here to get instant access to AI-Spark - Limited Copies Available! \r\nhttps://shortz.pro/ai-spark\r\n\r\nAnd the best part? Our AI-App is proven to earn you $947.74 daily, without any physical selling or delivery required. \r\n\r\nSincerely, It\'s an excellent opportunity for anyone looking to start an online business or expand their existing one.\r\n\r\nSo, what are you waiting for?\r\n\r\n>>Click on the link below to join the thousands of entrepreneurs who are already using AI Spark to sell their products and services on WhatsApp and earning big time profits.\r\nhttps://shortz.pro/ai-spark\r\n\r\nAll the best.\r\n\r\nP.S: Take advantage of this fantastic opportunity today, Do not miss out!',''),(1056,1,266,'6','Julissa Quiros',''),(1057,1,266,'2','0390 7020455',''),(1058,1,266,'3','julissa.quiros95@gmail.com',''),(1059,1,266,'4','https://bit.ly/RpmSystem\r\n\r\nRPM 3.0 is FINALLY ready! With new income streams, higher converting pages and many new features, this is not the RPM you knew and loved, this is a new beast entirely... Using a new autotag technology, the user can have a full system set up without ever editing anything. Using our unique affiliate marketing system. You can earn fromn dozens of income streams using one main link that tracks across all the income streams we have.\r\n\r\nhttps://bit.ly/RpmSystem',''),(1060,1,267,'6','Christopher James',''),(1061,1,267,'2','417 43 349',''),(1062,1,267,'3','christopherjamescharles9@gmail.com',''),(1063,1,267,'4','Hiya!\r\n\r\nBoost your online biz with Systeme.io, an all-in-one website builder, email marketing, and sales funnel tool. \r\nNo coding skills needed! \r\n\r\nGet 30% OFF using my link:\r\n\r\nhttps://cutt.ly/System30\r\n\r\nPlus, access templates here for excellent prices:\r\n\r\nhttps://cutt.ly/Discounttemplates\r\n\r\nDon\'t miss out on this amazing deal! Happy website building!\r\n\r\nBest,\r\nChris,\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(1064,1,269,'6','Steve Davis',''),(1065,1,269,'2','217-444-3849',''),(1066,1,269,'3','steve.davis@gmail.com',''),(1067,1,269,'4','If you’re building a local marketing agency… or are trying in any way to make money online… \r\n\r\n\r\nThen chances are good you’re a bit worried about this whole AI thing.\r\n\r\n\r\nIn fact, a lot of people recently have reached out to ask me if I think that AI is going to be the death of online business.\r\n\r\n\r\nThe truth?\r\n\r\n\r\nThe truth is a big fat “No”.\r\n\r\n\r\nFind out what AI can do to your business: https://bit.ly/415V2Ey\r\n\r\n\r\nThe reason I think this is because I’ve heard this all before.\r\n\r\n\r\nEver since I started my business online… people have been talking about how some new trend or technology is going to kill the opportunity.\r\n\r\n\r\nBut really, the opportunities have only grown.\r\n\r\n\r\nThe reality is that new tech is not to be feared.\r\n\r\n\r\nIt’s to be embraced.\r\n\r\n\r\nClick here to level up your business with AI today: https://bit.ly/415V2Ey\r\n\r\n\r\nBecause just like Canva made it far easier for graphic designers to create designs… AI will make it far easier for the smart business owner to make money online.\r\n\r\n\r\nI’m going to share more about this tomorrow.\r\n\r\n\r\nSo if you’re interested in using AI to build a business online… then stay tuned.\r\n\r\n\r\nClick here to find out more: https://bit.ly/415V2Ey\r\n\r\n\r\nSteve',''),(1068,1,270,'6','Robertphync',''),(1069,1,270,'2','85974516396',''),(1070,1,270,'3','zelatcol@gmail.com',''),(1071,1,270,'4','Sveiki, es gribēju zināt savu cenu.',''),(1072,1,270,'5','Google',''),(1073,1,271,'6','Eric Jones',''),(1074,1,271,'2','555-555-1212',''),(1075,1,271,'3','ericjonesmyemail@gmail.com',''),(1076,1,271,'4','Dear juiceelectrical.co.nz Owner!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1077,1,272,'6','Ashely Birdsall',''),(1078,1,272,'2','0329 2513449',''),(1079,1,272,'3','ashely.birdsall@gmail.com',''),(1080,1,272,'4','I am excited to introduce you to the ChatGPT4 (OpenAI) powered app for social media automation, a revolutionary tool that will change the way you manage your social media accounts forever!\r\nIntroducing…Soci Ai\r\n\r\nChatGPT4 (OpenAI) Powered App for Social Media Automation\r\nAnd Content Creation\r\n\r\n==> Here Full Scoop https://warriorplus.com/o2/a/lw87xw/0\r\n\r\nSoci Ai app is designed to help you effortlessly post, schedule, and automate your social media platforms like Facebook, TikTok, Instagram, and more. With just a few simple voice commands, Soci Ai will curate trending viral content, video reels, and posts that will drive massive traffic, views, and following to your accounts.\r\nThe best part? Soci Ai works on complete autopilot, meaning you can sit back and relax while it does all the heavy lifting for you. It\'s like having your own personal assistant!\r\nSome of the key features of Soci Ai include:\r\nEasy-to-use interface: SociAi app is designed to be user-friendly, even for those who are not tech-savvy. Simply speak your commands, and Soci Ai will do the rest.\r\nTrending viral content: Soci Ai will automatically curate trending viral content and posts that are guaranteed to drive traffic to your social media accounts.\r\nSchedule posts: You can schedule posts for future dates and times, allowing you to plan your social media strategy ahead of time.\r\nSiri-like voice commands: Soci Ai responds to voice commands, just like Siri. This means you can use it hands-free while on the go.\r\nMassive following: With Soci Ai, you can drive 10,000s of views, traffic, and massive following to your social media accounts with ease.\r\nAuto-post, schedule, and automate 12+ major Social media Platforms\r\nLive Streaming (Pre recorded video) On FB,Youtube,Instagram\r\nAi Short Video Generator\r\nAi Viral Content Generator\r\nAi Image Generator\r\n\r\nIf you\'re ready to take your social media game to the next level, Soci Ai is the tool you need. It\'s fast, efficient, and will save you hours of time and effort.\r\nDon\'t wait any longer to get started. Download Soci Ai today and see the results for yourself. https://warriorplus.com/o2/a/lw87xw/0\r\nBest regards,',''),(1081,1,273,'6','Jonas Willson',''),(1082,1,273,'2','29-67-03-42',''),(1083,1,273,'3','jonas.willson@gmail.com',''),(1084,1,273,'4','Selling online is a tough nut… it takes a lot of experience to setup and connect the dots\r\n\r\n\r\nWorst part? it’s not easy to convince someone over the internet to pull out his or her credit card and pay a stranger… \r\n\r\n\r\nBut what if you can automate all of that? \r\n\r\n\r\nHow? \r\n\r\n\r\nEasy, by using AI Spark - The World’s First AI App that Creates a ChatGPT4-powered Marketplace That Leverages WhatsApp 2 Billion Users To Sell Anything With AI Chatbot\r\n\r\n…Banking Us $947.74 Daily…without investing a dime on marketing, products or traffic\r\n\r\n\r\nThe AI Agents Do It All…24/7…365 Days\r\n\r\n>> Click Here To See The Live Demo - It’s Mind Blowing: https://bit.ly/3HGlOMH\r\n\r\n\r\nHere is more…\r\n\r\n\r\nAI Find The Perfect Products For You, Or Add Yours… \r\n\r\nAI Agent to Sell Digital, Physical, and Affiliate Products and Services for you\r\n\r\nDFY AI Chatbots That Will Talk To Your Customers For You… \r\n\r\nAI Lead Sourcer That Will Give You Active Leads In Any Niche… \r\n\r\nSend Unlimited Broadcast Messages To All Your Customers With 1 Click\r\n\r\n1 Click Integration With All Top Payment Processor\r\n\r\nIntegrate With Your Autoresponder And Build a Massive List… \r\n\r\nBuilt-In Traffic Feature For 100% Free Targeted Clicks.\r\n\r\n\r\nAnd Much More…\r\n\r\n\r\nWith this, It is practically possible for you to bank up to $984 on a daily basis.\r\n\r\n\r\n>>Click here to get LIFETIME Access to this Goldmine\r\nUse Coupon Code - https://bit.ly/417HUPl\r\n\r\n\r\n\r\nIt takes you 30 seconds or less to get it activated;\r\n\r\n\r\nStep 1: Access - Click Any Button Below To Instantly Access AI Spark\r\n\r\n\r\nStep 2: Create - Create Your First ChatGPT4 Powered Store In 30 Seconds Or Less…\r\n\r\n\r\nStep 3: WhatsApp AI Agent - Unleash The AI Agents That Will Sell Your Products On Your Behalf\r\n\r\n\r\nStep 4: Profit- Yup that’s it! Our system works without any human interference… And it makes us money like this daily…\r\n\r\n\r\nFinally, your days of endless online trial are over.\r\n\r\n\r\nHere is the best part…\r\n\r\nThis software also comes with 60 cutting-edge AI features that will blow your mind like writing content, copywriting, designing, coding, Proofreading, Voice to text, Generating ads and much more.\r\n\r\n\r\nThis is absolutely a Breakthrough - All In One System\r\n\r\n\r\n>>Click here to get Access to the ChatGPT4 Powered Marketplace: https://bit.ly/3HGlOMH\r\n\r\n\r\nBut here is the thing,\r\n\r\n\r\nI have talked to the sole owner of this ChatGPT4 Whatsapp Marketplace AI system. And He is ready to give the first 19 people access at a very ridiculous price.\r\n\r\n\r\nUse this Coupon - https://bit.ly/417HUPl\r\n\r\n\r\nMeaning…\r\n\r\n\r\nIf you want to stop wasting money on marketing techniques that don’t work you have to Hurry and get this Next online Marking Goldmine.\r\n\r\n\r\n>>Click here to get Access to the ChatGPT4 Whatsapp Marketplace Chatbot: https://bit.ly/3HGlOMH\r\n\r\nIf you join today you will also get access the following bonuses: \r\n\r\n\r\nAISpark Viral Article Producer\r\n\r\nEazy Social Ads – Making Social Media Branding Eazy\r\n\r\nAISpark Internet Marketing Goldmine \r\n\r\nAISpark Social Media Automation\r\n\r\nAI Spark Traffic Booster \r\n\r\n\r\nWith a combined value of over $2999!\r\n\r\nClick the link to get ahead of your competition: \r\n\r\nhttps://bit.ly/3LDem6e\r\n\r\n \r\n\r\nSincerely, \r\n\r\nJonas',''),(1085,1,274,'6','James McGregor',''),(1086,1,274,'2','077 0506 8786',''),(1087,1,274,'3','james@mcgregorinc.com',''),(1088,1,274,'4','A few clicks and words typed out – and ad creatives for your small business are DONE.\r\n\r\nIt’s that easy with AdCreative.ai. No expensive outsourcing. No spending hours figuring it out yourself.\r\n\r\nJust creatives that are optimized for attracting sales like a super magnet. New users even get a $500 Google Ad Credit!\r\n \r\nStart your 7-day trial today -> https://free-trial.adcreative.ai/april23\r\n\r\nEnjoy,\r\n\r\nJames',''),(1089,1,275,'6','Antje Waring',''),(1090,1,275,'2','0316 0510179',''),(1091,1,275,'3','waring.antje@gmail.com',''),(1092,1,275,'4','Looking for a competitive advantage? \r\n\r\nGet the edge on your competition with HighLevel. \r\n\r\nHighLevel was built to help agencies scale endlessly, automate processes, reduce churn, and efficiently run all of their digital marketing. \r\n\r\nWe’ve met with so many other marketers and know that agencies need a platform that can do it all.\r\n\r\nSign up for a free trial today and see how HighLevel can help you take your business to the next level!\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(1093,1,276,'6','Eric Jones',''),(1094,1,276,'2','555-555-1212',''),(1095,1,276,'3','ericjonesmyemail@gmail.com',''),(1096,1,276,'4','Dear juiceelectrical.co.nz Administrator.\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1097,1,277,'6','James Lilja',''),(1098,1,277,'2','(07) 4077 7007',''),(1099,1,277,'3','james.lilja@gmail.com',''),(1100,1,277,'4','ChatGPT Gained over 100 million customers within a month… \r\n\r\n\r\nEven tech giant Google launched their own AI Chatbot called Bard… \r\n\r\n\r\nBecause they understand that AI is the future, and there is no going back… \r\n\r\n\r\nBut here is the thing…\r\n\r\nLaunching your own ChatBot is not an easy task… \r\n\r\n\r\nIt’s a very techy task, and it requires a lot of work and dedication… \r\n\r\n\r\nBut what if there is a way to launch your very own chatGPT-like bot \r\n\r\n\r\nIn less than 30 seconds?\r\n\r\n\r\nSounds good, huh?\r\n\r\n\r\nIt comes equipped with over 50 mind-blowing features that will stun you and your customers \r\n\r\n\r\nWrite, research, and proofread any text you want with 1 click\r\n\r\nGenerate AI-based designs with zero technical skills\r\n\r\nTranslate to over 55 different language \r\n\r\nGenerate Stunning videos without any video editing\r\n\r\nSell access to your chatbot and keep 100% of the profit\r\n\r\n\r\n\r\nIf that sounds like music to your ears… \r\n\r\n\r\nThen you’re in luck, because BrainBox is just launched \r\n\r\n\r\nAnd you can secure your Earlybird discount by clicking here: \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\n\r\nDon\'t miss this opportunity to revolutionize your online business with BrainBox. \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\nTry it now!\r\n\r\nBest regards,\r\n\r\n\r\nScott',''),(1101,1,278,'6','Mike Kennedy',''),(1102,1,278,'2','82482663442',''),(1103,1,278,'3','no-replyinquiff@gmail.com',''),(1104,1,278,'4','Howdy \r\n \r\nI have just analyzed juiceelectrical.co.nz for the ranking keywords and saw that your website could use a boost. \r\n \r\nWe will improve your ranks organically and safely, using state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Kennedy',''),(1105,1,278,'5','Google',''),(1106,1,279,'6','Aubrey Stonge',''),(1107,1,279,'2','(02) 6136 1402',''),(1108,1,279,'3','aubrey.stonge39@gmail.com',''),(1109,1,279,'4','https://bit.ly/Get_ERC_Today\r\n\r\nI hope this message finds you doing well. I have some exciting news to share with you that could potentially help your business receive a 7-figure refund. Yes, you read that right – 7 figures!\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nThe US government has established a stimulus program designed to assist businesses that were able to retain their employees during the Covid-19 pandemic. At first, I was skeptical about this program too. However, after conducting some research and going through the process myself, I found out that my company was eligible for a huge refund. And now, I strongly believe that your business could be eligible too.\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nThis program is a refundable tax credit – a grant, not a loan – that your business can claim based on qualified wages and healthcare paid to employees. To help you with the process, I work with a reputable 3rd party advisor who will walk you through every step of the way, provide you with a refund estimate, and even process the refund with the IRS. This 3rd party has already helped over 7,000 customers recover more than 2 billion in refunds since 2009, and they work with many of the Fortune 500 companies.\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nIf you are interested in learning more about this program and how it could benefit your business, I invite you to text me at (786) 708-9592. From there, I will get the process started for you right away.\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nDon\'t let this once-in-a-lifetime opportunity pass you by. Contact me today, and let\'s work together to help your business receive the refund it deserves.\r\n\r\nhttps://bit.ly/Get_ERC_Today\r\n\r\nSincerely,\r\n\r\nMike',''),(1110,1,280,'6','Max Jackson',''),(1111,1,280,'3','max.jackson@gmail.com',''),(1112,1,280,'4','Are you tired of struggling to close deals? Our magic selling machine can help you skyrocket your sales with ease. Say goodbye to long hours of prospecting and pitching, and hello to a steady stream of new customers.\r\n\r\n\r\nWant to learn more? Let\'s schedule a quick call to discuss how our selling machine can work its magic for you.\r\n\r\n\r\nClick the link today to get access for free: https://bit.ly/3NHYTES\r\n\r\n\r\nBest,\r\n\r\nMax',''),(1113,1,281,'6','Robertphync',''),(1114,1,281,'2','85614479852',''),(1115,1,281,'3','zelatcol@gmail.com',''),(1116,1,281,'4','Hi, roeddwn i eisiau gwybod eich pris.',''),(1117,1,281,'5','Google',''),(1118,1,282,'6','Gonzalo Pie',''),(1119,1,282,'2','06-63041409',''),(1120,1,282,'3','gonzalo.pie@outlook.com',''),(1121,1,282,'4','Hi Business Owners,\r\n\r\nBusiness costs are getting higher, are you looking for an all-in-one marketing platform rather than paying for many marketing tools.\r\n \r\nGroove is an all-in-one suite of online business tools designed to meet the needs of business owners without the complexity and high price tag of other options. \r\n\r\nWith a free Groove account, members can access website creation, funnel building, and shopping cart software, even if they have little technical knowledge. \r\n\r\nGroove offers unlimited products, custom domain names, and order bumps, as well as a powerful affiliate program. \r\n\r\nThis robust software suite is unheard of in the industry, especially considering it is available for free. - https://bit.ly/41YJhkx\r\n\r\nIf you\'re looking for an easy and affordable way to build funnels and sell digital products, start with Groove today.\r\n\r\nDownload for FREE! - https://bit.ly/41YJhkx\r\n\r\n\r\n\r\nOpt out of future messages by submitting your domain to optout - optout.topb2btools.com',''),(1122,1,283,'6','Kristin Killian',''),(1123,1,283,'3','killian.kristin@yahoo.com',''),(1124,1,283,'4','Test Drive LinkPro Risk FREE For 30 Days !\r\n\r\nTOP Reasons Why You Can\'t Ignore LinkPro Bundle Deal:\r\n\r\nReason #1 \r\nGet All The Benefits Of LinkPro & Premium Upgrades To Multiply Your Results... Save More Time, efforts, Work Like A Pro & Ultimately Boost Your Commission & Profits\r\n\r\nReason #2\r\nRegular Price For LinkPro, All Upgrades & Bonuses Is $942. You Are Saving $650 Today When You Grab The Exclusive Bundle Deal Now at ONLY $297.\r\n\r\nReason #3\r\nThis Limited Time Additional $50 Coupon Will Expires As Soon As Timer Hits Zero So Take Action Now.\r\n\r\nReason #4\r\nGet Priority Support From Our Dedicated Support Team to Get Assured Success.\r\n\r\nStill thinking? - Visit this page for more info: http://destyy.com/egv940',''),(1125,1,284,'6','Deon Leighton',''),(1126,1,284,'2','916 74 373',''),(1127,1,284,'3','leighton.deon@hotmail.com',''),(1128,1,284,'4','https://bit.ly/BrainBoxVip\r\n\r\nAre you ready to step into the future of customer service and communication? Introducing BrainBox, the first hard-coded AI app that allows you to launch your very own \"ChatGPT-like\" chatbot and charge people for using it.\r\n\r\nWith BrainBox, you\'ll have access to over 50 AI features that will stun both you and your customers. This revolutionary app uses the latest in artificial intelligence technology to provide your customers with a seamless and personalized experience. From natural language processing to sentiment analysis, BrainBox has everything you need to create a chatbot that is not only responsive but intelligent and engaging.\r\n\r\nhttps://bit.ly/BrainBoxVip\r\n\r\nImagine being able to offer your customers a 24/7 support system that never takes a break. With BrainBox, you can do just that. Your customers will be able to get instant answers to their questions, and you\'ll be able to focus on growing your business.\r\n\r\nBut that\'s not all. BrainBox is also incredibly easy to use. You don\'t need any coding skills or technical knowledge to get started. With just a few clicks, you can create your chatbot and start charging your customers.\r\n\r\nAnd the best part? BrainBox is completely customizable. You can create a chatbot that matches your brand\'s tone and personality. You can also add your own custom responses and triggers, ensuring that your chatbot is unique to your business.\r\n\r\nDon\'t miss out on this opportunity to take your business to the next level. Try BrainBox today and see for yourself how it can transform the way you communicate with your customers.\r\n\r\nhttps://bit.ly/BrainBoxVip',''),(1129,1,285,'6','Samuel Deeds',''),(1130,1,285,'2','(07) 5377 0974',''),(1131,1,285,'3','deeds.rashad@googlemail.com',''),(1132,1,285,'4','Hi ,\r\n\r\nI was trying to connect with you on LinkedIn but couldn\'t find your profile.\r\n\r\nAre you on there? \r\n\r\nI\'ve found that many businesses are overlooking the power of LinkedIn when it comes to generating new clients and sales.\r\n\r\nIn fact, LinkedIn is often underrated compared to other platforms like Facebook and Instagram. \r\n\r\nBut the truth is, it can be incredibly effective when used properly.\r\n\r\nThat\'s why I wanted to offer you a free ebook that reveals the 7 Secrets About LinkedIn Your Competitor Doesn\'t Want You To Know.\r\n\r\nIt\'s packed with tips and strategies to help you make the most of this powerful platform and stay ahead of the competition.\r\n\r\nSimply click the link below to download your free copy:\r\n\r\nhttps://www.leadgenerationbundle.com/7secrets\r\n\r\nI think you\'ll find it incredibly valuable, and I can\'t wait to hear about the results you achieve with LinkedIn.\r\n\r\nBest regards,\r\n\r\nSamuel',''),(1133,1,286,'6','Terrance Timms',''),(1134,1,286,'2','0371 71 88 95',''),(1135,1,286,'3','timms.terrance40@googlemail.com',''),(1136,1,286,'4','https://bit.ly/The_Home_Dr\r\n\r\nHow to Stockpile Antibiotics Without a Prescription\r\n\r\nAntibiotics can save your life but they are notoriously hard to stockpile if you don’t know about this ingenious method:\r\n\r\nhttps://bit.ly/The_Home_Dr\r\n\r\nHow to Stockpile Antibiotics Without a Prescription\r\n\r\nIt is completely legal and perfectly safe.\r\n\r\nThe best part is you can also use it for other medicines that require a prescription like insulin or Humira for example.\r\n\r\nThis is just one of the many ingenious tidbits of medical knowledge you’ll discover inside The Home Doctor: Practical Medicine for Every Household\r\n\r\nThis unique book was written by doctors to help people take care of their health ailments at home when the medical system cannot be depended on anymore.\r\n\r\nIt will prove vital in the next crisis, and you should check it out while it’s still available.\r\n\r\nhttps://bit.ly/The_Home_Dr',''),(1137,1,287,'6','Mark Maravilla',''),(1138,1,287,'2','8055229062',''),(1139,1,287,'3','wpgioitsolutions1@gmail.com',''),(1140,1,287,'4','Good Day,\r\n\r\nI hope you\'re doing well. I\'m Mark from Wpgio It Solutions, and I have an exciting opportunity to share with you. Wpgio It Solutions, a high-quality website with strong domain authority, is offering a FREE dofollow backlink with minimal effort.\r\n\r\nTo obtain this backlink:\r\n\r\nVisit https://www.wpgio.com/free-dofollow-backlink-offer/ \r\nNavigate to the backlink submission section.\r\nSimply input your name, email, and website URL.\r\n\r\nThat\'s it! Once your submission is approved, you will receive a valuable dofollow backlink, boosting your website\'s search engine ranking and online visibility.\r\n\r\nYou will recieve 1 dofollow backlink in the article that is created that is relevant to the website you want.\r\n\r\nFeel free to contact me at wpgioitsolutions1@gmail.com if you have any questions or need assistance. Don\'t miss out on this effortless opportunity!\r\n\r\nBest regards,\r\nMark John Maravilla\r\nOutreach Specialist',''),(1141,1,288,'6','Elizabeth Crawford',''),(1142,1,288,'2','+1 (917) 997-1124',''),(1143,1,288,'3','elizabeth.crawfod@gmail.com',''),(1144,1,288,'4','Hi team at juiceelectrical.co.nz,\r\n\r\nI\'m Elizabeth, co-founder of Socialia, a social media marketing agency. I noticed your website, juiceelectrical.co.nz However, it seems that you may not be leveraging social media to its full potential as a powerful marketing channel for your business. That\'s where we come in.\r\n\r\nWhat we do:\r\n\r\nSocial media management\r\nCreate data-driven strategies\r\nConent Creation\r\nMeasure results with key metrics\r\nSuccess story:\r\nWe helped clients like Nerdwax and sirthelabel in your niche increase their social media ROI by 294% in just 3 months.\r\n\r\nInterested? Reply to this email for a free, detailed proposal or schedule a 15-minute call with our expert: https://calendly.com/socialia-co/15min\r\n\r\nLimited-time offer. Visit our website for more info: https://tinyurl.com/vm3tmsc3\r\n\r\nLooking forward to connecting!\r\n\r\nBest,\r\nElizabeth\r\nCo-founder, Socialia',''),(1145,1,289,'6','Steve Watney',''),(1146,1,289,'2','05.34.41.86.93',''),(1147,1,289,'3','steve.watney@gmail.com',''),(1148,1,289,'4','Is your business at risk of being \"left behind\" and becoming obsolete?\r\n\r\n\r\nThe one determining factor right now is whether or not you are integrating the new AI technology into your business.\r\n\r\n\r\nCheck this out if you don\'t want to be left in the dust by your competition:\r\n\r\n\r\nhttps://bit.ly/3nFXP9D\r\n\r\n\r\nYour competitors WILL be using this technology, so for your own sake please don\'t ignore it.\r\n\r\n\r\nIf you haven\'t yet started using AI, it\'s time, and I have the easiest way for you to get started.\r\n\r\n\r\nAIContentFly is a new dashboard that allows you to instantly plug AI into your business, even if you\'ve never used AI before.\r\n\r\n\r\nWith this user-friendly dashboard, you can simply fill in a few blanks, click a button, and let the AI engine do the \"work\" for you. No more struggling to come up with the perfect words or spending hours researching topics.\r\n\r\n\r\nProfessional internet marketers and copywriters have developed this push-button simple interface, so you can focus on what really matters - growing your business.\r\n\r\n\r\nAs technology continues to advance, AI will be the wave of the future for businesses of all sizes. By incorporating AIContentFly into your own business, you\'re not only saving time, but you\'re also setting yourself up for long-term success.\r\n\r\n\r\nI recommend checking it out today before the launch special expires:\r\n\r\n\r\nhttps://bit.ly/3nFXP9D\r\n\r\n\r\nDon\'t get left behind. Try AIContentFly today and see how it will transform the way you do business.\r\n\r\n\r\nBest regards,\r\n\r\n\r\nSteve',''),(1149,1,291,'6','Kelly Sebastian',''),(1150,1,291,'2','03921 38 33 31',''),(1151,1,291,'3','sebastian.kelly@gmail.com',''),(1152,1,291,'4','Hi, I came across your business via google, while everything looks on point, don\'t let your business fall behind in the competitive world of local search, with more people searching for local businesses online, having a high Google My Busin(GMB) ranking is crucial for gaining visibility and attracting new customers. Our highly skilled professional Talha will do all the work for you and you will start seeing the results in your online sales.\r\n\r\nLink : https://bit.ly/gmboptimization1',''),(1153,1,292,'6','Katherina Tulk',''),(1154,1,292,'2','06-73893249',''),(1155,1,292,'3','katherina.tulk@gmail.com',''),(1156,1,292,'4','https://bit.ly/KleverSend_AI\r\n\r\nAttention all business owners! Are you tired of struggling to keep up with your customer inquiries on WhatsApp? Do you want to take your sales game to the next level? Look no further than KleverSend AI - the all-in-one WhatsApp autoresponder and bot powered by ChatGPT4!\r\n\r\nWith KleverSend AI, you can acquire new leads, simultaneously talk to unlimited prospects just like a human would, follow-up with them, and close sales automatically - all 24X7! Say goodbye to manual responses, and hello to automated sales success.\r\n\r\nClick here to start automating your sales process with KleverSend AI: https://bit.ly/KleverSend_AI\r\n\r\nImagine having an AI-powered sales assistant that can handle all your WhatsApp customer inquiries with ease. KleverSend AI is the solution you\'ve been searching for! It\'s designed to help you focus on what matters most - closing more sales and growing your business.\r\n\r\nDon\'t waste any more time manually responding to customer inquiries. Let KleverSend AI do the work for you! Click here to get started: https://bit.ly/KleverSend_AI\r\n\r\nKleverSend AI is the perfect tool for business owners who want to streamline their sales process and close more deals. It\'s easy to set up and use, and it\'s powered by ChatGPT4 - the most advanced language model in the world. Plus, with unlimited prospect outreach and automatic follow-ups, you can rest assured that no lead will slip through the cracks.\r\n\r\nDon\'t wait any longer to start automating your sales process. Click here to get started with KleverSend AI today: https://bit.ly/KleverSend_AI\r\n\r\nIn conclusion, if you\'re looking for a game-changing tool that can help you acquire new leads, talk to unlimited prospects just like a human would, and close more sales automatically 24X7, KleverSend AI is the answer. Click here to start automating your sales process today: https://bit.ly/KleverSend_AI',''),(1157,1,293,'6','Shanice Graves',''),(1158,1,293,'3','graves.shanice@googlemail.com',''),(1159,1,293,'4','https://bit.ly/GPTBlasterVip\r\n\r\nIntroducing GPT Blaster - the world\'s first true auto chat GPT website publisher that allows you to create set-and-forget websites in any niche on autopilot mode!\r\n\r\nWith GPT Blaster, you can harness the power of chat GPT to effortlessly create stunning websites that are optimized for maximum conversions. Simply choose your niche, set it and forget it, and watch as GPT Blaster does all the work for you.\r\n\r\nhttps://bit.ly/GPTBlasterVip\r\n\r\nWhether you\'re a seasoned marketer or just starting out, GPT Blaster is the perfect tool to take your business to the next level. Say goodbye to the hassle of website building and hello to effortless online success.\r\n\r\nSo why wait? Get started with GPT Blaster today and start building your dream website with ease!\r\n\r\nhttps://bit.ly/GPTBlasterVip',''),(1160,1,294,'6','Mozelle Volz',''),(1161,1,294,'2','06-48528267',''),(1162,1,294,'3','mozelle.volz@hotmail.com',''),(1163,1,294,'4','https://bit.ly/10web_AIBuiltWebsites\r\n\r\nAre you tired of spending countless hours building and optimizing your WordPress website? Look no further than 10web.io - the AI-powered WordPress platform that takes care of all your website needs.\r\n\r\nWith our automated website builder, you can create a stunning website in just minutes. Our platform uses AI technology to generate personalized website templates based on your preferences, ensuring a unique and professional design every time.\r\n\r\nBut that\'s not all - 10web.io also offers powerful hosting features that ensure your website loads quickly and runs smoothly. Our page speed booster optimizes your website for lightning-fast load times, keeping your visitors engaged and improving your search engine rankings.\r\n\r\nDon\'t waste another moment struggling with WordPress - let 10web.io handle everything for you. Sign up now and start building your dream website today!\r\n\r\nhttps://bit.ly/10web_AIBuiltWebsites',''),(1164,1,295,'6','Donald Sowden',''),(1165,1,295,'2','06-75064207',''),(1166,1,295,'3','sowden.donald8@gmail.com',''),(1167,1,295,'4','Hi, I came across your business via google, while everything looks on point, don\'t let your business fall behind in the competitive world of local search, with more people searching for local businesses online, having a high Google My Busin(GMB) ranking is crucial for gaining visibility and attracting new customers. Our highly skilled professional Talha will do all the work for you and you will start seeing the results in your online sales.\r\n\r\nLink : https://bit.ly/gmboptimization1',''),(1168,1,296,'6','Ofelia Eltham',''),(1169,1,296,'2','0660 548 50 98',''),(1170,1,296,'3','ofelia.eltham70@gmail.com',''),(1171,1,296,'4','https://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nAre you tired of struggling to make a decent income online? Are you ready to start earning big ticket commissions without all the hard work? Look no further than AI 1K Big Ticket Commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nOur revolutionary system is powered by AI and ChatGPT, making it easy for you to generate profits without lifting a finger. With over $10,000 in monthly high ticket commissions, you can finally achieve financial freedom and live the life you\'ve always dreamed of.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nBut what makes AI 1K Big Ticket Commissions different from other programs out there? It\'s 100% done-for-you, meaning you don\'t have to worry about creating content, building websites, or any of the other tedious tasks that come with running an online business. Everything you need to succeed is right at your fingertips, all within one platform.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nDon\'t miss out on this incredible opportunity to turn your financial situation around. Join the countless others who have already seen massive success with AI 1K Big Ticket Commissions. Sign up now and start earning those big ticket commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions',''),(1172,1,297,'6','Jodi Lasley',''),(1173,1,297,'2','0399 4194107',''),(1174,1,297,'3','lasley.jodi@googlemail.com',''),(1175,1,297,'4','https://bit.ly/ChatgptEbooks\r\n\r\nAre you tired of spending countless hours writing eBooks to grow your business or website? Are you looking for a fast and effective way to create unique eBooks without sacrificing quality? Look no further than our brand new PLR pack that turns ChatGPT into your own collection of over 10,000 unique eBooks!\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nWith this PLR pack, you can finally take advantage of the powerful capabilities of ChatGPT to create high-quality eBooks quickly and easily. Whether you\'re looking to grow your email list, generate more leads, or increase your revenue, our PLR pack has you covered.\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nOur pack includes a variety of niches to choose from, including business, health and wellness, personal development, and more. Plus, with over 10,000 unique eBooks, you\'ll never run out of content to share with your audience.\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nWhat\'s more, our PLR pack is fully customizable. You can edit, modify, and brand each eBook to suit your needs and preferences. This means that you can quickly and easily create eBooks that align with your brand and resonate with your audience.\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nDon\'t waste any more time writing eBooks from scratch. Get our brand new PLR pack today and turn ChatGPT into your own collection of over 10,000 unique eBooks! With our PLR pack, you\'ll have everything you need to grow your business and reach your goals. Order now and see the results for yourself! \r\n\r\nhttps://bit.ly/ChatgptEbooks',''),(1176,1,298,'6','Theresa Otto',''),(1177,1,298,'2','09372 81 14 17',''),(1178,1,298,'3','otto.theresa@msn.com',''),(1179,1,298,'4','My friend Ankur just released a brand new SEO plugin\r\nthat can get you 100s of Backlinks for your website\r\nWith the push of a button - without any manual work.\r\n\r\nYes - I know building backlinks is the hardest part of SEO.\r\n\r\nThat is why this plugin is so amazing...\r\n\r\n=>> DOWNLOAD IT FROM HERE https://warriorplus.com/o2/a/sc8lvl/0\r\n\r\nNow you can get your website ranked faster.\r\n\r\nBacklinks have been the most important SEO factor\r\nFor rankings since the beginning of search engines.\r\n\r\nBut to get backlinks, website owners normally have to hire\r\nSEO agencies and spend thousands of dollars.\r\n\r\nNOT ANYMORE.\r\n\r\nNow all you have to do is…\r\n\r\nStep1 - Install this plugin on every Wordpress site you have.\r\n\r\nStep 2 - Enter the KEYWORD you want backlinks for\r\nAnd hit PUBLISH on your new blog post or article.\r\n\r\nStep 3 - DONE…. A number of backlinks will be \r\nautomatically built for you from a network \r\nof over 10,000 websites.\r\n\r\nLess effort and more results is what I love\r\nand this plugin does exactly that for you...\r\n\r\n=>> Download The Unlimited Sites License Now https://warriorplus.com/o2/a/sc8lvl/0\r\n\r\nAnd start building 1000s of backlinks to your site\r\nAnd rank higher in Google.\r\n\r\nCheers',''),(1180,1,299,'6','Denice Whitesides',''),(1181,1,299,'3','denice.whitesides@gmail.com',''),(1182,1,299,'4','Are you tired of staring at a blank page, struggling to come up with fresh, engaging content for your website or social media channels? Say goodbye to writer\'s block and hello to the power of AI writing with Creaite!\r\n\r\nWith Creaite, you can create high-quality, unique content in just minutes. Our advanced AI algorithms and natural language processing technology will analyze your topic, research it thoroughly, and generate compelling, original content that is perfectly suited for your needs.\r\n\r\nAnd the best part? As a valued customer, you can now get a whopping 73% off your purchase by signing up through this exclusive link: https://tinyurl.com/kudkoji.\r\n\r\nDon\'t let writer\'s block hold you back any longer. Let Creaite supercharge your content creation process and take your website or social media presence to the next level.\r\n\r\nTry Creaite today and see the difference for yourself!\r\n\r\nBest regards!',''),(1183,1,300,'6','Marlene Gresham',''),(1184,1,300,'2','09131 60 85 08',''),(1185,1,300,'3','marlene.gresham@googlemail.com',''),(1186,1,300,'4','https://bit.ly/GPTBlasterVip\r\n\r\nIntroducing GPT Blaster - the world\'s first true auto chat GPT website publisher that allows you to create set-and-forget websites in any niche on autopilot mode!\r\n\r\nWith GPT Blaster, you can harness the power of chat GPT to effortlessly create stunning websites that are optimized for maximum conversions. Simply choose your niche, set it and forget it, and watch as GPT Blaster does all the work for you.\r\n\r\nhttps://bit.ly/GPTBlasterVip\r\n\r\nWhether you\'re a seasoned marketer or just starting out, GPT Blaster is the perfect tool to take your business to the next level. Say goodbye to the hassle of website building and hello to effortless online success.\r\n\r\nSo why wait? Get started with GPT Blaster today and start building your dream website with ease!\r\n\r\nhttps://bit.ly/GPTBlasterVip',''),(1187,1,301,'6','Wilhelmina Broadus',''),(1188,1,301,'3','wilhelmina.broadus@gmail.com',''),(1189,1,301,'4','We\'re excited to introduce Stoodaio\'s DFY Bundle, a powerful set of tools designed to help you streamline your workflow and save time. Whether you\'re an entrepreneur, a freelancer, or a marketer, this bundle has everything you need to increase your efficiency and productivity.\r\n\r\nWith the DFY Bundle, you\'ll get:\r\n\r\n- An email marketing tool to create and send engaging emails\r\n- A social media management platform to schedule and analyze your content\r\n- A project management system to track your tasks and collaborate with your team\r\n- A website builder to create professional-looking websites without coding knowledge\r\n- And more!\r\n\r\nSign up now to receive a free training session and take your business to the next level. Click on the link below to learn more and get your DFY Bundle today:\r\n\r\nhttps://www.jvzoo.com/c/2840657/393694\r\n\r\nThank you, and we look forward to seeing you inside!\r\n\r\nBest regards!',''),(1190,1,302,'6','Glena Wilson',''),(1191,1,302,'2','79 810 34 39',''),(1192,1,302,'3','glendawilson031@gmail.com',''),(1193,1,302,'4','Hello,\r\n\r\nDo you struggle with creating high-quality videos that capture your audience\'s attention?\r\n\r\nAre you frustrated with the complicated and time-consuming process of video editing?\r\n\r\nWe understand your pain, and that\'s why we created Pictory – the AI-powered video editing tool that simplifies the process for you.\r\n\r\nSay goodbye to the hassle of video editing and hello to effortless, professional-looking videos that elevate your brand.\r\n\r\nClick here to see how Pictory can revolutionize your video marketing game.\r\n\r\n\r\nsimplevideobot.com\r\n\r\n\r\nRegards, \r\n\r\nGlenda\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(1194,1,303,'6','Bill Cavana',''),(1195,1,303,'3','billcavana696@gmail.com',''),(1196,1,303,'4','Hello,\r\n\r\nDo you struggle with creating high-quality videos that capture your audience\'s attention?\r\n\r\nAre you frustrated with the complicated and time-consuming process of video editing?\r\n\r\nWe understand your pain, and that\'s why we created Pictory – the AI-powered video editing tool that simplifies the process for you.\r\n\r\nSay goodbye to the hassle of video editing and hello to effortless, professional-looking videos that elevate your brand.\r\n\r\nClick here to see how Pictory can revolutionize your video marketing game.\r\n\r\nsimplevideobot.com\r\n\r\nRegards,\r\n\r\nBill\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(1197,1,304,'6','Dallas Samson',''),(1198,1,304,'2','(11) 2244-2993',''),(1199,1,304,'3','samson.dallas78@gmail.com',''),(1200,1,304,'4','https://bit.ly/VoiceGPT_AI\r\n\r\nIntroducing VoiceGPT AI, the revolutionary cloud-based app that combines the power of ChatGPT4 with advanced voice technology to create unique high-quality content and convert it into real human emotion-based voices and audiobooks. Say goodbye to generic, robotic-sounding voices and hello to engaging, emotive audio content that captivates your audience and drives conversions.\r\n\r\nWith VoiceGPT AI, you can create custom audio content in minutes. Simply input your text, select your preferred voice and tone, and let our advanced technology do the rest. Our app generates natural-sounding audio that conveys the emotions and nuances of your text, creating a listening experience that engages your audience and leaves a lasting impression.\r\n\r\nhttps://bit.ly/VoiceGPT_AI\r\n\r\nWhether you\'re a content creator, marketer, or business owner, VoiceGPT AI is the perfect tool to take your audio content to the next level. Use it to create engaging podcasts, audiobooks, video voiceovers, and more. Our app is easy to use, intuitive, and requires no technical expertise. Plus, it\'s cloud-based, so you can access it from anywhere and collaborate with your team in real-time.\r\n\r\nDon\'t settle for generic, lifeless audio content that fails to capture your audience\'s attention. Upgrade to VoiceGPT AI and experience the power of emotive audio content that converts. Try it out today and see the difference for yourself.\r\n\r\nhttps://bit.ly/VoiceGPT_AI',''),(1201,1,305,'6','Olive Zimmer',''),(1202,1,305,'2','0489 20 53 23',''),(1203,1,305,'3','zimmer.olive91@gmail.com',''),(1204,1,305,'4','Hey there,\r\n\r\nWhatever Business you do, you can\'t Multiply Your ROI & Profits without Building Proven Funnels.\r\n\r\nAs Funnels, Empower you to Increase Your Lead or Customer Value by giving them options for more products, upgrades & services.\r\n\r\nWhat if i tell you you can get all the Hassle Free Funnel Builder with:\r\n\r\n- 400+ Proven Converting, Mobile Responsive & Ready-to-Go Templates \r\n- Fully Drag & Drop & Visual Next Generation Funnel Designer & Planner \r\n- Precise Analytics for Your Marketing Campaigns \r\n- Inbuilt SEO Management For Funnel And Pages \r\n- Advanced FE Integrations with Autoresponders & Webinar Platforms.\r\n- Automatic SSL Encryption \r\n- 50+ More Cool Features Included\r\n\r\nSo, you don\'t need to Pay High Monthly Fees to ClickFunnels or any other Funnel or Page Builder to- \r\n\r\n=> Create UNLIMITED or use Proven Converting Funnels in Any Niche in FEW Minutes\r\n=> Build UNLIMITED Beautiful, Mobile-Friendly & Fast-Loading Landing Pages Easily\r\n=> Create UNLIMITED Page Templates from Scratch\r\n=> Create Beautiful & High Converting Lead Pages, Sales, Product, Coming Soon, Bonus, Review Pages & Many Others in Minutes\r\n\r\n@ One Time Price ( No Monthly Recurring Charge ) PLUS, Complete Step-By-Step Video Training & Tutorials Included to Assist You 24/7...\r\n\r\nGrab this Exclusive Deal>> https://bit.ly/qfunnelsx\r\n\r\nRegards\r\n\r\nRob Wilson\r\n98 Rocky ST. MI\r\n44345\r\n=====\r\nClick here to unsubscribe\r\nhttps://bit.ly/stop69',''),(1205,1,306,'6','Mittie Seevers',''),(1206,1,306,'2','03464 69 68 21',''),(1207,1,306,'3','seevers.mittie@googlemail.com',''),(1208,1,306,'4','I will help you rank higher on google with safe high da SEO contextual backlinks for 5$\r\n\r\nLink : https://bit.ly/seoservice7',''),(1209,1,307,'6','Charlene Hornick',''),(1210,1,307,'2','0348 6550858',''),(1211,1,307,'3','hornick.charlene@gmail.com',''),(1212,1,307,'4','You should get on this right now! \r\n\r\nIf you’re looking for passive gains on even a small investment, Bybit’s copy-trading feature might just be the answer to your dreams.\r\n\r\nWith this innovative tool, you can follow the trades of successful traders and potentially increase your profits while learning from the best.\r\n\r\nCheck it out here:\r\n\r\nhttps://medium.com/@webmoneyrevolution/make-money-while-you-sleep-with-bybits-copy-trading-feature-e6e3a335cdb6',''),(1213,1,309,'6','Kurt Stubblefield',''),(1214,1,309,'2','06-69079811',''),(1215,1,309,'3','stubblefield.kurt20@msn.com',''),(1216,1,309,'4','Have you seen this?\r\n\r\nGlynn just released his latest system...\r\n\r\nThe AI 30K Copy & Paste Commissions!!\r\n\r\n=> CLICK HERE FOR INSTANT ACCESS\r\nhttps://warriorplus.com/o2/a/w3rjb2/0\r\n\r\nThis one shows you how\r\nto make 30K THIS MONTH!\r\n\r\nI\'ve tested it and it\'s proven to work!!\r\n\r\nI even bought it myself.\r\n\r\nOnly costs about 17 bux...\r\n\r\nPlus, I got the 10 incredible\r\nbonuses worth thousands!\r\n\r\nThis is probably the biggest\r\ndigital deal of the year.\r\n\r\nCheck it out before it\'s too late...\r\n\r\n=> CLICK HERE FOR INSTANT ACCESS\r\nhttps://warriorplus.com/o2/a/w3rjb2/0',''),(1217,1,310,'6','Colleen Minifie',''),(1218,1,310,'2','785-689-2529',''),(1219,1,310,'3','minifie.colleen@msn.com',''),(1220,1,310,'4','I will help you rank higher on google with safe high da SEO contextual backlinks for 5$\r\n\r\nLink : https://bit.ly/seoservice7',''),(1221,1,312,'6','Jessica Baker',''),(1222,1,312,'2','7148335802',''),(1223,1,312,'3','jessica.b@aiglobal.com',''),(1224,1,312,'4','Hi there,\r\n\r\nI hope this message finds you well and happy.\r\n\r\nI have something exciting to share with you today. It\'s a tool that can help you create amazing content for your business, website, blog, social media, and more.\r\n\r\nIt\'s called Copy AI, and it\'s powered by artificial intelligence. It can generate headlines, slogans, captions, descriptions, stories, and anything else you need to write.\r\n\r\nYou don\'t have to be a professional writer or spend hours brainstorming ideas. You just type in a few words or sentences and let Copy AI do the rest.\r\n\r\nSounds too good to be true? Well, it\'s not. You can see for yourself by clicking on this link: https://ai-global.online/Copy-AI \r\n\r\nThis link will take you to a special page where you can try Copy AI for free for 7 days. You can also watch some videos of how it works and what it can do for you.\r\n\r\nBut hurry up! This offer is only valid until March 31st. After that, you\'ll have to pay the regular price to access this amazing tool.\r\n\r\nSo don\'t miss this opportunity to boost your content creation and grow your business with Copy AI.\r\n\r\nClick here now: https://ai-global.online/Copy-AI\r\n\r\nTrust me, you won\'t regret it.\r\n\r\nCheers,\r\n\r\nJessica Baker',''),(1225,1,314,'6','Katrin Broadbent',''),(1226,1,314,'2','250-850-0323',''),(1227,1,314,'3','contact@webscraft.live',''),(1228,1,314,'4','Dear Sir,\r\n\r\nWe provide country targeted website visitors from \r\nUSA, CANADA, UNITED KINGDOM,WORLDWIDE ANY COUNTRY\r\n\r\nWe Also Provide SEO Services, Backlinks, Google Reviews, Classified ADS, Social Followers etc\r\nIf you are interested then please visit our website.\r\n\r\nhttps://buytraffics.net/\r\n\r\nThanks\r\nBuy Traffics',''),(1229,1,315,'6','Orlando Silva',''),(1230,1,315,'2','06-71333793',''),(1231,1,315,'3','silva.orlando@msn.com',''),(1232,1,315,'4','I will create website design, website mockup, wordpress landing page design for 20$\r\n\r\nLink : https://bit.ly/websitedesign6',''),(1233,1,317,'6','Chih Chien Chang',''),(1234,1,317,'2','85893987127',''),(1235,1,317,'3','dir.chau0040@gmail.com',''),(1236,1,317,'4','Greetings, \r\n \r\nI would like to extend a professional and alluring business opportunity to you. Kindly respond to my email address provided below (dir.chau0040@yahoo.com) for further deliberation. \r\n \r\nThank you \r\nDir. Chih Chien Chang',''),(1237,1,317,'5','Google',''),(1238,1,318,'6','Lauryn Stephens',''),(1239,1,318,'2','0274243869',''),(1240,1,318,'3','lauryn.s.nz@gmail.com',''),(1241,1,318,'4','Hi there, I have 2 Mitsibishi heat pumps in my home. Now need to have a hearing option for second and third bedroom/hallway. \r\nRequest a site visit/quote please. \r\nKind regards, \r\nLauryn',''),(1242,1,318,'5','Online search for Mitsibishi in Rolleston area',''),(1243,1,319,'6','Mike Williams',''),(1244,1,319,'2','89823147553',''),(1245,1,319,'3','no-replyinquiff@gmail.com',''),(1246,1,319,'4','Greetings \r\n \r\nI have just verified your juiceelectrical.co.nz for onsite errors and saw that your website has a handful of issues which should be addressed. \r\n \r\nNo matter what you are offering or selling, having a poor optimized site, full of bugs and errors, will never help your ranks. \r\n \r\nLet us fix your wordpress site errors today and get your ranks reach their full potential \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/product/wordpress-seo-audit-and-fix-service/ \r\n \r\n \r\nRegards \r\nMike Williams',''),(1247,1,319,'5','Google',''),(1248,1,321,'6','Shonda Young',''),(1249,1,321,'2','0495 94 16 92',''),(1250,1,321,'3','young.shonda@outlook.com',''),(1251,1,321,'4','https://bit.ly/ChatgptEbooks\r\n\r\nAre you tired of spending countless hours writing eBooks to grow your business or website? Are you looking for a fast and effective way to create unique eBooks without sacrificing quality? Look no further than our brand new PLR pack that turns ChatGPT into your own collection of over 10,000 unique eBooks!\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nWith this PLR pack, you can finally take advantage of the powerful capabilities of ChatGPT to create high-quality eBooks quickly and easily. Whether you\'re looking to grow your email list, generate more leads, or increase your revenue, our PLR pack has you covered.\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nOur pack includes a variety of niches to choose from, including business, health and wellness, personal development, and more. Plus, with over 10,000 unique eBooks, you\'ll never run out of content to share with your audience.\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nWhat\'s more, our PLR pack is fully customizable. You can edit, modify, and brand each eBook to suit your needs and preferences. This means that you can quickly and easily create eBooks that align with your brand and resonate with your audience.\r\n\r\nhttps://bit.ly/ChatgptEbooks\r\n\r\nDon\'t waste any more time writing eBooks from scratch. Get our brand new PLR pack today and turn ChatGPT into your own collection of over 10,000 unique eBooks! With our PLR pack, you\'ll have everything you need to grow your business and reach your goals. Order now and see the results for yourself! \r\n\r\nhttps://bit.ly/ChatgptEbooks',''),(1252,1,322,'6','Katy Trilly',''),(1253,1,322,'2','453 6607',''),(1254,1,322,'3','katytrilly9@gmail.com',''),(1255,1,322,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nYou can view more of our work here:\r\nhttps://drive.google.com/drive/folders/1dLS-IyxSMWOfcCba0DlDG_vb4P-QK_ci?usp=share_link\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\n30 seconds = $195\r\n1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nKaty',''),(1256,1,323,'6','Darell Theissen',''),(1257,1,323,'2','0371 96 01 78',''),(1258,1,323,'3','theissen.darell@googlemail.com',''),(1259,1,323,'4','I will create website design, website mockup, wordpress landing page design for 20$\r\n\r\nLink : https://bit.ly/websitedesign6',''),(1260,1,324,'6','Steve Collins',''),(1261,1,324,'2','0370 9021594',''),(1262,1,324,'3','stevecollins@gmail.com',''),(1263,1,324,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more social media specialists to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve completing various tasks on social media platforms.\r\n\r\nWe currently are hiring 4 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://www.theaisocial.com/socialmediajobs\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nLooking out for you,\r\nSteve from AISocial',''),(1264,1,325,'6','Ewan Schimmel',''),(1265,1,325,'2','0477 83 91 00',''),(1266,1,325,'3','schimmel.ewan73@yahoo.com',''),(1267,1,325,'4','https://bit.ly/GPTBlasterVip\r\n\r\nIntroducing GPT Blaster - the world\'s first true auto chat GPT website publisher that allows you to create set-and-forget websites in any niche on autopilot mode!\r\n\r\nWith GPT Blaster, you can harness the power of chat GPT to effortlessly create stunning websites that are optimized for maximum conversions. Simply choose your niche, set it and forget it, and watch as GPT Blaster does all the work for you.\r\n\r\nhttps://bit.ly/GPTBlasterVip\r\n\r\nWhether you\'re a seasoned marketer or just starting out, GPT Blaster is the perfect tool to take your business to the next level. Say goodbye to the hassle of website building and hello to effortless online success.\r\n\r\nSo why wait? Get started with GPT Blaster today and start building your dream website with ease!\r\n\r\nhttps://bit.ly/GPTBlasterVip',''),(1268,1,326,'6','EMI Fannin',''),(1269,1,326,'2','06-39901563',''),(1270,1,326,'3','royce.fannin@outlook.com',''),(1271,1,326,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1272,1,327,'6','Tim Rather',''),(1273,1,327,'2','256-792-2633',''),(1274,1,327,'3','rather.emil@gmail.com',''),(1275,1,327,'4','Hey it\'s Tim,\r\nWhile doing SEO audits I noticed a few things wrong with your website.\r\nLet\'s chat sometime here\'s my number, call or text me when you have a second : 256-792-2633',''),(1276,1,328,'6','Lida Spivakovsky',''),(1277,1,328,'2','559-349-8266',''),(1278,1,328,'3','spivakovsky.lida@hotmail.com',''),(1279,1,328,'4','https://bit.ly/Crypto_Ai\r\n\r\nWelcome to The Crypto Code - the ultimate solution for investors looking to succeed in the world of crypto. Our comprehensive system is designed to give you a competitive edge, and at the heart of it all is our cutting-edge AI technology.\r\n\r\nOur proprietary WaveBot and Predictions Bot are just the beginning. With our AI technology built in throughout our system, you\'ll have access to intelligent and informed trading decisions that maximize your profits and keep you ahead of the curve.\r\n\r\nhttps://bit.ly/Crypto_Ai\r\n\r\nWhether you\'re a beginner just starting out or a seasoned investor looking to take your crypto game to the next level, The Crypto Code has everything you need to succeed. Our comprehensive training system walks you through specific strategies that have been proven to bring success in the world of crypto, and our powerful bots and software tools make trading easy and profitable.\r\n\r\nBut what really sets The Crypto Code apart is our AI technology. With our intelligent algorithms analyzing market trends and data, you\'ll have an unbeatable edge in the crypto market. Join The Crypto Code today and take your trading to the next level with the power of AI.\r\n\r\nhttps://bit.ly/Crypto_Ai',''),(1280,1,329,'6','Robertphync',''),(1281,1,329,'2','88476768648',''),(1282,1,329,'3','zelatcol@gmail.com',''),(1283,1,329,'4','Hola, volia saber el seu preu.',''),(1284,1,329,'5','Google',''),(1285,1,331,'6','Robertphync',''),(1286,1,331,'2','83731539497',''),(1287,1,331,'3','zelatcol@gmail.com',''),(1288,1,331,'4','Ողջույն, ես ուզում էի իմանալ ձեր գինը.',''),(1289,1,331,'5','Google',''),(1290,1,333,'6','Ross Aaron',''),(1291,1,333,'2','915-633-6477',''),(1292,1,333,'3','ross.aaron88@hotmail.com',''),(1293,1,333,'4','https://bit.ly/Instagram_For_Business_Vip\r\n\r\nAttention Business Owners: \r\n\r\nAre you struggling to find ways to increase your online presence and drive more sales? Look no further! Our comprehensive guide \"Instagram For Business\" is the solution you\'ve been searching for!\r\n\r\nWith over 1 billion active users, Instagram is a goldmine for businesses of all sizes. But with so much competition, it can be difficult to stand out and make an impact. That\'s where our guide comes in. \r\n\r\nOur carefully crafted ebook is designed to help you navigate the world of Instagram for business with ease. Whether you\'re a beginner or an experienced user, we\'ve got you covered with 11 chapters packed full of valuable information.\r\n\r\nhttps://bit.ly/Instagram_For_Business_Vip\r\n\r\nHere\'s a sneak peek at what you can expect to learn:\r\n\r\n- The WHY behind Instagram for business \r\n- Creating a solid foundation \r\n- Developing your Instagram brand \r\n- Growing your following \r\n- Generating superior leads \r\n- Building trust with your audience \r\n- Driving sales from your page \r\n- Launching your product \r\n- Mastering Instagram Stories and Live \r\n- Achieving magical results \r\n\r\nhttps://bit.ly/Instagram_For_Business_Vip\r\n\r\nWe know that time is money, so we\'ve made it easy for you to get started. Our guide is available in a convenient PDF format, allowing you to access it from anywhere at any time. And with clear, concise language and easy-to-follow steps, you\'ll be on your way to Instagram success in no time.\r\n\r\nDon\'t let your competitors steal the spotlight. Invest in \"Instagram For Business\" today and take your business to the next level. Order now and receive a free bonus chapter on Instagram advertising strategies.\r\n\r\nJoin the millions of businesses already thriving on Instagram. Order your copy now!\r\n\r\nhttps://bit.ly/Instagram_For_Business_Vip',''),(1294,1,334,'6','Genevieve Jones',''),(1295,1,334,'2','(02) 4339 4451',''),(1296,1,334,'3','feedback@fastqualitycontent.com',''),(1297,1,334,'4','Hey,\r\n\r\nI wanted to reach out and offer my help. I run a content writing business and my team can help you get the articles you need.\r\n\r\nWe are currently offering a 25% discount on all our content packages. Follow this link to find out more: https://fastqualitycontent.com/25-off-content/\r\n\r\nLooking Forward to Working with You!\r\n\r\nGenevieve',''),(1298,1,335,'6','Mollie Turner',''),(1299,1,335,'2','422 34 922',''),(1300,1,335,'3','mollie.turner@gmail.com',''),(1301,1,335,'4','https://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nIntroducing DFY LinkedIn Mastery - the ultimate solution for professionals looking to master LinkedIn and boost their career or business. With our exclusive access to high-quality, done-for-you LinkedIn mastery resources, you can take your LinkedIn game to the next level without any effort!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nOur DFY LinkedIn Mastery package includes:\r\n\r\n- Professionally written LinkedIn profile templates that grab attention and showcase your skills and expertise.\r\n- Proven strategies for growing your LinkedIn network and generating high-quality leads.\r\n- Step-by-step guidance on how to optimize your LinkedIn content for maximum visibility and engagement.\r\n- Access to our exclusive LinkedIn training videos that provide insider tips and tricks for LinkedIn success.\r\n- And much more!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nWith DFY LinkedIn Mastery, you\'ll get everything you need to master LinkedIn and achieve your goals. Whether you\'re a job seeker, a business owner, or a marketer, our package will help you leverage the power of LinkedIn to achieve success and grow your career or business.\r\n\r\nAnd the best part? You get 100% full unrestricted use rights to use, rebrand, re-sell, and profit from our DFY LinkedIn Mastery package. That\'s right - you can use our package to grow your own LinkedIn presence, or you can sell it to others for a profit!\r\n\r\nSo why wait? Get exclusive instant access to DFY LinkedIn Mastery today and start taking your LinkedIn game to the next level!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery',''),(1302,1,336,'6','Sam Conrad',''),(1303,1,336,'2','567-220-7546',''),(1304,1,336,'3','sam.c@adcreative.com',''),(1305,1,336,'4','Hey,\r\n\r\nI wanted to reach out to introduce you to an innovative solution that can revolutionize your ad creation process and help you save significant costs. \r\n\r\nHave you ever considered the idea of taking full control of your advertising, eliminating the need for expensive marketing agencies and designers?\r\n\r\nIntroducing Adcreative.ai, a cutting-edge tool designed to empower business owners like yourself in creating captivating ads effortlessly. \r\n\r\nWith Adcreative.ai, you can transform your ad campaigns in minutes, all while significantly reducing expenses.\r\n\r\nHere\'s the exciting part: I\'m thrilled to offer you an exclusive opportunity to experience Adcreative.ai firsthand with a 7-day free trial! \r\n\r\nOn top of that, we\'re also providing you with $500 in free Google Ads credit upon signing up, enabling you to maximize your advertising impact right from the start.\r\n\r\nImagine the possibilities: effortlessly creating eye-catching ads tailored to your business, reaching your target audience effectively, and saving substantial costs along the way. \r\n\r\nWith Adcreative.ai, you\'ll unlock a new level of advertising success.\r\n\r\nDon\'t miss out on this exclusive opportunity! \r\n\r\nClick the link below to start your 7-day free trial and claim your $500 free Google Ads credit:\r\n\r\nhttps://free-trial.adcreative.ai/may-2023\r\n\r\nShould you have any questions or need assistance during your trial, our dedicated support team is always ready to provide guidance and help you achieve outstanding results.\r\n\r\nJoin the growing community of business owners who have discovered the power of Adcreative.ai today! \r\n\r\nTake the reins of your advertising and revolutionize the way you create ads.\r\n\r\nTo your advertising success,\r\n\r\nSam Conrad',''),(1306,1,337,'6','Samantha Spring',''),(1307,1,337,'2','50-51-00-84',''),(1308,1,337,'3','samantha.spring72@outlook.com',''),(1309,1,337,'4','I will provide 10 high da guest posts with SEO dofollow backlinks for 10$\r\n\r\nLink : https://bit.ly/seoservice8',''),(1310,1,338,'6','Robertphync',''),(1311,1,338,'2','83432743388',''),(1312,1,338,'3','zelatcol@gmail.com',''),(1313,1,338,'4','Zdravo, htio sam znati vašu cijenu.',''),(1314,1,338,'5','Google',''),(1315,1,339,'6','Janessa Osby',''),(1316,1,339,'2','079 3586 4450',''),(1317,1,339,'3','janessa.osby@msn.com',''),(1318,1,339,'4','https://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nAre you tired of struggling to make a decent income online? Are you ready to start earning big ticket commissions without all the hard work? Look no further than AI 1K Big Ticket Commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nOur revolutionary system is powered by AI and ChatGPT, making it easy for you to generate profits without lifting a finger. With over $10,000 in monthly high ticket commissions, you can finally achieve financial freedom and live the life you\'ve always dreamed of.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nBut what makes AI 1K Big Ticket Commissions different from other programs out there? It\'s 100% done-for-you, meaning you don\'t have to worry about creating content, building websites, or any of the other tedious tasks that come with running an online business. Everything you need to succeed is right at your fingertips, all within one platform.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nDon\'t miss out on this incredible opportunity to turn your financial situation around. Join the countless others who have already seen massive success with AI 1K Big Ticket Commissions. Sign up now and start earning those big ticket commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions',''),(1319,1,340,'6','Semenax',''),(1320,1,340,'3','no-reply@semenax.com',''),(1321,1,340,'4','* Increase semen volume & orgasm intensity\r\n* Results in just 2 weeks\r\n* 98% of men say they’d buy it again\r\n* 100% satisfaction money-back guarantee\r\n\r\nhttps://www.semenaxboost.com',''),(1322,1,341,'6','Eric Jones',''),(1323,1,341,'2','555-555-1212',''),(1324,1,341,'3','ericjonesmyemail@gmail.com',''),(1325,1,341,'4','To the juiceelectrical.co.nz Administrator.\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1326,1,342,'6','Juliann McFarland',''),(1327,1,342,'2','02743 88 30 81',''),(1328,1,342,'3','mcfarland.juliann51@outlook.com',''),(1329,1,342,'4','https://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nIntroducing Nexus - the game-changing add-on that harnesses the power of AI to help you drive massive amounts of free traffic from YouTube in just 30 seconds! With Nexus, you\'ll never have to worry about tedious video creation, tech skills or even being on camera. \r\n\r\nNexus is the ultimate solution for anyone who wants to skyrocket their online business without breaking the bank. You can now tap into the billions of users on YouTube and convert them into loyal customers, effortlessly. \r\n\r\nWith its cutting-edge technology, Nexus finds you the most profitable niches and keywords, so you can start generating massive amounts of targeted traffic to your offers, products or services within minutes. This powerful tool does all the heavy lifting for you, so you can focus on what really matters - growing your business and making more money.\r\n\r\nBut that\'s not all. With Nexus, you\'ll also get access to a step-by-step training that shows you how to maximize your results and scale your business to new heights. You\'ll learn the insider secrets of top marketers who are already crushing it with YouTube traffic and how to replicate their success.\r\n\r\nDon\'t miss out on this incredible opportunity to get your hands on Nexus today. Say goodbye to the frustration and overwhelm of trying to generate traffic on your own and say hello to a new era of online success. With Nexus, you\'ll be able to enjoy a consistent flow of targeted traffic that converts into real profits, all while working less and enjoying more freedom. \r\n\r\nOrder now and start seeing results in as little as 30 seconds!\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI',''),(1330,1,343,'6','Aline Demaine',''),(1331,1,343,'2','203-632-4383',''),(1332,1,343,'3','demaine.aline@googlemail.com',''),(1333,1,343,'4','https://bit.ly/AIBuildervip\r\n\r\nAre you tired of struggling with clunky website builders? Are you ready to enter the future of website creation? Look no further than AIBuilder, the world\'s first voice-activated page builder!\r\n\r\nhttps://bit.ly/AIBuildervip\r\n\r\nWith AIBuilder, you don\'t have to fumble around with complicated interfaces or worry about coding. Simply speak your commands and watch as our brand new AI technology creates stunning websites, landing pages, and funnels that will knock your socks off!\r\n\r\nhttps://bit.ly/AIBuildervip\r\n\r\nNot only will AIBuilder save you time and frustration, but it will also make you look like a design genius. Your friends and colleagues will be scratching their heads, wondering how you managed to create such gorgeous pages with ease.\r\n\r\nhttps://bit.ly/AIBuildervip\r\n\r\nBut don\'t take our word for it! Try AIBuilder for yourself and experience the magic firsthand. Trust us, your website creation game will never be the same. Say goodbye to the headaches and hello to the future of web design with AIBuilder.\r\n\r\nhttps://bit.ly/AIBuildervip',''),(1334,1,344,'6','AlexanderMut',''),(1335,1,344,'2','89677717392',''),(1336,1,344,'3','alexanderMut@onmad.com',''),(1337,1,344,'4','Create a сlonе of her in thіs gamе!ǃ! http://gingnawihysdelo.tk/prd-6195/\r\nAnd fuck her wіthout lіmitѕ, as уоu alwаys wantеd. Ѕhе won\'t refuѕe уоu!\r\nIf уou wаnt, fuсk nоt onlу her, but аlsо her gіrlfriend. Ѕіmultanеоuѕlyǃ\r\n... оr mаybе yоu want her to fuck you? :)',''),(1338,1,344,'5','Google',''),(1339,1,345,'6','EMI Braine',''),(1340,1,345,'2','88 170 16 91',''),(1341,1,345,'3','braine.jolie99@outlook.com',''),(1342,1,345,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1343,1,346,'6','Bart Berger',''),(1344,1,346,'2','06-54366968',''),(1345,1,346,'3','fjonline1400@gmail.com',''),(1346,1,346,'4','Hello juiceelectrical.co.nz admin\r\n\r\nhttps://bit.ly/3LWVcbD\r\n\r\nRegards\r\nBart',''),(1347,1,347,'6','Lawerence Perrett',''),(1348,1,347,'2','613-784-4325',''),(1349,1,347,'3','lawerence.perrett@yahoo.com',''),(1350,1,347,'4','I will provide 10 high da guest posts with SEO dofollow backlinks for 10$\r\n\r\nLink : https://bit.ly/seoservice8',''),(1351,1,348,'6','Eric Jones',''),(1352,1,348,'2','555-555-1212',''),(1353,1,348,'3','ericjonesmyemail@gmail.com',''),(1354,1,348,'4','Dear juiceelectrical.co.nz Owner!\r\n\r\nMy name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1355,1,349,'6','Lillian McGee',''),(1356,1,349,'2','091 888 39 75',''),(1357,1,349,'3','mcgee.lillian@msn.com',''),(1358,1,349,'4','https://bit.ly/KleverSend_AI\r\n\r\nAttention all business owners! Are you tired of struggling to keep up with your customer inquiries on WhatsApp? Do you want to take your sales game to the next level? Look no further than KleverSend AI - the all-in-one WhatsApp autoresponder and bot powered by ChatGPT4!\r\n\r\nWith KleverSend AI, you can acquire new leads, simultaneously talk to unlimited prospects just like a human would, follow-up with them, and close sales automatically - all 24X7! Say goodbye to manual responses, and hello to automated sales success.\r\n\r\nClick here to start automating your sales process with KleverSend AI: https://bit.ly/KleverSend_AI\r\n\r\nImagine having an AI-powered sales assistant that can handle all your WhatsApp customer inquiries with ease. KleverSend AI is the solution you\'ve been searching for! It\'s designed to help you focus on what matters most - closing more sales and growing your business.\r\n\r\nDon\'t waste any more time manually responding to customer inquiries. Let KleverSend AI do the work for you! Click here to get started: https://bit.ly/KleverSend_AI\r\n\r\nKleverSend AI is the perfect tool for business owners who want to streamline their sales process and close more deals. It\'s easy to set up and use, and it\'s powered by ChatGPT4 - the most advanced language model in the world. Plus, with unlimited prospect outreach and automatic follow-ups, you can rest assured that no lead will slip through the cracks.\r\n\r\nDon\'t wait any longer to start automating your sales process. Click here to get started with KleverSend AI today: https://bit.ly/KleverSend_AI\r\n\r\nIn conclusion, if you\'re looking for a game-changing tool that can help you acquire new leads, talk to unlimited prospects just like a human would, and close more sales automatically 24X7, KleverSend AI is the answer. Click here to start automating your sales process today: https://bit.ly/KleverSend_AI',''),(1359,1,350,'6','Jonelle Seifert',''),(1360,1,350,'2','330-326-0134',''),(1361,1,350,'3','jonelle.seifert@outlook.com',''),(1362,1,350,'4','I will do 3d modeling, rendering and animation video of products for 10$\r\n\r\nLink : https://bit.ly/3dproductdesigner',''),(1363,1,351,'6','EMI Helbig',''),(1364,1,351,'2','06-48277031',''),(1365,1,351,'3','shanel.helbig19@outlook.com',''),(1366,1,351,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1367,1,352,'6','EMI Keiser',''),(1368,1,352,'2','06727 14 69 12',''),(1369,1,352,'3','keiser.irving@gmail.com',''),(1370,1,352,'4','Do you need targeted Customers emails and phone numbers ? if yes I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1371,1,353,'6','Marcel Yamamoto',''),(1372,1,353,'2','434-808-2701',''),(1373,1,353,'3','no-reply@best-quaity-offers.com',''),(1374,1,353,'4','✅ Free Traffic ✅ High Quality Unique IP - Best for Adsense ✅ Easy to use ✅ Make Unlimited Money using Free Traffic ✅ 5 Star Rating by users\r\n\r\nCheck here - https://bit.ly/41nuMFT\r\n\r\nLife changing System that anyone can use to increase unlimited traffic.',''),(1375,1,354,'6','Horace Dove',''),(1376,1,354,'2','06-46635653',''),(1377,1,354,'3','seosubmitter@mail.com',''),(1378,1,354,'4','Hello juiceelectrical.co.nz administrator,\r\n\r\nYou are looking for Free Traffic to Your Website\r\n\r\nWe offering you a Free Trial to try out our Website Traffic service.\r\n\r\nWe want to prove to you that our Website Traffic work and so we’re willing to prove it to you risk-free.\r\n\r\nSubmit your details >> https://zeep.ly/gPFlF\r\n\r\nThanks, \r\nDove\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nNetherlands, GE, Zutphen, 7204 Bp, Albert Cuypstraat 58\r\n \r\nTo stop any further communication through your website form, Please reply with subject: Unsubscribe juiceelectrical.co.nz',''),(1379,1,355,'6','Pearline Berry',''),(1380,1,355,'2','078 1389 4861',''),(1381,1,355,'3','pearline.berry@googlemail.com',''),(1382,1,355,'4','https://bit.ly/GetGenie_Vip\r\n\r\nIntroducing GetGenie - Your Personal AI Assistant for Content & SEO!\r\n\r\nAre you tired of using multiple apps to manage your website\'s content and SEO? Look no further, GetGenie is here to replace all those apps with its AI magic and simple WordPress plugin.\r\n\r\nWith GetGenie, you can optimize your website\'s content and SEO with ease. Say goodbye to tedious keyword research and content optimization tasks, as GetGenie does it all for you, and in a fraction of the time.\r\n\r\nhttps://bit.ly/GetGenie_Vip\r\n\r\nGetGenie\'s intelligent algorithm analyzes your website\'s content and suggests the most relevant keywords to improve your search engine ranking. It even offers real-time content suggestions to help you create high-quality content that engages your audience and drives conversions.\r\n\r\nWith GetGenie, you no longer need to switch between different tools to monitor your website\'s performance. Its comprehensive analytics dashboard provides you with all the insights you need to make data-driven decisions.\r\n\r\nGetGenie\'s simple WordPress plugin makes it easy to integrate its features into your website, without the need for any technical expertise.\r\n\r\nSay hello to GetGenie, and say goodbye to the hassle of managing multiple apps for your content and SEO needs. Try it now, and experience the magic of AI for yourself!\r\n\r\nhttps://bit.ly/GetGenie_Vip',''),(1383,1,356,'6','Eric Jones',''),(1384,1,356,'2','555-555-1212',''),(1385,1,356,'3','ericjonesmyemail@gmail.com',''),(1386,1,356,'4','Hi juiceelectrical.co.nz Administrator.\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.”\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1387,1,357,'6','Shantell Wise',''),(1388,1,357,'2','442 4155',''),(1389,1,357,'3','shantell.wise@yahoo.com',''),(1390,1,357,'4','https://bit.ly/VoiceGPT_AI\r\n\r\nIntroducing VoiceGPT AI, the revolutionary cloud-based app that combines the power of ChatGPT4 with advanced voice technology to create unique high-quality content and convert it into real human emotion-based voices and audiobooks. Say goodbye to generic, robotic-sounding voices and hello to engaging, emotive audio content that captivates your audience and drives conversions.\r\n\r\nWith VoiceGPT AI, you can create custom audio content in minutes. Simply input your text, select your preferred voice and tone, and let our advanced technology do the rest. Our app generates natural-sounding audio that conveys the emotions and nuances of your text, creating a listening experience that engages your audience and leaves a lasting impression.\r\n\r\nhttps://bit.ly/VoiceGPT_AI\r\n\r\nWhether you\'re a content creator, marketer, or business owner, VoiceGPT AI is the perfect tool to take your audio content to the next level. Use it to create engaging podcasts, audiobooks, video voiceovers, and more. Our app is easy to use, intuitive, and requires no technical expertise. Plus, it\'s cloud-based, so you can access it from anywhere and collaborate with your team in real-time.\r\n\r\nDon\'t settle for generic, lifeless audio content that fails to capture your audience\'s attention. Upgrade to VoiceGPT AI and experience the power of emotive audio content that converts. Try it out today and see the difference for yourself.\r\n\r\nhttps://bit.ly/VoiceGPT_AI',''),(1391,1,358,'6','EMI Cleary',''),(1392,1,358,'2','027 322 43 12',''),(1393,1,358,'3','omar.cleary@gmail.com',''),(1394,1,358,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1395,1,359,'6','Alfredo Devries',''),(1396,1,359,'2','850-582-3726',''),(1397,1,359,'3','alfredo.devries@hotmail.com',''),(1398,1,359,'4','https://bit.ly/SEOGPT\r\n\r\nIntroducing SEOGPT - the world\'s first SEO toolkit that instantly grants you access to 50 must-have SEO tools that every website owner needs to get higher rankings on Google, Bing, and Yahoo. With SEOGPT, you can drive unlimited free buyer traffic to your offers without spending a fortune. \r\n\r\nSay goodbye to the days of paying monthly fees to money-sucking search engine optimization platforms once and for all. With SEOGPT, you can save over $5000 yearly and kick out dependency on third parties completely. No more doing everything yourself or hiring expensive freelancers. \r\n\r\nSEOGPT is designed to help you get more exposure for your offers and dominate your competition at will. Whether you\'re a seasoned website owner or a complete newbie, SEOGPT is 100% beginner-friendly. You don\'t need any prior tech skills to get started with this powerful tool.\r\n\r\nhttps://bit.ly/SEOGPT\r\n\r\nWith SEOGPT, you\'ll get a brand new, never-seen-before business-boosting technology that includes 50 proven SEO tools to skyrocket your website\'s rankings. You\'ll have everything you need to take your website to the next level and beyond. \r\n\r\nPlus, for a limited time only, you\'ll get a commercial license to provide red-hot business services to your clients. With SEOGPT, you can start offering SEO services and charge top dollar for your expertise.\r\n\r\nDon\'t miss out on this incredible opportunity to get higher rankings on Google and drive unlimited free buyer traffic forever. Get SEOGPT today and start dominating your competition.\r\n\r\nhttps://bit.ly/SEOGPT',''),(1399,1,360,'6','Bill Cavana',''),(1400,1,360,'2','06-21993494',''),(1401,1,360,'3','billcavana696@gmail.com',''),(1402,1,360,'4','Hello,\r\n\r\nDo you struggle with creating high-quality videos that capture your audience\'s attention?\r\n\r\nAre you frustrated with the complicated and time-consuming process of video editing?\r\n\r\nWe understand your pain, and that\'s why we created Pictory – the AI-powered video editing tool that simplifies the process for you.\r\n\r\nSay goodbye to the hassle of video editing and hello to effortless, professional-looking videos that elevate your brand.\r\n\r\nClick here to see how Pictory can revolutionize your video marketing game.\r\n\r\nsimplevideobot.com\r\n\r\nRegards,\r\n\r\nBill\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(1403,1,361,'6','Carl Peterson',''),(1404,1,361,'2','022 377 96 63',''),(1405,1,361,'3','carl.peterson@gmail.com',''),(1406,1,361,'4','You see the vast majority of marketers\r\n\r\nare yet to make a single dime online…\r\n\r\n\r\nAnd the reason for this is simple:\r\n\r\n\r\nThey try to sell stuff to everyone\r\n\r\nand their grandma!\r\n\r\n\r\nI know, this goes against what you’ve \r\n\r\nbeen told by most gurus.\r\n\r\n\r\nBut let me tell you, no matter what others say…\r\n\r\n\r\nIf you try to sell stuff on the Internet to\r\n\r\ntotal strangers, you’ll end up struggling.\r\n\r\n\r\nBut what if you could pocket $795.56 per\r\n\r\nday with FREE traffic just like we do…\r\n\r\n\r\n…Without selling anything?\r\n\r\n\r\nYup, all thanks to a brand-new, powerful\r\n\r\nAI-powered, cloud app\r\n\r\n\r\n=> Click Here To Discover “Apex”: https://bit.ly/41R9GAO\r\n\r\n\r\nThis one-of-a-kind, revolutionary app \r\n\r\nautomatically creates “money sites,” \r\n\r\npre-fills them with high-quality, human-like \r\n\r\ncontent & then sends thousands of targeted\r\n\r\nFREE clicks.\r\n\r\n\r\nIn less than 23 seconds!\r\n\r\n\r\nIf you’re a total beginner looking to make\r\n\r\nyour first buck online, there’s no doubt that\r\n\r\nyou’ll find this unique software life-changing.\r\n\r\n\r\n=> Click Here To Get Started Now: https://bit.ly/41R9GAO\r\n\r\n\r\nDon\'t you think it\'s time to finally capitalize on the \"AI Craze\"?\r\n\r\n\r\nWell, with \"Apex\" now it\'s possible…\r\n\r\n\r\nYou can start using this out-of-the-box,\r\n\r\ntransformative app in the next 4 minutes\r\n\r\n\r\nAnd begin churning out profitable \"money sites\"\r\n\r\nwith just a few clicks of your mouse!\r\n\r\n\r\n=> Click Here To Grab “Apex” Now: https://bit.ly/41R9GAO\r\n\r\n\r\nRight now, “Apex” is in launch mode and is\r\n\r\nridiculously priced!\r\n\r\n\r\nBut, the price will increase once the launch phase is\r\n\r\nover, and you’ll have to pay monthly in order\r\n\r\nto use it.\r\n\r\n\r\nDon’t let that happen! \r\n\r\nGet it now, while you can!\r\n\r\n\r\n=> Click Here To Grab “Apex” Now: https://bit.ly/41R9GAO\r\n\r\n\r\nI’ll see you inside,\r\n\r\n\r\nCarl',''),(1407,1,362,'6','Chanel Toutcher',''),(1408,1,362,'2','252-521-6961',''),(1409,1,362,'3','toutcher.chanel@gmail.com',''),(1410,1,362,'4','I will do 3d modeling, rendering and animation video of products for 10$\r\n\r\nLink : https://bit.ly/3dproductdesigner',''),(1411,1,363,'6','Cortney Correia',''),(1412,1,363,'2','604-430-6464',''),(1413,1,363,'3','cortney.correia56@hotmail.com',''),(1414,1,363,'4','https://bit.ly/BrainBoxVip\r\n\r\nAre you ready to step into the future of customer service and communication? Introducing BrainBox, the first hard-coded AI app that allows you to launch your very own \"ChatGPT-like\" chatbot and charge people for using it.\r\n\r\nWith BrainBox, you\'ll have access to over 50 AI features that will stun both you and your customers. This revolutionary app uses the latest in artificial intelligence technology to provide your customers with a seamless and personalized experience. From natural language processing to sentiment analysis, BrainBox has everything you need to create a chatbot that is not only responsive but intelligent and engaging.\r\n\r\nhttps://bit.ly/BrainBoxVip\r\n\r\nImagine being able to offer your customers a 24/7 support system that never takes a break. With BrainBox, you can do just that. Your customers will be able to get instant answers to their questions, and you\'ll be able to focus on growing your business.\r\n\r\nBut that\'s not all. BrainBox is also incredibly easy to use. You don\'t need any coding skills or technical knowledge to get started. With just a few clicks, you can create your chatbot and start charging your customers.\r\n\r\nAnd the best part? BrainBox is completely customizable. You can create a chatbot that matches your brand\'s tone and personality. You can also add your own custom responses and triggers, ensuring that your chatbot is unique to your business.\r\n\r\nDon\'t miss out on this opportunity to take your business to the next level. Try BrainBox today and see for yourself how it can transform the way you communicate with your customers.\r\n\r\nhttps://bit.ly/BrainBoxVip',''),(1415,1,364,'6','Jeffry Pedersen',''),(1416,1,364,'2','457 1622',''),(1417,1,364,'3','pedersen.jeffry@gmail.com',''),(1418,1,364,'4','Did you know there’s a 12 word sentence you can say to your man... that will trigger intense feelings of love and instinctual attraction for you deep within his chest?\r\n\r\nBecause hidden in these 12 words is a “secret signal” that fuels a man’s instinct to love, please and protect you with all his heart...\r\n\r\n==>12 Words That Trigger A Man’s Love Response: https://shortz.pro/secret-obsession\r\n\r\nThis instinct is so hardwired into a man’s genetics that it will drive him to work harder than ever before to make your relationship the best part of both of your lives.\r\n\r\nIn fact, triggering this powerful instinct is so important to having the best possible relationship with your man that once you send your man one of these “Secret Signals”...\r\n\r\n...You’ll immediately notice him open his mind and heart to you in a way he’s never experienced before and he’ll see you as the only woman in the world who has ever truly understood him.\r\n\r\nAnd the powerful “secret signal” found in those 12 words is just one of many that veteran dating coach and relationship expert, James Bauer, has discovered throughout his career.\r\n\r\nThousands of women are already using these “secret signals” to transform their failing relationships into the passionate romances they’ve always dreamed of.\r\n\r\nAnd countless other women are using them to hook great guys from the very first time they meet.\r\n\r\nImagine knowing the exact words to say to a man to truly open up his heart to you and fuel his desire to be daring and romantic…\r\n\r\n...And what keeps his love and attention transfixed on you and only you.\r\n\r\nThis presentation reveals these relationship secrets and much, much more... and it’s a real game changer for any woman who knows she deserves better.\r\n\r\nIf now is a good time, you’ll want to watch this life changing presentation while it’s still up.\r\n\r\n==> 12 words that trigger a man’s love response: https://shortz.pro/secret-obsession\r\n\r\nBest Regards.',''),(1419,1,365,'6','Glena Wilson',''),(1420,1,365,'2','06131 15 39 12',''),(1421,1,365,'3','glendawilson031@gmail.com',''),(1422,1,365,'4','Hello,\r\n\r\nDo you struggle with creating high-quality videos that capture your audience\'s attention?\r\n\r\nAre you frustrated with the complicated and time-consuming process of video editing?\r\n\r\nWe understand your pain, and that\'s why we created Pictory – the AI-powered video editing tool that simplifies the process for you.\r\n\r\nSay goodbye to the hassle of video editing and hello to effortless, professional-looking videos that elevate your brand.\r\n\r\nClick here to see how Pictory can revolutionize your video marketing game.\r\n\r\n\r\nsimplevideobot.com\r\n\r\n\r\nRegards, \r\n\r\nGlenda\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n224 Westwood Cir., Dalton, GA 30721\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(1423,1,366,'6','Braeden McInnes',''),(1424,1,366,'2','027 313 2586',''),(1425,1,366,'3','B.mcinnes96@gmail.com',''),(1426,1,366,'4','Hi there, I am looking for a rough estimate to have some electrical work done as follows:\r\n- Wiring of new switchboard (supplied/manufactured by Bremca)\r\n- Additional electrical outlets and replacement of existing outlets needing to be replaced. \r\n- Removal of 2 hard wired heaters.\r\n- New wiring for approx 18 down lights with surface sockets. \r\n- Comment on existing alarm system. \r\n\r\nMain question is do you wire up new switchboards supplied by a manufacturer such as Bremca? I have a friend who works there and is keen to help sort the switchboard but will need an electrician to install it.\r\n\r\nFeel free to call for more details. \r\n\r\nCheers, Braeden',''),(1427,1,366,'5','Recommendation on Reddit',''),(1428,1,367,'6','Dominik Penington',''),(1429,1,367,'2','(71) 6739-6892',''),(1430,1,367,'3','dominik.penington@gmail.com',''),(1431,1,367,'4','https://bit.ly/Robin_AI\r\n\r\nBrand New AI Tool creates \'\'internet assets\'\' like Marketing Copy for your Landing Pages, Websites, Stunning Graphics like banners, visuals, graphics, and more in minutes. Fully powered by ChatGPT\r\nhttps://bit.ly/Robin_AI',''),(1432,1,368,'6','Carlo Son',''),(1433,1,368,'2','923 41 651',''),(1434,1,368,'3','carlo.son@gmail.com',''),(1435,1,368,'4','Hello juiceelectrical.co.nz,\r\n\r\nI hope this message finds you in great spirits. Today, I bring to your attention a tool that could fundamentally transform your project management and overall business efficiency.\r\n\r\nImagine a user-friendly platform that offers a dynamic range of services, from content creation to data analysis. All readily available to boost your project\'s productivity and impact, bypassing the usual complications of onboarding additional staff.\r\n\r\nDoes this spark your curiosity?\r\n\r\n[Discover the Possibilities Now]( https://seranking.life/FreeTrials )\r\n\r\nOur platform boasts clear-cut pricing and a secure transaction system, guaranteeing you receive exactly what you need, promptly and without unexpected hitches.\r\n\r\nDon\'t let your projects lag behind. Make them a benchmark in your industry.\r\n\r\n[Get Started Today]( https://seranking.life/FreeTrials )\r\n\r\nTo your success,\r\n\r\nSam McKenny',''),(1436,1,369,'6','Selene Lockington',''),(1437,1,369,'2','(11) 6452-5114',''),(1438,1,369,'3','selene.lockington@msn.com',''),(1439,1,369,'4','I will do 3d modeling, rendering and animation video of products for 10$\r\n\r\nLink : https://bit.ly/3dproductdesigner',''),(1440,1,370,'6','EMI McGovern',''),(1441,1,370,'2','06524 73 76 66',''),(1442,1,370,'3','mcgovern.aisha@outlook.com',''),(1443,1,370,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1444,1,371,'6','Caesar Sandberg',''),(1445,1,371,'2','323-931-2842',''),(1446,1,371,'3','caesar.sandberg@gmail.com',''),(1447,1,371,'4','I’ve just tried this software, and I can tell this has changed the way I make m0ney online.\r\n\r\n\r\nHere’s why:\r\n\r\n\r\nBefore this, I could spend countless hours in front of my computer just to generate more leads, increasing the conversion rates, or just trying to generate more visitors to my sites.\r\n\r\n\r\nOn the weekend, I could spend more than 12 hours working on my sites.\r\n\r\n\r\n…And I absolutely love it!\r\n\r\n\r\nAll the struggle and sleepless nights have made me fall in love with Internet Marketing from the start. I’m obsessed with it.\r\n\r\n\r\nThat’s until I gave ChromeStore a try.\r\n\r\n\r\nWhen this software launched a few days ago, I decided to give it a try and see if it really works for me.\r\n\r\n\r\nAnyway, making m0ney with this software is as easy as this:\r\n\r\n\r\n1. I spent 1 minute to decide the niche\r\n\r\n2. 15 minutes to set up a fresh ChromeStore\r\n\r\n3. And a few minutes to set up an automation system, which is designed to generate profits on autopilot\r\n\r\n\r\nAfter that, I just need to wait.\r\n\r\n\r\nTo my surprise, this morning I just got a sales notification from one affiliate product I’m promoting on my ChromeStore.\r\n\r\n\r\nCrazy, right?\r\n\r\n\r\nI know it’s not that instantly, but considering the fact I spend no more than an hour to make the sale, it completely blew my mind.\r\n\r\n\r\nIf you’re interested to buy this software, just remember: This is NOT for everyone.\r\n\r\n\r\nIf you love all the struggle and the countless hours you spend on your computer, then this is absolutely not for you.\r\n\r\n\r\nBut if you want an easier way, less time working and more time enjoying the profit, then this is probably the one you’ve been waiting for.\r\n\r\n\r\n…And here’s the link to get the software: https://bit.ly/3M4K9NI\r\n\r\n\r\nIf you join today you will also get access the following bonuses: \r\n\r\n\r\nSOCIAL MEDIA BOOM\r\n\r\nLEADBOOK GENERATOR\r\n\r\nWORDPRESS MEMBERSHIP \r\n\r\nWORDPRESS LIVE CHAT \r\n\r\nEZ LAUNCHER\r\n\r\nWORDPRESS ENGAGE+ \r\n\r\nWORDPRESS VIDEO ATTENTION \r\n\r\n\r\nWith a combined value of over $2997!\r\n\r\nLIMITED OFFER! \r\n\r\nClick the link to get ahead of your competition: https://bit.ly/450KSbz\r\n\r\n\r\nAll the best,\r\n\r\nCaesar',''),(1448,1,372,'6','Lauren Duke',''),(1449,1,372,'3','lauren.s.dukey@gmail.com',''),(1450,1,372,'4','Hi there, I have had a recent electrical inspection of my motorhome and I need the changeover switch replaced on the inverter so it has an \"off\" position between the inverter and mains supply. The RDC also needs to be a \'Type A\' and the switchboard needs overload protection. The joint where the cable from the inverter to the switchboard needs attention as it has exposed single insulation. \r\n\r\nPlease let me know if these are services you can provide! We would also prefer a female electrician if possible please.\r\n\r\nMany thanks,\r\nLauren.',''),(1451,1,373,'6','Robbin Marzano',''),(1452,1,373,'2','06-21993494',''),(1453,1,373,'3','robbin.marzano@gmail.com',''),(1454,1,373,'4','https://bit.ly/RoboCHAT_Vip\r\n\r\nAre you tired of spending endless hours building and maintaining your own chatbot platform? Look no further than RoboCHAT! Our revolutionary app lets you create your very own AI chatbot platform with just one click. \r\n\r\nRoboCHAT fuses the powerful AI technologies of both Google and Microsoft to create a platform that is unmatched by anything else on the market, including ChatGPT. This means that your chatbot will be smarter, faster, and more intuitive than ever before, making it the perfect tool for engaging with your customers and driving sales.\r\n\r\nhttps://bit.ly/RoboCHAT_Vip\r\n\r\nNot only that, but with RoboCHAT, you\'ll start earning money every time someone engages with your chatbot. That\'s right – you can turn your chatbot into a powerful revenue stream, all without lifting a finger.\r\n\r\nSo why wait? Sign up for RoboCHAT today and experience the power of the world\'s most advanced chatbot platform. With just one click, you can transform your business and start seeing real results. Don\'t miss out – get started with RoboCHAT now!\r\n\r\nhttps://bit.ly/RoboCHAT_Vip',''),(1455,1,374,'6','Lori Batson',''),(1456,1,374,'2','01.83.18.10.10',''),(1457,1,374,'3','lori.batson@outlook.com',''),(1458,1,374,'4','Hello Sir/Ma \r\nHope you having a good day.\r\nI Would like to invite potential investors into the multinational growing global company.\r\n\r\nReturn Of Investment related Systems services.The brief about the kind of services is mentioned in the companies catalog and corporate website.\r\nI would appreciate if you would take a look at this invitation opportunity put forward by Technologies board of directors and accept it. \r\nCurrently the company has clients,Investors,partners, distributors, resellers and others in more than 100+ countries across the globe.\r\nAs a company we are looking at growing and becoming one of the major multinational Investment Company in many countries across the globe.\r\nWe see that there is a huge potential and opportunities for the kind of services and products which we offer.\r\nThe company has a global vision for growth. We as a company are open for following options of legal investment options into the company .\r\n\r\nClick here to join our platform today: http:/proven-zenith.com/?ref=roland2210',''),(1459,1,375,'6','Eric Jones',''),(1460,1,375,'2','555-555-1212',''),(1461,1,375,'3','ericjonesmyemail@gmail.com',''),(1462,1,375,'4','Dear juiceelectrical.co.nz Administrator! Eric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1463,1,376,'6','Aseem Kumar Baishnab',''),(1464,1,376,'2','01.49.86.84.34',''),(1465,1,376,'3','aseemabir@leada2z.com',''),(1466,1,376,'4','Hello, \r\n\r\nMy name is Aseem Kumar Baishnab and I specialize in helping businesses like yours to generate high-quality leads that convert into sales. \r\n\r\nI understand that finding the right leads can be a time-consuming and challenging task, which is why I am here to offer my services. With my expertise in lead generation, I can help you to identify and target the right audience, engage with potential customers, and drive more sales to your business. \r\n\r\nIf you are interested in boosting your sales and taking your business to the next level, kindly reply back to this email and I would love to discuss this further with you. \r\n\r\nBest regards, \r\nAseem Kumar Baishnab',''),(1467,1,377,'6','Madonna Trevino',''),(1468,1,377,'2','0150-7549197',''),(1469,1,377,'3','madonna.trevino@gmail.com',''),(1470,1,377,'4','https://bit.ly/10web_AIBuiltWebsites\r\n\r\nAre you tired of spending countless hours building and optimizing your WordPress website? Look no further than 10web.io - the AI-powered WordPress platform that takes care of all your website needs.\r\n\r\nWith our automated website builder, you can create a stunning website in just minutes. Our platform uses AI technology to generate personalized website templates based on your preferences, ensuring a unique and professional design every time.\r\n\r\nBut that\'s not all - 10web.io also offers powerful hosting features that ensure your website loads quickly and runs smoothly. Our page speed booster optimizes your website for lightning-fast load times, keeping your visitors engaged and improving your search engine rankings.\r\n\r\nDon\'t waste another moment struggling with WordPress - let 10web.io handle everything for you. Sign up now and start building your dream website today!\r\n\r\nhttps://bit.ly/10web_AIBuiltWebsites',''),(1471,1,378,'6','Ignacio Mais',''),(1472,1,378,'2','09721 62 35 54',''),(1473,1,378,'3','mais.ignacio@googlemail.com',''),(1474,1,378,'4','https://bit.ly/Twitter_Profit_Hive\r\n\r\nAre you tired of scrolling through your Twitter feed and not making any money from it? Do you want to turn your Twitter account into a source of income? Then you\'ve come to the right place! ADDED BONUS: Twitter Standalone Software- (TWITTELLIGENCE).\r\nhttps://bit.ly/Twitter_Profit_Hive',''),(1475,1,379,'6','Eric Jones',''),(1476,1,379,'2','555-555-1212',''),(1477,1,379,'3','ericjonesmyemail@gmail.com',''),(1478,1,379,'4','Hi juiceelectrical.co.nz Admin.\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1479,1,380,'6','Eric Jones',''),(1480,1,380,'2','555-555-1212',''),(1481,1,380,'3','ericjonesmyemail@gmail.com',''),(1482,1,380,'4','Hello juiceelectrical.co.nz Administrator. my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1483,1,381,'6','Hyman Leachman',''),(1484,1,381,'2','06-22818319',''),(1485,1,381,'3','leachman.hyman@outlook.com',''),(1486,1,381,'4','I will do 3d modeling, rendering and animation video of products for 10$\r\n\r\nLink : https://bit.ly/3dproductdesigner',''),(1487,1,382,'6','Alexandra Hudgins',''),(1488,1,382,'2','078 5475 3583',''),(1489,1,382,'3','hudgins.alexandra@hotmail.com',''),(1490,1,382,'4','https://bit.ly/ProfitBot_Ai\r\n\r\nYou\'re just one click...\r\n\r\nFrom plugging into a turbo-charged AI...\r\n\r\nThat make $400 per day...\r\n\r\n$55 per hour...\r\n\r\nEven $2,200 per day...\r\n\r\nJust by pasting a few words...\r\n\r\nInto a new AI app - that is the ULTIMATE AI available right now\r\n\r\nThat’s because it’s just the most PROFITABLE AI.\r\n\r\nSee for yourself:\r\n\r\n==> https://bit.ly/ProfitBot_Ai\r\n\r\nWhy?\r\n\r\nBecause...\r\n\r\nEVERY time you paste into the AI...\r\n\r\nIt builds an instant Internet asset...\r\n\r\nA new and unique asset, that makes FAST commissions...\r\n\r\nGets buyer leads...\r\n\r\nBanks commissions...\r\n\r\nCrushes ClickBank...\r\n\r\nSmashes Shopify...\r\n\r\nCloses on UpWork...\r\n\r\nAnd 27x other mega-sites...\r\n\r\nhttps://bit.ly/ProfitBot_Ai',''),(1491,1,383,'6','Reina Maye',''),(1492,1,383,'2','0821 58 78 51',''),(1493,1,383,'3','maye.reina@gmail.com',''),(1494,1,383,'4','Hi,\r\n\r\nI\'ve been trying to access your website ( https://juiceelectrical.co.nz/heat-pumps/ ) but it became unberable due to the loading time.\r\n\r\nI thought I\'d reach out and let you know a really fast fix is using something like this https://appsumo.8odi.net/DKW7k2\r\n\r\nThis tool literally gives you a $1000 audit and tells you how to fix everything (sometimes fixes it for you).\r\n\r\nIt\'s currently 88% off but not sure how long it will be at this price.\r\n\r\nIf you dont want to lose future customers Id recommend using this tool.\r\n\r\nAll the best',''),(1495,1,384,'6','Karolin Jenkinson',''),(1496,1,384,'2','04.38.38.39.78',''),(1497,1,384,'3','karolin.jenkinson@googlemail.com',''),(1498,1,384,'4','Have you seen this?\r\nhttps://youtube.com/shorts/QjdZcVPJDqY?feature=share',''),(1499,1,385,'6','Micki Raney',''),(1500,1,385,'2','02.71.45.33.96',''),(1501,1,385,'3','raney.micki@gmail.com',''),(1502,1,385,'4','WORLD\'S First ChatGPT4 Powered Cloud Based Platform \r\nThat Generates Unique High Quality Content & Converts It To\r\nReal Talking Human 3D Avatars & Even Audios With A Few Clicks!\r\n\r\n==>Say Goodbye To Old Boring Videos Forever.. \r\nhttps://shortz.pro/talking-humans\r\n\r\nGenerate & Sell Unlimited Content, Talking Avatars, \r\nVoices & AudioBooks For Your Clients with\r\nUNLIMITED COMMERCIAL LICENSE\r\n\r\nCopy This Code \"HUMANS3\"\r\nTo Get Your $3 Discount Now!\r\n\r\n==>>> Grab TalkingHumans AI Now - 81% DISCOUNT\r\nhttps://shortz.pro/talking-humans\r\n\r\nBest Regards.',''),(1503,1,386,'6','Chong Vetter',''),(1504,1,386,'2','08165 41 22 70',''),(1505,1,386,'3','vetter.chong@outlook.com',''),(1506,1,386,'4','Hello,\r\n\r\nI hope this email finds you well. I\'ve recently visited your website, juiceelectrical.co.nz , and spotted two opportunities for improvement that could significantly enhance user engagement and support.\r\n\r\n1. Unlock 24/7 Support: Imagine a tool that could provide your users with immediate assistance, any time of day. This not only boosts user satisfaction but also propels your brand\'s reputation to new heights. Curious? Discover more here: https://tinyurl.com/FreeTriials\r\n\r\n2. Enhance User Interaction: Consider a solution that offers instant, personalized responses to common user inquiries, driving engagement and building trust. Intrigued? Learn more here: https://tinyurl.com/FreeTriials\r\n\r\nThese tools boast clear-cut pricing and secure transactions. By integrating them, you can set a new industry benchmark for superior user experience.\r\n\r\nDon\'t let this opportunity pass you by. Transform your website\'s functionality today. Remember, the secret to improvement is just a click away.\r\nAct now and enjoy your exclusive FREE trial\r\n\r\nBest regards,\r\n\r\nMr Beast',''),(1507,1,387,'6','Ariana finch',''),(1508,1,387,'2','0220682236',''),(1509,1,387,'3','Arianafinch@hotmail.com',''),(1510,1,387,'4','Good evening,\r\n\r\nI would like to please get a quote on few things I would like to get done around the house.\r\n\r\n1. LED lights placed around the outside of the house\r\n2. Some wall plugs installed around the house along with getting some wall plugs fixed.\r\n3. We are getting a fire place installed so would like to get a quote for heat transfers installed in four bedrooms.\r\n\r\nThank you very much look forward to hearing from you.',''),(1511,1,387,'5','Google search.',''),(1512,1,388,'6','Gordon Cundiff',''),(1513,1,388,'2','(81) 5201-7709',''),(1514,1,388,'3','gordon.cundiff@gmail.com',''),(1515,1,388,'4','I will do 3d modeling, rendering and animation video of products for 10$\r\n\r\nLink : https://bit.ly/3dproductdesigner',''),(1516,1,389,'6','Ester Uy',''),(1517,1,389,'2','0226446915',''),(1518,1,389,'3','uy_erine0419@yahoo.com',''),(1519,1,389,'4','Hi! \r\nIm just scouting for prices with ventilation system. We live in Rolleston, 195sqm houseand have a ducted heat pump (6 vents) wanting to get rid of condensation in windows etc. not looking at spending much as we are looking at leaving at some point. Thanks',''),(1520,1,389,'5','Facebook',''),(1521,1,390,'6','Neva Lardner',''),(1522,1,390,'2','921 83 177',''),(1523,1,390,'3','lardner.neva@googlemail.com',''),(1524,1,390,'4','Are you looking for a way to create stunning videos and images for your marketing campaigns, but don\'t have the time or design skills? \r\n\r\nLook no further than Ai Diffusion - the world\'s first mid-journey, Canva & Dall.E killer app that turns any voice commands or keywords into\r\nstunning ultra HD AI videos, 4K HD AI images, AI cartoon videos, Ai Diffusion videos, AI animated videos, AI drawings & art, AI sketch images, \r\nimages to 3D videos, AI logos & graphics, and so much more.\r\n\r\n==> Watch Full Demo here\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nAI Diffusion Features:\r\n\r\n- Generate Ultra-HD 4k Videos & Images...\r\n- Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n- Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n- Comes With Built-in Ai Video & Image Background Remover...\r\n- Turn Any Normal Image Into Sketch With Just A Single Click...\r\n- Convert Any Image Into 3D Video In Blink Of An Eye...\r\n- Built-in GTA V Art & Video Style Maker...\r\n- Image Inpainting\r\n- Image Super Resolution\r\n- Image Colorization\r\n- Black & White To Color Video\r\n- Video Background Color Changer\r\n- Ai Cartoon Generator\r\n- Night Image Enhancement\r\n- ..and much more\r\n\r\n\r\nWith Ai Diffusion\'s advanced AI technology, you can create professional-looking videos and images in just minutes, even if you have no prior design experience. \r\nSimply speak your ideas or keywords into the app, and it will generate stunning visuals that you can customize to your liking. \r\n\r\nPlus, with the ability to convert images to 3D videos, your creations will be even more impressive.\r\n\r\nWhether you\'re looking to create content for your social media channels, website, or marketing campaigns, Ai Diffusion has you covered. \r\n\r\nSay goodbye to traditional video and image creation methods and hello to the future with Ai Diffusion.\r\n\r\nTo learn more about Ai Diffusion and how it can transform your content creation process, visit our website https://shortz.pro/ai-diffusion\r\n\r\nDon\'t settle for ordinary videos and images - elevate your brand with Ai Diffusion today.\r\n\r\n==> Here Full Scoop\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nRegards.',''),(1525,1,391,'6','Eric Jones',''),(1526,1,391,'2','555-555-1212',''),(1527,1,391,'3','ericjonesmyemail@gmail.com',''),(1528,1,391,'4','Dear juiceelectrical.co.nz Administrator. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1529,1,392,'6','Mike Fulton',''),(1530,1,392,'2','86243792747',''),(1531,1,392,'3','no-replyinquiff@gmail.com',''),(1532,1,392,'4','Hi \r\n \r\nThis is Mike Fulton\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Fulton\r\n \r\nmike@strictlydigital.net',''),(1533,1,392,'5','Google',''),(1534,1,393,'6','Alex Sham',''),(1535,1,393,'2','+13322224908',''),(1536,1,393,'3','sales@metaagency.cc',''),(1537,1,393,'4','Hi, my name is Alex.S, I have noticed something wrong with your website and I want to volunteer for free, do you have a second to chat about it? Here\'s my phone number, call or text me when you have a second: +13322224908\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com',''),(1538,1,394,'6','Nadia McCabe',''),(1539,1,394,'2','481 0244',''),(1540,1,394,'3','nadia.mccabe@gmail.com',''),(1541,1,394,'4','How would you like to have a Most Advanced Ai assistant that can help you \r\ncreate 4K HD high-quality Video, graphics, and respond like a human?\r\n\r\nWell, your wish has come true! \r\n\r\nIntroducing…\r\n\r\nAi Diffusion - The world’s Ai App Create ..\r\nUltra HD Ai Videos, 4K HD Ai Images, Ai Cartoon Videos, \"Ai Diffusion Videos, Ai Animated Videos, Ai Drawings & Art, \r\nAi Sketch Images, Images To 3D Videos, Ai Logos & Graphics And So Much More... \r\n\r\n>> See Ai Diffusion In Action…\r\nhttps://shortz.pro/ai-diffusion\r\n\r\n- Generate Ultra-HD 4k Videos & Images...\r\n- Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n- Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n- Comes With Built-in Ai Video & Image Background Remover...\r\n- Turn Any Normal Image Into Sketch With Just A Single Click...\r\n- Convert Any Image Into 3D Video In Blink Of An Eye...\r\n- Built-in GTA V Art & Video Style Maker...\r\n- Image Inpainting\r\n- Image Super Resolution\r\n- Image Colorization\r\n- Black & White To Color Video\r\n- Video Background Color Changer\r\n- Ai Cartoon Generator\r\n- Night Image Enhancement\r\n..and much more\r\n\r\nWith Ai Diffusion, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\nAnd the best part? \r\n\r\nAi Diffusion is easy to use! \r\n\r\n>> Go & check it out before they take it down…\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nRegards.',''),(1542,1,395,'6','Shela Atchison',''),(1543,1,395,'3','shela.atchison@gmail.com',''),(1544,1,395,'4','You\'re just one click...\r\n\r\nFrom plugging Chat-GPT…\r\n\r\nInto Google search and…\r\n\r\nANY Website on the Internet…\r\n\r\n==> https://shortz.pro/search-gpt\r\n\r\nOK, so..\r\n\r\nI’m sure you’ve heard the hype about Chat-GPT.\r\n\r\nHow it’s changing everything we do as marketers.\r\n\r\nBUT… THERE’S A PROBLEM WITH CHAT-GPT.\r\n\r\nBasically, Chat GPT’s training data ENDS in 2021.\r\n\r\nThat means it has NO idea about anything in 2022 or 2023.\r\n\r\nThat’s BAD news for marketers like us, who want to..\r\n\r\n- Promote the hottest affiliate programs\r\n- Sell today’s new hot product\r\n- Jump on new trending niches\r\n- Create content on fresh new keywords\r\n- Profit on the bleeding-edge\r\n\r\nSo, what’s the solution?\r\n\r\nWell, up until now there wasn’t one.\r\n\r\nYou were stuck trying to shoe-horn “2021 GPT” into your 2023 use-case.\r\n\r\nBut today, all that changes.\r\n\r\nNow, you can give the most powerful AI LIVE access to EVERYTHING.\r\n\r\nHow? By going plugging Chat-GPT into GOOGLE!\r\n\r\n==> https://shortz.pro/search-gpt\r\n\r\nThis new AI tool plugs your copy of GPT…\r\n\r\nInto BOTH Google search AND any website!\r\n\r\nSimply enter your prompt (like normal)...\r\n\r\nBUT THEN you can also enter keywords AND website URLs.\r\n\r\nNow GPT will scan the sites (and those ranking for the keyword)...\r\n\r\nExtract up to 10,000 words it thinks are relevant to the answer..\r\n\r\nAnd deliver you a NEW and updated response in seconds!\r\n\r\nIf you are looking for a HUGE edge over even other GPT users?\r\n\r\nThen upgrade your copy of Chat-GPT NOW!\r\n\r\n==> https://shortz.pro/search-gpt\r\n\r\nPS. Do it now, the price jumps IN THE NEXT FEW MINUTES.\r\n\r\nAnd then again.. and AGAIN.. EVERY hour after that!\r\n\r\n==> https://shortz.pro/search-gpt',''),(1545,1,396,'6','Eric Jones',''),(1546,1,396,'2','555-555-1212',''),(1547,1,396,'3','ericjonesmyemail@gmail.com',''),(1548,1,396,'4','Hi juiceelectrical.co.nz Administrator! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1549,1,397,'6','Richard Kane',''),(1550,1,397,'2','02630 14 18 95',''),(1551,1,397,'3','richard@kanemedia.com',''),(1552,1,397,'4','Hey, \r\n\r\nI hope this email finds you well. \r\n\r\nAs a fellow business owner, I understand the challenges we face in capturing our audience\'s attention and driving conversions. \r\n\r\nThat\'s why I\'m excited to introduce you to a game-changing solution that will revolutionize your advertising efforts: adcreative.ai.\r\n\r\nImagine effortlessly creating captivating ad campaigns that leave a lasting impact on your target audience. \r\n\r\nWith adcreative.ai, you\'ll discover the secret to unlocking the power of persuasive ads that drive results, even if you\'re currently unaware of the untapped potential lying dormant within your marketing strategy.\r\n\r\nIn today\'s fast-paced digital world, it\'s crucial to stand out from the crowd and capture your audience\'s attention within seconds. adcreative.ai is your ultimate ally in achieving just that. \r\n\r\nWith our cutting-edge AI-powered platform, you\'ll have the tools and resources to craft compelling ad copy and stunning visuals that grab your viewers by the collar and keep them hooked from the very first glance.\r\n\r\nBut that\'s not all! \r\n\r\nAs a token of appreciation for considering adcreative.ai, we\'re offering an exclusive limited-time offer: a whopping $500 Google Ads credit when you sign up. \r\n\r\nImagine the impact this credit can have on boosting your online visibility and driving targeted traffic to your website. \r\n\r\nIt\'s an opportunity you simply can\'t afford to miss!\r\n\r\nTo ensure you experience the full potential of adcreative.ai, we\'re offering a generous 7-day free trial. \r\n\r\nTake this time to explore the platform, unleash your creativity, and witness firsthand how our AI algorithms will enhance your ad campaigns to deliver exceptional results.\r\n\r\nHere\'s a glimpse of what adcreative.ai brings to the table:\r\n\r\nIntelligent Ad Creation: Our AI-driven platform analyzes your target audience, business goals, and industry trends to generate compelling ad copy and engaging visuals that resonate with your potential customers.\r\n\r\nStreamlined Workflow: Simplify your ad creation process with our user-friendly interface and intuitive tools. Create and optimize campaigns in a fraction of the time, allowing you to focus on other critical aspects of your business.\r\n\r\nPerformance Insights: Get access to real-time analytics and performance data to track the success of your campaigns. Identify what\'s working and optimize your ads for maximum impact and ROI.\r\n\r\nNow, I know you may be wondering how adcreative.ai differs from other ad creation tools out there. \r\n\r\nThe answer lies in our unparalleled AI technology and our commitment to helping businesses like yours thrive in the digital landscape.\r\n\r\nDon\'t let this opportunity pass you by. \r\n\r\nSign up for the adcreative.ai 7-day free trial today and witness the transformational power of persuasive advertising firsthand. \r\n\r\nRemember, with our limited-time offer, you\'ll also receive a $500 Google Ads credit to jumpstart your campaigns.\r\n\r\nTo get started, simply click on the link below and follow the easy steps to set up your account. \r\n\r\nIf you have any questions or need assistance, our dedicated support team is just an email away.\r\n\r\nhttps://free-trial.adcreative.ai/may-2023\r\n\r\nThank you for your time, and I look forward to seeing your business soar to new heights with adcreative.ai by your side.\r\n\r\nWarm regards,\r\n\r\nRichard Kane',''),(1553,1,398,'6','Eric Jones',''),(1554,1,398,'2','555-555-1212',''),(1555,1,398,'3','ericjonesmyemail@gmail.com',''),(1556,1,398,'4','Hi juiceelectrical.co.nz Admin! my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1557,1,399,'6','Ian Kininmonth',''),(1558,1,399,'2','021393554',''),(1559,1,399,'3','ian.kininmonth@dhl.com',''),(1560,1,399,'4','Hi folks - you did some electrical work for me about a year ago, and i need some more done now please.\r\nI have 4 down lights that aren\'t working, I think the transformers need replacing as well as the bulbs. Could I please ask you to schedule this work to be done on next Wednesday morning, 31st May? Address is 36 Rhodes Street, Merivale.\r\n\r\nLook forward to hearing from you.',''),(1561,1,399,'5','repeat business',''),(1562,1,400,'6','Garnet Southern',''),(1563,1,400,'2','027 777 44 91',''),(1564,1,400,'3','garnet.southern@gmail.com',''),(1565,1,400,'4','Prepare to have your mind blown and your business transformed like never before. We\'re about to share with you a forbidden technique that will shatter the limits of your online presence and leave your competition quaking in their boots. Brace yourself for an adventure into the unknown, where extraordinary success awaits.\r\n\r\nIntroducing SENuke Pro, the clandestine weapon of digital domination that only a select few have had access to. This revolutionary software is the secret ingredient behind the most awe-inspiring success stories on the web. It\'s time for you to join the ranks of the elite and wield the power that was once reserved for a chosen few.\r\n\r\nSENuke Pro is your gateway to a parallel dimension of online marketing, where rules are broken and barriers crumble. Imagine effortlessly summoning an army of loyal followers, your brand\'s influence spreading like wildfire across every corner of the internet. With just a few clicks, you\'ll unlock the hidden secrets to captivating search engines, captivating your target audience, and captivating unimaginable success.\r\n\r\nBut here\'s the catch: SENuke Pro is not for the faint of heart. It\'s a wild ride that will push your limits, challenge your beliefs, and ignite your entrepreneurial spirit like never before. Are you ready to step into the abyss of possibilities, where the ordinary is shattered, and the extraordinary is your playground?\r\n\r\nSENuke Pro is not just another software; it\'s an adventure of a lifetime. From its mind-bending SEO capabilities to its mind-altering social media domination strategies, this cutting-edge powerhouse will transport you to a realm where growth knows no boundaries. Leave the mundane behind and embrace the uncharted territories of success that await you.\r\n\r\nBut be warned, this journey is not for everyone. Only the bold, the daring, and the visionary will thrive in this realm of digital supremacy. If you dare to be different, if you yearn to break free from the shackles of mediocrity, then SENuke Pro is your ticket to greatness.\r\n\r\nClick here https://jvz3.com/c/2840657/268836/ - and unlock the forbidden powers of SENuke Pro. Embrace the unknown, reshape your destiny, and embark on a transformative journey that will redefine what\'s possible for your business.\r\n\r\nRemember, the greatest rewards in life come to those who are brave enough to take the first step. Will you remain trapped in the confines of ordinary, or will you unleash the extraordinary within you?\r\n\r\nEmbrace the forbidden with SENuke Pro today!\r\n\r\nUnleashing your digital destiny,\r\n\r\nSENuke Pro Team',''),(1566,1,401,'6','samuel johnson',''),(1567,1,401,'3','mazie.haire@gmail.com',''),(1568,1,401,'4','With systeme io, unlimited email sending is 100% FREE! \r\n\r\n(no need to pay for separate services to send emails, as you would with ClickFunnels)\r\n\r\nWith systeme io, automation tools are included in ALL OF THEIR PLANS. \r\n\r\n(no need to add a separate plugin to automate your business) \r\n\r\nBut most importantly: \r\n\r\nThe systeme io team uses their own tool to run their entire online business and they\'re doing over $400,000 in revenue per month \r\n\r\n(the tool is powerful enough to manage over 9,000 customers and tens of thousands of free users) \r\n\r\nHere are some of systeme.io’s most powerful features: \r\n\r\n=Visual editor to easily create forms, capture pages, and sales pages Integrated autoresponder with unlimited email sending \r\n=Membership sites \r\n=Sales pages with 1-click upsells \r\n=Personal affiliate program management \r\n\r\nYou can get access to all of these features, for free! \r\n\r\nClick the link below to create your free account and grow your online business! \r\n\r\nhttps://redeyedeal.com/systemeioww\r\n\r\n\r\nCheers',''),(1569,1,402,'6','Eric Jones',''),(1570,1,402,'2','555-555-1212',''),(1571,1,402,'3','ericjonesmyemail@gmail.com',''),(1572,1,402,'4','Hello juiceelectrical.co.nz Webmaster.\r\n\r\nThis is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1573,1,403,'6','Manuela Venuti',''),(1574,1,403,'2','41-45-31-73',''),(1575,1,403,'3','venuti.manuela75@outlook.com',''),(1576,1,403,'4','How would you like to have a Most Advanced Ai assistant that can help you\r\ncreate 4K HD high-quality Video, graphics, and respond like a human?\r\n\r\nWell, your wish has come true! \r\n\r\nIntroducing…\r\n\r\nAi Diffusion - The world’s Ai App Create ..\r\n\r\nUltra HD Ai Videos, 4K HD Ai Images, Ai Cartoon Videos, \"Ai Diffusion Videos, Ai Animated Videos, \r\nAi Drawings & Art, Ai Sketch Images, Images To 3D Videos, Ai Logos & Graphics And So Much More... \r\n\r\nAI Diffusion Features:\r\n\r\n- Generate Ultra-HD 4k Videos & Images...\r\n- Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n- Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n- Comes With Built-in Ai Video & Image Background Remover...\r\n- Turn Any Normal Image Into Sketch With Just A Single Click...\r\n- Convert Any Image Into 3D Video In Blink Of An Eye...\r\n- Built-in GTA V Art & Video Style Maker...\r\n- Image Inpainting\r\n- Image Super Resolution\r\n- Image Colorization\r\n- Black & White To Color Video\r\n- Video Background Color Changer\r\n- Ai Cartoon Generator\r\n- Night Image Enhancement\r\n..and much more\r\n\r\nWith Ai Diffusion, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\nAnd the best part? \r\n\r\nAi Diffusion is easy to use! \r\n\r\n>> Click the link below right now to get started with Ai Diffusion\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nRegards.',''),(1577,1,404,'6','Ryan Ali',''),(1578,1,404,'2','05.02.03.69.80',''),(1579,1,404,'3','jmk84463@gmail.com',''),(1580,1,404,'4','Are you struggling to create high-quality content for your business? Do you find content creation to be a time-consuming and challenging process? If so, Jasper.ai is the solution you need!\r\n\r\nJasper.ai is an AI-powered assistant tool that can help your business create content quickly and easily. With Jasper.ai, you can generate high-quality articles, social media posts, and even emails in minutes, not hours. \r\n\r\nThis tool will enable you to spend more time growing your business and less time worrying about content creation.\r\n\r\nSay goodbye to writer\'s block and tedious content creation. Jasper.ai is the answer to all your content creation problems. Try Jasper.ai today and see how it can transform your content creation process. \r\n\r\nClick the link to learn more and start generating amazing content in no time!\r\nhttps://jmk84463.systeme.io/98399461\r\n\r\nThanks,\r\nRyan\r\n\r\n\r\n\r\n\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(1581,1,405,'6','Reinaldo Crossland',''),(1582,1,405,'2','09102 54 61 37',''),(1583,1,405,'3','crossland.reinaldo@gmail.com',''),(1584,1,405,'4','How would you like to have a Most Advanced Ai assistant that can help you \r\ncreate 4K HD high-quality Video, graphics, and respond like a human?\r\n\r\nWell, your wish has come true! \r\n\r\nIntroducing…\r\n\r\nAi Diffusion - The world’s Ai App Create ..\r\nUltra HD Ai Videos, 4K HD Ai Images, Ai Cartoon Videos, \"Ai Diffusion Videos, Ai Animated Videos, Ai Drawings & Art, \r\nAi Sketch Images, Images To 3D Videos, Ai Logos & Graphics And So Much More... \r\n\r\n>> See Ai Diffusion In Action…\r\nhttps://shortz.pro/ai-diffusion\r\n\r\n- Generate Ultra-HD 4k Videos & Images...\r\n- Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n- Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n- Comes With Built-in Ai Video & Image Background Remover...\r\n- Turn Any Normal Image Into Sketch With Just A Single Click...\r\n- Convert Any Image Into 3D Video In Blink Of An Eye...\r\n- Built-in GTA V Art & Video Style Maker...\r\n- Image Inpainting\r\n- Image Super Resolution\r\n- Image Colorization\r\n- Black & White To Color Video\r\n- Video Background Color Changer\r\n- Ai Cartoon Generator\r\n- Night Image Enhancement\r\n..and much more\r\n\r\nWith Ai Diffusion, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\nAnd the best part? \r\n\r\nAi Diffusion is easy to use! \r\n\r\n>> Go & check it out before they take it down…\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nRegards.',''),(1585,1,406,'6','Maya Gibbes',''),(1586,1,406,'2','(03) 8455 2781',''),(1587,1,406,'3','gibbes.maya@googlemail.com',''),(1588,1,406,'4','You’re not going to believe this!\r\nMark here...\r\n\r\nDid you know that you can now use robots to sell things for you while you’re asleep?\r\n\r\nI recently discovered a few tools that allow you to setup bots that network with business owners in a FULLY automated way.\r\nIt’s all being taught inside this new training program called, “AI Profits”\r\n\r\n==> https://makemoneyguru--chasereiner.thrivecart.com/ai-profits/\r\n\r\nThe best part is that you don’t have to be an expert or do much more than click a few buttons to get started.\r\n\r\nI’ll see you on the inside!\r\n-Mark',''),(1589,1,407,'6','Steve Ramsey',''),(1590,1,407,'2','04.82.25.60.54',''),(1591,1,407,'3','steve.ramsey@gmail.com',''),(1592,1,407,'4','Have you seen this?\r\n\r\n\r\nGlynn just released his latest system...\r\n\r\n\r\nThe AI 30K Copy & Paste Commissions!!\r\n\r\n\r\n=> CLICK HERE FOR INSTANT ACCESS: https://bit.ly/3zDMfhy\r\n\r\n\r\nThis one shows you how\r\n\r\nto make 30K THIS MONTH!\r\n\r\n\r\nI\'ve tested it and it\'s proven to work!!\r\n\r\n\r\nI even bought it myself.\r\n\r\n\r\nOnly costs about 17 bux...\r\n\r\n\r\nPlus, I got the 10 incredible\r\n\r\nbonuses worth thousands!\r\n\r\n\r\nThis is probably the biggest\r\n\r\ndigital deal of the year.\r\n\r\n\r\nCheck it out before it\'s too late...\r\n\r\n\r\n=> Click here to secure your access: https://bit.ly/3zDMfhy\r\n\r\n\r\nBest regards, \r\n\r\n\r\nSteve',''),(1593,1,408,'6','Valerie Herrera',''),(1594,1,408,'2','06-83776067',''),(1595,1,408,'3','herrera.valerie@gmail.com',''),(1596,1,408,'4','You’re not going to believe this!\r\nIts Mark here...\r\n\r\nDid you know that you can now use robots to sell things for you while you’re asleep?\r\n\r\nI recently discovered a few tools that allow you to setup bots that network with business owners in a FULLY automated way.\r\nIt’s all being taught inside this new training program called, “AI Profits”\r\n\r\n==> https://makemoneyguru--chasereiner.thrivecart.com/ai-profits/\r\n\r\nThe best part is that you don’t have to be an expert or do much more than click a few buttons to get started.\r\n\r\nI’ll see you on the inside!\r\n-Mark',''),(1597,1,409,'6','Lynette Lapham',''),(1598,1,409,'2','08745 28 44 10',''),(1599,1,409,'3','lapham.lynette@gmail.com',''),(1600,1,409,'4','I will create a corporate video for your business for 10$.\r\n\r\nLink : https://bit.ly/corporatevideo-creation',''),(1601,1,410,'6','Lamar Reay',''),(1602,1,410,'2','044 259 89 91',''),(1603,1,410,'3','lamar.reay@msn.com',''),(1604,1,410,'4','Are you looking for a way to create stunning videos and images \r\nfor your marketing campaigns, but don\'t have the time or design skills? \r\n\r\nLook no further than Ai Diffusion - the world\'s first mid-journey, Canva & Dall.E killer app\r\nthat turns any voice commands or keywords into stunning ultra HD AI videos, 4K HD AI images,\r\nAI cartoon videos, Ai Diffusion videos, AI animated videos, AI drawings & art, AI sketch images,\r\nimages to 3D videos, AI logos & graphics, and so much more.\r\n\r\n==> Watch Full Demo here\r\nhttps://shortz.pro/ai-diffusion\r\n\r\n- Generate Ultra-HD 4k Videos & Images...\r\n- Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n- Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n- Comes With Built-in Ai Video & Image Background Remover...\r\n- Turn Any Normal Image Into Sketch With Just A Single Click...\r\n- Convert Any Image Into 3D Video In Blink Of An Eye...\r\n- Built-in GTA V Art & Video Style Maker...\r\n- Image Inpainting\r\n- Image Super Resolution\r\n- Image Colorization\r\n- Black & White To Color Video\r\n- Video Background Color Changer\r\n- Ai Cartoon Generator\r\n- Night Image Enhancement\r\n..and much more\r\n\r\nWith Ai Diffusion\'s advanced AI technology, you can create professional-looking videos and images in just minutes,\r\neven if you have no prior design experience. Simply speak your ideas or keywords into the app, and it will\r\ngenerate stunning visuals that you can customize to your liking. \r\n\r\nPlus, with the ability to convert images to 3D videos,\r\nyour creations will be even more impressive.\r\n\r\nWhether you\'re looking to create content for your social media channels, website, or marketing campaigns, Ai Diffusion has you covered. \r\n\r\nSay goodbye to traditional video and image creation methods and hello to the future with Ai Diffusion.\r\n\r\nTo learn more about Ai Diffusion and how it can transform your content creation process, visit our website: https://shortz.pro/ai-diffusion.\r\n\r\nDon\'t settle for ordinary videos and images - elevate your brand with Ai Diffusion today.\r\n\r\n==> Here Full Scoop\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nRegards.',''),(1605,1,411,'6','Mike Shull',''),(1606,1,411,'2','01.31.98.78.62',''),(1607,1,411,'3','shull.janessa@googlemail.com',''),(1608,1,411,'4','Hey, I am interested in re-designing your website that will come with a free landing page. If you are interested, here\'s my email: Connect@MarketTargetOnline.com \r\n\r\n\r\n\r\n\r\n\r\nR/\r\nMzeid\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nPO Box 11192, Newport News, VA 23601\r\n\r\nTo Opt out from any future marketing messages:\r\nhttps://zeid1.systeme.io/c10abc6a',''),(1609,1,412,'6','Mercedes Higginbotham',''),(1610,1,412,'2','817-226-5897',''),(1611,1,412,'3','higginbotham.mercedes@hotmail.com',''),(1612,1,412,'4','Do you want to make $430/day…\r\n\r\nPlugging ANY affiliate link into Chat-GPT?\r\n\r\nThen you ALSO need to plug it into GOOGLE!\r\n\r\nAnd the only way is with this NEW plugin for GPT!\r\n\r\nIt gives GPT access to Google search and any website…\r\n\r\nIt works with ClickBank, Warrior, UpWork & 17x more.\r\n\r\nAnd now, it’s your turn to profit with this NEW app.\r\n\r\n⇒ https://shortz.pro/search-gpt\r\n\r\nHave you heard the buzz about Chat-GPT?\r\n\r\nWell, it’s great but how much have YOU made with it?\r\n\r\nSee…\r\n\r\nEveryone’s using GPT.. \r\n\r\nBut NO-ONE’s profiting with it!\r\n\r\nWell, it’s true, but NOT when it comes to one guy..\r\n\r\nSee, there’s this affiliate “techie-nerd” Chris…\r\n\r\nAnd he’s CRACKED the code to Chat-GPT.\r\n\r\nHe actually built his own software that sits on top of it!\r\n\r\nIn fact, he plugged GPT into Google search…\r\n\r\nAND gave it LIVE 24/7 access to ANY website…\r\n\r\nThen how he made over $400/day with it…\r\n\r\nAnd now he’s showing you how to do it too!\r\n\r\nWould you like to plug ANY affiliate link into the AI?\r\n\r\nAny website.. Any niche.. ANY keyword!?\r\n\r\nIn just 1 CLICK!\r\n\r\nThen go here:\r\n\r\n= = > https://shortz.pro/search-gpt\r\n\r\nIt’s true…\r\n\r\nOver 100 million people have Chat-GPT now.\r\n\r\nWhat was once an advantage is now just another tool.\r\n\r\nTruth is, if you’re making $400/day with GPT, you can discard this email.\r\n\r\nIf you’re running “chain-prompts” that make $200 in minutes… delete.\r\n\r\nIf you’ve worked out how to make $4 per CLICK with AI… skip it.\r\n\r\nBUT.. if you haven’t then keep reading.\r\n\r\nBecause, for the first time ever, you can use the SAME “AI Addon” tech as the world’s FIRST affiliate who mastered the art of “Googling” with Chat-GPT.\r\n\r\nIn fact, it’s the same method OpenAI uses themselves.\r\n\r\nBut NO-ONE knows how to do it!\r\n\r\nThese EXACT templates make 10,000% more money with AI..\r\n\r\nThey make Chat-GPT work 1,000% to 5,000% faster…\r\n\r\nAnd they turn it into an AI ATM!\r\n\r\nThey take it “BEYOND” normal AI!\r\n\r\nNow you can use this same “AI plugin” to make $430/day in affiliate commissions…\r\n\r\nBest of all, you don’t need to write a thing…\r\n\r\nYou just copy the templates and paste them into the software!\r\n\r\nAnd no… you don’t even need a website!\r\n\r\nThis guy Chris is giving you EVERYTHING in his new DFY, all-in-one AI app:\r\n\r\n= = > https://shortz.pro/search-gpt\r\n\r\nBut be sure to hit that link now…\r\n\r\nThis page is closing down soon - FOREVER.\r\n\r\nSo Chris is only opening this up for a few days.\r\n\r\nI will let Chris explain how it works now…\r\n\r\n= = > https://shortz.pro/search-gpt\r\n\r\nP.S. In fact, this page explains EVERYTHING!\r\n\r\nSo, if you want to get an EDGE in the AI wars of 2023…\r\n\r\nYou want to make money with any affiliate link or website…\r\n\r\nOr, you just want to make COMMISSIONS, then check this new technology out now:\r\n\r\n= = > https://shortz.pro/search-gpt\r\n\r\nP.P.S. Like I say, Chris is giving away FAR TOO MUCH value here.\r\n\r\nThis should be a $997 tool \r\n\r\nActually Chris shouldn’t be selling it all! See why here\r\n\r\n==> https://shortz.pro/search-gpt\r\n\r\nOK, I’ve said enough. Now hit this link to see how this weird NEW “Google AI” tech works…\r\n\r\nAnd how it changes everything for average people who just want money with AI… but don’t have the skill to nerd out learning all the techie prompts:\r\n\r\n= = > https://shortz.pro/search-gpt',''),(1613,1,413,'6','Jack Jones',''),(1614,1,413,'2','033 347 95 77',''),(1615,1,413,'3','jack.jones@gmail.com',''),(1616,1,413,'4','How would you like to have a Most Advanced Ai assistant that can help you create 4K HD high-quality Video, graphics, and respond like a human?\r\n\r\n\r\nWell, your wish has come true! \r\n\r\n\r\nIntroducing…\r\n\r\n\r\nAi Diffusion - The world’s Ai App Create ..\r\n\r\nUltra HD Ai Videos, 4K HD Ai Images, Ai Cartoon Videos, \"Ai Diffusion Videos, Ai Animated Videos, Ai Drawings & Art, Ai Sketch Images, Images To 3D Videos, Ai Logos & Graphics And So Much More... \r\n\r\n\r\n✅ Generate Ultra-HD 4k Videos & Images...\r\n\r\n✅ Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n\r\n✅ Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n\r\n✅ Comes With Built-in Ai Video & Image Background Remover...\r\n\r\n✅ Turn Any Normal Image Into Sketch With Just A Single Click...\r\n\r\n✅ Convert Any Image Into 3D Video In Blink Of An Eye...\r\n\r\n✅ Built-in GTA V Art & Video Style Maker...\r\n\r\n✅ Image Inpainting\r\n\r\n✅ Image Super Resolution\r\n\r\n✅ Image Colorization\r\n\r\n✅ Black & White To Color Video\r\n\r\n✅ Video Background Color Changer\r\n\r\n✅ Ai Cartoon Generator\r\n\r\n✅ Night Image Enhancement\r\n\r\n..and much more\r\n\r\n\r\n\r\nWith Ai Diffusion, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\n\r\nAnd the best part? \r\n\r\n\r\nAi Diffusion is easy to use! \r\n\r\n\r\n\r\n>> Go & check it out before they take it down: bit.ly/4218JVD\r\n\r\n\r\n\r\nRegards,\r\n\r\n\r\nJack',''),(1617,1,414,'6','Erlinda Madrid',''),(1618,1,414,'3','erlinda.madrid@hotmail.com',''),(1619,1,414,'4','Hey,\r\n\r\nAre you tired of spending countless hours on marketing and not seeing the results you want? Do you want to boost your website\'s search engine ranking and increase your online visibility? Look no further than XRumer from Botmaster Labs.\r\n\r\nXRumer is the most powerful software tool for automated posting, link building, and SEO optimization. With its advanced algorithms and cutting-edge technology, XRumer can help you achieve top rankings on search engines, drive more traffic to your website, and ultimately increase your sales and revenue.\r\n\r\nAnd the best part? We\'re offering you an exclusive discount of 5/10/15% off the regular price when you purchase XRumer today. All you have to do is use the discount code\"milesmarketing\" at checkout. SIGN UP HERE: https://tinyurl.com/XRumerOFF\r\n\r\nHere are just a few of the many benefits you\'ll enjoy with XRumer:\r\n\r\n- Automated posting on forums, blogs, social media, and more...\r\n- Creation of high-quality backlinks for your website\r\n- Improved search engine ranking and online visibility\r\n- Increased traffic and engagement from potential customers\r\n- Enhanced brand awareness and reputation\r\n\r\nBut don\'t just take our word for it. Here\'s what some of our satisfied customers have to say about XRumer:\r\n\r\n\"[XRumer] is one of the best SEO tools I have ever used. It\'s easy to set up and use, and the results are impressive.\" - John Smith, Digital Marketing Manager\r\n\r\n\"I have been using XRumer for a few months now, and it has really helped me improve my website\'s search engine ranking. I highly recommend it!\" - Sarah Johnson, Website Owner\r\n\r\nSo what are you waiting for? Take advantage of our limited-time offer and get XRumer today. Don\'t forget to use the discount code \"milesmarketing\" at checkout to save 5/10/15% off the regular price.\r\n\r\nThank you for considering XRumer from Botmaster Labs. We look forward to helping you revolutionize your marketing efforts and achieve the results you deserve.\r\n\r\nBest regards,\r\n\r\n\r\nBotmaster Labs Team',''),(1620,1,415,'6','Kaspar Bennett',''),(1621,1,415,'2','094421054',''),(1622,1,415,'3','kasparbennett98@gmail.com',''),(1623,1,415,'4','\"Kia ora,\r\n\r\nWe\'re a NZ based online marketing company.\r\n\r\nI was on your website and wanted to share some ideas and tips for improving your online marketing efforts.\r\n\r\nCan I send you a video (with a Website report) specifically for your business and how you could improve? It will show you how you can increase leads & sales through your website. \r\n\r\nThe advice is complimentary, no strings attached.\r\n\r\nIf that is of interest - Please do email us back for a free video review of your Website.\r\n\r\nNgā Mihi,\r\nKaspar Bennett\r\nkasparbennett98@gmail.com\r\nMarketing Consultant\r\n\r\n\r\n\r\n\r\nIf you’re NOT interested, simply reply “NO” and I will not contact you again.\"',''),(1624,1,416,'6','Lesley Grant',''),(1625,1,416,'2','0275130730',''),(1626,1,416,'3','lelee1@xtra.co.nz',''),(1627,1,416,'4','Hi there\r\n\r\nYou have done some work for me before and I would like you to do a job for my mother. Her bathroom heater isn\'t working so I think it needs to be replaced.\r\n\r\nRegards\r\n\r\nLesley',''),(1628,1,417,'6','Pansy Tiller',''),(1629,1,417,'2','513-639-4272',''),(1630,1,417,'3','tiller.pansy@gmail.com',''),(1631,1,417,'4','Dear WebMaster,\r\n\r\nWe volunteer to help people or organisations that have been affected by Employment Layoffs or those affected by the current Economic Turmoils.\r\n\r\nWe spread these words so that the affected individuals or entities would be able take steps to RECOVERING THEIR FINANCIAL WOES the earliest possible WITH PROVEN 3 PRONGED STRATEGY AT NO COST, Plus 2 Free Premium AMAZON Super Affiliate and CLICKBANK Niche Relevant Affiliate Complete Tutorial Videos worth $130.\r\n\r\nShould you or anyone that you know in dire need of ways to raise incomes quickly leveraging own skills and expertise or even for those broke inexperienced individuals. \r\n\r\nPlease refer this link ->> https://bit.ly/3HeGV8C\r\n\r\nBest regards.',''),(1632,1,418,'6','Alberto Sison',''),(1633,1,418,'2','(08) 8752 5589',''),(1634,1,418,'3','alberto.sison@msn.com',''),(1635,1,418,'4','Hey,\r\n\r\nEvery business owner needs to make the best use of Artificial intelligence\r\nto grow their business & get maximum customers hooked.\r\n\r\nBut,\r\n\r\nA majority of AI tools available today in the market are either too\r\ncomplex or damn expensive with limited functionalities.\r\n\r\nNow,\r\n\r\nJust imagine what if we combined both and offered something \r\nthat’ll take the AI universe by the storm…\r\n\r\nPresenting Propel AI Kit\r\n\r\nWorld’s First, Chat GPT 4 Powered AI Technology That Comes Loaded With 200+ Premium Business Boosting Tools \r\nTo Create & Sell Amazing Marketing Content For Any Offer & Niche With Zero Prior Skills Or Experience\r\n==> https://shortz.pro/propel-ai\r\n \r\nHere are some of its amazing features:\r\n· Create 200+ passive income streams without spending a dime\r\n· No complicated setup, no tech hassles, no installation or any other headache\r\n· Get 200+ power packed artificial intelligence tools for the price of peanuts\r\n· Completely automate your business & take industry by the storm\r\n· Each tool crafted with utmost perfection by industry experts\r\n· Stop paying huge fees monthly to expensive third-party apps\r\n· Grow your business while your competitors are left biting the dust\r\n· No Complicated Setup - Get Up And Running In Under 60 Seconds\r\n· ZERO Upfront Cost Or Huge Investment\r\n· Nothing To Download, Install Or Customize – Get Started In Seconds\r\n· Limited Time Commercial License Included\r\n· 100% Easy To Use, Newbie Friendly Technology\r\n· Iron Clad 30 Day Money Back Guarantee Included\r\n\r\nSounds amazing, right?\r\n\r\nSee Complete Scoop For Propel AI Kit Here\r\n==> https://shortz.pro/propel-ai\r\n\r\nHere’s the really good news…\r\n\r\nRight now,\r\n\r\nPropel AI Kit is available for a crazy low one-time discounted price.\r\n\r\nAnd, this crazy discounted price is going to increase very soon.\r\n\r\nI highly recommend checking it out today, all serious marketers will need this in their arsenal without fail.\r\n\r\nSo, what are you waiting for?\r\n\r\nGrab Propel AI Kit At Low Earlybird Price\r\n==> https://shortz.pro/propel-ai\r\n\r\nTo Your Success.\r\n \r\nP.S- Using artificial intelligence to boost your business just got simpler. \r\nSo, act now & grab your copy before you’re left with nothing at your end…',''),(1636,1,419,'6','Jordan Meekin',''),(1637,1,419,'2','06-12169409',''),(1638,1,419,'3','jordan.meekin@hotmail.com',''),(1639,1,419,'4','How would you like to have a Most Advanced Ai assistant that can help you create\r\n4K HD high-quality Video, graphics, and respond like a human?\r\n\r\nWell, your wish has come true! \r\n\r\nIntroducing…\r\n\r\nAi Diffusion - The world’s Ai App Create ..\r\nUltra HD Ai Videos, 4K HD Ai Images, Ai Cartoon Videos, \"Ai Diffusion Videos, Ai Animated Videos,\r\nAi Drawings & Art, Ai Sketch Images, Images To 3D Videos, Ai Logos & Graphics And So Much More... \r\n\r\nAi Diffusion Features:\r\n- Generate Ultra-HD 4k Videos & Images...\r\n- Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n- Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n- Comes With Built-in Ai Video & Image Background Remover...\r\n- Turn Any Normal Image Into Sketch With Just A Single Click...\r\n- Convert Any Image Into 3D Video In Blink Of An Eye...\r\n- Built-in GTA V Art & Video Style Maker...\r\n- Image Inpainting\r\n- Image Super Resolution\r\n- Image Colorization\r\n- Black & White To Color Video\r\n- Video Background Color Changer\r\n- Ai Cartoon Generator\r\n- Night Image Enhancement\r\n..and much more\r\n\r\n\r\nWith Ai Diffusion, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\nAnd the best part? \r\n\r\nAi Diffusion is easy to use! \r\n\r\n>> Click the button link right now to get started with Ai Diffusion\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nRegards.',''),(1640,1,420,'6','John Corell',''),(1641,1,420,'2','06-75728357',''),(1642,1,420,'3','john.corell@gmail.com',''),(1643,1,420,'4','Hi,\r\n\r\n\r\nLets face it: AI is taking over and it\'s happening RIGHT NOW whether we like it or not! \r\n\r\n\r\nThere\'s a new type of money-making AI tool, that allows you create stunning looking websites, for small businesses in the USA\r\n\r\n\r\nThis Brand-New software makes you thousands of dollars helping businesses sell online.\r\n\r\n\r\nThere are over 33.5 million small businesses in the US alone…\r\n\r\n\r\n5.5 Million small scale businesses in the United Kingdom..\r\n\r\n\r\nAnd over 2 million small businesses in Canada…\r\n\r\n\r\nLooking for someone to help them with:\r\n\r\n\r\nBranding for businesses\r\n\r\nCorporate website for their businesses\r\n\r\nVoice-overs\r\n\r\nMarketing Copy\r\n\r\nEmails...\r\n\r\nVoiceOvers\r\n\r\n\r\nAnd they\'re willing to pay $500-$5,000 or more each month, for anyone who can deliver these services.\r\n\r\n\r\nNow, imagine an AI software that does all of these automatically. With AI\r\n\r\n\r\nRobinAI is a brand new AI Tool that helps you create \'internet assets\'\' like Marketing Copy for your Landing Pages, Websites, Stunning Graphics like Banners, Visuals, Graphics, and more in minutes. Fully powered by ChatGPT.\r\n\r\n\r\nNo waiting time, no delays.\r\n\r\nSome of our early users have already made $500-$5,000 or more, monthly, creating marketing copy, content, websites, blogs, videos, banners, ads, blogs, and more for them.\r\n\r\n\r\nGo Check it out NOW: bit.ly/3Wzcel6 \r\n\r\nSee you at the top, \r\n\r\nJohn',''),(1644,1,421,'6','John Michael',''),(1645,1,421,'3','casie.rivers@gmail.com',''),(1646,1,421,'4','We can enhance your business\'s online presence and Google popularity with our map citations service.\r\n\r\nBenefits:\r\n\r\nImproved Local Visibility\r\nHigher Google Rankings\r\nIncreased Trust and Credibility\r\nExpanded Online Reach\r\nLet\'s discuss how our service can benefit your business. Please let me know your interest, and we can schedule a call.\r\nUpgrade your business>> https://bit.ly/3IBujJm\r\nThank you!',''),(1647,1,422,'6','Lois Martino',''),(1648,1,422,'2','09254 55 83 87',''),(1649,1,422,'3','lois.martino@hotmail.com',''),(1650,1,422,'4','Want to instantly tap into\r\nzeta to leverage...\r\n\r\n... THE WORLD\'S 1ST One & Only *Voice Activated* A.I-Powered Funnel Builder Complete With Course Creator, Traffic & More:)\r\n\r\nThis latest from Billy Darr\r\nshows you exactly how\r\n\r\n<< https://shortz.pro/zeta >>\r\n\r\nOnce you see the potential \r\nwith this, you\'ll want to\r\nscale this even more\r\n\r\nGrab this for 17 bux\r\n\r\n… but act fast because\r\nprice increases with\r\neach sale\r\n\r\n>>> Grab your copy now!\r\nhttps://shortz.pro/zeta\r\n\r\nRegards.\r\n\r\nP.S. For the first 35 people \r\nwho grab this today you\'ll get \r\nInstant $5 Discount Now!',''),(1651,1,423,'6','Eric Jones',''),(1652,1,423,'2','555-555-1212',''),(1653,1,423,'3','eric.jones.z.mail@gmail.com',''),(1654,1,423,'4','Dear juiceelectrical.co.nz Admin!\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1655,1,424,'6','Lela Gottlieb',''),(1656,1,424,'3','lela.gottlieb@googlemail.com',''),(1657,1,424,'4','Web Page Description:\r\nDo you want to learn how to build and monetize chatbots using the power of artificial intelligence? Then check out \"ChatGPT Riches\" at https://milesmarketing--chasereiner.thrivecart.com/chatgpt-riches/ .\r\n\r\n This comprehensive training program includes everything you need to get started, from video tutorials to case studies and a private Facebook group. With no prior technical experience required, even beginners can start building profitable chatbots with ease!',''),(1658,1,425,'6','Daniele Speckman',''),(1659,1,425,'2','06-72221478',''),(1660,1,425,'3','speckman.daniele@gmail.com',''),(1661,1,425,'4','Hey,\r\n\r\nDid you know that the designing industry is worth a staggering $45.8 billion in the US alone?\r\n\r\nThat’s because everyone from marketers to eCom store owners and entrepreneurs will pay over the odds for compelling designs that will sell their products and services like crazy.\r\n\r\nBut what if you could create gorgeous designs instantly without an ounce of design or coding skills for your blogs, websites, and sales funnels?\r\n\r\nDesigns that grab your audience by the eyeballs and open the floodgates to sales like you never imagined.\r\n\r\n=>> https://shortz.pro/clickdesigns\r\n\r\nClickDesigns is your brand new sales weapon for pixel-perfect logos, favicons, box shots, covers, reports, digital mockups, product bundles, illustrations, callouts, and many other sales-driven graphics on demand.\r\n\r\nIt’s the #1 “ultra-powerful” weapon with baby-friendly controls, versatility, and design sophistication, perfect for newbies, startups, and professionals who are non-designers.\r\n\r\nIt’s totally mindblowing!\r\n\r\n=>> https://shortz.pro/clickdesigns\r\n\r\nClickDesigns was created so that business owners like you, who aren’t technical or creative, can easily design creatives to 1000x your traffic and sales.\r\n\r\nHere are some goodies you will get:\r\n\r\n→ Blank ‘Multi-Purpose’ Canvas: Unleash your creativity with 1000s of built-in elements, icons, shapes, effects, photos, images, and much more.\r\n\r\n→ Point & Click, Drag & Drop Editor: Simple drag-and-drop what you need, how you need, and add where you want for your perfectly illustrated graphics in seconds.\r\n\r\n→ Baby-Friendly User Dashboard: No more intimidating or overwhelming interface that scares the heck out of non-designers.\r\n\r\n→ 28 Industry-Specific Templates: No matter what industry, market, or niche you’re in, there are elegant and versatile templates available for everyone, including you!\r\n\r\n→ Fully Customizable 2D & 3D Templates: Go straight to the finish line with the most comprehensive collection of professionally crafted designs by award-winning designers never seen before.\r\n\r\n=>> https://shortz.pro/clickdesigns\r\n\r\nBut wait, there’s more!\r\n\r\n→ Multi-Angle Layout Views: Dive straight in by selecting the angles and layouts that speak directly to your audience the exact way you want to effectively grab and keep their attention\r\n\r\n→ Beautiful Group Shots Fast & Easy: Group shots significantly increase the value of your products in the eyes of your customers, making your products more attractive and possession-worthy.\r\n\r\n→ Show Me \'Live\' Preview: Readily preview your designs as you design LIVE on the same page.\r\n\r\n→ 2D & 3D Photo-Perfect Downloads: Give them heart-stopping designs they can see, feel, and taste with attention to detail that trigger emotions and help users believe in your products that they open their wallets up to you.\r\n\r\n→ 1-Click Export: Export your designs directly to your blog, website, and sales funnel for immediate use.\r\n\r\n→ 100% Copyright & Ownership: There are no royalties or hidden extras for copyright or ownership.\r\n\r\n=>> https://shortz.pro/clickdesigns\r\n\r\nDuring the launch period only, you get a once-in-a-lifetime, extraordinary opportunity.\r\n\r\nThere is never a shortage of clients looking for designs, because EVERY business needs logos, boxshots, covers, reports, digital mockups, bundles, illustrations, callouts, and many, many more graphics.\r\n\r\nA huge monetization opportunity that is super easy to accomplish with ClickDesigns!\r\n\r\nWith your Pro Commercial License, create and sell unlimited attention-grabbing designs for your clients, customers, and businesses FAST and EASY.\r\n\r\nThey will never know it’s a 1-click designer that produced amazing designs for use on their blogs, websites, and sales funnels.\r\n\r\nAnd we’re not going to tell! PINKY PROMISE.\r\n\r\nSo grab your copy now and start your own graphic design business right away!\r\n\r\n=>> https://shortz.pro/clickdesigns\r\n\r\nTalk Soon.\r\n\r\nP.S. ClickDesigns is your instant turnkey business!\r\n\r\nYou pay zero monthly, annual, or royalty fees, ever.\r\n\r\n=>> https://shortz.pro/clickdesigns',''),(1662,1,426,'6','EMI MacNeil',''),(1663,1,426,'2','06-11719291',''),(1664,1,426,'3','macneil.olen30@googlemail.com',''),(1665,1,426,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1666,1,427,'6','Jackson Willson',''),(1667,1,427,'2','06-95224110',''),(1668,1,427,'3','jackson.willson@gmail.com',''),(1669,1,427,'4','Want to instantly tap into\r\n\r\nNexus to leverage...\r\n\r\n\r\n... ChatGPT4-Powered YouTube Bot That Gets Us Set \'N\' Forget FREE Traffic:)\r\n\r\n\r\nThis latest from Billy Darr\r\n\r\nshows you exactly how\r\n\r\n\r\nbit.ly/3MEI6A5\r\n\r\n\r\nOnce you see the potential \r\n\r\nwith this, you\'ll want to\r\n\r\nscale this even more\r\n\r\n\r\nGrab this for 17 bux\r\n\r\n\r\n… but act fast because\r\n\r\nprice increases with\r\n\r\neach sale\r\n\r\n\r\n>>> Grab your copy now!\r\n\r\n\r\nJackson \r\n\r\n\r\nP.S. Limited time offer grab it today for only $17 : bit.ly/3MEI6A5',''),(1670,1,428,'6','Stacia Mcwhorter',''),(1671,1,428,'2','(02) 4097 2395',''),(1672,1,428,'3','stacia.mcwhorter@msn.com',''),(1673,1,428,'4','*INFO SERVICE EXPIRATION FOR juiceelectrical.co.nz\r\n\r\nAttention: Accounts Payable / Domain Owner / Home - Juice Electrical \r\n\r\nYour Domain: www.juiceelectrical.co.nz \r\nExpected Reply before: May 27, 2023.\r\n\r\nThis Notice for: www.juiceelectrical.co.nz will expire on May 27, 2023. \r\n\r\n\r\n\r\n*For details and to make a payment for juiceelectrical.co.nz services by credit card:\r\n\r\nVisit: https://hostingsrl.com/?web=juiceelectrical.co.nz\r\n\r\n\r\n05272023123836(02) 4097 2395',''),(1674,1,429,'6','Etta',''),(1675,1,429,'2','0201 18 59 30',''),(1676,1,429,'3','etta@juiceelectrical.co.nz',''),(1677,1,429,'4','Hey \r\n\r\nI 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. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.shop\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nThanks for your time, \r\n\r\nEtta',''),(1678,1,430,'6','Samual Escamilla',''),(1679,1,430,'3','escamilla.samual@googlemail.com',''),(1680,1,430,'4','I will create a corporate video for your business for 10$.\r\n\r\nLink : https://bit.ly/corporatevideo-creation',''),(1681,1,431,'6','Bryan Tabarez',''),(1682,1,431,'2','734-438-3035',''),(1683,1,431,'3','tabarez.bryan@hotmail.com',''),(1684,1,431,'4','Are you looking for a way to create stunning videos and images \r\nfor your marketing campaigns, but don\'t have the time or design skills? \r\n\r\nLook no further than Ai Diffusion - the world\'s first mid-journey, Canva & Dall.E killer app\r\n that turns any voice commands or keywords into stunning ultra HD AI videos, 4K HD AI images,\r\n AI cartoon videos, Ai Diffusion videos, AI animated videos, AI drawings & art, AI sketch images, \r\nimages to 3D videos, AI logos & graphics, and so much more.\r\n\r\n==> Watch Full Demo here\r\nhttps://shortz.pro/ai-diffusion\r\n\r\n- Generate Ultra-HD 4k Videos & Images...\r\n- Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n- Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n- Comes With Built-in Ai Video & Image Background Remover...\r\n- Turn Any Normal Image Into Sketch With Just A Single Click...\r\n- Convert Any Image Into 3D Video In Blink Of An Eye...\r\n- Built-in GTA V Art & Video Style Maker...\r\n- Image Inpainting\r\n- Image Super Resolution\r\n- Image Colorization\r\n- Black & White To Color Video\r\n- Video Background Color Changer\r\n- Ai Cartoon Generator\r\n- Night Image Enhancement\r\n..and much more\r\n\r\n\r\nWith Ai Diffusion\'s advanced AI technology, you can create professional-looking videos and images in just minutes,\r\n even if you have no prior design experience. Simply speak your ideas or keywords into the app, and it will generate stunning visuals that you can customize to your liking.\r\n\r\nPlus, with the ability to convert images to 3D videos, your creations will be even more impressive.\r\n\r\nWhether you\'re looking to create content for your social media channels, website, or marketing campaigns, Ai Diffusion has you covered.\r\n\r\nSay goodbye to traditional video and image creation methods and hello to the future with Ai Diffusion.\r\n\r\nTo learn more about Ai Diffusion and how it can transform your content creation process, visit our website https://shortz.pro/ai-diffusion.\r\n\r\n Don\'t settle for ordinary videos and images - elevate your brand with Ai Diffusion today.\r\n\r\n==> Here Full Scoop\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nRegards.',''),(1685,1,432,'6','James Walden',''),(1686,1,432,'3','fiverrcanhelp@gmail.com',''),(1687,1,432,'4','Hi,\r\n\r\nMy name is James Walden. I\'m an insurance adjuster and technology consultant. I was looking at your \r\nwebsite exposure in the search engines and figured I\'d let you know about Fiverr Services. The consultants on Fiverr \r\nare exceptional with all aspects of online marketing. The associates I have been working with are great since I can \r\nsee that I am working with a 5-star 5.0 rated and pro-verified individual, any time I need a project completed. \r\n\r\nThis is huge in online marketing, especially when you are looking at how competitive the market has become. I\'m going \r\nto leave you a few links below so you can go to the Fiverr and check them out. SEO ranking on Google and really any \r\nonline marketing is tough, thats why I always recommend a professional.\r\n\r\nTake care and good luck with marketing.\r\n\r\nFiverr - Website Design Services - https://tinyurl.com/Fiverr-WebsiteDesignServices\r\n\r\nFiverr - Search Engine Optimization (SEO) Services - https://tinyurl.com/Fiverr-SEOPage\r\n\r\nFiverr - Logo Design Services - https://tinyurl.com/Fiverr-LogoDesignServices\r\n\r\nFiverr - Graphic & Design Page - https://tinyurl.com/Fiverr-GraphicsandDesignPage\r\n\r\nFiverr - Digital Marketing Services - https://tinyurl.com/Fiverr-DigitalMarketingPage\r\n\r\nMy personal email address is below, if you have any questions. \r\n\r\nThanks for your time.\r\n\r\nJames Walden\r\nOwner/Consultant\r\njcwaldenjr@gmail.com\r\nYoutube.com/@SelfHelpOnline',''),(1688,1,433,'6','David Strauss',''),(1689,1,433,'2','(02) 6126 8480',''),(1690,1,433,'3','david@straussmedia.com',''),(1691,1,433,'4','Hey,\r\n\r\nHere is the best free blueprint on how to make money with AI in 2023\r\n\r\nhttps://ai-hustle.beehiiv.com/\r\n\r\nEnjoy :)\r\n\r\nBest,\r\n\r\nDavid',''),(1692,1,434,'6','Jackson Willson',''),(1693,1,434,'2','078 5129 5026',''),(1694,1,434,'3','jackson.willson@gmail.com',''),(1695,1,434,'4','Want to instantly tap into\r\n\r\nNexus to leverage...\r\n\r\n\r\n... ChatGPT4-Powered YouTube Bot That Gets Us Set \'N\' Forget FREE Traffic:)\r\n\r\n\r\nThis latest from Billy Darr\r\n\r\nshows you exactly how\r\n\r\n\r\nbit.ly/3MEI6A5\r\n\r\n\r\nOnce you see the potential \r\n\r\nwith this, you\'ll want to\r\n\r\nscale this even more\r\n\r\n\r\nGrab this for 17 bux\r\n\r\n\r\n… but act fast because\r\n\r\nprice increases with\r\n\r\neach sale\r\n\r\n\r\n>>> Grab your copy now!\r\n\r\n\r\nJackson \r\n\r\n\r\nP.S. Limited time offer grab it today for only $17 : bit.ly/3MEI6A5',''),(1696,1,435,'6','EMI Jull',''),(1697,1,435,'2','09345 96 62 10',''),(1698,1,435,'3','jull.angelia47@gmail.com',''),(1699,1,435,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1700,1,436,'6','Lesli Wolcott',''),(1701,1,436,'2','0318 2772239',''),(1702,1,436,'3','wolcott.lesli@gmail.com',''),(1703,1,436,'4','I will create a corporate video for your business for 10$.\r\n\r\nLink : https://bit.ly/corporatevideo-creation',''),(1704,1,437,'6','Kevin Ranking',''),(1705,1,437,'2','070 2905 2129',''),(1706,1,437,'3','jmk84463@gmail.com',''),(1707,1,437,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(1708,1,438,'6','Erik Gilbertson',''),(1709,1,438,'2','(08) 8721 3022',''),(1710,1,438,'3','gilbertson.erik@msn.com',''),(1711,1,438,'4','You’ve heard your parents say it. You’ve heard your friends talk about it.\r\n\r\nYou need to invest your money.. How? Where? Why?\r\n\r\nSimple answer, Cryptocurrencies.\r\n\r\nWhy?\r\n\r\nSimple answer, incredible risk/reward. \r\n\r\nThe upside could be as much as 100x or more.\r\n\r\nThe downside is capped to what you put in.\r\n\r\nThere’s no barrier to entry and you could start with as little as 10 bucks.\r\n\r\nI know crypto can be confusing, scary and daunting.\r\n\r\nIt was for me when I first started.\r\n\r\nBut, I don\'t want you to make the same mistakes everyone else does when it comes to crypto.\r\n \r\nCryptocurrency veteran Dirk de Bruin and his expert team have been researching relentlessly the best\r\nway to stop you from making these mistakes but also a way to teach you the new necessary skills surrounding crypto.\r\n\r\nNot only has he put all this unique knowledge into a masterclass that will teach you the basics around crypto \r\nbut he will also tell you the next 3 coins he will be personally investing in.\r\nhttps://shortz.pro/ic-vip\r\n\r\nBest part is, It is completely 100% FREE for a limited time.\r\n\r\nI HIGHLY recommend to stop what you’re doing right now and click the link below to watch Dirk’s crypto masterclass. Your financial future could depend on it!\r\n\r\nClick on the link below to access the FREE Masterclass and the 3 upcoming coins that might just lead you to more possible financial success.\r\nhttps://shortz.pro/ic-vip',''),(1712,1,439,'6','Greg O\'Beirne',''),(1713,1,439,'2','0211389933',''),(1714,1,439,'3','greg.obeirne@gmail.com',''),(1715,1,439,'4','Hi there, we\'d like to replace our bathroom exhaust fan/light/heater combo to one with a backdraft damper, similar to this unit: https://www.bunnings.co.nz/hpm-white-non-ducted-ceiling-exhaust-fan-with-integrated-led-light_p0375629\r\nAt the moment, the duct is about 25 cm in diameter goes straight up out of the roof. As this unit doesn\'t have a heater, we\'d also like to install a fan heater, probably high on the wall directly above the switch (which has switches for light, fan, and heater). A quote would be much appreciated. We\'re in St Martins. Cheers',''),(1716,1,439,'5','Google',''),(1717,1,440,'6','Darcy Amess',''),(1718,1,440,'2','0221 13 66 51',''),(1719,1,440,'3','amess.darcy@gmail.com',''),(1720,1,440,'4','Hi,\r\n\r\nI wanted to share some exciting news with you about a powerful tool that\r\ncan revolutionize the way you create Ai Video & Images\r\n\r\nIntroducing..Ai Diffusion\r\n\r\nWorld\'s First MidJourney, Canva & Dall.E Killer App That Turns Any Voice Commands Or Keywords\r\n Into Stunning Ultra HD Ai Videos, 4K HD Ai Images, Ai Cartoon Videos, \"Ai Diffusion Videos, Ai Animated Videos,\r\n Ai Drawings & Art, Ai Sketch Images, Images To 3D Videos, Ai Logos & Graphics And So Much More...\r\n\r\n>> See Ai Diffusion In Action… https://shortz.pro/ai-diffusion\r\n\r\n- Generate Ultra-HD 4k Videos & Images...\r\n- Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n- Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n- Comes With Built-in Ai Video & Image Background Remover...\r\n- Turn Any Normal Image Into Sketch With Just A Single Click...\r\n- Convert Any Image Into 3D Video In Blink Of An Eye...\r\n- Built-in GTA V Art & Video Style Maker...\r\n- Image Inpainting\r\n- Image Super Resolution\r\n- Image Colorization\r\n- Black & White To Color Video\r\n- Video Background Color Changer\r\n- Ai Cartoon Generator\r\n- Night Image Enhancement\r\n..and much more\r\n\r\n==> Watch Live Demo here\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nBecause for the early users of Ai Diffusion, we are offering access for just a low one-time price equivalent to the price of a takeout dinner for a couple.\r\n\r\nClick the link below right now to get started with Ai Diffusion\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nRegards.',''),(1721,1,442,'6','Eric Jones',''),(1722,1,442,'2','555-555-1212',''),(1723,1,442,'3','ericjonesmyemail@gmail.com',''),(1724,1,442,'4','To the juiceelectrical.co.nz Admin!\r\n\r\nEric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1725,1,443,'6','Alex Sham',''),(1726,1,443,'2','+441279975075',''),(1727,1,443,'3','sales@metaagency.cc',''),(1728,1,443,'4','Hi, my name is Alex.S, I have noticed something wrong with your website and I want to volunteer for free, do you have a second to chat about it? Here\'s my phone number, call or text me when you have a second: +442039960808\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com.',''),(1729,1,445,'6','Mike Smith',''),(1730,1,445,'2','89358917122',''),(1731,1,445,'3','no-replyinquiff@gmail.com',''),(1732,1,445,'4','If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Smith\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/',''),(1733,1,445,'5','Google',''),(1734,1,446,'6','Anaïs Dupont',''),(1735,1,446,'3','market.wizard.ai@gmail.com',''),(1736,1,446,'4','Hello!\r\n\r\nDiscover the Content Generation Revolution with this groundbreaking AI!\r\n\r\nAre you tired of spending hours crafting captivating newsletters and impactful Twitter threads? Do you wish for an efficient solution that automatically generates high-quality content in an instant?\r\n\r\nLook no further because this revolutionary AI is here to meet your needs! With its cutting-edge technology, all you have to do is enter a URL or a topic, and the AI will instantly generate compelling marketing emails and impactful tweets.\r\n\r\nThe urgency of our offer is palpable! In today\'s competitive world, it is essential to quickly attract and engage your audience. Powerful marketing messages play a crucial role in the growth of your business.\r\n\r\nHowever, finding the right words and captivating your audience can be time-consuming and challenging. That\'s where the AI comes into play! With its ability to analyze and comprehend data instantly, it can generate compelling marketing messages that will help you increase your impact and achieve exceptional results.\r\n\r\nImagine the speed at which you can generate high-quality newsletters, engaging marketing emails, and captivating Twitter threads using this revolutionary AI. No more racking your brain to find the best wording or spending hours refining your content. Save precious time and boost your productivity by letting the AI do the work for you!\r\n\r\nClick now on the following link to learn more about this AI and discover how it can transform your marketing approach: https://tinyurl.com/3t4j5vrw\r\n\r\nDon\'t let your competitors get ahead. Seize this unique opportunity to harness the power of AI to generate powerful and engaging marketing messages. The future of marketing is in your hands. Act now and revolutionize your communication strategy!\r\n\r\nClick here to learn more: https://tinyurl.com/3t4j5vrw\r\n\r\nBest regards',''),(1737,1,447,'6','EMI Woolner',''),(1738,1,447,'2','032 697 91 77',''),(1739,1,447,'3','woolner.velva37@gmail.com',''),(1740,1,447,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1741,1,448,'6','Oscar Davis',''),(1742,1,448,'2','0243-7307396',''),(1743,1,448,'3','oscar.davis@gmail.com',''),(1744,1,448,'4','How would you like to have a personal assistant that can help you create Everything For You?\r\n\r\n\r\nWell, your wish has come true! \r\n\r\n\r\nIntroducing…Ai Suite\r\n\r\n80-In One - The world’s first ChatGPT (OpenAi) \r\n\r\nPowered App Suite…That Does Everything- For you\r\n\r\n\r\n==> Here Full Scoop: bit.ly/3OPXfS9 \r\n\r\n\r\n\r\nTOP Features:\r\n\r\n\r\n\r\n✅ Real ChatGPT Ai Chatbot\r\n\r\n✅ Ai Text to Video Generator\r\n\r\n✅ Ai Content Generator\r\n\r\n✅ Ai Text to Image Generator\r\n\r\n✅ Ai Keyword to Video Generator\r\n\r\n✅ Ai Keyword to Image Generator\r\n\r\n✅ Ai Image Variation Generator\r\n\r\n✅ Ai Graphic Editor\r\n\r\n✅ Ai Product Name Generator\r\n\r\n✅ Ai Text to Speech\r\n\r\n✅ Ai Video To Text\r\n\r\nand Many More..\r\n\r\n\r\n\r\nWith Ai Suite, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\n\r\nAnd the best part? \r\n\r\n\r\nAi Suite is easy to use! \r\n\r\n\r\nAll you have to do is chat with it, and it will do the rest.\r\n\r\nSo, why wait?\r\n\r\n\r\n>> Go & check it out before they take it down: bit.ly/3OPXfS9 \r\n\r\n\r\n\r\nRegards\r\n\r\n\r\nOscar',''),(1745,1,449,'6','Dale Machado',''),(1746,1,449,'3','machado.dale@msn.com',''),(1747,1,449,'4','Hey, \r\nEvery business owner needs to keep their digital browsing safe from hackers, spammers etc.\r\n\r\nBut,\r\nDoing all this without paying huge monthly to third parties is a tough nut to crack.\r\n\r\nNow, \r\nIf you too faced this issue,\r\nIt’s time to take a breather as we present…\r\n\r\nThe Fastest & Most Powerful VPN That Encrypts Your Online Traffic And Hides Your Real IP Address To Keep Your Browsing Safe, \r\nEnsures 100% Online Privacy & Unbeatable Security From Hackers, Trojans Etc For A Low, One Time Price.\r\n\r\nHere are some of its benefits-\r\n- 100% Business Friendly Technology That Keeps Spammers, Malware & Other Viruses At Bay\r\n- Get 256 Bit AES Encryption To Filter Your Website Traffic & Remove All Threats\r\n- Ensure 100% Safety From Hackers, Trojans, Spamware & Malicious Attacks\r\n- Smartly Keep Your Internet Browsing Activity Hidden From Everyone\r\n- Send Your Internet Traffic Through An Encrypted VPN Tunnel, So Your Passwords And Confidential Data Stay Safe\r\n- Break Free From All Restrictions & Get Best In Class Encryption\r\n- Never Compromise On Speed- Get Lightning Fast Connectivity With No Extra Charges\r\n- Works For Any Device Or Windows, MacOS, Linux, Chromebook\r\n- Never Worry For Your Device Security Or Online Presence- We’ve Covered It All\r\n- Say Goodbye To Data & Bandwidth Throttling\r\n- Protect Up To 5 Of Your Devices At Once With Your Power VPN Account\r\n- Connect Reliably Across 5 Global Countries With No Security Hassles \r\n- Stay 100% Secured Even While You Use Internet During Travelling\r\n- Never Worry About Paying Huge Money Monthly To Expensive Third Party VPN Platforms\r\n\r\nJust imagine the kind of growth prospects in store without any huge payment, investing your time or having prior experience?\r\nIt’s all going to soon become your reality.\r\n\r\nGet Power VPN At Low Earlybird Price Here\r\nhttps://shortz.pro/power-vpn\r\n\r\nSo, I highly recommend you to get your hands on this like all serious\r\n& top marketers do.\r\n\r\nI can bet there’s nothing easier and smarter than this. \r\nBTW if you get something good, hit me up and I’ll be up to it right away.\r\n\r\nSo, stop thinking and…\r\n\r\nGet Power VPN With Cool Bonuses Here\r\nhttps://shortz.pro/power-vpn\r\n\r\nLet’s Succeed Together.\r\n\r\nP.S- There’s nothing like this available at such a low price. So, grab it today before it goes away forever.',''),(1748,1,450,'6','Chris Morales',''),(1749,1,450,'2','27-25-96-73',''),(1750,1,450,'3','jmk84463@gmail.com',''),(1751,1,450,'4','Do you struggle with managing all the different aspects of your online business? Creating and launching sales funnels, setting up affiliate programs, and sending email campaigns can be time-consuming and overwhelming. But what if you could have all these tools in one place?\r\n\r\nThat\'s where systeme.io comes in. With systeme.io, you can easily create and launch your sales funnels, set up affiliate programs, and send email campaigns with just a few clicks. No more switching between different platforms or struggling with complicated software!\r\n\r\nSysteme.io is designed to simplify your online business, so you can focus on what really matters - growing your business and making more sales. \r\n\r\nDon\'t let technology hold you back - click the link below to check out systeme.io today and start taking your business to the next level!\r\n\r\nhttps://jmk84463.systeme.io/05c6a910\r\n\r\nThanks,\r\n\r\nChris\r\n\r\n\r\n\r\n\r\n335 South 600 East Smithfield UT 84335\r\n\r\nOpt-out statement: If you no longer wish to receive emails from us, simply click the link below to unsubscribe.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(1752,1,451,'6','James Walden',''),(1753,1,451,'3','fiverrcanhelp@gmail.com',''),(1754,1,451,'4','Hi,\r\n\r\nMy name is James Walden. I\'m an insurance adjuster and technology consultant. I was looking at your \r\nwebsite exposure in the search engines and figured I\'d let you know about Fiverr Services. The consultants on Fiverr \r\nare exceptional with all aspects of online marketing. The associates I have been working with are great since I can \r\nsee that I am working with a 5-star 5.0 rated and pro-verified individual, any time I need a project completed. \r\n\r\nThis is huge in online marketing, especially when you are looking at how competitive the market has become. I\'m going \r\nto leave you a few links below so you can go to the Fiverr and check them out. SEO ranking on Google and really any \r\nonline marketing is tough, thats why I always recommend a professional.\r\n\r\nTake care and good luck with marketing.\r\n\r\nFiverr - Website Design Services - https://tinyurl.com/Fiverr-WebsiteDesignServices\r\n\r\nFiverr - Search Engine Optimization (SEO) Services - https://tinyurl.com/Fiverr-SEOPage\r\n\r\nFiverr - Logo Design Services - https://tinyurl.com/Fiverr-LogoDesignServices\r\n\r\nFiverr - Graphic & Design Page - https://tinyurl.com/Fiverr-GraphicsandDesignPage\r\n\r\nFiverr - Digital Marketing Services - https://tinyurl.com/Fiverr-DigitalMarketingPage\r\n\r\nMy personal email address is below, if you have any questions. \r\n\r\nThanks for your time.\r\n\r\nJames Walden\r\nOwner/Consultant\r\njcwaldenjr@gmail.com\r\nYoutube.com/@SelfHelpOnline',''),(1755,1,452,'6','ElenakeN',''),(1756,1,452,'2','83723875894',''),(1757,1,452,'3','elenakeN@mcstemme.com',''),(1758,1,452,'4','Неllо аll, guуѕǃ I know, my messagе maу be too ѕрeсіfic,\r\nΒut mу ѕiѕtеr fоund nice man hеre аnd thеy marrіеd, sо how аbout mе?ǃ :)\r\nΙ am 28 yeаrѕ old, Elеna, from Rоmanіa, I knоw Εngliѕh аnd Gеrmаn lаnguagеѕ аlѕo\r\nАnd... Ι hаvе ѕреcіfic dіseaѕе, nаmеd nуmphomaniа. Ԝho know whаt іs this, сan undеrstаnd mе (bеtter to sаy іt іmmedіаtеlу)\r\nАh уеѕ, I сook vеry taѕtyǃ аnd I lovе not only cook ;))\r\nIm real girl, nоt рrostitute, and loоking fоr ѕerious and hot relatiоnshір...\r\nAnywаy, уou сan fіnd my рrofіle here: http://mitalisdi.cf/idm-66811/',''),(1759,1,452,'5','Google',''),(1760,1,453,'6','Eric Jones',''),(1761,1,453,'2','555-555-1212',''),(1762,1,453,'3','ericjonesmyemail@gmail.com',''),(1763,1,453,'4','Hi juiceelectrical.co.nz Webmaster! Cool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.”\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1764,1,454,'6','Kathi Sherwood',''),(1765,1,454,'2','(03) 5371 1960',''),(1766,1,454,'3','kathi.sherwood79@yahoo.com',''),(1767,1,454,'4','I will create a corporate video for your business for 10$.\r\n\r\nLink : https://bit.ly/corporatevideo-creation',''),(1768,1,455,'6','Jack Miller',''),(1769,1,455,'2','(08) 9049 2205',''),(1770,1,455,'3','jack.miller@gmail.com',''),(1771,1,455,'4','It’s over!\r\n\r\n \r\n\r\nProto offer has come to an end.\r\n\r\n \r\n\r\nThere’s only 2 hours until midnight when the offer will close and go away for life.\r\n\r\n \r\n\r\nThis is your LAST Chance >> Click Here to Get Proto Now: bit.ly/3IOOkMJ\r\n\r\n\r\n \r\n\r\nImagine eCom WITHOUT Stores, that means…\r\n\r\n\r\n- No Shopify\r\n\r\n- No Amazon\r\n\r\n- No Inventory\r\n\r\n- No Warehouse or Storage\r\n\r\n- No Complicated setups\r\n\r\n \r\n\r\nDo I have your attention now? Good… because I like EASY stuff and using Super eCom Funnels is by far the easiest way to profit from eCommerce right now.\r\n\r\n \r\n\r\nNO Stores… NO BS! Click Here to Crush eCom Without Stores (Ending Soon)\r\n\r\n \r\n\r\nProto automates the entire process of crushing eCom without stores for you so you can launch your first Super eCom funnel in minutes from now and make your first sale today.\r\n\r\n \r\n\r\nYes, no kidding… people using Proto are seeing results right now, even eCommerce newbies are already getting sales with it right now.\r\n\r\n \r\n\r\nDon’t miss out on this rare opportunity…\r\n\r\n \r\n\r\n\r\n>> Click Here to Get Proto Now (Offer Ends Midnight): bit.ly/3IOOkMJ\r\n\r\n\r\n\r\nDon´t miss the chance for something great, \r\n\r\n\r\nJack',''),(1772,1,456,'6','EMI Schimmel',''),(1773,1,456,'3','schimmel.zita25@yahoo.com',''),(1774,1,456,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(1775,1,457,'6','Yvette Steadman',''),(1776,1,457,'2','0486 64 26 37',''),(1777,1,457,'3','steadman.yvette@msn.com',''),(1778,1,457,'4','Are you looking for a way to create stunning videos and images for \r\nyour marketing campaigns, but don\'t have the time or design skills? \r\n\r\nLook no further than Ai Diffusion - the world\'s first mid-journey, Canva & Dall.E killer app\r\nthat turns any voice commands or keywords into stunning ultra HD AI videos, 4K HD AI images,\r\nAI cartoon videos, Ai Diffusion videos, AI animated videos, AI drawings & art, AI sketch images, \r\nimages to 3D videos, AI logos & graphics, and so much more.\r\n\r\n==> Watch Full Demo here\r\nhttps://shortz.pro/ai-diffusion\r\n\r\n- Generate Ultra-HD 4k Videos & Images...\r\n- Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n- Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n- Comes With Built-in Ai Video & Image Background Remover...\r\n- Turn Any Normal Image Into Sketch With Just A Single Click...\r\n- Convert Any Image Into 3D Video In Blink Of An Eye...\r\n- Built-in GTA V Art & Video Style Maker...\r\n- Image Inpainting\r\n- Image Super Resolution\r\n- Image Colorization\r\n- Black & White To Color Video\r\n- Video Background Color Changer\r\n- Ai Cartoon Generator\r\n- Night Image Enhancement\r\n..and much more\r\n\r\nWith Ai Diffusion\'s advanced AI technology, you can create professional-looking videos and images in just minutes,\r\neven if you have no prior design experience. Simply speak your ideas or keywords into the app, and it will generate stunning\r\nvisuals that you can customize to your liking. Plus, with the ability to convert images to 3D videos, your creations will be even more impressive.\r\n\r\nWhether you\'re looking to create content for your social media channels, website, or marketing campaigns, Ai Diffusion has you covered.\r\n\r\nSay goodbye to traditional video and image creation methods and hello to the future with Ai Diffusion.\r\n\r\nTo learn more about Ai Diffusion and how it can transform your content creation process, visit our website https://shortz.pro/ai-diffusion\r\n\r\nDon\'t settle for ordinary videos and images - elevate your brand with Ai Diffusion today.\r\n\r\n==> Here Full Scoop\r\nhttps://shortz.pro/ai-diffusion\r\n\r\nRegards.',''),(1779,1,458,'6','Eric Jones',''),(1780,1,458,'2','555-555-1212',''),(1781,1,458,'3','ericjonesmyemail@gmail.com',''),(1782,1,458,'4','Dear juiceelectrical.co.nz Owner.\r\n\r\nMy name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1783,1,459,'6','Arnoldo Monaco',''),(1784,1,459,'2','04.45.14.69.07',''),(1785,1,459,'3','monaco.arnoldo@gmail.com',''),(1786,1,459,'4','Looking for a competitive advantage? \r\n\r\nGet the edge on your competition with HighLevel. \r\n\r\nHighLevel was built to help agencies scale endlessly, automate processes, reduce churn, and efficiently run all of their digital marketing. \r\n\r\nWe’ve met with so many other marketers and know that agencies need a platform that can do it all.\r\n\r\nSign up for a free trial today and see how HighLevel can help you take your business to the next level!\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(1787,1,460,'6','Darci Christmas',''),(1788,1,460,'2','0523-4422116',''),(1789,1,460,'3','darci.christmas@gmail.com',''),(1790,1,460,'4','READ THIS FREE EBOOK\r\n\r\nThe FASCINATION FIX\r\nhttps://shortz.pro/fascinate\r\n\r\nHow to Fascinate a guy who thinks he\'s \"not ready\" for a relationship\r\nA Special Report by James Bauer',''),(1791,1,461,'6','Dawn Johnson',''),(1792,1,461,'2','713-868-5378',''),(1793,1,461,'3','dawn.johnson@gmail.com',''),(1794,1,461,'4','Hey,\r\n\r\nEvery business owner needs to make the best use of Artificial intelligence to grow their business & get maximum customers hooked.\r\n\r\nBut,\r\n\r\nA majority of AI tools available today in the market are either too complex or damn expensive with limited functionalities.\r\n\r\nNow,\r\n\r\nJust imagine what if we combined both and offered something that’ll take the AI universe by the storm…\r\n\r\nPresenting Propel AI Kit\r\n\r\nWorld’s First, Chat GPT 4 Powered AI Technology That Comes Loaded With 200+ Premium Business Boosting Tools To Create & Sell Amazing Marketing Content For Any Offer & Niche With Zero Prior Skills Or Experience\r\n\r\n \r\n\r\nHere are some of its amazing features-\r\n\r\n· Create 200+ passive income streams without spending a dime\r\n\r\n· No complicated setup, no tech hassles, no installation or any other headache\r\n\r\n· Get 200+ power packed artificial intelligence tools for the price of peanuts\r\n\r\n· Completely automate your business & take industry by the storm\r\n\r\n· Each tool crafted with utmost perfection by industry experts\r\n\r\n· Stop paying huge fees monthly to expensive third-party apps\r\n\r\n· Grow your business while your competitors are left biting the dust\r\n\r\n· No Complicated Setup - Get Up And Running In Under 60 Seconds\r\n\r\n· ZERO Upfront Cost Or Huge Investment\r\n\r\n· Nothing To Download, Install Or Customize – Get Started In Seconds\r\n\r\n· Limited Time Commercial License Included\r\n\r\n· 100% Easy To Use, Newbie Friendly Technology\r\n\r\n· Iron Clad 30 Day Money Back Guarantee Included\r\n\r\nSounds amazing, right?\r\n\r\n\r\nSee Complete Scoop For Propel AI Kit Here: bit.ly/3INwY2T \r\n\r\n\r\nHere’s the really good news…\r\n\r\nRight now,\r\n\r\nPropel AI Kit is available for a crazy low one-time discounted price.\r\n\r\nAnd, this crazy discounted price is going to increase very soon.\r\n\r\nI highly recommend checking it out today, all serious marketers will need this in their arsenal without fail.\r\n\r\nSo, what are you waiting for?\r\n\r\nGrab Propel AI Kit At Low Earlybird Price: bit.ly/3INwY2T \r\n\r\n\r\n\r\nTo Your Success,\r\n\r\n \r\n\r\nDawn',''),(1795,1,462,'6','Sarah Hey',''),(1796,1,462,'2','0272150053',''),(1797,1,462,'3','heysarahhey1989@gmail.com',''),(1798,1,462,'4','Hi, \r\n\r\nWe are looking for an Electrician to come and replace some switches with modern outlets including one fan. We may also need our bathroom heater either repaired or replaced depending on what\'s wrong with it. It\'s currently working but very noisy. Ideally this would be next Tuesday before 1 or Wednesday any time. \r\n\r\nThanks, \r\nSarah',''),(1799,1,462,'5','Facebook recomendation',''),(1800,1,463,'6','Lieselotte Kisch',''),(1801,1,463,'2','09122 20 91 01',''),(1802,1,463,'3','lieselotte.kisch@gmail.com',''),(1803,1,463,'4','I will create a corporate video for your business for 10$.\r\n\r\nLink : https://bit.ly/corporatevideo-creation',''),(1804,1,464,'6','Oscar Willson',''),(1805,1,464,'2','021 398 51 71',''),(1806,1,464,'3','oscar.willson@gmail.com',''),(1807,1,464,'4','ChatGPT Gained over 100 million customers within a month… \r\n\r\n\r\nEven tech giant Google launched their own AI Chatbot called Bard… \r\n\r\n\r\nBecause they understand that AI is the future, and there is no going back… \r\n\r\n\r\nBut here is the thing…\r\n\r\nLaunching your own ChatBot is not an easy task… \r\n\r\n\r\nIt’s a very techy task, and it requires a lot of work and dedication… \r\n\r\n\r\nBut what if there is a way to launch your very own chatGPT-like bot \r\n\r\n\r\nIn less than 30 seconds?\r\n\r\n\r\nSounds good, huh?\r\n\r\n\r\nIt comes equipped with over 50 mind-blowing features that will stun you and your customers \r\n\r\n\r\nWrite, research, and proofread any text you want with 1 click\r\n\r\nGenerate AI-based designs with zero technical skills\r\n\r\nTranslate to over 55 different language \r\n\r\nGenerate Stunning videos without any video editing\r\n\r\nSell access to your chatbot and keep 100% of the profit\r\n\r\n\r\n\r\nIf that sounds like music to your ears… \r\n\r\n\r\nThen you’re in luck, because BrainBox is just launched \r\n\r\n\r\nAnd you can secure your Earlybird discount by clicking here: \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\n\r\nDon\'t miss this opportunity to revolutionize your online business with BrainBox. \r\n\r\n\r\nhttps://bit.ly/40E8f8b\r\n\r\n\r\nTry it now!\r\n\r\nBest regards,\r\n\r\n\r\nOscar',''),(1808,1,465,'6','Gabriel Segura',''),(1809,1,465,'2','(11) 2005-2801',''),(1810,1,465,'3','bizwinteam@gmail.com',''),(1811,1,465,'4','If you feel like you’re working too hard… \r\n…And getting nowhere fast - This might help.\r\n\r\nFree AI Money Commission System (Free PDF)\r\nWe used it to make 811.18 in 7 days (results inside).\r\n\r\nWhat do I need to do?\r\n* Click the link below and read the free PDF.\r\n* Watch the training (also free).\r\n* Create your free instructions.\r\n* Give the free instructions away (for free). \r\n\r\nHow do we get paid?\r\nWe get paid when someone clicks the special code we put in our free instructions. Read the PDF for full details:\r\n\r\nClick Here For Instant ‘No Cost’ Access => www.ai-commissions.com\r\n\r\nNote: Access to our instructions, costs nothing, includes actual results, & requires no experience.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThank you for your interest in our communications. \r\nWe understand that everyone\'s preferences are different\r\nand we respect your decision to opt out of our messages.\r\nPlease note we do not collect any of your information.\r\nI may receive a commission if you purchase through my link.\r\nI only send offers of systems that I also use and tested.\r\n836 Southampton Road Step B# 146 Benicia Ca 94510\r\n\r\nYou can unsubscribe from our promotional offers with the link below.\r\nhttps://www.rewardocity.com/?info=juiceelectrical.co.nz',''),(1812,1,466,'6','Megan Atkinson',''),(1813,1,466,'2','0384 9527255',''),(1814,1,466,'3','meganatkinson352@gmail.com',''),(1815,1,466,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 400-1200+ followers per month.\r\n- Real, human followers: People follow you because they are interested in your business or niche.\r\n- Safe: All actions are made manually. We do not use any bots.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you are interested, and would like to see some of our previous work, let me know and we can discuss further.\r\n\r\nKind Regards,\r\nMegan',''),(1816,1,467,'6','Adam Axelson',''),(1817,1,467,'2','805-814-7412',''),(1818,1,467,'3','adam.axelson@gmail.com',''),(1819,1,467,'4','Residual Income System is a game changer for both new marketers and existing affiliates.\r\n\r\n\r\nHow? It eliminates competition and makes it push button simple to bank hundreds \r\n\r\nPER sale … without a list or even paid traffic!\r\n\r\n\r\n>> Check the demo to see for yourself: bit.ly/42jnFie\r\n\r\n\r\nHere’s what you get:\r\n\r\n\r\nDFY, PROFESSIONAL website optimized for recurring, passive AND high ticket commissions\r\n\r\n\r\nMULTIPLE income streams: you’re pre-approved to profit from the 18 recurring services AND high-ticket offer built into your site\r\n\r\n\r\nFree viral traffic & hosting included = ZERO overhead costs\r\n\r\n\r\nSet & forget method: customize your site ONCE, then it runs on 100% autopilot\r\n\r\n\r\nCompletely beginner friendly: no tech skills needed, nothing to install, step-by-step instructions included\r\n\r\n\r\nEasy to scale: Residual Income System INCLUDES the core software so you can customize this system to fit ANY offer\r\n\r\n\r\n\r\n>> Check the demo to see for yourself: bit.ly/42jnFie\r\n\r\n\r\n\r\nThis is the most complete HIGH PROFIT and recurring affiliate system I’ve ever seen.\r\n\r\n\r\nEveryone from complete beginners to advanced marketers are raving about their results.\r\n\r\n\r\nYou can start making your 1st 3+ figure commissions in as little as 24 hours …\r\n\r\n\r\nAnd scale up to lifestyle income easily with the included training.\r\n\r\n\r\nRight now, complete access is all yours for an incredibly low one-time fee.\r\n\r\n\r\nBut that price WON’T last long.\r\n\r\n\r\nImagine making $497 before lunchtime every day …\r\n\r\n\r\nAnd have commission checks arriving in the mail every single month…\r\n\r\n\r\nFor no more than 10 minutes of your time.\r\n\r\n\r\n\r\n>> Grab this NOW to make it happen: bit.ly/42jnFie \r\n\r\n\r\n\r\nGood Luck, \r\n\r\nAdam \r\n\r\n\r\nP.S. if you REALLY want to scale this to game changing profits, check out the 1st upgrade option for UNLIMITED campaigns and even more DFY high ticket offers',''),(1820,1,468,'6','Jani Holiman',''),(1821,1,468,'2','907-653-2640',''),(1822,1,468,'3','jani.holiman@googlemail.com',''),(1823,1,468,'4','I will create a corporate video for your business for 10$.\r\n\r\nLink : https://bit.ly/corporatevideo-creation',''),(1824,1,469,'6','Leonor Kortig',''),(1825,1,469,'2','02.53.65.43.24',''),(1826,1,469,'3','leonor.kortig@hotmail.com',''),(1827,1,469,'4','Hey,\r\n\r\nIf you sell anything online, you \r\nmight have realised by now that to \r\nstand out you really need high quality, \r\nattractive, attention-grabbing images, \r\nvideos, vectors, illustrations for \r\nyour websites, videos, ads, social\r\nposts and what not.. \r\n\r\nBut... most people are forced to:\r\n\r\n❌ use copyright images from Google\r\n(that you can get sued for)\r\n\r\n❌ pay $100s for a single image\r\nor video from sites like Shutterstock,\r\nGettyimages etc. \r\n\r\n❌ hire a freelancer or outsourcer\r\nthat charges $1000s per project.. \r\n\r\nAll your mini projects adds up and\r\nover time you might end up paying\r\n$10,000s for these resources\r\nwithout even realising.. huh!\r\n\r\n✅ Presenting Vid Stock Graphics: \r\n\r\nBrand New, searchable & browsable\r\ncloud based platform with over 120 milli0n\r\nstock resources like Premium Royalty-Free \r\nHD+ & 4K Stock Videos, Images, \r\nVectors, Animations, GIFs, Audios \r\nTracks and Even More...\r\n\r\n==> Watch Quick Demo Video Now\r\nhttps://shortz.pro/vid-stock\r\n\r\nFind the perfect footage or image \r\nfor your next video, post, ad, blog \r\nor website, using only a keyword.\r\n\r\nInstead of getting limited access,\r\ndownloads and rights even after\r\npaying premium and monthly prices \r\nto other sock sites, with Vid Stock Graphics \r\nyou get:\r\n\r\n- UNLIMITED access\r\n- UNLIMITED downloads\r\n- UNLIMITED licence\r\n- Regularly updated \r\n- Commercial Rights Included\r\n- Low 1-Time Payment\r\n\r\n==> See how fast and easy it is..\r\nhttps://shortz.pro/vid-stock\r\n\r\n✅ It works in 3 simple steps:\r\n\r\nStep 1 - Type in you keyword to find\r\nvideos, images and more.. \r\n\r\nStep 2 - Preview your stock resources\r\nand select size\r\n\r\nStep 3 - Simple download, edit or\r\nshare on social media\r\n\r\nVid Stock Graphics is available for a Low\r\nOne Time Price during its public launch \r\nfor the next few days only..\r\n\r\nAfter this week, it will turn into a \r\nhigher recurring subscription price model.\r\n\r\nAct fast and get your account at the \r\nlowest price ever.\r\n\r\n==> Get Vid Stock Graphics For A Low One-Time Price Now\r\nhttps://shortz.pro/vid-stock\r\n\r\nSee you inside.\r\n\r\nAll the best.',''),(1828,1,470,'6','Halley Crum',''),(1829,1,470,'2','0381 8206110',''),(1830,1,470,'3','halley.crum@yahoo.com',''),(1831,1,470,'4','I will create a corporate video for your business for 10$.\r\n\r\nLink : https://bit.ly/corporatevideo-creation',''),(1832,1,471,'6','Ara',''),(1833,1,471,'2','(08) 9074 5839',''),(1834,1,471,'3','ara@juiceelectrical.co.nz',''),(1835,1,471,'4','Good Morning \r\n\r\nI 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. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.shop\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nSincerely, \r\n\r\nAra',''),(1836,1,472,'6','Mike Thomson',''),(1837,1,472,'2','84596313899',''),(1838,1,472,'3','no-replyinquiff@gmail.com',''),(1839,1,472,'4','Hi there \r\n \r\nJust checked your juiceelectrical.co.nz in MOZ and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed Domain Authority score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Semrush DA is now possible \r\nhttps://www.monkeydigital.co/semrush-da/ \r\n \r\nThanks and regards \r\nMike Thomson',''),(1840,1,472,'5','Google',''),(1841,1,473,'6','Eric Jones',''),(1842,1,473,'2','555-555-1212',''),(1843,1,473,'3','ericjonesmyemail@gmail.com',''),(1844,1,473,'4','To the juiceelectrical.co.nz Webmaster! my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1845,1,474,'6','Jack Anderson',''),(1846,1,474,'2','077 0161 3945',''),(1847,1,474,'3','jack.anderson@outlook.com',''),(1848,1,474,'4','Introducing the Game-Changing AI Technology for Transforming Text into Attention-Grabbing Songs and Videos!\r\n\r\n\r\nDon\'t miss out on this incredible opportunity to transform the way you work.\r\n\r\n\r\n==> Watch Ai Songs Demo In Action: bit.ly/43FObTP \r\n\r\n\r\nWorld\'s First Artificial Intelligence Based Technology That Converts Any Text Into Attention Grabbing Songs & Video In 3 Clicks\r\n\r\n\r\n✅ Turn An Ordinary Piece Of Text Or Lyrics Into Mind Blowing Songs Like Never Before\r\n\r\n✅ Smartly Convert Your Songs Generated Into Eye Catchy 4K Video\r\n\r\n✅ Inbuilt Marketplace - Create and sell Your Songs\r\n\r\n✅ Fully Tested & Proven - Launch Your Own BandCamp, Reverb Nation Like Music Selling Platform\r\n\r\n✅ Totally Unique & Innovative Tech That Creates Freshly Composed Mesmerizing Songs\r\n\r\n✅ Create Unique Music Easily With Your Voice Commands Or By Entering Any Keyword\r\n\r\n✅ Let Customers Literally Beg You In Exchange For Your Premium Services\r\n\r\n\r\n..and much more\r\n\r\n\r\n\r\nIf you Purchase from Our Link We Give You Best Bonus: bit.ly/43FObTP \r\n\r\n\r\n\r\nVIP Bonus1: Ai Sites With All otos\r\n\r\nVIP Bonus2: Ai Suite With All otos\r\n\r\nVIP Bonus3: Ai Mailer With All otos\r\n\r\nVIP Bonus4: AiPal With All otos\r\n\r\n\r\n..+ more\r\n\r\n\r\nAlso\r\n\r\nwe are giving 3 off Disc0unt for the entire funnel\r\n\r\nCouponcode: AISONGS3\r\n\r\n\r\nAccess Ai Songs + All Bonus: bit.ly/43FObTP \r\n\r\n\r\nThanks,\r\n\r\nJack',''),(1849,1,475,'6','David Bollinger',''),(1850,1,475,'2','806-263-7061',''),(1851,1,475,'3','jmk84463@gmail.com',''),(1852,1,475,'4','Are you struggling to come up with new and engaging content for your website or social media channels? Writer\'s block can be a real problem for busy business owners. \r\n\r\nFortunately, there is a solution. With WordAi, you can create high-quality, unique content in minutes using the power of AI. \r\n\r\nSay goodbye to writer\'s block and hello to fresh, engaging content that your audience will love. \r\n\r\nClick the link to check out WordAi and start creating amazing content today!\r\n\r\nhttps://jmk84463.systeme.io/98399461-6878f83b\r\n\r\nThanks,\r\n\r\nDavid \r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nOpt-Out Statement: To unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(1853,1,476,'6','Steve Collins',''),(1854,1,476,'2','04121 60 41 19',''),(1855,1,476,'3','stevecollins@gmail.com',''),(1856,1,476,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://www.theaisocial.com/writeappreviews\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from AISocial',''),(1857,1,477,'6','Antonietta Towle',''),(1858,1,477,'2','23-94-90-45',''),(1859,1,477,'3','antonietta.towle@gmail.com',''),(1860,1,477,'4','Hey,\r\n\r\nImagine being able to convert any normal text or lyrics into attention grabbing\r\nsongs that your audience can’t get over\r\n\r\n& to do all that…\r\n\r\nYou don’t need any prior song-recording skills or third party dependency\r\n\r\nFeeling lured? Say Hi To AI Songs\r\n https://shortz.pro/ai-songs\r\n\r\nIt’s the World\'s First, Artificial Intelligence Powered Text To Song Creator That Enables You To \r\nTransform Your Text Or Lyrics Into Captivating Musical Compositions Without Any Technical Skills Or Marketing Acumen…\r\n\r\nJust follow 3 easy steps-\r\n\r\nStep - 1: AI Generates Lyrics - Choose between AI-generated lyrics or use custom lyrics.\r\nStep - 2: Select Artists - Pick your preferred artists.\r\nStep - 3: Ready to Go!\r\n\r\nHere are some of its amazing features-\r\n\r\n- First to market, artificial intelligence based technology that converts any text into attention grabbing music in 3 clicks\r\n- Turn an ordinary piece of text into mind blowing music like never before\r\n- Smartly convert your music track generated into eye catchy 4K video & get listeners hooked- Our Ai technology will generate a video that matches your song. With just a few clicks, bring your music to life with captivating visuals.\r\n- Get Freshly Composed Mesmerizing Music for Own or your Clients In Seconds\r\n- Create unique music with your voice commands or by entering any keyword\r\n- Create your own AI-Generated Songs site with just one click- Easily upload your songs and sell them to a wide audience. It also offers a convenient gigs feature, allowing sellers to offer their services and buyers to browse and purchase them. Experience the seamless functionality of Ai Music Marketplace, akin to renowned platforms such as Fiverr, PeoplePerHour, 99designs, and Toptal.\r\n- Offer Premium Music Creation Services On Top Platforms & Make A Cool Passive Income\r\n- Easily upload your songs and sell them to a wide audience\r\n- Use These Music Tracks To Attract More Eyeballs, Make 10 Times More Appealing Videos & Crush your COMPETITION\r\n- Fire All Your Expensive Tools & Services once & for all...\r\n- Say Goodbye To Monthly Fees or paying for expensive music platforms\r\n\r\n\r\n& the best part is, you can do it all\r\n\r\nWithout paying Exorbitant Fees For Complicated Song Creation Tools\r\nWithout Wasting Hundreds Of Hours Creating Songs Yourself\r\nWithout Hiring Costly Music Editors Or Composers\r\nWithout Learning Complex Music Creation Tools\r\nWithout Depending On Existing Platforms Etc Once & For All\r\nWithout Having Any Special Skills, Experience, Or Learning Curve.\r\n\r\n& we’re also offering exclusive bonuses if you act today.\r\nSo, what are you waiting for?\r\n\r\nGet AI Songs With Premium Bonuses Today\r\nhttps://shortz.pro/ai-songs\r\n\r\nThanks.',''),(1861,1,478,'6','Mike Miers',''),(1862,1,478,'2','86566229534',''),(1863,1,478,'3','no-replyinquiff@gmail.com',''),(1864,1,478,'4','Good Day \r\n \r\nI have just took an in depth look on your juiceelectrical.co.nz for its SEO Trend and saw that your website could use an upgrade. \r\n \r\nWe will enhance your ranks organically and safely, using state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Miers',''),(1865,1,478,'5','Google',''),(1866,1,479,'6','Breanna Mora',''),(1867,1,479,'2','979-345-6869',''),(1868,1,479,'3','breanna.mora@googlemail.com',''),(1869,1,479,'4','I had a list of service for your business that helps your business to next level that cost not more than 30$.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(1870,1,480,'6','Scott Smith',''),(1871,1,480,'2','(08) 9034 0296',''),(1872,1,480,'3','scott.smith@gmail.com',''),(1873,1,480,'4','How would you like to have a personal assistant that can help you create Everything For You?\r\n\r\n\r\nWell, your wish has come true! \r\n\r\n\r\nIntroducing…Ai Suite\r\n\r\n80-In One - The world’s first ChatGPT (OpenAi) \r\n\r\nPowered App Suite…That Does Everything- For you\r\n\r\n\r\n==> Here Full Scoop: bit.ly/3OPXfS9 \r\n\r\n\r\n\r\nTOP Features:\r\n\r\n\r\n\r\n✅ Real ChatGPT Ai Chatbot\r\n\r\n✅ Ai Text to Video Generator\r\n\r\n✅ Ai Content Generator\r\n\r\n✅ Ai Text to Image Generator\r\n\r\n✅ Ai Keyword to Video Generator\r\n\r\n✅ Ai Keyword to Image Generator\r\n\r\n✅ Ai Image Variation Generator\r\n\r\n✅ Ai Graphic Editor\r\n\r\n✅ Ai Product Name Generator\r\n\r\n✅ Ai Text to Speech\r\n\r\n✅ Ai Video To Text\r\n\r\nand Many More..\r\n\r\n\r\n\r\nWith Ai Suite, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\n\r\nAnd the best part? \r\n\r\n\r\nAi Suite is easy to use! \r\n\r\n\r\nAll you have to do is chat with it, and it will do the rest.\r\n\r\nSo, why wait?\r\n\r\n\r\n>> Go & check it out before they take it down: bit.ly/3OPXfS9 \r\n\r\n\r\n\r\nRegards\r\n\r\n\r\nScott',''),(1874,1,481,'6','Roxie Farrelly',''),(1875,1,481,'3','roxie.farrelly@gmail.com',''),(1876,1,481,'4','I had a list of service for your business that helps your business to next level that cost not more than 30$.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(1877,1,482,'6','James Roser',''),(1878,1,482,'3','burch.cherie28@gmail.com',''),(1879,1,482,'4','Are you tired of paying for Zapier every month?\r\n\r\nThis new zapier alternative is changing the way businesses automate tasks. \r\n\r\nThe best part is that you don\'t pay monthly for it. \r\n\r\nFree account forever if you only have a few tasks. \r\n\r\nOne time fee if you decide you want more! \r\n\r\nLifetime Access! No, I\'m not kidding.\r\n\r\nCheck it out here: https://cutt.ly/owqInoew\r\n\r\nJames Roser\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(1880,1,483,'6','Hector Elwell',''),(1881,1,483,'2','562-387-2268',''),(1882,1,483,'3','hector.elwell@googlemail.com',''),(1883,1,483,'4','Audiobook is now the BIG goldmine, and people are making huge profits with it on a daily basis…\r\n\r\nSadly, creating and selling them can be tough and super-expensive. \r\n\r\nBut I have got good news for you…\r\n\r\nMeet Vox AI\r\n\r\nThe World’s First ChatGPT4-Powered AI App That Turns Any \"Text, URL, Website, Article, Keyword, Blog, Document or PDF\" into High-Quality Audiobooks or Podcast In 660 Different Voices & 80 Languages…\r\n\r\n>> Click Here To See The Live Demo\r\nhttps://shortz.pro/vox\r\n\r\nWith Vox AI, you can generate content on any topic using “Siri-Like” voice command & turn it to Audiobooks, Podcasts, or Voiceovers for VSL, TV Commercial, Webinars, Sales Videos, etc\r\n\r\n...Publish To The Built-In Marketplace with 2.3M active users, Sell & Receive Instant Payments Via Multiple Methods, including Paypal, Stripe, Cards, and Bank Accounts…\r\n\r\n>> Click Here to Get Instant Access to Vox AI and Sell On Automation.\r\nhttps://shortz.pro/vox\r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\nEven if you are a newbie with zero knowledge… VoxAI is your best shot.\r\n\r\nYou can easily Activate VoxAI in 3 simple steps & start your audiobook empire:\r\n\r\nStep 1: Login - Login to VoxAI Cloud-Bases App\r\n\r\nStep 2: Generate- Enter a Keyword, article, PDF, or even a URL… and VoxAI will turn them into a Full Audiobook or Podcast\r\n\r\nStep 3: Publish- publish your audiobooks on our built-in marketplace with 2.3 million active users.\r\n\r\nStep 4: Start Profiting as soon as you are done\r\n\r\nIt is as simple as that.\r\n\r\n>> Get Lifetime Access Here\r\nhttps://shortz.pro/vox\r\n\r\nWith Vox AI, you can…\r\n\r\n- Create Your First Audiobook Within 2 Minutes\r\n- Turn Any Article, Website, Url, PDF or Blog Into Audiobook, Podcast, VSL, Audio/Music Track…\r\n- Create A Podcast With Human Voice Without Recording\r\n- Choose From 660 Real Human Voices \r\n- Create Voices In 80+ Different Languages\r\n- Comes With 50+ Built-In AI Features That Will Make Your Life 100x Easier \r\n- We Don’t Even Write Scripts, We Let AI Do It For Us.\r\n- Publish Your AudioBook To Our Marketplace With 2.3 Million Active User\r\n- Publish your AudioBook Or Podcast To (Spotify, Audible, Scribe)\r\n- No Complicated Setup - Get Up And Running In 2 Minutes\r\n\r\n…All these, and many more without Paying Any Monthly Fee\r\n\r\n>> Click Here To Get Earlybird Access (Ends In 2 Hours From Now)\r\nhttps://shortz.pro/vox\r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\nFair Warning - Go In Now To Avoid Paying Monthly Fee Later\r\n\r\nSee you inside.',''),(1884,1,484,'6','Sam Johnson',''),(1885,1,484,'2','04.74.70.42.75',''),(1886,1,484,'3','sam.johnson@gmail.com',''),(1887,1,484,'4','Audiobook is now the BIG goldmine, and people are making huge profits with it on a daily basis…\r\n\r\n\r\nSadly, creating and selling them can be tough and super-expensive. \r\n\r\n\r\nBut I have got good news for you…\r\n\r\n\r\nMeet Vox AI\r\n\r\n\r\nThe World’s First ChatGPT4-Powered AI App That Turns Any \"Text, URL, Website, Article, Keyword, Blog, Document or PDF\" into High-Quality Audiobooks or Podcast In 660 Different Voices & 80 Languages…\r\n\r\n\r\n>> Click Here To See The Live Demo: bit.ly/45OWOx8 \r\n\r\n\r\nWith Vox AI, you can generate content on any topic using “Siri-Like” voice command & turn it to Audiobooks, Podcasts, or Voiceovers for VSL, TV Commercial, Webinars, Sales Videos, etc\r\n\r\n\r\n...Publish To The Built-In Marketplace with 2.3M active users, Sell & Receive Instant Payments Via Multiple Methods, including Paypal, Stripe, Cards, and Bank Accounts…\r\n\r\n\r\n\r\n>> Click Here to Get Instant Access to Vox AI and Sell On Automation: bit.ly/45OWOx8 \r\n\r\n\r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\nEven if you are a newbie with zero knowledge… VoxAI is your best shot.\r\n\r\n\r\nYou can easily Activate VoxAI in 3 simple steps & start your audiobook empire:\r\n\r\n\r\nStep 1: Login - Login to VoxAI Cloud-Bases App\r\n\r\n\r\nStep 2: Generate- Enter a Keyword, article, PDF, or even a URL… and VoxAI will turn them into a Full Audiobook or Podcast\r\n\r\n\r\nStep 3: Publish- publish your audiobooks on our built-in marketplace with 2.3 million active users.\r\n\r\n\r\nStep 4: Start Profiting as soon as you are done\r\n\r\n\r\nIt is as simple as that.\r\n\r\n\r\n>> Get Lifetime Access Here: bit.ly/45OWOx8 \r\n\r\n\r\n\r\nWith Vox AI, you can…\r\n\r\n\r\nCreate Your First Audiobook Within 2 Minutes\r\n\r\nTurn Any Article, Website, Url, PDF or Blog Into Audiobook, Podcast, VSL, Audio/Music Track…\r\n\r\nCreate A Podcast With Human Voice Without Recording\r\n\r\nChoose From 660 Real Human Voices \r\n\r\nCreate Voices In 80+ Different Languages\r\n\r\nComes With 50+ Built-In AI Features That Will Make Your Life 100x Easier \r\n\r\nWe Don’t Even Write Scripts, We Let AI Do It For Us.\r\n\r\nPublish Your AudioBook To Our Marketplace With 2.3 Million Active User\r\n\r\nPublish your AudioBook Or Podcast To (Spotify, Audible, Scribe)\r\n\r\nNo Complicated Setup - Get Up And Running In 2 Minutes\r\n\r\n\r\n…All these, and many more without Paying Any Monthly Fee\r\n\r\n>> Click Here To Get Earlybird Access (Ends In 2 Hours From Now): bit.ly/45OWOx8 \r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\n\r\n\r\n\r\n>> Click here to get Lifetime access to VoxAI and start profiting from day one: bit.ly/45OWOx8 \r\n\r\n\r\nFair Warning - Go In Now To Avoid Paying Monthly Fee Later\r\n\r\n\r\nSincerely, \r\n\r\n\r\nSam',''),(1888,1,485,'6','Vickey Castiglione',''),(1889,1,485,'2','077 1728 6445',''),(1890,1,485,'3','vickey.castiglione57@outlook.com',''),(1891,1,485,'4','I had a list of service for your business that helps your business to next level that cost not more than 30$.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(1892,1,486,'6','Valerie Knudsen',''),(1893,1,486,'2','(08) 9056 0479',''),(1894,1,486,'3','knudsen.valerie70@hotmail.com',''),(1895,1,486,'4','Looking for a competitive advantage? \r\n\r\nGet the edge on your competition with HighLevel. \r\n\r\nHighLevel was built to help agencies scale endlessly, automate processes, reduce churn, and efficiently run all of their digital marketing. \r\n\r\nWe’ve met with so many other marketers and know that agencies need a platform that can do it all.\r\n\r\nSign up for a free trial today and see how HighLevel can help you take your business to the next level!\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(1896,1,487,'6','Murat Kose',''),(1897,1,487,'2','85226386615',''),(1898,1,487,'3','leo367023@gmail.com',''),(1899,1,487,'4','Thank you for accepting the invitation and I hope we can communicate. \r\nI believe this is a good way to reach out to you or We can discuss this via the Email: mtkoset@gmail.com \r\nor \r\nvia the telephone,WhatsApp. +90 5065341928 \r\n \r\nI count in your honor for a quick response . \r\nRegards, \r\nMurat Kose',''),(1900,1,487,'5','Google',''),(1901,1,488,'6','Steve Watson',''),(1902,1,488,'2','0316 6212251',''),(1903,1,488,'3','explainervideos382@gmail.com',''),(1904,1,488,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\n\r\nhttps://www.youtube.com/watch?v=zvGF7uRfH04\r\nhttps://www.youtube.com/watch?v=cZPsp217Iik\r\nhttps://www.youtube.com/watch?v=JHfnqS2zpU8\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $239\r\n1-2 minutes = $339\r\n2-3 minutes = $439\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nSteve',''),(1905,1,489,'6','Casey Potter',''),(1906,1,489,'2','089 24 74 37',''),(1907,1,489,'3','casey.potter44@gmail.com',''),(1908,1,489,'4','This is the easiest way to cash in fast from Audiobooks and Podcast.\r\n\r\nAnd the most amazing part is,\r\n\r\nYou won’t be creating these Audiobooks yourself… No recording, No scriptwriting.\r\n\r\n>> Click here to make $586.34 Daily from 2.3 million Ready-made Hot Buyers.\r\nhttps://shortz.pro/vox\r\n\r\nJust Handle it to Our ChatGPT4 Powered Audiobooks AI to create it for you while you add them to the Ready-made 2.3 million active buyers.\r\n\r\nIt’s it simple and stress-free compared to you trying to sell on Amazon.\r\n\r\nWe make $586.34 Daily with this App\r\n\r\nAnd today you are getting the complete setup you need to make as much as you want with this AI App.\r\n\r\n>> Click here to make $586.34 Daily from 2.3 million Ready-made Hot Buyers.\r\nhttps://shortz.pro/vox\r\n\r\nSelling Audiobooks on Amazon can be a hard nut to crack but with Our ChatGPT4 Powered Audiobooks AI, it’s super-easy to turn Audiobooks to huge profits daily.\r\n\r\n>> Click here to make $586.34 Daily from 2.3 million Ready-made Hot Buyers.\r\nhttps://shortz.pro/vox\r\n\r\nBest Regards.',''),(1909,1,490,'6','Oscar Clarke',''),(1910,1,490,'2','(42) 3065-7235',''),(1911,1,490,'3','oscar.clarke@gmail.com',''),(1912,1,490,'4','How would you like to have a personal assistant that can help you create Everything For You?\r\n\r\n\r\nWell, your wish has come true! \r\n\r\n\r\nIntroducing…Ai Suite\r\n\r\n80-In One - The world’s first ChatGPT (OpenAi) \r\n\r\nPowered App Suite…That Does Everything- For you\r\n\r\n\r\n==> Here Full Scoop: bit.ly/3OPXfS9 \r\n\r\n\r\n\r\nTOP Features:\r\n\r\n\r\n\r\n✅ Real ChatGPT Ai Chatbot\r\n\r\n✅ Ai Text to Video Generator\r\n\r\n✅ Ai Content Generator\r\n\r\n✅ Ai Text to Image Generator\r\n\r\n✅ Ai Keyword to Video Generator\r\n\r\n✅ Ai Keyword to Image Generator\r\n\r\n✅ Ai Image Variation Generator\r\n\r\n✅ Ai Graphic Editor\r\n\r\n✅ Ai Product Name Generator\r\n\r\n✅ Ai Text to Speech\r\n\r\n✅ Ai Video To Text\r\n\r\nand Many More..\r\n\r\n\r\n\r\nWith Ai Suite, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\n\r\nAnd the best part? \r\n\r\n\r\nAi Suite is easy to use! \r\n\r\n\r\nAll you have to do is chat with it, and it will do the rest.\r\n\r\nSo, why wait?\r\n\r\n\r\n>> Go & check it out before they take it down: bit.ly/3OPXfS9 \r\n\r\n\r\n\r\nRegards\r\n\r\n\r\nOscar',''),(1913,1,491,'6','Lesley Hikawai',''),(1914,1,491,'2','0212370834',''),(1915,1,491,'3','lesleyhikawai@gmail.com',''),(1916,1,491,'4','Hi,\r\nI would like to have 3 LED lights installed.\r\nHoping you can manage on Monday 19th June am.\r\n\r\nMany Thanks',''),(1917,1,491,'5','I have used you before',''),(1918,1,492,'6','Eric Jones',''),(1919,1,492,'2','555-555-1212',''),(1920,1,492,'3','ericjonesmyemail@gmail.com',''),(1921,1,492,'4','Hello juiceelectrical.co.nz Owner. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1922,1,493,'6','Ryan Churchill',''),(1923,1,493,'2','631-604-0653',''),(1924,1,493,'3','jmk84463@gmail.com',''),(1925,1,493,'4','Are you struggling to keep up with the demands of content creation for your business? Don\'t worry, we have the perfect solution for you. Introducing Jasper.AI, the advanced AI assistant that can revolutionize the way you create content.\r\n\r\nAs a busy business owner, you know how important it is to produce high-quality content consistently. However, the process can be time-consuming and draining. With Jasper.AI, you can say goodbye to writer\'s block and tedious content creation tasks. Our AI-powered platform enables you to generate engaging articles, blog posts, social media captions, and much more, effortlessly.\r\n\r\nJasper.AI not only saves you time and effort but also ensures the content you create is of the highest quality. Our AI assistant uses advanced algorithms and natural language processing capabilities to generate content that resonates with your audience. You can easily customize the tone, style, and length to match your brand voice and target market.\r\n\r\nBut that\'s not all. By using Jasper.AI, you\'re not just benefiting yourself, but also your customers and developers. Imagine the value you can create for your customers by consistently delivering valuable and engaging content. Moreover, developers can leverage Jasper.AI\'s API to enhance their own applications and offer unique content generation features to their users.\r\n\r\nDon\'t miss out on the opportunity to streamline your content creation process and elevate your business. Click the link below to learn more about Jasper.AI and take advantage of our limited-time offer.\r\n\r\nClick the link to learn more and start generating amazing content in no time!\r\nhttps://jmk84463.systeme.io/98399461\r\n\r\nThanks,\r\nRyan\r\n\r\n\r\n\r\n\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(1926,1,494,'6','Carmen Dendy',''),(1927,1,494,'2','091 814 38 64',''),(1928,1,494,'3','dendy.carmen@gmail.com',''),(1929,1,494,'4','I had a list of service for your business that helps your business to next level that cost not more than 30$.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(1930,1,495,'6','Dawn Carlson',''),(1931,1,495,'2','052 930 12 11',''),(1932,1,495,'3','dawn.carlson@gmail.com',''),(1933,1,495,'4','How would you like to have a Most Advanced Ai assistant that can help you create 4K HD high-quality Video, graphics, and respond like a human?\r\n\r\n\r\nWell, your wish has come true! \r\n\r\n\r\nIntroducing…\r\n\r\n\r\nAi Diffusion - The world’s Ai App Create ..\r\n\r\nUltra HD Ai Videos, 4K HD Ai Images, Ai Cartoon Videos, \"Ai Diffusion Videos, Ai Animated Videos, Ai Drawings & Art, Ai Sketch Images, Images To 3D Videos, Ai Logos & Graphics And So Much More... \r\n\r\n\r\n✅ Generate Ultra-HD 4k Videos & Images...\r\n\r\n✅ Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n\r\n✅ Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n\r\n✅ Comes With Built-in Ai Video & Image Background Remover...\r\n\r\n✅ Turn Any Normal Image Into Sketch With Just A Single Click...\r\n\r\n✅ Convert Any Image Into 3D Video In Blink Of An Eye...\r\n\r\n✅ Built-in GTA V Art & Video Style Maker...\r\n\r\n✅ Image Inpainting\r\n\r\n✅ Image Super Resolution\r\n\r\n✅ Image Colorization\r\n\r\n✅ Black & White To Color Video\r\n\r\n✅ Video Background Color Changer\r\n\r\n✅ Ai Cartoon Generator\r\n\r\n✅ Night Image Enhancement\r\n\r\n..and much more\r\n\r\n\r\n\r\nWith Ai Diffusion, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\n\r\nAnd the best part? \r\n\r\n\r\nAi Diffusion is easy to use! \r\n\r\n\r\n\r\n>> Go & check it out before they take it down: bit.ly/4218JVD\r\n\r\n\r\n\r\nRegards,\r\n\r\n\r\nDawn',''),(1934,1,496,'6','James Roser',''),(1935,1,496,'2','421 1333',''),(1936,1,496,'3','blau.beverly83@yahoo.com',''),(1937,1,496,'4','Are you tired of paying for Zapier every month?\r\n\r\nThis new zapier alternative is changing the way businesses automate tasks. \r\n\r\nThe best part is that you don\'t pay monthly for it. \r\n\r\nFree account forever if you only have a few tasks. \r\n\r\nOne time fee if you decide you want more! \r\n\r\nLifetime Access! No, I\'m not kidding.\r\n\r\nCheck it out here: https://cutt.ly/owqInoew\r\n\r\nJames Roser\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(1938,1,497,'6','Eric Jones',''),(1939,1,497,'2','555-555-1212',''),(1940,1,497,'3','ericjonesmyemail@gmail.com',''),(1941,1,497,'4','To the juiceelectrical.co.nz Owner.\r\n\r\nI just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1942,1,498,'6','Darcy Danglow',''),(1943,1,498,'2','077 0430 8839',''),(1944,1,498,'3','darcy.danglow@gmail.com',''),(1945,1,498,'4','I had a list of service for your business that helps your business to next level that cost not more than 30$.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(1946,1,499,'6','Matt Parkin',''),(1947,1,499,'2','0220780258',''),(1948,1,499,'3','onekleenpiece@gmail.com',''),(1949,1,499,'4','Hello, I need an outside plug installed to power a sleepout I\'ve just had moved. There is a plug on the inside wall of the house which can be mirrored to the outside of that makes it any easier! \r\n\r\nCheers Matt',''),(1950,1,499,'5','Googled rolly electricians',''),(1951,1,500,'6','Josh Troberg',''),(1952,1,500,'3','josh.troberg@gmail.com',''),(1953,1,500,'4','Hey,\r\n\r\nI tried to get in touch with you but I couldn’t get through. Everything ok?\r\n\r\n\r\nI wanted to quickly tell you that CopyMate is closing it\'s lowest price $12 ever deal now\r\n\r\n\r\nIt is top trending app and now my favourite too. CopyMate price is already increased to $19 and tonight again it is going to increase to $28 and then it will be turning to $197/month.\r\n\r\n\r\nRight now you can get it at its lowest price ever $12 and good new is that I have got a $7 OFF coupon for you, use COPYMATE7OFF\r\n\r\n\r\nGet CopyMate Right Now Before It Increased To $28: bit.ly/43zqtJl \r\n\r\n\r\nFull Scoop:\r\n\r\n\r\nGPT4 is the most powerful A.I in the world, and there is only one software CopyMate which uses GPT4 to Create\r\n\r\n\r\n[+] Website content\r\n\r\n[+] Email campaigns\r\n\r\n[+] Social Media Posts\r\n\r\n[+] Videos and Video Scripts\r\n\r\n[+] Content for Videos\r\n\r\n[+] Articles, Ads, Reports, Sales Pages, and much more\r\n\r\n \r\n\r\n\r\n==> Watch the demo now: bit.ly/43zqtJl \r\n\r\n\r\n\r\nIt creates all kind of AI content, graphics, programming code, video scripts, emails, social media post, in seconds, literally.\r\n\r\n\r\nI thought you could use it in your business, or even sell it as a service to clients for some extra cash.\r\n\r\n\r\nCheck it out here:\r\n\r\n==> bit.ly/43zqtJl \r\n\r\n\r\n\r\nDon\'t wait any longer, snatch up this amazing opportunity before it\'s gone and becomes a monthly plan.\r\n\r\n\r\n\r\nSincerely, \r\n\r\n\r\nJosh',''),(1954,1,501,'6','Mike Dickinson',''),(1955,1,501,'2','84141436533',''),(1956,1,501,'3','no-replyinquiff@gmail.com',''),(1957,1,501,'4','Howdy \r\n \r\nI have just checked juiceelectrical.co.nz for onsite errors and saw that your website has a handful of issues which should be addressed. \r\n \r\nNo matter what you are offering or selling, having a poor optimized site, full of bugs and errors, will never help your ranks. \r\n \r\nLet us fix your wordpress site errors today and get your ranks reach their full potential \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/product/wordpress-seo-audit-and-fix-service/ \r\n \r\n \r\nRegards \r\nMike Dickinson',''),(1958,1,501,'5','Google',''),(1959,1,502,'6','Mark Lapsley',''),(1960,1,502,'2','250-860-9373',''),(1961,1,502,'3','jmk84463@gmail.com',''),(1962,1,502,'4','Are you tired of dealing with slow, unreliable proxies that negatively impact your business\'s online presence? Look no further than MyPrivateProxy.net, the ultimate solution for quality private and shared proxies at affordable prices.\r\n\r\nAs a business owner, you know how crucial it is to have access to fast and reliable proxies for your online operations. Slow and unstable proxies can harm your business\'s reputation and lead to lost opportunities. MyPrivateProxy.net offers you the best private and shared proxies that are fast, secure, and reliable, so you can focus on growing your business.\r\n\r\nOur platform provides you with a range of proxy options to fit your business needs, including dedicated and shared proxies. We offer affordable pricing plans, with packages starting at just $2.49 per month. Plus, our user-friendly interface makes it easy to manage your proxies and ensure that your business is running at optimal performance.\r\n\r\nDon\'t let subpar proxies hold your business back any longer. Sign up with MyPrivateProxy.net today and see the difference for yourself. Click the link below to learn more and get started.\r\n\r\nhttps://jmk84463.systeme.io/98399461-5a3938e0\r\n\r\nBest regards,\r\n\r\n-Mark\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(1963,1,503,'6','Karine Ketcham',''),(1964,1,503,'2','062 510 95 78',''),(1965,1,503,'3','karine.ketcham@googlemail.com',''),(1966,1,503,'4','Automate your business for free.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(1967,1,504,'6','Eric Jones',''),(1968,1,504,'2','555-555-1212',''),(1969,1,504,'3','ericjonesmyemail@gmail.com',''),(1970,1,504,'4','Hello juiceelectrical.co.nz Owner! this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1971,1,505,'6','Georgina Haynes',''),(1972,1,505,'3','georginahaynes95@gmail.com',''),(1973,1,505,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nOur clients utilize our videos to enhance their product, service, event promotion, or provide clear explanations for tutorials, software, or applications.\r\n\r\nCheck out some of our existing videos here:\r\n\r\nhttps://www.youtube.com/watch?v=zvGF7uRfH04\r\nhttps://www.youtube.com/watch?v=cZPsp217Iik\r\nhttps://www.youtube.com/watch?v=JHfnqS2zpU8\r\n\r\nWhile we do much more than the above, all of our videos are in a similar animated format.\r\n\r\nOur prices are as follows depending on video length:\r\n\r\nUp to 60 seconds: $239\r\n1-2 minutes = $339\r\n2-3 minutes = $439\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nWould you like to see some more of our work?\r\n\r\nKind Regards,\r\nGeorgina',''),(1974,1,507,'6','Allen Miller',''),(1975,1,507,'2','039931 49 48',''),(1976,1,507,'3','allen.miller@gmail.com',''),(1977,1,507,'4','Hey,\r\n\r\n\r\n$795.56 Per Day Without Selling Anything?\r\n\r\n\r\nYou see the vast majority of marketers\r\n\r\nare yet to make a single dime online…\r\n\r\n\r\nAnd the reason for this is simple:\r\n\r\n\r\nThey try to sell stuff to everyone\r\n\r\nand their grandma!\r\n\r\n\r\nI know, this goes against what you’ve \r\n\r\nbeen told by most gurus.\r\n\r\n\r\nBut let me tell you, no matter what others say…\r\n\r\n\r\nIf you try to sell stuff on the Internet to\r\n\r\ntotal strangers, you’ll end up struggling.\r\n\r\n\r\nBut what if you could pocket $795.56 per\r\n\r\nday with FREE traffic just like we do…\r\n\r\n\r\n…Without selling anything?\r\n\r\n\r\nYup, all thanks to a brand-new, powerful\r\n\r\nAI-powered, cloud app\r\n\r\n\r\n\r\n=> Click Here To Discover “Apex”: bit.ly/43RjGKY \r\n\r\n\r\n\r\nThis one-of-a-kind, revolutionary app \r\n\r\nautomatically creates “money sites,” \r\n\r\npre-fills them with high-quality, human-like \r\n\r\ncontent & then sends thousands of targeted\r\n\r\nFREE clicks.\r\n\r\n\r\nIn less than 23 seconds!\r\n\r\n\r\nIf you’re a total beginner looking to make\r\n\r\nyour first buck online, there’s no doubt that\r\n\r\nyou’ll find this unique software life-changing.\r\n\r\n\r\n\r\n=> Click Here To Get Started Now: bit.ly/43RjGKY \r\n\r\n\r\n\r\n\r\nDon\'t you think it\'s time to finally capitalize on the \"AI Craze\"?\r\n\r\n\r\nWell, with \"Apex\" now it\'s possible…\r\n\r\n\r\nYou can start using this out-of-the-box,\r\n\r\ntransformative app in the next 4 minutes\r\n\r\n\r\nAnd begin churning out profitable \"money sites\"\r\n\r\nwith just a few clicks of your mouse!\r\n\r\n\r\n\r\n=> Click Here To Grab “Apex” Now: bit.ly/43RjGKY \r\n\r\n\r\n\r\nRight now, “Apex” is in launch mode and is\r\n\r\nridiculously priced!\r\n\r\n\r\nBut, the price will increase once the launch phase is\r\n\r\nover, and you’ll have to pay monthly in order\r\n\r\nto use it.\r\n\r\n\r\nDon’t let that happen! \r\n\r\nGet it now, while you can!\r\n\r\n\r\n=> Click Here To Grab “Apex” Now: bit.ly/43RjGKY\r\n\r\n\r\nI’ll see you inside,\r\n\r\n\r\nAllen',''),(1978,1,508,'6','Olivia Brownfield',''),(1979,1,508,'2','0398 9722512',''),(1980,1,508,'3','info.golden.travel.deals@gmail.com',''),(1981,1,508,'4','Hello,\r\n\r\nUnderstanding the need for efficient and memorable travels, be it for business or leisure, is key for every thriving company. At GoldenTravelDeals, we specialize in providing tailor-made travel solutions for organizations just like yours.\r\n\r\nVisit our website at https://goldentraveldeals.com/ to explore a multitude of exquisite destinations and outstanding travel deals. Whether you\'re planning an international conference, a memorable team-building getaway, or a well-deserved break for your employees, our team of experts is here to guide you every step of the way.\r\n\r\nOur aim is to provide you with a hassle-free travel experience, from selecting the destination to booking flights, hotels, and activities, and providing ongoing support during your trip. We understand that every organization has unique requirements, and we strive to deliver personalized solutions that perfectly match your needs.\r\n\r\nDon’t let complicated logistical details distract you from what\'s truly important - running your business and taking care of your team. Let us handle your travel needs while you focus on achieving your business goals.\r\n\r\nIt’s time to rethink the way you travel. Click here to start planning your next journey with GoldenTravelDeals now: https://goldentraveldeals.com/\r\n\r\nWe look forward to helping you turn your vision of business and leisure travel into a reality.\r\n\r\nBest regards,\r\n\r\n\r\nGoldenTravelDeals Team',''),(1982,1,509,'6','Hwa Heagney',''),(1983,1,509,'2','0704-9564541',''),(1984,1,509,'3','hwa.heagney45@gmail.com',''),(1985,1,509,'4','Imagine waking up to 1000 new followers overnight starting from zero.\r\n\r\nSound like a dream?...\r\n\r\nNot anymore.\r\n\r\nWith Tik Tok Revolution, you\'ll discover the specific strategies to gain \r\na massive following on TikTok in no time that will be monetized, \r\nall while dedicating less than 15 minutes per day.\r\n\r\nEver thought you could get paid to make 10-second pointing videos on TikTok? \r\nNOW YOU CAN with the Tik Tok Revolution System.\r\n\r\nWe give you the specific process.\r\n\r\nIt isn’t “just” about making a 10 second video...\r\n\r\nThe missing link is how exactly do you turn that into money?\r\n\r\nThe Tik Tok Revolution system bridges that gap and shows you exactly how to make this work.\r\nhttps://shortz.pro/tiktok',''),(1986,1,510,'6','Sam Klein',''),(1987,1,510,'2','661-383-9634',''),(1988,1,510,'3','sam@kleinmedia.com',''),(1989,1,510,'4','Hey,\r\n\r\nWith this Ai Tool you only need to press 1 button and it will generate over 100 customized content pieces for your business.\r\n\r\nClick the link below and try it for free.\r\n\r\nhttps://free-trial.adcreative.ai/june-23\r\n\r\nBest,\r\n\r\nSam',''),(1990,1,511,'6','Katja Hussain',''),(1991,1,511,'2','01.25.92.10.67',''),(1992,1,511,'3','katja.hussain@msn.com',''),(1993,1,511,'4','Automate your business for free.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(1994,1,512,'6','Eric Jones',''),(1995,1,512,'2','555-555-1212',''),(1996,1,512,'3','ericjonesmyemail@gmail.com',''),(1997,1,512,'4','Hello juiceelectrical.co.nz Webmaster! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(1998,1,513,'6','Chris Fennescey',''),(1999,1,513,'3','jmk84463@gmail.com',''),(2000,1,513,'4','Do you struggle with managing all the different aspects of your online business? Creating and launching sales funnels, setting up affiliate programs, and sending email campaigns can be time-consuming and overwhelming. But what if you could have all these tools in one place?\r\n\r\nThat\'s where systeme.io comes in. With systeme.io, you can easily create and launch your sales funnels, set up affiliate programs, and send email campaigns with just a few clicks. No more switching between different platforms or struggling with complicated software!\r\n\r\nSysteme.io is designed to simplify your online business, so you can focus on what really matters - growing your business and making more sales. \r\n\r\nDon\'t let technology hold you back - click the link below to check out systeme.io today and start taking your business to the next level!\r\n\r\nhttps://jmk84463.systeme.io/05c6a910\r\n\r\nThanks,\r\n\r\nChris\r\n\r\n\r\n\r\n\r\n335 South 600 East Smithfield UT 84335\r\n\r\nOpt-out statement: If you no longer wish to receive emails from us, simply click the link below to unsubscribe.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2001,1,514,'6','Dani Wellish',''),(2002,1,514,'2','01.57.18.75.82',''),(2003,1,514,'3','dani.wellish@gmail.com',''),(2004,1,514,'4','Don\'t leave your advertising dollars to chance anymore, our results are guaranteed! Take a look at our site here: http://getmoreclients.tg4.xyz',''),(2005,1,515,'6','Omar Goodchap',''),(2006,1,515,'2','026 578 45 27',''),(2007,1,515,'3','tayla.goodchap64@hotmail.com',''),(2008,1,515,'4','Hi ,\r\n\r\nJust Kidding , I have better than coffee for you !\r\n\r\nMy name is Omar Ghossain. I have decided to sell Legal Adviser dot net .\r\n\r\nYou could redirect the name to your main biz website, build a funnel to get to leads/clients, or any other marketing purposes.\r\n\r\nGoDaddy.com appraises this domain at $ 1506 .\r\n\r\nPriced at only $450 for a limited time at Goddady , If interested, please go to https://dan.com/buy-domain/legaladviser.net\r\nFirst person to select Buy Now gets it!\r\n\r\nOmar\r\nDomain Name Expert\r\nThe trend company',''),(2009,1,516,'6','Marissa Board',''),(2010,1,516,'2','0474 73 20 07',''),(2011,1,516,'3','marissa.board@gmail.com',''),(2012,1,516,'4','Automate your business for free.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(2013,1,517,'6','Steve Collins',''),(2014,1,517,'2','712-733-3656',''),(2015,1,517,'3','stevecollins@gmail.com',''),(2016,1,517,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://www.theaisocial.com/writeappreviews\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from AISocial',''),(2017,1,518,'6','Matt Mares',''),(2018,1,518,'2','03.09.51.44.91',''),(2019,1,518,'3','lanny.mares@msn.com',''),(2020,1,518,'4','Hi there,\r\nBoost sales, maximize revenue, and stay ahead of the competition effortlessly. Say goodbye to manual searches and hello to a stream of hot leads!\r\n\r\nVisit www.reallz.com now and unlock your real estate triumph.\r\n\r\nKind regards,\r\nMatt\r\n\r\nwww.reallz.com',''),(2021,1,519,'6','Eric Jones',''),(2022,1,519,'2','555-555-1212',''),(2023,1,519,'3','ericjonesmyemail@gmail.com',''),(2024,1,519,'4','Hi juiceelectrical.co.nz Webmaster! this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2025,1,520,'6','Garnet',''),(2026,1,520,'2','(53) 6155-2741',''),(2027,1,520,'3','garnet@greaves.medicopostura.com',''),(2028,1,520,'4','Hey \r\n\r\nLooking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help!\r\n\r\nExperience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep.\r\n\r\nMade from lightweight, breathable fabric, it ensures comfort all day long.\r\n\r\nGrab it today at a fantastic 60% OFF: https://medicopostura.com\r\n\r\nPlus, enjoy FREE shipping for today only!\r\n\r\nDon\'t miss out on this amazing deal. Get yours now and start transforming your posture!\r\n\r\nMany Thanks, \r\n\r\nGarnet',''),(2029,1,521,'6','James Roser',''),(2030,1,521,'2','077 8397 6386',''),(2031,1,521,'3','orville.mccoy@gmail.com',''),(2032,1,521,'4','Are you tired of paying for Zapier every month?\r\n\r\nThis new zapier alternative is changing the way businesses automate tasks. \r\n\r\nThe best part is that you don\'t pay monthly for it. \r\n\r\nFree account forever if you only have a few tasks. \r\n\r\nOne time fee if you decide you want more! \r\n\r\nLifetime Access! No, I\'m not kidding.\r\n\r\nCheck it out here: https://cutt.ly/owqInoew\r\n\r\nJames Roser\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(2033,1,522,'6','Eric Jones',''),(2034,1,522,'2','555-555-1212',''),(2035,1,522,'3','ericjonesmyemail@gmail.com',''),(2036,1,522,'4','Dear juiceelectrical.co.nz Admin. my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2037,1,523,'6','Brittny Lindrum',''),(2038,1,523,'2','0922-7607734',''),(2039,1,523,'3','lindrum.brittny@yahoo.com',''),(2040,1,523,'4','Automate your business for free.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(2041,1,524,'6','EMI Sissons',''),(2042,1,524,'2','960 82 252',''),(2043,1,524,'3','sissons.elvera@gmail.com',''),(2044,1,524,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(2045,1,525,'6','LuisJoseph P.',''),(2046,1,525,'2','01.61.26.31.64',''),(2047,1,525,'3','joseph@p3-costanalysts.com',''),(2048,1,525,'4','Do you have an on going promotion for June?',''),(2049,1,526,'6','Finn Lund',''),(2050,1,526,'2','078 0650 4352',''),(2051,1,526,'3','finn.lund@gmail.com',''),(2052,1,526,'4','Everyone needs videos for business.\r\nBut creating videos was a very tough, energy-draining, time-consuming, and costly process.\r\n\r\nNot Anymore,\r\n\r\nPresenting GPT-4 Video Maker\r\n\r\n[+] Creates Pro Quality Videos in seconds for any business in any language\r\n[+] First Video Creator powered by GPT-4 AI Technology\r\n\r\n==> Watch a live demo of GPT-4 Video Maker\r\n==> https://bit.ly/GPTVideoMakerFreeAccess\r\n\r\nHow does it work?\r\n\r\nJust enter a keyword, and GPT-4 Video Maker will\r\n\r\n1. Give ideas and suggest topics\r\n2. Write scripts\r\n3. Create scenes and designs (adds stock images, videos, animation and music automatically)\r\n4. Does the epic voice-over\r\n5. Produce quality videos in any style in any language\r\n\r\nBe it Website Videos, Ads, Promotional, Entertaining, Infomercial, Advertising, Learning Video...\r\nBig marketers are calling GPTVideos as BESTEST and FASTEST A.I Video Creator in the new age of A.I era\r\n\r\nImagine creating any type of video in seconds\r\n\r\n...WITHOUT skills,\r\n...WITHOUT recording a single video\r\n...WITHOUT any budget\r\n...By entering just one Keyword and literally 3-clicks\r\n\r\nBEST Part Is: It comes with a commercial license, which means\r\nYou can create videos in Flash (literally a few seconds)\r\nand sell it to unlimited clients - earn good profits for your services\r\n\r\nNot to mention, GPTVideos has a 30-days money-back guarantee if you don\'t like it.\r\n\r\nOver 5000 business owners have bought GPTVideos lifetime deals in the last few days...\r\n\r\n==> Watch a live demo of GPT-4 Video Maker\r\n==> https://bit.ly/GPTVideoMakerFreeAccess',''),(2053,1,528,'6','Kevin Baylis',''),(2054,1,528,'2','781-872-8339',''),(2055,1,528,'3','jmk84463@gmail.com',''),(2056,1,528,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2057,1,529,'6','Omar Lozano',''),(2058,1,529,'2','06-53206799',''),(2059,1,529,'3','lozano.ronny@gmail.com',''),(2060,1,529,'4','Hi ,\r\n\r\nJust Kidding , I have better than coffee for you !\r\n\r\nMy name is Omar Ghossain. I have decided to sell Legal Adviser dot net .\r\n\r\nYou could redirect the name to your main biz website, build a funnel to get to leads/clients, or any other marketing purposes.\r\n\r\nGoDaddy.com appraises this domain at $ 1506 .\r\n\r\nPriced at only $450 for a limited time at Goddady , If interested, please go to https://dan.com/buy-domain/legaladviser.net\r\nFirst person to select Buy Now gets it!\r\n\r\nOmar\r\nDomain Name Expert\r\nThe trend company',''),(2061,1,530,'6','Denese Kifer',''),(2062,1,530,'2','0342 8382622',''),(2063,1,530,'3','denese.kifer@gmail.com',''),(2064,1,530,'4','Automate your business for free.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(2065,1,531,'6','Amelie McGuire',''),(2066,1,531,'2','447 8079',''),(2067,1,531,'3','amelie.mcguire40@gmail.com',''),(2068,1,531,'4','Get access to high ticket affiliate programs and up to 50% commissions.\r\n\r\nJoin the Top Affiliate Programs Telegram channel and get exclusive access to the best high ticket affiliate programs with prices ranging from $200 to $4,000 and up to 50% commission payouts.\r\n\r\nJoin Top Affiliate Programs Now!\r\nhttps://t.me/s/TopAffiliatePrograms\r\n\r\nMake more money with the best high ticket affiliate programs.\r\nWith Top Affiliate Programs, you\'ll have access to exclusive, invitation-only affiliate programs that offer up to 50% in commissions and products or services ranging from $200-$4,000. Join our Telegram channel to discover the top affiliate programs and start making more money today!\r\n\r\nUnlock the door to high-paying commissions.\r\nDiscover little-known, invitation-only affiliate programs with high ticket prices and recurring affinity payments. With Top Affiliate Programs Telegram channel, unlock the door to high-paying commissions and see your earnings soar.\r\n\r\nMaximize your earnings with minimal competition.\r\nTake advantage of the low competition to make more money promoting high ticket affiliate programs. Get access to products and services with prices of up to $4,000. With a commission rate of over 50%, you can maximize your earnings with minimal competition.\r\n\r\n\r\nGet rewarded for referrals without the extra effort.\r\nWith Top Affiliate Programs multilevel programs, you can get commissions from your referrals without putting in any extra effort. Generate high ticket commissions with products and services ranging from $200 to $4,000. Don\'t waste time - join now and start making money!\r\n\r\n\r\nStart earning big commissions with the best high ticket affiliate programs.\r\nJoin Top Affiliate Programs Now!\r\nhttps://t.me/s/TopAffiliatePrograms',''),(2069,1,532,'6','Lachlan Trombley',''),(2070,1,532,'2','60 209 60 97',''),(2071,1,532,'3','lachlan.trombley@hotmail.com',''),(2072,1,532,'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',''),(2073,1,533,'6','Jeffery',''),(2074,1,533,'3','jeffery.linderman@hotmail.com',''),(2075,1,533,'4','*** Get a whopping 30% discount on our complete range of international SEO and copywriting services in all European languages! ***\r\n\r\nWe are pleased to offer you a comprehensive range of international SEO and copywriting services in all European languages, including:\r\n\r\n1. In-depth analysis of your business and competitors to provide the most effective marketing strategy.\r\n2. Optimization of your website for search queries that match your niche and audience.\r\n3. Creation of unique content for your website and blog in any European language, covering the most popular topics in your industry and the most effective keywords.\r\n4. High-quality translations of your texts to any European language, taking into account cultural and local nuances.\r\n5. Monitoring and analysis of your website and social media effectiveness to ensure maximum impact for your business.\r\n\r\nWith our competent team of professionals, you will be able to expand your business by increasing sales anywhere in the world.\r\n\r\nDon\'t miss the opportunity to take your international business to the next level. Contact us and we\'ll help you reach all your goals!\r\n\r\nAnd remember, until June 30th, we\'re offering a unique opportunity to use our services at a 30% discount with promo code JUNE23 from the prices listed on our website.\r\n\r\nDon\'t miss the opportunity to take your international business to the next level. Contact us and we\'ll help you reach all your goals!\r\n\r\n\r\nlearn more; http://urlki.com/seocopy',''),(2076,1,534,'6','Kandis Gilman',''),(2077,1,534,'2','(08) 9045 9746',''),(2078,1,534,'3','gilman.kandis@msn.com',''),(2079,1,534,'4','Earn 500% to 2000% on every coin selection\r\n\r\nWe analyze the crypto market to find the best coin for our subscribers to earn money in a short time.\r\n\r\nAccording to a study by the University of Tulsa, the overall success rate for target cycle pumps is around 50%. However, the success rate can be much higher for pumps involving obscure coins with low market capitalization. For example, the study found that the pumps on Telegram increased the price by more than 18% in just five minutes.\r\n\r\nJoin our Crypto Profit Group Telegram Channel, you won\'t regret it.\r\n\r\nhttps://t.me/s/cryptospumpanddumpprofit',''),(2080,1,535,'6','Mike Boolman',''),(2081,1,535,'2','85964679573',''),(2082,1,535,'3','no-replyinquiff@gmail.com',''),(2083,1,535,'4','Hi \r\n \r\nThis is Mike Boolman\r\n \r\nLet me show you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Boolman\r\n \r\nmike@strictlydigital.net',''),(2084,1,535,'5','Google',''),(2085,1,536,'6','EMI Bickersteth',''),(2086,1,536,'2','(15) 2985-5424',''),(2087,1,536,'3','stacy.bickersteth@gmail.com',''),(2088,1,536,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(2089,1,537,'6','Izetta Fish',''),(2090,1,537,'2','06-17695937',''),(2091,1,537,'3','fish.izetta@gmail.com',''),(2092,1,537,'4','Hi, this months Word Press 365 day Trial plugin is Elementor Pro Page Builder 3.13.2.\r\nFor only $1 Elementor Pro Page Builder 3.13.2 will be fully functional for 365 days.\r\n\r\nOnly $1\r\n\r\nNo passwords.\r\nNo cons or scams.\r\n\r\nI want to sell you many more of my 365Trials and its not worth cheating a potential long term client for a dollar.\r\n\r\nVirus tool online : 97aed4335074a26c835882139a7764a8a3b029850b915c24967d8098b2e89985\r\n\r\nFollow this link to pay https://gourl.io/yzuzg\r\nOnce paid the downlaod will begin.\r\n\r\nAs usual offer expires in 7 days 18th June 2023 - then back to the usual $2.\r\n\r\nOffer expires on the 18th June 23.\r\nMake sure to install Elementor free first\r\nUpload - activate as normal.\r\nEnjoy 365 days of the plugin.\r\n\r\nMany Thanks\r\n\r\nLots more coming.\r\n\r\nLook out for WP365Trials in your email.\r\n\r\nI will be setting up an telegram group so yo can make requests and hopefully I can fill them :)',''),(2093,1,538,'6','Steve Collins',''),(2094,1,538,'2','06-72757720',''),(2095,1,538,'3','stevecollins@gmail.com',''),(2096,1,538,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://www.theaisocial.com/writeappreviews\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from AISocial',''),(2097,1,539,'6','PetarSoaps',''),(2098,1,539,'2','87174448755',''),(2099,1,539,'3','spbetcas975@gmail.com',''),(2100,1,539,'4','Best onlіnе саsіno \r\nBіg bоnus аnd Frееsріns \r\nSpоrt bеttіng аnd pоkеr \r\n \r\ngo now https://tinyurl.com/4b3wztmd',''),(2101,1,539,'5','Google',''),(2102,1,540,'6','Alex Peterson',''),(2103,1,540,'3','alex.peterson@gmail.com',''),(2104,1,540,'4','$795.56 Per Day Without Selling Anything?\r\n\r\n\r\nHey, \r\n\r\n\r\nYou see the vast majority of marketers\r\n\r\nare yet to make a single dime online…\r\n\r\n\r\nAnd the reason for this is simple:\r\n\r\n\r\nThey try to sell stuff to everyone\r\n\r\nand their grandma!\r\n\r\n\r\nI know, this goes against what you’ve \r\n\r\nbeen told by most gurus.\r\n\r\n\r\nBut let me tell you, no matter what others say…\r\n\r\n\r\nIf you try to sell stuff on the Internet to\r\n\r\ntotal strangers, you’ll end up struggling.\r\n\r\n\r\nBut what if you could pocket $795.56 per\r\n\r\nday with FREE traffic just like we do…\r\n\r\n\r\n…Without selling anything?\r\n\r\n\r\nYup, all thanks to a brand-new, powerful\r\n\r\nAI-powered, cloud app\r\n\r\n\r\n\r\n=> Click Here To Discover “Apex”: bit.ly/43RjGKY \r\n\r\n\r\n\r\nThis one-of-a-kind, revolutionary app \r\n\r\nautomatically creates “money sites,” \r\n\r\npre-fills them with high-quality, human-like \r\n\r\ncontent & then sends thousands of targeted\r\n\r\nFREE clicks.\r\n\r\n\r\nIn less than 23 seconds!\r\n\r\n\r\nIf you’re a total beginner looking to make\r\n\r\nyour first buck online, there’s no doubt that\r\n\r\nyou’ll find this unique software life-changing.\r\n\r\n\r\n\r\n=> Click Here To Get Started Now: bit.ly/43RjGKY \r\n\r\n\r\n\r\n\r\nDon\'t you think it\'s time to finally capitalize on the \"AI Craze\"?\r\n\r\n\r\nWell, with \"Apex\" now it\'s possible…\r\n\r\n\r\nYou can start using this out-of-the-box,\r\n\r\ntransformative app in the next 4 minutes\r\n\r\n\r\nAnd begin churning out profitable \"money sites\"\r\n\r\nwith just a few clicks of your mouse!\r\n\r\n\r\n\r\n=> Click Here To Grab “Apex” Now: bit.ly/43RjGKY \r\n\r\n\r\n\r\nRight now, “Apex” is in launch mode and is\r\n\r\nridiculously priced!\r\n\r\n\r\nBut, the price will increase once the launch phase is\r\n\r\nover, and you’ll have to pay monthly in order\r\n\r\nto use it.\r\n\r\n\r\nDon’t let that happen! \r\n\r\nGet it now, while you can!\r\n\r\n\r\n=> Click Here To Grab “Apex” Now: bit.ly/43RjGKY\r\n\r\n\r\nI’ll see you inside,\r\n\r\n\r\nAlex',''),(2105,1,541,'6','Terrie Grogan',''),(2106,1,541,'2','06831 99 64 21',''),(2107,1,541,'3','terrie.grogan@outlook.com',''),(2108,1,541,'4','https://bit.ly/10web_AIBuiltWebsites\r\n\r\nAre you tired of spending countless hours building and optimizing your WordPress website? Look no further than 10web.io - the AI-powered WordPress platform that takes care of all your website needs.\r\n\r\nWith our automated website builder, you can create a stunning website in just minutes. Our platform uses AI technology to generate personalized website templates based on your preferences, ensuring a unique and professional design every time.\r\n\r\nBut that\'s not all - 10web.io also offers powerful hosting features that ensure your website loads quickly and runs smoothly. Our page speed booster optimizes your website for lightning-fast load times, keeping your visitors engaged and improving your search engine rankings.\r\n\r\nDon\'t waste another moment struggling with WordPress - let 10web.io handle everything for you. Sign up now and start building your dream website today!\r\n\r\nhttps://bit.ly/10web_AIBuiltWebsites',''),(2109,1,543,'6','Tracey Willard',''),(2110,1,543,'2','04.03.85.30.17',''),(2111,1,543,'3','tracey.willard@gmail.com',''),(2112,1,543,'4','Automate your business for free.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(2113,1,544,'6','Sam Jackson',''),(2114,1,544,'2','08705 29 42 01',''),(2115,1,544,'3','sam.jackson@gmail.com',''),(2116,1,544,'4','Audiobook is now the BIG goldmine, and people are making huge profits with it on a daily basis…\r\n\r\n\r\nSadly, creating and selling them can be tough and super-expensive. \r\n\r\n\r\nBut I have got good news for you…\r\n\r\n\r\nMeet Vox AI\r\n\r\n\r\nThe World’s First ChatGPT4-Powered AI App That Turns Any \"Text, URL, Website, Article, Keyword, Blog, Document or PDF\" into High-Quality Audiobooks or Podcast In 660 Different Voices & 80 Languages…\r\n\r\n\r\n\r\n>> Click Here To See The Live Demo: bit.ly/45OWOx8 \r\n\r\n\r\n\r\nWith Vox AI, you can generate content on any topic using “Siri-Like” voice command & turn it to Audiobooks, Podcasts, or Voiceovers for VSL, TV Commercial, Webinars, Sales Videos, etc\r\n\r\n\r\n...Publish To The Built-In Marketplace with 2.3M active users, Sell & Receive Instant Payments Via Multiple Methods, including Paypal, Stripe, Cards, and Bank Accounts…\r\n\r\n\r\n\r\n\r\n>> Click Here to Get Instant Access to Vox AI and Sell On Automation: bit.ly/45OWOx8 \r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\nEven if you are a newbie with zero knowledge… VoxAI is your best shot.\r\n\r\n\r\nYou can easily Activate VoxAI in 3 simple steps & start your audiobook empire:\r\n\r\n\r\nStep 1: Login - Login to VoxAI Cloud-Bases App\r\n\r\n\r\nStep 2: Generate- Enter a Keyword, article, PDF, or even a URL… and VoxAI will turn them into a Full Audiobook or Podcast\r\n\r\n\r\nStep 3: Publish- publish your audiobooks on our built-in marketplace with 2.3 million active users.\r\n\r\n\r\nStep 4: Start Profiting as soon as you are done\r\n\r\n\r\nIt is as simple as that.\r\n\r\n\r\n\r\n>> Get Lifetime Access Here: bit.ly/45OWOx8 \r\n\r\n\r\n\r\nWith Vox AI, you can…\r\n\r\n\r\nCreate Your First Audiobook Within 2 Minutes\r\n\r\nTurn Any Article, Website, Url, PDF or Blog Into Audiobook, Podcast, VSL, Audio/Music Track…\r\n\r\nCreate A Podcast With Human Voice Without Recording\r\n\r\nChoose From 660 Real Human Voices \r\n\r\nCreate Voices In 80+ Different Languages\r\n\r\nComes With 50+ Built-In AI Features That Will Make Your Life 100x Easier \r\n\r\nWe Don’t Even Write Scripts, We Let AI Do It For Us.\r\n\r\nPublish Your AudioBook To Our Marketplace With 2.3 Million Active User\r\n\r\nPublish your AudioBook Or Podcast To (Spotify, Audible, Scribe)\r\n\r\nNo Complicated Setup - Get Up And Running In 2 Minutes\r\n\r\n\r\n…All these, and many more without Paying Any Monthly Fee\r\n\r\n>> Click Here To Get Earlybird Access (Ends In 2 Hours From Now): bit.ly/45OWOx8 \r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\n\r\n\r\n\r\n>> Click here to get Lifetime access to VoxAI and start profiting from day one: bit.ly/45OWOx8 \r\n\r\n\r\nFair Warning - Go In Now To Avoid Paying Monthly Fee Later\r\n\r\n\r\nSincerely, \r\n\r\n\r\nSam',''),(2117,1,545,'6','James Roser',''),(2118,1,545,'2','51 972 69 86',''),(2119,1,545,'3','refugio.bazile@gmail.com',''),(2120,1,545,'4','Do you use less than 500 Zapier tasks each month?\r\n\r\nThen stop paying for Zapier every month.\r\n\r\nWith our software, you get a free account for life if you use less than 500 tasks each month.\r\n\r\nOne time fee if you decide you want more! \r\n\r\nLifetime Access! No, I\'m not kidding.\r\n\r\nCheck it out here: https://cutt.ly/owqInoew\r\n\r\nJames Roser\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(2121,1,546,'6','Chris Kohler',''),(2122,1,546,'2','06-93510199',''),(2123,1,546,'3','jmk84463@gmail.com',''),(2124,1,546,'4','Do you find it challenging to keep track of all your customer interactions, appointments, and marketing campaigns? Managing all these tasks manually can be tedious and time-consuming. \r\nThis is where Go High Level comes in - a powerful CRM and Marketing Automation platform that helps streamline your business operations, saving you time and resources.\r\nGo High Level lets you create customizable CRMs and automate your email opt-ins, so you can spend less time managing tedious tasks and more time focusing on growing your business. \r\nWith easy-to-use templates and a user-friendly interface, Go High Level makes marketing and managing customer relationships a breeze.\r\nStop struggling to keep track of all your customer data and marketing efforts. Upgrade your business today and try Go High Level risk-free. \r\n\r\nClick the link below to learn more and see how Go High Level can help your business succeed.\r\n\r\nhttps://jmk84463.systeme.io/98399461-bd954156\r\n\r\nThanks\r\n\r\n-Chris\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2125,1,547,'6','Chantal Arriola',''),(2126,1,547,'2','070 1885 2406',''),(2127,1,547,'3','chantal.arriola@outlook.com',''),(2128,1,547,'4','https://bit.ly/ChatGPT_Power_Course\r\n\r\nAttention all ChatGPT users!\r\n\r\nhttps://bit.ly/ChatGPT_Power_Course\r\n\r\nAre you tired of only scratching the surface with your ChatGPT knowledge? Do you want to unlock the full potential of this powerful tool and become an expert? Then the ChatGPT Power Course is exactly what you need!\r\n\r\nThis all-encompassing course will take you from beginner to expert, providing you with the skills and knowledge necessary to master ChatGPT. You\'ll learn everything from beginner techniques to advanced strategies that will help you create content, boost your productivity, and grow your business.\r\n\r\nWith the ChatGPT Power Course, you\'ll have access to crucial topics such as Learning, Create content, Earn with ChatGPT, Productivity, Marketing & Growth, and AI Tools. Plus, you\'ll get access to GPT-4 for free, giving you even more power to create amazing content.\r\n\r\nWith this course, you\'ll be able to write blog posts in minutes, brainstorm and find new ideas, delegate your copywriting to ChatGPT, and even build a 3D game with ChatGPT. You\'ll also learn how to use ChatGPT to automate office tasks, save hours and money, and boost your productivity.\r\n\r\nBut that\'s not all! You\'ll also discover how to use ChatGPT to make money online, monetize ChatGPT, and learn about the 3 business models that use ChatGPT. Plus, you\'ll learn how to build an entire marketing campaign, write efficient email sequences, and use ChatGPT for Google Ads and SEO.\r\n\r\nAnd let\'s not forget about the AI Tools section, where you\'ll learn about workplace AI tools, design AI tools, writing AI tools, and speech AI tools.\r\n\r\nBy the end of the ChatGPT Power Course, you\'ll be adept at utilizing ChatGPT to its fullest extent for your projects, content creation, and business growth. Don\'t miss out on the opportunity to harness the power of ChatGPT. Start your journey toward expertise today!\r\n\r\nhttps://bit.ly/ChatGPT_Power_Course',''),(2129,1,548,'6','Michael Wharton',''),(2130,1,548,'2','911 33 128',''),(2131,1,548,'3','wharton.michael@outlook.com',''),(2132,1,548,'4','https://bit.ly/BrainBoxVip\r\n\r\nAre you ready to step into the future of customer service and communication? Introducing BrainBox, the first hard-coded AI app that allows you to launch your very own \"ChatGPT-like\" chatbot and charge people for using it.\r\n\r\nWith BrainBox, you\'ll have access to over 50 AI features that will stun both you and your customers. This revolutionary app uses the latest in artificial intelligence technology to provide your customers with a seamless and personalized experience. From natural language processing to sentiment analysis, BrainBox has everything you need to create a chatbot that is not only responsive but intelligent and engaging.\r\n\r\nhttps://bit.ly/BrainBoxVip\r\n\r\nImagine being able to offer your customers a 24/7 support system that never takes a break. With BrainBox, you can do just that. Your customers will be able to get instant answers to their questions, and you\'ll be able to focus on growing your business.\r\n\r\nBut that\'s not all. BrainBox is also incredibly easy to use. You don\'t need any coding skills or technical knowledge to get started. With just a few clicks, you can create your chatbot and start charging your customers.\r\n\r\nAnd the best part? BrainBox is completely customizable. You can create a chatbot that matches your brand\'s tone and personality. You can also add your own custom responses and triggers, ensuring that your chatbot is unique to your business.\r\n\r\nDon\'t miss out on this opportunity to take your business to the next level. Try BrainBox today and see for yourself how it can transform the way you communicate with your customers.\r\n\r\nhttps://bit.ly/BrainBoxVip',''),(2133,1,549,'6','Omar Lockington',''),(2134,1,549,'2','01.51.58.99.14',''),(2135,1,549,'3','clint.lockington26@gmail.com',''),(2136,1,549,'4','Hi ,\r\n\r\nJust Kidding , I have better than coffee for you !\r\n\r\nMy name is Omar Ghossain. I have decided to sell Legal Adviser dot net .\r\n\r\nYou could redirect the name to your main biz website, build a funnel to get to leads/clients, or any other marketing purposes.\r\n\r\nGoDaddy.com appraises this domain at $ 1506 .\r\n\r\nPriced at only $450 for a limited time at Goddady , If interested, please go to https://dan.com/buy-domain/legaladviser.net\r\nFirst person to select Buy Now gets it!\r\n\r\nOmar\r\nDomain Name Expert\r\nThe trend company',''),(2137,1,550,'6','Tessa Hager',''),(2138,1,550,'2','06-44634946',''),(2139,1,550,'3','tessa.hager@gmail.com',''),(2140,1,550,'4','Automate your business for free.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(2141,1,551,'6','Kevin Keighley',''),(2142,1,551,'2','01.48.57.97.15',''),(2143,1,551,'3','jmk84463@gmail.com',''),(2144,1,551,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2145,1,552,'6','EMI Krebs',''),(2146,1,552,'2','0351 97 02 29',''),(2147,1,552,'3','krebs.camille@msn.com',''),(2148,1,552,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(2149,1,553,'6','Jenna Bedford',''),(2150,1,553,'2','(33) 2518-4321',''),(2151,1,553,'3','bedford.jenna@gmail.com',''),(2152,1,553,'4','https://bit.ly/TheAIHub\r\n\r\nAre you tired of spending hours upon hours creating content for your business? Look no further than AI Hub, the 20-in-one app that will revolutionize the way you create content.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nWith the power of ChatGPT (OpenAI) technology, AI Hub offers a wide range of content creation tools that are sure to meet all of your needs. From generating AI content for your website to creating stunning videos and images with just a few clicks, AI Hub has you covered.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nSay goodbye to writer\'s block with the AI Content Generator, which uses advanced algorithms to create unique and engaging content for your website or social media channels. Or use the AI Text to Video and Image Generators to turn your written content into visually stunning videos and images that will captivate your audience.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nThe ChatGPT AI Chatbot is the perfect solution for businesses looking to provide exceptional customer service 24/7. This advanced chatbot can handle customer inquiries and even place orders, leaving your staff free to focus on other important tasks.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nAnd that\'s just the beginning! AI Hub also includes tools for grammar correction, image variation generation, graphic editing, product name generation, interview generation, text summarization, topic outlining, sentiment analysis, proof-reading, analogy making, keyword extraction, ad copy generation, and even spreadsheet generation.\r\n\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>\r\n\r\nDon\'t let content creation be a time-consuming and frustrating task. Let AI Hub do the heavy lifting for you, leaving you with more time to focus on growing your business. Try AI Hub today and see the difference it can make!\r\n<a href=\"https://bit.ly/TheAIHub\">https://bit.ly/TheAIHub</a>',''),(2153,1,554,'6','Omar Bivins',''),(2154,1,554,'2','06-72612895',''),(2155,1,554,'3','edna.bivins@outlook.com',''),(2156,1,554,'4','Hi ,\r\n\r\nJust Kidding , I have better than coffee for you !\r\n\r\nMy name is Omar Ghossain. I have decided to sell Legal Adviser dot net .\r\n\r\nYou could redirect the name to your main biz website, build a funnel to get to leads/clients, or any other marketing purposes.\r\n\r\nGoDaddy.com appraises this domain at $ 1506 .\r\n\r\nPriced at only $450 for a limited time at Goddady , If interested, please go to https://dan.com/buy-domain/legaladviser.net\r\nFirst person to select Buy Now gets it!\r\n\r\nOmar\r\nDomain Name Expert\r\nThe trend company',''),(2157,1,555,'6','EMI Hillman',''),(2158,1,555,'2','06-79979608',''),(2159,1,555,'3','hillman.beatriz@gmail.com',''),(2160,1,555,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(2161,1,556,'6','Steve Axelson',''),(2162,1,556,'2','301-564-9783',''),(2163,1,556,'3','steve.axelson@gmail.com',''),(2164,1,556,'4','Hey,\r\n\r\n\r\nWhat if you could tap into the $3 TRILLION freelancing industry and claim your slice of the pie? TaskAI is the key that unlocks your full earning potential and propels you towards financial abundance.\r\n\r\n\r\nPicture this: You\'re effortlessly providing hundreds of different services to your customers, all thanks to the power of AI. No more struggling to keep up with the demand or spending endless hours on mundane tasks. TaskAI does it all for you, leaving you with more time, more money, and more freedom.\r\n\r\n\r\nBut that\'s not all. TaskAI\'s AI-powered marketplace auto-ranks on Google, ensuring a steady stream of free traffic to your services. Say goodbye to hustling for clients and hello to a flood of high-paying customers.\r\n\r\n\r\nAre you ready to take control of your financial destiny and live life on your own terms?\r\n\r\n\r\nClick here to discover how TaskAI can make it a reality: \r\n\r\n\r\n===> bit.ly/445MeQM \r\n\r\n\r\n\r\nTo your incredible success,\r\n\r\n\r\nSteve',''),(2165,1,557,'6','Rochell Berger',''),(2166,1,557,'2','0331 65 83 52',''),(2167,1,557,'3','berger.rochell@outlook.com',''),(2168,1,557,'4','Automate your business for free.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(2169,1,558,'6','Joe Celine',''),(2170,1,558,'2','(714) 908-9255',''),(2171,1,558,'3','joe@ecomvisibility.com',''),(2172,1,558,'4','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(2173,1,559,'6','Trudy Guy',''),(2174,1,559,'2','0275187126',''),(2175,1,559,'3','Stevetrudy803@gmail.com',''),(2176,1,559,'4','Hey Greg, Helen. Can you give me a quote to get both the heat pump units you installed serviced/cleaned. Thanks so much Trudy',''),(2177,1,559,'5','Always use you!',''),(2178,1,560,'6','James Walden',''),(2179,1,560,'3','fiverrcanhelp@gmail.com',''),(2180,1,560,'4','Hi,\r\n\r\nMy name is James Walden. I\'m an insurance adjuster and technology consultant. I was looking at your \r\nwebsite exposure in the search engines and figured I\'d let you know about Fiverr Services. The consultants on Fiverr \r\nare exceptional with all aspects of online marketing. The associates I have been working with are great since I can \r\nsee that I am working with a 5-star 5.0 rated and pro-verified individual, any time I need a project completed. \r\n\r\nThis is huge in online marketing, especially when you are looking at how competitive the market has become. I\'m going \r\nto leave you a few links below so you can go to the Fiverr and check them out. SEO ranking on Google and really any \r\nonline marketing is tough, thats why I always recommend a professional.\r\n\r\nTake care and good luck with marketing.\r\n\r\nFiverr - Website Design Services - https://tinyurl.com/Fiverr-WebsiteDesignServices\r\n\r\nFiverr - Search Engine Optimization (SEO) Services - https://tinyurl.com/Fiverr-SEOPage\r\n\r\nFiverr - Logo Design Services - https://tinyurl.com/Fiverr-LogoDesignServices\r\n\r\nFiverr - Graphic & Design Page - https://tinyurl.com/Fiverr-GraphicsandDesignPage\r\n\r\nFiverr - Digital Marketing Services - https://tinyurl.com/Fiverr-DigitalMarketingPage\r\n\r\nMy personal email address is below, if you have any questions. \r\n\r\nThanks for your time.\r\n\r\nJames Walden\r\nOwner/Consultant\r\njcwaldenjr@gmail.com\r\nYoutube.com/@SelfHelpOnline',''),(2181,1,561,'6','Ermelinda Kenney',''),(2182,1,561,'2','070 7642 5874',''),(2183,1,561,'3','ermelinda.kenney@gmail.com',''),(2184,1,561,'4','Automate your business for free.\r\n\r\nLink : https://linktr.ee/bizsolutionhub',''),(2185,1,562,'6','John Davis',''),(2186,1,562,'2','06-30627093',''),(2187,1,562,'3','john.davis@gmail.com',''),(2188,1,562,'4','Have you read the recent USA Today Article about the 7-year-old kid who made $22 million from shooting amateur videos about his toy collection?\r\n\r\nHe’s leveraging a secret algorithm to do so. You can now do the same!\r\n\r\n\r\n===> bit.ly/3Nc6Ekk \r\n\r\n\r\nYou see, the main secret to Jake’s success to have a stream of income that doesn’t go dry – rain or shine. You can leverage the power of compound revenues to achieve riches quick – with nearly zero frustration.\r\n\r\n>>Click here for a strategy so easy that even a kid can do it: bit.ly/3Nc6Ekk \r\n\r\n\r\nYours truly,\r\nJohn\r\n\r\nP.S. This Netflix loophole is the very thing making these “Perpetual Players” a lot of moolah at the moment.\r\n\r\nClick here to be part of that inner circle: bit.ly/3Nc6Ekk',''),(2189,1,563,'6','Jacqueline Aston',''),(2190,1,563,'2','0337 3029899',''),(2191,1,563,'3','jacqueline.aston@gmail.com',''),(2192,1,563,'4','This is your one-time opportunity to get the New GPT4 Audiobook and Podcast creator…\r\n\r\nThat turns virtually every text, URL, website, article, blog, keywords or script into highly engaging Audiobooks & Podcast with 660 Unique human voiceovers.\r\n\r\n>>Click here to Publish High-Quality Audiobooks & Podcast without Recording\r\nhttps://shortz.pro/vox\r\n\r\nIt uses the Lastest ChatGPT4 Powered App to create numerous content ideas you can use for your Audiobook & Podcast.\r\n\r\nNever worry about how to make money from your Audiobooks or Podcast because it has an in-built 2.3 million Marketplace\r\n\r\n…with a ready-to-buy audience… this will definitely make you easy cash right from day one.\r\n\r\nYou can choose any language, script, sound or voice you want and customize them to fit your brand voice.\r\n\r\nIt takes less than two minutes for you to get any Audiobook or Podcast ready while you start making money from it.\r\n\r\n>>Click here to Publish High-Quality Audiobooks & Podcast without Recording\r\nhttps://shortz.pro/vox',''),(2193,1,564,'6','David Wilmot',''),(2194,1,564,'2','041 507 12 84',''),(2195,1,564,'3','jmk84463@gmail.com',''),(2196,1,564,'4','Are you struggling to come up with new and engaging content for your website or social media channels? Writer\'s block can be a real problem for busy business owners. \r\n\r\nFortunately, there is a solution. With WordAi, you can create high-quality, unique content in minutes using the power of AI. \r\n\r\nSay goodbye to writer\'s block and hello to fresh, engaging content that your audience will love. \r\n\r\nClick the link to check out WordAi and start creating amazing content today!\r\n\r\nhttps://jmk84463.systeme.io/98399461-6878f83b\r\n\r\nThanks,\r\n\r\nDavid \r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nOpt-Out Statement: To unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2197,1,565,'6','James Walden',''),(2198,1,565,'3','fiverrcanhelp@gmail.com',''),(2199,1,565,'4','Hi,\r\n\r\nMy name is James Walden. I\'m a webaite consultant, content creator, and technology consultant. I was looking at your \r\nindustry\'s exposure in the search engines and figured I\'d let you know about Fiverr Services. The consultants on Fiverr \r\nare exceptional with all aspects of online marketing. The associates I have been working with are great since I can \r\nsee that I am working with a 5-star 5.0 rated and pro-verified individual, any time I need a project completed. \r\n\r\nThis is huge in online marketing, especially when you are looking at how competitive the market has become. I\'m going \r\nto leave you a few links below so you can go to the Fiverr website and check them out. Getting the right branding, logo development, \r\nwebsite development, and really any online marketing is tough, thats why I always recommend a professional.\r\n\r\nTake care and good luck with marketing.\r\n\r\nFiverr - Website Design Services - https://tinyurl.com/Fiverr-WebsiteDesignServices\r\n\r\nFiverr - Logo Design Services - https://tinyurl.com/Fiverr-LogoDesignServices\r\n\r\nFiverr - Graphic & Design Page - https://tinyurl.com/Fiverr-GraphicsandDesignPage\r\n\r\nMy personal email address is below, if you have any questions. \r\n\r\nThanks for your time.\r\n\r\nJames Walden\r\nOwner/Consultant\r\njcwaldenjr@gmail.com\r\nYoutube.com/@SelfHelpOnline',''),(2200,1,566,'6','Alex Sham',''),(2201,1,566,'2','+13322224908',''),(2202,1,566,'3','sales@metaagency.cc',''),(2203,1,566,'4','Hi, my name is Alex.S, I have noticed something wrong with your website and I want to volunteer for free, do you have a second to chat about it? Here\'s my phone number, call or text me when you have a second: +13322224908\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com',''),(2204,1,567,'6','Marty Fleming',''),(2205,1,567,'2','06-77089898',''),(2206,1,567,'3','fleming.marty@yahoo.com',''),(2207,1,567,'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',''),(2208,1,568,'6','Omar Pollard',''),(2209,1,568,'2','05.55.28.55.06',''),(2210,1,568,'3','pollard.manual@msn.com',''),(2211,1,568,'4','Hi ,\r\n\r\nJust Kidding , I have better than coffee for you !\r\n\r\nMy name is Omar Ghossain. I have decided to sell Legal Adviser dot net .\r\n\r\nYou could redirect the name to your main biz website, build a funnel to get to leads/clients, or any other marketing purposes.\r\n\r\nGoDaddy.com appraises this domain at $ 1506 .\r\n\r\nPriced at only $450 for a limited time at Goddady , If interested, please go to https://dan.com/buy-domain/legaladviser.net\r\nFirst person to select Buy Now gets it!\r\n\r\nOmar\r\nDomain Name Expert\r\nThe trend company',''),(2212,1,569,'6','Jessica Jones',''),(2213,1,569,'2','2356895054',''),(2214,1,569,'3','jessicacarnerseo@gmail.com',''),(2215,1,569,'4','Re: Error in Website\r\n\r\nI found few errors which correspond with a drop of website traffic over the last 2-3 months which I thought I would bring to your attention.\r\n\r\nI would be happy to send you errors and the solutions that would help to improve your website traffic & performance.\r\n\r\nThanks\r\nJessica Jones',''),(2216,1,569,'5','other',''),(2217,1,570,'6','EMI Cardin',''),(2218,1,570,'2','01.12.17.48.37',''),(2219,1,570,'3','cardin.jill@googlemail.com',''),(2220,1,570,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(2221,1,571,'6','Mele Nihipali',''),(2222,1,571,'2','586-863-8282',''),(2223,1,571,'3','business@trustne.com',''),(2224,1,571,'4','AI is here to change the world… \r\n\r\nLike it or not, it’s a fact and there is no changing it\r\n\r\nAI can do most of the jobs with 100% accuracy and zero mistakes \r\n\r\nAnd best of all, AI doesn’t get paid or take days off… \r\n\r\nSo the question is, would you like a piece of that pie?\r\n\r\nIf you answered yes… you’re in luck \r\n\r\nCause my good friend just launch BrainBox \r\n\r\nThe world’s first AI-Powered app that let you launch your own Chatbot with 50 stunning AI features… \r\n\r\nBest of all, unlike ChatGPT… \r\n\r\nBrainBox has ZERO limitations… ZERO downtime\r\n\r\nOh, and there are no monthly payments… \r\n\r\nYou will be able to pick up your copy for a small one-time fee… \r\n\r\nFor a limited time, use coupon code \"BrainBox5off\" to receive a massive 89% discount: https://www.trustne.com/brain\r\n\r\nWith BrainBox, you can:\r\n\r\n Write and proofread any content you need - 100% unique\r\n\r\n Generate an entire SEO strategy without paying for an “expert”\r\n \r\n Generate AI designs from 1 keyword\r\n\r\n Generate codes and scripts in any programming language without any technical knowledge on your end\r\n\r\n Generate Spreadsheets formulas in seconds\r\n\r\n Create stunning videos with a click\r\n\r\nDon\'t miss this opportunity to revolutionize your online business with BrainBox\r\n\r\n>> https://www.trustne.com/brain\r\n\r\nTry it now!\r\n\r\nCheers\r\nMele Nihipali\r\n\r\n(The relationship between Trustne and BrainBox is a partnership, we are two separate companies)\r\n\r\nUNSUBSCRIBE: https://www.trustne.com/unsubscribe\r\n\r\nAddress: 176 W Hermiston Ave, Hermiston, OR 97838',''),(2225,1,572,'6','Byron Linney',''),(2226,1,572,'2','662-339-7837',''),(2227,1,572,'3','linney.byron7@gmail.com',''),(2228,1,572,'4','Scale your business to next level with this software.\r\n\r\nLink : https://bit.ly/softwareforbusinessz',''),(2229,1,573,'6','Omar Tozier',''),(2230,1,573,'2','(07) 3131 8806',''),(2231,1,573,'3','tozier.noah@yahoo.com',''),(2232,1,573,'4','Hi ,\r\n\r\nJust Kidding , I have better than coffee for you !\r\n\r\nMy name is Omar Ghossain. I have decided to sell Legal Adviser dot net .\r\n\r\nYou could redirect the name to your main biz website, build a funnel to get to leads/clients, or any other marketing purposes.\r\n\r\nGoDaddy.com appraises this domain at $ 1506 .\r\n\r\nPriced at only $450 for a limited time at Goddady , If interested, please go to https://dan.com/buy-domain/legaladviser.net\r\nFirst person to select Buy Now gets it!\r\n\r\nOmar\r\nDomain Name Expert\r\nThe trend company',''),(2233,1,574,'6','EMI McKeel',''),(2234,1,574,'2','06733 76 26 21',''),(2235,1,574,'3','mckeel.delphia@gmail.com',''),(2236,1,574,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(2237,1,575,'6','Cory',''),(2238,1,575,'2','0273369334',''),(2239,1,575,'3','Cory@phoenixrogue.com',''),(2240,1,575,'4','Hey team, wanting to update two Downlights in my home office (they are currently flickering and are not bright enough… \r\n\r\nIs this something you’d be interested in?',''),(2241,1,575,'5','Referal',''),(2242,1,576,'6','Micheline Stevens',''),(2243,1,576,'2','04.49.99.21.77',''),(2244,1,576,'3','makemybusinessgreatagain@gmail.com',''),(2245,1,576,'4','It is with sad regret we are shutting down.\r\n\r\nWe have made all our leads available for a one time fee on DataList2023.com\r\n\r\nRegards,\r\nMicheline',''),(2246,1,577,'6','Drew Bond',''),(2247,1,577,'3','drew.bond@gmail.com',''),(2248,1,577,'4','Audiobook is now the BIG goldmine, and people are making huge profits with it on a daily basis…\r\n\r\nSadly, creating and selling them can be tough and super-expensive. \r\n\r\nBut I have got good news for you…\r\n\r\nMeet Vox AI\r\n\r\n\r\nThe World’s First ChatGPT4-Powered AI App That Turns Any \"Text, URL, Website, Article, Keyword, Blog, Document or PDF\" into High-Quality Audiobooks or Podcast In 660 Different Voices & 80 Languages…\r\n\r\n>> Click Here To See The Live Demo: https://shorturl.at/gnxR1 \r\n\r\nWith Vox AI, you can generate content on any topic using “Siri-Like” voice command & turn it to Audiobooks, Podcasts, or Voiceovers for VSL, TV Commercial, Webinars, Sales Videos, etc\r\n\r\n...Publish To The Built-In Marketplace with 2.3M active users, Sell & Receive Instant Payments Via Multiple Methods, including Paypal, Stripe, Cards, and Bank Accounts…\r\n\r\n\r\n\r\n>> Click Here to Get Instant Access to Vox AI and Sell On Automation: https://shorturl.at/gnxR1 \r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\nEven if you are a newbie with zero knowledge… VoxAI is your best shot.\r\n\r\nYou can easily Activate VoxAI in 3 simple steps & start your audiobook empire:\r\n\r\nStep 1: Login - Login to VoxAI Cloud-Bases App\r\n\r\nStep 2: Generate- Enter a Keyword, article, PDF, or even a URL… and VoxAI will turn them into a Full Audiobook or Podcast\r\n\r\nStep 3: Publish- publish your audiobooks on our built-in marketplace with 2.3 million active users.\r\n\r\nStep 4: Start Profiting as soon as you are done\r\n\r\nIt is as simple as that.\r\n\r\n>> Get Lifetime Access Here: https://shorturl.at/gnxR1 \r\n\r\n\r\nWith Vox AI, you can…\r\n\r\n\r\nCreate Your First Audiobook Within 2 Minutes\r\nTurn Any Article, Website, Url, PDF or Blog Into Audiobook, Podcast, VSL, Audio/Music Track…\r\nCreate A Podcast With Human Voice Without Recording\r\nChoose From 660 Real Human Voices \r\nCreate Voices In 80+ Different Languages\r\nComes With 50+ Built-In AI Features That Will Make Your Life 100x Easier \r\nWe Don’t Even Write Scripts, We Let AI Do It For Us.\r\nPublish Your AudioBook To Our Marketplace With 2.3 Million Active User\r\nPublish your AudioBook Or Podcast To (Spotify, Audible, Scribe)\r\nNo Complicated Setup - Get Up And Running In 2 Minutes\r\n\r\n…All these, and many more without Paying Any Monthly Fee\r\n\r\n>> Click Here To Get Earlybird Access (Ends In 2 Hours From Now): https://shorturl.at/gnxR1 \r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\n\r\n\r\n>> Click here to get Lifetime access to VoxAI and start profiting from day one: https://shorturl.at/gnxR1 \r\n\r\nFair Warning - Go In Now To Avoid Paying Monthly Fee Later\r\n\r\nSincerely, \r\n\r\nDrew',''),(2249,1,578,'6','Andrewget',''),(2250,1,578,'2','88513958169',''),(2251,1,578,'3','barthoskins@blueyonder.co.uk',''),(2252,1,578,'4','Upgrade Your Data and Upgrade Your Email Marketing Results http://events-381.1056208.com/moneymanagement-289',''),(2253,1,578,'5','Google',''),(2254,1,579,'6','Earnestine Del Fabbro',''),(2255,1,579,'2','06-62797393',''),(2256,1,579,'3','earnestine.delfabbro@outlook.com',''),(2257,1,579,'4','Make 10k$ per month with free training..\r\n\r\nLink : https://bit.ly/free-trainingz7',''),(2258,1,580,'6','Ryan Plain',''),(2259,1,580,'2','078 0504 8545',''),(2260,1,580,'3','jmk84463@gmail.com',''),(2261,1,580,'4','Are you struggling to keep up with the demands of content creation for your business? Don\'t worry, we have the perfect solution for you. Introducing Jasper.AI, the advanced AI assistant that can revolutionize the way you create content.\r\n\r\nAs a busy business owner, you know how important it is to produce high-quality content consistently. However, the process can be time-consuming and draining. With Jasper.AI, you can say goodbye to writer\'s block and tedious content creation tasks. Our AI-powered platform enables you to generate engaging articles, blog posts, social media captions, and much more, effortlessly.\r\n\r\nJasper.AI not only saves you time and effort but also ensures the content you create is of the highest quality. Our AI assistant uses advanced algorithms and natural language processing capabilities to generate content that resonates with your audience. You can easily customize the tone, style, and length to match your brand voice and target market.\r\n\r\nBut that\'s not all. By using Jasper.AI, you\'re not just benefiting yourself, but also your customers and developers. Imagine the value you can create for your customers by consistently delivering valuable and engaging content. Moreover, developers can leverage Jasper.AI\'s API to enhance their own applications and offer unique content generation features to their users.\r\n\r\nDon\'t miss out on the opportunity to streamline your content creation process and elevate your business. Click the link below to learn more about Jasper.AI and take advantage of our limited-time offer.\r\n\r\nClick the link to learn more and start generating amazing content in no time!\r\nhttps://jmk84463.systeme.io/98399461\r\n\r\nThanks,\r\nRyan\r\n\r\n\r\n\r\n\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2262,1,581,'6','Ingrid Eisenberg',''),(2263,1,581,'2','(08) 8283 5303',''),(2264,1,581,'3','eisenberg.ingrid@gmail.com',''),(2265,1,581,'4','Hi, your website is worth alot of money!\r\nWith such traffic you can get alooot of money selling your website.\r\nFrom a few s of thousand $ for small websites, bigger websites sell for more then millions of $.\r\nCheck here how much websiites like yours are selling for:\r\nsign up here for a free valuation of your website:\r\n\r\nhttps://bit.ly/sitevaluationflippa\r\n\r\nIf you need help you may always contact me here:\r\n\r\nsellyourwebsiteforprofit@bestwebhosting2day.info\r\n\r\nYou are close to rich!\r\n\r\nGreetings',''),(2266,1,582,'6','Gael GERARD',''),(2267,1,582,'2','999 15 138',''),(2268,1,582,'3','contact.gaelgerard.courses@gmail.com',''),(2269,1,582,'4','Hey there,\r\n\r\nIt\'s a course I created - \"AI and ChatGPT: A Four-Level Approach to Social Media Automation\". No fluff, just actionable strategies that can help you reclaim your time and amp up your social media game.\r\n\r\nReady to dive in and start doing? Here\'s your starting point: https://gaelgerard.podia.com/ai-and-chatgpt-a-four-level-approach-to-social-media-automation\r\n\r\n> Actionable right away\r\n> Dozens of hours saved\r\n> Affordable\r\n\r\nGet 30% discount with the code LAUNCH30 :)\r\n\r\nExcited to see you on board!\r\n\r\nTake care,\r\nGaël G',''),(2270,1,583,'6','EMI Scully',''),(2271,1,583,'2','0280-3713980',''),(2272,1,583,'3','jacob.scully@yahoo.com',''),(2273,1,583,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers \r\n contact me here and tell me what you need ===== > https://bit.ly/42sRQnJ\r\n\r\nSo you there \r\n\r\nRegards \r\nAwals',''),(2274,1,584,'6','Mike Davidson',''),(2275,1,584,'2','87845173161',''),(2276,1,584,'3','no-replyinquiff@gmail.com',''),(2277,1,584,'4','If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Davidson\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/',''),(2278,1,584,'5','Google',''),(2279,1,585,'6','Eric Jones',''),(2280,1,585,'2','555-555-1212',''),(2281,1,585,'3','ericjonesmyemail@gmail.com',''),(2282,1,585,'4','Hi juiceelectrical.co.nz Admin!\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2283,1,586,'6','Anton Rister',''),(2284,1,586,'2','(03) 6239 3727',''),(2285,1,586,'3','anton.rister@gmail.com',''),(2286,1,586,'4','Hey,\r\n\r\nWhat if you could tap into the $3 TRILLION freelancing industry and claim your slice of the pie? TaskAI is the key that unlocks your full earning potential and propels you towards financial abundance.\r\n\r\nPicture this: You\'re effortlessly providing hundreds of different services to your customers, all thanks to the power of AI. No more struggling to keep up with the demand or spending endless hours on mundane tasks. TaskAI does it all for you, leaving you with more time, more money, and more freedom.\r\n\r\nBut that\'s not all. TaskAI\'s AI-powered marketplace auto-ranks on Google, ensuring a steady stream of free traffic to your services. Say goodbye to hustling for clients and hello to a flood of high-paying customers.\r\n\r\nAre you ready to take control of your financial destiny and live life on your own terms?\r\n\r\nClick here to discover how TaskAI can make it a reality: \r\n\r\n===> bit.ly/445MeQM \r\n\r\n\r\nTo your incredible success,\r\n\r\nAnton',''),(2287,1,587,'6','James Walden',''),(2288,1,587,'3','fiverrcanhelp@gmail.com',''),(2289,1,587,'4','Hi,\r\nI came across your amazing business online and I wanted to introduce myself as I am a\r\nspecialist in helping people grow their online presence using social media.\r\n\r\nYou see social media has changed the way businesses operate especially when it come to new\r\ncustomer acquisition. It opens new doors as you can connect with your audience daily, increase\r\nyour brand awareness and generate new leads and customers.\r\n\r\nSocial media allows your businesses to build more meaningful relationships and get to know\r\nyour future consumers better. A business can build a fan base and receive feedback from their \r\ntarget audience really quickly.\r\n\r\nBy doing all this you can stay ahead of the game and continue to grow your client base and\r\nrevenue.\r\n\r\nI did see that you have social media accounts that could use a little more attention. I know\r\nrunning a fulltime business and social media at the same time is really hard and all your\r\nattention would go to the business.\r\n\r\nWe have seen huge growth in other business that we have helped in just 2 to 4 weeks some\r\nhave had 25% to 100% revenue increases.\r\n\r\nThe way we do this is by putting you in touch with one of our Fiverr Social Media specialists that\r\nhave a proven track record of growth and success.\r\n\r\nClick below now and take a look at the services they offer, we only recommend the best!\r\n\r\nhttps://tinyurl.com/Fiverr-SocialMediaDesign\r\n\r\nalso, ***SPECIAL NOTE - CODE \"INSIDERFIVERR10\" AT CHECKOUT WILL GET YOU 10% OFF ANY ORDERS ON FIVERR FOR THE REST OF THE MONTH OF JUNE\r\n\r\nI found this coupon code which is good for any services on Fiverr this month until July 1st. Hope this helps.\r\n\r\nIf you have any more questions about growing your online presence, feel free to email me back I\r\nam more than happy to help.\r\n\r\nKind Regards,\r\nJames Walden\r\nOwner/Tech Consultant\r\nFiverrcanhelp@gmail.com\r\nYoutube.com/@SelfHelpOnline',''),(2290,1,588,'6','Rafaela Decoteau',''),(2291,1,588,'2','04821 77 06 85',''),(2292,1,588,'3','decoteau.rafaela@gmail.com',''),(2293,1,588,'4','Make 10k$ per month with free training..\r\n\r\nLink : https://bit.ly/free-trainingz7',''),(2294,1,589,'6','Emmett Pool',''),(2295,1,589,'2','077 8925 7908',''),(2296,1,589,'3','sellyourwebsiteforprofit@bestwebhosting2day.info',''),(2297,1,589,'4','Hi, your website is worth alot of money!\r\nWith such traffic you can get alooot of money selling your website.\r\nFrom a few thousand $ for small websites, bigger websites sell for more then millions of $.\r\nCheck here how much websiites like yours are selling for:\r\nsign up here for a free valuation of your website:\r\n\r\nhttps://bit.ly/sitevaluationflippa\r\n\r\n\r\nYou are close to rich!\r\n\r\nGreetings',''),(2298,1,590,'6','Steve Johnson',''),(2299,1,590,'2','0378 6983331',''),(2300,1,590,'3','steve.johnson@gmail.com',''),(2301,1,590,'4','Hey,\r\n\r\nI tried to get in touch with you but I couldn’t get through. Everything ok?\r\n\r\nI wanted to quickly tell you that CopyMate is closing it\'s lowest price $12 ever deal now\r\n\r\nIt is top trending app and now my favourite too. CopyMate price is already increased to $19 and tonight again it is going to increase to $28 and then it will be turning to $197/month.\r\n\r\nRight now you can get it at its lowest price ever $12 and good new is that I have got a $7 OFF coupon for you, use COPYMATE7OFF\r\n\r\nGet CopyMate Right Now Before It Increased To $28: bit.ly/43zqtJl \r\n\r\n\r\nFull Scoop:\r\n\r\nGPT4 is the most powerful A.I in the world, and there is only one software CopyMate which uses GPT4 to Create\r\n\r\n[+] Website content\r\n[+] Email campaigns\r\n[+] Social Media Posts\r\n[+] Videos and Video Scripts\r\n[+] Content for Videos\r\n[+] Articles, Ads, Reports, Sales Pages, and much more\r\n \r\n\r\n==> Watch the demo now: bit.ly/43zqtJl \r\n\r\n\r\nIt creates all kind of AI content, graphics, programming code, video scripts, emails, social media post, in seconds, literally.\r\n\r\nI thought you could use it in your business, or even sell it as a service to clients for some extra cash.\r\n\r\nCheck it out here:\r\n\r\n\r\n> bit.ly/43zqtJl \r\n\r\n\r\nDon\'t wait any longer, snatch up this amazing opportunity before it\'s gone and becomes a monthly plan.\r\n\r\n\r\nSincerely, \r\n\r\nSteve',''),(2302,1,591,'6','Harriet Cardona',''),(2303,1,591,'2','024 967 43 93',''),(2304,1,591,'3','harriet.cardona@gmail.com',''),(2305,1,591,'4','Hi there,\r\nis the software you are using still up to date?\r\nCheck out this list of brand new state of the art real estate software - www.nextleveltools.io',''),(2306,1,592,'6','Ava Burbidge',''),(2307,1,592,'3','burbidge.ava@yahoo.com',''),(2308,1,592,'4','Private Blog Network links, always have worked well for the ranks.\r\nWe`ll write quality SEO content and get you listed permanently in quality PBN sites, unique domains.\r\n\r\nMore info:\r\nhttps://www.seo-treff.de/product/private-blog-networks-backlinks/',''),(2309,1,593,'6','Kevin Pettigrew',''),(2310,1,593,'2','604-763-0817',''),(2311,1,593,'3','jmk84463@gmail.com',''),(2312,1,593,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2313,1,594,'6','Eric Jones',''),(2314,1,594,'2','555-555-1212',''),(2315,1,594,'3','ericjonesmyemail@gmail.com',''),(2316,1,594,'4','Hello juiceelectrical.co.nz Webmaster!\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.”\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2317,1,595,'6','Caitlyn',''),(2318,1,595,'3','info@cole.pawsafer.sale',''),(2319,1,595,'4','Hello there \r\n \r\nIs 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™? \r\nWith PawSafer™, you can trim your dog\'s nails from the comfort of your own home, and it only takes a few minutes!\r\n\r\nPawSafer™ is the safest and most convenient way to trim your dog\'s nails, and it\'s very affordable. \r\n\r\nGet it while it\'s still 50% OFF + FREE Shipping\r\n\r\nBuy here: https://pawsafer.sale\r\n \r\nTo your success, \r\n \r\nCaitlyn',''),(2320,1,596,'6','Nate Simmons',''),(2321,1,596,'2','06-77818041',''),(2322,1,596,'3','nate.simmons@gmail.com',''),(2323,1,596,'4','Hi there,\r\n\r\nImagine having your own Ai assistant who creates Ai content, and AI images, and does all your tasks like your employee.\r\n\r\n==>Introducing GoogAi https://shorturl.at/agjzN \r\n\r\nThe World\'s First ChatGPT & OpenAi Killer App, Fully Powered By Google’s Latest Ai Technology “Bard & PalM 2”…\r\n\r\nThat Turns Any Voice Command Or Keyword Into \r\nReal-Time “High-Quality” Ai Contents such as…\r\n\r\nHigh-converting Ai content\r\nStunning Ultra HD Ai Graphics & Images…\r\nBuilds Stunning Pages & Websites…\r\nWrite Codes…\r\nAnd Answers All Your Queries In Real-Time, within seconds…\r\n\r\nSounds like a life-changing deal? \r\n\r\n==>Go and check more about GoogAi Here https://shorturl.at/agjzN \r\n\r\nAnd the best part? \r\n\r\nIt Lets You Skip All The Hassles Of Creating high converting Ai Content While Saving You Time & Money…\r\n\r\nIn other words, Ai is the new game-changer in the online industry…\r\n\r\n==>Go and Grab your copy before it’s over https://shorturl.at/agjzN \r\n\r\nAlso, you are going to get these Free Bonuses Here:-\r\n\r\nBonus#1 GoogAi Apps Version\r\n“Brand New 1-Click Cloud Based Mobile App Builder LETS YOU CREATE UNLIMITED MOBILE APPS FOR IOS & ANDROID!”\r\n \r\nBonus#2 GoogAi Puzzle version\r\n“1 Click App Help You Create A Full-Time PASSIVE INCOME Publishing Puzzle Books On Amazon KPD”\r\n \r\nBonus #3 GoogAi StockHub\r\n“Get Instant Access To The World’s First Biggest Collection Of Stock Images, Videos, Vectors, GIFS, Animations, Memes & Audios + Inbuilt Image & Video Editor On a Complete Searchable Platform”\r\n \r\nBonus#4 GoogAi CB site version, \r\nPUSH-BUTTON APP GETS YOU FREE BUYER TRAFFIC AND AUTOMATICALLY CREATES \"DONE-FOR-YOU\" CLICKBANK MONEY SITES LOADED WITH PRE-MADE 2 MILLION+ ARTICLES!\r\n \r\nBonus #5 GoogAi Jobsite version:\r\n“NEW CLOUD SOFTWARE BUILDS Beginner-Friendly Profitable JOB SEARCH Sites In 90 Seconds With TWO Income Streams”\r\n\r\n==>Download All Bonuses Here https://shorturl.at/agjzN \r\n\r\nThanks & Regards,\r\nNate',''),(2324,1,597,'6','Essie Jones',''),(2325,1,597,'2','046-3826128',''),(2326,1,597,'3','essie.jones@yahoo.com',''),(2327,1,597,'4','I\'m messaging you via your contact form on your website at juiceelectrical.co.nz. So by reading this message you just proved that contact form advertising works! Want to blast your ad to millions of contact forms? Or maybe you prefer a more targeted approach and only want to blast your ad out to websites in certain business verticals? We charge $99 to blast your ad to 1 million contact forms. Volume discounts are available. I have over 35 million contact forms. Let\'s discuss, contact me via Skype here: live:.cid.7aad4787a72a11d0',''),(2328,1,598,'6','Andrew Bower',''),(2329,1,598,'2','0220787622',''),(2330,1,598,'3','paolaandandrew@internode.on.net',''),(2331,1,598,'4','Hi,\r\nI need some electrical work done. Do you come out and quote? Or how does it work.\r\nRegards,\r\nAndrew',''),(2332,1,598,'5','Have used you before.',''),(2333,1,599,'6','Sebastian Anderson',''),(2334,1,599,'2','070 0760 9968',''),(2335,1,599,'3','sebastian.anderson@gmail.com',''),(2336,1,599,'4','How would you like to have a personal assistant that can help you create Everything For You?\r\n\r\nWell, your wish has come true! \r\n\r\nIntroducing…Ai Suite\r\n80-In One - The world’s first ChatGPT (OpenAi) \r\nPowered App Suite…That Does Everything- For you\r\n\r\n==> Here Full Scoop: bit.ly/3OPXfS9 \r\n\r\n\r\nTOP Features:\r\n\r\n Real ChatGPT Ai Chatbot\r\n Ai Text to Video Generator\r\n Ai Content Generator\r\n Ai Text to Image Generator\r\n Ai Keyword to Video Generator\r\n Ai Keyword to Image Generator\r\n Ai Image Variation Generator\r\n Ai Graphic Editor\r\n Ai Product Name Generator\r\n Ai Text to Speech\r\n Ai Video To Text\r\n\r\nand Many More..\r\n\r\n\r\nWith Ai Suite, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\nAnd the best part? \r\n\r\nAi Suite is easy to use! \r\n\r\nAll you have to do is chat with it, and it will do the rest.\r\nSo, why wait?\r\n\r\n>> Go & check it out before they take it down: bit.ly/3OPXfS9 \r\n\r\n\r\nRegards\r\n\r\nSebastian',''),(2337,1,600,'6','Chris Shackell',''),(2338,1,600,'2','0483 27 71 91',''),(2339,1,600,'3','shackell.earnest34@outlook.com',''),(2340,1,600,'4','Do you struggle with managing all the different aspects of your online business? Creating and launching sales funnels, setting up affiliate programs, and sending email campaigns can be time-consuming and overwhelming. But what if you could have all these tools in one place?\r\n\r\nThat\'s where systeme.io comes in. With systeme.io, you can easily create and launch your sales funnels, set up affiliate programs, and send email campaigns with just a few clicks. No more switching between different platforms or struggling with complicated software!\r\n\r\nSysteme.io is designed to simplify your online business, so you can focus on what really matters - growing your business and making more sales. \r\n\r\nDon\'t let technology hold you back - click the link below to check out systeme.io today and start taking your business to the next level!\r\n\r\nhttps://jmk84463.systeme.io/05c6a910\r\n\r\nThanks,\r\n\r\nChris\r\n\r\n\r\n\r\n\r\n335 South 600 East Smithfield UT 84335\r\n\r\nOpt-out statement: If you no longer wish to receive emails from us, simply click the link below to unsubscribe.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2341,1,601,'6','Candice Paramore',''),(2342,1,601,'2','013-3990254',''),(2343,1,601,'3','sellyourwebsiteforprofit@bestwebhosting2day.info',''),(2344,1,601,'4','Hey,\r\n\r\nI\'m disabled because of mental and physic promblems and every day is has been a fight for me.\r\nThat\'s when I decided to give attention to Love, people and nature, to become helpfull in my own way.\r\n\r\nI started a project to ask for help for my condition and in return help to plant a whole bunch of trees worldwide.\r\nIf you are intersted in helping out a fellow earthling and support the planting of new trees worldwide check this page to \'buy me a coffee\':\r\n\r\nhttps://www.buymeacoffee.com/michel9\r\n\r\nlove and peace brother/sister',''),(2345,1,602,'6','Connor McConnell',''),(2346,1,602,'2','0496 87 35 44',''),(2347,1,602,'3','connor.mcconnell@gmail.com',''),(2348,1,602,'4','Hey, \r\n\r\n$795.56 Per Day Without Selling Anything?\r\n\r\nYou see the vast majority of marketers\r\nare yet to make a single dime online…\r\n\r\nAnd the reason for this is simple:\r\n\r\nThey try to sell stuff to everyone\r\nand their grandma!\r\n\r\nI know, this goes against what you’ve \r\nbeen told by most gurus.\r\n\r\nBut let me tell you, no matter what others say…\r\n\r\nIf you try to sell stuff on the Internet to\r\ntotal strangers, you’ll end up struggling.\r\n\r\nBut what if you could pocket $795.56 per\r\nday with FREE traffic just like we do…\r\n\r\n…Without selling anything?\r\n\r\nYup, all thanks to a brand-new, powerful\r\nAI-powered, cloud app\r\n\r\n\r\n=> Click Here To Discover “Apex”: bit.ly/43RjGKY \r\n\r\n\r\nThis one-of-a-kind, revolutionary app \r\nautomatically creates “money sites,” \r\npre-fills them with high-quality, human-like \r\ncontent & then sends thousands of targeted\r\nFREE clicks.\r\n\r\nIn less than 23 seconds!\r\n\r\nIf you’re a total beginner looking to make\r\nyour first buck online, there’s no doubt that\r\nyou’ll find this unique software life-changing.\r\n\r\n\r\n=> Click Here To Get Started Now: bit.ly/43RjGKY \r\n\r\n\r\n\r\nDon\'t you think it\'s time to finally capitalize on the \"AI Craze\"?\r\n\r\nWell, with \"Apex\" now it\'s possible…\r\n\r\nYou can start using this out-of-the-box,\r\ntransformative app in the next 4 minutes\r\n\r\nAnd begin churning out profitable \"money sites\"\r\nwith just a few clicks of your mouse!\r\n\r\n\r\n=> Click Here To Grab “Apex” Now: bit.ly/43RjGKY \r\n\r\n\r\nRight now, “Apex” is in launch mode and is\r\nridiculously priced!\r\n\r\nBut, the price will increase once the launch phase is\r\nover, and you’ll have to pay monthly in order\r\nto use it.\r\n\r\nDon’t let that happen! \r\nGet it now, while you can!\r\n\r\n=> Click Here To Grab “Apex” Now: bit.ly/43RjGKY\r\n\r\nI’ll see you inside,\r\n\r\nConnor',''),(2349,1,603,'6','Mike Gilmore',''),(2350,1,603,'2','86326191269',''),(2351,1,603,'3','no-replyinquiff@gmail.com',''),(2352,1,603,'4','Hi there, \r\n \r\nI have reviewed your domain in MOZ and have observed that you may benefit from an increase in authority. \r\n \r\nOur solution guarantees you a high-quality domain authority score within a period of three months. This will increase your organic visibility and strengthen your website authority, thus making it stronger against Google updates. \r\n \r\nCheck out our deals for more details. \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Ahrefs Domain Rating \r\nhttps://www.monkeydigital.co/ahrefs-seo/ \r\n \r\nThanks and regards \r\nMike Gilmore',''),(2353,1,603,'5','Google',''),(2354,1,604,'6','Carl Stevsson',''),(2355,1,604,'2','0348 3213182',''),(2356,1,604,'3','carl.stevsson@gmail.com',''),(2357,1,604,'4','There’s obviously no shortage of AI related stuff…\r\n\r\nBut what came across my desk today made my jaw drop…\r\n\r\nThis brand spanking new AI creates audiobooks and podcasts from scratch…\r\n\r\nIn just 2 minutes FLAT.\r\n\r\nRight now, there are hundreds of millions of people listening to audiobooks and podcasts…\r\n\r\n…so this is a super easy way to get a piece of free traffic & make sales daily.\r\n\r\nClick here to create traffic-getting audiobooks with AI >>\r\n\r\nOh, and it gets even better…\r\n\r\nYou can create these audiobooks in over 80 different voices.\r\n\r\n(I listened to all of them and they are scary realistic!)\r\n\r\nWith many of these voices I couldn’t tell the \r\ndifference if they were human or not!\r\n\r\nThe app is called Vox AI, and you can check it out here.\r\n\r\nStep 1 Login: Login to Vox AI Cloud-Based App\r\n\r\nStep 2 Generate: Enter A Keyword, Article, PDF, Or Even A Url…\r\nAnd Vox AI Will Turn That Into Full AudioBook Or Podcast.\r\n\r\n(Ultra Realistic, Engaging Human Scriptwriting)\r\n\r\nStep 3: Publish: Publish Your New AudioBook To Our Built-In Marketplace With 2.3 Million Users\r\n\r\nAfter you’ve followed those 3 steps, you’re off to the races…\r\n\r\nYou’ll have a professional sounding podcast that can be uploaded to sites like Spotify, or Apple Podcasts.\r\n\r\nListen, I hate the tech stuff, and I cannot understand 99% of the AI stuff.\r\n\r\nI will admit, I don’t know exactly how this works!\r\n\r\nHowever, you don’t need any computer skills to make this work.\r\n\r\nSeriously, my mother could use this without any issues.\r\n\r\nJust click here to give it a try and create \r\nyour own audiobook in just 2 minutes >> https://warriorplus.com/o2/a/l1kh7z/0\r\n\r\nTo your success,\r\n\r\nCarl Stevsson',''),(2358,1,605,'6','Megan Atkinson',''),(2359,1,605,'2','0650 247 86 52',''),(2360,1,605,'3','meganatkinson352@gmail.com',''),(2361,1,605,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- We guarantee to gain you 400-1000+ followers per month.\r\n- People follow you because they are interested in you, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you\'d like to see some of our previous work, let me know, and we can discuss it further.\r\n\r\nKind Regards,\r\nMegan',''),(2362,1,606,'6','Eliza Spangler',''),(2363,1,606,'2','411 9812',''),(2364,1,606,'3','eliza.spangler@gmail.com',''),(2365,1,606,'4','Did you notice??\r\n\r\nThe traffic landscape has\r\nCHANGED drastically in 2023!\r\n\r\nPeople are not reading long\r\nblog posts, they are not watching\r\nlong videos like they used to..\r\n\r\nInstead they\'re watching short, \r\nsnackable 15-30 sec videos on \r\nYouTube, FB, TikTok..\r\n\r\nAnd If you don\'t want to get left \r\nin the dust, but LEVERAGE it to \r\ngenerate 10,000s of visitors \r\nper day, then..\r\n\r\n==> GO HERE & START RIGHT NOW..\r\nhttps://shortz.pro/tube-rushr\r\n\r\nNewbies, people with no real \r\nskills, no experience, no idea, \r\nand some just by pure luck, \r\nunknowingly are making $500 \r\nto even $1,000 per day with \r\nthis traffic method.\r\n\r\nHere\'re some of the results \r\npeople getting with Shorts:\r\n\r\n- 3.5 Million views posting other people\'s videos\r\n- 24 million views posting 5 sec videos\r\n- 1.4 million views posting 30 sec review videos\r\n\r\nAnd the best part is ALL:\r\n\r\n- WITHOUT being on camera\r\n- WITHOUT running ads\r\n- WITHOUT subscribers\r\n- WITHOUT outsourcing\r\n\r\nWith TubeRushr, you can quickly \r\nand easily create attention-grabbing \r\nYouTube Shorts w/ ChatGPT4 that \r\ndrive traffic & sales to your websites, \r\nblogs, and offers in just 3 clicks..\r\n\r\n==> WATCH QUICK DEMO HERE\r\nhttps://shortz.pro/tube-rushr\r\n\r\nTubeRushr is available for a Low\r\nOne Time Price during its public launch \r\nfor the next few days only..\r\n\r\nAfter this week, it will turn into a \r\nhigher recurring subscription price model.\r\n\r\nAct fast and get your account at the \r\nlowest price ever.\r\n\r\n==> Get TubeRushr For A Low \r\nOne-Time Price Now\r\nhttps://shortz.pro/tube-rushr\r\n\r\nSee you inside.\r\n\r\nAll the best.',''),(2366,1,609,'6','Brigette Webber',''),(2367,1,609,'2','070 4644 8199',''),(2368,1,609,'3','webber.brigette@outlook.com',''),(2369,1,609,'4','Hello juiceelectrical.co.nz Webmaster.,\r\n\r\nIntroducing AdCreative.ai - the premier AI-powered advertising platform that\'s taking the industry by storm!\r\n\r\nAs a Global Partner with Google and a Premier Partner, we have exclusive access to the latest tools and insights to help your business succeed. And now, we\'re offering new users $500 in free Google Ad Credits to get started with advertising - no upfront costs, no hidden fees.\r\n\r\nWith AdCreative.ai, you\'ll enjoy advanced AI algorithms that optimize your campaigns for maximum impact, as well as seamless integration with Google Ads for unparalleled performance.\r\n\r\nDon\'t wait - sign up for our free trial today a https://free-trial.adcreative.ai/seo2650 and experience the power of AdCreative.ai for yourself!',''),(2370,1,610,'6','Steve Collins',''),(2371,1,610,'2','05.25.51.69.29',''),(2372,1,610,'3','stevecollins@gmail.com',''),(2373,1,610,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://www.theaisocial.com/writeappreviews\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from AISocial',''),(2374,1,611,'6','Carl Stevsson',''),(2375,1,611,'2','043 329 61 25',''),(2376,1,611,'3','carl.stevsson@gmail.com',''),(2377,1,611,'4','Just hear me out… \r\n\r\nAI is powerful, and will change the world… \r\n\r\nBUT 99% of people don’t have a clue about how to use it… \r\n\r\nAt best, they ask ChatGPT funny questions, and post the answers to Facebook… \r\n\r\nBut what if there is a way to leverage AI, to not only create stunning eBooks and Flipbooks WITHOUT writing a word… \r\n\r\nBut also - to let AI sell it for you to millions of active readers… \r\n\r\nLeaving one job for you… Profit.\r\n\r\nIf you like the sound of that, then you’re in luck… \r\n\r\nBecause my good friend, Seyi… \r\n\r\nJust opened early-bird access to INK AI\r\n\r\nINK AI is the world’s first app that creates stunning eBooks, FlipBooks, & more… with a click of a button… \r\n\r\nHere is the best part… \r\n\r\nYou don’t need any experience to get started… \r\n\r\nHeck, you don’t even need to write a single word… \r\n\r\nINK AI will turn any keyword, URL, BLOG, or even your voice\r\n\r\nInto a complete ebook with designs… \r\n\r\nHere, Let me show you how it works\r\n\r\nStep 1 Login: Login to Ink AI Cloud-Based Dashboard\r\n\r\nStep 2 Create: Enter One Keyword And Instantly Generate a Fully Designed eBook, Reports, Flipbook, PDF, Lead Magnet, And More… \r\n\r\nStep 3: Syndicate: With One Click, Let AI Syndicate Your eBook Across Millions Of Buyers In Any Niche… \r\n\r\nStep 4: Profit - Yup that’s it.\r\n\r\nI don’t think it gets easier than this… \r\n\r\nRight now, INK AI is available for one-time pricing..\r\n\r\nBut after the early bird discount is gone, monthly pricing will kick in.\r\n\r\nClick here to get INK AI at a one-time investment and create your profitable eBooks NOW.\r\nhttps://warriorplus.com/o2/a/ynjmb2/0\r\n\r\nTo your success,\r\n\r\nCarl Stevsson',''),(2378,1,612,'6','Dawn Ferro',''),(2379,1,612,'2','0929-5051844',''),(2380,1,612,'3','dawn.ferro@hotmail.com',''),(2381,1,612,'4','Hi there,\r\n\r\nWe cordially present WebGenie, an unprecedented AI solution revolutionizing the process of website creation by providing pre-filled, meticulously curated content.\r\n\r\nWith WebGenie, the arduous tasks of coding, content writing, design implementation, and translation are expertly handled by our advanced artificial intelligence technology, enabling you to effortlessly establish profitable websites.\r\n\r\nMoreover, WebGenie caters to individuals without any products or services to offer. Our platform seamlessly integrates numerous lucrative offers into your newly created website, allowing you to generate commissions for every successful sale.\r\n\r\nUnlock the immense potential for substantial financial gains through WebGenie by visiting the following link: https://rebrand.ly/webgenie1\r\n\r\nDawn\r\n\r\nUnsubscribe: If you do not wish us to contact you again, let us know here: https://rb.gy/mgkbd',''),(2382,1,613,'6','Geraldine Gillott',''),(2383,1,613,'2','06-88419798',''),(2384,1,613,'3','geraldine.gillott75@gmail.com',''),(2385,1,613,'4','Our Company is providing to beta-tester of our trained\r\nAl software-$500 Free Google Ads Credit To spend\r\nand get high-quality traffic!\r\nJust 2 spots left ...\r\nGet Free Credit Here: https://free-trial.adcreative.ai/beta-testings',''),(2386,1,614,'6','Georgina Haynes',''),(2387,1,614,'2','06-36992662',''),(2388,1,614,'3','georginahaynes95@gmail.com',''),(2389,1,614,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\n\r\nhttps://www.youtube.com/watch?v=zvGF7uRfH04\r\nhttps://www.youtube.com/watch?v=cZPsp217Iik\r\nhttps://www.youtube.com/watch?v=JHfnqS2zpU8\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey 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.\r\n\r\nOur rates are as follows depending on video length:\r\n\r\nUp to 1 minute = $239\r\n1-2 minutes = $339\r\n2-3 minutes = $439\r\n\r\n*The above are in USD and include full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nGeorgina',''),(2390,1,615,'6','Danelle Baldwin',''),(2391,1,615,'2','516-489-5034',''),(2392,1,615,'3','danelle.baldwin@gmail.com',''),(2393,1,615,'4','Hi, \r\n\r\nI wanted to share some exciting news with you about a powerful tool that\r\ncan revolutionize the way you create content for your business.\r\n\r\n⇒ Introducing... GoogAi\r\n\r\nThis cutting-edge app is powered by Google\'s Bard\r\nHelp you to create unique, high-quality content, Ai graphics & Images in a fraction of the time it would take to write it manually…\r\n\r\nImagine being able to generate product descriptions, blog posts, and even entire web pages with just a few simple prompts. GoogAi (Google\'s Bard Powered) makes it possible, delivering content that is not only fast and efficient but also engaging and informative…\r\n\r\nClick Here To See GoogAi In Action…\r\n==> https://bit.ly/googaireview\r\n\r\nWhether you\'re looking for answers to complex questions, assistance with daily tasks,\r\nor just someone to talk to, this app has you covered. And with its constantly evolving\r\nunderstanding of language, it\'s always getting smarter and more helpful.\r\n\r\n✅ World\'s FIRST fully Google\'s Bard driven App\r\n✅ Generate human-like responses to complex questions with just 1-click...\r\n✅ Generate High-Quality content, ebooks, stories, novels, articles, sales scripts, video scripts, or anything you wanted....\r\n✅ GoogAi gives crisp and clear answers to your any question instantly…\r\n✅ Designs Stunning Ai graphics & Images\r\n✅ Create SEO-Optimized and plagiarism-free content for your blogs, emails, and website 10X faster.\r\n\r\nCheers!\r\n\r\nAdam Smith\r\n78 Road St, NYC\r\n===============\r\nClick here to Unsubscribe.\r\nhttps://bit.ly/stop69',''),(2394,1,616,'6','Alex Sham',''),(2395,1,616,'2','+441279975075',''),(2396,1,616,'3','sales@metaagency.cc',''),(2397,1,616,'4','Hi, my name is Alex.S, I have noticed something wrong with your website and I want to volunteer for free, do you have a second to chat about it? Here\'s my phone number, call or text me when you have a second: +442039960808\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com.',''),(2398,1,617,'6','Carl Stevsson',''),(2399,1,617,'2','480 5073',''),(2400,1,617,'3','carl.stevsson@gmail.com',''),(2401,1,617,'4','There’s obviously no shortage of AI related stuff…\r\n\r\nBut what came across my desk today made my jaw drop…\r\n\r\nThis brand spanking new AI creates audiobooks and podcasts from scratch…\r\n\r\nIn just 2 minutes FLAT.\r\n\r\nRight now, there are hundreds of millions of people listening to audiobooks and podcasts…\r\n\r\n…so this is a super easy way to get a piece of free traffic & make sales daily.\r\n\r\nClick here to create traffic-getting audiobooks with AI >>\r\n\r\nOh, and it gets even better…\r\n\r\nYou can create these audiobooks in over 80 different voices.\r\n\r\n(I listened to all of them and they are scary realistic!)\r\n\r\nWith many of these voices I couldn’t tell the \r\ndifference if they were human or not!\r\n\r\nThe app is called Vox AI, and you can check it out here.\r\n\r\nStep 1 Login: Login to Vox AI Cloud-Based App\r\n\r\nStep 2 Generate: Enter A Keyword, Article, PDF, Or Even A Url…\r\nAnd Vox AI Will Turn That Into Full AudioBook Or Podcast.\r\n\r\n(Ultra Realistic, Engaging Human Scriptwriting)\r\n\r\nStep 3: Publish: Publish Your New AudioBook To Our Built-In Marketplace With 2.3 Million Users\r\n\r\nAfter you’ve followed those 3 steps, you’re off to the races…\r\n\r\nYou’ll have a professional sounding podcast that can be uploaded to sites like Spotify, or Apple Podcasts.\r\n\r\nListen, I hate the tech stuff, and I cannot understand 99% of the AI stuff.\r\n\r\nI will admit, I don’t know exactly how this works!\r\n\r\nHowever, you don’t need any computer skills to make this work.\r\n\r\nSeriously, my mother could use this without any issues.\r\n\r\nJust click here to give it a try and create \r\nyour own audiobook in just 2 minutes >> https://warriorplus.com/o2/a/l1kh7z/0\r\n\r\nTo your success,\r\n\r\nCarl Stevsson',''),(2402,1,618,'6','Eric Jones',''),(2403,1,618,'2','555-555-1212',''),(2404,1,618,'3','ericjonesmyemail@gmail.com',''),(2405,1,618,'4','Dear juiceelectrical.co.nz Admin! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2406,1,619,'6','Mark Manson',''),(2407,1,619,'2','25-49-61-67',''),(2408,1,619,'3','mark.manson@gmail.com',''),(2409,1,619,'4','How would you like to have a Most Advanced Ai assistant that can help you create 4K HD high-quality Video, graphics, and respond like a human?\r\n\r\nWell, your wish has come true! \r\n\r\nIntroducing…\r\n\r\nAi Diffusion - The world’s Ai App Create ..\r\nUltra HD Ai Videos, 4K HD Ai Images, Ai Cartoon Videos, \"Ai Diffusion Videos, Ai Animated Videos, Ai Drawings & Art, Ai Sketch Images, Images To 3D Videos, Ai Logos & Graphics And So Much More... \r\n\r\n Generate Ultra-HD 4k Videos & Images...\r\n Convert Any Video Into Ai Cartoons & Anime Videos In 1-Click...\r\n Generate Unlimited Ai Videos In Any Niche Just With A Single Keyword...\r\n Comes With Built-in Ai Video & Image Background Remover...\r\n Turn Any Normal Image Into Sketch With Just A Single Click...\r\n Convert Any Image Into 3D Video In Blink Of An Eye...\r\n Built-in GTA V Art & Video Style Maker...\r\n Image Inpainting\r\n Image Super Resolution\r\n Image Colorization\r\n Black & White To Color Video\r\n Video Background Color Changer\r\n Ai Cartoon Generator\r\n Night Image Enhancement\r\n..and much more\r\n\r\n\r\nWith Ai Diffusion, you can now spend less time stressing about your creative work and more time doing what you love!\r\n\r\nAnd the best part? \r\n\r\nAi Diffusion is easy to use! \r\n\r\n\r\n>> Go & check it out before they take it down: https://shorturl.at/gvJ79 \r\n\r\n\r\nRegards,\r\n\r\nMark',''),(2410,1,620,'6','Karl Johnson',''),(2411,1,620,'2','06-43212019',''),(2412,1,620,'3','karl.johnson@gmail.com',''),(2413,1,620,'4','You NEED this The Click Engine for your success.\r\n\r\nClick on the link here: https://warriorplus.com/o2/a/t78fh1/0\r\n\r\nTo your success,\r\n\r\nKarl Johnson',''),(2414,1,621,'6','Eric Jones',''),(2415,1,621,'2','555-555-1212',''),(2416,1,621,'3','ericjonesmyemail@gmail.com',''),(2417,1,621,'4','To the juiceelectrical.co.nz Admin.\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2418,1,622,'6','Lynne Molnar',''),(2419,1,622,'2','974 16 505',''),(2420,1,622,'3','lynne.molnar@yahoo.com',''),(2421,1,622,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2422,1,623,'6','James Walden',''),(2423,1,623,'3','fiverrcanhelp@gmail.com',''),(2424,1,623,'4','Good day,\r\nMy name is James Walden. I am a tech consultant and content creator. I was recently intrigued at the thought of the \r\nERC or Employee Retention Credit as provided by our government having some serious deadlines coming up. \r\nIf you or your employer are in need of this & 25,000 dollar credit per employee, I recommend going to the ARTI website for assistance. \r\nHey free money is free money. They have helped small and large companies across the country who are trying to come back from the whole Covid fiasco. \r\nIf you have any questions feel free to email me at selfhelponlinenow@gmail.com or you can visit my sites for my information. Thank you so much and have a great day!\r\n\r\nhttps://jcwalden.weebly.com/arti-erc-signup.html\r\n\r\nSincerely,\r\nJames Walden\r\nContent Creator/Tech Consultant\r\nyoutube.com/@selfhelponline\r\ntiktok.com/@selfhelponlinenow\r\ninstagram.com/selfhelponlinenow\r\npinterest.com/jcwaldenjr',''),(2425,1,624,'6','Rebbeca Pitcher',''),(2426,1,624,'3','pitcher.rebbeca@gmail.com',''),(2427,1,624,'4','Hey,\r\n\r\nIt’s funny how most “marketing experts”\r\nusually tell you that the only way to \r\nmake money online is by paying for \r\ntraffic.\r\n\r\nThat’s pure baloney.\r\n\r\nSure, when you pay for clicks, it’s possible\r\nto attain a certain degree of success, but\r\nLet\'s be honest…\r\n\r\nYou need to have DEEP pockets for that.\r\n\r\nAnd while I don’t know you, I’m sure that\r\nyou don’t have 5k to drop in ads, right?\r\n\r\nLook, today I’d like to share with you\r\nwhat’s probably the quickest and easiest\r\nsolution to generate tons of FREE traffic\r\nfrom YouTube…\r\n\r\nWithout ever having to create a single video.\r\n\r\nAll thanks to a revolutionary, never-before-seen \r\nAI app that exploits “Money Pockets” hidden\r\ndeep within YouTube’s servers…\r\n\r\n=> Click Here To Take Advantage Of This\r\nUnknown YouTube Loophole\r\nhttps://shortz.pro/striker\r\n\r\nNow, this is the same cloud-based app that\r\ngenerated over 3,457 laser-targeted clicks in less\r\nthan 24 hours…\r\n\r\nAnd remember, this is 100% FREE traffic.\r\n\r\nIt didn’t cost a single penny and resulted in\r\nalmost A GRAND in pure commissions.\r\n\r\nI call that hitting the YouTube jackpot!\r\n\r\nAnd get this…\r\n\r\nAnyone can do this, even if you have half a brain.\r\n\r\nThere’s no learning curve or anything like that.\r\n\r\nAll you have to do is:\r\n\r\n1- Login to the software (nothing to download…)\r\n2- Press a few buttons…\r\n3- Let the AI find YouTube “Money Pockets”...\r\n4- Cash in!\r\n\r\n=> Click Here To Find Money Pockets\r\nhttps://shortz.pro/striker\r\n\r\nUSE COUPON SRIKER5OFF which gives you $5 OFF!\r\n\r\nThis is the perfect moment to jump on the AI\r\nbandwagon and claim your share of the \r\nmulti-billion dollar pie…\r\n\r\nSo, take action right now, and I can guarantee\r\nyou that it’ll pay off!\r\n\r\n=> Click Here To Get Started\r\nhttps://shortz.pro/striker\r\n\r\nTalk soon.',''),(2428,1,625,'6','Sean Barry',''),(2429,1,625,'2','501-693-5124',''),(2430,1,625,'3','sean.barry@gmail.com',''),(2431,1,625,'4','Hey,\r\n\r\nQuick one,\r\n\r\nMy friend Billy Darr is launching the hottest\r\nA.I app ever that lets you run your own\r\nAutomated YouTube channel…\r\n\r\nHe’s holding a special live unveiling party \r\nwhereby if you attend you’ll be in for a \r\nchance to win a copy at no cost!\r\n\r\nPLUS he’s giving away to 1 lucky person a \r\n1000 Bucks + iPad Mini!\r\n\r\nThe prelaunch training party begins:\r\nWednesday 21st June @ 10am EST:\r\n\r\nFirst 250 Only:\r\n\r\n> Click here for the details https://shorturl.at/esF45 \r\n\r\nThanks\r\nSean',''),(2432,1,626,'6','Carl Stevsson',''),(2433,1,626,'2','02.51.89.79.42',''),(2434,1,626,'3','carl.stevsson@gmail.com',''),(2435,1,626,'4','AI is crazy… \r\n\r\nIt changed so much in our lives and it\'s only the beginning\r\n\r\nLike this new app that leverages WhatsApp HUGE customer base of 2,000,000,000 users (yes, that’s 2 billion)... \r\n\r\nTo sell anything on our behalf… \r\n\r\nIt starts by creating a ChatGPT4-powered marketplace… \r\nThat can sell anything for you… \r\n\r\nDigital, physical, or affiliate product… \r\n\r\nBut how actually is it going to sell it? \r\n\r\nBy using something called AI Agents… \r\n\r\nWhich is basically an AI sales team that will engage and interact with millions of potential customers… \r\n\r\nEven while you’re asleep… \r\n\r\nthis powerful app is just launched today, and you can grab it for a huge discount + insanely big bonus package\r\n\r\nClick Here To Secure Your Copy Of AI Spark At an Early Bird Discount + Huge Bonus Package… \r\nhttps://warriorplus.com/o2/a/fgld29/0\r\n\r\nWith AI Spark…\r\n\r\nCreate a marketplace for affiliate products in minutes without any coding or technical skills\r\n\r\nAI chatbots will sell your products to visitors automatically, even when you\'re not online\r\n\r\nDrive traffic to your marketplace for free with built-in features\r\n\r\nSell any affiliate products you want with ease\r\n\r\nLeverage the world’s biggest chatting platform “WhatsApp” to generate hundreds of on-demand customers \r\n\r\nNo transaction fees or monthly subscriptions, only pay for what you sell\r\n\r\nSay goodbye to the complicated and expensive processes of setting up a profitable online store. \r\n\r\nWith AI Spark, you can focus on making money with ease. \r\n\r\nDon\'t wait any longer, or you will end up paying monthly for it… \r\nhttps://warriorplus.com/o2/a/fgld29/0\r\n\r\nTo your success,\r\n\r\nCarl Stevsson',''),(2436,1,627,'6','Steve Lukke',''),(2437,1,627,'3','steve.lukke@gmail.com',''),(2438,1,627,'4','I’ve been doing something on the side..\r\n\r\nIt’s not making me rich, but it IS making me 5-10k per month.\r\n\r\nHow? By tapping into ChatGPT in a completely unique way, that NOBODY else is doing.\r\n\r\nYou see, people are frustrated when ChatGPT faces outages..\r\n\r\nAnd this has opened up a massive opportunity for internet marketers..\r\n\r\nThere’s a new app called BrainBox, and it lets you create a ChatGPT like app, but with ZERO outages.\r\n\r\nPeople are willing to pay handsomely for zero outages.\r\n\r\nIt has all the same powerful features of ChatGPT, and even more:\r\n\r\nWrite engaging, high quality content for videos, blogs, scripts, emails, newsletters, ebooks literally anything\r\n\r\nTurn plain text into engaging, professional videos that attract thousands of free hits of traffic\r\n\r\nGenerate the best AI designs that put 99% of graphic designers to shame, in just seconds\r\n\r\nDesign salespages, sales funnels, fully functional blogs\r\n\r\nProofread your writing without paying anything\r\n\r\nTranslate your writing to over 50 different languages and profit\r\n\r\nThat’s just a tiny fraction of all the features that BrainBox has to offer…\r\n\r\nIt’s just as powerful as ChatGPT, with 50+ extra features that make it even better…\r\n\r\nAnd you can offer this service to people, and easily rake in 5-10k per month..\r\n\r\nClick here to get BrainBox, and create your own ChatGPT like app >>> https://warriorplus.com/o2/a/v7z7t8/0\r\n\r\nTo your success,\r\n\r\nSteve Lukke',''),(2439,1,628,'6','Mike Peacock',''),(2440,1,628,'2','88868462677',''),(2441,1,628,'3','mikelida@gmail.com',''),(2442,1,628,'4','Hello, \r\n \r\nI have recently reviewed the juiceelectrical.co.nz for the ranking keywords and have discovered that your website could benefit from an enhancement. \r\n \r\nWe\'ll boost your standings naturally and securely, employing only the most up-to-date, white-hat techniques, while also providing regular updates and exceptional assistance. \r\n \r\nMore info: \r\nhttps://www.hilkom-digital.de/seo-expert-services/ \r\n \r\n \r\nRegards \r\nMike Peacock\r\n \r\nHilkom Digital SEO Experts',''),(2443,1,628,'5','Google',''),(2444,1,629,'6','Sergio Francis',''),(2445,1,629,'2','0345 7667001',''),(2446,1,629,'3','francis.sergio@outlook.com',''),(2447,1,629,'4','Automate your business for free with our software and schedule an free account setup call with our team..\r\n\r\nRegistration Link : https://linktr.ee/bizsolutionhub\r\n\r\nAccount setup call link : https://speakwith.us/kickoff\r\n\r\naccount setup call can done 24X7.',''),(2448,1,630,'6','Felix Lydon',''),(2449,1,630,'2','06-18763867',''),(2450,1,630,'3','felix.lydon@gmail.com',''),(2451,1,630,'4','Hey,\r\n\r\nI’ll be honest with you…\r\n\r\nIf you’re still spinning your wheels, and \r\nhave no results to show for it…\r\n\r\nI’m sure you’ll find this short email\r\nof high interest.\r\n\r\nHere’s why:\r\n\r\nWhat if I told you that you could tap into\r\nthe endless potential of AI…\r\n\r\nTo exploit YouTube and finally generate\r\n$896.34 per day on autopilot without…\r\n\r\nCreating videos…\r\nPaying for traffic…\r\nPutting in extra work…\r\nComplicating your life…\r\n\r\nAll thanks to one of the MOST powerful\r\nAI tools that I’ve ever seen…\r\n\r\n=> Click Here To Discover “Striker” https://shorturl.at/ghkEJ \r\n\r\nIf you’re sick and tired of complicated\r\napps, you’re going to love this…\r\nWith just 3 clicks of your mouse, you’ll\r\nbe able to not only find lucrative, hidden\r\n“money pockets” on YouTube…\r\nBut also generate INSANE amounts of\r\nFREE traffic that you can redirect to\r\nANY link of your choice…\r\n\r\nThis means:\r\n\r\nEasy commissions…\r\nEffortless traffic…\r\nGetting paid every 24 hours…\r\nThe end of the 9-5 madness…\r\n\r\n\r\n=> Click Here To Get Started Now https://shorturl.at/ghkEJ \r\n\r\nBut here’s probably the most interesting\r\nthing…\r\n\r\nIt’s been reported that 100 out of 100 beta\r\ntesters have made money using Striker…\r\n\r\nThat’s a mind-bending 100% success rate…\r\n\r\nWhich can be translated into the following:\r\n\r\nMaking money with this unique and \r\nout-of-the-box software is as easy as\r\ngetting candy from a baby…\r\n\r\nSo, if you want to stop banging your head\r\nagainst the wall because you fail over\r\nand over again…\r\n\r\nThis is your VIP pass to endless daily\r\ncommissions…\r\n\r\n=> Click Here To Grab “Striker” https://shorturl.at/ghkEJ \r\n\r\nTalk soon,\r\n\r\nFelix',''),(2452,1,631,'6','Carl Stevsson',''),(2453,1,631,'2','0385 3591350',''),(2454,1,631,'3','carl.stevsson@gmail.com',''),(2455,1,631,'4','Do you feel that you need someone to help you in your life?\r\n\r\nYes you do.\r\n\r\nHere I am introducesing Robin AI to be your Personal A.I. Assistant.\r\n\r\nClick here >>> https://warriorplus.com/o2/a/frcp6z/0\r\n\r\nTo your success,\r\n\r\nCarl Stevsson',''),(2456,1,632,'6','James Roser',''),(2457,1,632,'2','031 972 98 62',''),(2458,1,632,'3','judi.miles@hotmail.com',''),(2459,1,632,'4','With built-in Chat GPT, this new A.I. tool will rank your website. Google approved.\r\n\r\nTo watch it in action, visit https://cutt.ly/e4QrKiA\r\n\r\nStart ranking your website today and get free traffic!\r\nJames Roser\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(2460,1,633,'6','Carl Stevsson',''),(2461,1,633,'2','0351 56 95 59',''),(2462,1,633,'3','carl.stevsson@gmail.com',''),(2463,1,633,'4','If you\'re looking to start...\r\n\r\nScale or grow...\r\n\r\nA digital business in 2020 and beyond...\r\n\r\nMaster online marketer, Matt Bacak, just revealed how he built a 7-figure online business using nothing but \"ethical email marketing\" to drive sales & commissions...\r\n\r\nPlus, how he did it WITHOUT creating a product, without fulfilling services and without running ads. Ever.\r\n\r\nThe best part?\r\n\r\nHe only works 30 MINUTES PER DAY...\r\n\r\n...AND he generates sales automatically!\r\n\r\nTrust me, this is not like ANY email marketing course or method you\'ve ever seen before...\r\n\r\nMatt is known for challenging the status quo and testing everything -- even if it means going against the grain...\r\n\r\nIn fact, sometimes the best results are gotten when you do the OPPOSITE of what everybody else does...\r\n\r\nThe Secret Email System is a counterintuitive approach to creating and running an online business, specifically the freedom/lifestyle model, that allows you to build a profitable long term business that gives you the freedom, fun & adventure...\r\n\r\nCheck it out and grab your copy before the price goes up again...\r\n\r\n(You\'ll SAVE $31.40 if you act quickly)\r\n\r\nGet instant access and secure your savings here:\r\nhttps://warriorplus.com/o2/a/ktrjgl/0\r\n\r\nTo your success,\r\n\r\nCarl Stevsson',''),(2464,1,634,'6','Steve Johnson',''),(2465,1,634,'2','052 462 93 98',''),(2466,1,634,'3','steve.johnson@gmail.com',''),(2467,1,634,'4','RPM 3.0 is FINALLY ready! With new income streams, higher converting pages and many new features, this is not the RPM you knew and loved, this is a new beast entirely... \r\n\r\nUsing a new autotag technology, the user can have a full system set up without ever editing anything. \r\n\r\nUsing our unique affiliate marketing system. You can earn fromn dozens of income streams using one main link that tracks across all the income streams we have.\r\n\r\nClick on the link here: https://warriorplus.com/o2/a/w8rw39/0\r\n\r\nTo your success,\r\n\r\nSteve Johnson',''),(2468,1,635,'6','Tom Parker',''),(2469,1,635,'2','727-399-7323',''),(2470,1,635,'3','carmody.colette38@outlook.com',''),(2471,1,635,'4','I am shutting activeleads.com.au down in July.\r\nI\'m retiring early as I\'ve made enough money and it\'s time for my family!\r\n\r\n\r\nIt would be wrong to just archive my hard work, so I have now made my entire Australian leads database available for a one-time fee.\r\n\r\n\r\njuiceelectrical.co.nz is part of my list so it works, that\'s how I\'ve reached you. Check it out before it\'s gone.\r\nActiveLeads.com.au\r\n\r\n\r\nTo Your Success,\r\nTom Parker | Active Leads',''),(2472,1,636,'6','Billy Anders',''),(2473,1,636,'2','0312 4202005',''),(2474,1,636,'3','billy.anders@gmail.com',''),(2475,1,636,'4','Hey,\r\n\r\nWhat if you could tap into the $3 TRILLION freelancing industry and claim your slice of the pie? TaskAI is the key that unlocks your full earning potential and propels you towards financial abundance.\r\n\r\nPicture this: You\'re effortlessly providing hundreds of different services to your customers, all thanks to the power of AI. No more struggling to keep up with the demand or spending endless hours on mundane tasks. TaskAI does it all for you, leaving you with more time, more money, and more freedom.\r\n\r\nBut that\'s not all. TaskAI\'s AI-powered marketplace auto-ranks on Google, ensuring a steady stream of free traffic to your services. Say goodbye to hustling for clients and hello to a flood of high-paying customers.\r\n\r\nAre you ready to take control of your financial destiny and live life on your own terms?\r\n\r\nClick here to discover how TaskAI can make it a reality: \r\n\r\n===> https://shorturl.at/huvwV \r\n\r\n\r\nTo your incredible success,\r\n\r\nBilly',''),(2476,1,637,'6','Chau Rayford',''),(2477,1,637,'2','26-78-63-79',''),(2478,1,637,'3','rayford.chau75@gmail.com',''),(2479,1,637,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/sywma6z3\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(2480,1,638,'6','WilliamAutop',''),(2481,1,638,'2','88125457441',''),(2482,1,638,'3','mohamed.yaiche@heig-vd.ch',''),(2483,1,638,'4','The Time is Now: Invest in 15 Altcoins and Make $5,000,000 http://altgem.myparisevents.com/coinmorph',''),(2484,1,638,'5','Human',''),(2485,1,639,'6','James Walden',''),(2486,1,639,'3','selfhelponlinenow@gmail.com',''),(2487,1,639,'4','Greetings,\r\n\r\nDo you have a great product or service that you want to sell online? If so, you need Shopify. Shopify is the world\'s leading ecommerce platform, \r\nand it can help you set up and manage your online store in minutes. \r\n\r\nWith Shopify, you can:\r\n• Create a beautiful, professional-looking store\r\n• Sell products anywhere in the world\r\n• Accept payments from major credit cards and PayPal\r\n• Track your inventory and sales\r\n• Get help from Shopify\'s 24/7 support team\r\n\r\nShopify is more than just a shopping cart. It\'s a complete ecommerce solution that can help you grow your business. Here are just a few of the ways Shopify can help you:\r\n• Boost your sales. Shopify\'s powerful marketing tools can help you reach more customers and increase your sales. You can create email campaigns, run social media ads, and even offer discounts and promotions.\r\n• Improve your customer service. Shopify makes it easy to provide excellent customer service. You can chat with customers live, answer their questions via email, and even let them track their orders.\r\n• Expand your reach. Shopify lets you sell your products anywhere in the world. You can even set up your store in multiple languages and currencies.\r\n• Save time and money. Shopify takes care of the technical stuff so you can focus on running your business. You don\'t need to worry about hosting, security, or maintenance.\r\n\r\nDon\'t miss out on the opportunity to grow your business with Shopify. Start your $1 per month for the first 3-month trial today and see for yourself how Shopify can help you succeed.\r\n\r\n***Limited time offer:\r\nFor a limited time, you can get started with Shopify for just $1 per month for the first 3 months. That\'s a savings of over 90% off the regular price. So, what are you waiting for? Sign up for your free trial today!\r\n\r\nShopify is the best way to start and grow your ecommerce business. With its powerful features, affordable pricing, and excellent customer support, Shopify can help you achieve your business goals. \r\n\r\nSign up for your $1 a month for 3-month trial today and see for yourself how Shopify can help you succeed. If you have any questions, send me a message. I am always glad to help.\r\n\r\nhttps://shopify.pxf.io/3e9dor\r\n\r\nRegards, \r\nJames Walden\r\nContent Creator/Tech Consultant\r\nyoutube.com/@selfhelponline\r\ntiktok.com/@selfhelponlinenow\r\ninstagram.com/selfhelponlinenow\r\npinterest.com/jcwaldenjr',''),(2488,1,640,'6','Karolin Swan',''),(2489,1,640,'2','079 3126 4563',''),(2490,1,640,'3','swan.karolin@gmail.com',''),(2491,1,640,'4','I\'m Daniel from Keygenio.com. We are a supplier specialized in software keys, I believe our top quality and excellent after-sales service will help you be more competitive in the market, and we sincerely invite you to experience our products and service. \r\n\r\nWe have our own platform: https://www.keygenio.com/ \r\n\r\nDiscount code: KEYGENIO20 \r\n\r\nDo not Hesitate to contact me directly: contact@keygenio.com \r\n\r\n\r\nWindows 10/11 Pro \r\nWindows 10/11 Home \r\nWindows 10/11 Pro Oem \r\nWindows 10/11 Home Oem \r\nOffice 2016/2019/2021 Pro Plus 1pc bind \r\nOffice 2016/2019/2021 Pro Plus \r\nOffice 2016/2019/2021 Home Business for mac \r\n\r\nAnd much more products',''),(2492,1,641,'6','Perry Gariepy',''),(2493,1,641,'3','gariepy.perry@gmail.com',''),(2494,1,641,'4','Are you struggling to come up with new and engaging content for your website or social media channels? Writer\'s block can be a real problem for busy business owners. \r\n\r\nFortunately, there is a solution. With WordAi, you can create high-quality, unique content in minutes using the power of AI. \r\n\r\nSay goodbye to writer\'s block and hello to fresh, engaging content that your audience will love. \r\n\r\nClick the link to check out WordAi and start creating amazing content today!\r\n\r\nhttps://jmk84463.systeme.io/98399461-6878f83b\r\n\r\nThanks,\r\n\r\nDavid \r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nOpt-Out Statement: To unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2495,1,642,'6','Shela Cuper',''),(2496,1,642,'2','0281-8951621',''),(2497,1,642,'3','mywebsitefixed@pps.bz',''),(2498,1,642,'4','Happy 4th! I noticed a few things wrong with your Website. I\'m willing to volunteer my time to help fix em. Email me: Results@SpinningTopMarketing.com.\r\nCHEERS!',''),(2499,1,643,'6','Anderson Stacey',''),(2500,1,643,'2','902-363-2452',''),(2501,1,643,'3','anderson.stacey@hotmail.com',''),(2502,1,643,'4','Hi juiceelectrical.co.nz Owner.,\r\n\r\nIntroducing AdCreative.ai - the premier AI-powered advertising platform that\'s taking the industry by storm!\r\n\r\nAs a Global Partner with Google and a Premier Partner, we have exclusive access to the latest tools and insights to help your business succeed. And now, we\'re offering new users $500 in free Google Ad Credits to get started with advertising - no upfront costs, no hidden fees.\r\n\r\nWith AdCreative.ai, you\'ll enjoy advanced AI algorithms that optimize your campaigns for maximum impact, as well as seamless integration with Google Ads for unparalleled performance.\r\n\r\nDon\'t wait - sign up for our free trial today a https://free-trial.adcreative.ai/seo2650 and experience the power of AdCreative.ai for yourself!',''),(2503,1,644,'6','James Roser',''),(2504,1,644,'2','(02) 6170 5020',''),(2505,1,644,'3','prenzel.herbert@hotmail.com',''),(2506,1,644,'4','With built-in Chat GPT, this new A.I. tool will rank your website. Google approved.\r\n\r\nTo watch it in action, visit https://cutt.ly/e4QrKiA\r\n\r\nStart ranking your website today and get free traffic!\r\nJames Roser\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(2507,1,645,'6','Anthony Neely',''),(2508,1,645,'2','330-675-5815',''),(2509,1,645,'3','anthony.neely@gmail.com',''),(2510,1,645,'4','Audiobook is now the BIG goldmine, and people are making huge profits with it on a daily basis…\r\n\r\nSadly, creating and selling them can be tough and super-expensive. \r\n\r\nBut I have got good news for you…\r\n\r\nMeet Vox AI\r\n\r\n\r\nThe World’s First ChatGPT4-Powered AI App That Turns Any \"Text, URL, Website, Article, Keyword, Blog, Document or PDF\" into High-Quality Audiobooks or Podcast In 660 Different Voices & 80 Languages…\r\n\r\n>> Click Here To See The Live Demo https://shorturl.at/moEG7 \r\n\r\nWith Vox AI, you can generate content on any topic using “Siri-Like” voice command & turn it to Audiobooks, Podcasts, or Voiceovers for VSL, TV Commercial, Webinars, Sales Videos, etc\r\n\r\n...Publish To The Built-In Marketplace with 2.3M active users, Sell & Receive Instant Payments Via Multiple Methods, including Paypal, Stripe, Cards, and Bank Accounts…\r\n\r\n\r\n\r\n>> Click Here to Get Instant Access to Vox AI and Sell On Automation. https://shorturl.at/moEG7 \r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\nEven if you are a newbie with zero knowledge… VoxAI is your best shot.\r\n\r\nYou can easily Activate VoxAI in 3 simple steps & start your audiobook empire:\r\n\r\nStep 1: Login - Login to VoxAI Cloud-Bases App\r\n\r\nStep 2: Generate- Enter a Keyword, article, PDF, or even a URL… and VoxAI will turn them into a Full Audiobook or Podcast\r\n\r\nStep 3: Publish- publish your audiobooks on our built-in marketplace with 2.3 million active users.\r\n\r\nStep 4: Start Profiting as soon as you are done\r\n\r\nIt is as simple as that.\r\n\r\n>> Get Lifetime Access Here https://shorturl.at/moEG7 \r\n\r\nWith Vox AI, you can…\r\n\r\n\r\nCreate Your First Audiobook Within 2 Minutes\r\nTurn Any Article, Website, Url, PDF or Blog Into Audiobook, Podcast, VSL, Audio/Music Track…\r\nCreate A Podcast With Human Voice Without Recording\r\nChoose From 660 Real Human Voices \r\nCreate Voices In 80+ Different Languages\r\nComes With 50+ Built-In AI Features That Will Make Your Life 100x Easier \r\nWe Don’t Even Write Scripts, We Let AI Do It For Us.\r\nPublish Your AudioBook To Our Marketplace With 2.3 Million Active User\r\nPublish your AudioBook Or Podcast To (Spotify, Audible, Scribe)\r\nNo Complicated Setup - Get Up And Running In 2 Minutes\r\n\r\n…All these, and many more without Paying Any Monthly Fee\r\n\r\n>> Click Here To Get Earlybird Access (Ends In 2 Hours From Now) https://shorturl.at/moEG7 \r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\n>> Click here to get Lifetime access to VoxAI and start profiting from day one. https://shorturl.at/moEG7 \r\n\r\nAnthony',''),(2511,1,646,'6','Karl Eriksson',''),(2512,1,646,'2','606-297-3031',''),(2513,1,646,'3','karl.eriksson@gmail.com',''),(2514,1,646,'4','Introducing VoxAI - Unleash the Power of AI-Generated Audiobooks!\r\n\r\nCreate captivating audiobooks and more with VoxAI, the groundbreaking digital product that harnesses the power of AI and over 600 human-like voices. Turn your written content into immersive audio experiences and monetize your creations to earn passive income. Experience the future of audio creation with VoxAI today!\r\n\r\nVisit our website and unlock limitless possibilities with VoxAI now: https://warriorplus.com/o2/a/z036nw/0',''),(2515,1,647,'6','Karl Eriksson',''),(2516,1,647,'2','06-32401636',''),(2517,1,647,'3','karl.eriksson@gmail.com',''),(2518,1,647,'4','Introducing VoxAI - Unleash the Power of AI-Generated Audiobooks!\r\n\r\nCreate captivating audiobooks and more with VoxAI, the groundbreaking digital product that harnesses the power of AI and over 600 human-like voices. Turn your written content into immersive audio experiences and monetize your creations to earn passive income. Experience the future of audio creation with VoxAI today!\r\n\r\nVisit our website and unlock limitless possibilities with VoxAI now: https://warriorplus.com/o2/a/z036nw/0',''),(2519,1,648,'6','Wanda Bunnell',''),(2520,1,648,'2','0330 2330639',''),(2521,1,648,'3','bunnell.wanda@gmail.com',''),(2522,1,648,'4','Hello juiceelectrical.co.nz Owner!,\r\n\r\nIntroducing AdCreative.ai - the premier AI-powered advertising platform that\'s taking the industry by storm!\r\n\r\nAs a Global Partner with Google and a Premier Partner, we have exclusive access to the latest tools and insights to help your business succeed. And now, we\'re offering new users $500 in free Google Ad Credits to get started with advertising - no upfront costs, no hidden fees.\r\n\r\nWith AdCreative.ai, you\'ll enjoy advanced AI algorithms that optimize your campaigns for maximum impact, as well as seamless integration with Google Ads for unparalleled performance.\r\n\r\nDon\'t wait - sign up for our free trial today a https://free-trial.adcreative.ai/seo2650 and experience the power of AdCreative.ai for yourself!',''),(2523,1,649,'6','Gregg Lundy',''),(2524,1,649,'2','03.74.55.00.37',''),(2525,1,649,'3','gregg.lundy@hotmail.com',''),(2526,1,649,'4','Hi, I\'m sending you this message via your contact form on your website at juiceelectrical.co.nz. 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',''),(2527,1,650,'6','Eric Jones',''),(2528,1,650,'2','555-555-1212',''),(2529,1,650,'3','ericjonesmyemail@gmail.com',''),(2530,1,650,'4','Hello juiceelectrical.co.nz Owner!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2531,1,651,'6','Alex Sham',''),(2532,1,651,'2','+13322224908',''),(2533,1,651,'3','sales@metaagency.cc',''),(2534,1,651,'4','Hi, my name is Alex.S, I have noticed something wrong with your website and I want to volunteer for free, do you have a second to chat about it? Here\'s my phone number, call or text me when you have a second: +13322224908\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com',''),(2535,1,652,'6','Lorraine Bermudez',''),(2536,1,652,'2','03.94.20.00.34',''),(2537,1,652,'3','degraves.hye@gmail.com',''),(2538,1,652,'4','Hi juiceelectrical.co.nz webmaster,\r\n\r\nExciting news! We matched you with this current job opportunity. As one of many top company opportunities, this particular assignment requires an in-home writer who has a computer setup at their desk ready to go:\r\n\r\nProofreading movie scripts or books. You can find spelling and grammar mistakes and be paid to work from the comfort of your home.\r\n\r\nWriting blog posts & articles. With thousands of topics to write about, it\'s perfect for someone who enjoys writing—though there is no minimum word count requirement.\r\n\r\nWrite reviews of websites. You simply check out new websites and give feedback on how user-friendly the site is while providing suggestions on what they could do differently/better when making their website next time around.\r\n\r\n-Here\'s a brief rundown on the position:\r\n-Minimum 5 hours per week (flexible time slots).\r\n-Remote, so available to people in your country\r\n-Salary starts at $25 - $35 per hour.\r\n-Training provided\r\n\r\nYou\'ll work directly with this small company based in your country, which will give you assignments related to writing content for their blog and social media accounts, proofreading their drafts before publishing them online, or reviewing other websites.\r\n\r\nAll you have to do is enter some basic information about yourself in this link in order to start being paid today: https://www.trustrose.com/jobopportunity .\r\n\r\nRegards,\r\n\r\nLorraine Bermudez\r\nMarket Development | Trustrose\r\n\r\nUnsubscribe: https://www.trustrose.com/unsubscribe',''),(2539,1,653,'6','James Roser',''),(2540,1,653,'2','032 989 84 60',''),(2541,1,653,'3','omahony.kimberly@gmail.com',''),(2542,1,653,'4','This is the best priced A.I. tool on the market right now.\r\n\r\nUnlimited writing. It writes all your ads, blogs, and SEO content for you.\r\n\r\nWhy pay Google for ads when you can rank for free 30X Faster using this A.I. tool?\r\n\r\nThey\'re finally offering a free trial, visit https://cutt.ly/e4QrKiA\r\n\r\nAutomate all the hard stuff!\r\nJames Roser\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://urloptout.com/optout1/?site=juiceelectrical.co.nz',''),(2543,1,654,'6','Cecelia',''),(2544,1,654,'2','04.49.16.32.75',''),(2545,1,654,'3','info@juiceelectrical.co.nz',''),(2546,1,654,'4','New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.co\r\n\r\nThe Best, \r\n\r\nCecelia',''),(2547,1,655,'6','Adelaide Venables',''),(2548,1,655,'2','052 423 50 54',''),(2549,1,655,'3','adelaide.venables@gmail.com',''),(2550,1,655,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2551,1,656,'6','Mark Gillberg',''),(2552,1,656,'2','06-48224492',''),(2553,1,656,'3','mark.gillberg@gmail.com',''),(2554,1,656,'4','Hey, \r\n\r\n$795.56 Per Day Without Selling Anything?\r\n\r\nYou see the vast majority of marketers\r\nare yet to make a single dime online…\r\n\r\nAnd the reason for this is simple:\r\n\r\nThey try to sell stuff to everyone\r\nand their grandma!\r\n\r\nI know, this goes against what you’ve \r\nbeen told by most gurus.\r\n\r\nBut let me tell you, no matter what others say…\r\n\r\nIf you try to sell stuff on the Internet to\r\ntotal strangers, you’ll end up struggling.\r\n\r\nBut what if you could pocket $795.56 per\r\nday with FREE traffic just like we do…\r\n\r\n…Without selling anything?\r\n\r\nYup, all thanks to a brand-new, powerful\r\nAI-powered, cloud app\r\n\r\n\r\n=> Click Here To Discover “Apex”: https://shorturl.at/yzAQR \r\n\r\n\r\nThis one-of-a-kind, revolutionary app \r\nautomatically creates “money sites,” \r\npre-fills them with high-quality, human-like \r\ncontent & then sends thousands of targeted\r\nFREE clicks.\r\n\r\nIn less than 23 seconds!\r\n\r\nIf you’re a total beginner looking to make\r\nyour first buck online, there’s no doubt that\r\nyou’ll find this unique software life-changing.\r\n\r\n\r\n=> Click Here To Get Started Now: https://shorturl.at/yzAQR \r\n\r\n\r\n\r\nDon\'t you think it\'s time to finally capitalize on the \"AI Craze\"?\r\n\r\nWell, with \"Apex\" now it\'s possible…\r\n\r\nYou can start using this out-of-the-box,\r\ntransformative app in the next 4 minutes\r\n\r\nAnd begin churning out profitable \"money sites\"\r\nwith just a few clicks of your mouse!\r\n\r\n\r\n=> Click Here To Grab “Apex” Now: https://shorturl.at/yzAQR \r\n\r\n\r\nRight now, “Apex” is in launch mode and is\r\nridiculously priced!\r\n\r\nBut, the price will increase once the launch phase is\r\nover, and you’ll have to pay monthly in order\r\nto use it.\r\n\r\nDon’t let that happen! \r\nGet it now, while you can!\r\n\r\n=> Click Here To Grab “Apex” Now: https://shorturl.at/yzAQR \r\n\r\nI’ll see you inside,\r\n\r\nMark',''),(2555,1,657,'6','Eric Jones',''),(2556,1,657,'2','555-555-1212',''),(2557,1,657,'3','ericjonesmyemail@gmail.com',''),(2558,1,657,'4','Hi juiceelectrical.co.nz Webmaster!\r\n\r\nThis is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2559,1,658,'6','Brian Bacu',''),(2560,1,658,'2','02108388813',''),(2561,1,658,'3','b_bacu@yahoo.com',''),(2562,1,658,'4','Hi,\r\nThe cable for fiber internet from outside seemed bended the enable guy to install the fiber couldnt push through it even they used a blower. Is someone available to look into it thanks. Address would be 2/365 Gloucester st, Linwood.',''),(2563,1,658,'5','google',''),(2564,1,659,'6','AnnaLox',''),(2565,1,659,'2','81842453172',''),(2566,1,659,'3','annaLox@rawbarista.com',''),(2567,1,659,'4','Hіǃ\r\nI\'vе notіced thаt mаny guуs рrefеr regular gіrls.\r\nΙ applаudе the mеn out therе who had the bаllѕ tо еnjоy thе lovе оf mаnу wоmen and сhооse the оnе that hе knew wоuld be his bеst friеnd during the bumpу and сrazу thіng саllеd lifе.\r\nI wantеd to be thаt frіеnd, not juѕt а stаble, rеliаble and bоrіng housеwifе.\r\nI аm 22 уеаrs old, Аnna, from thе Сzеch Rеpubliс, know Εnglish lаnguagе аlso.\r\nAnywау, уоu can find my prоfile here: http://sampmelumanelen.ga/idl-99791/',''),(2568,1,659,'5','Google',''),(2569,1,660,'6','Jim Myers',''),(2570,1,660,'3','jim.myers@gmail.com',''),(2571,1,660,'4','Hey,\r\n\r\nI tried to get in touch with you but I couldn’t get through. Everything ok?\r\n\r\nI wanted to quickly tell you that CopyMate is closing it\'s lowest price $12 ever deal now\r\n\r\nIt is top trending app and now my favourite too. CopyMate price is already increased to $19 and tonight again it is going to increase to $28 and then it will be turning to $197/month.\r\n\r\nRight now you can get it at its lowest price ever $12 and good new is that I have got a $7 OFF coupon for you, use COPYMATE7OFF\r\n\r\nGet CopyMate Right Now Before It Increased To $28: https://shorturl.at/gmPSX \r\n\r\n\r\nFull Scoop:\r\n\r\nGPT4 is the most powerful A.I in the world, and there is only one software CopyMate which uses GPT4 to Create\r\n\r\n[+] Website content\r\n[+] Email campaigns\r\n[+] Social Media Posts\r\n[+] Videos and Video Scripts\r\n[+] Content for Videos\r\n[+] Articles, Ads, Reports, Sales Pages, and much more\r\n \r\n\r\n==> Watch the demo now: https://shorturl.at/gmPSX \r\n\r\n\r\nIt creates all kind of AI content, graphics, programming code, video scripts, emails, social media post, in seconds, literally.\r\n\r\nI thought you could use it in your business, or even sell it as a service to clients for some extra cash.\r\n\r\nCheck it out here:\r\n\r\n\r\n> https://shorturl.at/gmPSX \r\n\r\n\r\nDon\'t wait any longer, snatch up this amazing opportunity before it\'s gone and becomes a monthly plan.\r\n\r\n\r\nSincerely, \r\n\r\nJim',''),(2572,1,661,'6','Alex Sham',''),(2573,1,661,'2','+13322224908',''),(2574,1,661,'3','sales@metaagency.cc',''),(2575,1,661,'4','Hi, my name is Alex.S, I have noticed something wrong with your website and I want to volunteer for free, do you have a second to chat about it? Here\'s my phone number, call or text me when you have a second: +13322224908\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com',''),(2576,1,662,'6','Teri Hales',''),(2577,1,662,'2','(54) 9256-6707',''),(2578,1,662,'3','teri.hales@gmail.com',''),(2579,1,662,'4','Are you struggling to come up with new and engaging content for your website or social media channels? Writer\'s block can be a real problem for busy business owners. \r\n\r\nFortunately, there is a solution. With WordAi, you can create high-quality, unique content in minutes using the power of AI. \r\n\r\nSay goodbye to writer\'s block and hello to fresh, engaging content that your audience will love. \r\n\r\nClick the link to check out WordAi and start creating amazing content today!\r\n\r\nhttps://jmk84463.systeme.io/98399461-6878f83b\r\n\r\nThanks,\r\n\r\nDavid \r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nOpt-Out Statement: To unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2580,1,663,'6','Nu rpx Drxqkr',''),(2581,1,663,'3','ilana.mcdonough@msn.com',''),(2582,1,663,'4','If your broke, you want to see this\r\n\r\nwww.payingsocialmediajobs.info',''),(2583,1,664,'6','SEO Agent',''),(2584,1,664,'2','0349 1838970',''),(2585,1,664,'3','abrole@seoagent.io',''),(2586,1,664,'4','Are you the owner of juiceelectrical.co.nz ? I stumbled upon your website but noticed it was hard to find on Google, and so I\'d love to volunteer my time to help you fix some of those issues.\r\n\r\n Give me a call or text at (631) 203-6919 and we can chat about it.\r\n\r\nIn the meantime heres a quick, free audit for your site and found a few areas that could be improved to enhance your visibility, just go here:\r\n\r\nhttps://seoagent.io/free-seo-website-audit-report/\r\n\r\n\r\nFeel free to use these insights to boost your online presence. No strings attached - use the report as you wish.\r\n\r\nBest of luck with your business!\r\n\r\nAman\r\nabrole@seoagent.io',''),(2587,1,665,'6','SEO Agent',''),(2588,1,665,'2','(16) 8623-7066',''),(2589,1,665,'3','abrole@seoagent.io',''),(2590,1,665,'4','Are you the owner of juiceelectrical.co.nz ? I stumbled upon your website but noticed it was hard to find on Google, and so I\'d love to volunteer my time to help you fix some of those issues.\r\n\r\n Give me a call or text at (631) 203-6919 and we can chat about it.\r\n\r\nIn the meantime heres a quick, free audit for your site and found a few areas that could be improved to enhance your visibility, just go here:\r\n\r\nhttps://seoagent.io/free-seo-website-audit-report/\r\n\r\n\r\nFeel free to use these insights to boost your online presence. No strings attached - use the report as you wish.\r\n\r\nBest of luck with your business!\r\n\r\nAman\r\nabrole@seoagent.io',''),(2591,1,666,'6','Liam Urban',''),(2592,1,666,'3','liam.urban@gmail.com',''),(2593,1,666,'4','Hey\r\n\r\nI wanted to share some exciting news with you about a powerful tool that\r\nrevolutionizes the way you create attention grabbing graphics, videos, arts etc for you & your clients.\r\n\r\nYes,\r\nNow you too can use AI to create mesmerizing marketing assets like a pro.\r\n\r\nSee Vision AI In Action Here- https://shorturl.at/hyzHZ \r\n\r\nFirst To Universe - Explainable AI App That Creates Mind Blowing Text-to-Video, Vision Videos, Image Talking Videos, Incredible Graphic Arts, \r\nAge Changer Videos, Ai Text Paint Images, Ai Hair Styler, Ai Image Unblur, Multi Image Subject Generation, Human Instructions Editor, \r\nAi Illustration, Pointing People Generator, Ai Avatar Generator, Ai Vision Image, & Much Much More In Less Than 60 Minutes......\r\n\r\nCheckout Some Of Its Amazing Features-\r\n\r\nFirst To Market, Cutting Edge AI Technology That’s The Future Of Intelligent Solutions\r\nCreate 100% Unique AI Avatars Of Any Image & Get 100X More Visibility For Your Offers\r\nInstantly Convert Any Random Text Into Stunning 4K and 8k HD Video & Get Max Attention\r\nMake Any Image Into Human Like Talking Image & Attract Hordes of Audience In 3 Clicks\r\nSmartly Convert Any Ordinary Photo Into Eye Catchy Live Image In Any Niche\r\nTransform Any Outdated Image Into 100% Fresh, Audience Friendly AI Robotic Image\r\nCreate Multiple Versions Of Any Existing Photo & Grab More Eyeballs In A Flash\r\nChange Age Of Any Photo And Make It Look Young, Old Or Grown Up Instantly Using Style Based Regression Model \r\nCrush your Competition By Converting An Existing Video Into Attention Grabbing AI Video\r\nRestore Faces Inside Any Blurred Image & Make It As Clear As Morning Sky\r\nLet Customers Literally Beg You In Exchange For Your Premium Services\r\nCreate Unique Own Songs Easily With Your Voice Commands Or By Entering Any Keyword\r\nOffer Premium Video & Graphic Creation Services On Top Platforms & Make A Cool Passive Income\r\nCreate Your Own AI-Generated Songs Site With Just One Click- Easily Upload Your Songs And Charge Top Dollar By Selling Them To A Wide Audience\r\nTotally Unique & Innovative Tech That Creates Stunning Marketing Assets For You & Your Clients In Seconds\r\nConvert Any Blurred Image Into 100% Visible & Lure Max Visitors To Your Offers\r\nUse Our Innovative Tech To Attract More Eyeballs & Make 10 X More Appealing Assets\r\nChange Hair Style For Any Image & Make It More Visually Enticing...\r\n& tons of other benefits\r\n\r\nWanna know more?\r\n\r\nSEE THE FULL SCOOP HERE- https://shorturl.at/hyzHZ \r\n\r\nSo, what’s the point of waiting?\r\n\r\nThanks,\r\nLiam',''),(2594,1,667,'6','Mike Finch',''),(2595,1,667,'2','87891743937',''),(2596,1,667,'3','mikeDilkmaida@gmail.com',''),(2597,1,667,'4','Hi there, \r\n \r\nI have recently conducted an analysis of juiceelectrical.co.nz for onsite errors and discovered that your website presents several issues that require attention. \r\n \r\nRegardless of the product or service you are offering or selling, possessing a site that is inadequately optimized and rife with errors and bugs will not aid in boosting your rankings. \r\n \r\nLet us fix your WordPress website problems today and improve your search engine rankings. \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/product/wordpress-seo-audit-and-fix-service/ \r\n \r\n \r\nRegards \r\nMike Finch',''),(2598,1,667,'5','Google',''),(2599,1,668,'6','Tim St Leon',''),(2600,1,668,'2','079 1169 3367',''),(2601,1,668,'3','tim.stleon@msn.com',''),(2602,1,668,'4','Hi there\r\n\r\nMy name is Mike St Leon and I`m a search engine optimization expert at Hilkom Digtal\r\n\r\nUpon Further review of juiceelectrical.co.nz`s backlink profile, I noticed a moderate percentage of toxic links.\r\n\r\nHaving your backlink profile in order is curcial for your position in the search results.\r\n\r\nAllow us to remove any harmful backlinks that may be linking to your site, thus ensuring you will achieve a higher ranking for your keywords within a few weeks.\r\n\r\nStart recovering your ranks today, for free:\r\nhttps://www.hilkom-digital.de/professional-linksprofile-clean-up-service/\r\n\r\nRegards\r\nMike St Leon\r\nhttps://www.hilkom-digital.de/',''),(2603,1,669,'6','Elise Moore',''),(2604,1,669,'2','213-558-6426',''),(2605,1,669,'3','elise@recordvideo.link',''),(2606,1,669,'4','Hey! Sorry to bug again -- \r\n\r\nAre you still interested in promoting your business online with a custom-made video?\r\n\r\nHere\'s the link again:\r\nhttps://recordvideo.link/re/?=juiceelectrical.co.nz\r\n\r\nGreat way to gain traction online… especially during these challenging times!\r\n\r\nElise\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n410 East Santa Clara Street Suite 824 \r\nSan Jose, CA 95113\r\n \r\nTo unsubscribe click here:\r\nhttps://recordvideo.link/out.php/?site=juiceelectrical.co.nz',''),(2607,1,671,'6','Byron Wylly',''),(2608,1,671,'2','88 289 38 45',''),(2609,1,671,'3','wylly.byron24@gmail.com',''),(2610,1,671,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2611,1,673,'6','Inge Atkins',''),(2612,1,673,'2','0680 428 93 72',''),(2613,1,673,'3','atkins.inge77@gmail.com',''),(2614,1,673,'4','Are you struggling to come up with new and engaging content for your website or social media channels? Writer\'s block can be a real problem for busy business owners. \r\n\r\nFortunately, there is a solution. With WordAi, you can create high-quality, unique content in minutes using the power of AI. \r\n\r\nSay goodbye to writer\'s block and hello to fresh, engaging content that your audience will love. \r\n\r\nClick the link to check out WordAi and start creating amazing content today!\r\n\r\nhttps://jmk84463.systeme.io/98399461-6878f83b\r\n\r\nThanks,\r\n\r\nDavid \r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nOpt-Out Statement: To unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2615,1,674,'6','Scott Johnson',''),(2616,1,674,'2','021 582 55 16',''),(2617,1,674,'3','scott.johnson@gmail.com',''),(2618,1,674,'4','Did you notice??\r\n\r\nThe traffic landscape has\r\nCHANGED drastically in 2023!\r\n\r\nPeople are not reading long\r\nblog posts, they are not watching\r\nlong videos like they used to..\r\n\r\nInstead they\'re watching short, \r\nsnackable 15-30 sec videos on \r\nYouTube, FB, TikTok..\r\n\r\nAnd If you don\'t want to get left \r\nin the dust, but LEVERAGE it to \r\ngenerate 10,000s of visitors \r\nper day, then..\r\n\r\n==> GO HERE & START RIGHT NOW.. https://shorturl.at/anoHM \r\n\r\nNewbies, people with no real \r\nskills, no experience, no idea, \r\nand some just by pure luck, \r\nunknowingly are making $500 \r\nto even $1,000 per day with \r\nthis traffic method.\r\n\r\nHere\'re some of the results \r\npeople getting with Shorts:\r\n\r\n- 3.5 Million views posting other people\'s videos\r\n- 24 million views posting 5 sec videos\r\n- 1.4 million views posting 30 sec review videos\r\n\r\nAnd the best part is ALL:\r\n\r\n- WITHOUT being on camera\r\n- WITHOUT running ads\r\n- WITHOUT subscribers\r\n- WITHOUT outsourcing\r\n\r\nWith TubeRushr, you can quickly \r\nand easily create attention-grabbing \r\nYouTube Shorts w/ ChatGPT4 that \r\ndrive traffic & sales to your websites, \r\nblogs, and offers in just 3 clicks..\r\n\r\n==> WATCH QUICK DEMO HERE https://shorturl.at/anoHM \r\n\r\nTubeRushr is available for a Low\r\nOne Time Price during its public launch \r\nfor the next few days only..\r\n\r\nAfter this week, it will turn into a \r\nhigher recurring subscription price model.\r\n\r\nAct fast and get your account at the \r\nlowest price ever.\r\n\r\n==> Get TubeRushr For A Low \r\nOne-Time Price Now https://shorturl.at/anoHM \r\n\r\nSee you inside.\r\n\r\nAll the best\r\nScott',''),(2619,1,675,'6','Eric Jones',''),(2620,1,675,'2','555-555-1212',''),(2621,1,675,'3','ericjonesmyemail@gmail.com',''),(2622,1,675,'4','Hello juiceelectrical.co.nz Administrator.\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2623,1,676,'6','Eric Jones',''),(2624,1,676,'2','555-555-1212',''),(2625,1,676,'3','ericjonesmyemail@gmail.com',''),(2626,1,676,'4','Dear juiceelectrical.co.nz Administrator!\r\n\r\nEric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2627,1,677,'6','Carmen Draper',''),(2628,1,677,'2','02183 23 00 95',''),(2629,1,677,'3','carmen.draper@gmail.com',''),(2630,1,677,'4','Hi there,\r\n\r\nI hope this message finds you well. I wanted to share with you a tool that has been instrumental in helping me improve my website\'s online presence and search engine rankings. SEMrush is an all-in-one digital marketing platform that offers comprehensive SEO, PPC, content, social media, and competitor analysis tools.\r\nI highly recommend checking out SEMrush if you\'re looking to take your website to the next level. \r\nHere\'s a link to their website where you can learn more: https://bit.ly/42WYUcW\r\n\r\nThank you,\r\nCarmen Draper',''),(2631,1,678,'6','Roland Sullivan',''),(2632,1,678,'2','67 336 46 46',''),(2633,1,678,'3','roland.sullivan@gmail.com',''),(2634,1,678,'4','Hey,\r\n \r\nYou are about to experience a whole new way to boost your Sales Online.\r\n \r\nIt’s time you get rid of your old traditional way of selling.\r\n \r\nAI Genius is now LIVE to make your offers convert 17X better than before\r\n \r\nFirst AI App that turns any website, blog eCom store, funnel and so on into an Interactive Lead and Sales Generator with just a line of code.\r\n \r\n>> Click here to see it in action https://shorturl.at/rAIX4 \r\n \r\nIt is a futuristic interactive lead and sales machine\r\n \r\n…with AI Video Messaging, Voice Messaging, And Screen Capturing features\r\n \r\nYou just copy and paste a code while AI Genius bridges the gap between buyers and business owners in a MODERN, exciting, fresh and truly INTERACTIVE way.\r\n \r\nUntil they buy your offers, products and services\r\n\r\n>> Click here to get the New Interactive Lead and Sales Generator. https://shorturl.at/rAIX4 \r\n \r\nThe thing is,\r\n \r\nYou have been leaving lots of sales on the table\r\n \r\nbecause of a lack of communication between you and your customers.\r\n \r\nAI Genuis also works with any sales funnel on Click funnel, Shopify, Wix, Convertri, WordPress, Custom Scripts, and more.\r\n \r\nAnd we are giving limited Early birds access to this AI Genius at a ridiculous price with other exciting and mind-blowing bonuses that come with it.\r\n \r\nDon’t miss this opportunity to change your business forever.\r\n \r\n>> Click here to Turn any Website into Sales Machine & Interactive Leads https://shorturl.at/rAIX4 \r\n \r\nSee you Inside, \r\nSign Off\r\nRoland',''),(2635,1,679,'6','Eric Jones',''),(2636,1,679,'2','555-555-1212',''),(2637,1,679,'3','ericjonesmyemail@gmail.com',''),(2638,1,679,'4','Hi juiceelectrical.co.nz Admin.\r\n\r\nMy name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2639,1,680,'6','Peer H.',''),(2640,1,680,'2','08641 55 08 82',''),(2641,1,680,'3','brent.morales29@msn.com',''),(2642,1,680,'4','Hi, \r\n\r\nMy name is Peer (not an AI haha), I noticed most agency owners are frustrated by the time-consuming and manual process of prospecting for new healthcare clients. \r\n\r\nYou\'re always struggling to stand out in a competitive market.\r\n\r\nYou\'re tired of reaching out that never get a response.\r\n\r\nMind I help you relieve this frustration by connecting you directly with 500+ key decision makers in the space that are already interested in your services?\r\n\r\nHere\'s my phone +1 (502) 293-3288.\r\n\r\nCall or text me when you have a second.\r\n\r\nYou can also visit GetClientsMD.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n444 Alaska Avenue, Torrance 90503 US\r\n\r\nUnsubscribe at: 123bye',''),(2643,1,681,'6','Jade Stratford',''),(2644,1,681,'2','0272900207',''),(2645,1,681,'3','jadestratford94@gmail.com',''),(2646,1,681,'4','Hello, I am after a quote for unwiring a floor standing oven and then re wiring in the replacement oven which is also floor standing. Is this a service you could offer? If so let me know if there is any other info you may need. Thank you :)',''),(2647,1,681,'5','Google',''),(2648,1,682,'6','Marc Martin',''),(2649,1,682,'2','913-461-1697',''),(2650,1,682,'3','marc.martin@gmail.com',''),(2651,1,682,'4','Hi\r\n\r\n\"Vision Ai\" Live Now\r\n\r\n==> Here Sale Page Link https://shorturl.at/hsLO3 \r\n\r\nFirst To Universe - Explainable AI App That Creates Mind Blowing Text-to-Video, Vision Videos, Image Talking Videos, Incredible Graphic Arts, Age Changer Videos, Ai Text Paint Images, Ai Hair Styler, Ai Image Unblur, Multi Image Subject Generation, Human Instructions Editor, Ai Illustration, Pointing People Generator, Ai Avatar Generator, Ai Vision Image, & Much Much More In Less Than 60 Minutes......\r\n\r\n==> Watch Vision AI Demo In Action https://shorturl.at/hsLO3 \r\nHere are some of its amazing benefits-\r\nCreate Stunning 4K HD AI Videos In Just 3 Clicks\r\nSmartly Convert Any Ordinary Photo Into Eye Catchy Live Image In Any Niche In Just A Few Clicks Of Your Mouse\r\nCreate Ultra HD AI Vision Videos For Any Offer In Any Niche & Get Max Customers Hooked\r\nCreate Never Seen Before, Ultra 4K Vision AI Images In Just A Few Clicks Of Your Mouse\r\nUse Vision AI To Convert The Dress Color Inside Any Existing Image & Make It 10X More Visually Appealing\r\nGive Human Instructions For Editing Any Image For Your Preferred Niche\r\nMake Any Image Into Human Like Talking Image & Attract Hordes of Audience In 3 Clicks\r\nCreate Cool Looking Gold Metal Things & Convert Visitors Into Happy Customers\r\nConvert Any Boring Image Into Stylish Image Using Artificial Intelligence\r\nChange Age Of Any Photo And Make It Look Young, Old Or Grown Up Instantly Using Style Based Regression Model\r\nGenerate A New Image From An Input Image With Stable Diffusion\r\nRestore Faces Inside Any Blurred Image & Make It As Clear As Morning Sky\r\n& tons of other benefits in store\r\n===Here Full Scoop=== https://shorturl.at/hsLO3 \r\n\r\nIf you Purchase from Our Link We Give You Best Bonus\r\n\r\nVIP Bonus1: Ai Suite Full Access\r\nVIP Bonus2: AiHub Full Access\r\nVIP Bonus3: Ai Buddy Full Access\r\nVIP Bonus4: SociAi Full Access\r\nVIP Bonus5: Ai Sites Full Access\r\n\r\n..+ more\r\n\r\nAlso\r\nwe are giving 3 off Disc0unt for the entire funnel\r\nCouponcode: VISIONAI3\r\n\r\nAccess Vision AI + All Bonus https://shorturl.at/hsLO3 \r\n\r\nThanks,\r\nMarc',''),(2652,1,683,'6','Agnes Walkom',''),(2653,1,683,'2','418 6810',''),(2654,1,683,'3','walkom.agnes@gmail.com',''),(2655,1,683,'4','Do you struggle with managing all the different aspects of your online business? Creating and launching sales funnels, setting up affiliate programs, and sending email campaigns can be time-consuming and overwhelming. But what if you could have all these tools in one place?\r\n\r\nThat\'s where systeme.io comes in. With systeme.io, you can easily create and launch your sales funnels, set up affiliate programs, and send email campaigns with just a few clicks. No more switching between different platforms or struggling with complicated software!\r\n\r\nSysteme.io is designed to simplify your online business, so you can focus on what really matters - growing your business and making more sales. \r\n\r\nDon\'t let technology hold you back - click the link below to check out systeme.io today and start taking your business to the next level!\r\n\r\nhttps://jmk84463.systeme.io/05c6a910\r\n\r\nThanks,\r\n\r\nChris\r\n\r\n\r\n\r\n\r\n335 South 600 East Smithfield UT 84335\r\n\r\nOpt-out statement: If you no longer wish to receive emails from us, simply click the link below to unsubscribe.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2656,1,684,'6','Megan Atkinson',''),(2657,1,684,'2','(02) 6133 8508',''),(2658,1,684,'3','meganatkinson352@gmail.com',''),(2659,1,684,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 400-1200+ followers per month.\r\n- Real, human followers: People follow you because they are interested in your business or niche.\r\n- Safe: All actions are made manually. We do not use any bots.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you are interested, and would like to see some of our previous work, let me know and we can discuss further.\r\n\r\nKind Regards,\r\nMegan',''),(2660,1,685,'6','Alex Sham',''),(2661,1,685,'2','+441279975075',''),(2662,1,685,'3','sales@metaagency.cc',''),(2663,1,685,'4','Hi, my name is Alex.S, I have noticed something wrong with your website and I want to volunteer for free, do you have a second to chat about it? Here\'s my phone number, call or text me when you have a second: +442039960808\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com.',''),(2664,1,686,'6','Eric Jones',''),(2665,1,686,'2','555-555-1212',''),(2666,1,686,'3','ericjonesmyemail@gmail.com',''),(2667,1,686,'4','Hi juiceelectrical.co.nz Admin!\r\n\r\nMy name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2668,1,687,'6','Waylon Cushman',''),(2669,1,687,'2','06-77962277',''),(2670,1,687,'3','cushman.waylon@outlook.com',''),(2671,1,687,'4','Hey,\r\n\r\nAre you still struggling to make your first sale online?\r\n\r\nI know how it feels, optimizing your website, funnel, blog, or even your eCom store is not easy… \r\n\r\nAnd no matter how good you’re… Less than 1% of your traffic will convert to sales… \r\n\r\nBut what if there is a way to change that… \r\n\r\nAnd take it from 1% all the way to 20%, 30% or even 50%... \r\n\r\nHow? Easy… \r\n\r\nBy Using The Only AI Interactive Sales Machine…\r\n\r\nMeet AI Genius\r\n\r\nThe World’s First To Market AI App That Turns ANY Website, Blog, Funnel, Page, \r\neCom Store Or Marketplace Into An Interactive Lead, And Sales Machine \r\n\r\n…By Using AI Video Messaging, Voice Messaging, And Screen Capturing…\r\n\r\nAllowing Us To Make $542.43 Daily… \r\n\r\nAll By Copying Just One Line Of Code…\r\n\r\n>> Click Here To See Live Demo\r\nhttps://shortz.pro/ai-genius\r\n\r\nWith AI Genius, your visitors can communicate with YOU live & send Video Messages, \r\nVoicemail & Screen capture messages...Directly ‘On Your Site’ & Get Instant Responses From You.\r\n\r\nAll Of That Without…\r\n\r\n- Coding\r\n- Designing\r\n- Technical Setup\r\n- Paying Monthly\r\n- Without Any Prior Experience\r\n\r\nAll it takes it just 4 simple steps:\r\n\r\nStep 1: Login: Login to AI Genuis Cloud-Based App\r\n\r\nStep 2: Generate: Select Your Widget And Customize It To Your Liking With ZERO Coding \r\n\r\nStep 3: Install: Just Copy One Line Of Code And You Are Done. \r\nAI Genuis Works With ANY Platform…\r\n\r\nStep 4: Profit - That’s It\r\n\r\nIt is as simple as that.\r\n\r\n>> Get Lifetime Access Here\r\nhttps://shortz.pro/ai-genius\r\n\r\nCoupon Code - GENIUSVIP (time-sensitive)\r\n\r\nAnd if you are lucky enough to be among the first 12 people, you will also get VIP access to my bonuses below…\r\n\r\n>> Click here to get Lifetime access to AI Genius and start profiting from day one.\r\nhttps://shortz.pro/ai-genius\r\n\r\nFair Warning - Go In Now To Avoid Paying Monthly Fee Later',''),(2672,1,688,'6','Adalberto',''),(2673,1,688,'2','077 1319 2921',''),(2674,1,688,'3','pass@corexams.com',''),(2675,1,688,'4','Hello there \r\n \r\nDefrost frozen foods in minutes safely and naturally with our THAW KING™. \r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED \r\n\r\nBuy now: https://thawking.co\r\n \r\nBest, \r\n \r\nAdalberto',''),(2676,1,689,'6','Estate',''),(2677,1,689,'2','81745833324',''),(2678,1,689,'3','gjw396@grapevine.com.au',''),(2679,1,689,'4','UNLOCK THE POWER OF GOOGLE AND EARN $1000 A DAY: NO EXPERIENCE NEEDED http://googlecashflow.pw22375.xyz/googlequickpay',''),(2680,1,689,'5','Google',''),(2681,1,690,'6','Otto Hillberg',''),(2682,1,690,'2','071 514 28 84',''),(2683,1,690,'3','otto.hillberg@gmail.com',''),(2684,1,690,'4','Hey,\r\n\r\nYour opportunity to dominate the freelancing market is here, and it\'s time to seize it with both hands. TaskAI is the game-changer you\'ve been waiting for, and it\'s just a few clicks away.\r\n\r\nStep 1: Create. Enter any name you want and click the create button. It\'s as straightforward as it sounds, or you can let the AI name the marketplace for you. The power is in your hands.\r\n\r\nStep 2: Activate. Turn on your AI-run \"Fiverr-Like\" marketplace pre-filled with hundreds of gigs in just a single click. It\'s as easy as flipping on a light switch.\r\n\r\nStep 3: Profit. Watch as TaskAI finds businesses that need AI services, closes the deals at the click of a mouse, and gets you paid $1,000+ over and over again. No cold calling, hard selling, or hard work required.\r\n\r\nDon\'t let this golden opportunity slip away. Activate TaskAI now and step into a future of limitless success.\r\n\r\nClick here https://shorturl.at/huvwV to take action and activate TaskAI today.\r\n\r\nTalk Soon,\r\n\r\nOtto',''),(2685,1,691,'6','Eric Jones',''),(2686,1,691,'2','555-555-1212',''),(2687,1,691,'3','ericjonesmyemail@gmail.com',''),(2688,1,691,'4','Dear juiceelectrical.co.nz Administrator. this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2689,1,692,'6','Marco Fredriks',''),(2690,1,692,'2','0275590983',''),(2691,1,692,'3','marco@infiniteenergy.co.nz',''),(2692,1,692,'4','Hi Helen,\r\n\r\nTried calling you but no success. As I am in Christchurch coming Monday (11.30), I would like to visit with Nick to have a short meeting with you. Just to introduce myself (being the CFO of Infinite Energy) and to talk a bit about the future.',''),(2693,1,693,'6','Andre Edmondstone',''),(2694,1,693,'2','01.09.67.79.67',''),(2695,1,693,'3','cathy@connect-ez.com',''),(2696,1,693,'4','Is your number toll-free?',''),(2697,1,694,'6','Johnny Gifford',''),(2698,1,694,'2','0347 8906544',''),(2699,1,694,'3','johnny.gifford@gmail.com',''),(2700,1,694,'4','Heyy there…\r\n\r\nWhat if all you knew about ranking on Google could be simplified into just a few clicks of the button? I mean getting the best and optimized keywords, ranking on the first page on Google and driving quality buyer traffic to your videos.\r\n\r\nBest part is you don\'t have to stress about writing content, building backlinks, researching keywords and finding the best tags.\r\n\r\nWith a new AI tool in the market, you can worry less about getting your content ranked on Google.\r\n\r\nThis is the ultimate SEO super weapon. With this new AI tool, you can start looking forward to 4 figures daily in income. RapidRank AI is the ultimate SEO tool on the market right now. \r\n\r\nWith RapidRank AI, you can easily exploit Google search results and rank on page 1 of Google in just a few clicks. You can put your video content in the face of thousands of people with no stress at all.\r\n\r\nImagine what you could do with having your video in front of over 5,000 people. If you had a product to sell for $30 a pop and you convert let\'s say 5% of those people. That\'s a cool $7,500 sitting pretty for you.\r\n\r\nBest part, that\'s just a little of what you can make. You can definitely make more with the massive buyer traffic from Google ranking.\r\n\r\n \r\nIt all works in 3 steps…\r\n\r\nStep #1 - Access\r\n \r\nClick on any of the links to get instant access to RapidRank AI https://shorturl.at/bgwU2 \r\n\r\n \r\nStep #2 - Choose Your Niche\r\n\r\nJust choose your niche of choice…\r\n\r\nAnd RapidRanker AI will do everything else for you…\r\n\r\n\r\nStep #3 - Rank\r\n\r\nWithin minutes, our videos are on the first page of google.\r\n\r\nDo this right and you could be on your way to a steady daily windfall of cash.\r\n\r\nAnd the best thing about RapidRank AI is that:\r\n\r\n❌you won’t have to learn a thing about SEO.\r\n❌You don’t have to know a damn thing about backlinks…\r\n❌And you don’t need a huge budget to take advantage of this\r\n\r\nAll you need to do is get your access to RapidRank AI and start ranking videos on the first page of Google. Sit back and watch how buyer traffic starts to put money in your pocket in no time.\r\n\r\nYou don\'t want to miss out on this! Grab your copy now. https://shorturl.at/bgwU2 \r\n\r\nJohnny',''),(2701,1,695,'6','Alysa Alvarado',''),(2702,1,695,'2','(08) 8282 5070',''),(2703,1,695,'3','alysa.alvarado@hotmail.com',''),(2704,1,695,'4','FREE TACTICAL BLACK KARAMBIT KNIFE - 250 ONLY!\r\nUnassuming Discreet Design\r\nRazor Sharp Blade\r\nFull Tang For Maximum Strength\r\n7.4 Inches In Length\r\nProtective Sheath Included\r\nQuick Access Neck Cord Included\r\nErgonomically Designed Handle\r\nPerfect EDC Defense Tool\r\nStainless And Rust Proof\r\nFast shipping from Denver, USA!\r\n$39.95 Value - Yours For FREE Today!\r\n\r\nClick on this link to get the free knife - https://bit.ly/3rqEkDF\r\n\r\nThe KARAMBIT is the perfect EDC Tool!\r\nThis stylish and discreet defense tool makes a perfect every day carry! It\'s lightweight yet extremely strong and durable due to the full tang design.\r\n\r\nThe Length from tip of blade to end of handle is a generous 7.4 inches which is large enough to tackle any task you throw at it!\r\n\r\nThis is the perfect knife for your EDC, hunting, camping, fishing and general use. The blade design is extremely sharp so please use caution!\r\n\r\nIf you\'re going to carry any item as your daily, it needs to be this Karambit Knife! \r\n\r\nBut, if you want a FREE Karambit Knife you\'ve got to jump on this offer fast and get one right now because we have limited stock to give away! \r\n\r\nClick on this link to get the free knife - https://bit.ly/3rqEkDF\r\n\r\n- 60 DAY GUARANTEE -\r\n\r\nWe know you\'re going to love our Karambit Knife and we fully stand by our products. That\'s why when you purchase your Karambit Knife today we\'re offering a long 60-day, 100% money back guarantee.\r\n\r\nThat means, if you\'re not happy with your purchase for any reason at all, just contact us and we will fully refund your purchase back to your account, no questions asked!\r\n\r\nNO hassles and NO Questions Asked!\r\n\r\nClick on this link to get the free knife - https://bit.ly/3rqEkDF\r\n\r\nHow long does shipping take?\r\nDue to extremely high demand there may be a dispatch delay of up to 2 business days. Depending on local shipping times this means you can expect to receive your order approximately 5 business days after placing your order. We are working around the clock to pack and ship all orders as soon as possible and thank you for your patience during these incredibly stressful times.\r\n\r\nWhere does this product ship from?\r\nWe store and ship all products from our warehouse in Denver, Colorado, USA!\r\n\r\nWhy do I have to pay for shipping?\r\nWe kindly ask our customers to cover the shipping fees because we are not a Government funded operation and we simply cannot afford to cover the cost of product and the shipping fees. We charge you just enough for quicker shipper times!\r\n\r\nClick on this link to get the free knife - https://bit.ly/3rqEkDF',''),(2705,1,696,'6','Paul Brown',''),(2706,1,696,'2','202-410-9218',''),(2707,1,696,'3','paul@generatereviewsfast.com',''),(2708,1,696,'4','Hi,\r\n\r\nI see that you\'re not using GMB chat on your Google business profile.\r\n\r\nGMB chat allows you to engage your potential customers in real-time.\r\n\r\nWould you like me to send you a quick explainer video?\r\n\r\nRegards\r\nPaul\r\n202-410-9218',''),(2709,1,697,'6','Steve Collins',''),(2710,1,697,'2','78 544 64 27',''),(2711,1,697,'3','stevecollins@gmail.com',''),(2712,1,697,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://www.theaisocial.com/writeappreviews\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from AISocial',''),(2713,1,698,'6','Olen Heavener',''),(2714,1,698,'2','0491 83 74 29',''),(2715,1,698,'3','olen.heavener16@outlook.com',''),(2716,1,698,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2717,1,699,'6','James Walden',''),(2718,1,699,'3','fiverrcanhelp@gmail.com',''),(2719,1,699,'4','Is your business connected to the \'Google My Business\" program as well as \"Voice Search\" for Siri, Alexa, etc.? How much business are you losing for not being connected?\r\n\r\nI\'m leaving you a link for Fiverr so you can get a hold of the situation. An inexpensive fix, can save you thousands in lost revenue.\r\n\r\nIf you have any questions, shoot me a message. \r\n\r\nhttps://go.fiverr.com/visit/?bta=681240&brand=fiverrcpa\r\n\r\nRegards,\r\n\r\nJC Walden\r\nTech Consultant\r\nFiverrcanhelp@gmail.com',''),(2720,1,700,'6','Addam Scott',''),(2721,1,700,'2','2356895054',''),(2722,1,700,'3','addamscotts@gmail.com',''),(2723,1,700,'4','Re: Website Error\r\n\r\nI found few errors which correspond with a drop of website traffic over the last 2-3 months which I thought I would bring to your attention.\r\n\r\nI would be happy to send you errors and the solutions that would help to improve your website traffic & performance.\r\n\r\nAddam Scott\r\naddamscotts@gmail.com',''),(2724,1,700,'5','google',''),(2725,1,701,'6','Richard D',''),(2726,1,701,'2','52-48-98-77',''),(2727,1,701,'3','david@3packranker.xyz',''),(2728,1,701,'4','There\'s more investment capital available than you can imagine and much of it never gets placed. \r\n\r\nIf you need more cash/capital in your business, I\'ll show you where it is and how to get it, in any amount. Your credit, industry, balance sheet, assets, are not a factor. If you have a legitimate business or organization, you qualify.\r\n\r\nI\'ve raised tens of millions of dollars for my companies over the years, which resulted in firms with annual sales between $18 million and $40 million. You can do the same or better. \r\n\r\nTo get started, claim your FREE step-by-step checklist showing you how I raise money time and time again, and how you can too! \r\n\r\nI call it The Ultimate Business Funding Checklist. \r\n\r\nTo get your free copy just request it here for instant access: https://bizfundingforyou.com\r\n\r\nSee you there!\r\n\r\nRich\r\n\r\nTo opt out of future messages, click or tap here: https://omnioptout.xyz?customer_domain=juiceelectrical.co.nz',''),(2729,1,702,'6','Neil Baron',''),(2730,1,702,'2','070 5696 0385',''),(2731,1,702,'3','neil.baron@gmail.com',''),(2732,1,702,'4','For the first time ever, the World\'s first GPT4 Powered Social Video Story Creator just went LIVE.\r\n\r\nAct Fast and get this First-To-Market App before early-bird expires.\r\n\r\nGet AI StoriMate Access + LifeTime Account + Exclusive Discount https://shorturl.at/nuMSU \r\n\r\nTHIS IS LITERALLY World\'s First (GPT-4 Powered) A.I. Story Software that Creates ALL Kind of Stories, Reels & Shorts for Instagram, TikTok, YouTube, Facebook, and Other Platforms In Seconds Using just a Keyword using A.I.\r\n\r\nHow cool is that? Isn\'t it?\r\n\r\n==> Watch Ai StoriMate Demo In Action https://shorturl.at/nuMSU \r\n\r\nAi StoriMate is jam-packed with the power features:\r\n✅ AI Text to Video Story Creator\r\n✅ 50 Beautiful Templates\r\n✅ AI Idea & Content Generator with 33+ Language support\r\n✅ Select from Beautiful Luxury templates \r\n✅ 10 Million Royalty Free Stock Media\r\n✅ Add 100+ Premium Music\r\n✅ Smoothest Drag-n-Drop Story Video Editor\r\n✅ Add Stickers, shapes, abstract shapes, emojis and icons to Story Video\r\n✅ Automated Powerful Animation, Pro Fonts And much more...\r\n\r\nPlus Commercial license ($997) included with AI StoriMate- Generate & sell as many assets as you like to clients.\r\n\r\n=== Here Full Scoop ===\r\nIf you get this right away you will get below exclusive bonuses for FREE with AI StoriMate\r\n\r\nExclusive Bonus#1\r\nExclusive Bonus#2\r\nExclusive Bonus#3\r\nExclusive Bonus#4\r\nExclusive Bonus#5\r\n\r\n==> Access AI StoriMate + All Bonus https://shorturl.at/nuMSU \r\n\r\nTo Your Success,\r\nNeil',''),(2733,1,704,'6','Williamtweve',''),(2734,1,704,'2','87547538436',''),(2735,1,704,'3','xvybezstarx@gmail.com',''),(2736,1,704,'4','DON\'T MISS THE BITCOIN BOOM: GET A WALLET FILE WITH 12600 BTC http://bitcoinearn.eddybautista.xyz/rapidbtcearnings',''),(2737,1,704,'5','Real',''),(2738,1,705,'6','Mike Clapton',''),(2739,1,705,'2','81647252736',''),(2740,1,705,'3','mikeinquiff@gmail.com',''),(2741,1,705,'4','Howdy \r\n \r\nThis is Mike Clapton\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Clapton\r\n \r\nmike@strictlydigital.net',''),(2742,1,705,'5','Google',''),(2743,1,706,'6','Joe Thompson',''),(2744,1,706,'2','(714) 617-7866',''),(2745,1,706,'3','joe@generatereviewsfast.com',''),(2746,1,706,'4','Hi,\r\nWe will help you to Outperform your competition with generation of Positive Online Reviews on auto pilot.\r\nGive us just 15 minutes of your time to showcase our solution and it will be the best thing you have done for your business!\r\nSchedule a call [] to arrange a free 14-day trial (no credit card required).\r\n\r\nRegards\r\nJoe\r\n(714) 617-7866',''),(2747,1,707,'6','Marilyn Wilsmore',''),(2748,1,707,'2','06-79464771',''),(2749,1,707,'3','no-reply@gmail.com',''),(2750,1,707,'4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust message me at webscrafts@gmail.com\r\n\r\nPlease don\'t reply to this message as its not monitored\r\n\r\nOr Just Message Me in Whatsapp https://wa.me/qr/S5JFE6ID6XAWA1\r\n\r\nThanks\r\nWebs Craft',''),(2751,1,708,'6','Frances Reinhard',''),(2752,1,708,'2','662-371-4691',''),(2753,1,708,'3','backlinkseomarketingagency@gmail.com',''),(2754,1,708,'4','Hey,\r\n\r\nI hope this email finds you well.\r\n\r\nI am the outreach manager at Digimarketinglads.\r\n\r\nI understand the importance of acquiring high-quality backlinks and the effort it takes to obtain them.\r\n\r\nI am aware of your concerns about the challenges of obtaining backlinks for a well-ranked website.\r\n\r\nThat\'s why I am reaching out to introduce you to universities guest post service. Universities like columbia.edu, umass.edu , depaul.edu and many more with a strong ranking that could greatly benefit you.\r\n\r\nWe believe that placing your backlink on University websites would not only improve your website\'s ranking but also connect you with a large audience.\r\n\r\nDon\'t hesitate to seize this opportunity and expand your reach to a wider audience.\r\n\r\nAt digimarketinglads, our primary goal is to ensure customer satisfaction through our work.\r\n\r\nWe provide top-notch backlink services at competitive prices. \r\n\r\nFor further details or any queries, please feel free to contact us directly via email backlinkseomarketingagency@gmail.com . \r\nSkype to Contact:- live:.cid.6146c29ca0d4ff2e\r\nIf you want complete list of available university sites or other guest post backlink sites that we offer you can let me know through email and I will send it to you \r\n\r\nWe eagerly await your positive response.\r\n\r\nBest regards,\r\n\r\nDigimarketinglads',''),(2755,1,709,'6','Isaac Berkman',''),(2756,1,709,'2','05.82.89.27.01',''),(2757,1,709,'3','berkman.isaac@yahoo.com',''),(2758,1,709,'4','Are you tired of the daily grind, working long hours for little pay? \r\n\r\nI have a solution for you! My rapid money-making system allows you to make thousands of dollars online with just a few hours of work per week, all from the comfort of your own home.\r\n \r\nImagine being able to finally have financial freedom, to take that dream vacation, or to buy that new car you\'ve had your eye on. With my system, you can achieve all of those things and more! \r\n\r\nDon\'t miss out on this incredible opportunity. To learn more and start making money today visit --> https://bit.ly/jntprofitsystem',''),(2759,1,710,'6','Jeremy Reeves',''),(2760,1,710,'2','(47) 8149-5457',''),(2761,1,710,'3','jeremy.reeves@gmail.com',''),(2762,1,710,'4','>> Check out REFUEL it’s amazing! https://shorturl.at/stHIR \r\n\r\nFinally, something completely new & incredibly profitable for digital marketers.\r\n\r\nThis 3-in-1 software system:\r\n\r\n=> creates DFY profit pages that build your list & make commissions at the same time\r\n=> lets you make your own custom smart profit pages from scratch\r\n=> uses multiple advanced technologies to MAXIMIZE your conversions & profits \r\n at every step … without you lifting a finger\r\n=> includes traffic, hosting, step-by-step training and world class support!\r\n\r\nNothing else on the market comes anywhere close to what this does for you.\r\n\r\nIt replaces 3 softwares AND does a better job from inside one dashboard.\r\n\r\nThere simply isn’t an easier OR faster way to get paid to build your list, starting \r\nfrom scratch.\r\n\r\nMultiple income streams from DFY profit pages.\r\nZero overhead costs because the hosting is included.\r\nPre-approved offers means there’s no waiting to monetize.\r\n\r\n>> See how this can EASILY bring you 3+ figures a day on autopilot https://shorturl.at/stHIR \r\n\r\nSign Off\r\nJeremy',''),(2763,1,711,'6','Berniece Tietjen',''),(2764,1,711,'2','06359 88 26 52',''),(2765,1,711,'3','berniece.tietjen@gmail.com',''),(2766,1,711,'4','Want to instantly tap into\r\nQuantum to leverage...\r\n\r\n... THE WORLD\'S 1ST One & Only *Voice Activated* \r\nA.I-Powered Funnel Builder Complete With Course Creator, Traffic & More:)\r\n\r\nThis latest from Billy Darr\r\nshows you exactly how\r\n\r\n>> https://shortz.pro/quantum\r\n\r\nOnce you see the potential \r\nwith this, you\'ll want to\r\nscale this even more\r\n\r\nGrab this for 17 bux\r\n\r\n… but act fast because\r\nprice increases with\r\neach sale\r\n\r\n>>> Grab your copy now!\r\nhttps://shortz.pro/quantum\r\n\r\nSee you inside.\r\n\r\nP.S. For the first 35 people \r\nwho grab this today you\'ll get \r\nINSTANT $5 OFF With\r\n“QUANTUM5OFF” Coupon',''),(2767,1,712,'6','Leia Veale',''),(2768,1,712,'2','0680 147 04 42',''),(2769,1,712,'3','veale.leia@msn.com',''),(2770,1,712,'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\r\n\r\nthis message was sent to your website contact form at: juiceelectrical.co.nz',''),(2771,1,713,'6','Eric Jones',''),(2772,1,713,'2','555-555-1212',''),(2773,1,713,'3','ericjonesmyemail@gmail.com',''),(2774,1,713,'4','Dear juiceelectrical.co.nz Owner. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2775,1,714,'6','Tera Kenyon',''),(2776,1,714,'2','(07) 4915 3882',''),(2777,1,714,'3','kenyon.tera@msn.com',''),(2778,1,714,'4','Create your Marketing Short Videos in Seconds with super perfect tool \r\n\r\nTry it Now ===> https://pictory.ai?ref=omar32\r\n\r\nRegards\r\nAwals',''),(2779,1,715,'6','Chris Premo',''),(2780,1,715,'3','premo.tyson@googlemail.com',''),(2781,1,715,'4','Do you want best web design , best logo design and best SEO for your Website\r\n contact me here and tell me what you need ===== > https://tinyurl.com/2mshdspf\r\nSee you there\r\n\r\nRegards\r\nChris',''),(2782,1,716,'6','Andy Mark',''),(2783,1,716,'2','06-56768181',''),(2784,1,716,'3','andy.mark@gmail.com',''),(2785,1,716,'4','Hey, \r\n\r\n$795.56 Per Day Without Selling Anything?\r\n\r\nYou see the vast majority of marketers\r\nare yet to make a single dime online…\r\n\r\nAnd the reason for this is simple:\r\n\r\nThey try to sell stuff to everyone\r\nand their grandma!\r\n\r\nI know, this goes against what you’ve \r\nbeen told by most gurus.\r\n\r\nBut let me tell you, no matter what others say…\r\n\r\nIf you try to sell stuff on the Internet to\r\ntotal strangers, you’ll end up struggling.\r\n\r\nBut what if you could pocket $795.56 per\r\nday with FREE traffic just like we do…\r\n\r\n…Without selling anything?\r\n\r\nYup, all thanks to a brand-new, powerful\r\nAI-powered, cloud app\r\n\r\n\r\n=> Click Here To Discover “Apex”: https://shorturl.at/yzAQR \r\n\r\n\r\nThis one-of-a-kind, revolutionary app \r\nautomatically creates “money sites,” \r\npre-fills them with high-quality, human-like \r\ncontent & then sends thousands of targeted\r\nFREE clicks.\r\n\r\nIn less than 23 seconds!\r\n\r\nIf you’re a total beginner looking to make\r\nyour first buck online, there’s no doubt that\r\nyou’ll find this unique software life-changing.\r\n\r\n\r\n=> Click Here To Get Started Now: https://shorturl.at/yzAQR \r\n\r\n\r\n\r\nDon\'t you think it\'s time to finally capitalize on the \"AI Craze\"?\r\n\r\nWell, with \"Apex\" now it\'s possible…\r\n\r\nYou can start using this out-of-the-box,\r\ntransformative app in the next 4 minutes\r\n\r\nAnd begin churning out profitable \"money sites\"\r\nwith just a few clicks of your mouse!\r\n\r\n\r\n=> Click Here To Grab “Apex” Now: https://shorturl.at/yzAQR \r\n\r\n\r\nRight now, “Apex” is in launch mode and is\r\nridiculously priced!\r\n\r\nBut, the price will increase once the launch phase is\r\nover, and you’ll have to pay monthly in order\r\nto use it.\r\n\r\nDon’t let that happen! \r\nGet it now, while you can!\r\n\r\n=> Click Here To Grab “Apex” Now: https://shorturl.at/yzAQR \r\n\r\nI’ll see you inside,\r\nAndy',''),(2786,1,717,'6','Elva Epperson',''),(2787,1,717,'2','(08) 9075 7386',''),(2788,1,717,'3','elva.epperson@googlemail.com',''),(2789,1,717,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/sywma6z3\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(2790,1,718,'6','PetarSoaps',''),(2791,1,718,'2','81771983883',''),(2792,1,718,'3','spbetcas795@gmail.com',''),(2793,1,718,'4','Best onlіnе саsіno \r\nBіg bоnus аnd Frееsріns \r\nSpоrt bеttіng аnd pоkеr \r\n \r\ngo now https://tinyurl.com/mskcysz8',''),(2794,1,718,'5','Google',''),(2795,1,719,'6','Sherman Jernigan',''),(2796,1,719,'2','69 210 21 27',''),(2797,1,719,'3','jernigan.sherman@hotmail.com',''),(2798,1,719,'4','Do you find it challenging to keep track of all your customer interactions, appointments, and marketing campaigns? Managing all these tasks manually can be tedious and time-consuming. \r\nThis is where Go High Level comes in - a powerful CRM and Marketing Automation platform that helps streamline your business operations, saving you time and resources.\r\nGo High Level lets you create customizable CRMs and automate your email opt-ins, so you can spend less time managing tedious tasks and more time focusing on growing your business. \r\nWith easy-to-use templates and a user-friendly interface, Go High Level makes marketing and managing customer relationships a breeze.\r\nStop struggling to keep track of all your customer data and marketing efforts. Upgrade your business today and try Go High Level risk-free. \r\n\r\nClick the link below to learn more and see how Go High Level can help your business succeed.\r\n\r\nhttps://jmk84463.systeme.io/98399461-bd954156\r\n\r\nThanks\r\n\r\n-Chris\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2799,1,720,'6','JosephMOR',''),(2800,1,720,'2','89761278866',''),(2801,1,720,'3','no.reply.PhilippeMichel@gmail.com',''),(2802,1,720,'4','Hey there! juiceelectrical.co.nz \r\n \r\nDid you know that it is possible to send letters absolutely lawfully? We offer a novel approach to sending letters through contact forms. A great number of websites have such forms. \r\nWhen such commercial offers are sent, no personal data is used and messages are sent to forms specifically designed to receive messages and appeals efficiently. Contact Form messages are usually not sent to spam because they are regarded as important. \r\nYou can now take advantage of our service free of charge. \r\nWe can transmit up to 50,000 messages in your behalf. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis offer is automatically generated. \r\nPlease use the contact details below to get in touch with us. \r\n \r\nContact us. \r\nTelegram - https://t.me/FeedbackFormEU \r\nSkype live:feedbackform2019 \r\nWhatsApp +375259112693 \r\nWhatsApp https://wa.me/+375259112693 \r\n \r\nWe only use chat for communication.',''),(2803,1,720,'5','Google',''),(2804,1,721,'6','Arlette',''),(2805,1,721,'2','06-82678492',''),(2806,1,721,'3','arlette@andre.podiatristusa.sale',''),(2807,1,721,'4','Good day,\r\n\r\nIf 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.\r\n\r\nWe are confident that our Toenail Clippers will provide you with the results you are looking for.\r\n\r\nGet yours today with 60% OFF: https://podiatristusa.sale\r\n\r\nThanks and Best Regards,\r\n\r\nArlette',''),(2808,1,722,'6','Milan De Garis',''),(2809,1,722,'2','0331 3871944',''),(2810,1,722,'3','damien.degaris90@gmail.com',''),(2811,1,722,'4','Are you Intrested doing telemarketing in USA and canada or cold calling and get more cutomers from there ?\r\n\r\n\r\nI can help you in this check out How click the link and check my five stars service ===> https://tinyurl.com/yfdc59b4\r\n\r\n\r\nSee u there\r\n\r\n Milan',''),(2812,1,723,'6','Mittie Monahan',''),(2813,1,723,'2','0370 4136682',''),(2814,1,723,'3','monahan.mittie@gmail.com',''),(2815,1,723,'4','Are you struggling to come up with new and engaging content for your website or social media channels? Writer\'s block can be a real problem for busy business owners. \r\n\r\nFortunately, there is a solution. With WordAi, you can create high-quality, unique content in minutes using the power of AI. \r\n\r\nSay goodbye to writer\'s block and hello to fresh, engaging content that your audience will love. \r\n\r\nClick the link to check out WordAi and start creating amazing content today!\r\n\r\nhttps://jmk84463.systeme.io/98399461-6878f83b\r\n\r\nThanks,\r\n\r\nDavid \r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nOpt-Out Statement: To unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2816,1,724,'6','Charlie Willis',''),(2817,1,724,'2','0346 1333205',''),(2818,1,724,'3','charlie.willis@gmail.com',''),(2819,1,724,'4','Audiobook is now the BIG goldmine, and people are making huge profits with it on a daily basis…\r\n\r\nSadly, creating and selling them can be tough and super-expensive. \r\n\r\nBut I have got good news for you…\r\n\r\nMeet Vox AI\r\n\r\n\r\nThe World’s First ChatGPT4-Powered AI App That Turns Any \"Text, URL, Website, Article, Keyword, Blog, Document or PDF\" into High-Quality Audiobooks or Podcast In 660 Different Voices & 80 Languages…\r\n\r\n>> Click Here To See The Live Demo https://shorturl.at/moEG7 \r\n\r\nWith Vox AI, you can generate content on any topic using “Siri-Like” voice command & turn it to Audiobooks, Podcasts, or Voiceovers for VSL, TV Commercial, Webinars, Sales Videos, etc\r\n\r\n...Publish To The Built-In Marketplace with 2.3M active users, Sell & Receive Instant Payments Via Multiple Methods, including Paypal, Stripe, Cards, and Bank Accounts…\r\n\r\n\r\n\r\n>> Click Here to Get Instant Access to Vox AI and Sell On Automation. https://shorturl.at/moEG7 \r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\nEven if you are a newbie with zero knowledge… VoxAI is your best shot.\r\n\r\nYou can easily Activate VoxAI in 3 simple steps & start your audiobook empire:\r\n\r\nStep 1: Login - Login to VoxAI Cloud-Bases App\r\n\r\nStep 2: Generate- Enter a Keyword, article, PDF, or even a URL… and VoxAI will turn them into a Full Audiobook or Podcast\r\n\r\nStep 3: Publish- publish your audiobooks on our built-in marketplace with 2.3 million active users.\r\n\r\nStep 4: Start Profiting as soon as you are done\r\n\r\nIt is as simple as that.\r\n\r\n>> Get Lifetime Access Here https://shorturl.at/moEG7 \r\n\r\nWith Vox AI, you can…\r\n\r\n\r\nCreate Your First Audiobook Within 2 Minutes\r\nTurn Any Article, Website, Url, PDF or Blog Into Audiobook, Podcast, VSL, Audio/Music Track…\r\nCreate A Podcast With Human Voice Without Recording\r\nChoose From 660 Real Human Voices \r\nCreate Voices In 80+ Different Languages\r\nComes With 50+ Built-In AI Features That Will Make Your Life 100x Easier \r\nWe Don’t Even Write Scripts, We Let AI Do It For Us.\r\nPublish Your AudioBook To Our Marketplace With 2.3 Million Active User\r\nPublish your AudioBook Or Podcast To (Spotify, Audible, Scribe)\r\nNo Complicated Setup - Get Up And Running In 2 Minutes\r\n\r\n…All these, and many more without Paying Any Monthly Fee\r\n\r\n>> Click Here To Get Earlybird Access (Ends In 2 Hours From Now) https://shorturl.at/moEG7 \r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\n>> Click here to get Lifetime access to VoxAI and start profiting from day one. https://shorturl.at/moEG7 \r\n\r\nCharlie',''),(2820,1,725,'6','Lance Gabriele',''),(2821,1,725,'2','0300-4900821',''),(2822,1,725,'3','gabriele.lance@gmail.com',''),(2823,1,725,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/sywma6z3\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(2824,1,726,'6','Eric Jones',''),(2825,1,726,'2','555-555-1212',''),(2826,1,726,'3','ericjonesmyemail@gmail.com',''),(2827,1,726,'4','Hi juiceelectrical.co.nz Administrator. Eric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2828,1,727,'6','Eric Jones',''),(2829,1,727,'2','555-555-1212',''),(2830,1,727,'3','ericjonesmyemail@gmail.com',''),(2831,1,727,'4','Hello juiceelectrical.co.nz Admin.\r\n\r\nI just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2832,1,729,'6','Ross Blazer',''),(2833,1,729,'2','(02) 4946 3100',''),(2834,1,729,'3','ross.blazer@gmail.com',''),(2835,1,729,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2836,1,730,'6','Eric Jones',''),(2837,1,730,'2','555-555-1212',''),(2838,1,730,'3','ericjonesmyemail@gmail.com',''),(2839,1,730,'4','Hello juiceelectrical.co.nz Owner!\r\n\r\nMy name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2840,1,731,'6','Eric Jones',''),(2841,1,731,'2','555-555-1212',''),(2842,1,731,'3','ericjonesmyemail@gmail.com',''),(2843,1,731,'4','Hello juiceelectrical.co.nz Administrator.\r\n\r\nMy name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2844,1,732,'6','Allan Dickie',''),(2845,1,732,'2','03 3326655',''),(2846,1,732,'3','allantd@orcon.net.nz',''),(2847,1,732,'4','An 11\" fluorescent light in the kitchen pantry unit has given up the ghost. It would be good to replace it with a suitable flush led unit. Has door activated switch and is wired in at the back wall. If this job is within the scope of your business we would welcome a visit from one of your staff. Location is 16A Norwood Street Beckenham. We are here most of the time but it is advisable ring before calling. Thank you in advance, regards Allan.',''),(2848,1,732,'5','website',''),(2849,1,734,'6','Eric Jones',''),(2850,1,734,'2','555-555-1212',''),(2851,1,734,'3','ericjonesmyemail@gmail.com',''),(2852,1,734,'4','To the juiceelectrical.co.nz Owner! my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2853,1,735,'6','Manie Port',''),(2854,1,735,'2','(02) 4069 1682',''),(2855,1,735,'3','manie.port@hotmail.com',''),(2856,1,735,'4','[Closing Tonight] Last Chance to get 85% off. Sale ends today!\r\n\r\nCheck Amazon - https://bit.ly/3PrZISP\r\n\r\nBuy anything on Amazon and 5 Lucky winners will get a chance to win $150 Amazon coupons.',''),(2857,1,737,'6','Kaley Rankin',''),(2858,1,737,'2','79 529 78 71',''),(2859,1,737,'3','contact@webscraft.live',''),(2860,1,737,'4','Are you struggling to attract visitors to your website? Is your online business failing to reach its full potential?\r\nUnlock the power of SEO and watch your online presence soar to new heights!\r\n\r\nWe specialize in delivering top-notch SEO services tailored to your specific needs. \r\nOur team of SEO wizards stays up-to-date with the latest industry trends and algorithms\r\nto ensure your website stays ahead of the competition.\r\n\r\nWe provide 100% High DA/PA manual backlinks and\r\nreports are delivered every 7 Days in excel Sheet.\r\n\r\nVisit : - https://buytraffics.net/order/package.php\r\n\r\nThanks',''),(2861,1,738,'6','Milan Amadio',''),(2862,1,738,'2','070 1489 1406',''),(2863,1,738,'3','fatima.amadio@msn.com',''),(2864,1,738,'4','Are you Intrested doing telemarketing in USA and canada or cold calling and get more cutomers from there ?\r\n\r\n\r\nI can help you in this check out How click the link and check my five stars service ===> https://tinyurl.com/yfdc59b4\r\n\r\n\r\nSee u there\r\n\r\n Milan',''),(2865,1,739,'6','Felicity Pluck',''),(2866,1,739,'2','0273111055',''),(2867,1,739,'3','felicitypluck@yahoo.com',''),(2868,1,739,'4','Hi Helen - I hope things are well with you. Can I please get one of your fabulous staff to give me a quote to connect a spa pool? \r\nThanks heaps \r\nFelicity',''),(2869,1,740,'6','Mike Morgan',''),(2870,1,740,'2','84476421941',''),(2871,1,740,'3','mikeHourrirm@gmail.com',''),(2872,1,740,'4','If you are looking to rank your local business on Google Maps in a specific area, this service is for you. \r\n \r\nGoogle Map Stacking is a highly effective technique for ranking your GMB within a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Morgan\r\n \r\n \r\nPS: Want a comprehensive local plan that covers everything? \r\nhttps://www.speed-seo.net/product/local-seo-bundle/',''),(2873,1,740,'5','Google',''),(2874,1,741,'6','Chris Howarth',''),(2875,1,741,'2','05.92.59.68.30',''),(2876,1,741,'3','chris.howarth@gmail.com',''),(2877,1,741,'4','Do you struggle with managing all the different aspects of your online business? Creating and launching sales funnels, setting up affiliate programs, and sending email campaigns can be time-consuming and overwhelming. But what if you could have all these tools in one place?\r\n\r\nThat\'s where systeme.io comes in. With systeme.io, you can easily create and launch your sales funnels, set up affiliate programs, and send email campaigns with just a few clicks. No more switching between different platforms or struggling with complicated software!\r\n\r\nSysteme.io is designed to simplify your online business, so you can focus on what really matters - growing your business and making more sales. \r\n\r\nDon\'t let technology hold you back - click the link below to check out systeme.io today and start taking your business to the next level!\r\n\r\nhttps://jmk84463.systeme.io/05c6a910\r\n\r\nThanks,\r\n\r\nChris\r\n\r\n\r\n\r\n\r\n335 South 600 East Smithfield UT 84335\r\n\r\nOpt-out statement: If you no longer wish to receive emails from us, simply click the link below to unsubscribe.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2878,1,742,'6','menopause tummy',''),(2879,1,742,'2','0553-8295780',''),(2880,1,742,'3','coles.lakesha@msn.com',''),(2881,1,742,'4','Weight loss stuck? You may have a toxic fatty acid that blocks weight loss. \r\n\r\nAccording to Newcastle University in England, this fatty acid forces fat cells to stream into your blood… \r\n\r\nAnd causes your body to pack on internal visceral fat. \r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\nOnce this happens, your fat-burning metabolism slows down to a crawl… your hormones completely shut down… and your body stores fat instead of burning them as energy. \r\n\r\nFortunately, a renegade doctor from Japan has uncovered a natural “belly fat Drāno” juice that flushes out this toxic fatty acid from your body. \r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\n 67,129 folks are drinking this delicious juice every morning… \r\n\r\nAnd they’re losing an average of 28 lbs – in as little as 21 days! \r\n\r\n>>> drink 1 cup every morning to lose “spare-tire” belly in record time \r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\nRobert lost 62 lbs of deadly fat clogging up his arteries and completely transformed his body in his 40s. \r\n\r\nHis wife Sonya also lost 38 lbs and 4 dress sizes… and it forced her to shop for a whole new wardrobe!\r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\nTo your good health,\r\n\r\nThanks\r\nJessica',''),(2882,1,743,'6','Eric Jones',''),(2883,1,743,'2','555-555-1212',''),(2884,1,743,'3','ericjonesmyemail@gmail.com',''),(2885,1,743,'4','Hello juiceelectrical.co.nz Admin!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2886,1,744,'6','Finley Benson',''),(2887,1,744,'2','0650 531 63 11',''),(2888,1,744,'3','william@flowintofunnels.com',''),(2889,1,744,'4','Hello!\r\n\r\nHave you created a robot virtual assistant so that no customers slip past you?\r\n\r\nWant one for under 50 bucks?\r\n\r\nHere you go: https://freeflowingcash.com/lander01\r\n\r\nThis assistant can only help get sales, there\'s only a one time fee so no monthly cost, and there is a money back guarantee.\r\n\r\nWhat\'s not to love?\r\n\r\nTry it here: https://freeflowingcash.com/lander01\r\n\r\nWishing you a productive day,\r\nWilliam\r\n\r\n\r\n\r\n\r\nOpt out of future messages by replying to the message and saying opt out.\r\njuiceelectrical.co.nz',''),(2890,1,745,'6','Christine McGlinn',''),(2891,1,745,'2','433 0156',''),(2892,1,745,'3','christine.mcglinn@gmail.com',''),(2893,1,745,'4','Hi,\r\nStruggling to retain customers for your business? Losing out on recurring revenue?\r\nIt\'s frustrating to see your hard-earned customers slip away, impacting your growth and profitability. Without loyal patrons, sustaining success becomes an uphill battle.\r\nDiscover the free online course that unlocks the secrets to gain 90 recurring customers effortlessly. Take charge of your business\'s future today!\r\n\r\nEnroll now, it is free - www.rightfulrest.com',''),(2894,1,746,'6','Anderson Dobson',''),(2895,1,746,'3','dobson.anderson@msn.com',''),(2896,1,746,'4','[Closing Tonight] Last Chance to get 85% off. Sale ends today!\r\n\r\nCheck Amazon - https://bit.ly/3PrZISP\r\n\r\nBuy anything on Amazon and 5 Lucky winners will get a chance to win $150 Amazon coupons.',''),(2897,1,747,'6','Henry',''),(2898,1,747,'2','+44 1438 94 1174',''),(2899,1,747,'3','groundupseo2018@gmail.com',''),(2900,1,747,'4','Hey!\r\n\r\nI was using your website and was loving your on-page content,\r\n\r\nAt Ground-Up SEO we specialise in optimised content and after seeing your site I had to show you this content tool.\r\n\r\nWe have a free-trial partnership with Jasper.ai, we would love if you could give it a go and send us some feedback on your experience.\r\n\r\nwww.groundupseo.com/jasperfreetrial\r\n\r\nThis is an exclusive offer that we are sending to online businesses who we think already have great content, just come back to this email if you ever wanted access to the offer in the future.\r\n\r\nThanks for your time and keep up the great work! Your site seriously looks great.\r\n\r\nBest regards,',''),(2901,1,748,'6','Jacobvab',''),(2902,1,748,'2','83472382215',''),(2903,1,748,'3','b.flueckiger@webroe.ch',''),(2904,1,748,'4','BUY A BITCOIN WALLET WITH 12600 BTC IN YOUR ACCOUNT - 3 DAYS LEFT http://12600BTCdash.mulhereslivres.online/BTC12600clinch',''),(2905,1,748,'5','Restaurant, food',''),(2906,1,749,'6','Monika Watterston',''),(2907,1,749,'2','05.59.40.73.69',''),(2908,1,749,'3','monika.watterston65@outlook.com',''),(2909,1,749,'4','Are you struggling to improve your website\'s search engine rankings? Do you find it challenging to create internal links that drive traffic and improve your SEO? \r\nIf so, Link Whisper is the solution you\'ve been searching for!\r\n\r\nLink Whisper is an innovative SEO tool that makes internal linking a breeze. With Link Whisper, you can easily create internal links that will help you rank higher on Google and other search engines. \r\nYou won\'t need to spend hours optimizing your content or worrying about complex SEO strategies.\r\n\r\nDon\'t let poor internal linking hold you back any longer. With Link Whisper, you can take control of your SEO and drive more traffic to your website. \r\nTry Link Whisper today and see the difference for yourself. \r\n\r\nClick the link to learn more and start optimizing your website for better search engine rankings!\r\nhttps://jmk84463.systeme.io/7b0c520b\r\n\r\n\r\nThanks,\r\nDavid\r\n\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2910,1,750,'6','menopause tummy',''),(2911,1,750,'2','(02) 9800 1221',''),(2912,1,750,'3','chelsea.soundy@gmail.com',''),(2913,1,750,'4','Weight loss stuck? You may have a toxic fatty acid that blocks weight loss. \r\n\r\nAccording to Newcastle University in England, this fatty acid forces fat cells to stream into your blood… \r\n\r\nAnd causes your body to pack on internal visceral fat. \r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\nOnce this happens, your fat-burning metabolism slows down to a crawl… your hormones completely shut down… and your body stores fat instead of burning them as energy. \r\n\r\nFortunately, a renegade doctor from Japan has uncovered a natural “belly fat Drāno” juice that flushes out this toxic fatty acid from your body. \r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\n 67,129 folks are drinking this delicious juice every morning… \r\n\r\nAnd they’re losing an average of 28 lbs – in as little as 21 days! \r\n\r\n>>> drink 1 cup every morning to lose “spare-tire” belly in record time \r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\nRobert lost 62 lbs of deadly fat clogging up his arteries and completely transformed his body in his 40s. \r\n\r\nHis wife Sonya also lost 38 lbs and 4 dress sizes… and it forced her to shop for a whole new wardrobe!\r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\nTo your good health,\r\n\r\nThanks\r\nJessica',''),(2914,1,751,'6','Chandra',''),(2915,1,751,'2','413-759-1234',''),(2916,1,751,'3','chandra@juiceelectrical.co.nz',''),(2917,1,751,'4','Hello there \r\n\r\nThe New Powerful LED Flashlight is The Perfect Flashlight For Any Situation!\r\n\r\nThe 3,000 Lumens & Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have.\r\n\r\n50% OFF + Free Shipping! Get it Now: https://linterna.cc\r\n\r\nThanks and Best Regards, \r\n\r\nChandra',''),(2918,1,752,'6','Eric Jones',''),(2919,1,752,'2','555-555-1212',''),(2920,1,752,'3','ericjonesmyemail@gmail.com',''),(2921,1,752,'4','To the juiceelectrical.co.nz Webmaster. I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2922,1,753,'6','Elvis Garside',''),(2923,1,753,'2','(07) 3568 2086',''),(2924,1,753,'3','elvis.garside@outlook.com',''),(2925,1,753,'4','Are you tired of dealing with slow, unreliable proxies that negatively impact your business\'s online presence? Look no further than MyPrivateProxy.net, the ultimate solution for quality private and shared proxies at affordable prices.\r\n\r\nAs a business owner, you know how crucial it is to have access to fast and reliable proxies for your online operations. Slow and unstable proxies can harm your business\'s reputation and lead to lost opportunities. MyPrivateProxy.net offers you the best private and shared proxies that are fast, secure, and reliable, so you can focus on growing your business.\r\n\r\nOur platform provides you with a range of proxy options to fit your business needs, including dedicated and shared proxies. We offer affordable pricing plans, with packages starting at just $2.49 per month. Plus, our user-friendly interface makes it easy to manage your proxies and ensure that your business is running at optimal performance.\r\n\r\nDon\'t let subpar proxies hold your business back any longer. Sign up with MyPrivateProxy.net today and see the difference for yourself. Click the link below to learn more and get started.\r\n\r\nhttps://jmk84463.systeme.io/98399461-5a3938e0\r\n\r\nBest regards,\r\n\r\n-Mark\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2926,1,754,'6','Eric Jones',''),(2927,1,754,'2','555-555-1212',''),(2928,1,754,'3','ericjonesmyemail@gmail.com',''),(2929,1,754,'4','Hello juiceelectrical.co.nz Owner! Cool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.”\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2930,1,755,'6','Joe Celine',''),(2931,1,755,'2','(669) 206-0526',''),(2932,1,755,'3','joe@seo-indepth.com',''),(2933,1,755,'4','Hi there\r\n\r\nI’ve been through your website, and if you’re wondering why more of your visitors aren’t turning into sales, I have the answer for you.\r\n\r\nWould you like a free report on this?\r\n\r\nRegards\r\nJoe\r\n(669) 206-0526',''),(2934,1,756,'6','Eric Jones',''),(2935,1,756,'2','555-555-1212',''),(2936,1,756,'3','ericjonesmyemail@gmail.com',''),(2937,1,756,'4','Dear juiceelectrical.co.nz Admin! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2938,1,757,'6','Theresa Johnson',''),(2939,1,757,'2','83115213526',''),(2940,1,757,'3','tj862883@gmail.com',''),(2941,1,757,'4','Dear friend \r\n \r\nI am Ms Therasa Johnson from UK. \r\n \r\nI am medical doctor , presently deployed to the Nato military base in Brussels, Belgium. \r\n \r\nI urgently require your assistance to secure my $12,500,000 fund in your country. \r\n \r\nI am willing to give you 20% of the fund , if you kindly assist me in receiving the fund in your bank account in your country. Please contact me directly and send your whatsApp number to : \r\nterejones2023@gmail.com \r\n \r\nI will furnish you with the details in my next mail.Thanks \r\n \r\nTheresa Johnson',''),(2942,1,757,'5','Google',''),(2943,1,758,'6','Blaine Burg',''),(2944,1,758,'2','(08) 8294 6555',''),(2945,1,758,'3','burg.blaine@hotmail.com',''),(2946,1,758,'4','Are you tired of spending hours creating video sales letters from scratch or shelling out big bucks for a professional videographer? Pictory is here to solve that problem! \r\nWith Pictory, you can create and launch professional video sales letters complete with stock footage, music, and voiceovers in just minutes. Impress your customers and boost your sales with the power of video marketing. \r\n\r\nClick the link to check out Pictory and start creating captivating videos today.\r\nhttps://jmk84463.systeme.io/ce6b1248\r\n\r\nThanks,\r\n\r\nKevin\r\n\r\n335 South 600 East Smithfield, UT 84335\r\n\r\nTo unsubscribe, click the \"Unsubscribe\" link in any of our emails. We respect your privacy and will honor all opt-out requests.\r\nhttps://voicesearch2.skin/?info=juiceelectrical.co.nz',''),(2947,1,759,'6','Richard Zoltan',''),(2948,1,759,'3','richzoltan15@gmail.com',''),(2949,1,759,'4','Hello,\r\nI am pleased to introduce you to a private financial service Hub based in the United Arab Emirates. We are engaged in private debt financing @ 3% annual interest rate on a long-term or short-term project funding to third party investors, project owners and individual\'s looking for business extension and others. We offer personal Loans, Business loans and also project Financing. Our loan processing is second to non as you can receive approval in good time. We offer flexible credit lines which can be modeled to suit your business activities. Come and take advantage of our 3% Interest rate per annum on your Business loans. You can get a Non collateral loan of up to $100Million Visit us today on https://everestfinancecorp.com/ Contact me on Richzoltan15@gmail.com so i can give you workability details\r\nYours truly\r\nRZ',''),(2950,1,760,'6','Eric Jones',''),(2951,1,760,'2','555-555-1212',''),(2952,1,760,'3','ericjonesmyemail@gmail.com',''),(2953,1,760,'4','Dear juiceelectrical.co.nz Administrator. my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2954,1,761,'6','James Walden',''),(2955,1,761,'3','fiverrcanhelp@gmail.com',''),(2956,1,761,'4','Hi,\r\n\r\nMy name is James Walden. I\'m a technology consultant. I was looking at your \r\nwebsite exposure in the search engines and figured I\'d let you know about Fiverr Services. The consultants on Fiverr \r\nare exceptional with all aspects of online marketing. The associates I have been working with are great since I can \r\nsee that I am working with a 5-star 5.0 rated and pro-verified individual, any time I need a project completed. \r\n\r\nThis is huge in online marketing, especially when you are looking at how competitive the market has become. I\'m going \r\nto leave you a few links below so you can go to the Fiverr and check them out. SEO ranking on Google and really any \r\nonline marketing is tough, thats why I always recommend a professional.\r\n\r\nTake care and good luck with marketing.\r\n\r\nFiverr - Website Design Services - https://tinyurl.com/Fiverr-WebsiteDesignServices\r\n\r\nFiverr - Search Engine Optimization (SEO) Services - https://tinyurl.com/Fiverr-SEOPage\r\n\r\nFiverr - Logo Design Services - https://tinyurl.com/Fiverr-LogoDesignServices\r\n\r\nFiverr - Graphic & Design Page - https://tinyurl.com/Fiverr-GraphicsandDesignPage\r\n\r\nFiverr - Digital Marketing Services - https://tinyurl.com/Fiverr-DigitalMarketingPage\r\n\r\nMy personal email address is below, if you have any questions. \r\n\r\nThanks for your time.\r\n\r\nJames Walden\r\nOwner/Consultant\r\nfiverrcanhelp@gmail.com',''),(2957,1,762,'6','Katrice Garretson',''),(2958,1,762,'2','031-8368597',''),(2959,1,762,'3','garretson.katrice@gmail.com',''),(2960,1,762,'4','Hey\r\n\r\nThank you for the fast delivery to my place.\r\nWhen I saw the product. I immediately saw that\r\nsomething was wrong with it, and when I opened it, the product was unfortunately\r\nbroken.\r\nI made a photo so that you can see what I mean. https://photoscreenshot.com/proofdamageorder\r\nI am a regular customer, and I regularly order from your website.\r\nHope we can solve this small problem in a professional way.\r\n\r\nYours truly\r\nKatrice Garretson\r\n\r\n\"Sent from my Smart Phone\"',''),(2961,1,763,'6','Mike Albertson',''),(2962,1,763,'2','86897487196',''),(2963,1,763,'3','mikethache@gmail.com',''),(2964,1,763,'4','Hi there, \r\n \r\nMy name is Mike from Monkey Digital, \r\n \r\nAllow me to present to you a lifetime revenue opportunity of 35% \r\nThat\'s right, you can earn 35% of every order made by your affiliate for life. \r\n \r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month. \r\n \r\nClick here to enroll with us today: \r\nhttps://www.monkeydigital.org/affiliate-dashboard/ \r\n \r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved. \r\n \r\nThanks and regards \r\nMike Albertson\r\n \r\nMonkey Digital',''),(2965,1,763,'5','Google',''),(2966,1,764,'6','Eric Jones',''),(2967,1,764,'2','555-555-1212',''),(2968,1,764,'3','ericjonesmyemail@gmail.com',''),(2969,1,764,'4','Hello juiceelectrical.co.nz Administrator. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(2970,1,765,'6','Elvira Mileham',''),(2971,1,765,'2','0312 7984794',''),(2972,1,765,'3','mileham.elvira@msn.com',''),(2973,1,765,'4','I will skyrocket your google rankings with my SEO backlinks for 10$\r\n\r\nLink : https://bit.ly/seoservice1012',''),(2974,1,766,'6','Robbin Alba',''),(2975,1,766,'2','0330 4437410',''),(2976,1,766,'3','robbin.alba67@msn.com',''),(2977,1,766,'4','Hi, I\'m sending you this message via your contact form on your website at juiceelectrical.co.nz. 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',''),(2978,1,767,'6','Mike Jenkin',''),(2979,1,767,'2','89164867528',''),(2980,1,767,'3','mikeinquiff@gmail.com',''),(2981,1,767,'4','Hi there, \r\n \r\nI have reviewed your domain in MOZ and have observed that you may benefit from an increase in authority. \r\n \r\nOur solution guarantees you a high-quality domain authority score within a period of three months. This will increase your organic visibility and strengthen your website authority, thus making it stronger against Google updates. \r\n \r\nCheck out our deals for more details. \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Ahrefs Domain Rating \r\nhttps://www.monkeydigital.co/ahrefs-seo/ \r\n \r\nThanks and regards \r\nMike Jenkin',''),(2982,1,767,'5','Google',''),(2983,1,768,'6','Sheikh Muhammad Abu Al-Saud',''),(2984,1,768,'2','83449316793',''),(2985,1,768,'3','investinformation@iaesmangement.com',''),(2986,1,768,'4','IAE INVESTMENT FUND \r\n \r\nDo you require funding for your business, projects or ventures . The IAE financial investment group provides funding globally to suit your business needs. \r\n \r\nWe are currently seeking to expand our investment portfolio ,providing financial capital for Corporate companies and businesses. \r\n \r\nOur portfolio covers Tech, construction, building, marine/ shipping,oil & gas, manufacturing, real estate, mining and more. \r\n \r\nContact us and get the funding you need. \r\n \r\nSheikh Muhammad Abu Al-Saud \r\nIAE financial investment group \r\nEmail: investinformation@iaemangements.com \r\nTel :+44 7449 066 073',''),(2987,1,768,'5','Google',''),(2988,1,769,'6','Natalie Ward',''),(2989,1,769,'2','0223040094',''),(2990,1,769,'3','nataliecward22@gmail.com',''),(2991,1,769,'4','Hi there. Just wanting a quote for the installation of a wall oven. Thanks.',''),(2992,1,769,'5','Google search',''),(2993,1,770,'6','Tim Jarman',''),(2994,1,770,'2','01.84.38.88.61',''),(2995,1,770,'3','jarman.tim5@gmail.com',''),(2996,1,770,'4','Agencies feel fulfilled knowing they\'re making a real difference in the healthcare, medicine and wellness industries. How can you replicate that positive impact? Often it’s due to certainty around being able to stand out in a crowded market. Sign up and get access to a reliable source of new clients. Without competition and without burn out, starting today: https://getclientsmd.com \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n444 Alaska Avenue, Torrance 90503 US\r\n\r\nUnsubscribe at: https://123bye.com',''),(2997,1,771,'6','Christiane De Neeve',''),(2998,1,771,'2','03.11.76.90.42',''),(2999,1,771,'3','christiane.deneeve@gmail.com',''),(3000,1,771,'4','I will do dr60 to 80 plus seo dofollow backlinks for 10$\r\n\r\nLink : https://bit.ly/seoservice114',''),(3001,1,772,'6','Julia Laporte',''),(3002,1,772,'2','(35) 3057-8208',''),(3003,1,772,'3','millionaire@trustne.com',''),(3004,1,772,'4','Hi,\r\n\r\nGetting Daily Commissions online really and truly isn\'t all that hard.\r\n\r\n(I know that’s easy for me to say, but hear me out)\r\n\r\nThe REAL reason most people never, EVER make any money online is because of this one thing...\r\n\r\nMost people OVER complicate things.\r\n\r\nThey make things wwwwaaaaayyyyy harder than they need to be.\r\n\r\nThey try to create complicated products (Of course, if you want to sell your own product, our blueprint will also help you drive sales)\r\nThey go and try to set up fancy websites\r\nThey attempt to figure out how to connect complicated payment systems and customer support tools\r\n\r\n(I’m getting a headache just thinking about it)\r\n\r\nBut the good news is that...\r\n\r\nThere IS an easier way to get daily commissions in your inbox.\r\nGrow your Instagram account from 0 to 100,000+ followers, then monetize it or drive traffic to your website. \r\nAnd I’ll show you how right now: https://www.trustne.com/millionaire\r\n\r\nSeriously, you’re going to discover how you can...\r\n\r\nPocket DAILY commissions starting as quickly as THIS WEEK\r\n\r\nAnd it’s much easier than you might think.\r\n\r\nCheck it out now: https://www.trustne.com/millionaire\r\n\r\nTo YOUR Success,\r\nJulia\r\n\r\nUNSUBSCRIBE: https://www.trustne.com/unsubscribe\r\n2151 N, Forbes Blvd Ste 101, Tucson, AZ 85745',''),(3005,1,773,'6','Alex Sham',''),(3006,1,773,'2','+13322224908',''),(3007,1,773,'3','sales@metaagency.cc',''),(3008,1,773,'4','Hi, my name is Alex.S, I have noticed something wrong with your website and I want to volunteer for free, do you have a second to chat about it? Here\'s my phone number, call or text me when you have a second: +13322224908\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com',''),(3009,1,775,'6','Pip Simmons',''),(3010,1,775,'2','021474736',''),(3011,1,775,'3','pip3_@hotmail.com',''),(3012,1,775,'4','Hi,\r\n\r\nKeen to get someone out to look at options for replacing our existing halogens with LEDs please. We have a mix of single and dual lights currently - 4 bedroom + office, 2 living area home in Oak Tree Lane, Rolleston.',''),(3013,1,775,'5','I think Juice powered our pool area for the previous owners, so would be good to get you guys back.',''),(3014,1,776,'6','Céline Dupont',''),(3015,1,776,'3','contact@restaurantmanagementsoftware.com',''),(3016,1,776,'4','Hello!\r\n\r\nDon\'t let your restaurant fall behind! Take action now!\r\n\r\nAre you searching for an efficient solution for managing your restaurant? Don\'t waste another second! I am pleased to introduce you to a revolutionary software that will fulfill all your needs.\r\n\r\nImagine being able to manage your menus, plan your floors, and oversee your tables with ease. This software offers you that possibility while allowing you to supervise your staff effortlessly. No more wasted time, no more costly errors!\r\n\r\nBut that\'s not all! Your customers will now be able to place their orders directly from their table, thanks to an integrated ordering feature. Say goodbye to forgotten or incorrect orders—your customers will love this seamless and modern experience.\r\n\r\nIn addition to that, the software offers you the ability to manage detailed reports and analyses. Make informed decisions and optimize your operations for even better results.\r\n\r\nImagine, too, that splitting bills will no longer be a bottleneck at the point of sale. The software handles this complex task in the blink of an eye, relieving your staff and providing a seamless customer experience.\r\n\r\nJoin the over 29,000 restaurateurs who already trust this tool. Whether you have a food truck, a bakery, or a fast-food establishment, this software adapts to all imaginable restaurant types.\r\n\r\nDon\'t let the competition get ahead. Click the link below now to discover how this software can transform your restaurant:\r\n\r\nhttps://tinyurl.com/4uzk3njh\r\n\r\nTime is precious, and your success cannot wait. Take action now and secure a competitive edge in the restaurant industry!\r\n\r\nDon\'t miss out on this opportunity!\r\n\r\nBest regards',''),(3017,1,777,'6','Mike Macduff',''),(3018,1,777,'2','83285225376',''),(3019,1,777,'3','mikelida@gmail.com',''),(3020,1,777,'4','Hi there \r\n \r\nJust checked your juiceelectrical.co.nz baclink profile, I noticed a moderate percentage of toxic links pointing to your website \r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge. \r\n \r\nStart recovering your ranks today: \r\nhttps://www.hilkom-digital.com/free-clean-up/ \r\n \r\n \r\nRegards \r\nMike Macduff\r\nHilkom Digital SEO Experts \r\nhttps://www.hilkom-digital.com/',''),(3021,1,777,'5','Google',''),(3022,1,778,'6','Leland Deason',''),(3023,1,778,'2','(81) 7466-4719',''),(3024,1,778,'3','leland.deason@gmail.com',''),(3025,1,778,'4','I will do dr60 to 80 plus seo dofollow backlinks for 10$\r\n\r\nLink : https://bit.ly/seoservice114',''),(3026,1,779,'6','Milan Mazure',''),(3027,1,779,'2','0357 4420016',''),(3028,1,779,'3','minerva.mazure@outlook.com',''),(3029,1,779,'4','Are you Intrested doing telemarketing in USA and canada or cold calling and get more cutomers from there ?\r\n\r\n\r\nI can help you in this check out How click the link and check my five stars service ===> https://tinyurl.com/yfdc59b4\r\n\r\n\r\nSee u there\r\n\r\n Milan',''),(3030,1,780,'6','Christel Mcelroy',''),(3031,1,780,'2','716-646-5107',''),(3032,1,780,'3','christel.mcelroy@hotmail.com',''),(3033,1,780,'4','I will 120 high authority, 30k tier backlinks for SEO with login for 5$\r\n\r\nLink : https://bit.ly/seoservice125',''),(3034,1,781,'6','David Palmer',''),(3035,1,781,'2','442 31 451',''),(3036,1,781,'3','davidpalmer2023@gmail.com',''),(3037,1,781,'4','Download Temu App and Get $100 FREE!\r\n\r\nhttp://www.temu-app.com\r\n\r\nDavid',''),(3038,1,782,'6','Garland Roesch',''),(3039,1,782,'2','0357 2786684',''),(3040,1,782,'3','garland.roesch@googlemail.com',''),(3041,1,782,'4','I will build SEO backlinks with high quality contextual link building\r\n\r\nAna SEO Agency has Over a Decade of Experience in SEO Area\r\n\r\nSEO Agency with 20 years of experience over 17,300 orders completed. That\'s right, we have colleagues on the team here who have been working with SEO since 2002. Our Agency has already helped thousands of people on the internet with SEO, Linking Building and much more.\r\nYou know how difficult it is to get organic traffic to your website and how valuable it is. So, save your energy and let Ana SEO Agency do this hard work. We have all the experience you need to help you improve your ranking and other factors on your site. Sign up for one of our gigs now or send me a message and be ready to see your site grow. Lets grow up?\r\n\r\nLink : https://bit.ly/seoservicepro0',''),(3042,1,783,'6','Sonia Nona',''),(3043,1,783,'2','06821 15 57 59',''),(3044,1,783,'3','sonia.nona@gmail.com',''),(3045,1,783,'4','Hi there,\r\n\r\nWe 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.\r\n\r\nCheck out the features of Robin AI here: https://shorturl.at/ev257\r\n\r\nSay goodbye to costly subscriptions and hello to an all-in-one solution. With zero upfront costs and a 30-day money-back guarantee, Robin A.I. empowers you to start your own AI-powered business and achieve unparalleled efficiency.\r\n\r\nDon\'t miss this opportunity to revolutionize your workflow and boost your success.\r\n\r\nDiscover the game-changing capabilities of Robin AI today: https://shorturl.at/ev257\r\n\r\nSonia\r\n\r\nIf you do not wish us to contact you again with any other offer, let us know here:\r\nhttps://rb.gy/mgkbd',''),(3046,1,784,'6','Nila',''),(3047,1,784,'2','06-79170393',''),(3048,1,784,'3','nila@juiceelectrical.co.nz',''),(3049,1,784,'4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.co\r\n\r\nTo your success,\r\n\r\nNila\r\nContact - Juice Electrical',''),(3050,1,785,'6','Starla Weed',''),(3051,1,785,'2','41-78-64-57',''),(3052,1,785,'3','weed.starla97@googlemail.com',''),(3053,1,785,'4','Agencies feel fulfilled knowing they\'re making a real difference in the healthcare, medicine and wellness industries. How can you replicate that positive impact? Often it’s due to certainty around being able to stand out in a crowded market. Sign up and get access to a reliable source of new clients. Without competition and without burn out, today: https://getclientsmd.com \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n444 Alaska Avenue, Torrance 90503 US\r\n\r\nUnsubscribe: https://123bye.com',''),(3054,1,787,'6','Charla Austral',''),(3055,1,787,'2','315-893-1352',''),(3056,1,787,'3','austral.charla@msn.com',''),(3057,1,787,'4','I will build SEO backlinks with high quality contextual link building\r\n\r\nAna SEO Agency has Over a Decade of Experience in SEO Area\r\n\r\nSEO Agency with 20 years of experience over 17,300 orders completed. That\'s right, we have colleagues on the team here who have been working with SEO since 2002. Our Agency has already helped thousands of people on the internet with SEO, Linking Building and much more.\r\nYou know how difficult it is to get organic traffic to your website and how valuable it is. So, save your energy and let Ana SEO Agency do this hard work. We have all the experience you need to help you improve your ranking and other factors on your site. Sign up for one of our gigs now or send me a message and be ready to see your site grow. Lets grow up?\r\n\r\nLink : https://bit.ly/seoservicepro0',''),(3058,1,788,'6','Mitchel Kirsova',''),(3059,1,788,'2','078 3639 8622',''),(3060,1,788,'3','mitchel.kirsova@msn.com',''),(3061,1,788,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3062,1,789,'6','Amy Hardey',''),(3063,1,789,'2','01.79.95.21.98',''),(3064,1,789,'3','amy.hardey@gmail.com',''),(3065,1,789,'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\r\n\r\nthis message was sent to your website contact form at: juiceelectrical.co.nz',''),(3066,1,790,'6','Alex Sham',''),(3067,1,790,'2','+13322224908',''),(3068,1,790,'3','sales@metaagency.cc',''),(3069,1,790,'4','Did you know why you are not geting leads from your website if you want to know call or text me when you have a second: +13322224908\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com',''),(3070,1,791,'6','Stuart Farnham',''),(3071,1,791,'2','(08) 8371 0061',''),(3072,1,791,'3','farnham.stuart@gmail.com',''),(3073,1,791,'4','Marketing challenges keeping you up at night? Join us and get some sleep: https://getclientsmd.com \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n444 Alaska Avenue, Torrance 90503 US\r\n\r\nUnsubscribe at: https://123bye.com',''),(3074,1,792,'6','Angeles Sutherland',''),(3075,1,792,'2','0664 483 28 69',''),(3076,1,792,'3','contact@webscraft.live',''),(3077,1,792,'4','Get Google Reviews for your business reputation.\r\n\r\nIt’s very important for your business.\r\nBecause customers first time see your reviews and make a decision about your business.\r\nReviews Go a Vital role for business & it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n\r\nORDER HERE :- https://websboost.com/order/googlereviews.php\r\n\r\n\r\nWhy Should You Buying Google Reviews? Customer reviews from Google matter. Grow your business with Website and outrank your competitors.\r\nCustomers have more trust in other customers than in Businesses increase your business sales.\r\n\r\nWe provide :-\r\n✔ 100% Satisfaction Guaranteed\r\n✔ Manual \r\n✔ Express Delivery\r\n✔ High Quality\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nORDER HERE :- https://websboost.com/order/googlereviews.php\r\n\r\nThanks\r\nWebs Boost',''),(3078,1,793,'6','Milan Lysaght',''),(3079,1,793,'3','kandice.lysaght@gmail.com',''),(3080,1,793,'4','Create Short-form videos for your bussiness with long-term results\r\n\r\n\r\nCheck Out How click Here ===> https://fas.st/t/ESo8XQPi\r\n\r\nSee u there\r\n\r\n Milan',''),(3081,1,794,'6','Marguerite Landrum',''),(3082,1,794,'2','0358 0636800',''),(3083,1,794,'3','landrum.marguerite@gmail.com',''),(3084,1,794,'4','Hello,\r\n\r\nHave you ever imagined a course in which teachers strip naked for you?\r\n\r\nThis is what really happens in NakedU, an Elite Level of Sex Training Course, \r\n\r\nin which 50+ world-class model hot instructors strip naked for you, to teach you Super Secret Techniques in Explicit Details.\r\n\r\nIn these 40+ Episodes of NakedU, you will learn everything you need to become a Master of your Bedroom.\r\n\r\nAnd the best thing is, You are getting this $697 worth of Elite course on 88% discount for next 3 days.\r\n\r\nWatch Free Episode of NakedU Here: https://strippoffer.com/shop/naked-u-entire-collection/',''),(3085,1,795,'6','Megan Atkinson',''),(3086,1,795,'2','0396 4622890',''),(3087,1,795,'3','meganatkinson149@gmail.com',''),(3088,1,795,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers safely and practically. \r\n\r\nWe aim to gain you 400-1200+ real human followers per month, with all actions safe as they are made manually (no bots).\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nLet me know if you wish to see some of our previous work.\r\n\r\nKind Regards,\r\nMegan',''),(3089,1,796,'6','Amy Domingo',''),(3090,1,796,'2','(11) 3408-6413',''),(3091,1,796,'3','domingo.amy@outlook.com',''),(3092,1,796,'4','I will list your business in top 350 live USA local SEO citations for 5$.\r\n\r\nLink : https://bit.ly/seoservice116',''),(3093,1,797,'6','Brent Hoeft',''),(3094,1,797,'2','06-88989676',''),(3095,1,797,'3','hoeft.brent86@outlook.com',''),(3096,1,797,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3097,1,798,'6','Kristofer',''),(3098,1,798,'2','828-210-6510',''),(3099,1,798,'3','magicmat@juiceelectrical.co.nz',''),(3100,1,798,'4','Get The Worlds Greatest Magic Sand Free Beach Mat!\r\n\r\nWatch sand, dirt & dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking.\r\n\r\nAct Now And Receive A Special Discount For Our Magic Mat!\r\n\r\nGet Yours Here: https://magicmats.co\r\n\r\nAll the best, \r\n \r\nKristofer',''),(3101,1,799,'6','Milan Schnell',''),(3102,1,799,'2','052 289 73 95',''),(3103,1,799,'3','schnell.jerrod@gmail.com',''),(3104,1,799,'4','Create Short-form videos for your bussiness with long-term results\r\n\r\n\r\nCheck Out How click Here ===> https://fas.st/t/ESo8XQPi\r\n\r\nSee u there\r\n\r\n Milan',''),(3105,1,800,'6','Mark Ross',''),(3106,1,800,'2','(03) 5301 0618',''),(3107,1,800,'3','evan.pilpel29@msn.com',''),(3108,1,800,'4','Urgently Needed: Review Apps on your phone for $25 - $50 Per Hour. No Experience Required. \r\n\r\nhttps://bit.ly/PayReviewApps\r\n\r\nBest, \r\nMark',''),(3109,1,801,'6','Elton Pither',''),(3110,1,801,'2','06-98074422',''),(3111,1,801,'3','pither.elton65@hotmail.com',''),(3112,1,801,'4','I will list your business in top 350 live USA local SEO citations for 5$.\r\n\r\nLink : https://bit.ly/seoservice116',''),(3113,1,802,'6','Alex Sham',''),(3114,1,802,'2','+13322224908',''),(3115,1,802,'3','sales@metaagency.cc',''),(3116,1,802,'4','Did you know why you are not geting leads from your website if you want to know call or text me when you have a second: +1 (575) 904-0473\r\n\r\nor you can drop me an email on alexsham.dev@gmail.com',''),(3117,1,803,'6','Eric Jones',''),(3118,1,803,'2','555-555-1212',''),(3119,1,803,'3','ericjonesmyemail@gmail.com',''),(3120,1,803,'4','Dear juiceelectrical.co.nz Administrator! \r\n\r\nEric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3121,1,804,'6','Eric Jones',''),(3122,1,804,'2','555-555-1212',''),(3123,1,804,'3','ericjonesmyemail@gmail.com',''),(3124,1,804,'4','To the juiceelectrical.co.nz Webmaster! this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3125,1,805,'6','Hassan Michaelis',''),(3126,1,805,'2','0356 8261890',''),(3127,1,805,'3','michaelis.hassan@gmail.com',''),(3128,1,805,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3129,1,806,'6','Sharyl Clemmons',''),(3130,1,806,'2','02.26.60.01.74',''),(3131,1,806,'3','sharyl.clemmons@gmail.com',''),(3132,1,806,'4','I will create high DR 70 plus permanent seo dofollow backlinks for 10$\r\n\r\nLink : https://bit.ly/seoservice144',''),(3133,1,807,'6','Laura',''),(3134,1,807,'2','655390359',''),(3135,1,807,'3','laura.business@agenciasubido.com',''),(3136,1,807,'4','Hello! My name is Laura and I am very happy to greet you.\r\n\r\nI wanted to write to you because I thought it would be interesting to discuss the possibility of your business appearing every month in digital newspapers as news to position it at the top of the internet, i.e. with real articles in the newspaper that are not marked as advertising and are not deleted.\r\n\r\nThe news is published by more than sixty newspapers of great authority to improve the positioning of your website and reputation.\r\n\r\n\r\n\r\nCould you provide me with a phone number to offer you up to two months free of charge?\r\n\r\nThank youHello! My name is Laura and I am very happy to greet you.\r\n\r\nI wanted to write to you because I thought it would be interesting to discuss the possibility of your business appearing every month in digital newspapers as news to position it at the top of the internet, i.e. with real articles in the newspaper that are not marked as advertising and are not deleted.\r\n\r\nThe news is published by more than sixty newspapers of great authority to improve the positioning of your website and reputation.\r\n\r\n\r\n\r\nCould you provide me with a phone number to offer you up to two months free of charge?\r\n\r\nThank you',''),(3137,1,807,'5','Agencia Subido',''),(3138,1,808,'6','Rashid Maktoum',''),(3139,1,808,'2','81428998826',''),(3140,1,808,'3','luis.alvess100@hotmail.com',''),(3141,1,808,'4','Salaam, \r\nHow are you doing? Are you an entrepreneur/business owner or chief executive officer seeking capital for your business growth or expansion? \r\n \r\nI\'m contacting you to know if you are open for investors into your company as we are currently providing financial support to companies and individuals for business and project expansion. \r\n \r\nWe also pay commission to individuals who direct clients to us for financing. \r\n \r\nHasheem Investments Holding Ltd. will be willing to partner with you for your business growth. \r\n \r\nReply via this email projectfinance@hasheeminvestment.com for further discussions if interested. \r\nIgnore if not interested. \r\nAllah bless you in good health and sound mind, \r\nShaikh Rashid Maktoum \r\nChief Executive Officer.',''),(3142,1,808,'5','Google',''),(3143,1,809,'6','Robert Davis',''),(3144,1,809,'2','30-21-47-38',''),(3145,1,809,'3','jung.roth63@hotmail.com',''),(3146,1,809,'4','Hey there,\r\n\r\nGet ahead of the competition with AI\r\n\r\nGo to https://rokl.ink/increased-sales \r\n\r\nto uncover a lucrative partnership opportunity that will skyrocket your leads and sales. \r\n\r\n\r\nBest regards,\r\n\r\n Thomas Williams \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(3147,1,810,'6','Steve Collins',''),(3148,1,810,'2','(42) 5849-3218',''),(3149,1,810,'3','stevecollins@gmail.com',''),(3150,1,810,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://hop.clickbank.net/?affiliate=aisocial&vendor=writeapps&pid=joblandingpage\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from AISocial',''),(3151,1,812,'6','Free Web Hosting',''),(3152,1,812,'2','(304) 002-1000',''),(3153,1,812,'3','noreply@freehostforlife.co',''),(3154,1,812,'4','Hello,\r\n\r\nStep into a world of boundless hosting at https://FreeHostForLife.co! Experience unlimited bandwidth, free SSL, and more - all for $0, & free for life.\r\n\r\nUnlimited Bandwidth, Free SSL, Transfer Your Website Toda\r\n\r\nElevate your site now and enjoy the benefits, all at no cost!\r\n\r\nBest regards,\r\n\r\nhttps://FreeHostForLife.co',''),(3155,1,813,'6','Kandace Baley',''),(3156,1,813,'2','623-776-6266',''),(3157,1,813,'3','baley.kandace@gmail.com',''),(3158,1,813,'4','I will convert website to android app and ios app for 15$\r\n\r\nLink : https://bit.ly/mobileappcreations103',''),(3159,1,814,'6','Eric Jones',''),(3160,1,814,'2','555-555-1212',''),(3161,1,814,'3','ericjonesmyemail@gmail.com',''),(3162,1,814,'4','Hello juiceelectrical.co.nz Webmaster.\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3163,1,815,'6','Tina Manning',''),(3164,1,815,'2','01.44.49.16.01',''),(3165,1,815,'3','gptdash@databaseen.com',''),(3166,1,815,'4','Hi,\r\n\r\nAre you struggling to create content that not only engages your audience but also drives profits for your business?\r\n\r\nLook no further than this new AI solution: https://www.databaseen.com/gptdash \r\n\r\nThis dashboard was designed by top internet marketers and copywriters who know how to leverage ChatGPT to create profitable content. With GPTDash, all you have to do is enter a few keywords and let the engine do the rest.\r\n\r\nThe result? Original, engaging, and profitable content that will set you apart from your competition. Plus, with this easy-to-use dashboard, you\'ll save valuable time and resources.\r\n\r\nDon\'t just take my word for it. I encourage you to try GPTDash today and see the results for yourself. There is a launch special today that I don\'t want you to miss: https://www.databaseen.com/gptdash \r\n\r\nStay ahead of the game with this new AI dashboard. As always, I\'m here to help you succeed.\r\n\r\nTo your success,\r\n\r\nTina Manning \r\n\r\nUNSUBSCRIBE: https://www.databaseen.com/unsubscribe\r\n\r\nAddress: 1951 W 5600 S #1, Roy, UT 84067',''),(3167,1,816,'6','Juanita Ashbolt',''),(3168,1,816,'2','466 0056',''),(3169,1,816,'3','juanita.ashbolt@msn.com',''),(3170,1,816,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3171,1,817,'6','Vicky Currier',''),(3172,1,817,'2','0934-3683027',''),(3173,1,817,'3','vicky.currier@hotmail.com',''),(3174,1,817,'4','I will convert website to android app and ios app for 15$\r\n\r\nLink : https://bit.ly/mobileappcreations103',''),(3175,1,818,'6','Adrianna',''),(3176,1,818,'2','06-99965206',''),(3177,1,818,'3','oc.uherskehradiste@coleman.cz',''),(3178,1,818,'4','Hey there, \r\n\r\nI hope this email finds you well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nBange 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.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: http://bangeshop.com\r\n\r\nRegards,\r\n\r\nAdrianna',''),(3179,1,819,'6','Eric Jones',''),(3180,1,819,'2','555-555-1212',''),(3181,1,819,'3','ericjonesmyemail@gmail.com',''),(3182,1,819,'4','Hi juiceelectrical.co.nz Admin.\r\n\r\nThis is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3183,1,820,'6','Eric Jones',''),(3184,1,820,'2','555-555-1212',''),(3185,1,820,'3','ericjonesmyemail@gmail.com',''),(3186,1,820,'4','To the juiceelectrical.co.nz Webmaster.\r\n\r\nThis is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3187,1,821,'6','Mark Pacheco',''),(3188,1,821,'2','0291-2825587',''),(3189,1,821,'3','pacheco.mark@gmail.com',''),(3190,1,821,'4','I saw your website on google your website not good sorry to say that but I will help your perfect design for your website make your website increase your speed..\r\n\r\nI will redesign your website for 15$\r\n\r\nLink : https://bit.ly/websitedesign117',''),(3191,1,822,'6','Joe Celine',''),(3192,1,822,'2','(669) 206-0526',''),(3193,1,822,'3','joe@seo-indepth.com',''),(3194,1,822,'4','Hi there\r\n\r\nI’ve been through your website, and if you’re wondering why more of your visitors aren’t turning into sales, I have the answer for you.\r\n\r\nWould you like a free report on this?\r\n\r\nRegards\r\nJoe\r\n(669) 206-0526',''),(3195,1,823,'6','Georgina Haynes',''),(3196,1,823,'2','0387 5316837',''),(3197,1,823,'3','georginahaynes620@gmail.com',''),(3198,1,823,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\n\r\nhttps://www.youtube.com/watch?v=zvGF7uRfH04\r\nhttps://www.youtube.com/watch?v=cZPsp217Iik\r\nhttps://www.youtube.com/watch?v=JHfnqS2zpU8\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $239\r\n1-2 minutes = $339\r\n2-3 minutes = $439\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nGeorgina',''),(3199,1,824,'6','Eric Jones',''),(3200,1,824,'2','555-555-1212',''),(3201,1,824,'3','ericjonesmyemail@gmail.com',''),(3202,1,824,'4','Hello juiceelectrical.co.nz Owner. my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3203,1,825,'6','Steve Collins',''),(3204,1,825,'2','618-354-5363',''),(3205,1,825,'3','stevecollins@gmail.com',''),(3206,1,825,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://hop.clickbank.net/?affiliate=aisocial&vendor=writeapps&pid=joblandingpage\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from AISocial',''),(3207,1,826,'6','Corine Storm',''),(3208,1,826,'2','507-780-3359',''),(3209,1,826,'3','storm.corine95@msn.com',''),(3210,1,826,'4','I saw your website on google your website not good sorry to say that but I will help your perfect design for your website make your website increase your speed..\r\n\r\nI will redesign your website for 15$\r\n\r\nLink : https://bit.ly/websitedesign117',''),(3211,1,827,'6','Phil Romano',''),(3212,1,827,'2','0470 73 38 89',''),(3213,1,827,'3','romano.phil@outlook.com',''),(3214,1,827,'4','Is this your website? juiceelectrical.co.nz? I just sent you a message via the contact form on your site and was wondering if you wanted to try some unique advertising that reaches business owners worldwide? How do we do it? Well you just witnessed our process. We send your ad text to contact forms on websites worldwide. Plans start at a hundred dollars for posting your ad to one million sites.',''),(3215,1,828,'6','Kari France',''),(3216,1,828,'2','(71) 6932-4263',''),(3217,1,828,'3','france.kari94@gmail.com',''),(3218,1,828,'4','I saw your website on google your website not good sorry to say that but I will help your perfect design for your website make your website increase your speed..\r\n\r\nI will redesign your website for 15$\r\n\r\nLink : https://bit.ly/websitedesign117',''),(3219,1,829,'6','Emma Olsson',''),(3220,1,829,'3','emmalolsson@yahoo.com',''),(3221,1,829,'4','Hi \r\nDo you sell parts for the Apollo 2 downlight. The transformer (Visionary Phoenix 2) has stopped working. \r\nThanks\r\nEmma',''),(3222,1,830,'6','Mike Alsopp',''),(3223,1,830,'2','85367745627',''),(3224,1,830,'3','mikeinquiff@gmail.com',''),(3225,1,830,'4','Hi \r\n \r\nThis is Mike Alsopp\r\n \r\nLet me show you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Alsopp\r\n \r\nmike@strictlydigital.net',''),(3226,1,830,'5','Google',''),(3227,1,831,'6','Abby Santiago',''),(3228,1,831,'2','01.75.65.50.23',''),(3229,1,831,'3','santiago.abby@gmail.com',''),(3230,1,831,'4','Hi,\r\n\r\nWe\'d like to propose a partnership opportunity that could benefit both our businesses. For every client you refer to us who uses our visa services to visit Indonesia and Bali, we are pleased to offer you a 10% referral commission on the total cost.\r\n\r\n\r\n\r\nVisit our website at www.swiftvisaindo.com to learn more about our services. Should you have any questions or wish to discuss this opportunity, please contact us via WhatsApp at Nana\'s number: +6281139602022.\r\n\r\n\r\n\r\nLet\'s collaborate and provide exceptional visa services to your clients.\r\n\r\nBest regards,\r\n\r\n\r\n\r\nNana',''),(3231,1,832,'6','Adelaida Harries',''),(3232,1,832,'2','(02) 6127 3118',''),(3233,1,832,'3','customer-success@easywealthsystems.com',''),(3234,1,832,'4','Meet an AI tool that revolutionizes video creation and editing. It effortlessly turns long-form content into short, sharable videos, transforms scripts into high-conversion sales videos, and converts blog posts into engaging videos.\r\n\r\nPlus, it automatically adds captions for a broader reach. \r\n\r\nDon\'t let your business be forgettable. Visit https://easywealthsystems.com/video-bot and start automating your video creation, using a tool trusted by thousands of companies like yours!\r\n\r\n\r\nPS. I\'ve created this code 4Q6DU just for you (You\'ll save 20% OFF). Don\'t tell my Chief Financial Officer that I gave you this. :)\r\n\r\nBest Regards,\r\n\r\nAdelaida Harries\r\n\r\nEasy Wealth Systems LLC.\r\n\r\n\r\nTo opt-out of future communications, visit https://easywealthsystems.com/?domain=juiceelectrical.co.nz',''),(3235,1,833,'6','Tanesha Juan',''),(3236,1,833,'2','09534 94 40 29',''),(3237,1,833,'3','tanesha.juan2@gmail.com',''),(3238,1,833,'4','I saw your website on google your website not good sorry to say that but I will help your perfect design for your website make your website increase your speed..\r\n\r\nI will redesign your website for 15$\r\n\r\nLink : https://bit.ly/websitedesign117',''),(3239,1,834,'6','Stuart Goins',''),(3240,1,834,'2','01.36.19.37.10',''),(3241,1,834,'3','stuart.goins99@gmail.com',''),(3242,1,834,'4','From TODAY we open FREE access to our top GrooveAI tool for all who want to use it\r\n\r\nThis will not last forever, so enter now, from this link:\r\n\r\nhttps://yfind.net/groove-the-free-suite-of-marketing-tools-that-will-change-your-business/\r\n\r\nWhat is Groove AI?\r\n\r\nGroove.ai\'s Landing Page Funnel Builder offers an innovative solution for businesses looking to create high-converting landing pages and funnels without the need for web development, design experience, or a copywriter.\r\n\r\nWith its intuitive drag-and-drop interface, AI-generated copy, and SEO optimization, Groove.ai\'s Landing Page Funnel Builder lets you create stunning landing pages and funnels effortlessly, accelerating your marketing efforts and driving results.\r\n\r\nHarness the power of Groove.ai\'s Landing Page Funnel Builder and unlock new opportunities for your business.',''),(3243,1,835,'6','Elissa Worthen',''),(3244,1,835,'2','078 4551 7832',''),(3245,1,835,'3','elissa.worthen@outlook.com',''),(3246,1,835,'4','Hello,\r\n\r\nTired of paying thousands of dollars for leads? We have made the entire LinkedIn Database (B2B and B2B) available for $15\r\n\r\n145 countries included.\r\nUpdated 2022.\r\nInstant Delivery.\r\n\r\nView samples here for each country:\r\n\r\nhttps://drive.google.com/drive/folders/1UIiRok89yaFJMs09Hg3-uRXHc0jE5ITp\r\n\r\nYou can get it all for $15 here: \r\n\r\nDataLeadsTree.com',''),(3247,1,836,'6','Lots of problem your webpage',''),(3248,1,836,'2','09831523806',''),(3249,1,836,'3','arguetafrancisco191@gmail.com',''),(3250,1,836,'4','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in the top 10 positions in Google Search. You know things about working; I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spots with guaranteed period.\r\n \r\nThere is no wonder that it is possible now cause, I have found out that there are few things that need to be done for better performances (Some of them we will discuss in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Structured Data is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9. Website Loading Speed Development (Both Mobile and Desktop)\r\n10.Off –Page SEO work\r\n \r\nLots are pending…………….\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spots in Google Search & your sales Increase.\r\n \r\n \r\nSir/ Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n\r\nLooking forward\r\n \r\nRegards\r\n\r\nFrancisco Argueta\r\n\r\nIf you do not wish to receive this again, please reply with \"unsubscribe\" in the subject line.',''),(3251,1,836,'5','google',''),(3252,1,837,'6','Robin Tench',''),(3253,1,837,'2','442 02 561',''),(3254,1,837,'3','thomas.tench@outlook.com',''),(3255,1,837,'4','Expose your bussiness and products to millions of customers by adding them in to the Facebook Marketplace \r\n\r\nCheck Out How I can help you in this click Here ===> https://tinyurl.com/maujjbzs\r\n\r\nSee u there\r\n\r\nRobin',''),(3256,1,838,'6','Adela Tellez',''),(3257,1,838,'2','0487 81 91 38',''),(3258,1,838,'3','adela.tellez@msn.com',''),(3259,1,838,'4','Free email marketing software for your website. That grabs email from the viewer and convert into sales to your business...\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3260,1,839,'6','Howard Easton',''),(3261,1,839,'2','077 3466 5920',''),(3262,1,839,'3','easton.howard@gmail.com',''),(3263,1,839,'4','While browsing through the site, I did notice that the page loading speed appeared to be slower than optimal. Site speed is a vital factor in providing a satisfying user experience, and it also affects search engine rankings. A slow website might deter visitors and potential customers, thereby impacting the site\'s overall performance.\r\n\r\nWith your permission, I would like to offer my assistance in speeding up your website, completely FREE of charge. Utilizing industry-standard tools and techniques, I can analyze the underlying issues and implement the necessary adjustments to enhance your site\'s loading time.\r\n\r\nI believe this improvement can significantly benefit both you and your visitors, translating into a better user experience and potentially increased user engagement.\r\n\r\nIf you\'re interested in taking me up on this offer, please visit https://bit.ly/3OJPjkN , and we can set up a time to discuss the details. I assure you that all work will be performed with the utmost integrity and in alignment with best practices.\r\n\r\nThank you for considering this opportunity, and I look forward to hearing from you soon.\r\n\r\nBest Regards,\r\n[Contact Information- https://bit.ly/3OJPjkN ]',''),(3264,1,840,'6','Thomas Wilson',''),(3265,1,840,'2','79 645 93 97',''),(3266,1,840,'3','ruthie.flynn@gmail.com',''),(3267,1,840,'4','Hello,\r\n\r\nWant to outshine the competition with AI? \r\n\r\nGo to https://rokl.ink/increased-sales now to explore our partnership \r\n\r\nthat promises a surge in leads and sales for your business.\r\n\r\nBest regards,\r\n\r\n Joseph Taylor \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(3268,1,841,'6','Candy Himmel',''),(3269,1,841,'2','01.62.05.73.58',''),(3270,1,841,'3','candy.himmel@gmail.com',''),(3271,1,841,'4','Free email marketing software for your website. convert your viewer to subcriber and convert to sales...\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3272,1,842,'6','Amie Munoz',''),(3273,1,842,'2','492 37 115',''),(3274,1,842,'3','amie.munoz@msn.com',''),(3275,1,842,'4','Free email marketing software for your website. convert your viewer to subcriber and convert to sales...\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3276,1,844,'6','Wesley Tseng',''),(3277,1,844,'3','wesley.tseng47@gmail.com',''),(3278,1,844,'4','Hi,\r\nCan you please let me know if you guys do wall mount canopy rangehood installation? And if you do, can you provide me with a quote and also let me know if you do disposal of the old rangehood as well? \r\nLocation is in Belfast, Christchurch. Thanks.',''),(3279,1,845,'6','Van Gurt',''),(3280,1,845,'2','84226945314',''),(3281,1,845,'3','info@financial-group.org',''),(3282,1,845,'4','Hello, \r\nWe hope this letter finds you in good shape. \r\n \r\nAre you available for an important conversation regarding your business investment and partnership? Send us an email to vangurt@financial-group.org for more details. \r\n \r\nRegards, \r\nMr. Van Gurt \r\nvangurt@financial-group.org',''),(3283,1,845,'5','Google',''),(3284,1,846,'6','Onita Obrien',''),(3285,1,846,'2','468 75 170',''),(3286,1,846,'3','obrien.onita@gmail.com',''),(3287,1,846,'4','Free email marketing software for your website. convert your viewer to subcriber and convert to sales...\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3288,1,847,'6','Izetta Officer',''),(3289,1,847,'3','izetta.officer@googlemail.com',''),(3290,1,847,'4','Free email marketing software for your website. convert your viewer to subcriber and convert to sales...\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3291,1,848,'6','James Thompson',''),(3292,1,848,'2','0311 0885256',''),(3293,1,848,'3','stowell.dusty@gmail.com',''),(3294,1,848,'4','Hello,\r\n\r\nWant to outshine the competition with AI? \r\n\r\nGo to https://rokl.ink/increased-sales now to explore our partnership \r\n\r\nthat promises a surge in leads and sales for your business.\r\n\r\nBest regards,\r\n\r\n David Jones \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(3295,1,849,'6','Megan Atkinson',''),(3296,1,849,'2','21-81-08-41',''),(3297,1,849,'3','meganatkinson149@gmail.com',''),(3298,1,849,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- We guarantee to gain you 400-1000+ followers per month.\r\n- People follow you because they are interested in you, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you\'d like to see some of our previous work, let me know, and we can discuss it further.\r\n\r\nKind Regards,\r\nMegan',''),(3299,1,850,'6','Salvatore Muniz',''),(3300,1,850,'2','30-50-06-85',''),(3301,1,850,'3','salvatore.muniz@gmail.com',''),(3302,1,850,'4','Hire Your employee with deel with all HR tools..\r\n\r\nwe\'ve helped 15,000+ businesses save time, money, and resources\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3303,1,851,'6','Joni Riordan',''),(3304,1,851,'2','08504 55 79 30',''),(3305,1,851,'3','joni.riordan96@gmail.com',''),(3306,1,851,'4','Hi\r\n\r\nI hope my message finds you in good health.\r\n\r\nI noticed that your site: \" juiceelectrical.co.nz \" is seen by search engines....\r\nBut you can easily do better. Just read the lines below:\r\n---\r\nBenefits of an SEO audit: Comprehensive analysis of website\'s SEO performance, identifies strengths, weaknesses, and provides actionable recommendations for improved search engine visibility and user experience.\r\n\r\nBenefits of free SEO tools: Cost-effective access to essential SEO insights, helps improve search engine rankings and online visibility without financial constraints.\r\n\r\n---\r\nTo better understand and improve the ranking of your site \" juiceelectrical.co.nz \" for FREE.\r\nFollow this link:\r\n--- https://rb.gy/1qs9f\r\n\r\nAnd for a FREE SEO Audit, follow this link: --- https://rb.gy/gc3pa\r\n\r\n---\r\nAnd thousands of Themes, Plugins, Scripts, Unlimited Graphics: Follow this link: https://rebrand.ly/unlimitedmore\r\n\r\nAnd make your own online videos, banners: follow this link to see this miracle: https://rebrand.ly/makeyourvideos\r\n---\r\n\r\nGood luck to you and \" juiceelectrical.co.nz \"\r\n\r\nRegards\r\nGerardi',''),(3307,1,852,'6','David Williams',''),(3308,1,852,'2','0688 401 20 74',''),(3309,1,852,'3','hamann.susan@gmail.com',''),(3310,1,852,'4','Hello There,\r\n\r\nGet ahead of the competition with AI\r\n\r\nGo to https://rokl.ink/increased-sales \r\n\r\nto uncover a lucrative partnership opportunity that will skyrocket your leads and sales. \r\n\r\nBest wishes,\r\n\r\n Michael Wilson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(3311,1,853,'6','Athena Lyne',''),(3312,1,853,'2','(03) 5307 4918',''),(3313,1,853,'3','lyne.athena@msn.com',''),(3314,1,853,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3315,1,854,'6','Bebe',''),(3316,1,854,'2','0660 735 89 98',''),(3317,1,854,'3','bebe@mail.medicopostura.com',''),(3318,1,854,'4','Hi there \r\n\r\nLooking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help!\r\n\r\nExperience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep.\r\n\r\nMade from lightweight, breathable fabric, it ensures comfort all day long.\r\n\r\nGrab it today at a fantastic 60% OFF: https://medicopostura.com\r\n\r\nPlus, enjoy FREE shipping for today only!\r\n\r\nDon\'t miss out on this amazing deal. Get yours now and start transforming your posture!\r\n\r\nThe Best, \r\n\r\nBebe',''),(3319,1,855,'6','Elenasn',''),(3320,1,855,'2','86486125538',''),(3321,1,855,'3','elenasn@oktora.com',''),(3322,1,855,'4','Ηi!\r\nΙ\'vе nоtiсеd thаt mаny guуѕ рrеfer regular gіrlѕ.\r\nI аpplaude thе mеn out thеre who hаd thе bаllѕ to еnϳоу thе lоve оf mаny wоmen and сhoose the one thаt he knew would be hіs bеst friend durіng thе bumрy and сrazу thіng сallеd lіfe.\r\nΙ wаntеd tо bе that friеnd, not just а ѕtаblе, rеlіаblе and borіng housеwіfe.\r\nΙ аm 22 yеarѕ old, Εlena, frоm the Czесh Rерublіc, know Engliѕh languagе аlѕо.\r\nΑnywaу, уоu саn fіnd mу рrоfile hеre: http://grouserilupquaiwuz.gq/idi-48777/',''),(3323,1,855,'5','Google',''),(3324,1,856,'6','Mike Lewin',''),(3325,1,856,'2','88144353928',''),(3326,1,856,'3','mikeHourrirm@gmail.com',''),(3327,1,856,'4','If you are looking to rank your local business on Google Maps in a specific area, this service is for you. \r\n \r\nGoogle Map Stacking is a highly effective technique for ranking your GMB within a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Lewin\r\n \r\n \r\nPS: Want a comprehensive local plan that covers everything? \r\nhttps://www.speed-seo.net/product/local-seo-bundle/',''),(3328,1,856,'5','Google',''),(3329,1,857,'6','Donte Cantrell',''),(3330,1,857,'2','06308 90 82 92',''),(3331,1,857,'3','cantrell.donte@msn.com',''),(3332,1,857,'4','I will create high authority DR 90 plus permanent white hat SEO dofollow backlinks for 10$\r\n\r\nlink : https://bit.ly/3OFdJum',''),(3333,1,859,'6','Steve Collins',''),(3334,1,859,'2','06-74979840',''),(3335,1,859,'3','stevecollins@gmail.com',''),(3336,1,859,'4','An opportunity to make some side income. $\r\n\r\nHey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for 2 more social media assistants to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve working with a select few companies to fulfil social media tasks.\r\n\r\nWe currently are hiring 2 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\n https://hop.clickbank.net/?affiliate=aisocial&vendor=socialpaid&pid=jobquiz\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from AISocial',''),(3337,1,860,'6','Valanda Irwin',''),(3338,1,860,'2','0226006452',''),(3339,1,860,'3','valanda.irwin@gmail.com',''),(3340,1,860,'4','Our heat distribution system switch panel is affected by our light switch and think it needs rewiring.',''),(3341,1,860,'5','Google',''),(3342,1,861,'6','Lakesha Trujillo',''),(3343,1,861,'2','05.56.85.85.06',''),(3344,1,861,'3','trujillo.lakesha@gmail.com',''),(3345,1,861,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3346,1,862,'6','Lopez',''),(3347,1,862,'2','089 45 12 43',''),(3348,1,862,'3','contact@sinceresconnexions.com',''),(3349,1,862,'4','We hope this message finds you well. Our team of branding specialists recently had the privilege of getting acquainted with your esteemed plumber company. \r\nWhile exploring your online presence and engaging with your brand, we were truly impressed by the dedication your business upholds.\r\n\r\nHowever, upon closer examination, we identified a few key areas that could benefit from a revitalized brand identity. \r\nWe believe that a well-crafted brand has the power to create a lasting and meaningful connection with your target audience, ultimately propelling your business to new heights.\r\n\r\nHere are some aspects we\'ve noticed that could be further enhanced:\r\n\r\nVisual Consistency: Creating a cohesive visual identity across all touchpoints can help strengthen brand recognition and leave a lasting impression on your audience.\r\nStorytelling: A compelling brand story that resonates with your audience\'s emotions can forge a deeper connection and foster brand loyalty.\r\nModern Appeal: Staying up-to-date with design trends can convey a sense of innovation and relevance, positioning your brand as a leader in your industry.\r\nUser Experience: A user-centric approach to design and functionality can improve engagement and encourage a seamless interaction with your brand.\r\nMarket Differentiation: A distinct and unique brand identity can set you apart from competitors and carve out a niche that resonates with your target market.\r\n\r\nA modern and updated brand image has the potential to not only attract new customers but also to elevate your existing customer base.\r\nBy fostering a renewed sense of connection and trust, a refreshed brand can lead to increased customer engagement and, importantly, a boost in average order value, thereby positively impacting your bottom line.\r\n\r\nWe invite you to take the next step toward transforming your brand into a powerful asset that resonates with your audience on a deeper level. Our team is eager to collaborate with you to develop a comprehensive rebranding strategy that aligns\r\n with your business goals and aspirations.\r\n\r\nLet\'s connect and explore how we can work together to create a brand identity that reflects your company\'s values, resonates with your audience, and drives meaningful business growth.\r\n\r\nFeel free to reach out via our fiverr page using this link:\r\nhttps://bit.ly/BrandNewFiverr2\r\n\r\nThank you for considering this exciting opportunity. We look forward to the possibility of partnering with you to redefine and reignite your brand\'s journey.\r\n\r\nWarm regards,',''),(3350,1,863,'6','Darell Reynolds',''),(3351,1,863,'2','0337 9673446',''),(3352,1,863,'3','reynolds.darell@outlook.com',''),(3353,1,863,'4','Hi,\r\n\r\nYou are falling behind if you are not utilizing AI in your website. AI tools save you time and cost. \r\n\r\nBut using different AI tools can get messy. Get all your AI tools organized in one place to increase their efficency.\r\n\r\nUse AI to generate SEO keywords, research on trending topics, write catchy articles, generate images, create videos, automate your social media posting. \r\n\r\nYou can do all these and much more from a single dashboard. \r\n\r\nLearn more about improving your experience with AI at: https://aifantasies.online',''),(3354,1,864,'6','Gladis Christison',''),(3355,1,864,'2','071 496 45 86',''),(3356,1,864,'3','christison.gladis61@gmail.com',''),(3357,1,864,'4','I checked you website has Domain Rating 10 in ahrefs I will increase to 45+ for 10$...\r\n\r\nHigher domain rating means that your website is more likely to rank higher in search results, and it also means that you\'re more likely to get clicks from users. In addition, high domain rating indicates that your website is trustworthy and authoritative, which can help you rank higher for competitive keywords.\r\n\r\nlink : https://bit.ly/DR-service\r\n\r\n\r\n4216 Lorraine Street, Panama City Beach FL 32408',''),(3358,1,865,'6','Aditya Jha',''),(3359,1,865,'2','7077060205',''),(3360,1,865,'3','Siterank4@gmail.com',''),(3361,1,865,'4','Hello and Good Day,\r\nI am aditya jha Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nThanks and Regards',''),(3362,1,865,'5','Google Search',''),(3363,1,866,'6','Daniel Hur',''),(3364,1,866,'2','0211259153',''),(3365,1,866,'3','dhur123@hotmail.com',''),(3366,1,866,'4','Hi there,\r\n\r\nJust wondered if I could get a quote for a small job.\r\nI am wanting to have a sensor and two downlights installed under the soffit in front of the garage.\r\nIf possible I was also wanting these lights and an existing light in front of the entrance to be connected and working under the same sensor.\r\n\r\nIt would be great to hear from you.\r\n\r\nMany thanks,\r\n\r\nDaniel',''),(3367,1,866,'5','Word of mouth',''),(3368,1,867,'6','Richard Taylor',''),(3369,1,867,'2','60 816 71 99',''),(3370,1,867,'3','perron.rory@outlook.com',''),(3371,1,867,'4','Hey there,\r\n\r\nGet ahead of the competition with AI\r\n\r\nGo to https://rokl.ink/increased-sales \r\n\r\nto uncover a lucrative partnership opportunity that will skyrocket your leads and sales. \r\n\r\n\r\nBest regards,\r\n\r\n David Williams \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(3372,1,868,'6','Mike Izzo',''),(3373,1,868,'2','618-686-9175',''),(3374,1,868,'3','makeitonline017@gmail.com',''),(3375,1,868,'4','AIWiseMind creates SEO optimized articles and product reviews,\r\nthen auto-posts them to your website for hands-free affiliate marketing.\r\n\r\nDoes this content rank?\r\n\r\nYes, 100%. In fact, this is how we do all our launch jacking\r\nproduct reviews now on my website vidsociety.com. Visit the site,\r\ncopy some of the post titles and search them in Google for proof.\r\n\r\nWhat all does AIWiseMind do?\r\n\r\n✅ Creates long-form informational articles\r\n✅ Creates long-form product reviews\r\n✅ Auto searches + create Amazon product reviews\r\n✅ Creates reviews on ANY product\r\n✅ Auto set-up WordPress websites\r\n✅ Manage, edit & post all your content\r\n✅ Schedule when all content gets posted\r\n✅ Auto-embed videos, images, Amazon links\r\n✅ Creates Google-friendly content that ranks\r\n✅ Auto-create product review round-ups\r\n✅ With more features on the way\r\n\r\nCheck out some demo articles on our website here.\r\nhttps://makeitoniline.com/aiwise\r\n\r\nReviews here https://makeitoniline.com/aiwise\r\n\r\nMike',''),(3376,1,869,'6','Eric Jones',''),(3377,1,869,'2','555-555-1212',''),(3378,1,869,'3','ericjonesmyemail@gmail.com',''),(3379,1,869,'4','Hi juiceelectrical.co.nz Admin!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3380,1,870,'6','Natalia Bloodworth',''),(3381,1,870,'2','0211615818',''),(3382,1,870,'3','talia.alex@hotmail.co.nz',''),(3383,1,870,'4','Hiya \r\nWe need please a quote for Wire supply and install new dedicated 15A power point mounted to house backing off living room \r\nWire and install Residual current circuit breaker at switchboard for new circuit outside for our incoming spa, we understand we need to dig a trench for it as it is a couple metres from the house where we want the spa hooked up. We also, pending cost would like a sensor spot light on the front yard if that could be included separately in the quote. \r\nThanks \r\nTalia',''),(3384,1,871,'6','Eric Jones',''),(3385,1,871,'2','555-555-1212',''),(3386,1,871,'3','ericjonesmyemail@gmail.com',''),(3387,1,871,'4','Hello juiceelectrical.co.nz Webmaster.\r\n\r\nEric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3388,1,872,'6','Henry Hailes',''),(3389,1,872,'2','040-5867611',''),(3390,1,872,'3','hailes.henry@gmail.com',''),(3391,1,872,'4','free email marketing software for your website that convert visitor into subscribers and subscribers into sales..\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3392,1,873,'6','Eric Jones',''),(3393,1,873,'2','555-555-1212',''),(3394,1,873,'3','ericjonesmyemail@gmail.com',''),(3395,1,873,'4','Hi juiceelectrical.co.nz Admin.\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.”\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3396,1,875,'6','Marti Fenbury',''),(3397,1,875,'3','fenbury.marti2@googlemail.com',''),(3398,1,875,'4','free email marketing software for your website that convert visitor into subscribers and subscribers into sales..\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3399,1,876,'6','Eric Jones',''),(3400,1,876,'2','555-555-1212',''),(3401,1,876,'3','ericjonesmyemail@gmail.com',''),(3402,1,876,'4','Hi juiceelectrical.co.nz Webmaster.\r\n\r\nMy name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3403,1,877,'6','Mike Faber',''),(3404,1,877,'2','82892149434',''),(3405,1,877,'3','mikeinquiff@gmail.com',''),(3406,1,877,'4','Hi there, \r\n \r\nI have reviewed your domain in MOZ and have observed that you may benefit from an increase in authority. \r\n \r\nOur solution guarantees you a high-quality domain authority score within a period of three months. This will increase your organic visibility and strengthen your website authority, thus making it stronger against Google updates. \r\n \r\nCheck out our deals for more details. \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Ahrefs Domain Rating \r\nhttps://www.monkeydigital.co/ahrefs-seo/ \r\n \r\nThanks and regards \r\nMike Faber',''),(3407,1,877,'5','Google',''),(3408,1,878,'6','Veta Hembree',''),(3409,1,878,'2','01.06.59.21.44',''),(3410,1,878,'3','veta.hembree@yahoo.com',''),(3411,1,878,'4','free email marketing software for your website that convert visitor into subscribers and subscribers into sales..\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3412,1,879,'6','Mike Roger',''),(3413,1,879,'2','82181511232',''),(3414,1,879,'3','mikelida@gmail.com',''),(3415,1,879,'4','Hi there \r\n \r\nJust checked your juiceelectrical.co.nz baclink profile, I noticed a moderate percentage of toxic links pointing to your website \r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge. \r\n \r\nStart recovering your ranks today: \r\nhttps://www.hilkom-digital.de/professional-linksprofile-clean-up-service/ \r\n \r\n \r\nRegards \r\nMike Roger\r\nHilkom Digital SEO Experts \r\nhttps://www.hilkom-digital.de/',''),(3416,1,879,'5','Google',''),(3417,1,880,'6','Steve Collins',''),(3418,1,880,'2','06-70712223',''),(3419,1,880,'3','stevecollins@gmail.com',''),(3420,1,880,'4','Hey there, my name is Steve and I am a remote recruitment agent for AISocial, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\nhttps://hop.clickbank.net/?affiliate=aisocial&vendor=writeapps&pid=joblandingpage\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from AISocial',''),(3421,1,881,'6','Robert Johnson',''),(3422,1,881,'2','26-66-42-59',''),(3423,1,881,'3','merry.currier@msn.com',''),(3424,1,881,'4','Hey there,\r\n\r\nGet ahead of the competition with AI\r\n\r\nGo to https://rokl.ink/increased-sales \r\n\r\nto uncover a lucrative partnership opportunity that will skyrocket your leads and sales. \r\n\r\n\r\nBest regards,\r\n\r\n Richard Taylor \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(3425,1,882,'6','Jesse Gellibrand',''),(3426,1,882,'2','0314 7401135',''),(3427,1,882,'3','jesse.gellibrand52@gmail.com',''),(3428,1,882,'4','free email marketing software for your website that convert visitor into subscribers and subscribers into sales..\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3429,1,883,'6','Georgina Haynes',''),(3430,1,883,'2','06426 25 86 97',''),(3431,1,883,'3','georginahaynes620@gmail.com',''),(3432,1,883,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll 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.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nGeorgina\r\n\r\nIf you are not interested, unsubscribe here: https://explainervideos4u.net/unsubscribe.php?d=juiceelectrical.co.nz',''),(3433,1,884,'6','Sarah Paterson',''),(3434,1,884,'2','02102723064',''),(3435,1,884,'3','sarahfraser47@yahoo.co.nz',''),(3436,1,884,'4','Hi there we are in Rolleston and having issues with our dishwasher, a few months ago we had an older unit and it stopped one night and smelt like burning so we bought a new dishwasher, last night it stopped and we could smell burning around the plug under the sink for it, it also has a brand new surge protector, we have tested it on 2 different plugs with and without the surge protector and it will no longer turn on.',''),(3437,1,884,'5','Facebook',''),(3438,1,885,'6','Andrew Howe',''),(3439,1,885,'2','0274328758',''),(3440,1,885,'3','nzhowefamily@gmail.com',''),(3441,1,885,'4','Hi Team. We are potentially purchasing a BYD Atto 3 EV and are investigating installing a smart wall charger at home, in our garage. After a charger that can be managed via an App to link to our solar system and also \"programmed\" to charge during off peak times (2100 - 0700hrs). Have been looking at \"wallbox\". Appreciate your thoughts. Also considering a couple of your \"smart switches\" to link to bathroom fan heaters & maybe our garage door opener. We are in Rolleston - you have done previous jobs for us. Cheers.',''),(3442,1,885,'5','Have used you a couple of times - great team and service.',''),(3443,1,886,'6','Oren Ewen',''),(3444,1,886,'2','06-39283856',''),(3445,1,886,'3','ewen.oren@gmail.com',''),(3446,1,886,'4','I will give high tf, da, DR permanent dofollow backlinks for SEO for 10$\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3447,1,887,'6','Valerie Gilruth',''),(3448,1,887,'2','269-749-2664',''),(3449,1,887,'3','valerie.gilruth87@gmail.com',''),(3450,1,887,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3451,1,888,'6','Tobias Brendel',''),(3452,1,888,'2','032 257 15 22',''),(3453,1,888,'3','tobias.brendel@hotmail.com',''),(3454,1,888,'4','Introducing vAI: The Ultimate Video Marketing Revolution!\r\n\r\nHijack Any Video Within Seconds: Whether it’s on YouTube, Vimeo, or a custom video, vAI puts you in control. Simply copy and paste the video URL, and let our AI technology work its magic.\r\n\r\nSell Any Product Instantly: With vAI, you can seamlessly embed call-to-actions, buy buttons, download links, maps, and more directly into the videos. Convert viewers into buyers with a single click.\r\n\r\nGet Access Here:\r\nhttps://yfind.net/introducing-vai-the-ultimate-video-marketing-revolution/',''),(3455,1,889,'6','Angela Morford',''),(3456,1,889,'2','79 562 54 26',''),(3457,1,889,'3','angela.morford@msn.com',''),(3458,1,889,'4','I will give high tf, da, DR permanent dofollow backlinks for SEO for 10$\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3459,1,890,'6','Eric Jones',''),(3460,1,890,'2','555-555-1212',''),(3461,1,890,'3','ericjonesmyemail@gmail.com',''),(3462,1,890,'4','Hi juiceelectrical.co.nz Admin. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3463,1,891,'6','Donny Jelks',''),(3464,1,891,'2','956-496-2053',''),(3465,1,891,'3','jelks.donny@googlemail.com',''),(3466,1,891,'4','I will give high tf, da, DR permanent dofollow backlinks for SEO for 10$\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3467,1,892,'6','Kurtis Buckingham',''),(3468,1,892,'2','448 9426',''),(3469,1,892,'3','buckingham.kurtis@gmail.com',''),(3470,1,892,'4','Hi Business Owner,\r\nI hope this email finds you well. I wanted to reach out and introduce AdCreative.ai. [Get Free Trial Here: https://free-trial.adcreative.ai/6gv0snfp0m1b ]\r\nWe specialize in helping businesses like yours create professional ads and social media content in minutes, all with the help of our AI-powered platform.\r\n\r\nAs a business owner, I\'m sure you know how important it is to stand out from the competition and get your brand in front of the right audience. AdCreative.ai can help you do just that, all while saving you time and resources.\r\nStrart your free journey: https://free-trial.adcreative.ai/6gv0snfp0m1b\r\n\r\nRegards,\r\nTeam AdCreative',''),(3471,1,893,'6','Robert McBride',''),(3472,1,893,'3','seo@howheart.com',''),(3473,1,893,'4','Hello, \r\nI\'m Robert, co-founder of Howheart. Howheart noticed that you have an excellent website https://juiceelectrical.co.nz/contact/. \r\n\r\nHowheart is a website research institute that is looking for website like yours, help you increase revenue by showing you how to find reliable ways to grow your website.\r\n \r\nMethod: SEO service providers are verified and praised by webmasters, the largest service trading platform in the world to protect your rights and interests, only if you get what you want, the platform will hand over your payment to the service provider \r\n \r\nService provider example (the highest rating is 5.0): \r\n Name: M Aqib - Starting Price: $5, 3 Days Delivery (7,300 orders completed) - Method: Build 500 high quality and low OBL backlinks for your money site - Webmasters satisfaction rating: 4.9\r\n \r\n Name: Wasim Ashraf - Starting price: $15, 1 Days Delivery (1,900 orders completed) - Method: On-Page SEO For Higher Rankings in Google Search Results - Webmasters satisfaction rating: 5.0 \r\n ... \r\n For Super website, Provider – Randy M is an ex-Googler and has helped 3400 Super websites grow their sites, and webmasters rated him 5.0! Starting Price: $250. Now sign up for a platform account and chat with him online. \r\n \r\nEarn more dollars today: https://www.howheart.com/seorank\r\n\r\nThank you for your time, \r\nRobert D. McBride\r\n\r\n\r\nUNSUBSCRIBE: https://www.howheart.com/unsubscribe/\r\n1051 S Main St, Pocatello, ID 83204',''),(3474,1,896,'6','Gertie Schey',''),(3475,1,896,'2','53-96-95-90',''),(3476,1,896,'3','schey.gertie@gmail.com',''),(3477,1,896,'4','I will give high tf, da, DR permanent dofollow backlinks for SEO for 10$\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3478,1,897,'6','Syreeta Langley',''),(3479,1,897,'2','06809 26 01 56',''),(3480,1,897,'3','langley.syreeta@googlemail.com',''),(3481,1,897,'4','Two new courses are available for download\r\n\r\nThe AI ChatGPT Workshop (6.4 GB of content)\r\n\r\nBaker Advanced SEO (1.6 GB of content)\r\n\r\nThe price of the two courses is around 700 to 997 dollars, as usual, you can download them for free from this link\r\n\r\nhttps://bit.ly/marketingseoinvestmentcourses\r\n\r\nHurry up and download both courses before they delete them.',''),(3482,1,898,'6','Mike Higgins',''),(3483,1,898,'2','85432456596',''),(3484,1,898,'3','mikethache@gmail.com',''),(3485,1,898,'4','Hi there, \r\n \r\nMy name is Mike from Monkey Digital, \r\n \r\nAllow me to present to you a lifetime revenue opportunity of 35% \r\nThat\'s right, you can earn 35% of every order made by your affiliate for life. \r\n \r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month. \r\n \r\nClick here to enroll with us today: \r\nhttps://www.monkeydigital.org/affiliate-dashboard/ \r\n \r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved. \r\n \r\nThanks and regards \r\nMike Higgins\r\n \r\nMonkey Digital',''),(3486,1,898,'5','Google',''),(3487,1,899,'6','Van Jorgenson',''),(3488,1,899,'3','jorgenson.van@gmail.com',''),(3489,1,899,'4','You might Like this https://bit.ly/seoservicez ( complete seo service )',''),(3490,1,900,'6','Kaspar Bennett',''),(3491,1,900,'2','094421054',''),(3492,1,900,'3','kasparbennettnz@gmail.com',''),(3493,1,900,'4','\"Kia ora,\r\n\r\nWe\'re a NZ based online marketing company. Focused on growing NZ trades businesses\r\n\r\nI was on your website and wanted to share some ideas and tips for improving your online marketing efforts.\r\n\r\nCan I send you a free video (with a Website report) specifically for your business and how you could improve? It will show you how you can increase leads & sales through your website.\r\n\r\nThe advice is complimentary, no strings attached.\r\n\r\nPlease email us back for a free video review of your website.\r\n\r\nNgā Mihi,\r\nKaspar Bennett\r\nkasparbennettnz@gmail.com\r\nMarketing Consultant\r\n\r\n\r\n\r\n\r\nIf you’re NOT interested, simply reply “NO” and I will not contact you again.\"',''),(3494,1,901,'6','Kristie Warf',''),(3495,1,901,'2','(85) 7557-4096',''),(3496,1,901,'3','kristie.warf57@gmail.com',''),(3497,1,901,'4','Millions of men and women are enjoying accelerated fat loss, increased energy and healthier, happier lives…\r\n\r\nI invite you to try\r\nhttps://bit.ly/ikariajuice-Leanbelly\r\n\r\nAll the best,',''),(3498,1,902,'6','Nina Berry',''),(3499,1,902,'2','070 8570 6279',''),(3500,1,902,'3','nina.berry49@googlemail.com',''),(3501,1,902,'4','Do you need help to create a website that truly reflects your brand and captivates your audience? We have a game-changing solution for you! Introducing our cutting-edge AI-powered website building service, your key to an exceptional online presence.\r\n\r\nIn today\'s digital age, having a professional website is non-negotiable for success. Whether you\'re a budding entrepreneur, a freelancer, or a seasoned business owner, your website is often the first impression you make on potential customers. That\'s why we\'ve harnessed the power of AI to make website creation a breeze, even if you have no technical expertise.\r\n\r\nWhy Choose Our AI-Powered Website Building Service?\r\n\r\n✓ Stunning Designs: Our AI is designed to create visually appealing and modern website designs that resonate with your target audience. Stand out from the crowd with a website that leaves a lasting impact.\r\n✓ Tailored to Your Needs: Whether you\'re in e-commerce, blogging, or professional services, our AI understands your industry and customizes your website accordingly. Your site will be uniquely yours.\r\n✓ User-Friendly Interface: You don\'t need to be a tech wizard to use our service. Our user-friendly interface guides you through the entire process, making it as simple as a few clicks.\r\n✓ Time and Cost-Efficient: Building a website from scratch can take weeks if not months. With our AI, you can have a fully functional website ready within hours, saving you valuable time and resources.\r\n✓ Responsive Design: Your website will look flawless on any desktop, tablet, or smartphone device. Say goodbye to compatibility issues.\r\n\r\nHow It Works:\r\n\r\nTell Us About Your Vision: Share your ideas, preferences, and business details with us. Our AI will use this information to generate design options tailored to your brand.\r\nChoose Your Design: Browse through the AI-generated design options and select the one that resonates with you. Don\'t worry; you can further customize it to your liking.\r\nAdd Your Content: Use our intuitive drag-and-drop interface to add your text, images, and other content easily. You have complete control over your website\'s content.\r\nLaunch with Confidence: Once satisfied with your website, hit the launch button. Watch your brand-new, professionally designed-website go live for the world to see!\r\nReady to take your online presence to the next level? Embrace the future of website building with our AI-powered service. Say goodbye to the complexities of coding and design - we\'ve got you covered.\r\n\r\nTake advantage of this opportunity to have a stunning, functional website that reflects your brand identity. Visit our website https://bit.ly/AIWebsite to get started today!\r\nHere\'s to a website that truly works for you.\r\n\r\n\r\nBest regards,\r\nAIWebsite',''),(3502,1,903,'6','Vicky Wu',''),(3503,1,903,'3','vicky160719@gmail.com',''),(3504,1,903,'4','Hi,\r\nJust want to know do you have vehicle charge fee for your electrical service in Rolleston?\r\nThanks \r\nVicky',''),(3505,1,904,'6','Manuela Byrnes',''),(3506,1,904,'2','04802 47 05 61',''),(3507,1,904,'3','manuela.byrnes@msn.com',''),(3508,1,904,'4','Hi,\r\n\r\nGreat website especially I have visited your website last month..\r\n\r\nJust wanted to bring to your notice JIM SASKO made 100K$ using the software for their construction company they able to get more clients through the software.\r\n\r\nThis was possible using ADcreative AI software\r\n\r\nBest part of the software that create high converting AI generated ads that sell.\r\nFast and easy.\r\n\r\nCheck it out https://bit.ly/adcreativesoftware\r\n\r\nBecause You will get free 500$ google ads credit..\r\n\r\nI have contacted others too like arrowfoundation and they are also super interested in this.\r\n\r\nANY Help about the software contact at contact@adcreative.ai\r\n\r\nDon\'t miss out\r\n\r\nThank you',''),(3509,1,905,'6','Mike Andrews',''),(3510,1,905,'2','86787752165',''),(3511,1,905,'3','peterDilkmaida@gmail.com',''),(3512,1,905,'4','Greetings \r\n \r\nI have just verified your SEO on juiceelectrical.co.nz for its SEO metrics and saw that your website could use a push. \r\n \r\nWe will enhance your ranks organically and safely, using only state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/unbeatable-seo/ \r\n \r\n \r\nRegards \r\nMike Andrews\r\nDigital X SEO Experts',''),(3513,1,905,'5','Google',''),(3514,1,906,'6','Yqqpintic',''),(3515,1,906,'2','83283723984',''),(3516,1,906,'3','fuyfrr65654ogo@outlook.com',''),(3517,1,906,'4','My pussy is not just flowing heavily, I\'m pouring all over. If you don\'t fuck her, she squirts https://xbebz.datlngllfe.net?utm_source=da57dc555e50572d&s1=12179&s2=1471083&j1=1',''),(3518,1,906,'5','Google',''),(3519,1,907,'6','Deborah Powe',''),(3520,1,907,'2','0486 44 92 94',''),(3521,1,907,'3','deborah.powe@gmail.com',''),(3522,1,907,'4','Hi,\r\n\r\nGreat website especially I have visited your website last month..\r\n\r\nJust wanted to bring to your notice JIM SASKO made 100K$ using the software for their construction company they able to get more clients through the software.\r\n\r\nThis was possible using ADcreative AI software\r\n\r\nBest part of the software that create high converting AI generated ads that sell.\r\nFast and easy.\r\n\r\nCheck it out https://bit.ly/adcreativesoftware\r\n\r\nBecause You will get free 500$ google ads credit..\r\n\r\nI have contacted others too like arrowfoundation and they are also super interested in this.\r\n\r\nANY Help about the software contact at contact@adcreative.ai\r\n\r\nDon\'t miss out\r\n\r\nThank you',''),(3523,1,908,'6','Uzair Nealy',''),(3524,1,908,'2','455 62 988',''),(3525,1,908,'3','magnolia.nealy@gmail.com',''),(3526,1,908,'4','The Instagram social media platform has seen explosive growth over the last two years. It now has 500\r\nmillion users that are desperate for fun and exciting content and this is a massive opportunity for you\r\nto promote your business.\r\n\r\nI can help you to grow and promote your Instagram account organically\r\nvisit my 5 star profile and join over 3000 happy customer\r\n\r\nClick here to check out ===== > https://tinyurl.com/yc6rwxsw\r\n\r\nSee you there!\r\nRegards\r\nBrian And Dee',''),(3527,1,909,'6','Elke Lewin',''),(3528,1,909,'2','(02) 9569 2185',''),(3529,1,909,'3','elke.lewin@yahoo.com',''),(3530,1,909,'4','Generate hundreds of ads that sell. Fast and easy.\r\nTailored for brands and agencies.\r\nhttps://free-trial.adcreative.ai/6gv0snfp0m1b\r\n\r\n\r\nIncrease conversions and revenue with AI generated ad creatives.\r\nGet better results while saving time.\r\n\r\nTry for Free Now: https://free-trial.adcreative.ai/6gv0snfp0m1b',''),(3531,1,910,'6','Morgan Heinrich',''),(3532,1,910,'2','78 970 46 01',''),(3533,1,910,'3','heinrich.morgan83@hotmail.com',''),(3534,1,910,'4','Hi,\r\n\r\nGreat website especially I have visited your website last month..\r\n\r\nJust wanted to bring to your notice JIM SASKO made 100K$ using the software for their construction company they able to get more clients through the software.\r\n\r\nThis was possible using ADcreative AI software\r\n\r\nBest part of the software that create high converting AI generated ads that sell.\r\nFast and easy.\r\n\r\nCheck it out https://bit.ly/adcreativesoftware\r\n\r\nBecause You will get free 500$ google ads credit..\r\n\r\nI have contacted others too like arrowfoundation and they are also super interested in this.\r\n\r\nANY Help about the software contact at contact@adcreative.ai\r\n\r\nDon\'t miss out\r\n\r\nThank you',''),(3535,1,911,'6','Mable Chambless',''),(3536,1,911,'2','06-31759762',''),(3537,1,911,'3','chambless.mable@hotmail.com',''),(3538,1,911,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(3539,1,912,'6','Isidro Chism',''),(3540,1,912,'2','(02) 6172 3587',''),(3541,1,912,'3','chism.isidro@msn.com',''),(3542,1,912,'4','I will provides high authority da 90 plus SEO dofollow backlinks\r\n\r\nlink : https://bit.ly/DA90seobacklink',''),(3543,1,913,'6','Eric Jones',''),(3544,1,913,'2','555-555-1212',''),(3545,1,913,'3','ericjonesmyemail@gmail.com',''),(3546,1,913,'4','To the juiceelectrical.co.nz Admin! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3547,1,914,'6','JP Corsi',''),(3548,1,914,'2','+1 954-833-5563',''),(3549,1,914,'3','jpcorsi@exitnode.co',''),(3550,1,914,'4','[URGENT] New qualified lead\r\n\r\nJP Corsi with Exit Node Corp.\r\n\r\nI hope that you are having a good day.\r\n\r\nI 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.\r\n\r\nWe have a core focus in helping companies increase online inbound and outreach sales and sell out capacity with incredibly effective and economical strategies.\r\n\r\nLet 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?\r\n\r\n---\r\nJP Corsi\r\n+1 954-833-5563 \r\nhttps://exitnode.co\r\n2339 Glades Pkwy, Weston FL',''),(3551,1,915,'6','Eric Jones',''),(3552,1,915,'2','555-555-1212',''),(3553,1,915,'3','ericjonesmyemail@gmail.com',''),(3554,1,915,'4','Hello juiceelectrical.co.nz Administrator!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3555,1,916,'6','Fease',''),(3556,1,916,'2','81885447772',''),(3557,1,916,'3','96hjuf57@icloud.com',''),(3558,1,916,'4','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/24ujylb4',''),(3559,1,916,'5','Google',''),(3560,1,917,'6','Kit Proctor',''),(3561,1,917,'2','0431-6639447',''),(3562,1,917,'3','kit.proctor@gmail.com',''),(3563,1,917,'4','The Ultimate ChatGPT Book Bundle: Learn How to Master This Powerful AI Language Model\r\n\r\nThis bundle is the perfect resource for anyone who wants to learn how to use ChatGPT to achieve their goals. Whether you’re a writer, a business owner, or a creative person, these books will teach you everything you need to know to master ChatGPT and use it to your advantage.\r\n\r\nhttps://yfind.net/shop/',''),(3564,1,918,'6','Greg Grice',''),(3565,1,918,'2','0711 13 95 02',''),(3566,1,918,'3','grice.greg@gmail.com',''),(3567,1,918,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3568,1,919,'6','Anitra Cascarret',''),(3569,1,919,'2','031-8368597',''),(3570,1,919,'3','cascarret.anitra@googlemail.com',''),(3571,1,919,'4','Done for you LEADS in ANY niche\r\n\r\nIf you need fresh leads for your business, we have the solution.\r\n\r\nWell, we have just released a new app that does EXACTLY that.\r\n\r\nWe created the BEST, done-for-you lead-gen app on the market that BYPASSES the gatekeeper and puts you DIRECTLY in-touch with the DECISION MAKER!\r\n\r\nYup, our app is already PRE-LOADED with the DIRECT contact info for clients in ANY niche and ANY location you’d like!\r\n\r\nFULL Access to ALL the clients you’d ever NEED at the push of a button!\r\n\r\nYou can test it clicking this link:\r\n\r\nhttps://bit.ly/LeadValetFreeAccess',''),(3572,1,920,'6','Adan Asher',''),(3573,1,920,'2','06-33734301',''),(3574,1,920,'3','adan.asher@yahoo.com',''),(3575,1,920,'4','I am contacting you today, because I know the information provided in this massagel could really make a HUGE difference for your Business, so be sure to read every word.\r\n\r\nThe information I provide in this massage could help you get money you probably don’t even know you qualify for and have coming to you.\r\n\r\nYOUR BUSINESS probably already qualifies for ERTC FUNDING for the W-2 Employees you have employed in your business.\r\n\r\nSo, what is ERTC Funding?\r\n\r\nThe Federal Government has recently amended the CARES Act, and it now makes more businesses eligible to collect the Employee Retention Tax Credit Funds \r\n\r\nthat were originally offered to help businesses that were affected by and qualified for Covid-19 relief.\r\n\r\nBecause of the processing time involved for the ERTC program,\r\n\r\nmost business’s chose to participate in the PPP program, because it got them funding quickly, whereas the ERTC Funding initially took at least 6 months to process and get paid on.\r\n\r\nEven if you previously participated and collected funding under the PPP program, you probably now also qualify to receive additional funding under the ERTC program.\r\n\r\nIf you didn’t participate in the PPP program, then you possibly have an even bigger check with your name on it.\r\n\r\nThe ERTC program has been expanded to help more business owners retain their employees, and it pays you money for the W-2 employees that you had employed and retained during the years 2020- 2021.\r\n\r\nThe qualification for each year is slightly different but depending upon what you paid out to W-2 employees in wages for both years, you could qualify to get back as much as $33,000 PER EMPLOYEE.\r\n\r\nNO that is not a TYPO.You could possibly receive as much as 70% of the wages you paid out, up to $10K PER EMPLOYEE PER QUARTERS 1, 2 & 3 in 2021!\r\n\r\n In most cases, we are talking about a nice big check coming to you as the business owner, so you should definitely follow through with this to see what your business can qualify for.\r\n\r\nMost businesses were affected in one way or another by the negative effects Covid had on the economy,\r\n\r\nbut the good news is that the Government has made it much easier now to qualify for this ERTC Funding and because of recent changes, now more businesses can qualify.\r\n\r\nThe best thing about these FUNDS is that they never have to be paid back. What business wouldn’t benefit from this program?\r\n\r\nThat is why I am reaching out to you today, because I know how hard you work in running your business, because I have friends that own businesses too.\r\n\r\n I just recently found out about the changes made in the ERTC Fund program, which makes it easier to qualify for, and I decided to personally reach out to you today to notify you about the ERTC Funds that your business probably already qualifies for.\r\n\r\nThe reason that you probably haven’t heard about this yet, is because the government has done a bad job in publicizing this information. But because a friend of mine recently found out about this and told me about it,\r\n\r\nI decided to help get the word out and notify every business owner I can about this ERTC Funding Program, so you can also take advantage and get the Funding your business qualifies for.\r\n\r\nThis funding isn’t related to just one industry or type of business, so if you know another Business Owner who has W-2 Employees, feel free to forward this email over to them and tell them to reach out to me, so I can personally help them too.\r\n\r\nIf you have W-2 Employees, that you have paid wages to in 2020 and/or in 2021, then you probably qualify for ERTC Funding. Even if you just started up your business during this time period, you probably also qualify for ERTC Funding too.\r\n\r\nThis is why I have prioritized reaching out to as many Business Owners as possible, so they can become aware of this program and submit their business’s Initial Inquiry Form to see if they qualify.\r\n\r\nMy friend is dealing with and recommending the best ERTC Accounting Specialists in the Industry, who have already gotten hundreds of businesses ERTC Tax Credit Money. They all started this process by filling out the simple Initial Inquiry Form.\r\n\r\nAlthough the Funds are called Tax Credits, you can receive a cash payment from the IRS/US Treasury instead of taking the credit.I don’t want you to miss out on this, because knowing the Payroll Expenses incurred by an average Business, I am pretty sure that you too have a nice check waiting for you.\r\n\r\nDon’t dismiss and ignore this, because this ERTC Funding is very real, and you most likely qualify for it and can use it right now in your business.\r\n\r\nIt takes a few minutes to complete the simple Initial Inquiry Form that helps the expert ERTC Accounting Team assess whether your business qualifies or not.\r\n\r\n If it does, then they will reach out to you to explain the whole process in more detail and request the other information you will need to provide.\r\n\r\nOnce you submit the information they need, they can turn around your application and get it filed with the IRS in about 2-4 weeks, and then the IRS will review the application and process your Funds and send you your ERTC Check.\r\n\r\nIt is quick to get started. Just go to this website for more information and you can fill out the Initial Inquiry Form at the bottom of the website and someone from their Team will be back in touch with you shortly.\r\n\r\nThis might just be the best think you did for your Business ever.\r\n\r\nIf you have any questions, please don’t hesitate to reach out to me or you can speak to the ERTC expert Accounting Team once you have submitted your Initial Inquiry Form.\r\n\r\n Most of the information about the program is available on the website.\r\n\r\nhttps://bit.ly/The-Erc-Tax-Credit\r\n\r\n\r\nThe knowledge you need to understand the requirements for filing and processing a qualified and approved application are complex and best left up to these experts,\r\n\r\nand that is why my friend is highly recommending and arranged to connect you with these ERTC Accounting Experts.\r\n\r\nMost CPAs don’t have the specialized knowledge or time to process these types of applications, but this is all this expert ERTC Accounting Team does,\r\n\r\nand they will be happy to work with your Business Accountant if needed, to obtain the necessary business paperwork to get your business it’s ERTC Funds.\r\n\r\nIf you have a friend that owns a business and has employees and pays out W-2 wages,\r\n\r\nthen do them a huge favor and forward this email to them, so they can also take advantage of this program.\r\n\r\n They will thank you for thinking of them and helping them get connected for their own ERTC Funding.\r\n\r\nThank you for taking action for YOUR BUSINESS\r\n\r\nFeel free to reach out to me if you have any questions and let me know that you applied. Sincerely,\r\n\r\nDennt Hemlin\r\n\r\nhttps://bit.ly/The-Erc-Tax-Credit',''),(3576,1,921,'6','Starla Isaachsen',''),(3577,1,921,'2','077 7906 7305',''),(3578,1,921,'3','starla.isaachsen26@outlook.com',''),(3579,1,921,'4','I will provides high authority da 90 plus SEO dofollow backlinks\r\n\r\nlink : https://bit.ly/DA90seobacklink',''),(3580,1,922,'6','Uzair Button',''),(3581,1,922,'2','0681 332 72 19',''),(3582,1,922,'3','button.quentin@outlook.com',''),(3583,1,922,'4','The Instagram social media platform has seen explosive growth over the last two years. It now has 500\r\nmillion users that are desperate for fun and exciting content and this is a massive opportunity for you\r\nto promote your business.\r\n\r\nI can help you to grow and promote your Instagram account organically\r\nvisit my 5 star profile and join over 3000 happy customer\r\n\r\nClick here to check out ===== > https://tinyurl.com/yc6rwxsw\r\n\r\nSee you there!\r\nRegards\r\nBrian And Dee',''),(3584,1,923,'6','Kathleen Melancon',''),(3585,1,923,'2','079 4028 9980',''),(3586,1,923,'3','writejob@databaseen.com',''),(3587,1,923,'4','Hi,\r\n\r\nArticles on your site are wonderful.\r\n\r\nWe are currently looking for new beginner-paid remote writers who want to start work right away!\r\n\r\nAll employers hiring through our company are looking for people like you. These are remote positions, meaning that as long as you can work the required hours, you can work from home.\r\n\r\nClick here to complete your application if interested: https://www.databaseen.com/writejob \r\n\r\nIn 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.\r\n\r\nThe 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.\r\n\r\nInterested? Check out this page before completing an application to get everything important: https://www.databaseen.com/writejob \r\n\r\nBest of luck!\r\n\r\nKathleen Melancon\r\n\r\nUNSUBSCRIBE: https://www.databaseen.com/unsubscribe\r\n\r\nAddress: 631 N Main St, Porterville, CA 93257',''),(3588,1,924,'6','William Malley',''),(3589,1,924,'2','(21) 4135-7123',''),(3590,1,924,'3','admin@flowintofunnels.com',''),(3591,1,924,'4','Any piece of content that you may want written daily,\r\nsuch as emails, blog posts, ads, newsletters,\r\nor any other form of daily written material that would build a connection with your audience,\r\nallow us to write it for free.\r\n\r\nWe are literally just practicing our skill and gaining friendships.\r\n\r\nNo strings attached.\r\n\r\nHopefully, you want to hire us. We keep our prices low.\r\n\r\nThe value of building a relationship with you is exponential either way.\r\n\r\n\r\nwrittenpearl.com \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nOpt out of future messages by replying to the message and saying opt out.\r\njuiceelectrical.co.nz',''),(3592,1,925,'6','William McCranie',''),(3593,1,925,'3','admin@flowintofunnels.com',''),(3594,1,925,'4','Any piece of content that you may want written daily,\r\nsuch as emails, blog posts, ads, newsletters,\r\nor any other form of daily written material that would build a connection with your audience,\r\nallow us to write it for free.\r\n\r\nWe are literally just practicing our skill and gaining friendships.\r\n\r\nNo strings attached.\r\n\r\nHopefully, you want to hire us. We keep our prices low.\r\n\r\nThe value of building a relationship with you is exponential either way.\r\n\r\n\r\nwrittenpearl.com \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nOpt out of future messages by replying to the message and saying opt out.\r\njuiceelectrical.co.nz',''),(3595,1,926,'6','Gaston Studer',''),(3596,1,926,'2','(48) 7838-8508',''),(3597,1,926,'3','makemybusinessgreatagain@gmail.com',''),(3598,1,926,'4','Hello, your website juiceelectrical.co.nz is only listed in 8 out of a possible 3142 directories.\r\n\r\nWe offer a service where we list you in all the directories, thereby boosting your online presence.\r\n\r\n<a href=\"https://directorybump.com\">Visit us here</a>',''),(3599,1,926,'5','DirectoryBump.com',''),(3600,1,927,'6','Shannon Criswell',''),(3601,1,927,'2','416-297-0038',''),(3602,1,927,'3','criswell.shannon32@gmail.com',''),(3603,1,927,'4','Hire employees worldwide with global payroll for free with 16+ HR tools\r\n\r\nlink : https://linktr.ee/businessolutionz',''),(3604,1,928,'6','Eric Jones',''),(3605,1,928,'2','555-555-1212',''),(3606,1,928,'3','ericjonesmyemail@gmail.com',''),(3607,1,928,'4','To the juiceelectrical.co.nz Webmaster! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3608,1,929,'6','Kristina Gloeckner',''),(3609,1,929,'2','078 6698 0190',''),(3610,1,929,'3','kristina.gloeckner@outlook.com',''),(3611,1,929,'4','Creating boards, finding people to follow and pinning things related to your industry and then also pinning your own products, services or blog articles that are linked to your website is all it takes! Of course - there is a time commitment many busy people can\'t spare.\r\n\r\n\r\ncheck it out Here === > https://tinyurl.com/ytwch2xc',''),(3612,1,930,'6','Denis Hearon',''),(3613,1,930,'2','02625 75 37 08',''),(3614,1,930,'3','hearon.denis@outlook.com',''),(3615,1,930,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3616,1,931,'6','Josefina Weatherly',''),(3617,1,931,'2','518-346-8643',''),(3618,1,931,'3','josefina.weatherly34@gmail.com',''),(3619,1,931,'4','Unlock Your Online Success with Systeme.io!\r\n\r\nTired of dealing with clunky, expensive marketing tools?\r\n\r\nSysteme.io is your all-in-one solution, simplifying sales funnel creation, email marketing, website building, affiliate management, online course development, and marketing automation.\r\n\r\nHear from our delighted users who’ve found unmatched ease and savings.\r\n\r\nWith Systeme.io, you can save over $320/month compared to using separate tools, all while enjoying a seamless and affordable platform. Start your journey to online success today – it’s free and unbelievably easy!\r\n\r\nGet Free Lifetime Access\r\n\r\nhttps://bit.ly/SystemeFreeLifetimeAccess',''),(3620,1,932,'6','James Priest',''),(3621,1,932,'2','0322424299',''),(3622,1,932,'3','priest.noble@hotmail.com',''),(3623,1,932,'4','Hi there,\r\nMonthly Seo Services - Professional/ Affordable Seo Services\r\nHire 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/la/ Today!',''),(3624,1,933,'6','Ardis Armijo',''),(3625,1,933,'2','0385 5960515',''),(3626,1,933,'3','armijo.ardis@gmail.com',''),(3627,1,933,'4','I wrote to you the other day about the ERTC Fund Program that your business probably qualifies for.\r\n\r\nYou potentially have a nice check waiting for you, because of the Covid-19 Relief that the Government is making\r\n\r\navailable to businesses who paid out W-2 Employee Wages during 2020 – 2021.\r\n\r\nYou could potentially get back up to $33,000 PER EMPLOYEE from this Government program. This is NOT a\r\n\r\nloan, but money your business qualifies for, if your business met certain criteria.\r\n\r\nHaving friends that own businesses, I know that your business most likely qualifies. Even if you already\r\n\r\napplied and received the PPP Funding, you now probably also qualify for additional money under the ERTC\r\nFund Program.\r\nSo, what are you waiting for?\r\n\r\nGo to this website and take a few minutes to fill out the simple Initial Inquiry Intake Form to see if your\r\nbusiness qualifies.\r\n\r\nhttps://bit.ly/The-Erc-Tax-Credit\r\n\r\n\r\nThere is no obligation on your part, this just lets you find out from the expert ERTC Accounting Specialists I\r\n\r\nam recommending, who will tell you how much money you can actually qualify for.\r\n\r\nIf you missed the email I sent to you the other day, then just scroll down and you can read it and learn all\r\n\r\nabout this Government program and how I am pretty sure your business qualifies for these credits.\r\n\r\nKeep me posted on your progress, I love hearing success stories.\r\n\r\nTo your business’s success.\r\nSincerely,\r\n\r\nDenny Hemlin\r\n\r\nhttps://bit.ly/The-Erc-Tax-Credit',''),(3628,1,934,'6','Johanna Bartos',''),(3629,1,934,'2','952 77 017',''),(3630,1,934,'3','johanna.bartos@msn.com',''),(3631,1,934,'4','I will give high tf, da, DR permanent dofollow backlinks for SEO for 10$\r\n\r\nlink : https://linktr.ee/businessolutionz',''),(3632,1,935,'6','Jonathan Russell',''),(3633,1,935,'2','212087277',''),(3634,1,935,'3','jonathancrrussell@gmail.com',''),(3635,1,935,'4','Hi there\r\n\r\nI would like to get a quote please to remove a ceramic hob and replace with a larger induction hob.',''),(3636,1,935,'5','recommended through a friend.',''),(3637,1,936,'6','Robert Taylor',''),(3638,1,936,'2','03641 77 22 30',''),(3639,1,936,'3','bowes.rodolfo@gmail.com',''),(3640,1,936,'4','Hello,\r\n\r\nWant to outshine the competition with more customer and saving time with AI? \r\n\r\nGo to https://rokl.ink/increased-sales now to explore our partnership \r\n\r\nthat promises a surge in leads and sales for your business.\r\n\r\nBest regards,\r\n\r\n Robert Davis \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(3641,1,937,'6','Chris Buchanan',''),(3642,1,937,'2','0275299966',''),(3643,1,937,'3','chris.buchanan@hotmail.co.uk',''),(3644,1,937,'4','Hi, can you please give me a price to disconnect and remove the 32 Amp electrical supply to an outdoor hot tub?\r\nWas installed by Juice electrical in approx June 2020 at 3/36 Shirley Road, Christchurch, 8013\r\nThank you,\r\nChris',''),(3645,1,937,'5','Previous customer',''),(3646,1,938,'6','Margot Lord',''),(3647,1,938,'2','09381 41 98 84',''),(3648,1,938,'3','lord.margot@msn.com',''),(3649,1,938,'4','I will give high tf, da, DR permanent dofollow backlinks for SEO for 10$\r\n\r\nlink : https://linktr.ee/businessolutionz',''),(3650,1,939,'6','Monica Cheney',''),(3651,1,939,'2','0373 3381253',''),(3652,1,939,'3','cheney.monica82@outlook.com',''),(3653,1,939,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(3654,1,940,'6','Eric Jones',''),(3655,1,940,'2','555-555-1212',''),(3656,1,940,'3','ericjonesmyemail@gmail.com',''),(3657,1,940,'4','Dear juiceelectrical.co.nz Owner!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3658,1,941,'6','Anna Dunford',''),(3659,1,941,'2','480 3092',''),(3660,1,941,'3','anna.dunford@gmail.com',''),(3661,1,941,'4','I will offer SEO backlinks contextual via pro link building service for 100$\r\n\r\nlink : https://bit.ly/fiverrseoservice',''),(3662,1,942,'6','Joe Andrews',''),(3663,1,942,'3','dfysuite@earnmorenow.info',''),(3664,1,942,'4','PROVEN, Done-For-You, SOCIAL syndication \r\nSocial Syndication – 100% done-for-you\r\nrank FAST with DONE-FOR-YOU social syndication…\r\n\r\n——\r\n\r\nCan you imagine how powerful it would be if you had someone that can handle ALL your social syndication for your videos, niche sites and client sites etc?\r\n\r\nWouldn’t that take A TON off of your plate and allow you to focus on more IMPORTANT things..\r\n\r\nWe all know that social syndication is the #1 way to skyrocket your content to the first page of Google, right?\r\n\r\nHowever, it can sometimes be a BIG pain in the butt..\r\n\r\nYou’re either having to do it MANUALLY (which I wouldn’t wish on my WORSE enemy lol)\r\n\r\nYou have to buy software that does it for you (which some are VERY complicated to learn and you still have to manually create ALL your accounts)\r\n\r\nAnd then there’s OPTION 3!!\r\n\r\nTap into a PROVEN system that does it ALL for YOU!\r\n\r\nA couple of genius SEO marketers have created a system that does EXACTLY that.\r\n \r\nThey’ve SIMPLIFIED the ENTIRE social syndication process so that ANYONE can tap into the power of Page 1 rankings – EVEN if they SUCK at SEO or are BRAND new to the subject. (LIKE me)\r\n\r\nPLUS they have just opened the doors to their updated and GREATLY improved 5.0 version!\r\n\r\nIntroducing DFY Suite 5.0!\r\n\r\nDFY Suite will allow you to Get FREE, Targeted BUYER-Traffic In 48 Hours Or Less By Leveraging The Power Of High-Quality Social Syndication With their NEW, Done-For-YOU System!\r\n\r\nYup, you can now leverage the POWER of Page 1 Rankings Via Social Syndication for ANY location and/or ANY language with:\r\n\r\n– NO Software To Install\r\n– No Software Training To Learn\r\n– No previous SEO knowledge or experience\r\n– No Social Account Creation Needed\r\n– No Content Needed Besides their URL\r\n– No Proxies or Captchas Needed\r\n– NONE of that stuff..\r\n\r\nHeck, you don’t even need to KNOW what social syndication IS lol\r\n\r\nAll you need to do is:\r\n\r\n1. Login to the web-based portal\r\n2. Submit your Keywords and URL you want traffic for\r\n3. Hit “Submit”\r\n\r\nYup, That’s IT!\r\n\r\nFrom There their System Will Get To Work And Build You HUNDREDS of High-Quality Syndication Links To Your Content to skyrocket it to page 1 of Google!\r\n\r\nPLUS, if you’re 100% NEW to SEO, they’re also including a quick CRASH course on Keyword Research AND Content optimization that should take you no more than 20-30 minutes to go through.\r\n\r\nWith DFY Suite PLUS the Keyword Research and Content Optimization crash course, you’ll be able to start getting traffic from Google without EVER having to spend HOURS upon HOURS doing the HEAVY-LIFTING yourself.\r\n\r\nCheck out DFY Suite Here: https://www.earnmorenow.info/dfysuite\r\n\r\n“But wait, did you say they’ve just opened 5.0?”\r\n\r\nYup, and with their 5.0 updates they have made their platform BETTER, FASTER and MORE powerful to Deliver you even MORE rankings, Traffic & sales.\r\n\r\nIn version 5.0 they have:\r\n\r\n– 5x’d their sites, 5x’d the authority, 5x’d the ranking power! Now instead of being able to get up to 200 different syndication links to your content, you can get up to 1,000! And the domains they’ve added are ALL packing A LOT more authority\r\n\r\n– Done for you GLOBAL Rankings. Yup, WORLDWIDE Rankings are finally HERE via their multi-language support. Yes, you read that correctly! They now cover EVERY LANGUAGE you can think of, so you can get page 1 rankings REGARDLESS of where you are in the world!\r\n\r\n– Totally revamped their server set up to now Include IP’s from ALL over the world to SUPERCHARGE their new WORLDWIDE ranking power!\r\n\r\n– Totally revamped their content generation system Which is now powered by REAL Artificial intelligence With Creaite being the engine to that! REAl A.I means QUALITY, unique content being written for EVERY campaign You submit. And we ALL know how much Google loves quality content.\r\n\r\n– and much much more… (they have a WHOLE section And video covering what’s new in 5.0 – there’s 7 MAJOR updates total)\r\n\r\nThis is EASILY their MOST powerful update To date and you can get access to it at an INSANE discount.\r\n\r\nCheck out how it works here: https://www.earnmorenow.info/dfysuite\r\n\r\nThis is the GO-TO platform for DFY, page 1 rankings!\r\n\r\nEverett Summers\r\n\r\nP.S. Getting page 1 rankings has NEVER been easier.\r\n\r\nWith DFY Suite You’ll be able to:\r\n\r\n– rank your videos on page 1\r\n– rank your niche sites on page 1\r\n– rank your e-commerce sites on page 1\r\n– rank your Amazon listings\r\n– rank your CLIENT’s sites\r\n– rank ANY URL you’d like to get traffic for..\r\n\r\nIt’s really the PERFECT solution for us “lazy” seo marketers hahah\r\n\r\nAnd their 5.0 updates have REALLY taken things to the NEXT level!\r\n\r\ncheck it out here: https://www.earnmorenow.info/dfysuite\r\n\r\nUNSUBSCRIBE: https://www.earnmorenow.info/unsubscribe\r\n\r\nAddress: 931 E Ave R, Palmdale, CA 93550',''),(3665,1,943,'6','Robin Back',''),(3666,1,943,'2','0482 15 51 97',''),(3667,1,943,'3','back.louise@hotmail.com',''),(3668,1,943,'4','you want to integrate Open AI With your Website or Bussiness ? \r\n\r\nYes, I can build the integration for you. Oh yes, and I can also do ChatGPT, custom neural network, create a video, and actually everything, just put an order on Fiverr!\r\n\r\nCheck Out How I can help you and join our happy customers ===> https://tinyurl.com/23t6sxae\r\n\r\nSee u there\r\n\r\nThanks',''),(3669,1,944,'6','Georgina Haynes',''),(3670,1,944,'2','070 1609 0818',''),(3671,1,944,'3','georginahaynes620@gmail.com',''),(3672,1,944,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll 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.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nGeorgina\r\n\r\nIf you are not interested, unsubscribe here: https://explainervideos4u.net/unsubscribe.php?d=juiceelectrical.co.nz',''),(3673,1,945,'6','Janet Lade',''),(3674,1,945,'3','lade.janet@yahoo.com',''),(3675,1,945,'4','I will offer SEO backlinks contextual via pro link building service for 100$\r\n\r\nlink : https://bit.ly/fiverrseoservice',''),(3676,1,946,'6','Mike Nathan',''),(3677,1,946,'2','86537783956',''),(3678,1,946,'3','mikeinquiff@gmail.com',''),(3679,1,946,'4','Greetings \r\n \r\nThis is Mike Nathan\r\n \r\nLet me show you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Nathan\r\n \r\nmike@strictlydigital.net',''),(3680,1,946,'5','Google',''),(3681,1,947,'6','Eric Jones',''),(3682,1,947,'2','555-555-1212',''),(3683,1,947,'3','ericjonesmyemail@gmail.com',''),(3684,1,947,'4','Hello juiceelectrical.co.nz Admin! my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3685,1,948,'6','Poh Ng',''),(3686,1,948,'2','0211885005',''),(3687,1,948,'3','poh.ng@hotmail.co.nz',''),(3688,1,948,'4','Hi, I have an older Tesla Gen 2 Wall Connector that I need it installed in my Garage for 32A EV charging. It will be about 7m away from the electrical mains switch box. Appreciate it if you can provide me a price quote. \r\nAlso, if I were to buy a Gen 3 Wall Connector, what would be the installation cost?\r\nThanks\r\n-poh-',''),(3689,1,948,'5','Google Maps Reviews',''),(3690,1,949,'6','Megan Atkinson',''),(3691,1,949,'2','412 7320',''),(3692,1,949,'3','meganatkinson149@gmail.com',''),(3693,1,949,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 400-1200+ followers per month.\r\n- Real, human followers: People follow you because they are interested in your business or niche.\r\n- Safe: All actions are made manually. We do not use any bots.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you are interested, and would like to see some of our previous work, let me know and we can discuss further.\r\n\r\nKind Regards,\r\nMegan\r\n\r\nTo unsubscribe: https://removeme.click/unsubscribe.php?d=juiceelectrical.co.nz',''),(3694,1,950,'6','Terry Estes',''),(3695,1,950,'2','09831523806',''),(3696,1,950,'3','terrydestes6@gmail.com',''),(3697,1,950,'4','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too.\r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom.\r\n10.Content Creation SEO work-As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search.\r\n\r\nWe\'ve got lots to do together to make you stand out!Please give us the chance to work with you. You can see our rates on our website.\r\n\r\nIf this email has reached you by mistake, or if you do not wish to take advantage of this opportunity, please accept my apologies for any inconvenience caused. We are a small business and we are just trying to get some customers. I\'m sure you were in our position once too. Rest assured that we will not contact you again should you reply to this email with the word \'unsubscribe\'\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\n\r\nTerry Estes',''),(3698,1,950,'5','Google',''),(3699,1,951,'6','Eric Jones',''),(3700,1,951,'2','555-555-1212',''),(3701,1,951,'3','ericjonesmyemail@gmail.com',''),(3702,1,951,'4','To the juiceelectrical.co.nz Admin! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3703,1,952,'6','Van Gurt',''),(3704,1,952,'2','83121232439',''),(3705,1,952,'3','info@financial-group.org',''),(3706,1,952,'4','Hello, \r\nWe hope this letter finds you in good shape. \r\n \r\nAre you available for an important conversation regarding your business investment and partnership? Send us an email to vangurt@financial-group.org for more details. \r\n \r\nRegards, \r\nMr. Van Gurt \r\nvangurt@financial-group.org',''),(3707,1,952,'5','Google',''),(3708,1,953,'6','Tucker Hopson',''),(3709,1,953,'2','609-801-3166',''),(3710,1,953,'3','martianonlineseo@gmail.com',''),(3711,1,953,'4','Hey there,\r\n\r\nDo you know the secret to getting 1000\'s of leads without breaking the bank? It\'s simpler than you think: Videos!\r\n\r\nInstead of spending $1000\'s on ads, imagine using smart videos that do the heavy lifting for you. We\'ve found a way, and you\'re going to love it.\r\n\r\nCurious? Check it out here: aividtactics.com\r\n\r\nYou\'ll see how videos can be game-changers for any business. Let\'s make things happen together!\r\n\r\nCheers,\r\nTucker M\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n2208 Hanfred Lane\r\nSuite 101-248\r\nTucker, GA 30084\r\n\r\nunsubscribe: tinyurl.com/5cc4wepr',''),(3712,1,954,'6','Danial Janssen',''),(3713,1,954,'2','916 62 603',''),(3714,1,954,'3','danial.janssen@gmail.com',''),(3715,1,954,'4','I will offer SEO backlinks contextual via pro link building service for 100$\r\n\r\nlink : https://bit.ly/fiverrseoservice',''),(3716,1,955,'6','Selma Trouton',''),(3717,1,955,'2','01.76.01.68.50',''),(3718,1,955,'3','selma.trouton@hotmail.com',''); INSERT INTO `wp_gf_entry_meta` VALUES (3719,1,955,'4','-- Unlock the Power of AI for Your Social Media Success --\r\n\r\nAre you tired of struggling to create and maintain a strong social media presence for your business? Do you wish you could effortlessly generate high-quality content that engages your audience and drives traffic? Look no further. Welcome to AISocials - your all-in-one solution for social media marketing.\r\n\r\n-- AI-Powered Social Content Creation --\r\n\r\nOur cutting-edge AI technology takes the hassle out of content creation. Simply enter a keyword, and watch as our AI assistant generates stunning high-end videos and posts that are tailor-made for your audience. No more manual labor or expensive content creation teams. It\'s like having your own social media agency in a single tool.\r\n\r\n-- Automated Scheduling with AI Self-Scheduling --\r\n\r\nForget about the endless task of scheduling posts. Our revolutionary content stream AI scheduling technology ensures your content is perpetually shared on social media at the optimal times. Sit back and relax as your content reaches your audience without you lifting a finger.\r\n\r\n-- Run Your Own Social Video Agency with A.I. --\r\n\r\nNot only can you use AISocials for your own social media success, but you can also tap into a booming market by offering social media marketing services to others. New entrepreneurs are making over $20,000 per month by creating and posting content for businesses that lack the time and expertise. Be part of the success story!\r\n\r\nClick to Get VIP Access to AISocials Now\r\nhttps://bit.ly/GetVIPAccesstoAISocialsNow\r\n\r\n-- Stay Ahead of the Competition --\r\n\r\nIn today\'s digital landscape, posting sporadically no longer drives traffic. Small businesses without a strong social media presence are falling behind. AISocials enables you to create and share content better than even the top social agencies. Take advantage of the incredible demand for social posts, social videos, and social media managers.\r\n\r\n-- Discover Viral Topic Ideas --\r\n\r\nAISocials helps you stay ahead by finding trending topics on platforms like Reddit, YouTube, and Google. Create content that grabs attention and generates shares within your niche effortlessly.\r\n\r\n-- Fully Customizable Content --\r\n\r\nOur drag-and-drop editor allows you to customize every aspect of your content. Tailor it to your brand, style, and message. Make each piece of content uniquely yours.\r\n\r\n-- Effortless Content Management --\r\n\r\nCreate organized content streams for each client. Specify when and where content should be posted, ensuring a consistent online presence for your clients. The AI takes care of the rest, making your clients believe you have a dedicated team working around the clock.\r\n\r\n-- Optimized for Success --\r\n\r\nAISocials doesn\'t just post content; it optimizes it based on what works best and when. Our machine learning algorithms ensure your content is always performing at its peak.\r\n\r\n-- Join the AI Revolution Today --\r\n\r\nDon\'t let the competition leave you behind. Embrace the power of AI and conquer the social media landscape. AISocials is your ticket to success in the world of social media marketing. Start creating, scheduling, and posting with ease today.\r\n\r\nClick to Get VIP Access to AISocials Now\r\nhttps://bit.ly/GetVIPAccesstoAISocialsNow',''),(3720,1,956,'6','Charles Smith',''),(3721,1,956,'2','02.58.88.74.67',''),(3722,1,956,'3','sheryl.ball@googlemail.com',''),(3723,1,956,'4','Hey there,\r\n\r\nGet ahead of the competition with more customer and saving time with AI\r\n\r\nGo to https://rokl.ink/increased-sales \r\n\r\nto uncover a lucrative partnership opportunity that will skyrocket your leads and sales. \r\n\r\n\r\nBest regards,\r\n\r\n Joseph Anderson\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(3724,1,957,'6','Geri Garvey',''),(3725,1,957,'2','078 3149 6040',''),(3726,1,957,'3','garvey.geri@hotmail.com',''),(3727,1,957,'4','Hi,\r\n\r\nDo you Need Google Ranking Improvement?\r\n\r\nDo you Need Customers, Sales & Income from your Own Business?\r\n\r\n\r\n Well, You\'re Absolutely at the Right Place. We are a Team of Sharp Shooters in Google Ranking & Doing SEO for 20+ Years to Rank Websites on First Page of Google.\r\n\r\nWe know.. What your Website need to be at the Top of Search Results.\r\n\r\nWhat, We will do Here is, We will Give you Killer SEO Backlinks to Rank you First in Search Engines.\r\n\r\n\r\nWhat will you Get?\r\n\r\nTOP Quality Backlinks \r\n\r\nWHITE Hat Linking\r\n\r\nPROVEN Guaranteed Results!\r\n\r\n\r\ncheck it out Here === > https://tinyurl.com/zwytfkuc',''),(3728,1,958,'6','Monica Jacquez',''),(3729,1,958,'2','(08) 9084 5112',''),(3730,1,958,'3','monica.jacquez@gmail.com',''),(3731,1,958,'4','I will offer SEO backlinks contextual via pro link building service for 100$ : https://bit.ly/fiverrseoservice\r\n\r\nI will do SEO backlinks high quality and authority high da guest post link building : https://bit.ly/3Phy0qc\r\n\r\nI will write high quality SEO blog posts and articles : https://bit.ly/3Rip5HV\r\n\r\nI will create high DR 70 plus permanent seo dofollow backlinks : https://bit.ly/3PBDSfB\r\n\r\nI will provides high authority da 90 plus SEO dofollow backlinks : https://bit.ly/3sOm87N\r\n\r\nI will be your instagram content creator marketing manager to design posts : https://bit.ly/3PzHQoF\r\n\r\nI will make high quality 3d modeling for product design : https://bit.ly/45L4b8D\r\n\r\nI will design, redesign responsive wordpress website for your business : https://bit.ly/3r9mpSe\r\n\r\nALL SERVICE CAN BE ORDERED THROUGH FIVERR.',''),(3732,1,959,'6','Brent Diggs',''),(3733,1,959,'2','0277004936',''),(3734,1,959,'3','brent.diggs@spicersnz.co.nz',''),(3735,1,959,'4','Hi there,\r\n\r\njust wanting someone to come and have a look at some garden light bollards on our premise\'s and give us an idea as to what it will cost or the best way to go replacing them in one of our carpark gardens.\r\nThey have been knocked over and very old but we will need to fix/replace them at some point.\r\n\r\nRegards\r\nBrent',''),(3736,1,959,'5','We use you at our site already.',''),(3737,1,960,'6','Eric Jones',''),(3738,1,960,'2','555-555-1212',''),(3739,1,960,'3','ericjonesmyemail@gmail.com',''),(3740,1,960,'4','Hi juiceelectrical.co.nz Owner!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3741,1,961,'6','Robin Stookey',''),(3742,1,961,'2','66 786 09 23',''),(3743,1,961,'3','stookey.deanna@msn.com',''),(3744,1,961,'4','If the conversion rates of your online store are too low, and you are looking for someone to help you to Boost Your Sales, Then you\'re in the right place.\r\n\r\n\r\nI can Provide You with:\r\n\r\n\r\n- WordPress Landing page.\r\n\r\n- Sales Page, or Sales Funnel.\r\n\r\n- 3 Steps Sales Funnel.\r\n\r\n- Elementor Pro\r\n\r\n- Squeeze Page.\r\n\r\n- Lead Page.\r\n\r\n- Membership Funnel.\r\n\r\n- Webinar Funnel.\r\n\r\n- Autoresponder Integration.\r\n\r\n- Payment Gateway\r\n\r\nCheck Out How I can help you and join our happy customers ===> https://tinyurl.com/2z4n7fkx\r\n\r\n\r\nSee u there\r\n\r\nThanks',''),(3745,1,962,'6','Heather',''),(3746,1,962,'2','0346 0229283',''),(3747,1,962,'3','heather@juiceelectrical.co.nz',''),(3748,1,962,'4','Hi \r\n\r\nI 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. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nKind Regards, \r\n\r\nHeather',''),(3749,1,963,'6','Ellis Putman',''),(3750,1,963,'2','0680 973 82 36',''),(3751,1,963,'3','ellis.putman@gmail.com',''),(3752,1,963,'4','I will offer SEO backlinks contextual via pro link building service for 100$ : https://bit.ly/fiverrseoservice\r\n\r\nI will do SEO backlinks high quality and authority high da guest post link building : https://bit.ly/3Phy0qc\r\n\r\nI will write high quality SEO blog posts and articles : https://bit.ly/3Rip5HV\r\n\r\nI will create high DR 70 plus permanent seo dofollow backlinks : https://bit.ly/3PBDSfB\r\n\r\nI will provides high authority da 90 plus SEO dofollow backlinks : https://bit.ly/3sOm87N\r\n\r\nI will be your instagram content creator marketing manager to design posts : https://bit.ly/3PzHQoF\r\n\r\nI will make high quality 3d modeling for product design : https://bit.ly/45L4b8D\r\n\r\nI will design, redesign responsive wordpress website for your business : https://bit.ly/3r9mpSe\r\n\r\nALL SERVICE CAN BE ORDERED THROUGH FIVERR.',''),(3753,1,964,'6','Blythe Rutledge',''),(3754,1,964,'2','070 1373 1540',''),(3755,1,964,'3','rutledge.blythe69@gmail.com',''),(3756,1,964,'4','I wrote to you the other day about the ERTC Fund Program that your business probably qualifies for.\r\n\r\nYou potentially have a nice check waiting for you, because of the Covid-19 Relief that the Government is making\r\n\r\navailable to businesses who paid out W-2 Employee Wages during 2020 – 2021.\r\n\r\nYou could potentially get back up to $33,000 PER EMPLOYEE from this Government program. This is NOT a\r\n\r\nloan, but money your business qualifies for, if your business met certain criteria.\r\n\r\nHaving friends that own businesses, I know that your business most likely qualifies. Even if you already\r\n\r\napplied and received the PPP Funding, you now probably also qualify for additional money under the ERTC\r\nFund Program.\r\nSo, what are you waiting for?\r\n\r\nGo to this website and take a few minutes to fill out the simple Initial Inquiry Intake Form to see if your\r\nbusiness qualifies.\r\n\r\nhttps://bit.ly/The-Erc-Tax-Credit\r\n\r\n\r\nThere is no obligation on your part, this just lets you find out from the expert ERTC Accounting Specialists I\r\n\r\nam recommending, who will tell you how much money you can actually qualify for.\r\n\r\nIf you missed the email I sent to you the other day, then just scroll down and you can read it and learn all\r\n\r\nabout this Government program and how I am pretty sure your business qualifies for these credits.\r\n\r\nKeep me posted on your progress, I love hearing success stories.\r\n\r\nTo your business’s success.\r\nSincerely,\r\n\r\nDenny Hemlin\r\n\r\nhttps://bit.ly/The-Erc-Tax-Credit',''),(3757,1,965,'6','Eric Jones',''),(3758,1,965,'2','555-555-1212',''),(3759,1,965,'3','ericjonesmyemail@gmail.com',''),(3760,1,965,'4','Hi juiceelectrical.co.nz Administrator. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3761,1,966,'6','Brenna Rohde',''),(3762,1,966,'2','0356 7702669',''),(3763,1,966,'3','rohde.brenna@msn.com',''),(3764,1,966,'4','Hi,\r\n\r\nLooking for someone to help you in local ranking ? Your business is not coming in top of google maps results page . I am Local SEO expert from 5 years and now i am here to help you! With the\r\nexpertise and work drive of my team, we will get you the best results possible\r\n\r\nCheck my 5 stars Fiverr page now\r\n\r\nhttps://tinyurl.com/3fxa3xw3',''),(3765,1,967,'6','David Palmer',''),(3766,1,967,'2','06-10713623',''),(3767,1,967,'3','davidpalmer2023@gmail.com',''),(3768,1,967,'4','If your broke, you must to watch this now\r\n\r\nwww.FreeSystem2023.com\r\n\r\nDavid\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://bit.ly/websiteoptout',''),(3769,1,968,'6','Billy Goldman',''),(3770,1,968,'2','641-494-6876',''),(3771,1,968,'3','rpm@solveques.xyz',''),(3772,1,968,'4','There’s nothing to be embarrassed about.\r\n\r\nThere is so much new technology and so much to learn…\r\n\r\nAnd there’s an incredible amount of noise online!\r\n\r\nUp until now, technically challenged people have had a rough time of it online.\r\n\r\nI say up until now, because a brand new technology has just been born.\r\n\r\nIt’s called auto tags and what it can do will blow you away.\r\n\r\nImagine having a funnel with dozens of buttons, automations, emails and more.\r\n\r\nThe stress of learning how to put it all together, make sure it’s all connected, editing all the buttons, emails, etc with your own links.\r\n\r\nThe thought of it is daunting to even a seasoned veteran in the online space like me!\r\n\r\nNow imagine, there was a way to have tags in all of those buttons, links, signatures etc.\r\n\r\nAnd all you have to do is enter your name and affiliate links ONCE in one area.\r\n\r\nAnd they’re pulled automagically across every part of your funnel.\r\n\r\nNo editing required!\r\n\r\nSounds kind of like magic right?\r\n\r\nAnd it does work like magic, and it’s the system my mentor’s been working on for over a year.\r\n\r\nNow it’s okay to be a bit technically challenged :)\r\n\r\nPlus we have a live weekly call every week to make sure you are supported every step of the way.\r\n\r\nTake the first step to creating your affiliate marketing business today by clicking here: https://www.solveques.xyz/rpm \r\n\r\nKind regards,\r\n\r\nBilly Goldman\r\n\r\nUNSUBSCRIBE: https://www.solveques.xyz/unsubscribe\r\n\r\nAddress: 631 N Main St, Porterville, CA 93257',''),(3773,1,969,'6','Junior Hernsheim',''),(3774,1,969,'2','01.52.29.20.63',''),(3775,1,969,'3','hernsheim.junior1@yahoo.com',''),(3776,1,969,'4','I will offer SEO backlinks contextual via pro link building service for 100$ : https://bit.ly/fiverrseoservice\r\n\r\nI will do SEO backlinks high quality and authority high da guest post link building : https://bit.ly/3Phy0qc\r\n\r\nI will write high quality SEO blog posts and articles : https://bit.ly/3Rip5HV\r\n\r\nI will create high DR 70 plus permanent seo dofollow backlinks : https://bit.ly/3PBDSfB\r\n\r\nI will provides high authority da 90 plus SEO dofollow backlinks : https://bit.ly/3sOm87N\r\n\r\nI will be your instagram content creator marketing manager to design posts : https://bit.ly/3PzHQoF\r\n\r\nI will make high quality 3d modeling for product design : https://bit.ly/45L4b8D\r\n\r\nI will design, redesign responsive wordpress website for your business : https://bit.ly/3r9mpSe\r\n\r\nIF YOU NEED OTHER SERVICE THAN ABOVE CHECK HERE : https://tinyurl.com/fiverrservice01\r\n\r\nALL SERVICE WILL STARTS FROM 5$\r\n\r\nALL SERVICE CAN BE ORDERED THROUGH FIVERR.',''),(3777,1,970,'6','Eric Jones',''),(3778,1,970,'2','555-555-1212',''),(3779,1,970,'3','ericjonesmyemail@gmail.com',''),(3780,1,970,'4','Hi juiceelectrical.co.nz Admin! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3781,1,971,'6','Rory Levay',''),(3782,1,971,'2','469 7280',''),(3783,1,971,'3','rory.levay@hotmail.com',''),(3784,1,971,'4','I will do 100+ SEO backlinks high quality and authority high da guest post link building.\r\n\r\nLink : https://tinyurl.com/seoservicepro1\r\n\r\nIF YOU NEED OTHER SERVICE THAN ABOVE CHECK HERE : https://tinyurl.com/fiverrservice01\r\n\r\nALL SERVICE WILL STARTS FROM 5$\r\n\r\nALL SERVICE CAN BE ORDERED THROUGH FIVERR.',''),(3785,1,972,'6','Veronica Royer',''),(3786,1,972,'3','veronica.royer@msn.com',''),(3787,1,972,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(3788,1,973,'6','Gillian castle',''),(3789,1,973,'2','0211213559',''),(3790,1,973,'3','gjilly@xtra.co.nz',''),(3791,1,973,'4','My switchboard has been making a chirping noise for a few days. I thought it was the smoke detector but it’s coming from the switchboard. I am really worried',''),(3792,1,973,'5','You have been here before',''),(3793,1,974,'6','Eric Jones',''),(3794,1,974,'2','555-555-1212',''),(3795,1,974,'3','ericjonesmyemail@gmail.com',''),(3796,1,974,'4','Hi juiceelectrical.co.nz Owner. this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3797,1,975,'6','Zelma Outlaw',''),(3798,1,975,'2','66 324 61 19',''),(3799,1,975,'3','outlaw.zelma58@yahoo.com',''),(3800,1,975,'4','Hi,\r\n\r\nLooking for someone to help you in local ranking ? Your business is not coming in top of google maps results page . I am Local SEO expert from 5 years and now i am here to help you! With the\r\nexpertise and work drive of my team, we will get you the best results possible\r\n\r\nCheck my 5 stars Fiverr page now\r\n\r\nhttps://tinyurl.com/3fxa3xw3',''),(3801,1,976,'6','Mike James',''),(3802,1,976,'2','83555724879',''),(3803,1,976,'3','mikeHourrirm@gmail.com',''),(3804,1,976,'4','If you are looking to rank your local business on Google Maps in a specific area, this service is for you. \r\n \r\nGoogle Map Stacking is a highly effective technique for ranking your GMB within a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike James\r\n \r\n \r\nPS: Want a comprehensive local plan that covers everything? \r\nhttps://www.speed-seo.net/product/local-seo-bundle/',''),(3805,1,976,'5','Google',''),(3806,1,977,'6','Leanna Monroe',''),(3807,1,977,'2','06-19968340',''),(3808,1,977,'3','monroe.leanna@gmail.com',''),(3809,1,977,'4','I wrote to you the other day about the ERTC Fund Program that your business probably qualifies for.\r\n\r\nYou potentially have a nice check waiting for you, because of the Covid-19 Relief that the Government is making\r\n\r\navailable to businesses who paid out W-2 Employee Wages during 2020 – 2021.\r\n\r\nYou could potentially get back up to $33,000 PER EMPLOYEE from this Government program. This is NOT a\r\n\r\nloan, but money your business qualifies for, if your business met certain criteria.\r\n\r\nHaving friends that own businesses, I know that your business most likely qualifies. Even if you already\r\n\r\napplied and received the PPP Funding, you now probably also qualify for additional money under the ERTC\r\nFund Program.\r\nSo, what are you waiting for?\r\n\r\nGo to this website and take a few minutes to fill out the simple Initial Inquiry Intake Form to see if your\r\nbusiness qualifies.\r\n\r\nhttps://bit.ly/The-Erc-Tax-Credit\r\n\r\n\r\nThere is no obligation on your part, this just lets you find out from the expert ERTC Accounting Specialists I\r\n\r\nam recommending, who will tell you how much money you can actually qualify for.\r\n\r\nIf you missed the email I sent to you the other day, then just scroll down and you can read it and learn all\r\n\r\nabout this Government program and how I am pretty sure your business qualifies for these credits.\r\n\r\nKeep me posted on your progress, I love hearing success stories.\r\n\r\nTo your business’s success.\r\nSincerely,\r\n\r\nDenny Hemlin\r\n\r\nhttps://bit.ly/The-Erc-Tax-Credit',''),(3810,1,978,'6','Michael Sinclair',''),(3811,1,978,'2','02.90.41.84.37',''),(3812,1,978,'3','msinclair.hivemailers@gmail.com',''),(3813,1,978,'4','Hello,\r\n \r\nI 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.\r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n- We make changes to the list and content until we get results.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!!!! We will send one hundred thousand emails for just $48 \r\n \r\nBook a 10 min call with me now: https://bit.ly/email-48-special\r\n\r\nNOTE: 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.\r\n\r\nThis offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/email-48-special\r\n\r\nSincerely,\r\nMichael',''),(3814,1,979,'6','William Johnson',''),(3815,1,979,'2','416-423-0523',''),(3816,1,979,'3','timperley.uta@hotmail.com',''),(3817,1,979,'4','Hello There,\r\n\r\nMore customer and Save time Get ahead of the competition with AI\r\n\r\nGo to https://rokl.ink/increased-sales \r\n\r\nto uncover a lucrative partnership opportunity that will skyrocket your leads and sales. \r\n\r\nBest wishes,\r\n\r\n Joseph Taylor \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(3818,1,980,'6','Hayley McConnel',''),(3819,1,980,'2','0662-6020564',''),(3820,1,980,'3','hayley.mcconnel@gmail.com',''),(3821,1,980,'4','I will do 100+ SEO backlinks high quality and authority high da guest post link building.\r\n\r\nLink : https://tinyurl.com/seoservicepro1\r\n\r\nIF YOU NEED OTHER SERVICE THAN ABOVE CHECK HERE : https://tinyurl.com/fiverrservice01\r\n\r\nALL SERVICE WILL STARTS FROM 5$\r\n\r\nALL SERVICE CAN BE ORDERED THROUGH FIVERR.',''),(3822,1,981,'6','Raymond William',''),(3823,1,981,'2','(03) 5314 8511',''),(3824,1,981,'3','william.raymond@hotmail.com',''),(3825,1,981,'4','Hi,\r\n\r\nDo you need to send out a lot of marketing or cold emails without worrying about limitations or restrictions?\r\n\r\nNow you can jumpstart your marketing with a fast and easy emailing platform. You will be able to:\r\n\r\n✔️ Send unlimited emails to all of your contacts (No daily limits)\r\n\r\n✔️ Collect unlimited contacts\r\n\r\n✔️ Import unlimited contacts without verification\r\n\r\n✔️ Send from unlimited domains you connect to the platform and you don\'t have to worry about requesting approval for every domain to get out of the sandbox to send just 1.5 million emails a month\r\n\r\n✔️ Create unlimited email campaigns\r\n\r\n✔️ Set up automated email sequences\r\n\r\n✔️ Keep track of your emails with in-depth statistics\r\n\r\n✔️ Categorize your customers and send tailored emails to specific groups\r\n\r\n✔️ Plus much more...\r\n\r\nAnd the best part,\r\n\r\nYou can get started completely free here --> https://bit.ly/unlimited-97\r\n\r\nOther well-known email sending platforms can costs hundreds and even over $1,000 per month to send just a million or two emails. (Not even unlimited mailing for that cost)\r\n\r\nTo see the full list of features and to get started for free,\r\nvisit: https://bit.ly/unlimited-97',''),(3826,1,982,'6','Eric Jones',''),(3827,1,982,'2','555-555-1212',''),(3828,1,982,'3','ericjonesmyemail@gmail.com',''),(3829,1,982,'4','To the juiceelectrical.co.nz Webmaster.\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3830,1,984,'6','Uzair Amies',''),(3831,1,984,'3','dianna.amies@gmail.com',''),(3832,1,984,'4','The Instagram social media platform has seen explosive growth over the last two years. It now has 500\r\nmillion users that are desperate for fun and exciting content and this is a massive opportunity for you\r\nto promote your business.\r\n\r\nI can help you to grow and promote your Instagram account organically\r\nvisit my 5 star profile and join over 3000 happy customer\r\n\r\nClick here to check out ===== > https://tinyurl.com/yc6rwxsw\r\n\r\nSee you there!\r\nRegards\r\nBrian And Dee',''),(3833,1,985,'6','Pam Anthon',''),(3834,1,985,'2','(08) 8733 7876',''),(3835,1,985,'3','pam.anthon@msn.com',''),(3836,1,985,'4','The mistake I have found you didnt have proper backlinks... I will offer SEO backlinks contextual via pro link building service.\r\n\r\nLink : https://tinyurl.com/fiverrservice2\r\n\r\nIf you dont got any result I will refund double the amount you paid...',''),(3837,1,986,'6','Fawn Laborde',''),(3838,1,986,'2','(34) 2427-8467',''),(3839,1,986,'3','laborde.fawn@msn.com',''),(3840,1,986,'4','Good day!\r\nExpecting customers to write email from site? (60%+ site visitors prefer to call). Paying for toll-free calls? Uncomfy about sharing your private number? \r\nCheck us out: \r\nhttps://youtu.be/zOfHu8fWIR8\r\n\r\nDetails here:\r\nhttps://www.connect-ez.com/click-to-call-service',''),(3841,1,987,'6','Thomas Anderson',''),(3842,1,987,'2','66 914 64 79',''),(3843,1,987,'3','hayley.meudell@gmail.com',''),(3844,1,987,'4','Hello,\r\n\r\nWant to outshine the competition with more customers and saving time with AI? \r\n\r\nGo to https://rokl.ink/increased-sales now to explore our partnership \r\n\r\nthat promises a surge in leads and sales for your business.\r\n\r\nBest regards,\r\n\r\n William Taylor \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(3845,1,988,'6','Megan Atkinson',''),(3846,1,988,'2','02.96.98.81.83',''),(3847,1,988,'3','meganatkinson149@gmail.com',''),(3848,1,988,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers safely and practically. \r\n\r\nWe aim to gain you 400-1200+ real human followers per month, with all actions safe as they are made manually (no bots).\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nLet me know if you are interested and have any questions.\r\n\r\nKind Regards,\r\nMegan',''),(3849,1,989,'6','Meredith Caban',''),(3850,1,989,'2','06-38293507',''),(3851,1,989,'3','meredith.caban@gmail.com',''),(3852,1,989,'4','I error I have found you didnt have proper backlinks... I will provide 5500 contextual 2 tier backlinks for SEO ranking for 10$..\r\n\r\nLink : https://tinyurl.com/seoservice2',''),(3853,1,990,'6','Michael Sinclair',''),(3854,1,990,'2','969 80 644',''),(3855,1,990,'3','msinclair.hivemailers@gmail.com',''),(3856,1,990,'4','Hello,\r\n \r\nI 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.\r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n- We make changes to the list and content until we get results.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!!!! We will send one hundred thousand emails for just $48 \r\n \r\nBook a 10 min call with me now: https://bit.ly/email-48-special\r\n\r\nNOTE: 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.\r\n\r\nThis offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/email-48-special\r\n\r\nSincerely,\r\nMichael',''),(3857,1,991,'6','Eric Jones',''),(3858,1,991,'2','555-555-1212',''),(3859,1,991,'3','ericjonesmyemail@gmail.com',''),(3860,1,991,'4','Hi juiceelectrical.co.nz Admin! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3861,1,992,'6','Mikki Damico',''),(3862,1,992,'2','(07) 4090 2058',''),(3863,1,992,'3','jenniferrossharmer@gmail.com',''),(3864,1,992,'4','Hi,\r\n\r\nWhile browsing, I stumbled upon your website and noticed a potential issue that might be affecting your user experience. I thought it might be of interest to you.\r\n\r\nTo help out,To assist, you can request a report for free to gain deeper insights. at https://businessanalyzer.org/sep2023\r\n\r\nI hope this provides some valuable insights for you!\r\n\r\nBest regards,',''),(3865,1,993,'6','Sanora Uy',''),(3866,1,993,'2','0906 36 42 75',''),(3867,1,993,'3','sanora.uy1@hotmail.com',''),(3868,1,993,'4','I error I have found you didnt have proper backlinks... I will provide 5500 contextual 2 tier backlinks for SEO ranking for 10$..\r\n\r\nLink : https://tinyurl.com/seoservice2\r\n\r\nIf you need help mail me : praveendigitalagency@gmail.com',''),(3869,1,994,'6','Mike Green',''),(3870,1,994,'2','85444879945',''),(3871,1,994,'3','mikeinquiff@gmail.com',''),(3872,1,994,'4','Hi there, \r\n \r\nI have reviewed your domain in MOZ and have observed that you may benefit from an increase in authority. \r\n \r\nOur solution guarantees you a high-quality domain authority score within a period of three months. This will increase your organic visibility and strengthen your website authority, thus making it stronger against Google updates. \r\n \r\nCheck out our deals for more details. \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Ahrefs Domain Rating \r\nhttps://www.monkeydigital.co/ahrefs-seo/ \r\n \r\nThanks and regards \r\nMike Green',''),(3873,1,994,'5','Google',''),(3874,1,995,'6','Lauri Raposo',''),(3875,1,995,'2','09427 48 82 91',''),(3876,1,995,'3','raposo.lauri@googlemail.com',''),(3877,1,995,'4','Subject: Unleash Limitless Productivity with InfinityFlow \r\n\r\nDear Visionary Professionals,\r\n\r\nAre you tired of feeling overwhelmed by the chaos of daily tasks and deadlines? Do you crave a seamless workflow that empowers you to unleash your true potential? Look no further than InfinityFlow.io - the ultimate productivity program that will propel your efficiency to infinity and beyond!\r\n\r\nImagine a world where you effortlessly glide through your to-do list, accomplishing tasks with unrivaled speed and precision. With InfinityFlow.io, this dream becomes a reality. Our cutting-edge platform is designed to optimize every aspect of your workflow, so you can focus on what truly matters - turning your ideas into reality!\r\n\r\nInfinityFlow.io\'s intuitive interface will transform the way you work. Seamlessly manage projects, delegate tasks, and collaborate with your team in real-time. No more messy email chains or lost files - everything you need is just a click away!\r\n\r\nBut that\'s not all - InfinityFlow.io is packed with powerful features to take your productivity to unprecedented heights. Our smart automation tools will streamline repetitive tasks, freeing up valuable time for you to tackle creative challenges. With personalized notifications and reminders, you\'ll never miss a deadline or important milestone again!\r\n\r\nSecurity is our top priority at InfinityFlow.io. Rest easy knowing that your sensitive data is protected by state-of-the-art encryption and authentication protocols. Focus on your work with peace of mind, knowing that your information is safe and secure.\r\n\r\nWhether you\'re a solopreneur, a small team, or a large enterprise, InfinityFlow.io scales to fit your needs. Our flexible plans and customizable workflows ensure that our platform adapts to your unique requirements and maximizes your efficiency.\r\n\r\nJoin the ranks of successful professionals who have harnessed the power of InfinityFlow.io to revolutionize their productivity. As a limited-time offer, we invite you to try InfinityFlow.io FREE for 14 days! Experience the transformative impact it will have on your work life, without any commitment.\r\n\r\nAre you ready to unlock the door to unparalleled productivity? Visit www.infinityflow.io and start your journey towards infinite possibilities today!\r\n\r\nLet InfinityFlow.io be your secret weapon for success.\r\n\r\nTo boundless achievements,\r\n\r\n\r\nGo Get your best LTD for 2023 >>>>> https://rebrand.ly/infinityflow',''),(3878,1,996,'6','Richard Anderson',''),(3879,1,996,'2','04282 68 55 47',''),(3880,1,996,'3','neild.efrain@gmail.com',''),(3881,1,996,'4','Hey there,\r\n\r\nGet ahead of the competition with more customers and saving time with AI\r\n\r\nGo to https://rokl.ink/increased-sales \r\n\r\nto uncover a lucrative partnership opportunity that will skyrocket your leads and sales. \r\n\r\n\r\nBest regards,\r\n\r\n Thomas Thompson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(3882,1,997,'6','Olivia Jones',''),(3883,1,997,'2','23-25-31-42',''),(3884,1,997,'3','parkinson.chris@gmail.com',''),(3885,1,997,'4','Hey,\r\n\r\nYour website seems to be registered in our premium list, you may have added it before. That\'s why we notify users on our list about premium news and deals.\r\n\r\nWe will give you a special link, with this link there are great rewards. You can increase your money maybe thousands of times.\r\n\r\nI am now offering you a promotional link to this award-winning site for trust and speed: \r\n\r\nGo here now: https://cutt.ly/Gwc2bvDV\r\n\r\nI hope you take advantage of this special promotional opportunity.\r\n\r\nSee you soon,\r\nWishing you luck and a great future\r\nSophia Smith',''),(3886,1,998,'6','Jamika Finn',''),(3887,1,998,'2','01.87.71.27.98',''),(3888,1,998,'3','finn.jamika@outlook.com',''),(3889,1,998,'4','I will do white hat contextual link building website high quality SEO backlinks for 15$.\r\n\r\nLink : https://tinyurl.com/seoservice3',''),(3890,1,999,'6','Cindy Cabrera',''),(3891,1,999,'2','503-329-9405',''),(3892,1,999,'3','cabrera.cindy@gmail.com',''),(3893,1,999,'4','The top Website Owners & Digital Marketers in the world are using AI Backlinks for Getting Traffic & Backlinks to boost their sales online.\r\n\r\nNow you have an opportunity to join them, improve your Google Rank & Get 10X Traffic with a new AI-based app called AI Backlinks.\r\n\r\n=> The Cart is Open… Go Fast & Secure Your Earlybird Access to AI Backlinks Now https://warriorplus.com/o2/a/n7x7gs/0\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nWith AI Backlinks, you can get Unlimited Backlinks for your websites & Youtube channels and also same time you can generate unlimited real traffic for boosting your sales & Revenue \r\n\r\nAI Backlinks is very easy to use, Trust me, once you have AI Backlinks you’ll be able to Rank #1 On Google, Bing & yahoo etc in 3 easy steps:\r\n\r\nStep 1 - Login & Enter to the Friendly Dashboard \r\n\r\nStep 2 - Enter Your Website Or Youtube Link & Click “Get Backlinks” & DONE!\r\n\r\nStep 3 - AI Backlinks Will Send Automatically Send Backlinks To The Most High Authority Websites \r\n\r\n\r\n=> Grab AI Backlinks With Exclusive Bonuses Now https://warriorplus.com/o2/a/n7x7gs/0\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nYou are getting AI Backlinks with a free commercial licence so you can send Backlinks to your clients websites Or Youtube Channels as well\r\n\r\nAnd start generating an evergreen income WITHOUT any hard work.',''),(3894,1,1000,'6','Hester Ness',''),(3895,1,1000,'2','0500-8925977',''),(3896,1,1000,'3','hester.ness@hotmail.com',''),(3897,1,1000,'4','You’ve Been Exclusively Invited To Help Us Launch A New Movement…\r\n\r\nNOTE: THIS IS NOT A NORMAL PRODUCT LAUNCH…\r\n\r\nThis is launching a new movement, that will pay you long term, residual commissions over time. \r\n\r\nAnd you are here at the beginning… before anyone else even knows about it.\r\n\r\nHow Is This Different... For YOU !?!\r\n\r\nWe are not looking for you to do a quick promotion, and it be over. We\'re looking to become partners with you as we launch and grow this amazing community of \"Round Pegs in Square Holes...\" (This will make more sense when you watch the launch campaigns... ha ha) \r\n\r\nThat means that this is NOT a normal affiliate program. \r\n\r\n- First - we are paying YOU 40% LIFETIME residual commissions!\r\n\r\n- Second - we are paying out TWO-TIER, so when your members refer others, you’ll get paid 10% LIFETIME residual commissions on all of those sales!!!\r\n\r\nWe recommend that you be the first to sign up.\r\n\r\nJoin Here Today\r\n\r\nhttps://bit.ly/Access40percentLifetimeResidualCommissionAffiliateProgram',''),(3898,1,1001,'6','Mike Otis',''),(3899,1,1001,'2','84383523126',''),(3900,1,1001,'3','mikethache@gmail.com',''),(3901,1,1001,'4','Hi there, \r\n \r\nMy name is Mike from Monkey Digital, \r\n \r\nAllow me to present to you a lifetime revenue opportunity of 35% \r\nThat\'s right, you can earn 35% of every order made by your affiliate for life. \r\n \r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month. \r\n \r\nClick here to enroll with us today: \r\nhttps://www.monkeydigital.org/affiliate-dashboard/ \r\n \r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved. \r\n \r\nThanks and regards \r\nMike Otis\r\n \r\nMonkey Digital',''),(3902,1,1001,'5','Google',''),(3903,1,1002,'6','Courtney Brown',''),(3904,1,1002,'2','0278432949',''),(3905,1,1002,'3','courtney_brown92@hotmail.com',''),(3906,1,1002,'4','Hi there,\r\n\r\nI\'m interested in getting a couple of extra power points installed in my home.\r\nI\'m wondering, Is this something you would do and do you offer quotes for the work?\r\nPlease let me know if you need any further info about the house.\r\n\r\n\r\nMany thanks,\r\n\r\nCourtney',''),(3907,1,1002,'5','Reddit recommendation',''),(3908,1,1003,'6','Rodney Caperton',''),(3909,1,1003,'2','0337 9119840',''),(3910,1,1003,'3','caperton.rodney@gmail.com',''),(3911,1,1003,'4','I will do white hat contextual link building website high quality SEO backlinks for 15$.\r\n\r\nLink : https://tinyurl.com/seoservice3',''),(3912,1,1004,'6','Luella Prowse',''),(3913,1,1004,'2','(02) 4063 6906',''),(3914,1,1004,'3','luella.prowse@gmail.com',''),(3915,1,1004,'4','Hi,\r\n\r\nDo you Need Google Ranking Improvement?\r\n\r\nDo you Need Customers, Sales & Income from your Own Business?\r\n\r\n\r\n Well, You\'re Absolutely at the Right Place. We are a Team of Sharp Shooters in Google Ranking & Doing SEO for 20+ Years to Rank Websites on First Page of Google.\r\n\r\nWe know.. What your Website need to be at the Top of Search Results.\r\n\r\nWhat, We will do Here is, We will Give you Killer SEO Backlinks to Rank you First in Search Engines.\r\n\r\n\r\nWhat will you Get?\r\n\r\nTOP Quality Backlinks \r\n\r\nWHITE Hat Linking\r\n\r\nPROVEN Guaranteed Results!\r\n\r\n\r\ncheck it out Here === > https://tinyurl.com/zwytfkuc',''),(3916,1,1005,'6','Andre Clarke',''),(3917,1,1005,'2','04.61.28.98.11',''),(3918,1,1005,'3','hedgepeth.brock@hotmail.com',''),(3919,1,1005,'4','Hello,\r\n \r\nI just wanted to see if you would be open to getting a Full-Time Virtual Assistant + an AI Agent team for one week FREE, and the best part is, there is no obligation to continue, and no credit card or payment required to try us out.\r\n\r\nBut this offer is only good this week, for the first 20 clients, so you need to claim your Virtual Assistant and AI Team Now, before you miss out. \r\n\r\nClick Here to Get Started: https://bit.ly/free-va-promo\r\n\r\nUsing Our Virtual Assistants + an AI Agent Team will allow you to:\r\n\r\n• Handle a variety of tasks and projects for you so that your day is more productive\r\n• Follow up on internal/external resources to ensure that there is daily progress\r\n• Give you back time to focus on building your business instead of admin tasks\r\n\r\n... and much, MUCH more!\r\n\r\nThis FREE Offer is worth over $400, and you are getting it for ABSOLUTELY FREE, so Don’t miss out!!! \r\n\r\nClick Here to Get Started: https://bit.ly/free-va-promo\r\n \r\nBest, \r\n\r\nAndre Clarke\r\nBusiness Development\r\nMyaa',''),(3920,1,1006,'6','Eric Jones',''),(3921,1,1006,'2','555-555-1212',''),(3922,1,1006,'3','ericjonesmyemail@gmail.com',''),(3923,1,1006,'4','To the juiceelectrical.co.nz Administrator!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3924,1,1007,'6','Mike Michaelson',''),(3925,1,1007,'2','86417769777',''),(3926,1,1007,'3','mikelida@gmail.com',''),(3927,1,1007,'4','Hi there \r\n \r\nJust checked your juiceelectrical.co.nz baclink profile, I noticed a moderate percentage of toxic links pointing to your website \r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge. \r\n \r\nStart recovering your ranks today: \r\nhttps://www.hilkom-digital.de/professional-linksprofile-clean-up-service/ \r\n \r\n \r\nRegards \r\nMike Michaelson\r\nHilkom Digital SEO Experts \r\nhttps://www.hilkom-digital.de/',''),(3928,1,1007,'5','Google',''),(3929,1,1008,'6','Diane Laclair',''),(3930,1,1008,'2','03.18.86.00.29',''),(3931,1,1008,'3','fs@vaulemedia.com',''),(3932,1,1008,'4','Wouldn’t you rather earn passive income by promoting services related to the topic of your website: https://juiceelectrical.co.nz/contact/ ?\r\nIf your answer is “yes”, then Fcompany affiliate program is definitely for you. Even if you already have your own product or service, you can promote services that \"complement\" it to maximize revenue.\r\n\r\nNow edit your existing posts and promote related services to double your revenue with 0% traffic increase: https://www.vaulemedia.com/fs\r\n\r\nAffiliate program: \r\n Per Google Trends, Fcompany has more search interest than any of the other big freelancer marketplaces, which makes it a comparatively easy sell\r\n\r\n Offers a wide array of products and services to promote, which makes it relevant to a wide audience\r\n\r\n Commissions are pretty high, especially for Fcompany Business services. Two commission plans: Fcompany CPA - Pays a dynamic cost per action (CPA) of $15 – $150; Fcompany Hybrid - Pays a fixed $10 CPA on all qualified sales, plus a 10% revenue share for 12 months.\r\n\r\n Affiliate support is highly rated and available 24/7\r\n\r\n Fcompany’s homepage is built with clicks and sales in mind\r\n\r\n You get paid as long as your referral creates an account within 30 days of clicking your Fcompany affiliate links — even if they don’t actually buying anything until months down the line\r\n\r\n Access tons of affiliate marketing tools, from creatives to deep links to widgets\r\n\r\nNow click here to maximize your revenue: https://www.vaulemedia.com/fs\r\n\r\nRegards,\r\n\r\nDiane Laclair\r\n\r\nUNSUBSCRIBE: https://www.vaulemedia.com/unsubscribe\r\n\r\nAddress: 930 W Inyokern Rd, Ridgecrest, CA 93555',''),(3933,1,1009,'6','Ofelia MacPherson',''),(3934,1,1009,'2','0930-6621427',''),(3935,1,1009,'3','ofelia.macpherson@gmail.com',''),(3936,1,1009,'4','Imagine a world where financial freedom is within your reach, where online success is not just a dream but a reality waiting to be unlocked. I\'m thrilled to introduce you to the key that can open this world for you—Elite Academy, created by the renowned online marketing expert, Dalwood Islam.\r\n\r\nDalwood Islam has walked the winding path of online marketing, tasting both failure and success. In 2018, he embarked on a journey that transformed his life, turning $0 into a consistent $20,000 per month income.\r\n\r\nNow, it\'s your turn to join the ranks of successful online marketers through Elite Academy. Here\'s why you should seize this opportunity:\r\n\r\n1. Comprehensive Mastery: Gain access to Dalwood\'s entire playbook of internet marketing, leaving no stone unturned. He\'s sharing it all, holding nothing back.\r\n\r\n2. Profitable Product Access: Unlock Dalwood\'s current and future products with an extraordinary 100% commission rate during launches. Your success is his success.\r\n\r\n3. Launch Partnerships: Collaborate with Dalwood on product launches, reaping 25% of the profits without bearing launch costs. Let\'s conquer markets together.\r\n\r\n4. Rotator Privileges: Secure your spot on the launch rotator, guaranteeing a stream of income with every new product Dalwood unveils.\r\n\r\n5. VIP Treatment: Elevate your status with VIP membership on 25 exclusive sites, with advertising reach exceeding 23,000 members.\r\n\r\n6. Instant Campaigns: Receive Dalwood\'s battle-tested, ready-to-deploy campaigns, complete with review videos and bonus pages, delivered in real-time.\r\n\r\n7. Community Camaraderie: Become part of our elite Facebook group for continuous training, interactive Q&A sessions, and personalized coaching.\r\n\r\nElite Academy is not just a program; it\'s your backstage pass to Dalwood Islam\'s journey from rags to riches. As your personal mentor, he\'s committed to your success.\r\n\r\nBut here\'s the kicker: For a limited time, you can claim your spot as a beta tester at a fraction of the regular price. Once our exclusive beta phase is full, the doors will slam shut.\r\n\r\nYour future success is only a click away. Ready to elevate your earnings to new heights? Click the link below to embark on this transformative adventure:\r\n\r\nhttps://warriorplus.com/o2/a/p4pkl2/0\r\n\r\nThis is more than an opportunity; it\'s a revelation. Elite Academy holds the key to your online wealth. Let\'s craft your story of success, together.\r\n\r\nBest regards,',''),(3937,1,1010,'6','Eric Jones',''),(3938,1,1010,'2','555-555-1212',''),(3939,1,1010,'3','ericjonesmyemail@gmail.com',''),(3940,1,1010,'4','Hello juiceelectrical.co.nz Webmaster.\r\n\r\nThis is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3941,1,1011,'6','Chelsey Stella',''),(3942,1,1011,'2','50-98-21-17',''),(3943,1,1011,'3','stella.chelsey@hotmail.com',''),(3944,1,1011,'4','Tried of slow sales or no traffic? Well here is the solution to your problem is finally here!\r\nHow To \"Remix\" Your Business...\r\n...By Automating EVERY Aspect Of MY $400,000/Year Business, Including... \r\nBuilding Websites, Developing Software, Creating Brands & Getting Buyer Traffic!\r\n\r\nHuge Offer on if you get it in the next 2 days! - https://bit.ly/483vlJz',''),(3945,1,1012,'6','Waylon Mickey',''),(3946,1,1012,'2','077 4505 1422',''),(3947,1,1012,'3','waylon.mickey@outlook.com',''),(3948,1,1012,'4','I will write SEO website content.\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(3949,1,1013,'6','Charlie Bradford',''),(3950,1,1013,'2','07753 26 30 11',''),(3951,1,1013,'3','bradford.charlie@outlook.com',''),(3952,1,1013,'4','Did you try to make money with AI, ChatGPT, Bard, Midjourney etc. but failed miserably?\r\n\r\nThey are all awesome tools, but alone and without a good strategy you\'ll just be wasting your time, money & effort with little to NO results.\r\n\r\nWhat if tell you - there is a *SECRET AI HACK* that pulls in millions of visitors/m with 30-sec AI FACE videos WITHOUT subs, followers, ads or SEO...\r\n\r\nIntroducing ViralFaces AI, the groundbreaking NEW top-secret A.I Face Tech that brings UNLIMITED Traffic to your offers!\r\n\r\nWith this revolutionary platform, you can create 100s of attention-grabbing A.I. Face Videos with zero effort in just minutes that speak and go viral on YouTube Shorts & Instagram Reels!\r\n\r\nYou get 10x more sales, reach, followers, and engagement...\r\n\r\nHere\'re some results newbies getting with Face videos:\r\n\r\n- 10M views posting a self-improvement short\r\n- 1.5M views posting a gym tips reel\r\n- 2.8M views posting a health tips reel\r\n\r\nAnd they all started with no subs, no followers, no ads - all using AI in minutes.\r\n\r\nThe sooner you get started, the MOST you\'ll be able to exploit this method - just handful of people doing it right now and you can be one of them.\r\n\r\n==> WATCH QUICK DEMO HERE https://warriorplus.com/o2/a/p62cw9/0\r\n\r\nViralFaces AI is available for a Low One Time Price during its public launch for the next few days only.\r\n\r\nAfter this week, it will turn into a higher recurring subscription price model.\r\n\r\nAct fast and get your account at the lowest price ever.\r\n\r\n==> Get ViralFaces AI for A Low One-Time Price Now https://warriorplus.com/o2/a/p62cw9/0\r\n\r\nSee you inside.\r\n\r\nAll the best,',''),(3953,1,1014,'6','Eric Jones',''),(3954,1,1014,'2','555-555-1212',''),(3955,1,1014,'3','ericjonesmyemail@gmail.com',''),(3956,1,1014,'4','Dear juiceelectrical.co.nz Webmaster!\r\n\r\nMy name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(3957,1,1015,'6','Lynette Rister',''),(3958,1,1015,'2','06554 65 30 17',''),(3959,1,1015,'3','rister.lynette@gmail.com',''),(3960,1,1015,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3961,1,1016,'6','Terry Sturdivant',''),(3962,1,1016,'2','079 8700 0988',''),(3963,1,1016,'3','sturdivant.terry@outlook.com',''),(3964,1,1016,'4','Accidental overdose is the #1 cause of death for people aged 18-45 in the United States.\r\n\r\n \r\n\r\nNarcan 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/. \r\n\r\n \r\n\r\nEventually 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.\r\n\r\n \r\n\r\nIf you have any questions or want to help spread the word, contact us at narcanfinder@gmail.com. Thank you for your consideration!',''),(3965,1,1017,'6','Abe Hudgens',''),(3966,1,1017,'2','04.27.55.73.94',''),(3967,1,1017,'3','hudgens.abe@gmail.com',''),(3968,1,1017,'4','Hi,\r\n\r\nDo you Need Google Ranking Improvement?\r\n\r\nDo you Need Customers, Sales & Income from your Own Business?\r\n\r\n\r\n Well, You\'re Absolutely at the Right Place. We are a Team of Sharp Shooters in Google Ranking & Doing SEO for 20+ Years to Rank Websites on First Page of Google.\r\n\r\nWe know.. What your Website need to be at the Top of Search Results.\r\n\r\nWhat, We will do Here is, We will Give you Killer SEO Backlinks to Rank you First in Search Engines.\r\n\r\n\r\nWhat will you Get?\r\n\r\nTOP Quality Backlinks \r\n\r\nWHITE Hat Linking\r\n\r\nPROVEN Guaranteed Results!\r\n\r\n\r\ncheck it out Here === > https://tinyurl.com/zwytfkuc',''),(3969,1,1018,'6','Thomas Taylor',''),(3970,1,1018,'2','0331 8526496',''),(3971,1,1018,'3','margery.winning@gmail.com',''),(3972,1,1018,'4','Hey there,\r\n\r\nWe have 17 potential customers who could use your services. Gain them now! \r\n\r\nClick on https://rokl.ink/increased-sales to seal the deal.\r\n\r\n\r\nBest regards,\r\n\r\n William Johnson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(3973,1,1019,'6','Helen Blakely',''),(3974,1,1019,'2','06-49986306',''),(3975,1,1019,'3','helen.blakely@gmail.com',''),(3976,1,1019,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3977,1,1020,'6','Maria Magdalena',''),(3978,1,1020,'2','05.84.11.85.76',''),(3979,1,1020,'3','ellwood.sandra@gmail.com',''),(3980,1,1020,'4','Your wish to see me naked come true ... just copy and paste in your browser the following website : https://VideoChat.Global/',''),(3981,1,1021,'6','Uzair Terry',''),(3982,1,1021,'2','0362 9982022',''),(3983,1,1021,'3','layne.terry22@hotmail.com',''),(3984,1,1021,'4','The Instagram social media platform has seen explosive growth over the last two years. It now has 500\r\nmillion users that are desperate for fun and exciting content and this is a massive opportunity for you\r\nto promote your business.\r\n\r\nI can help you to grow and promote your Instagram account organically\r\nvisit my 5 star profile and join over 3000 happy customer\r\n\r\nClick here to check out ===== > https://tinyurl.com/yc6rwxsw\r\n\r\nSee you there!\r\nRegards\r\nBrian And Dee',''),(3985,1,1022,'6','Mike Finch',''),(3986,1,1022,'2','81459587247',''),(3987,1,1022,'3','peterDilkmaida@gmail.com',''),(3988,1,1022,'4','Hi there \r\n \r\nI have just verified your SEO on juiceelectrical.co.nz for its SEO metrics and saw that your website could use an upgrade. \r\n \r\nWe will increase your ranks organically and safely, using only state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/unbeatable-seo/ \r\n \r\n \r\nRegards \r\nMike Finch\r\nDigital X SEO Experts',''),(3989,1,1022,'5','Google',''),(3990,1,1023,'6','Lolita Gardener',''),(3991,1,1023,'2','04.96.61.10.75',''),(3992,1,1023,'3','gardener.lolita@gmail.com',''),(3993,1,1023,'4','Turn Your Brainstorms Into Sales Storms with Our Script-Transforming App!\r\n\r\nSkyrocket Your Sales, Boost Your Conversion Rates & Dominate Your Competition By Unleashing the Power of AI-Amplified Persuasive Sales Scripts done by ChatGPT\r\n\r\nThe Only App That Transforms ChatGPT Into a World-Class Copywriter Through Frameworks & Expert AI Seeds.\r\n\r\nWatch the demo here https://warriorplus.com/o2/a/yqdgdt/0\r\n\r\nHere is what you get:\r\n\r\n+ World’s #1 ChatGPT Copywriting App\r\n+ ChatGPT Connect Chrome Plugin\r\n+ 210 AI Frameworks and Seeds\r\n+ Make Your Sales Scripts Sizzle\r\n+ Transform ChatGPT into a World-Class Copywriter\r\n+ Unlimited Usage Rights with AI\r\n+ Unlimited Usage Rights with AI For Clients\r\n+ Access From Anywhere\r\n+ Step-By-Step Training\r\n+ Fast & Friendly Support\r\n+ Free Updates + Commercial License\r\nAnd much more...\r\n\r\nPLUS you get bonuses valued at 2,579 on top - mind blowing deal.\r\n\r\nTransform ChatGPT into a Master Copywriter!\r\n\r\nhttps://warriorplus.com/o2/a/yqdgdt/0\r\n\r\nTo your success,',''),(3994,1,1024,'6','Stuart Vogt',''),(3995,1,1024,'2','05.91.81.84.74',''),(3996,1,1024,'3','vogt.stuart29@googlemail.com',''),(3997,1,1024,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(3998,1,1025,'6','Davida Fernandes',''),(3999,1,1025,'2','72 677 77 29',''),(4000,1,1025,'3','davida.fernandes@gmail.com',''),(4001,1,1025,'4','To the juiceelectrical.co.nz Webmaster!\r\n\r\nI\'m Davida and I just recently discovered your site - juiceelectrical.co.nz - in the searches.\r\n\r\nHere’s what that implies to me…\r\n\r\nYour SEO’s doing its job.\r\n\r\nYou’re receiving eyeballs – mine at least.\r\n\r\nYour content’s pretty good, would not change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs do not pay the invoices.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies reveal that 7 out of 10 visitors to juiceelectrical.co.nz will drop by, have a look, and then leave without doing else.\r\n\r\nIt’s like they never even were even there there.\r\n\r\nYou can resolve this.\r\n\r\nYou can make it it extremely easy for them to raise their hand, say, “okay, let’s talk” without demanding them to even so much as pull their mobile from their pocket… courtesy of Visitor to Lead Widget.\r\n\r\nVisitor to Lead Widget is a tool that lives on your webpage, set and waiting to grab any viewer’s Name, Email address, and Phone Number. It enables you know immediately immediately – so you can talk to that lead right away… before they head for those hills.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to test a Live Demo with Visitor to Lead Widget right now to see precisely how it operates.\r\n\r\nNow it’s also true that when reaching out to potential customers, you MUST act fast – the difference between between contacting someone someone within 5 minutes versus 30 minutes later is massive!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so effective… you’ve got their phone number, so now you can you can start a text message a text message (SMS) conversation with them… so even if if they don’t take you up take you up on your offer right away right away, you continue to text them to text them them new proposals, new content, and new reasons to do business with you to do business with you.\r\n\r\nThis could change everything change everything for you and your enterprise.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover about everything Web Visitors Into Leads can do and start turing turing eyeballs into money.\r\n\r\nDavida\r\nPS: Lead Conversion Software offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!\r\nIt even includes includes International Long Distance Calling.\r\nPaying customers are out there waiting.\r\nStarting connecting today by CLICKING HERE by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads Visitor to Lead Widget right now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nOnly a swift message - the names and email employed in this communication, Davida and Fernandes, are substitutes and not really real information. We esteem transparency and desired to confirm you are aware! Should you desire to communicate with the genuine person behind this communication, please go to our website, and we’ll connect you with the appropriate individual.',''),(4002,1,1026,'6','henry wade guillem faune',''),(4003,1,1026,'2','02041007875',''),(4004,1,1026,'3','henrywadefaune22@gmail.com',''),(4005,1,1026,'4','Hi,\r\n\r\nI\'d like to ask if you have a vacancy for electrical apprenticeship.\r\n\r\nThanks',''),(4006,1,1026,'5','Google',''),(4007,1,1027,'6','Rosalind Burnett',''),(4008,1,1027,'2','0481 96 06 81',''),(4009,1,1027,'3','burnett.rosalind@gmail.com',''),(4010,1,1027,'4','Hi, I\'m Melinda.\r\n\r\nI\'m monitoring your site juiceelectrical.co.nz\r\n\r\nThe new Google Helpfull content update is killing many sites, decreasing their traffic by more than 70%.\r\n\r\nTo counteract this situation, we offer for a limited time a pack of 39 links from a careful combination of edu and gov sites, with high DA.\r\n\r\nBy linking to your sites from these high DA sites, you give a signal to Google that your site juiceelectrical.co.nz is highly relevant.\r\n\r\n39 Gov / Edu backlinks\r\n----------------------\r\n\r\n- Profile Links\r\n- Google Indexing Guaranteed\r\n- High Pagerank + Domain Authority\r\n- Full report provided\r\n\r\nThe price of this package is $144.\r\n\r\nIf you wish to purchase this package to boost juiceelectrical.co.nz rankings, or for any questions I\'m available at the following email:\r\n\r\nMelindanDenham7150@hotmail.com\r\n\r\nWhat is Gov Edu Backlinks?\r\nThe term “gov” indicates that the website is part of the government. An “edu” backlink would come from an educational institution. Gov edu backlinks are usually high quality since they come from credible and trustworthy sources.\r\n\r\nWhy do I need to buy EDU GOV Backlinks?\r\nThese backlinks are important for SEO because they help improve a website’s ranking in search results. In general, the higher the quality of the linking site, the more valuable the link will be. Gov edu backlinks can be difficult to obtain because most government websites do not want to link to other websites. However, these links can be very beneficial for SEO purposes.',''),(4011,1,1028,'6','Wilhelmina Virgin',''),(4012,1,1028,'2','426 21 310',''),(4013,1,1028,'3','virgin.wilhelmina98@outlook.com',''),(4014,1,1028,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(4015,1,1029,'6','Michael Sinclair',''),(4016,1,1029,'2','09421 86 79 90',''),(4017,1,1029,'3','msinclair.hivemailers@gmail.com',''),(4018,1,1029,'4','Hello,\r\n \r\nI 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.\r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n- We make changes to the list and content until we get results.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!!!! We will send one hundred thousand emails for just $48 \r\n \r\nBook a 10 min call with me now: https://bit.ly/hive-48-special\r\n\r\nNOTE: 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.\r\n\r\nThis offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hive-48-special\r\n\r\nSincerely,\r\nMichael',''),(4019,1,1030,'6','Robert Smith',''),(4020,1,1030,'3','lilly.jernigan@gmail.com',''),(4021,1,1030,'4','Hello,\r\n\r\nWe\'ve pinpointed 17 leads interested in what you offer. can this help you?\r\n\r\nthen Go to https://rokl.ink/increased-sales and let\'s make this happen!\r\n\r\n\r\nBest regards,\r\n\r\n Richard Taylor \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(4022,1,1031,'6','Eileen Searcy',''),(4023,1,1031,'2','078 7979 1747',''),(4024,1,1031,'3','searcy.eileen@gmail.com',''),(4025,1,1031,'4','You can now create ultra-HD, voiced-over videos, shorts, AI graphics, Voiceovers, GPT 4 content and Chatbots with just few clicks.\r\n\r\nSeriously, it\'s like magic!\r\n\r\nBrand New AICreative Suite has been launched…. Worlds ‘First, never seen before, GPT 4 Powered AI Content Creation Platform!\r\nWhat’s included?\r\n\r\n• AI Video Creator – Create Ultra HD videos\r\n• AI Ultra Shorts Maker – To Create Shorts, reels and more for YouTube, Instagram, Facebook and TikTok\r\n• AI Graphic Generator – To create stunning 4K Images using SDXL tech 1.0\r\n• AI Image Design Tools – Images and videos upscaler, enhance images, restore, remove backgrounds and more.\r\n• AI GPT 4 Content Writer – write or choose from over 200 writing templates for any content such as blogs, swipes, scripts, articles, eBooks etc.\r\n• AI Voiceover Creator – Create Real and natural sounding voiceovers.\r\n• AI Chatbots Builder – Develop AI Agents in 50+ niches For customer service and lead generation.\r\n• Royalty-Free Music Library\r\n• 10 Million+ In-built Premium Stock Images & Videos.\r\n• Export Your Videos In 720p and HD 1080p\r\n• COMMERCIAL LICENCE During Launch Period Only!\r\n \r\nTo get your copy for a one-time price, before the monthly pricing kicks in, go here now. https://warriorplus.com/o2/a/fgrwnn/0\r\n \r\nHere’s how it works, in just 3 steps:\r\n\r\nSTEP 1 – Select from 7 AI creator tools to create content of your choice – videos, graphics, Shorts, Voiceovers, GPT 4 content and chatbots.\r\nSTEP 2 – enter details and click “generate”. Our AI will create STUNNING videos, shorts, graphics, voiceovers, content and Chatbots. Edit and create videos complete with voice overs, animations, texts, call to actions & more!\r\nSTEP 3 – Use them for your business or your client’s & start getting real traffic & sales instantly.\r\n \r\nWith AICreative Suite, World class content creation is at your fingertips…\r\n\r\nYou can use these Ultra HD videos, graphics, shorts and content to drive hordes of buyer traffic and commissions.\r\n\r\nIf you’re tired of wasting money on outdated AI Apps and freelancers, this is ONE thing that will get you all the traffic, leads and sales you need…\r\n \r\nThe clock is ticking. Time is running out, though… Our special launch offer is a one-time payment only! After this, it\'ll become a monthly subscription. So don’t regret paying a higher amount later.\r\n \r\nClick here to get AICreative Suite at the one-time launch price!\r\n\r\nhttps://warriorplus.com/o2/a/fgrwnn/0\r\n\r\nTo your success,\r\n \r\nP.S. Remember, this one-time offer won\'t last forever!\r\nSo, what are you waiting for? Get AICreative Suite now and start creating amazing videos, shorts, graphics, voiceovers, chatbots and Content in no time! ⏳',''),(4026,1,1032,'6','Kieran Hogg',''),(4027,1,1032,'2','501-360-7590',''),(4028,1,1032,'3','kieran.hogg@gmail.com',''),(4029,1,1032,'4','Strategies & Stories From SEO Millionaires\r\n\r\nTake your SEO skills and boost juiceelectrical.co.nz for the next level.\r\n\r\nFrom Parasite SEO to PBN linking, from fast indexing to ecommerce top Google ranking.\r\n\r\nCharles Floate, the SEO legend, and 12 SEO top rankers will teach you all the secrests, including some blackhat ones.\r\n\r\nAccess the book here\r\n\r\nhttps://bit.ly/StrategiesFromSEOMillonaires',''),(4030,1,1033,'6','Regina Betancourt',''),(4031,1,1033,'2','0383 8009314',''),(4032,1,1033,'3','regina.betancourt@into.jsafes.com',''),(4033,1,1033,'4','Hey,\r\n\r\nAre you exhausting yourself with endless content creation and still feeling like you\'re running on a treadmill? Autoblogging AI is the breakthrough you\'ve been waiting for.\r\n\r\nDesigned for bloggers like you at juiceelectrical.co.nz, this tool simplifies and automates content generation, making it more efficient and budget-friendly than you ever imagined.\r\n\r\nTogether with the ChatGPT API, Autoblogging AI crafts articles tailored to your unique specifications. And with its WordPress plugin, your freshly minted content – adorned with images – is uploaded automatically, ready for your final touch. (And don\'t worry if you\'re not on WordPress; our articles are versatile enough for any platform.)\r\n\r\nDive into our variety of packages and find your fit:\r\n\r\nLIFETIME FREE: 4 Articles per/month at no cost\r\nBASIC PLAN: $29 for 70 Articles per/month (That\'s just 41 cents per article!)\r\nPRO PLAN: $49 for 135 Articles per/month (A mere 36 cents per article!)\r\nPRO PLUS PLAN: $89 for 290 Articles per/month (Only 30 cents per article!)\r\n\r\nhttps://autoblogging.ai/?sld=zaidfoster\r\n\r\nGet started quickly, and if you ever need assistance, a top-notch technical support is just a click away.\r\n\r\nExperience the future of blogging. Try it for FREE LIFETIME!',''),(4034,1,1034,'6','Bud Kinross',''),(4035,1,1034,'2','60 174 07 57',''),(4036,1,1034,'3','bud.kinross66@hotmail.com',''),(4037,1,1034,'4','Hello,\r\n\r\nI hope this message finds you well. I recently visited your website and was impressed by the valuable content and resources you provide to your audience. I believe I can offer you a service that can further enhance your website\'s performance and visibility.\r\n\r\nI specialize in providing high-quality contextual SEO dofollow backlinks, tailored to your niche, that can significantly improve your website\'s search engine rankings. These backlinks are from authoritative sources and can help drive more organic traffic to your site.\r\n\r\nHere\'s how my service can benefit you:\r\n\r\nImproved Search Rankings: Boost your website\'s position in search engine results pages (SERPs).\r\nTargeted Traffic: Attract relevant, organic visitors to your site.\r\nEnhanced Authority: Gain credibility and authority in your niche with reputable backlinks.\r\nAffordable Pricing: I offer this valuable service for just $10.\r\n\r\nIf you\'re interested in learning more about how my backlinks can benefit your website, please click the link below or provide a preferred method of contact. I\'d be happy to discuss the details further.\r\n\r\nlink : https://tinyurl.com/backlinkserice1\r\n\r\nThank you for considering my offer, and I look forward to the possibility of working together to enhance your website\'s SEO success.\r\n\r\nBest regards,\r\nBud\r\n\r\nif you need help don\'t hesitate to contact me here : info@worldogspot.com',''),(4038,1,1035,'6','Trevor Jamieson',''),(4039,1,1035,'2','079 0624 0018',''),(4040,1,1035,'3','trevor.jamieson@hotmail.com',''),(4041,1,1035,'4','Collaborate with us to win new customers, positive reviews and passive income for your local business!\r\n\r\n- check our offer on the following website (copy & paste): www.contest.discount/en/\r\n\r\n- use the code 74565 to get 100 EUR discount.\r\n\r\n- we will try to increase, without any guarantee, the number of interactions for Facebook Business Page (followers + views + shares + likes + reviews + comments), Google Business Profile (calls + direction requests + photo likes + photo views + ratings + reviews + saves + website visits), Instagram Business Page (followers + views + website visits + shares + likes + comments + saves), YouTube Business Channel (subscribers + views + shares + likes + comments + saves) and so on. Your results may be different from our case studies, due to multiple variables specific to your local business.\r\n\r\n- we will setup, optimize and maintain any pay per click platforms like Bing, Facebook, Google, Gmail, Instagram, LinkedIn, Messenger, Pinterest, Snapchat, Twitter, Waze, Yandex, Yelp, YouTube and so on. We will use your pay per click accounts to promote your viral contest.\r\n\r\n- you can easily earn passive income colaborating with us. You will receive a unique discount code and for every new customer that you send to us through your local business viral contest, you will receive 100 EUR and our new customer will receive 100 EUR discount. Your share of our revenue will be credited towards your local business pay per click. You win passive income without any investment, our new customer win a discount and we win a new customer. It is a highly advantageous situation for all parties involved.\r\n\r\n- use the code 74565 to get 100 EUR discount.\r\n\r\n- check our offer on the following website (copy & paste): www.contest.discount/en/',''),(4042,1,1036,'6','Bobbye Deleon',''),(4043,1,1036,'2','440-728-7867',''),(4044,1,1036,'3','deleon.bobbye89@gmail.com',''),(4045,1,1036,'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: juiceelectrical.co.nz',''),(4046,1,1037,'6','Kelvine Sezay',''),(4047,1,1037,'2','0354 0559645',''),(4048,1,1037,'3','mandyedward13@gmail.com',''),(4049,1,1037,'4','Sir\r\n\r\nIt\'s great reaching out to you today, haven taken time to study your linkedin profile before coming up with this decision to contact you with the intention to have you work with me in closing a bank deal which have to do with my late father\'s account and deposit.\r\n\r\nIf you can give me the opportunity, I would like to send comprehensive details of the transaction to your review.\r\n\r\nLooking forward to hearing from you.\r\n\r\nKelvin Sezay\r\n67 Jason Moyo,\r\nFree Town, Sierra Leon',''),(4050,1,1038,'6','Brad',''),(4051,1,1038,'2','(08) 9001 9608',''),(4052,1,1038,'3','brad@juiceelectrical.co.nz',''),(4053,1,1038,'4','Good Morning \r\n \r\nIs 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™? \r\nWith PawSafer™, you can trim your dog\'s nails from the comfort of your own home, and it only takes a few minutes!\r\n\r\nPawSafer™ is the safest and most convenient way to trim your dog\'s nails, and it\'s very affordable. \r\n\r\nGet it while it\'s still 50% OFF + FREE Shipping\r\n\r\nBuy here: https://pawsafer.net\r\n \r\nHave a great time, \r\n \r\nBrad',''),(4054,1,1039,'6','Bebe Shearer',''),(4055,1,1039,'2','474 3483',''),(4056,1,1039,'3','bebe.shearer17@gmail.com',''),(4057,1,1039,'4','Hey there,\r\n\r\nMy name is Josh and I\'m promoting a software program that might be right up your alley. \r\n\r\nI was online looking for digital marketing companies and I came across your website and wanted to reach out and \r\nshare this AI software with you. \r\n\r\nI think this could make a great addition to the line of tools you may already have.\r\n\r\nFeel free to check it out. Just a heads up, this is an affiliate program so I would be making a small commission,\r\nand I would be greatful if you used my link if you were interested.\r\n\r\nThis is were you can get more inforamtion. => https://get-groove-now.com/future-of-ai\r\n\r\n\r\nI don\'t promot products I don\'t use. Here\'s a 10 second video of me logging in.\r\n\r\n==> https://get-groove-now.com/logging-in-to-grooveai\r\n\r\nBest,\r\nJoshua P\r\n\r\nP.S Have a good one',''),(4058,1,1040,'6','Lashunda Winchcombe',''),(4059,1,1040,'2','403-602-3607',''),(4060,1,1040,'3','lashunda.winchcombe@yahoo.com',''),(4061,1,1040,'4','Hello,\r\n\r\nI hope this message finds you well. I recently visited your website and was impressed by the valuable content and resources you provide to your audience. I believe I can offer you a service that can further enhance your website\'s performance and visibility.\r\n\r\nI specialize in providing high-quality contextual SEO dofollow backlinks, tailored to your niche, that can significantly improve your website\'s search engine rankings. These backlinks are from authoritative sources and can help drive more organic traffic to your site.\r\n\r\nHere\'s how my service can benefit you:\r\n\r\nImproved Search Rankings: Boost your website\'s position in search engine results pages (SERPs).\r\nTargeted Traffic: Attract relevant, organic visitors to your site.\r\nEnhanced Authority: Gain credibility and authority in your niche with reputable backlinks.\r\nAffordable Pricing: I offer this valuable service for just $10.\r\n\r\nIf you\'re interested in learning more about how my backlinks can benefit your website, please click the link below or provide a preferred method of contact. I\'d be happy to discuss the details further.\r\n\r\nlink : https://tinyurl.com/backlinkserice1\r\n\r\nThank you for considering my offer, and I look forward to the possibility of working together to enhance your website\'s SEO success.\r\n\r\nBest regards,\r\nLashunda\r\n\r\nif you need help don\'t hesitate to contact me here : info@worldogspot.com',''),(4062,1,1041,'6','Cristine Brisbane',''),(4063,1,1041,'3','cristine.brisbane36@yahoo.com',''),(4064,1,1041,'4','Hi,\r\n\r\nLooking for someone to help you in local ranking ? Your business is not coming in top of google maps results page . I am Local SEO expert from 5 years and now i am here to help you! With the\r\nexpertise and work drive of my team, we will get you the best results possible\r\n\r\nCheck my 5 stars Fiverr page now\r\n\r\nhttps://tinyurl.com/3fxa3xw3',''),(4065,1,1042,'6','Evan Hoysted',''),(4066,1,1042,'2','423 2824',''),(4067,1,1042,'3','hoysted.evan@googlemail.com',''),(4068,1,1042,'4','Hello juiceelectrical.co.nz Webmaster.\r\n\r\nIt\'s Evan and I just ran across your site at juiceelectrical.co.nz...\r\n\r\nI located it after a brief search, so your search engine optimization is working out…\r\n\r\nInformation looks decent…\r\n\r\nOne thing’s missing though…\r\n\r\nA FAST, SIMPLE way to communicate with you RIGHT NOW.\r\n\r\nBecause data show that a potential customer like me will only hang out a few seconds – 7 out of 10 vanish almost instantly, Browse Browse Browse… then disappeared.\r\n\r\nI have the solution:\r\n\r\nLead Conversion Tool is a tool that’s operates on your website, ready to grab any user’s Name, Email address, and Phone Number. You’ll know right away 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.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to experience a Live Demo with Visitor Engagement Widget now to see precisely how it works and even test it out… it could be huge for your company.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation right away… which is so powerful, because linking up with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you stay connected frequently with new offers, content links, even just follow-up notes to build a relationship.\r\n\r\nAll I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to find out what Lead Conversion Tool can do for your business, maybe converting up to 100X more viewers into leads now!\r\n\r\nEvan\r\nPS: Lead Conversion Tool offers a FREE 14 days trial – and it even includes International Long Distance Calling.\r\nYou have prospects waiting to speak with you at this moment… don’t keep them waiting.\r\nCLICK HERE http://jumboleadmagnet.com to test Visitor Engagement Widget now.\r\n\r\nIf you\'d prefer to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nOnly a quick remark - the monikers and email address utilized in this note, Evan and Hoysted, are placeholders and not genuine information. We value honesty and wished to assure you’re conscious! In case you desire to connect with the real one behind this message, kindly go to our site, and we’ll link you with the appropriate entity.',''),(4069,1,1043,'6','Xavier',''),(4070,1,1043,'2','0343 7190791',''),(4071,1,1043,'3','xavier@juiceelectrical.co.nz',''),(4072,1,1043,'4','Hi there \r\n \r\nIs 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™? \r\nWith PawSafer™, you can trim your dog\'s nails from the comfort of your own home, and it only takes a few minutes!\r\n\r\nPawSafer™ is the safest and most convenient way to trim your dog\'s nails, and it\'s very affordable. \r\n\r\nGet it while it\'s still 50% OFF + FREE Shipping\r\n\r\nBuy here: https://pawsafer.net\r\n \r\nBest regards, \r\n \r\nXavier',''),(4073,1,1044,'6','Gladys Crawley',''),(4074,1,1044,'2','963 42 421',''),(4075,1,1044,'3','crawley.gladys@gmail.com',''),(4076,1,1044,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(4077,1,1045,'6','Lincoln Timmer',''),(4078,1,1045,'2','79 812 10 22',''),(4079,1,1045,'3','dataguys24@gmail.com',''),(4080,1,1045,'4','Hey!\r\n\r\nWant some free leads or data for your business?\r\n\r\nVisit us: DataList2023.com',''),(4081,1,1046,'6','William Williams',''),(4082,1,1046,'2','0225-4332314',''),(4083,1,1046,'3','walden.yetta64@gmail.com',''),(4084,1,1046,'4','Hello There,\r\n\r\nSleep snug without a snore. The EPAP mask is your pocket-friendly portal to peaceful nights.\r\n\r\nGo to. https://sleepl.ink/sleep-easy to sleep the night away\r\n\r\n\r\nBest wishes,\r\n\r\n Robert Wilson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4085,1,1047,'6','Marsha Partin',''),(4086,1,1047,'2','0482 32 59 98',''),(4087,1,1047,'3','marsha.partin@hotmail.com',''),(4088,1,1047,'4','Hi, I\'m Neha P , a seasoned and results-driven SEO specialist. Our comprehensive monthly SEO service is meticulously crafted to include high-quality backlinks, advanced keyword optimization, on-page enhancements, and more.\r\n\r\nFor an in-depth understanding of how we can turbocharge your online presence, take a moment to explore our informative YouTube video: https://www.youtube.com/watch?v=d5jMB2xqzSc\r\n\r\nIf you have any questions or wish to discuss a tailored strategy for your unique requirements, please don\'t hesitate to reach out to us link in comments.\r\n\r\nBest regards,\r\nNeha P',''),(4089,1,1048,'6','Christie Poe',''),(4090,1,1048,'2','070 6598 9663',''),(4091,1,1048,'3','jenniferrossharmer@gmail.com',''),(4092,1,1048,'4','While browsing, I stumbled upon your website and noticed a potential issue that might be affecting your user experience. I thought it might be of interest to you.\r\n\r\nTo help out, I\'ve created a quick report detailing what I found. You can access it for free at https://businessanalyzer.org/main . I hope this provides some valuable insights for you!\r\n\r\nBest regards,',''),(4093,1,1049,'6','Nicholas Johnston',''),(4094,1,1049,'2','021 2690828',''),(4095,1,1049,'3','n8j@outlook.co.nz',''),(4096,1,1049,'4','Hello, I would like to book a residential job at 62 Idris Road, Bryndwr.\r\n1. Replace downlight with LED and fix or replace light switch which is not working. Existing downlight is 12.5cm.\r\n2. Fasten a wall mounted spotlight that has come loose and doesn\'t appear to have been screwed into anything solid.\r\n3. Replace a light dimmer switch with one compatible with LED bulbs. \r\n4. Check out blue goo oozing from the switchboard.\r\n\r\nThanks',''),(4097,1,1049,'5','Web search',''),(4098,1,1050,'6','Russell Chinnery',''),(4099,1,1050,'2','828-761-9466',''),(4100,1,1050,'3','russell.chinnery@outlook.com',''),(4101,1,1050,'4','Subject: Unleash the Power of Your Business with GoHighLevel!\r\n\r\nDear Entrepreneurs and Business Leaders,\r\n\r\nAre you ready to revolutionize the way you run your business? Say hello to GoHighLevel - the all-in-one platform that will elevate your business to new heights and empower you with the tools you need to succeed!\r\n\r\nPicture this: seamlessly managing your entire customer journey from a single, intuitive dashboard. No more juggling between different platforms or drowning in a sea of confusing spreadsheets. With GoHighLevel, you can streamline your processes and focus on what truly matters - growing your business.\r\n\r\nFrom generating high-converting leads to nurturing them into loyal customers, GoHighLevel has got you covered. Build stunning landing pages that leave a lasting impression, create captivating email campaigns that engage and convert, and effortlessly manage your appointments with a smart scheduling system that syncs with your calendar.\r\n\r\nBut that\'s not all - GoHighLevel\'s versatility knows no bounds! Whether you\'re in the business of coaching, consulting, marketing, or any other industry, our platform adapts to your unique needs. Experience the convenience of managing your SMS marketing, social media, and even client pipelines all under one roof.\r\n\r\nWorried about your business scaling to new heights? Fear not! GoHighLevel is designed with growth in mind. With advanced analytics and performance tracking, you\'ll gain valuable insights into your business\'s performance and make data-driven decisions for continued success.\r\n\r\nOur user-friendly interface ensures that you don\'t need to be tech-savvy to make the most of our platform. Say goodbye to complexities and embrace the simplicity of GoHighLevel!\r\n\r\nAs a special offer for our valued customers, we\'re thrilled to provide a 30-day free trial of GoHighLevel. Yes, you read that right - an entire month to experience the transformative power of our platform, risk-free!\r\n\r\nJoin thousands of businesses worldwide who have already witnessed the magic of GoHighLevel and achieved unparalleled growth and success. Don\'t be left behind - take the leap and go beyond your limits with GoHighLevel!\r\n\r\nReady to embark on a journey of business excellence? Head over to www.gohighlevel.com and sign up for your free trial today.\r\n\r\nEmpower your business, elevate your success - GoHighLevel awaits you!\r\n\r\nTo your success,\r\n\r\nGoHighLevel lover\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(4102,1,1051,'6','Alex C',''),(4103,1,1051,'2','06-42216136',''),(4104,1,1051,'3','ludie.sleep@gmail.com',''),(4105,1,1051,'4','Hello,\r\n\r\nI\'m Alex , and I can supercharge your website\'s SEO with 2500 high-quality dofollow backlinks.\r\n\r\nWatch our YouTube video now to see how: https://www.youtube.com/watch?v=z5Zd4vDPuE8\r\n\r\nReady to boost your rankings? Contact me today!\r\n\r\nBest regards,\r\nAlex',''),(4106,1,1052,'6','Loretta Heaps',''),(4107,1,1052,'2','06211 60 68 09',''),(4108,1,1052,'3','swagbucks@howheart.com',''),(4109,1,1052,'4','Hi,\r\nNo one knows your industry as well as you do, your thoughts are high value, and brands are willing to pay a lot of cash for your thoughts!\r\n\r\nSwagbucks has paid members over $529 million. They are rated \'Excellent\' on Trustpilot with more than 33,000 reviewers. \r\nBut given just how easy it is to earn money on the site, we wouldn\'t blame you for asking if Swagbucks is legit.\r\n\r\nIn addition, there are other ways to earn money on Swagbucks, such as: sign up for free trial, download a game app to the phone ...\r\n\r\nClick here to earn cash now: https://www.howheart.com/swagbucks\r\n\r\nRegards,\r\nLoretta Heaps\r\n\r\nUNSUBSCRIBE: https://www.howheart.com/unsubscribe/\r\n802 N Balsam St, Ridgecrest, CA 93555',''),(4110,1,1053,'6','Rudolph Yocum',''),(4111,1,1053,'2','05.47.88.99.17',''),(4112,1,1053,'3','rudolph.yocum@gmail.com',''),(4113,1,1053,'4','Not getting juiceelectrical.co.nz indexed or ranked any longer?\r\n\r\nGoogles been fighting with us for over 12 months now.\r\n\r\nThat\'s how long it\'s taken us to come up with this solution.\r\n\r\nNot only will RSI get you indexed, it provides stealth backlinks that are incredibly powerful.\r\n\r\nUsed Correctly (Training supplied) This new technology trains the G000Gle Algo about what your site is about.\r\n\r\nOr more specifically, what we want the Algo to think this site is about. Using our exclusive Anchor Text Technology only found in this software.\r\n\r\nSee how it works here\r\n\r\nhttps://bit.ly/RankFastInGoogleWithRsiSEO\r\n\r\n\r\nWelcome To The Really Simple Indexing\r\nBased on our new RSS technology.\r\n\r\nIn conjunction with Blogger, Tumblr, Google Webmaster tools.\r\n\r\nA bunch of syndicated WordPress blogs which are each connected via RSS feeds to 100\'s of external blogger blogs for the win.\r\n\r\nTutorial here\r\n\r\nhttps://bit.ly/RankFastInGoogleWithRsiSEO\r\n\r\n\r\nIt\'s simple.\r\nFire up RSI\r\n\r\n1 - Enter your related spun article content for context.\r\n\r\n2 - Enter your google accounts.\r\n\r\n3 - Enter your keyword phrases.\r\n\r\n4 - Enter your links and spinable anchor texts.\r\n\r\n5 - Press go. That\'s it.',''),(4114,1,1054,'6','Michael Sinclair',''),(4115,1,1054,'2','40-23-81-79',''),(4116,1,1054,'3','msinclair.hivemailers@gmail.com',''),(4117,1,1054,'4','Hello,\r\n \r\nI 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.\r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n- We make changes to the list and content until we get results.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!!!! We will send one hundred thousand emails for just $48 \r\n \r\nBook a 10 min call with me now: https://bit.ly/hive-48-special\r\n\r\nNOTE: 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.\r\n\r\nThis offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hive-48-special\r\n\r\nSincerely,\r\nMichael',''),(4118,1,1055,'6','Eric Jones',''),(4119,1,1055,'2','555-555-1212',''),(4120,1,1055,'3','ericjonesmyemail@gmail.com',''),(4121,1,1055,'4','Hi\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(4122,1,1056,'6','Michael Jones',''),(4123,1,1056,'2','0699 545 72 57',''),(4124,1,1056,'3','carron.luca@gmail.com',''),(4125,1,1056,'4','Hey there,\r\n\r\nNo more prescriptions, just quiet sleep! EPAP Mask: Your effortless answer to snoring and sleep apnea.\r\n\r\nClick on https://sleepl.ink/sleep-easy to sleep the night away.\r\n\r\n\r\nBest regards,\r\n\r\n Charles Smith \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4126,1,1057,'6','Azucena',''),(4127,1,1057,'2','078 6352 7489',''),(4128,1,1057,'3','azucenalugo@foxmail.com',''),(4129,1,1057,'4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.co\r\n\r\nThank You,\r\n\r\nAzucena\r\nContact - Juice Electrical',''),(4130,1,1058,'6','Michael Smith',''),(4131,1,1058,'2','0699 981 74 73',''),(4132,1,1058,'3','alpert.fausto@yahoo.com',''),(4133,1,1058,'4','I will increase domain rating to 90+ for free\r\n\r\n\r\nLink to order : https://linktr.ee/businessolutionz',''),(4134,1,1059,'6','Emily Johnson',''),(4135,1,1059,'2','(81) 2204-2864',''),(4136,1,1059,'3','demaistre.byron@gmail.com',''),(4137,1,1059,'4','I will definitely rank your website in 1st page on google for free..\r\n\r\nLink to order : https://linktr.ee/businessolutionz',''),(4138,1,1060,'6','David Taylor',''),(4139,1,1060,'2','(84) 6575-6394',''),(4140,1,1060,'3','leist.mari@googlemail.com',''),(4141,1,1060,'4','I will do white hat contextual link building website high quality SEO backlinks for 20$\r\n\r\nLink : https://linktr.ee/businessolutionz',''),(4142,1,1061,'6','Eric Jones',''),(4143,1,1061,'2','555-555-1212',''),(4144,1,1061,'3','ericjonesmyemail@gmail.com',''),(4145,1,1061,'4','Hi juiceelectrical.co.nz Owner. my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationc 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://bit.ly/leadgenerationc to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c',''),(4146,1,1062,'6','Monarch Web',''),(4147,1,1062,'2','1201201200',''),(4148,1,1062,'3','email@ontimeworkeres.com',''),(4149,1,1062,'4','Hi team juiceelectrical.co.nz this is Monarch from ontimeworkeres,\r\n\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I\'ve forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your site, though, I noticed some mistakes that you\'ve made re: search engine optimization (SEO) which may be leading to a decline in your organic SEO results.\r\n\r\nWould you like to fix it so that you can get maximum exposure/presence on Google, Bing, Yahoo and web traffic to your website?\r\n\r\nIf this is something you are interested in, then allow me to send you a No Obligation Audit Report for your review. We will fix those errors with no extra cost if you choose any one of our monthly marketing plans.\r\n\r\nHave a lovely day!\r\nMonarch [Digital Marketing Expert]',''),(4150,1,1063,'6','Richard Davis',''),(4151,1,1063,'2','31-42-54-41',''),(4152,1,1063,'3','edgardo.demaistre@gmail.com',''),(4153,1,1063,'4','Hey there,\r\n\r\nNo more prescriptions, just quiet sleep! EPAP Mask: Your effortless answer to snoring and sleep apnea.\r\n\r\nClick on https://sleepl.ink/sleep-easy to sleep the night away.\r\n\r\n\r\nBest regards,\r\n\r\n Joseph Williams \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4154,1,1064,'6','David Taylor',''),(4155,1,1064,'2','01.95.88.40.14',''),(4156,1,1064,'3','giordano.sadye@gmail.com',''),(4157,1,1064,'4','verified fiverr seo service from 5$..\r\n\r\nI will build 500 high authority dofollow seo backlinks for google top ranking for 5$ : https://tinyurl.com/a77h723f\r\n\r\nI will write 4 posts of 500 words or 2 blogs of 1000 words SEO optimized for 10$ : https://tinyurl.com/29um728t\r\n\r\nI will embed your google map in 3000 web20 high da blogs best for local SEO for 10$ : https://tinyurl.com/kbvte8u3\r\n\r\nI will do white hat contextual link building website high quality SEO backlinks fro 30$ : https://tinyurl.com/yny9tzsz\r\n\r\nI will catapult your google rankings with my seo authority links for 20$ : https://tinyurl.com/mr2mxn7w\r\n\r\nI will improve SEO positioning with permanent google stacks stacking for 100$ : https://tinyurl.com/2p8hj9f3\r\n\r\nI will offer SEO backlinks contextual via pro link building service for 100$ : https://tinyurl.com/3ber9z7k\r\n\r\nI will provide high da backlinks dofollow via expert SEO guest post for 100$ : https://tinyurl.com/nbbctsxy\r\n\r\nI will write an SEO landing page as your copywriter for 100$ : https://tinyurl.com/363ydkfp\r\n\r\nPS : I helped 1500+ website to rank 1st page on google with these service. They will do do heavy lifting for you...\r\n\r\n\r\nfor free email marketing service : https://linktr.ee/businessolutionz',''),(4158,1,1065,'6','David Taylor',''),(4159,1,1065,'2','661-589-8039',''),(4160,1,1065,'3','leopoldo.riley58@gmail.com',''),(4161,1,1065,'4','fiverr verified social media marketing service from 30$\r\n\r\nI will be your social media marketing manager for 200$ : https://tinyurl.com/v63fw9db\r\n\r\nI will be your social media marketing manager and content creator for 40$ : https://tinyurl.com/y4w8wewc\r\n\r\nI will be your social media marketing manager and content creator for 20$ : https://tinyurl.com/5ame83px\r\n\r\nI will be help your develop your social media marketing ,SEO expert for 20$ : https://tinyurl.com/myeeyjmf\r\n\r\nI will be your social media marketing manager and content creator for 20$ : https://tinyurl.com/b8myzshx\r\n\r\nfor free email marketing service : https://linktr.ee/businessolutionz',''),(4162,1,1066,'6','Kevin Velasco',''),(4163,1,1066,'2','02.26.52.22.00',''),(4164,1,1066,'3','velasco.kevin@gmail.com',''),(4165,1,1066,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(4166,1,1067,'6','Lee Stein',''),(4167,1,1067,'2','321-300-5767',''),(4168,1,1067,'3','lee@steinerseo.net',''),(4169,1,1067,'4','I analyzed your website and personally made you a report explaining why your competitors are outranking you on Google. Are you the right person to send the report to?',''),(4170,1,1068,'6','William Wilson',''),(4171,1,1068,'2','04641 34 68 85',''),(4172,1,1068,'3','helmore.mari@gmail.com',''),(4173,1,1068,'4','Hello There,\r\n\r\nSleep snug without a snore. The EPAP mask is your pocket-friendly portal to peaceful nights.\r\n\r\nGo to. https://sleepl.ink/sleep-easy to sleep the night away\r\n\r\n\r\nBest wishes,\r\n\r\n Joseph Smith \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4174,1,1069,'6','Felisha Hanger',''),(4175,1,1069,'2','67 195 91 06',''),(4176,1,1069,'3','hanger.felisha@gmail.com',''),(4177,1,1069,'4','TimeSuite is the most advanced Construction and Project ERP ever produced.\r\n\r\nAdvanced because it’s simplistic, comprehensive and dynamic. The system conforms to your needs.\r\n\r\nAdvanced because it’s a single system (no modules).\r\n\r\nWeb, desktop and mobile interfaces to a single database.\r\n\r\nProject Management, Accounting, Estimating, Scheduling, CRM, Task Management, Resource Management, On-Screen Take Off, Form Creation, Property Management, RFQs/Bid Packages and more.\r\n\r\nFully automated percentage of completion accounting with a full job schedule that ties to the income statement.\r\n\r\nTimeSuite is new generation.\r\n\r\nLearn more at TimeSuite.com.',''),(4178,1,1070,'6','Mike Howard',''),(4179,1,1070,'2','89322697114',''),(4180,1,1070,'3','mikeinquiff@gmail.com',''),(4181,1,1070,'4','Greetings \r\n \r\nThis is Mike Howard\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Howard\r\n \r\nmike@strictlydigital.net',''),(4182,1,1070,'5','Google',''),(4183,1,1071,'6','Katherina Lloyd',''),(4184,1,1071,'2','071 403 53 73',''),(4185,1,1071,'3','lloyd.katherina@gmail.com',''),(4186,1,1071,'4','To the juiceelectrical.co.nz Owner.,\r\n\r\nIntroducing AdCreative.ai - the premier AI-powered advertising platform that\'s taking the industry by storm!\r\n\r\nAs a Global Partner with Google and a Premier Partner, we have exclusive access to the latest tools and insights to help your business succeed. And now, we\'re offering new users $500 in free Google Ad Credits to get started with advertising - no upfront costs, no hidden fees.\r\n\r\nWith AdCreative.ai, you\'ll enjoy advanced AI algorithms that optimize your campaigns for maximum impact, as well as seamless integration with Google Ads for unparalleled performance.\r\n\r\nDon\'t wait - sign up for our free trial today a https://free-trial.adcreative.ai/seo2650 and experience the power of AdCreative.ai for yourself!',''),(4187,1,1072,'6','Eric Jones',''),(4188,1,1072,'2','555-555-1212',''),(4189,1,1072,'3','ericjonesmyemail@gmail.com',''),(4190,1,1072,'4','Hello juiceelectrical.co.nz Admin. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationd to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://bit.ly/leadgenerationd to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/leadgenerationd to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c',''),(4191,1,1073,'6','Freda Lafferty',''),(4192,1,1073,'2','0923-7003702',''),(4193,1,1073,'3','lafferty.freda@hotmail.com',''),(4194,1,1073,'4','URl : https://juiceelectrical.co.nz/contact/\r\n\r\nDomain Authority : 12 (need 60+) (Increase DA on fiverr : https://tinyurl.com/bdz6c5xn )\r\n\r\nbacklink : 132+ but no high DA backlink ( Get High DA Backlink on fiverr : https://tinyurl.com/yyw4ak7t )\r\n\r\nOn page seo : poor ( Increase On page seo on fiverr : https://tinyurl.com/5yh5d5wn )\r\n\r\nOff page seo : poor ( Increase Off Page seo on fiverr : https://tinyurl.com/bdz4ar7d )\r\n\r\nMetadescription : best\r\n\r\nblog post : low ( need more than 300 ) ( get seo article on fiverr : https://tinyurl.com/y8ucxdps )\r\n\r\nH1 Tag : available, not available on some post kindly check\r\n\r\nH2 Tag : available\r\n\r\nKeyword Consistency : Your page\'s main keywords are not distributed well across the important HTML tags.\r\n\r\nOptimize Images : All of the images on your page appear to be optimized.\r\n\r\nJavaScript Errors : Your page is not reporting any JavaScript errors.\r\n\r\nSSL Enabled : Your website has SSL enabled.\r\n\r\nemail marketing : not available ( Get email marketing software for free : https://linktr.ee/businessolutionz )\r\n\r\nNeed help from the above audit kindly messege me here : info@worldogspot.com\r\n\r\nThe above links are fiverr verified.. order your service according your need...\r\n\r\nAbove are my affiliate link I will get some earning..',''),(4195,1,1074,'6','Uzair Wynne',''),(4196,1,1074,'2','0699 758 44 49',''),(4197,1,1074,'3','evie.wynne@gmail.com',''),(4198,1,1074,'4','The Instagram social media platform has seen explosive growth over the last two years. It now has 500\r\nmillion users that are desperate for fun and exciting content and this is a massive opportunity for you\r\nto promote your business.\r\n\r\nI can help you to grow and promote your Instagram account organically\r\nvisit my 5 star profile and join over 3000 happy customer\r\n\r\nClick here to check out ===== > https://tinyurl.com/yc6rwxsw\r\n\r\nSee you there!\r\nRegards\r\nBrian And Dee',''),(4199,1,1075,'6','Allie Mansour',''),(4200,1,1075,'3','allie.mansour@googlemail.com',''),(4201,1,1075,'4','Dear juiceelectrical.co.nz Owner,\r\n\r\nAre you struggling to improve your online presence and reach your target audience? Look no further than my expert SEO services at https://fiverrseoer.com/. With over 8 years of experience and a focus on competitor research, I can create a personalized SEO strategy that caters to your unique business needs.\r\n\r\nAt https://fiverrseoer.com/, we offer a range of affordable SEO services, including website analysis, keyword research, on-page optimization, link building, and ongoing monitoring and reporting. Whether you’re an enterprise, mid-level enterprise, SMB, or a small website, our services can help you stay ahead of the competition and dominate your industry.\r\n\r\nBy partnering with us, you can rest assured that your website is in good hands. We\'re located in the heart of Silicon Valley and we pride ourselves on staying up-to-date with the latest SEO trends and techniques.\r\n\r\nVisit us at https://fiverrseoer.com/ to learn more about our services and how we can help your business grow.\r\n\r\nBest regards,\r\n\r\nSam',''),(4202,1,1076,'6','Modesto Lovelace',''),(4203,1,1076,'2','032 720 43 45',''),(4204,1,1076,'3','lovelace.modesto@gmail.com',''),(4205,1,1076,'4','Dear juiceelectrical.co.nz Admin,\r\n\r\nAre you struggling to improve your online presence and reach your target audience? Look no further than my expert SEO services at https://fiverrseoer.com/. With over 8 years of experience and a focus on competitor research, I can create a personalized SEO strategy that caters to your unique business needs.\r\n\r\nAt https://fiverrseoer.com/, we offer a range of affordable SEO services, including website analysis, keyword research, on-page optimization, link building, and ongoing monitoring and reporting. Whether you’re an enterprise, mid-level enterprise, SMB, or a small website, our services can help you stay ahead of the competition and dominate your industry.\r\n\r\nBy partnering with us, you can rest assured that your website is in good hands. We\'re located in the heart of Silicon Valley and we pride ourselves on staying up-to-date with the latest SEO trends and techniques.\r\n\r\nVisit us at https://fiverrseoer.com/ to learn more about our services and how we can help your business grow.\r\n\r\nBest regards,\r\n\r\nSam',''),(4206,1,1077,'6','Inez Waite',''),(4207,1,1077,'2','07231 12 48 40',''),(4208,1,1077,'3','inez.waite@yahoo.com',''),(4209,1,1077,'4','Hi,My Name Is Eyal,Senior Developer On Startsuccessonine.com\r\n\r\nAre you ready to step into the future of lead generation?Get More Clients? Make More Money?\r\n\r\nAnd All Of Auto? \r\n\r\nImagine a tool that not only brings you more leads but also saves your valuable time and offers 24/7 customer support.\r\n\r\nThat\'s precisely what our ChatGPT chatbot can do for your business.\r\n\r\nUnlock the Future of Lead Generation:\r\n\r\nMore Leads: Our ChatGPT chatbot is a lead generation powerhouse. Engage potential customers, answer their queries, and watch your leads soar.\r\n\r\nSave Time: Say goodbye to repetitive support tasks. Our chatbot takes care of the routine, leaving you with more time to focus on growth.\r\n\r\n24/7 Auto Support: Your customers never sleep, and neither does our chatbot. Provide round-the-clock support for unbeatable customer satisfaction.\r\n\r\nInstalling ChatGPT on your website is as easy as pie. It\'s the key to unlocking a flood of new leads, clients, and revenue for your business.\r\n\r\nReady to learn more?\r\n\r\n For additional details and real-life success stories, drop us an email at info@startsuccessonline.com.\r\n\r\nDon\'t miss this opportunity to transform your business. \r\n\r\nWaiting For Your Email For More Details.\r\n\r\nBest regards,\r\n\r\nEyal Levi\r\n\r\nStartsuccessonline.com',''),(4210,1,1078,'6','Nancee Ogilvie',''),(4211,1,1078,'2','964 01 476',''),(4212,1,1078,'3','ogilvie.nancee@msn.com',''),(4213,1,1078,'4','Quick question to ask you...\r\n \r\nAre you aware that in 2023, email marketing still works? \r\nThe fact that you are reading these lines is proof of that.\r\n\r\nEmail marketing is underrated, and yet it works so well. \r\nAll you have to do is find some emails, send a message and cash in.\r\n\r\nFor example, to find emails you can use this service: https://garymarketing.com/go/scrap-gmap\r\n\r\nIt extracts emails, phone numbers, and lots of other information from Google Map listings.\r\n\r\nOf course, there are plenty of other ways to get in touch with your ideal customers.\r\nContact me on Skype and let\'s discuss what will work for your product/service. \r\n- My Skype ID: live:.cid.6b79b1d5a11a2ec7\r\n- My Blog : garymarketing.com\r\n\r\n\r\nRegards,\r\nGary & Ophélie\r\n\r\n\r\n\r\n------ \r\n\r\nJ\'ai une petite question à vous poser...\r\n\r\nSavez-vous qu\'en 2023, l\'email marketing fonctionne toujours très bien ? \r\nLa preuve, vous lisez ces lignes.\r\n\r\nL\'email marketing est clairement sous-couté,\r\nIl suffit de trouver les coordonnées de vos clients idéaux, d\'entrer en contact, et d\'encaisser.\r\n\r\nPour trouver les coordonnées d\'entreprise, vous pouvez par exemple utiliser ce service : scrapmybusiness.com\r\nIl 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.\r\n\r\nBien sur il y\'a plein d\'autre solutions pour entrer en contact avec vos clients idéaux\r\n\r\nAjouter moi sur Skype et discutons de ce qui conviendrait le plus pour promouvoir votre produit/service.\r\n- Identifiant Skype: live:.cid.83c9da999a4f9f\r\n- Mon Blog : http://garymarketing.com\r\n\r\nCordialement,\r\nOphélie et Gary.',''),(4214,1,1079,'6','Ute Steed',''),(4215,1,1079,'2','06-30023554',''),(4216,1,1079,'3','steed.ute99@outlook.com',''),(4217,1,1079,'4','To the juiceelectrical.co.nz Webmaster!\r\n\r\nThis is Ute and I discovered juiceelectrical.co.nz a moment ago. \r\n\r\nAppears great… but now what?\r\n\r\nBy that I mean, when someone such as me locates 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?\r\n\r\nFrankly, most business websites fall 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.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really SIMPLE for every visitor who arrives to get a personal phone call from they hit your site…\r\n \r\nYou can –\r\n \r\nWeb Visitors Into Leads is a software widget that’s functions 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 chat to that lead while they’re actually looking over your site.\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to test a Live Demo with Web Conversion now to see exactly how it works.\r\n\r\nYou’ll be astonished - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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 establish a relationship.\r\n\r\nQuite sweet – AND effective.\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to learn what Web Conversion can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nUte\r\nPS: Lead Conversion offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/3LPltcD to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nMerely a brief notification - the names and email employed in this note, Ute and Steed, are substitutes and not really real contact information. We value openness and wished to ensure you are informed! If ever you wish to communicate with the genuine individual behind this message, please go to our website, and we’ll link you with the right entity.',''),(4218,1,1080,'6','Larue Penney',''),(4219,1,1080,'2','409-748-6496',''),(4220,1,1080,'3','larue.penney@yahoo.com',''),(4221,1,1080,'4','Dear juiceelectrical.co.nz Administrator,\r\n\r\nAre you struggling to improve your online presence and reach your target audience? Look no further than my expert SEO services at https://fiverrseoer.com/. With over 8 years of experience and a focus on competitor research, I can create a personalized SEO strategy that caters to your unique business needs.\r\n\r\nAt https://fiverrseoer.com/, we offer a range of affordable SEO services, including website analysis, keyword research, on-page optimization, link building, and ongoing monitoring and reporting. Whether you’re an enterprise, mid-level enterprise, SMB, or a small website, our services can help you stay ahead of the competition and dominate your industry.\r\n\r\nBy partnering with us, you can rest assured that your website is in good hands. We\'re located in the heart of Silicon Valley and we pride ourselves on staying up-to-date with the latest SEO trends and techniques.\r\n\r\nVisit us at https://fiverrseoer.com/ to learn more about our services and how we can help your business grow.\r\n\r\nBest regards,\r\n\r\nSam',''),(4222,1,1081,'6','Aisha Hulett',''),(4223,1,1081,'2','953 10 729',''),(4224,1,1081,'3','aisha.hulett@googlemail.com',''),(4225,1,1081,'4','Hello juiceelectrical.co.nz Manager.\r\n\r\nMy name’s Aisha and please, imagine this…\r\n\r\n- An individual does a search and ends up at juiceelectrical.co.nz.\r\n\r\n- They stay for a moment to check it out. “I’m intrigued… but… maybe…”\r\n\r\n- And then they click the back button and view the other search results alternatively. \r\n\r\n- Ultimately – you got an eyeball, but zilch to show for it.\r\n\r\n- Off they go.\r\n\r\nIt’s not really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nVisitor Engagement Widget is a software widget that’s operates on your site, ready to capture any visitor’s Name, Email address, and Phone Number. It allows you know instantly – allowing you to call that lead while they’re actually browsing your site.\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to try out a Live Demo with Web Visitors Into Leads now to see precisely how it works.\r\n\r\nEvery second counts 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!\r\n\r\nMoreover, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to uncover what Lead Conversion Tool can do for your business.\r\n\r\nYou might be converting up to 100X more leads right now!\r\n\r\nAisha\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling.\r\nYou have customers eager to talk with you right now… don’t keep them waiting.\r\nCLICK HERE https://bit.ly/3LPltcD to test Web Visitors Into Leads now.\r\n\r\nIf you\'d choose to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nSimply a rapid note - the identities and email address utilized in this communication, Aisha and Hulett, are placeholders and not actually real contact details. We esteem openness and wished to make sure you’re aware! In case you aspire to connect with the genuine individual responsible for this communication, kindly check out our site, and we’ll link you with the proper person.',''),(4226,1,1082,'6','Chic Templeton',''),(4227,1,1082,'2','033770350',''),(4228,1,1082,'3','chic@pinnacleandco.nz',''),(4229,1,1082,'4','Hi, this is a test on your contact form. Can you please reply to chic@pinnacleandco.nz to advise you have received this form? Thanks, Chic :)',''),(4230,1,1083,'6','Alex Curtis',''),(4231,1,1083,'2','3037369129',''),(4232,1,1083,'3','alexcurtis.digitalmarketer@gmail.com',''),(4233,1,1083,'4','Hello,\r\n\r\nI\'m Alex, a seasoned Content Writer/Copywriter with a track record of over 12 million words produced. I can handle all your content needs, from crafting web copy and blog posts to optimizing them with relevant SEO keywords and we can create content tailored to your desired tone and writing style.\r\n\r\nPay after we\'ve delivered the work!\r\n\r\nIf this interests you, please reach out via email at alexcurtis.digitalmarketer@gmail.com.',''),(4234,1,1084,'6','Tobiaslilla',''),(4235,1,1084,'2','83517813386',''),(4236,1,1084,'3','no.reply.ThijsKristiansen@gmail.com',''),(4237,1,1084,'4','Hey there! juiceelectrical.co.nz \r\n \r\nDid you know that it is possible to send business offer lawfully? We provide a legitimate way of sending business offers through feedback forms. These kinds of feedback forms can be seen on a variety of websites. \r\nWhen such appeals are sent, no personal information is utilized, and messages are delivered to forms specifically created to securely receive messages and appeals. Feedback Forms\' messages are thought of as significant thus avoiding the categorization of them as spam. \r\nWe invіte уou to test our service without рayіng anуthіng! \r\nWe are able to dispatch up to 50,000 messages on your behalf. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis message was automatically generated. \r\nPlease use the contact details below to get in touch with us. \r\n \r\nContact us. \r\nTelegram - https://t.me/FeedbackFormEU \r\nSkype live:feedbackform2019 \r\nWhatsApp +375259112693 \r\nWhatsApp https://wa.me/+375259112693 \r\n \r\nWe only use chat for communication.',''),(4238,1,1084,'5','Google',''),(4239,1,1085,'6','Maple Parent',''),(4240,1,1085,'2','843-320-4729',''),(4241,1,1085,'3','jenniferrossharmer@gmail.com',''),(4242,1,1085,'4','Hey,\r\n\r\nWhile browsing, I stumbled upon your website and noticed a potential issue that might be affecting your user experience. I thought it might be of interest to you.\r\n\r\nTo help out, I\'ve created a quick report detailing what I found. You can access it for free at https://businessanalyzer.org/main . I hope this provides some valuable insights for you!\r\n\r\nBest regards,',''),(4243,1,1086,'6','Rona Pebula',''),(4244,1,1086,'2','0272293818',''),(4245,1,1086,'3','rona@evervueclient.com',''),(4246,1,1086,'4','Dear Juice Electrical,\r\n\r\nI am Rona from Evervue. We believe our Grand Mirrors collection could be the game-changer for your next project:\r\n\r\n\r\n1. World\'s Thinnest Illuminated Mirror: A remarkable depth of 1 cm.\r\n\r\n2. Custom Options: Tailor size, shape, frame, lighting, and more to your needs.\r\n\r\n3. Uniformly Illuminated: Enhances the mirror\'s performance but also maintains exceptional energy efficiency.\r\n\r\n4. Eco-Friendly: High-quality designs with minimal environmental impact.\r\n\r\nExplore the full Grand Mirrors collection:https://grandmirrors.com/au/\r\n\r\nFor questions or a personalized consultation, email us at sales@evervue.com.au. We would love to see how our mirrors can refine and elevate your design spaces.\r\n\r\nIf you are not interested in receiving further communications from us, please reply to this email with \"Not Interested\". We deeply respect your preferences and will ensure that you will not receive any more emails from us in the future.',''),(4247,1,1087,'6','Julian Melson',''),(4248,1,1087,'2','089 36 59 00',''),(4249,1,1087,'3','julian.melson@yahoo.com',''),(4250,1,1087,'4','I trust this message finds you in good health. We recognize the challenges and time investment often associated with the quest for the perfect job. That\'s precisely why we\'re thrilled to introduce you to our affiliate link, meticulously designed to streamline your job search, making it both more efficient and rewarding.\r\n\r\nHere at Social Sale rep, we are firmly dedicated to aiding individuals like yourself in discovering career opportunities that harmonize with your unique skills, ambitions, and values. Through our affiliate link, you\'ll unlock access to a vast network of job listings, gain valuable insights into your industry, and access resources that are bound to empower you to advance in your professional journey.\r\n\r\nTo embark on your journey toward securing your dream job, simply click on the affiliate link below:\r\n\r\nhttps://tinyurl.com/DreamJob4You\r\n\r\nWe eagerly anticipate being a part of your path to professional success. If you have any queries or require assistance at any stage, please do not hesitate to get in touch with us. Your triumph is our utmost priority.',''),(4251,1,1088,'6','Michael Sinclair',''),(4252,1,1088,'3','msinclair.hivemailers@gmail.com',''),(4253,1,1088,'4','Hello,\r\n \r\nI 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.\r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n- We make changes to the list and content until we get results.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!!!! We will send one hundred thousand emails for just $48 \r\n \r\nBook a 10 min call with me now: https://bit.ly/hive-48-special\r\n\r\nNOTE: 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.\r\n\r\nThis offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hive-48-special\r\n\r\nSincerely,\r\nMichael',''),(4254,1,1089,'6','Paul Grayson',''),(4255,1,1089,'2','0274266121',''),(4256,1,1089,'3','paul.grayson@icloud.com',''),(4257,1,1089,'4','Hi there, I\'m just after a quote to install an outdoor plug/outlet suitable to run a portable spa. You will need to drill through a cider block wall, but there is a current outlet on the other side that I am hoping you can tap into. I\'m flexible with time so I can work in with you.',''),(4258,1,1089,'5','Google',''),(4259,1,1090,'6','Felicity Pluck',''),(4260,1,1090,'2','0273111055',''),(4261,1,1090,'3','felicitypluck@yahoo.com',''),(4262,1,1090,'4','Hi Greg and Helen\r\nJust wanting to know if I could get you over to move our spa connection. Let me know when you can come around. I didn\'t want to ring in the weekend, but hoping it could be done early this week coming if possible. \r\nHear from you soon. \r\nFelicity',''),(4263,1,1091,'6','Garry Franz',''),(4264,1,1091,'2','51 559 38 63',''),(4265,1,1091,'3','franz.garry@gmail.com',''),(4266,1,1091,'4','To the juiceelectrical.co.nz Admin.\r\n\r\nThis is Garry and, unlike many emails you probably get, I wanted to instead provide you with a word of praise – Well done!\r\n\r\nWhy?\r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely is remarkable.\r\n\r\nIt is clear you’ve taken building a website to heart and invested a real commitment of time and resources into developing it premium.\r\n\r\nHowever, there is, however… to be more precise, a question…\r\n\r\nSo, when someone like me finds your site – possibly on top of the search results (good job BTW) or just through a random link, how can you tell?\r\n\r\nMore crucially, how can you make a connection with that person?\r\n\r\nData indicate that 7 out of 10 visitors don’t stay – they’re there one second and then vanished.\r\n\r\nHere is a way to create INSTANT engagement that you may not have known about…\r\n\r\nWeb Visitors Into Leads is a tool that’s works on your site, prepared to grab every visitor’s Name, Email address and Phone Number. It allows you know IMMEDIATELY that they are interested – so that you can speak to that lead as they’re actually looking at juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://bit.ly/LeadGena to try out a Live Demo with Web Visitors Into Leads today to see exactly how it works.\r\n\r\nIt can be a revolutionary change for your business – and it turns even better… after you’ve collected their phone number, with our new SMS Text With Lead function, you can automatically start a text (SMS) conversation – instantly (& there’s really a 100X difference between contacting someone within just 5 minutes compared to 30 minutes.)\r\n\r\nAdditionally then, even if you don’t seal a deal right away, you can associate later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I have just outlined is simple, easy, and effective.\r\n\r\nCLICK HERE https://bit.ly/LeadGena to discover what Web Visitors Into Leads can provide for your business.\r\n\r\nYou can be converting up to 100X more leads as we speak!\r\n\r\nGarry\r\nPS: Web Visitors Into Leads gives a FREE 14 days trial – and it includes International Long Distance Calling. \r\nYou have customers eager to speak with you at this moment… don’t leave them waiting. \r\nCLICK HERE https://bit.ly/LeadGena to test Web Visitors Into Leads today.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nOnly a quick note - the names and email used here, Garry and Franz, are simulations and not actual contact details. We respect transparency and wish to make you’re aware! If you desire to get in touch with the actual person behind this message, please visit our website, and we’ll connect you with the appropriate individual.}',''),(4267,1,1092,'6','Wilmer Teeple',''),(4268,1,1092,'2','0211 20 73 78',''),(4269,1,1092,'3','wilmer.teeple@gmail.com',''),(4270,1,1092,'4','Hello to the juiceelectrical.co.nz Administrator. it\'s Eric and I discovered juiceelectrical.co.nz some moments ago.\r\n\r\nAppears great… now what?\r\n\r\nI mean, if someone like myself discovers your website – either through a Search or simply bouncing around – what happens next? Do you getting a lot of leads from your site, or enough to make you happy?\r\n\r\nFrankly, most business websites fall a bit short when generating producing paying customers. Research indicate that 70% of a site’s visitors leave and are gone forever only a moment.\r\n\r\nHere’s an idea…\r\n\r\nWhat about making it really EASY for each visitor who comes to get a personal phone call from you as soon as they hit your site…\r\n\r\nYou can –\r\n\r\nWeb Visitors Into Leads is a tool that’s functions on your site, set to collect any visitor’s Name, Email address and Phone Number. It signals you the minute they let you know they’re interested – so that you can speak to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://bit.ly/LeadGena to experience a Live Demo with Web Visitors Into Leads today to realize exactly how it works.\r\n\r\nYou will be amazed - the difference between connecting with someone within just 5 minutes versus a half-hour or more later could enhance your results 100-fold.\r\n\r\nIt 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) discussion.\r\n\r\nHence, even if you don’t finalize a deal immediately, you can stay connected with text messages for fresh promotions, content links, or even just “how you doing?” notes to establish a relationship.\r\n\r\nRather sweet – AND effective.\r\n\r\nCLICK HERE https://bit.ly/LeadGena to learn what Web Visitors Into Leads can offer for your business.\r\n\r\nYou might be turning up to 100X more leads right now!\r\n\r\nEric\r\nPS: Web Visitors Into Leads gives a FREE 14 days trial – and it even features International Long Distance Calls. \r\nYou have customers eager to talk with you right now… don’t leave them waiting. \r\nCLICK HERE https://bit.ly/LeadGena to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nOnly a short note - the name and email used here, Wilmer and Teeple, are placeholders and not real contact information. We appreciate transparency and wish to ensure you’re aware! If you wish to reach out with the genuine person behind this message, kindly visit our website, and we’ll associate you with the right individual.}',''),(4271,1,1093,'6','Elisa Sewell',''),(4272,1,1093,'2','870-410-6412',''),(4273,1,1093,'3','sewell.elisa@gmail.com',''),(4274,1,1093,'4','Hi juiceelectrical.co.nz Manager!\r\n\r\nMy name is Elisa and, contrary to a lot of emails you may get, I wanted to instead provide you with a word of congratulations – Bravo!\r\n\r\nWhat for?\r\n\r\nA portion of my job is to inspect websites and the work you’ve done with juiceelectrical.co.nz certainly stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nNonetheless, there is, however, a question… more precisely, a question…\r\n\r\nSo, when someone like me discovers your site – possibly at the top of the search results (great job by the way) or just through a random link, how do you find out?\r\n\r\nFurthermore, how do you make a bond with that person?\r\n\r\nStudies indicate that 7 out of 10 visitors leave – they’re there one second and then gone with the wind.\r\n\r\nI have a way to create PROMPT engagement that you might not have known about…\r\n\r\nWeb 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 INSTANTLY that they’re interested – so that you can speak to that lead while they’re actually browsing juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to test a Live Demo with Instant Engagement Tool now to see specifically how it works.\r\n\r\nIt could be a significant improvement 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 instantly start a text (SMS) conversation – instantly (and there’s really a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal immediately, you can reconnect later on with text messages for new offers, content links, even just follow-up notes to forge a relationship.\r\n\r\nEverything I’ve just described is easy, convenient, and productive.\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to find out what Web Visitors Into Leads can do for your business.\r\n\r\nYou might be converting up to 100X more leads today!\r\n\r\nElisa\r\nPS: Lead Capture offers a FREE 14 days trial – and it even includes International Long Distance Calling.\r\nYou have customers eager to talk with you at this moment… don’t keep them waiting.\r\nCLICK HERE https://bit.ly/3LPltcD to try Instant Engagement Tool now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nJust a swift notification - the names and email address used in this note, Elisa and Sewell, are stand-ins and not really real contact details. We value transparency and desired to confirm you are aware of this! Should you desire to communicate with the true individual responsible for this memo, kindly visit our website, and we’ll link you with the proper person.',''),(4275,1,1094,'6','Teri Grimm',''),(4276,1,1094,'2','661-459-4541',''),(4277,1,1094,'3','teri.grimm@googlemail.com',''),(4278,1,1094,'4','Get Codie Sanchez: 7 Figure Newsletter Course\r\n\r\nA Zero to 60 Guide to your next million dollar platform.\r\n\r\n- 8 Step by Step Modules\r\n- 40+ Detailed Chapters\r\n- 5+ Videos & Hours of Tailored Content\r\n- Interviews from Newsletter Creators of 20k to 100k+\r\n- Business Models, Financial Models, Tech Stack, Scripts, Templates & Guides\r\n- Our Internal Memos, Notes on What Worked and Didn’t & Analytics Pages\r\n\r\nDownload it before they delete it here:\r\n\r\nhttps://bit.ly/marketingseoinvestmentcourses',''),(4279,1,1095,'6','Maynard Gainey',''),(4280,1,1095,'2','0496 57 36 45',''),(4281,1,1095,'3','maynard.gainey16@outlook.com',''),(4282,1,1095,'4','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic. Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting businesses on Google. Can I share a testimonial \r\nfrom one of our clients with you? I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(4283,1,1096,'6','Mike Dowman',''),(4284,1,1096,'2','84135383477',''),(4285,1,1096,'3','mikeHourrirm@gmail.com',''),(4286,1,1096,'4','If you are looking to rank your local business on Google Maps in a specific area, this service is for you. \r\n \r\nGoogle Map Stacking is a highly effective technique for ranking your GMB within a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Dowman\r\n \r\n \r\nPS: Want a comprehensive local plan that covers everything? \r\nhttps://www.speed-seo.net/product/local-seo-bundle/',''),(4287,1,1096,'5','Google',''),(4288,1,1097,'6','Clint Searcy',''),(4289,1,1097,'2','216-644-0763',''),(4290,1,1097,'3','clint.searcy@assist-hub.com',''),(4291,1,1097,'4','Hello There\r\n\r\nIn today\'s hyper-connected world, the secret isn\'t just hard work — it\'s leveraging the right tools. \r\nI\'ve curated seven game-changers that are turning ordinary people into legends in their fields and daily lives.\r\n\r\nWhether it\'s self-improvement, entertainment, or health, let\'s elevate together:\r\n\r\n\r\nWant to impress with multiple languages? – Ling App turns you into the life of the party. -> https://assist-hub.com/ling-app\r\n\r\n\r\nLost in the maze of diets? – Mayo Clinic Diet is the gold standard, trusted by thousands for proven results. -> https://assist-hub.com/mayo-clinic-diet\r\n\r\n\r\nSnoring disrupting your love life? – Dive together into peaceful nights using Good Morning Snore Solution®. -> https://assist-hub.com/good-morning-snore-solution\r\n\r\n\r\nWant peak fitness without the time peak? Dive into 10X Fitness by Mindvalley\'s transformative sessions. -> https://assist-hub.com/10x-fitness\r\n\r\n\r\nDreaming of epic tales but no time to read? – Audible whispers bestsellers into your ears, anytime, anywhere. -> https://assist-hub.com/audible\r\n\r\n\r\nEver dreamt of mastering new skills? – From arts to tech, Skillshare offers a masterclass in every niche, taught by the best in the field. -> https://assist-hub.com/skillshare\r\n\r\n\r\nTired of the same old shows? – Amazon Prime Video curates cinematic masterpieces just for you. -> https://assist-hub.com/amazon-prime-video\r\n\r\n\r\nWishing you a journey of discovery and growth with these tools. Elevate every moment!\r\n\r\nWarm regards,\r\nThe Assist-Hub Team',''),(4292,1,1098,'6','Eric Jones',''),(4293,1,1098,'2','555-555-1212',''),(4294,1,1098,'3','ericjonesmyemail@gmail.com',''),(4295,1,1098,'4','To the juiceelectrical.co.nz Webmaster. I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://bit.ly/leadgenerationc to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://bit.ly/leadgenerationc to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c',''),(4296,1,1099,'6','Cody Strickland',''),(4297,1,1099,'2','0337 3597079',''),(4298,1,1099,'3','dfysuite@solveques.xyz',''),(4299,1,1099,'4','I SUCK at SEO… \r\nI REALLY suck at SEO, but… \r\nI NEVER really cared about SEO until now.. \r\nDo you SUCK at SEO as much as I do?\r\n\r\n—\r\n\r\nI have to be brutally honest today.. I suck at SEO lol – there I said it.\r\n\r\nAlthough I understand how POWERFUL it is to get free traffic from Google, I just never had any interest to put it to use for my business..\r\n\r\nEspecially when it comes to the ONGOING syndication and ‘backlinking’ portion of it.\r\n\r\nThat’s what REALLY turned me off about it.\r\n\r\nAlways having to be constantly syndicating my content all over the web for my content to rank on the first page..\r\n\r\nIf I ever did get into SEO, that’s the FIRST thing I’d get someone to do FOR ME!\r\n\r\nThat’s why – for the FIRST TIME EVER – I’m kinda EXCITED about SEO ??\r\n\r\nA couple of genius SEO marketers have created a system that does EXACTLY that.\r\n\r\nThey’ve SIMPLIFIED the ENTIRE social syndication process so that ANYONE can tap into the power of Page 1 rankings – EVEN if they SUCK at SEO or are BRAND new to the subject. (LIKE me)\r\n\r\nAnd they have just opened the doors to their updated and GREATLY improved 5.0 version!\r\n\r\nIntroducing DFY Suite 5.0!\r\n\r\nDFY Suite will allow you to Get FREE, Targeted BUYER-Traffic In 48 Hours Or Less By Leveraging The Power Of High-Quality Social Syndication With their NEW, Done-For-YOU System!\r\n \r\nYup, you can now leverage the POWER of Page 1 Rankings Via Social Syndication for ANY location and/or ANY language with:\r\n\r\n– NO Software To Install\r\n– No Software Training To Learn\r\n– No previous SEO knowledge or experience\r\n– No Social Account Creation Needed\r\n– No Content Needed Besides their URL\r\n– No Proxies or Captchas Needed\r\n– NONE of that stuff..\r\n\r\nHeck, you don’t even need to KNOW what social syndication IS lol\r\n\r\nAll you need to do is:\r\n\r\n1. Login to the web-based portal\r\n2. Submit your Keywords and URL you want traffic for\r\n3. Hit “Submit”\r\n\r\nYup, That’s IT!\r\n\r\nFrom There their System Will Get To Work And Build You HUNDREDS of High-Quality Syndication Links To Your Content to skyrocket it to page 1 of Google!\r\n\r\nPLUS, if you’re 100% NEW to SEO, they’re also including a quick CRASH course on Keyword Research AND Content optimization that should take you no more than 20-30 minutes to go through.\r\n\r\nWith DFY Suite PLUS the Keyword Research and Content Optimization crash course, you’ll be able to start getting traffic from Google without EVER having to spend HOURS upon HOURS doing the HEAVY-LIFTING yourself.\r\n\r\nCheck out DFY Suite Here: https://www.solveques.xyz/dfysuite\r\n\r\n“But wait, did you say they’ve just opened 5.0?”\r\n\r\nYup, and with their 5.0 updates they have made their platform BETTER, FASTER and MORE powerful to Deliver you even MORE rankings, Traffic & sales.\r\n\r\nIn version 5.0 they have:\r\n\r\n– 5x’d their sites, 5x’d the authority, 5x’d the ranking power! Now instead of being able to get up to 200 different syndication links to your content, you can get up to 1,000! And the domains they’ve added are ALL packing A LOT more authority\r\n\r\n– Done for you GLOBAL Rankings. Yup, WORLDWIDE Rankings are finally HERE via their multi-language support. Yes, you read that correctly! They now cover EVERY LANGUAGE you can think of, so you can get page 1 rankings REGARDLESS of where you are in the world!\r\n\r\n– Totally revamped their server set up to now Include IP’s from ALL over the world to SUPERCHARGE their new WORLDWIDE ranking power!\r\n \r\n– Totally revamped their content generation system Which is now powered by REAL Artificial intelligence With Creaite being the engine to that! REAl A.I means QUALITY, unique content being written for EVERY campaign You submit. And we ALL know how much Google loves quality content.\r\n\r\n– and much much more… (they have a WHOLE section And video covering what’s new in 5.0 – there’s 7 MAJOR updates total)\r\n\r\nThis is EASILY their MOST powerful update To date and you can get access to it at an INSANE discount.\r\n\r\nCheck out how it works here: https://www.solveques.xyz/dfysuite\r\n\r\nThis is the GO-TO platform for DFY, page 1 rankings!\r\n\r\nCody Strickland\r\n\r\nP.S. Getting page 1 rankings has NEVER been easier.\r\n\r\nWith DFY Suite You’ll be able to:\r\n\r\n– rank your videos on page 1\r\n– rank your niche sites on page 1\r\n– rank your e-commerce sites on page 1\r\n– rank your Amazon listings\r\n– rank your CLIENT’s sites\r\n– rank ANY URL you’d like to get traffic for..\r\n\r\nIt’s really the PERFECT solution for us “lazy” seo marketers hahah\r\n\r\nAnd their 5.0 updates have REALLY taken things to the NEXT level!\r\n\r\ncheck it out here: https://www.solveques.xyz/dfysuite \r\n\r\nUNSUBSCRIBE: https://www.solveques.xyz/unsubscribe\r\n\r\nAddress: 4221 Vermont Ave, Los Angeles, CA 90037',''),(4300,1,1100,'6','Minda Mahlum',''),(4301,1,1100,'2','031 741 35 88',''),(4302,1,1100,'3','mahlum.minda@gmail.com',''),(4303,1,1100,'4','Hey. You could be losing customers every day to your competitors.\r\n\r\n \r\n\r\nPlease go to Google and write the term best (your niche) in (your area)\r\n\r\nFor example, best plumbers in Chicago\r\n\r\n \r\n\r\nPlease check if you appear in the first 3 places on Google.\r\n\r\n \r\n\r\nIf not then I want you to know that you are losing customers to your competitors every day because the top 3 places get 99% of the customers.\r\n\r\n \r\n\r\nIf you\'re interested in solving this and improving your local search ranking on Google.\r\nIt\'s actually quite affordable, and we\'ve assisted thousands of local businesses in making that happen.\r\n\r\n \r\n\r\nWe specialize in helping small local businesses to improve their Google search rankings for targeted keywords.\r\n\r\n \r\nCheck out our service in further depth to discover all of the success stories highlighted by the clients with countless 5-star reviews.\r\n\r\n \r\nhttps://bit.ly/improvelocalranking\r\n \r\n\r\nThanks for your time \r\n\r\n \r\n\r\nDanyal',''),(4304,1,1101,'6','Anna Wilson',''),(4305,1,1101,'2','1201201200',''),(4306,1,1101,'3','annawilson.mkt@gmail.com',''),(4307,1,1101,'4','Hi team juiceelectrical.co.nz,\r\n\r\nPlease let me know, if you need any assistance for Web Development or SEO ?\r\n\r\nGlad to inform you that my 9 years of relevant experience will help you in a great ways.\r\n\r\nI am looking for your input.\r\n\r\nHave a lovely day!\r\nAnna Wilson [Digital Marketing Expert]',''),(4308,1,1102,'6','Rowan Peck',''),(4309,1,1102,'2','0212579486',''),(4310,1,1102,'3','rowanpeck0@gmail.com',''),(4311,1,1102,'4','Kia ora,\r\nJust wondering if you guys install EV chargers (6-7kw)? and if so whether you\'d be able to provide a quote? The control box is in the garage where we want the charger, so I\'m hoping it won\'t be too complex a job.\r\nMany thanks,\r\nRowan',''),(4312,1,1102,'5','You\'ve been our go-to electricians for a while.',''),(4313,1,1103,'6','Eric Jones',''),(4314,1,1103,'2','555-555-1212',''),(4315,1,1103,'3','ericjonesmyemail@gmail.com',''),(4316,1,1103,'4','Dear juiceelectrical.co.nz Admin! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationc to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://bit.ly/leadgenerationc to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c',''),(4317,1,1104,'6','Hubert',''),(4318,1,1104,'2','06-14527443',''),(4319,1,1104,'3','leland.hubert94@yahoo.com',''),(4320,1,1104,'4','Hi, I looked at what you are doing on your website and decided to reach out.\r\n\r\nI\'m Daniel from National Diversified Funding Corporation, and we\'re experts in assisting business owners and professionals in acquiring profitable businesses valued between $10 million and $250 million.\r\nOur goal is to boost the value of your current business, so that you can exit at 8 or 9 figures whenever you want, and we typically achieve this within an average of 9 months.\r\n\r\nThe best part is that our service is 100% hands-free, and you do not need to have millions to do this. All you have to do is choose the industry, and our team takes care of everything else, including identifying potential companies, negotiating deals, and securing financing for the purchase.\r\n\r\nWe have done over 3,500 of these types of business acquisitions.\r\n\r\nWant more information on this? https://youtu.be/2020DY5EPH0\r\n\r\nWant help with this? You can speak to a team member here:https://www.nationaldiversified.org/calendar\r\n\r\nWarm regards,\r\nDaniel Udezi, MD, MBA.\r\nNattionaldiversified[.]com',''),(4321,1,1105,'6','Laurie Weigall',''),(4322,1,1105,'2','0327 2746629',''),(4323,1,1105,'3','weigall.laurie@gmail.com',''),(4324,1,1105,'4','Hey. You could be losing customers every day to your competitors.\r\n\r\n \r\n\r\nPlease go to Google and write the term best (your niche) in (your area)\r\n\r\nFor example, best plumbers in Chicago\r\n\r\n \r\n\r\nPlease check if you appear in the first 3 places on Google.\r\n\r\n \r\n\r\nIf not then I want you to know that you are losing customers to your competitors every day because the top 3 places get 99% of the customers.\r\n\r\n \r\n\r\nIf you\'re interested in solving this and improving your local search ranking on Google.\r\nIt\'s actually quite affordable, and we\'ve assisted thousands of local businesses in making that happen.\r\n\r\n \r\n\r\nWe specialize in helping small local businesses to improve their Google search rankings for targeted keywords.\r\n\r\n \r\nCheck out our service in further depth to discover all of the success stories highlighted by the clients with countless 5-star reviews.\r\n\r\n \r\nhttps://bit.ly/improvelocalranking\r\n \r\n\r\nThanks for your time \r\n\r\n \r\n\r\nDanyal',''),(4325,1,1106,'6','Eleanor Stringfield',''),(4326,1,1106,'2','(15) 7783-2813',''),(4327,1,1106,'3','stringfield.eleanor@gmail.com',''),(4328,1,1106,'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',''),(4329,1,1107,'6','Mike Fisher',''),(4330,1,1107,'2','89439954237',''),(4331,1,1107,'3','mikethache@gmail.com',''),(4332,1,1107,'4','Hi there, \r\n \r\nMy name is Mike from Monkey Digital, \r\n \r\nAllow me to present to you a lifetime revenue opportunity of 35% \r\nThat\'s right, you can earn 35% of every order made by your affiliate for life. \r\n \r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month. \r\n \r\nClick here to enroll with us today: \r\nhttps://www.monkeydigital.org/affiliate-dashboard/ \r\n \r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved. \r\n \r\nThanks and regards \r\nMike Fisher\r\n \r\nMonkey Digital',''),(4333,1,1107,'5','Google',''),(4334,1,1108,'6','Lucy Keeling',''),(4335,1,1108,'2','07 413 9144',''),(4336,1,1108,'3','lucy.keeling@clevertasking.com',''),(4337,1,1108,'4','Greetings,\r\n\r\nHope you\'re doing well. As someone who regularly works with and observes the intricacies of businesses of all sizes, I\'ve seen firsthand the challenges that come with creating processes, managing workflows, and staying ahead of tasks.\r\n\r\nIt\'s not uncommon for companies to get swamped with tasks, emails, and project tracking. One solution that has truly helped businesses like yours is adopting an efficient work management tool. It\'s not about the fancy features but about having a system that enhances operations and provides clarity.\r\n\r\nYou might find this platform worth a look:\r\n\r\nhttps://www.clevertasking.com/connection/juice-electrical-new-zealand-pndy\r\n\r\nIt lets you get started in minutes. If you\'re exploring ways to boost your workflows or just evaluating potential improvements, it\'s worth a look. Give it a try and see the difference for yourself.\r\n\r\nJust a suggestion, based on what I\'ve seen work for others.\r\n\r\nBest regards,\r\n\r\nLucy',''),(4338,1,1109,'6','Leif Waterworth',''),(4339,1,1109,'2','09199 80 88 62',''),(4340,1,1109,'3','waterworth.leif@outlook.com',''),(4341,1,1109,'4','Have you seen this free AI landing page builder yet? https://procoacha.xyz/scaryaitools',''),(4342,1,1110,'6','Eric Jones',''),(4343,1,1110,'2','555-555-1212',''),(4344,1,1110,'3','ericjonesmyemail@gmail.com',''),(4345,1,1110,'4','Hello juiceelectrical.co.nz Administrator. Eric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationc to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://bit.ly/leadgenerationc to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c',''),(4346,1,1111,'6','Reuben McCallum',''),(4347,1,1111,'2','089 33 18 76',''),(4348,1,1111,'3','reuben.mccallum@gmail.com',''),(4349,1,1111,'4','Hey, SEO Pro!\r\n\r\nDid you know that Shinefy has an annual deal that breaks down to about 42 bucks a month? (499 per year)\r\n\r\nMost SEO tools cost hundreds a month and do a fraction of what Shinefy does.\r\n\r\n\r\n\r\nWith Shinefy, you can replace tools like:\r\n\r\n\r\n\r\nScreaming Frog (website audit tool), Jasper (AI Content Tool), Semrush or Ahrefs (Traffic Checker and Keyword tool), Surfer SEO (On page optimizer tool)\r\n\r\n\r\n\r\nYou can also replace ElevenLabs, MidJourney, Synthesia and more!!!\r\n\r\n\r\nShinefy is you all in one AI content creation and SEO tool!!!\r\n\r\n\r\n\r\nOn top of that, when you get Shinefy, you support the development of the tool - I am spending nearly all of my time making something that will help you CRUSH it on Google.\r\n\r\n\r\n\r\n==> Grab The Shinefy Deal Right Now \r\n\r\n\r\nhttps://www.buildaiwealth.com/shinefy\r\n\r\n\r\nI can\'t offer this deal forever but if you want to get in right now you will also get access to the tool and updates with the early adopters plan.\r\n\r\n\r\n\r\nThat means next year you won\'t have to pay more when the price of the tool skyrockets!\r\n\r\n\r\n\r\nHappy SEO\'ing,',''),(4350,1,1112,'6','Roosevelt Pitts',''),(4351,1,1112,'2','071 837 30 78',''),(4352,1,1112,'3','pitts.roosevelt@gmail.com',''),(4353,1,1112,'4','Hey,juiceelectrical.co.nz Admin\r\n\r\nAs a small business owner, “be a graphic design expert” probably wasn’t what you signed up for.\r\n\r\nAdCreative.ai takes this process off your hands, giving you incredible wallet-opening ad creatives.\r\n\r\nTest, test, and test some more the easy way. You’ll also get a $500 Google Ad Credit for signing up!\r\n\r\nStart your 7-day trial today -> https://aismartad.com\r\n\r\nBest,\r\n\r\nJames',''),(4354,1,1113,'6','Libby Evans',''),(4355,1,1113,'3','libbyevans461@gmail.com',''),(4356,1,1113,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 400-1200+ followers per month.\r\n- Real, human followers: People follow you because they are interested in your business or niche.\r\n- Safe: All actions are made manually. We do not use any bots.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you are interested, and would like to see some of our previous work, let me know and we can discuss further.\r\n\r\nKind Regards,\r\nLibby\r\n\r\nIf you are not interested unsubscribe here: https://removeme.click/unsubscribe.php?d=juiceelectrical.co.nz',''),(4357,1,1114,'6','Garnet Swallow',''),(4358,1,1114,'2','203-676-2967',''),(4359,1,1114,'3','garnet.swallow@msn.com',''),(4360,1,1114,'4','Hi there,\r\n\r\nHere\'s something you could probably use... \r\n\r\nInstant, hands-free, high quality traffic, \r\nto any website or offer you want.\r\n\r\nI\'ve seen a few of these sites in the past, \r\nbut this one looks like the real-deal...\r\n\r\nCheck it out and see what you think! \r\n\r\nhttps://warriorplus.com/o2/a/d9z6f8/0\r\n \r\nRegards \r\n\r\nMark',''),(4361,1,1115,'6','Michael Sinclair',''),(4362,1,1115,'2','0664 569 12 52',''),(4363,1,1115,'3','msinclair.hivemailers@gmail.com',''),(4364,1,1115,'4','Hello,\r\n \r\nI 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.\r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n- We make changes to the list and content until we get results.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!!!! We will send one hundred thousand emails for just $48 \r\n \r\nBook a 10 min call with me now: https://bit.ly/hive-48-special\r\n\r\nNOTE: 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.\r\n\r\nThis offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hive-48-special\r\n\r\nSincerely,\r\nMichael',''),(4365,1,1116,'6','Jennifer Stone',''),(4366,1,1116,'2','+1-415-555-0198',''),(4367,1,1116,'3','j.stone@aiglobal.online',''),(4368,1,1116,'4','Hello, \r\n\r\nImagine a world where you never have to worry about lead generation again. Where your sales team is constantly flooded with high-quality leads, and you can focus on closing more deals.\r\n\r\nThat\'s the world of AI Lead Generator Tool.\r\n\r\nOur AI-powered tool automates all the tedious work of lead generation, from finding and qualifying leads to sending them personalized outreach.\r\n\r\nSo you can focus on what you do best: selling.\r\n\r\nHere\'s what AI Lead Generator Tool can do for you:\r\n\r\n- Generate up to 10x more high-quality leads than traditional methods\r\n- Save hours of time each week by automating your lead generation\r\n- Get real-time insights into your lead pipeline and conversion rates\r\n- Close more deals with personalized outreach\r\n\r\nReady to take your sales to the next level?\r\nTry AI Lead Generator Tool for free today and see for yourself: https://ai-global.online/Lead-Gen\r\n\r\nWelcome to the future of sales growth.\r\nJennifer S. @AI Global',''),(4369,1,1117,'6','Eric Jones',''),(4370,1,1117,'2','555-555-1212',''),(4371,1,1117,'3','ericjonesmyemail@gmail.com',''),(4372,1,1117,'4','Dear juiceelectrical.co.nz Administrator! this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationd to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationd to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/leadgenerationd to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c',''),(4373,1,1118,'6','Thomas Content Creator',''),(4374,1,1118,'3','contentcreatorthomas@outlook.com',''),(4375,1,1118,'4','Dear juiceelectrical.co.nz owner,\r\n\r\nAre you constantly battling creative blocks, drowning in mundane tasks, or feeling the pressure of time constraints? Enter TextCortex, your new AI-powered comrade in conquering these hurdles! With TextCortex, you\'re not just getting an AI tool, you\'re unlocking a powerhouse of creativity tailored to your unique communication style and needs.\r\nHere\'s why TextCortex is a game-changer:\r\n\r\n1. Empower Your Creativity: It\'s meticulously crafted to align with your unique style, revolutionizing the way you ideate, communicate, and collaborate.\r\n2. Overcome Creative Blocks: Wave goodbye to information overload. Get from 0 to 70% in less than 3 clicks, rekindling your creative flames.\r\n3. Time-Saver: Slash your writing time by over 50%, freeing up your schedule for brainstorming and executing ideas.\r\n4. Customizable and Consistent Creativity: It\'s a cross-device platform integrating seamlessly with your workflow, offering a toolkit of advanced writing and research capabilities.\r\n5. Boost Efficiency & Productivity: Harness personal intelligence for better efficiency across your whole team and organization.\r\n6. Your Pocket Expert: TextCortex is like having a virtual coworker, filling the gap for various roles without the hefty price tag of hiring experts.\r\n7. Enhance Communication: It streamlines corporate communication, aiding in routine writing tasks from emails to reports and proposals.\r\n8. Sales and Customer Support Backbone: Craft personalized responses effortlessly, making it the silent workhorse of your sales and customer support teams.\r\n\r\nTake the leap with TextCortex, and watch as your ideas transition from inception to execution smoothly, efficiently, and creatively. Your journey towards unbridled creativity and productivity begins with just one click!\r\n\r\nIn today\'s digital age, caution is advised with all received links, even from trusted sources. To ensure link safety, copy it, search \"check if link is malicious\" online, and paste the link for a quick check.\r\nhttps://textcortex.com/?via=Content-creator-Thomas\r\n\r\nPlease don\'t hesitate to reach out if you have any questions!\r\n\r\nWarm regards\r\nContentCreatorThomas@outlook.com\r\nContent Creator Thomas',''),(4376,1,1119,'6','Caroline Brunner',''),(4377,1,1119,'2','070 3896 8743',''),(4378,1,1119,'3','brunner.caroline@outlook.com',''),(4379,1,1119,'4','want to get an alert when your website is down? then use our 24on7 web monitor - it\'s absolutely free! \r\nvisit https://t.ly/cQQMm?juiceelectrical.co.nz for more info',''),(4380,1,1120,'6','Oscar Mazza',''),(4381,1,1120,'2','078 8845 8501',''),(4382,1,1120,'3','mazza.oscar@gmail.com',''),(4383,1,1120,'4','Hi there,\r\n\r\nMy name is Oscar from Monkey Digital, \r\n\r\nAllow me to present to you a lifetime revenue opportunity of 35%\r\nThat\'s right, you can earn 35% of every order made by your affiliate for life.\r\n\r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month.\r\n\r\nClick here to enroll with us today:\r\nhttps://www.monkeydigital.org/affiliate-dashboard/\r\n\r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved.\r\n\r\nThanks and regards\r\nOscar Mazza\r\nMonkey Digital',''),(4384,1,1121,'6','Tomas Patton',''),(4385,1,1121,'2','906-713-2535',''),(4386,1,1121,'3','patton.tomas@gmail.com',''),(4387,1,1121,'4','Hi there,\r\n\r\nToday, My friend Ashwath has released another premium Software that can get you Unlimited Backlinks for your website & Youtube Channel With the push of a button - without any manual work.\r\n\r\n\r\nYes, you read that right. \r\n\r\nYou Can Now Easily Get Unlimited HQ Backlinks & Real Buyers Traffic … With Commercial EVEN FOR A LIFETIME!!\r\n\r\n=> Click Here to Get It Now Before Deal Ends https://warriorplus.com/o2/a/zg9cpm/0\r\n\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nLet me introduce you to AI Backlinks…\r\n\"Award Winning\" ChatGPT4 Powered Software Gets You UNLIMITED REAL BACKLINKS & FREE BUYER TRAFFIC On Autopilot With Zero Monthly Fee \r\n+ \r\n“Guaranteed” Rank Your Site on Top of Google, Yahoo & Bing…\r\n\r\nHow cool is that?\r\n\r\nNow you won’t have to pay for Backlinks & Other SEO Services On Other Online Platforms Like Fiverr, Upwork etc\r\n\r\nSo let me ask you…\r\n\r\nAren’t you tired of Spending 1000’s Of Dollars for getting non related backlinks or fake traffic even ?\r\n\r\nThanks to the brand new AI-powered software AI Backlinks you’ll get Unlimited Backlinks & Real Human Traffic to your website & Youtube channels.\r\n\r\nThis is a professional cloud-based platform that comes with a Commercial.\r\n\r\nFor Evergreen Income WITHOUT Any Special Skills, Experience, Or Learning Curve.\r\n\r\n=> Grab AI Backlinks With Exclusive Bonuses Now https://warriorplus.com/o2/a/zg9cpm/0\r\n\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nThis is an irresistible offer, with AI Backlinks you’ll be able to:\r\n\r\nCreate Unlimited HQ Backlinks For Your Blogs, Website Etc On Autopilot\r\n \r\nGet Higher Rank Easily On Google, Bing & yahoo etc With No Extra Efforts\r\n\r\nGet Unlimited Real & Related Buyer Traffic & Sales\r\n \r\nFully Autopilot.. No Manual Work\r\n\r\nGet Faster Indexing For Your All Webpages\r\n \r\nAutomatic Updates With No Extra Installation Hassels\r\n \r\nUNLIMITED COMMERCIAL LICENCE Included\r\n\r\nNo Limitations - Completely Free\r\n\r\nSell Unlimited Backlinks & Rest Services to Earn Like The Big Boys\r\n\r\nNo Special Skills or Experience Required\r\n\r\nStep By Step Training & Vides\r\n \r\n$200 Refund If It Doesn’t Work For You\r\n\r\nAnd much more...\r\n\r\n\r\n\r\n=> Get Your AI Backlinks Lifetime Account + Commercial Licence at a One-Time Price https://warriorplus.com/o2/a/zg9cpm/0\r\n\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nThis is turning into monthly recurring very soon.\r\n\r\nAI Backlinks is very easy to use, Trust me, once you have AI Backlinks you’ll be able to Rank #1 On Google, Bing & yahoo etc in 3 easy steps:\r\n\r\nStep 1 - Login & Enter to the Friendly Dashboard \r\n\r\nStep 2 - Enter Your Website Or Youtube Link & Click “Get Backlinks” & DONE!\r\n\r\nStep 3 - AI Backlinks Will Send Automatically Send Backlinks To The Most High Authority Websites \r\n\r\n\r\n150 TOP Agency Owners, Marketers & more than 2000 customers have started making money with AI Backlinks.\r\nTill Now AI Backlinks Has Successfully Sent 18M+ Real & High Quality Backlinks To Customers Website, Blogs & Youtube Channels. \r\nIT’S HUGE!!\r\n\r\n\r\n\r\n\r\n=> Get Your AI Backlinks Lifetime Account + Commercial Licence at a One-Time Price https://warriorplus.com/o2/a/zg9cpm/0\r\n \r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)',''),(4388,1,1122,'6','Gladys Oppenheim',''),(4389,1,1122,'2','613-787-7026',''),(4390,1,1122,'3','gladys.oppenheim@gmail.com',''),(4391,1,1122,'4','Hey,\r\n\r\nDid you try to make m0ney with\r\nAI, ChatGPT, Bard, Midjourney etc\r\nbut failed miserably?\r\n\r\nThey are all awesome tools, but\r\nalone and without a good strategy\r\nyou\'ll just be wasting your time,\r\nmoney & effort with little to NO results.\r\n\r\nWhat if tell you - there is a *SECRET\r\nAI HACK* that pulls in millions of\r\nvisitors/m with 30-sec AI FACE videos\r\nWITHOUT subs, followers, ads or\r\nSEO...\r\n\r\n==> Go here to Unlock this *AI HACK* now...\r\n https://warriorplus.com/o2/a/c8sl03/0\r\n\r\nIntroducing ViralFaces AI, the\r\ngroundbreaking NEW top-secret\r\nA.I Face Tech that brings UNLIMITED\r\nTraffic to your offers!\r\n\r\nWith this revolutionary platform,\r\nyou can create 100s of attention-grabbing\r\nA.I. Face Videos with zero effort\r\nin just minutes that speak and\r\ngo viral on YouTube Shorts & Instagram\r\nReels!\r\n\r\nYou get 10x more sales, reach,\r\nfollowers, and engagement...\r\n\r\nHere\'re some results newbies getting\r\nwith Face videos..\r\n\r\n- 10M views posting a self-improvement short\r\n- 1.5M views posting a gym tips reel\r\n- 2.8M views posting a health tips reel\r\n\r\nAnd they all started with no subs,\r\nno followers, no ads - all using AI in min.\r\n\r\nThe sooner you get started, the\r\nMOST you\'ll be able to exploit this\r\nmethod - just handful of people\r\ndoing it right now and you can be\r\none of them..\r\n\r\n==> WATCH QUICK DEMO HERE https://warriorplus.com/o2/a/c8sl03/0\r\n\r\n\r\nViralFaces AI is available for a Low\r\nOne Time Price during its public launch \r\nfor the next few days only..\r\n\r\nAfter this week, it will turn into a \r\nhigher recurring subscription price model.\r\n\r\nAct fast and get your account at the \r\nlowest price ever.\r\n\r\n==> Get ViralFaces AI For A Low \r\nOne-Time Price Now https://warriorplus.com/o2/a/c8sl03/0\r\n\r\nSee you inside.\r\n\r\nAll the best',''),(4392,1,1123,'6','Damian Nibbi',''),(4393,1,1123,'2','301-993-3241',''),(4394,1,1123,'3','damian.nibbi54@gmail.com',''),(4395,1,1123,'4','Hi there\r\n\r\nJust checked your Site_name\'s baclink profile, I noticed a moderate percentage of toxic links pointing to your website\r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge.\r\n\r\nStart recovering your ranks today:\r\nhttps://www.hilkom-digital.com/free-backlinks-clean-up/\r\n\r\n\r\nRegards \r\nMike Nibbi\r\nHilkom Digital SEO Experts\r\nhttps://www.hilkom-digital.com/',''),(4396,1,1124,'6','Anna Wilson',''),(4397,1,1124,'2','1201201200',''),(4398,1,1124,'3','annawilson.mkt@gmail.com',''),(4399,1,1124,'4','Hi team juiceelectrical.co.nz,\r\n\r\n\" Are you accepting SEO manager? I\'d like to help fix a few things on your website. - juiceelectrical.co.nz \"\r\n\r\nI will fix those errors with no extra cost/ free if you choose any one of our monthly marketing plans.\r\n\r\nDiscuss the possibilities with me, reply with your WhatsApp/ call with your suitable time to discuss.\r\n\r\nHave a great day!\r\nAnna Wilson will be your - SEO Manager',''),(4400,1,1125,'6','Sherlene Cavenagh',''),(4401,1,1125,'2','0337 1980806',''),(4402,1,1125,'3','sherlene.cavenagh@msn.com',''),(4403,1,1125,'4','Hey. You could be losing customers every day to your competitors.\r\n\r\n \r\n\r\nPlease go to Google and write the term best (your niche) in (your area)\r\n\r\nFor example, best plumbers in Chicago\r\n\r\n \r\n\r\nPlease check if you appear in the first 3 places on Google.\r\n\r\n \r\n\r\nIf not then I want you to know that you are losing customers to your competitors every day because the top 3 places get 99% of the customers.\r\n\r\n \r\n\r\nIf you\'re interested in solving this and improving your local search ranking on Google.\r\nIt\'s actually quite affordable, and we\'ve assisted thousands of local businesses in making that happen.\r\n\r\n \r\n\r\nWe specialize in helping small local businesses to improve their Google search rankings for targeted keywords.\r\n\r\n \r\nCheck out our service in further depth to discover all of the success stories highlighted by the clients with countless 5-star reviews.\r\n\r\n \r\nhttps://bit.ly/improvelocalranking\r\n \r\n\r\nThanks for your time \r\n\r\n \r\n\r\nDanyal',''),(4404,1,1126,'6','Robert Davis',''),(4405,1,1126,'2','078 3734 3111',''),(4406,1,1126,'3','mccrory.ronnie@hotmail.com',''),(4407,1,1126,'4','Hello,\r\n\r\nGain your complementary AI Assistant Now! if not get left behind unless you\r\n\r\nWant to outshine the competition with more customers and saving time? \r\n\r\nGo to https://klxl.ink/more-sales now to explore our partnership that promises a surge in leads and sales for your business.\r\n\r\nBest regards,\r\n\r\n Richard Davis \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(4408,1,1127,'6','William Anderson',''),(4409,1,1127,'2','022 453 71 32',''),(4410,1,1127,'3','roscoe.lock@msn.com',''),(4411,1,1127,'4','Hello There,\r\n\r\nRest comfortably without a snore. The EPAP mask is your cost-effective portal to tranquil nights.\r\n\r\nVisit https://sleepl.ink/sleep-easy to enjoy a restful night\'s sleep.\r\n\r\nUpgrade your sleep with Optipillows EPAP Mask. Tackle obstructive sleep apnea, maintain airways open, and improve sleep quality effortlessly. \r\n\r\nA non-invasive, travel-friendly alternative to CPAP devices and is cheaper by more than 75%. Need more info?\r\n\r\nFind out more at https://sleepl.ink/sleep-easy and sleep the night away.\r\n\r\n\r\nBest regards,\r\n\r\n William Jones \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4412,1,1128,'6','Simpson Middleton',''),(4413,1,1128,'2','84829825369',''),(4414,1,1128,'3','cfo@trustsecurityco.com',''),(4415,1,1128,'4','Greetings, \r\n \r\nTrust this message finds you in favorable condition. \r\n \r\nCould we have the pleasure of your time for a significant discussion concerning your business investment and potential partnership? Kindly reach out to us via email simpson@trustsecurityco.com for further details. \r\n \r\nRegards, \r\nMr. Simpson Middleton \r\nsimpson@trustsecurityco.com',''),(4416,1,1128,'5','Google',''),(4417,1,1129,'6','Helen Horton',''),(4418,1,1129,'2','0212477275',''),(4419,1,1129,'3','helen@juiceelectrical.co.nz',''),(4420,1,1129,'4','Checking if my contact page is working',''),(4421,1,1129,'5','Owner',''),(4422,1,1130,'6','BELINDA HAMLIN',''),(4423,1,1130,'2','02041597455',''),(4424,1,1130,'3','beehamlin@gmail.com',''),(4425,1,1130,'4','Hi, I\'d like to request a quote for removal of an existing 60cm ceramic cooktop which is cracked and installation of a replacement cooktop which we have already purchased. We are located in Burnside.\r\nThanks',''),(4426,1,1131,'6','Maybelle Hamill',''),(4427,1,1131,'2','06-76186531',''),(4428,1,1131,'3','hamill.maybelle29@gmail.com',''),(4429,1,1131,'4','Do you struggle with creating high-quality videos that capture your audience\'s attention?\r\n\r\nAre you frustrated with the complicated and time-consuming process of video editing?\r\n\r\nWe understand your pain, and that\'s why we created Pictory – the AI-powered video editing tool that simplifies the process for you.\r\n\r\nSay goodbye to the hassle of video editing and hello to effortless, professional-looking videos that elevate your brand.\r\n\r\nClick here to see how Pictory can revolutionize your video marketing game.\r\n\r\n\r\nhttps://bit.ly/3QrSMFm\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n3774 Union CT, Wheat Ridge, CO 80033\r\nUnsubscribe:\r\noptoutforever.com/?site=juiceelectrical.co.nz',''),(4430,1,1132,'6','Oliva Gottshall',''),(4431,1,1132,'2','612-241-2245',''),(4432,1,1132,'3','gottshall.oliva@gmail.com',''),(4433,1,1132,'4','Get Google Reviews for your business reputation.\r\n\r\nOrder here https://buytraffics.net/order/googlereviews.php\r\n\r\nIf you are interested contact us at digitalwebsiteonline@gmail.com\r\n\r\nIt’s very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n✔ Express Delivery\r\n✔ High Quality\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested contact us at digitalwebsiteonline@gmail.com\r\n\r\nOr order here https://buytraffics.net/order/googlereviews.php\r\n\r\nWe also provide all reviews service, website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\nThanks\r\nBuy Traffics',''),(4434,1,1133,'6','Humberto Hay',''),(4435,1,1133,'2','01.38.53.16.86',''),(4436,1,1133,'3','hay.humberto@gmail.com',''),(4437,1,1133,'4','Dear juiceelectrical.co.nz Administrator!\r\n\r\nMy name’s Humberto, I found juiceelectrical.co.nz after doing a quick search – you popped up near the summit of the rankings, so anything you’re doing for SEO, looks like it’s working well. \r\n\r\nSo here’s my question – what happens AFTER someone reaches on your site? Anything?\r\n\r\nStudies advise us at least 70% of the persons who find your site, after a brief once-over, they disappear… forever.\r\n\r\nThat signifies that all the work and endeavor you put into getting them to appear, goes the tubes.\r\n\r\nWhy would you desire all that good work – and the great site you’ve created – go to waste?\r\n\r\nBecause the probabilities are they’ll just omit over calling or even reaching for their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to lift their hand, say, “okay, let’s talk” without requiring them to even draw their cell phone from their pocket?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call take place NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that resides on your site, set and waiting capture 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 still there at your site.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to experience a Live Demo with Web Visitors Into Leads now to observe precisely how it works.\r\n\r\nWhen focusing on leads, you HAVE to act fast – the variance between reaching out to someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve grabbed the phone number of the website visitor, you can instantly kick off a text message (SMS) conversation with them. \r\n\r\nThink about how potent this could be – even if they don’t accept you up on your offer right away, you can keep in contact with them using text messages to create new offers, supply links to excellent content, and build your credibility.\r\n\r\nJust this by itself could be a game changer to make your website even more productive.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to discover more about all the things Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and continue the great work!\r\n\r\nHumberto\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads right away! \r\nIt even comprises International Long Distance Calling. \r\nStop wasting money pursuing eyeballs that don’t change into paying customers. \r\nCLICK HERE https://bit.ly/3LPltcD to test Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nJust a quick notification - the monikers and email utilized in this communication, Humberto and Hay, are substitutes and not actual contact details. We value transparency and desired to confirm you are informed! In case you want to make contact with the actual one responsible for this note, do visit our website, and we’ll unite you with the appropriate person.',''),(4438,1,1134,'6','Damon',''),(4439,1,1134,'2','06-18514797',''),(4440,1,1134,'3','damon@crampton.medicopostura.com',''),(4441,1,1134,'4','Good day \r\n\r\nLooking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help!\r\n\r\nExperience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep.\r\n\r\nMade from lightweight, breathable fabric, it ensures comfort all day long.\r\n\r\nGrab it today at a fantastic 60% OFF: https://medicopostura.com\r\n\r\nPlus, enjoy FREE shipping for today only!\r\n\r\nDon\'t miss out on this amazing deal. Get yours now and start transforming your posture!\r\n\r\nKind Regards, \r\n\r\nDamon',''),(4442,1,1135,'6','Lesli Frankfurter',''),(4443,1,1135,'2','071 616 87 85',''),(4444,1,1135,'3','frankfurter.lesli@gmail.com',''),(4445,1,1135,'4','To the juiceelectrical.co.nz Owner! I am Lesli and I’m guessing you want your web site juiceelectrical.co.nz to generate extra leads\r\n\r\nSo here’s how:\r\nWeb Visitors Into Leads is a software that’s operates on your webpage, set to seize any visitor Name, Email address and Phone Number. It alerts you as soon as they say they’re intrigued so that you can communicate with that lead whilst they’re still at juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://bit.ly/LeadGena for a demo now.\r\n\r\nAnd now that you have got their their phone number, our new SMS Text With Lead feature enables allows you to start a text – and close a deal.\r\n\r\nIf they take you up you up on your just follow up with with text messages for for new offers even “how you doing to build a relationship a relationship.\r\n\r\nCLICK HERE https://bit.ly/LeadGena to discover what Web Visitors Into Leads can do for your business\r\n\r\nThe difference between someone 5 minutes versus a half-hour means you could be up to 100X more leads\r\n\r\nTry Web Visitors Into Leads and get more leads.\r\n\r\nLesli\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE a FREE 14 day trial – and it includes International Long Distance Calling.\r\nYou have customers waiting to talk to talk with you now… don’t them waiting\r\nCLICK HERE https://bit.ly/LeadGena to try Web Visitors Into Leads now\r\n\r\nIf you\'d like to unsubscribe to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nOnly a quick note note - the names and email here, Lesli and Frankfurter, are placeholders and not real contact information\r\nWe appreciate transparency and wanted to make you’re aware! If you wish to get in touch with the real person behind this message, please visit our website, and we’ll connect you with the correct individual.',''),(4446,1,1136,'6','Michael Smith',''),(4447,1,1136,'2','06-56839643',''),(4448,1,1136,'3','gail.mattos6@gmail.com',''),(4449,1,1136,'4','Hello There,\r\n\r\nSleep snug without a snore. The Optipillows EPAP Mask is your budget-friendly gateway to peaceful nights.\r\n\r\nGo to https://sleepl.ink/sleep-easy to sleep the night away.\r\n\r\nRevolutionize your sleep with Optipillows EPAP Mask. Combat obstructive sleep apnea, maintain airways open, and boost sleep quality effortlessly. \r\n\r\nA non-invasive, travel-friendly alternative to CPAP devices and is cheaper by more than 75%. Need more info?\r\n\r\nDiscover more at https://sleepl.ink/sleep-easy and enjoy peaceful slumbers.\r\n\r\n\r\nBest regards,\r\n\r\n William Brown \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4450,1,1137,'6','Thomas Jones',''),(4451,1,1137,'2','(08) 8733 0724',''),(4452,1,1137,'3','schreffler.phillip97@gmail.com',''),(4453,1,1137,'4','Hey there,\r\n\r\nAre you Ready to Secure a Complimentary AI Assistant? or get left behind\r\n\r\nGet ahead of the competition with more customers and saving time with AI\r\n\r\nGo to https://klxl.ink/more-sales\r\n\r\nto uncover a lucrative partnership opportunity that will skyrocket your leads and sales. \r\n\r\n\r\nBest regards,\r\n\r\nJohn Anderson\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(4454,1,1138,'6','Alan Philipp',''),(4455,1,1138,'3','alan.philipp@gmail.com',''),(4456,1,1138,'4','Hey there,\r\n\r\nThis is it! The AI Disruptor 2.0 is available TODAY and it\'s making waves! It\'s a game-changer, a success maker, and the best part? It\'s accessible to you from ANYWHERE in the world with NO money out of pocket!\r\n\r\nOur team is seeing success like never before. Dave\'s raking in multiple three figure payments daily, and James is closing in on six figures for the month. Our beta students are absolutely CRUSHING it.\r\n\r\nUnleash the power of AI and start making money like CRAZY! This is YOUR moment, grab it!\r\n\r\nhttps://warriorplus.com/o2/a/y018hw/0\r\n\r\n\r\nTo your success,\r\n\r\nEric',''),(4457,1,1139,'6','Marlene Tom',''),(4458,1,1139,'2','0354 9505399',''),(4459,1,1139,'3','tom.marlene@googlemail.com',''),(4460,1,1139,'4','Hi there,\r\n\r\nToday, My friend Ashwath has released another premium Software that can get you Unlimited Backlinks for your website & Youtube Channel With the push of a button - without any manual work.\r\n\r\n\r\nYes, you read that right. \r\n\r\nYou Can Now Easily Get Unlimited HQ Backlinks & Real Buyers Traffic … With Commercial EVEN FOR A LIFETIME!!\r\n\r\n=> Click Here to Get It Now Before Deal Ends https://warriorplus.com/o2/a/jww0tp/0 \r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nLet me introduce you to AI Backlinks…\r\n\"Award Winning\" ChatGPT4 Powered Software Gets You UNLIMITED REAL BACKLINKS & FREE BUYER TRAFFIC On Autopilot With Zero Monthly Fee \r\n+ \r\n“Guaranteed” Rank Your Site on Top of Google, Yahoo & Bing…\r\n\r\nHow cool is that?\r\n\r\nNow you won’t have to pay for Backlinks & Other SEO Services On Other Online Platforms Like Fiverr, Upwork etc\r\n\r\nSo let me ask you…\r\n\r\nAren’t you tired of Spending 1000’s Of Dollars for getting non related backlinks or fake traffic even ?\r\n\r\nThanks to the brand new AI-powered software AI Backlinks you’ll get Unlimited Backlinks & Real Human Traffic to your website & Youtube channels.\r\n\r\nThis is a professional cloud-based platform that comes with a Commercial.\r\n\r\nFor Evergreen Income WITHOUT Any Special Skills, Experience, Or Learning Curve.\r\n\r\n=> Grab AI Backlinks With Exclusive Bonuses Now https://warriorplus.com/o2/a/jww0tp/0\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nThis is an irresistible offer, with AI Backlinks you’ll be able to:\r\n\r\nCreate Unlimited HQ Backlinks For Your Blogs, Website Etc On Autopilot\r\nGet Higher Rank Easily On Google, Bing & yahoo etc With No Extra Efforts\r\nGet Unlimited Real & Related Buyer Traffic & Sales \r\nFully Autopilot.. No Manual Work\r\nGet Faster Indexing For Your All Webpages \r\nAutomatic Updates With No Extra Installation Hassels \r\nUNLIMITED COMMERCIAL LICENCE Included\r\nNo Limitations - Completely Free\r\nSell Unlimited Backlinks & Rest Services to Earn Like The Big Boys\r\nNo Special Skills or Experience Required\r\nStep By Step Training & Videos \r\n$200 Refund If It Doesn’t Work For You\r\n\r\nAnd much more...\r\n\r\n\r\n\r\n=> Get Your AI Backlinks Lifetime Account + Commercial Licence at a One-Time Price https://warriorplus.com/o2/a/jww0tp/0\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nThis is turning into monthly recurring very soon.\r\n\r\nAI Backlinks is very easy to use, Trust me, once you have AI Backlinks you’ll be able to Rank #1 On Google, Bing & yahoo etc in 3 easy steps:\r\n\r\nStep 1 - Login & Enter to the Friendly Dashboard \r\n\r\nStep 2 - Enter Your Website Or Youtube Link & Click “Get Backlinks” & DONE!\r\n\r\nStep 3 - AI Backlinks Will Send Automatically Send Backlinks To The Most High Authority Websites \r\n\r\n\r\n150 TOP Agency Owners, Marketers & more than 2000 customers have started making money with AI Backlinks.\r\nTill Now AI Backlinks Has Successfully Sent 18M+ Real & High Quality Backlinks To Customers Website, Blogs & Youtube Channels. \r\nIT’S HUGE!!',''),(4461,1,1140,'6','William Lee',''),(4462,1,1140,'2','0370 3078810',''),(4463,1,1140,'3','typliai@kagrowth.org',''),(4464,1,1140,'4','Hey!\r\nAsk any owner of website, \r\nThe most tedious part of their work is NOT the planning (brainstorming, figuring out the outline)\r\nIt’s the writing process.\r\nYou’ll spend most of your time pondering over what you should write for the next paragraph without making any progress. And this could last for days, even months ( we all know how the brain block works)\r\nWell, not anymore.\r\n\r\n\r\nStarting TODAY, you can literally outsource the script to an EXPERT A.I. – while you focus on bringing in more business and sales.\r\nThis NEW tool called Typli.ai makes it DEAD-EASY to generate high-quality content in a DIFFERENT variety of formats.\r\n?? See it in action HERE: https://www.kagrowth.org/typliai \r\n\r\n\r\nHow does Typli.ai work differently than other AI tools you may ask? \r\n\r\n\r\nIt’s the ONLY Copywriting Tool specifically designed for both SEO content specialists and Bloggers.\r\nIt caters a lot to CONTENT GENERATION as it makes it a breeze to generate content ideas and copywriting, but also, it has a built-in SEO checker that will help you optimize content without having to look elsewhere. \r\n\r\n\r\nThe BEST part?\r\nIt’s extremely EASY to use:\r\nSTEP 1: Add detailed input to your text editor.\r\nSTEP 2: Select the number of words you would like to generate.\r\nSTEP 3: Click the Generate button and you’re good to go. \r\n?? Watch the DEMO Video HERE: https://www.kagrowth.org/typliai \r\nNot only that, Typli.ai has more than 50 writing commands to help you with your input: \r\n? List of marketing copy \r\n? Ads Description\r\n?Title Ideas\r\n? Video Descriptions\r\n?Instagram Post with tags\r\n?AIDA Script Copywriting templates\r\nAND MORE!\r\n\r\n\r\n?? Click HERE to See the FULL Typli.ai Feature List HERE: https://www.kagrowth.org/typliai \r\nIf you’re looking for a copywriting tool that will really assist you with your writing task, give Typli.ai a try.\r\n\r\n\r\nACT NOW and get your access to Typli.ai Right Now while the offer is still available:\r\n>> https://www.kagrowth.org/typliai \r\nSincerely,\r\nWilliam Lee\r\n\r\n\r\nUNSUBSCRIBE: https://www.kagrowth.org/unsubscribe\r\n\r\nAddress: 3681 Ming Ave, Bakersfield, CA 93309',''),(4465,1,1141,'6','Eunice Chill',''),(4466,1,1141,'2','(07) 3633 2412',''),(4467,1,1141,'3','chill.eunice43@outlook.com',''),(4468,1,1141,'4','Introducing AI software: The all-in-one solution for your marketing needs\r\n\r\nOur AI software is the all-in-one solution for your marketing needs. It uses AI to automate tasks, create engaging content, and reach your target audience more effectively.\r\n\r\nWith AI software, you can:\r\n\r\nCreate custom AI chatbots to engage with your customers and answer their questions 24/7.\r\nUse AI to create image and video content that is more engaging and likely to convert.\r\nGenerate AI graphics and 3D models to create unique and visually appealing marketing materials.\r\nCreate business cards, pages, ebooks, and flipbooks with ease using AI.\r\nTrack your marketing results and identify areas for improvement using AI analytics.\r\n\r\nTry our AI software today and see how it can help you improve your marketing results and grow your business https://warriorplus.com/o2/a/npqlst/0',''),(4469,1,1142,'6','Steve Collins',''),(4470,1,1142,'2','0494 93 34 44',''),(4471,1,1142,'3','stevecollins@gmail.com',''),(4472,1,1142,'4','Hey there, my name is Steve and I am a remote recruitment agent for WorkWithAI, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\n\r\nhttps://hop.clickbank.net/?affiliate=workwithai&vendor=writeapps&pid=joblandingpage\r\n\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from WorkWithAI',''),(4473,1,1143,'6','Wilhemina Lyke',''),(4474,1,1143,'2','71-99-08-14',''),(4475,1,1143,'3','wilhemina.lyke33@outlook.com',''),(4476,1,1143,'4','Greetings juiceelectrical.co.nz Administrator\r\n\r\nI\'m Wilhemina and I’m betting you’d love your site juiceelectrical.co.nz to produce more leads.\r\n\r\nThis is how:\r\nVisitor to Lead Widget is a software tool that’s operates on your site, set to seize any user’s Name, Email address, and Phone Number. It alerts you as soon as they say they’re interested – so that you can speak with that potential customer while they’re still there at juiceelectrical.co.nz.\r\n\r\nLead Conversion Software – CLICK HERE https://bit.ly/3LPltcD for a live-action demo right now.\r\n\r\nAnd now you’ve got their phone number, our new SMS Text With Lead feature enables you to begin a text (SMS) chat – answer questions, supply more info, and finalize a deal that way.\r\n\r\nIf they do not take you up on your deal then, merely follow up with text messages for new proposals, content links, or even just “how you doing?” notes to forge a relationship.\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to uncover what Lead Conversion Software can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour indicates you could be changing up to 100X more leads today!\r\n\r\nTry Visitor to Lead Widget and secure more leads today.\r\n\r\nWilhemina\r\nPS: The research show 7 out of 10 visitors don’t linger – you can’t allow to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling.\r\nYou have customers eager to talk with you immediately… do not keep them waiting.\r\nCLICK HERE https://bit.ly/3LPltcD to use Web Visitors Into Leads now.\r\n\r\nIf you\'d wish to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nJust a quick remark - the monikers and email address utilized here, Wilhemina and Lyke, are substitutes and not actually real contact details. We cherish candor and aimed to confirm you’re informed! If you desire to make contact with the genuine entity responsible for this communication, please visit our website, and we’ll connect you with the right individual.',''),(4477,1,1144,'6','Varsha Developer',''),(4478,1,1144,'2','1234567890',''),(4479,1,1144,'3','varshadeveloper@outlook.com',''),(4480,1,1144,'4','Hello- juiceelectrical.co.nz\r\n\r\nI checked your website that reports on the key areas that Google identifies as the main reasons, you are probably missing out on a lot of possible leads.\r\n\r\nIf you are interested, we have ethical and effective plan.\r\n\r\nRegards\r\nVarsha - Website Optimization Expert\r\n\r\n\r\n\r\n\r\nNo longer want to receive these emails? reply No',''),(4481,1,1145,'6','Hulda Eckert',''),(4482,1,1145,'2','29-77-75-66',''),(4483,1,1145,'3','hulda.eckert@gmail.com',''),(4484,1,1145,'4','The top Website Owners & Digital Marketers in the world are using AI Backlinks for Getting Traffic & Backlinks to boost their sales online.\r\n\r\nNow you have an opportunity to join them, improve your Google Rank & Get 10X Traffic with a new AI-based app called AI Backlinks.\r\n\r\n=> The Cart is Open… Go Fast & Secure Your Earlybird Access to AI Backlinks Now https://warriorplus.com/o2/a/zg9cpm/0\r\n\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nWith AI Backlinks, you can get Unlimited Backlinks for your websites & Youtube channels and also same time you can generate unlimited real traffic for boosting your sales & Revenue \r\n\r\nAI Backlinks is very easy to use, Trust me, once you have AI Backlinks you’ll be able to Rank #1 On Google, Bing & yahoo etc in 3 easy steps:\r\n\r\nStep 1 - Login & Enter to the Friendly Dashboard \r\n\r\nStep 2 - Enter Your Website Or Youtube Link & Click “Get Backlinks” & DONE!\r\n\r\nStep 3 - AI Backlinks Will Send Automatically Send Backlinks To The Most High Authority Websites \r\n\r\nhttps://warriorplus.com/o2/a/zg9cpm/0\r\n\r\n=> Grab AI Backlinks With Exclusive Bonuses Now \r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nYou are getting AI Backlinks with a free commercial licence so you can send Backlinks to your clients websites Or Youtube Channels as well\r\n\r\nAnd start generating an evergreen income WITHOUT any hard work.\r\n\r\nHere’s the BEST part:\r\n\r\nIf you get AI Backlinks during the special launch period, you\'ll get the following bonuses for no extra cost:\r\n\r\nPuzzlinks OTO1 + Reseller - WORLD\'S FIRST Cloud Based 1-Click Puzzle & Maze Book Creator Platform Along With 1 Million+ Pre Made Puzzles & Mazes With PLR Licence\r\n\r\n\r\nFunnelinks OTO1 + Reseller- Brand new, drag n’ drop page builder that builds stunning websites, sales pages, powerful sales funnels, memberships landing pages, blogs & email marketing campaign in minutes with no skills required!\r\n\r\n\r\nDriveLinks OTO1 + RESELLER- DriveJam can be said as the world\'s most secure and fastest loading servers are ready to store your unlimited data\r\n\r\n\r\nGraphLinks With OTO1 + Reseller- Simple Canva Like App With New Technology Creates & Sells Unlimited Jaw Dropping Designs, Video, Logos & Banners\r\n\r\n\r\nEZYLinks With OTO1 + Reseller- WORLD\'S FIRST Builder Platform To Create Unlimited Stunning Videos + Thousands Of Pre Made Video Templates With Unique Inbuilt Video & Image Editor\r\n\r\n\r\nAI Backlinks AppBuilder Edition With OTO1 + Reseller- The World’s First Mobile App Builder Allows You To Turn Your Existing Website into a Lightning Fast Future Ready Mobile App\r\n\r\n\r\nAI Backlinks Logo Generator Tool- A premium tool that helps you create beautiful, unique Logos/Icons for your business and your clients\' business.\r\n\r\nBut you need to hurry as the Early Bird discount is expiring a few hours from now. \r\n\r\n=> Get Your AI Backlinks Lifetime Account + Commercial Licence at a One-Time Price https://warriorplus.com/o2/a/zg9cpm/0\r\n\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nTo Your Success,',''),(4485,1,1146,'6','Scott Gould',''),(4486,1,1146,'2','01.84.33.78.66',''),(4487,1,1146,'3','scott@businesswebpros.com',''),(4488,1,1146,'4','Cyber threats are surging, and your website or critical business infrastructure might be at risk. \r\n\r\nRecent cyber attacks such as the one on the MGM Casino are a stark reminder. Act now to:\r\n\r\n1. Protect customer data\r\n2. Safeguard your brand\r\n3. Ensure uninterrupted operations\r\n\r\nVisit https://businesswebpros.com/service/website-security-audit/ to learn more about the benefits of our website security audit program.\r\n\r\nThe question isn\'t if, but when. Are you ready?\r\n\r\nSecure your business.',''),(4489,1,1147,'6','Roosevelt Cook',''),(4490,1,1147,'2','0650 982 37 11',''),(4491,1,1147,'3','roosevelt.cook@outlook.com',''),(4492,1,1147,'4','Hey there,\r\n\r\nI am intrigued to introduce you to the world\'s first \"AI-Powered\" app; INK AI which turns any VSL, voice, keyword, blog post, or website, into stunning and professional-grade ebooks, reports, pdfs, lead magnets, and flipbooks in any niche whatsoever (be it weight loss, keto, make money, forex, crypto… anything) under 45secs...\r\n\r\nWithout writing a single word, selling, downtime issues, pitching and spamming clients not even the traffic and SEO hassles or rather going bankrupt!\r\n\r\n>> Click here to secure your early bird & lifetime access immediately before it goes LIVE! | 10 People (Zero Cost, No Monthly fee)\r\nhttps://warriorplus.com/o2/a/tcx4bc/0\r\n\r\nHere is a sneak peek of the key features of this AI:\r\n\r\n50X Crazy than the popular chatGPT\r\nMultiple customization options, including cover design, color schemes, fonts, and more\r\nSeamless integration with major email marketing platforms and CRMs\r\n24/7 customer support and technical assistance\r\nSyndicate Your E-book to 50+ Publication For Instant Buyers Traffic\r\nAnd many more…\r\n \r\n INK AI is perfect for bloggers, marketers, authors, and anyone looking to create high-quality digital content quickly and easily. \r\n\r\n>> Click here to secure your earlybird & lifetime access immediately before it goes LIVE | 10 People (Zero Cost, No Monthly fee)\r\n\r\nThe sweetest part is, This AI automatically sells your content in our private marketplace with over 20 million readers bringing forth a maximum and 3-figure commission for you every 24hrs even if you don\'t have prior knowledge about creating or selling ebooks.\r\n\r\nYou can as well reach millions of readers, and grow your audience and revenue like never before.\r\n\r\nUltimately, With Ink AI, You can easily;\r\n\r\nTurn your voice into stunning ebooks & flipbooks.\r\nInstantly Generate 100% Human-like And Unique eBooks\r\nInstantly Generate 3D eCover for your eBook.\r\nCapitalize On The AI Wave With Just 1 Click\r\nCreate eBooks, FlipBooks, PDFs, Presentations, Reports, And More… \r\nInstantly Publish Your eBooks in our private marketplace.\r\nSyndicate Your E-book to 50+ Publication For Instant Buyers Traffic\r\nSeamless integration with major email marketing platforms and CRMs\r\n\r\n>> Click here to secure your earlybird & lifetime access immediately before it goes LIVE! | 10 People (Zero Cost, No Monthly fee!)\r\nhttps://warriorplus.com/o2/a/tcx4bc/0\r\n\r\nSee, This is an incredible opportunity to streamline your content creation and distribution processes and it\'s poised to revolutionize the way we create and sell digital content with no strings attached!.\r\n\r\nRemember, INK AI would be going live Today by 10AM EST. \r\n\r\nNOTE: The first 10 early birds to grab Ink AI would automatically get instant BONUS of “5 Done-For-You” + Profit Accelerator (worth $1,997).\r\n\r\nTry your possible best in order not to miss out of this powerful, undiluted opportunity with lifetime benefits today.\r\n \r\n>> Click here to secure your early bird & lifetime access immediately before it goes LIVE! | 10 People (Zero Cost, No Monthly Fee!)\r\nhttps://warriorplus.com/o2/a/tcx4bc/0\r\n\r\nHope to see you inside!',''),(4493,1,1148,'6','Steve Collins',''),(4494,1,1148,'2','905-458-9897',''),(4495,1,1148,'3','stevecollins@gmail.com',''),(4496,1,1148,'4','Hey there, my name is Steve and I am a remote recruitment agent for WorkWithAI, I checked out your website and I am impressed. I am currently looking for a couple more app reviewers to join our team. The position is flexible so you can work it a couple hours a day on the side of your main business, it pays a minimum of $200 per day and would involve writing a couple app reviews a day.\r\n\r\nWe currently are hiring 3 more people from your location, if you are interested you can view the details of the job by clicking my hiring link below, it isn\'t the hardest job but we are looking for the most qualified candidates to proceed.\r\n\r\n\r\nhttps://hop.clickbank.net/?affiliate=workwithai&vendor=writeapps&pid=joblandingpage\r\n\r\n\r\nThank you for your time, we hope to see you on our team!\r\n\r\nTalk soon,\r\nSteve from WorkWithAI',''),(4497,1,1149,'6','Nancy Cone',''),(4498,1,1149,'2','(02) 4091 7952',''),(4499,1,1149,'3','nancy.cone@gmail.com',''),(4500,1,1149,'4','To the juiceelectrical.co.nz Administrator! This is Nancy and I have just ran across your website at juiceelectrical.co.nz...\r\n\r\nI discovered it after a brief search, so your SEO is performing well…\r\n\r\nContent appears good…\r\n\r\nOne thing is missing though…\r\n\r\nA RAPID, EASY means to communicate with you IMMEDIATELY.\r\n\r\nSince studies show show that a visitor like me will only stay a short time – 7 out of 10 disappear instantly, Surf Surf Browse… then disappeared.\r\n\r\nI have the remedy:\r\n\r\nWeb Visitors Into Leads is a software that’s functions on your website, ready to grab any visitor Name, Email address, and Phone Number. You will know immediately they’re interested, and you can call them straight to TALK with them - literally as they’re still looking at your website.\r\n\r\nCLICK HERE https://bit.ly/LeadGena to test a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a go… it can be huge for your company.\r\n\r\nMoreover, now that you’ve obtained that phone number, with our new SMS Text With Lead function you can instantly initiate a text right away… which so strong, since reaching out within 5 minutes is 100 times more efficient than waiting more later.\r\n\r\nThe new text message feature lets you follow up frequently with new offers, offers even follow up notes to build a relationship.\r\n\r\nAll I’ve just mentioned is incredibly simple implement, affordable, and profitable.\r\n\r\nCLICK HERE https://bit.ly/LeadGena to find out what Web Visitors Into Leads can achieve for your business, potentially converting up to 100X more eyeballs into leads right now!\r\n\r\nNancy\r\nPS: Web Visitors Into Leads provides a FREE 14 days trial – and it even comes with International Long Distance Calling. \r\nYou have customers eager to speak with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/LeadGena to try Web Visitors Into Leads today.\r\n\r\nIn case you like to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nMerely a brief note - the names and email used here, Nancy and Cone, are not real and not real contact information. We appreciate transparency and wanted to ensure sure you’re aware! If you want to contact with the actual person behind this message, kindly visit our website, and we’ll associate you with the correct individual.}',''),(4501,1,1150,'6','Clifford Hallstrom',''),(4502,1,1150,'2','0474 59 56 15',''),(4503,1,1150,'3','clifford.hallstrom@gmail.com',''),(4504,1,1150,'4','Here\'s something you could probably use... \r\n\r\nInstant, hands-free, high quality traffic, \r\nto any website or offer you want.\r\n\r\nI\'ve seen a few of these sites in the past, \r\nbut this one looks like the real-deal...\r\n\r\nCheck it out and see what you think! \r\n\r\nhttps://bit.ly/boxaii\r\n\r\nRegards \r\n\r\nMark',''),(4505,1,1151,'6','Kailash teli',''),(4506,1,1151,'2','021659712',''),(4507,1,1151,'3','telikailash9211@gmail.com',''),(4508,1,1151,'4','Hi, \r\n\r\nI am kailash and have recently completed my electrical engineering level 3 (theory) course at ARA and are looking for a company in Christchurch where I can start a residential/commercial electrical apprenticeship.\r\n\r\nI have a great work ethic and can do attitude and am looking forward to applying my knowledge and furthering my training. \r\nI have a clean criminal record and reliable transport with my drivers full license. \r\nI am open to doing some work experience. To take up any longer term role, I have to give 2 weeks notice to my current employer but am otherwise ready to go! Please Let me know if there’s anything at the moment or coming up soon.I would even be happy to just doing electrical labouring until I can find an apprenticeship. \r\n\r\n\r\n\r\nThanks!\r\nKailash teli \r\n021659712',''),(4509,1,1151,'5','Online',''),(4510,1,1152,'6','Heydi van Zyl',''),(4511,1,1152,'2','0274123633',''),(4512,1,1152,'3','heydivanzyl@gmail.com',''),(4513,1,1152,'4','Hi there,\r\n\r\nI am just writing to see if you guys have any job opportunities going at the moment for an apprenticeship, I don\'t have any experience but am willing to learn, I\'m looking for a new career pathway.\r\n\r\nKind Regards\r\nHeydi van Zyl',''),(4514,1,1152,'5','Online google search',''),(4515,1,1153,'6','Eric Jones',''),(4516,1,1153,'2','555-555-1212',''),(4517,1,1153,'3','ericjonesmyemail@gmail.com',''),(4518,1,1153,'4','Hi juiceelectrical.co.nz Administrator! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationc to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://bit.ly/leadgenerationc to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c',''),(4519,1,1154,'6','Marylyn Landers',''),(4520,1,1154,'2','260-403-5290',''),(4521,1,1154,'3','landers.marylyn47@hotmail.com',''),(4522,1,1154,'4','Are you struggling to make money online? Do you want to learn how to generate multiple sources of income and achieve a 70% profit margin?\r\n\r\nMost online businesses fail because they don\'t have a solid strategy. They\'re just throwing ideas against the wall and hoping for the best.\r\n\r\nBut what if there was a proven method that could help you guarantee success?\r\n\r\nSophie\'s eSelling Machine is a revolutionary method that has helped thousands of people achieve financial freedom through eSelling.\r\n\r\nIn her free introductory mini course, Sophie will reveal her secret eSelling method and show you how to:\r\n\r\n- Generate multiple sources of income\r\n- Achieve a 70% profit margin\r\n- Build a successful online business that works for you\r\n\r\nSign up for Sophie\'s free introductory mini course today and learn how to achieve financial freedom through eSelling.\r\n\r\nhttps://yfind.net/sophies-20k-month-eselling-method-revealed-learn-how-to-make-money-online/\r\n\r\nSophie is currently offering her free mini course for a limited time only. Don\'t miss out on this opportunity to learn from the best and start building your dream online business.\r\n\r\nClick here to sign up for Sophie\'s free mini course today!\r\n\r\nhttps://yfind.net/sophies-20k-month-eselling-method-revealed-learn-how-to-make-money-online/',''),(4523,1,1155,'6','Catalina Coats',''),(4524,1,1155,'2','02161 64 23 43',''),(4525,1,1155,'3','webscraftservices@gmail.com',''),(4526,1,1155,'4','Get Google Reviews for your business reputation.\r\n\r\nIf you are interested reply to this message or at webscraftservices@gmail.com\r\n\r\nIt’s very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n✔ Express Delivery\r\n✔ High Quality\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested contact us at digitalwebsiteonline@gmail.com\r\n\r\nIf you are interested reply to this message or at webscraftservices@gmail.com\r\n\r\nWe also provide all reviews service, website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\nThanks',''),(4527,1,1156,'6','Nicolas Oa',''),(4528,1,1156,'3','nicolas.oa@outlook.com',''),(4529,1,1156,'4','Dear juiceelectrical.co.nz owner,\r\n\r\nAre you struggling with low energy and stubborn belly fat that just won’t budge? Turns out, it\'s not your fault.\r\n\r\nIn 2023, an esteemed team of scientific researchers discovered just one common factor in all overweight women and men - compromised liver function. And the one thing common in skinny people? Optimal liver function!\r\n\r\nAs you’re probably aware, one of your liver’s main functions is to cleanse your body of all of the chemicals and toxins you’re exposed to through food, drugs, alcohol and the environment in general.\r\n\r\nHowever, your liver is also The Fat-Burning Furnace for your entire body.\r\n\r\nEverything you eat or drink eventually reaches your liver for processing.\r\n\r\nThe liver then determines if the food we eat, regardless of how healthy or unhealthy it is, will get burned as energy or if it will be stored as unsightly body fat.\r\n\r\nUnfortunately, there are over 85,000 toxic substances regularly consumed through the food we eat, the water drink, and the air we breathe that wreak havoc on our livers.\r\n\r\nWhat’s worse, these modern day toxins severely damage the specific liver cells responsible for processing food and fat to energy.\r\n\r\nThis causes slow metabolism, low energy and excess belly fat.\r\n\r\nHowever, the great news is studies show that with optimal liver function, your liver cells can be up to 14 times more efficient at burning fat and calories on autopilot.\r\n\r\nIf you feel this problem resonates with you, please visit the LIV PURE website now.\r\n\r\nIn today\'s digital age, caution is advised with all received links, even from trusted sources. To ensure link safety, copy it, search \"check if link is malicious\" online, and paste the link for a quick check.\r\nhttps://tinyurl.com/NicolasOa\r\n\r\nFeel free to contact me at my email address if You have any questions!\r\n\r\nWarm regards\r\nNicolas.Oa@outlook.com\r\nNicolas',''),(4530,1,1157,'6','Jeremy Medland',''),(4531,1,1157,'2','06-58186718',''),(4532,1,1157,'3','jeremy.medland@outlook.com',''),(4533,1,1157,'4','https://bit.ly/AI_Spark_Vip\r\n\r\nAre you tired of spending countless hours trying to figure out how to market and sell your products online? Look no further than AI Spark - the revolutionary app that uses the power of ChatGPT4 and WhatsApp\'s 2 billion users to help you sell anything with ease.\r\n\r\nWith AI Spark, you can create stunning AI-powered stores in 30 seconds or less. Let AI find the perfect products for you or add your own - whether it\'s digital, physical, affiliate products, or even a service. And the best part? You can use AI agents to sell the products for you. That\'s right - deploy DFY AI chatbots that will talk to your customers for you, saving you time and energy.\r\n\r\nBut that\'s not all - AI Spark also offers an AI lead sourcer that will give you active leads in any niche. Send unlimited broadcast messages to all your customers with one click, and integrate with your autoresponder to build a massive list. Plus, the built-in traffic feature gives you 100% free targeted clicks.\r\n\r\nDon\'t worry about complicated setup - you can get up and running in just two minutes with zero upfront cost. And if you\'re not completely satisfied, there\'s a 30-day money-back guarantee. \r\n\r\nSo why wait? Try AI Spark today and watch as your sales soar with the power of AI.\r\n\r\nhttps://bit.ly/AI_Spark_Vip\r\n\r\nAI-App Create ChatGPT4 Powered Marketplace…\r\n\r\nThat Leverages WhatsApp 2 Billion Users To Sell Anything We Want With AI Chatbots…\r\n\r\nCreate Stunning AI-Powered Stores In 30 Seconds Or Less…\r\n\r\nLet AI Find The Perfect Products For You, Or Add Yours… \r\n\r\nSell Digital, Physical, Or Affiliate Products… Or Even A Service \r\n\r\nUse AI Agents To Sell The Products For You…\r\n\r\nDeploy DFY AI Chatbots That Will Talk To Your Customers For You… \r\n\r\nAI Lead Sourcer That Will Give You Active Leads In Any Niche… \r\n\r\nSend Unlimited Broadcast Messages To All Your Customers With 1 Click\r\n\r\n1 Click Integration With All Top Payment Processor\r\n\r\nIntegrate With Your Autoresponder And Build Massive List… \r\n\r\nBuilt-In Traffic Feature For 100% Free Targeted Clicks.\r\n\r\nNo Complicated Setup \r\n\r\nZERO Upfront Cost\r\n\r\n30 Days Money-Back Guarantee\r\n\r\nhttps://bit.ly/AI_Spark_Vip',''),(4534,1,1158,'6','Rich',''),(4535,1,1158,'2','570-218-6244',''),(4536,1,1158,'3','rich@mybizfunding.xyz',''),(4537,1,1158,'4','There\'s more investment capital available than you can imagine and much of it never gets placed. Tired of running low or running out of cash just when you need it most? I have a permanent fix to this problem. \r\n\r\nThere\'s no need to be under-capitalized and run out of cash. Your credit, industry, balance sheet, assets, etc. are not a factor. \r\n \r\nI\'ll help you get all the capital you need in record time. Join my FREE FORUM and talk to me directly. Learn how I raised tens of millions of dollars for my own companies. My system has worked for me many times and continues to provide cash for me to this day. \r\n\r\nTo access my FREE FORUM and start receiving all the capital you need, check this two-minute video I recorded for you: https://bizfundingforyou.com\r\n\r\nSee you there!\r\n\r\nRich\r\n\r\nTo opt out of future messages, click or tap here: https://omnioptout.xyz?customer_domain=juiceelectrical.co.nz',''),(4538,1,1159,'6','Albert Street',''),(4539,1,1159,'2','077 1027 3351',''),(4540,1,1159,'3','adsense@realdollar.xyz',''),(4541,1,1159,'4','Hi webmaster,\r\n\r\nGoogle AdSense is the No. 1 advertising network,countless websites earn high revenue through it, and even corporate sites monetize their blogs partially through Adsense.\r\n\r\nBut, the important thing is how to get it approved, I\'ll show you how to get an Adsense account- 100% approval guarantee.\r\n\r\nFalak Writes, an Adsense expert from Pakistan, has more than 7 years of experience with Google AdSense. He is currently delivering google adsense approval guarantee service on the world\'s largest service platform. The platform will protect your rights and interests, only if you get what you want, the platform will hand over your payment to the service provider \r\n\r\nWhy did you choose Falak?\r\n\r\nIf you buy his services he will provide you with a 100% approval guarantee with content, website design, basic pages etc. Even if your AdSense is rejected for any reason you can still order him. he will fix any kind of error, such as:\r\n\r\nLow Value.\r\nScreen Content Error.\r\nAny other Errors.\r\n\r\nThe most important thing is that your order will not be complete until you get Adsense approval. He is not like other sellers who only provide you articles and some fancy theme and said that your AdSense approval niche is ready etc.\r\n\r\nThese things are not enough to get AdSense approval, that\'s why he claimed that ALL IN ONE, just buy his gig and get AdSense approval.\r\n\r\nNow sign up for a platform account and chat with him online:https://www.realdollar.xyz/adsense\r\n\r\nAlbert Street\r\n\r\nUNSUBSCRIBE: https://www.realdollar.xyz/unsubscribe\r\n\r\n1201 N Market St, Frederick, MD 21701',''),(4542,1,1160,'6','Annie Whatmore',''),(4543,1,1160,'2','519-897-0879',''),(4544,1,1160,'3','whatmore.annie@hotmail.com',''),(4545,1,1160,'4','To the juiceelectrical.co.nz Webmaster! this is Eric and I found juiceelectrical.co.nz a few minutes ago.\r\n\r\nAppears great… now what?\r\n\r\nI mean, once someone like myself locates your website – either via 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?\r\n\r\nFrankly, most business websites come a bit short in terms of it comes to producing paying customers. Data show that 70% of a site’s visitors leave and are gone forever after just a moment.\r\n\r\nHere is an idea…\r\n\r\nWhy not making it really EASY for any visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n\r\nThis is possible –\r\n\r\nWeb Visitors Into Leads is a 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 let you know they’re interested – so that you can speak to that lead while they’re literally checking out your site.\r\n\r\nCLICK HERE https://bit.ly/LeadGena to check out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between reaching out to someone within just 5 minutes compared to a half-hour or more later can enhance your results 100-fold.\r\n\r\nIt gets even better… after you’ve grabbed their phone number, with our new SMS Text With Lead capability, you can automatically start a text (SMS) conversation.\r\n\r\nThus, even if you don’t finalize a deal right away, you can keep in touch with text messages for fresh offers, content links, or even just “how you doing?” notes to establish a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://bit.ly/LeadGena to discover what Web Visitors Into Leads can provide for your business.\r\n\r\nYou could be turning up to 100X more leads right now!\r\n\r\nEric\r\nPS: Web Visitors Into Leads gives a FREE 14 days trial – and it also features International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t leave them waiting. \r\nCLICK HERE https://bit.ly/LeadGena to test Web Visitors Into Leads today.\r\n\r\nIf you\'d want to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nOnly a brief note - the names and email used in this email, Annie and Whatmore, are dummy data and not genuine contact data. We value transparency and want to make sure you’re aware! If you want to reach out with the actual person responsible for this message, please visit our website, and we’ll connect you with the appropriate individual.}',''),(4546,1,1161,'6','Mike Nelson',''),(4547,1,1161,'2','83716747245',''),(4548,1,1161,'3','mikeinquiff@gmail.com',''),(4549,1,1161,'4','Greetings \r\n \r\nThis is Mike Nelson\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Nelson\r\n \r\nmike@strictlydigital.net',''),(4550,1,1161,'5','Google',''),(4551,1,1162,'6','Stephany Mitchell',''),(4552,1,1162,'2','02108383776',''),(4553,1,1162,'3','patchin001@gmail.com',''),(4554,1,1162,'4','I need to replace 2 ceiling light fittings and repair a loose double socket fitting which is not secured inside the wall and which is inserted in a glass panel. I\'m also interested to know about smart options. Thanks',''),(4555,1,1162,'5','Internet advertising',''),(4556,1,1163,'6','Terrence Pound',''),(4557,1,1163,'2','81-60-13-08',''),(4558,1,1163,'3','pound.terrence@hotmail.com',''),(4559,1,1163,'4','Wouldn\'t it be great to use the content on https://juiceelectrical.co.nz/contact/ to create attention-grabbing videos tailored for YouTube? \r\nBy just pasting your URL to https://gurugenius.pro/offer, you can unlock AI technology that converts your website\'s content into amazing videos. \r\nThis groundbreaking AI tool doesn\'t require special skills, and provides you with tons of videos that you can upload with a push of a button. \r\n\r\nSee you there, \r\nTerrence\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nNo longer want to receive emails? Unsubscribe at gurugenius.pro/opt-out \r\nUniversal Genius 1270 N Marine Corps Dr, Ste 101 - 2021 Tamuning, GU 96913-4331',''),(4560,1,1164,'6','Eric Jones',''),(4561,1,1164,'2','555-555-1212',''),(4562,1,1164,'3','ericjonesmyemail@gmail.com',''),(4563,1,1164,'4','Hi juiceelectrical.co.nz Owner! my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationc to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationc to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c',''),(4564,1,1165,'6','Gina McCourt',''),(4565,1,1165,'2','0374 0516909',''),(4566,1,1165,'3','gina.mccourt@gmail.com',''),(4567,1,1165,'4','Hello\r\n\r\nIf you ever need Negative SEO or a de-rank strategy, you can hire us here\r\n\r\nhttps://www.speed-seo.net/product/negative-seo-service/',''),(4568,1,1166,'6','Kelley Titus',''),(4569,1,1166,'2','0359 5161735',''),(4570,1,1166,'3','kelley.titus@gmail.com',''),(4571,1,1166,'4','Hey there!\r\n\r\nI hope this message finds you well. I wanted to introduce you to an incredible tool that has been revolutionizing the way businesses create and optimize their ad content: AdCreative.ai.\r\n\r\nAdCreative.ai is a cutting-edge platform designed to supercharge your advertising efforts, making it easier than ever to create compelling, high-converting ad creatives. Whether you\'re a seasoned marketer or just starting out, our platform offers a suite of features that will help you drive better results for your campaigns.\r\n\r\nClick the link below to sign up for a free trial\r\n\r\nhttps://free-trial.adcreative.ai/3qta9m8xumyh\r\n\r\nHere are just a few of the amazing features you\'ll find on AdCreative.ai:\r\n\r\nAI-Driven Copywriting: Say goodbye to writer\'s block! Our advanced AI technology generates persuasive ad copy tailored to your brand and target audience.\r\n\r\nDynamic Visuals: Create stunning visuals with ease, thanks to our library of customizable templates and high-quality stock images.\r\n\r\nA/B Testing and Optimization: Quickly iterate and refine your ad creatives based on real-time performance data to maximize ROI.\r\n\r\nMulti-Platform Compatibility: Generate ad content optimized for various platforms, including Facebook, Instagram, Google Ads, and more.\r\n\r\nPersonalization at Scale: Tailor your messages to different segments of your audience, ensuring a more personalized and engaging experience.\r\n\r\nEffortless Collaboration: Streamline teamwork with features like shared workspaces and real-time commenting, making it easy to work with your colleagues and clients.\r\n\r\nReady to take your ad campaigns to the next level? Click the link below to sign up for a free trial and experience the power of AdCreative.ai for yourself:\r\n\r\nhttps://free-trial.adcreative.ai/3qta9m8xumyh\r\n\r\nStill not convinced? Schedule a personalized demo with one of our experts, and they\'ll walk you through how AdCreative.ai can transform your advertising efforts:\r\n\r\nhttps://free-trial.adcreative.ai/3qta9m8xumyh\r\n\r\nDon\'t miss out on this opportunity to revolutionize your ad campaigns. Join the thousands of businesses already experiencing success with AdCreative.ai.\r\n\r\nThank you for your time, and I look forward to seeing the incredible results you\'ll achieve!\r\n\r\nBest regards,',''),(4572,1,1167,'6','Sim YC (Leslie) .',''),(4573,1,1167,'2','816-941-8420',''),(4574,1,1167,'3','gertrude.darrel@msn.com',''),(4575,1,1167,'4','Hi, \r\n\r\nHope all is well! \r\n\r\nI am just wondering if you be interested tod download the latest 28 millions of 2023 USA companies database that was just updated in June 2023? Exclusive for juiceelectrical.co.nz only! It consist of the company, email, contact no., linkedin profile, business industry etc. \r\n\r\nIf you are in the business targeting US companies, you definitely would like to download them to generate more targeted leads and grow your sales. You can download them here - https://www.bizdatapros.com/1ca86d62?url=juiceelectrical.co.nz (this link will expire soon, act now)\r\n\r\nHope you have a great day ahead.\r\n\r\nThank you,\r\nSim YC\r\nFounder\r\nBiz Data Pros',''),(4576,1,1168,'6','Roxanne Mackennal',''),(4577,1,1168,'2','032 234 82 28',''),(4578,1,1168,'3','mackennal.roxanne@gmail.com',''),(4579,1,1168,'4','Subject: Unleash Limitless Productivity with InfinityFlow \r\n\r\nDear Visionary Professionals,\r\n\r\nAre you tired of feeling overwhelmed by the chaos of daily tasks and deadlines? Do you crave a seamless workflow that empowers you to unleash your true potential? Look no further than InfinityFlow.io - the ultimate productivity program that will propel your efficiency to infinity and beyond!\r\n\r\nImagine a world where you effortlessly glide through your to-do list, accomplishing tasks with unrivaled speed and precision. With InfinityFlow.io, this dream becomes a reality. Our cutting-edge platform is designed to optimize every aspect of your workflow, so you can focus on what truly matters - turning your ideas into reality!\r\n\r\nInfinityFlow.io\'s intuitive interface will transform the way you work. Seamlessly manage projects, delegate tasks, and collaborate with your team in real-time. No more messy email chains or lost files - everything you need is just a click away!\r\n\r\nBut that\'s not all - InfinityFlow.io is packed with powerful features to take your productivity to unprecedented heights. Our smart automation tools will streamline repetitive tasks, freeing up valuable time for you to tackle creative challenges. With personalized notifications and reminders, you\'ll never miss a deadline or important milestone again!\r\n\r\nSecurity is our top priority at InfinityFlow.io. Rest easy knowing that your sensitive data is protected by state-of-the-art encryption and authentication protocols. Focus on your work with peace of mind, knowing that your information is safe and secure.\r\n\r\nWhether you\'re a solopreneur, a small team, or a large enterprise, InfinityFlow.io scales to fit your needs. Our flexible plans and customizable workflows ensure that our platform adapts to your unique requirements and maximizes your efficiency.\r\n\r\nJoin the ranks of successful professionals who have harnessed the power of InfinityFlow.io to revolutionize their productivity. As a limited-time offer, we invite you to try InfinityFlow.io FREE for 14 days! Experience the transformative impact it will have on your work life, without any commitment.\r\n\r\nAre you ready to unlock the door to unparalleled productivity? Visit www.infinityflow.io and start your journey towards infinite possibilities today!\r\n\r\nLet InfinityFlow.io be your secret weapon for success.\r\n\r\nTo boundless achievements,\r\n\r\n\r\nGo Get your best LTD for 2023 >>>>> https://rebrand.ly/infinityflow',''),(4580,1,1169,'6','Syreeta Severance',''),(4581,1,1169,'2','0393 5387549',''),(4582,1,1169,'3','syreeta.severance@yahoo.com',''),(4583,1,1169,'4','Subject: Unleash the Power of Your Business with GoHighLevel!\r\n\r\nDear Entrepreneurs and Business Leaders,\r\n\r\nAre you ready to revolutionize the way you run your business? Say hello to GoHighLevel - the all-in-one platform that will elevate your business to new heights and empower you with the tools you need to succeed!\r\n\r\nPicture this: seamlessly managing your entire customer journey from a single, intuitive dashboard. No more juggling between different platforms or drowning in a sea of confusing spreadsheets. With GoHighLevel, you can streamline your processes and focus on what truly matters - growing your business.\r\n\r\nFrom generating high-converting leads to nurturing them into loyal customers, GoHighLevel has got you covered. Build stunning landing pages that leave a lasting impression, create captivating email campaigns that engage and convert, and effortlessly manage your appointments with a smart scheduling system that syncs with your calendar.\r\n\r\nBut that\'s not all - GoHighLevel\'s versatility knows no bounds! Whether you\'re in the business of coaching, consulting, marketing, or any other industry, our platform adapts to your unique needs. Experience the convenience of managing your SMS marketing, social media, and even client pipelines all under one roof.\r\n\r\nWorried about your business scaling to new heights? Fear not! GoHighLevel is designed with growth in mind. With advanced analytics and performance tracking, you\'ll gain valuable insights into your business\'s performance and make data-driven decisions for continued success.\r\n\r\nOur user-friendly interface ensures that you don\'t need to be tech-savvy to make the most of our platform. Say goodbye to complexities and embrace the simplicity of GoHighLevel!\r\n\r\nAs a special offer for our valued customers, we\'re thrilled to provide a 30-day free trial of GoHighLevel. Yes, you read that right - an entire month to experience the transformative power of our platform, risk-free!\r\n\r\nJoin thousands of businesses worldwide who have already witnessed the magic of GoHighLevel and achieved unparalleled growth and success. Don\'t be left behind - take the leap and go beyond your limits with GoHighLevel!\r\n\r\nReady to embark on a journey of business excellence? Head over to www.gohighlevel.com and sign up for your free trial today.\r\n\r\nEmpower your business, elevate your success - GoHighLevel awaits you!\r\n\r\nTo your success,\r\n\r\nGoHighLevel lover\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(4584,1,1170,'6','Arturo McCutcheon',''),(4585,1,1170,'2','078 6135 8150',''),(4586,1,1170,'3','arturo.mccutcheon@gmail.com',''),(4587,1,1170,'4','Traffic, more traffic, and even more traffic! We all know that traffic is the lifeblood of our businesses, and without it, we\'re doomed to failure. But getting the right traffic to our links can be a real challenge.\r\n\r\nThat\'s where we come in, we\'ve spent years mastering the art of driving traffic effectively. Today, we\'re thrilled to introduce you to a groundbreaking opportunity: Big Ten Traffic.\r\n\r\nWhat\'s Big Ten Traffic?\r\n\r\nIt\'s unlike anything we\'ve ever done before. You can place any URL of your choice on the rotators of all 10 of my all-time best-selling traffic products. Each rotator provides daily traffic from a completely different traffic source, including a brand-new Rotator created especially for this launch.\r\n\r\nWhy Big Ten Traffic?\r\n\r\nDiverse Traffic Sources: You\'ll receive daily traffic from 10 unique sources, including our latest discovery, a red-hot traffic source that\'s currently on fire.\r\nProven Success: Our traffic products are all-time bestsellers, including \"Place Your Link 3.0,\" \"Traffic Time 3.0,\" and \"Triple Traffic 2.0.\" The traffic never stops.\r\nExclusive Offer: Act fast to secure your spot on the new Big Ten Traffic Rotator, which is currently empty, ensuring you get traffic from the red-hot source before anyone else does.\r\nHow to Get Started:\r\n\r\nPick up your copy of Big Ten Traffic today before the price goes up.\r\nChoose the URL you want to promote and submit it.\r\nThat\'s it! Sit back and enjoy daily traffic from 10 different sources.\r\nBut remember, act quickly. The new Big Ten Traffic Rotator is ready for your links, and it\'s from a brand-new, high-converting source.\r\n\r\nDon\'t miss out on this incredible opportunity to 10x your traffic results with Big Ten Traffic. Grab your link and get started now.\r\n\r\nhttps://warriorplus.com/o2/a/q32gqx/0\r\n\r\nThis offer won\'t last forever, so seize it while you can. You don\'t want to miss out on a chance to supercharge your traffic and take your business to new heights.\r\n\r\nTo your success,',''),(4588,1,1171,'6','Megan Atkinson',''),(4589,1,1171,'2','04.42.58.91.94',''),(4590,1,1171,'3','meganatkinson149@gmail.com',''),(4591,1,1171,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- We guarantee to gain you 300-1000+ followers per month.\r\n- People follow you because they are interested in you, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nMegan\r\n\r\nUnsubscribe here: https://removeme.click/unsubscribe.php?d=juiceelectrical.co.nz',''),(4592,1,1172,'6','Thanh Abbott',''),(4593,1,1172,'2','070 1463 2086',''),(4594,1,1172,'3','abbott.thanh@gmail.com',''),(4595,1,1172,'4','I’ll be really quick here. \r\n\r\nThe Lifetime Access + Special “UNLIMITED COMMERCIAL & AGENCY LICENSE” on AI Backlinks is going down in few hours (Trust me you’ll never get this deal again anywhere)\r\n\r\n=> Get AI Backlinks on Discounted Price https://warriorplus.com/o2/a/zg9cpm/0\r\n\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nMake sure you don’t miss it when you still have a chance to get it at a huge discount price. \r\n\r\n\r\nOnce the timer hits ZERO the price of AI Backlinks would turn back to its original price at $97/Month (Right Now $17 For LifeTime + Unlimited Commercial License)\r\n\r\n\r\nThis is an irresistible offer, with AI Backlinks you’ll be able to:\r\n\r\nCreate Unlimited HQ Backlinks For Your Blogs, Website Etc On Autopilot\r\nGet Higher Rank Easily On Google, Bing & yahoo etc With No Extra Efforts\r\nGet Unlimited Real & Related Buyer Traffic & Sales \r\nFully Autopilot.. No Manual Work\r\nGet Faster Indexing For Your All Webpages \r\nAutomatic Updates With No Extra Installation Hassels \r\nUNLIMITED COMMERCIAL LICENCE Included\r\nNo Limitations - Completely Free\r\nSell Unlimited Backlinks & Rest Services to Earn Like The Big Boys\r\nNo Special Skills or Experience Required\r\nStep By Step Training & Videos \r\n$200 Refund If It Doesn’t Work For You\r\n\r\nAnd much more...\r\n\r\n\r\n\r\n=> Get Your AI Backlinks Lifetime Account + Commercial License at a One-Time Price https://warriorplus.com/o2/a/zg9cpm/0\r\n\r\nSpecial $4 Off - ‘BLINK4’ (Expires in an hour time)\r\n\r\nTo Your Success,',''),(4596,1,1173,'6','Georgina Haynes',''),(4597,1,1173,'2','089 70 13 76',''),(4598,1,1173,'3','georginahaynes620@gmail.com',''),(4599,1,1173,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll 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.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nGeorgina',''),(4600,1,1174,'6','Sherryl Navarrete',''),(4601,1,1174,'2','044 599 98 75',''),(4602,1,1174,'3','navarrete.sherryl25@googlemail.com',''),(4603,1,1174,'4','Good job on the new site! Submit it to our directory for increased traffic. http://directorysubmission.rt32.xyz',''),(4604,1,1175,'6','Libby Evans',''),(4605,1,1175,'2','079 7424 4491',''),(4606,1,1175,'3','libbyevans461@gmail.com',''),(4607,1,1175,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- We guarantee to gain you 300-1000+ followers per month.\r\n- People follow you because they are interested in you, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nLibby',''),(4608,1,1176,'6','Lester S.',''),(4609,1,1176,'2','0327 8383523',''),(4610,1,1176,'3','lesterdigitalpro01@proton.me',''),(4611,1,1176,'4','Hi, \r\n\r\nI just check through your this website juiceelectrical.co.nz\'s contact us form and found that your form security is compromized. I believe you may have got massive spam by now. I am a freelance website developer. I can help you to secure it to stop others from spamming it. \r\n\r\nThis message is not a spam, I manually filling up this form, not bot. Please be kind with your reply though, I am a real hardworking dude that just offering my time and service only.\r\n\r\nIf you are not a decision maker, appreciate if you can forward this email to your immediate supervisor.\r\n\r\nThank you,\r\nLester',''),(4612,1,1177,'6','Van Gurt',''),(4613,1,1177,'2','88574365215',''),(4614,1,1177,'3','info@financial-group.org',''),(4615,1,1177,'4','Hello, \r\nWe hope this letter finds you in good shape. \r\n \r\nAre you available for an important conversation regarding your business investment and partnership? Send us an email to vangurt@financial-group.org for more details. \r\n \r\nRegards, \r\nMr. Van Gurt \r\nvangurt@financial-group.org',''),(4616,1,1177,'5','Google',''),(4617,1,1178,'6','Katja Newcombe',''),(4618,1,1178,'2','044 630 36 26',''),(4619,1,1178,'3','newcombe.katja@googlemail.com',''),(4620,1,1178,'4','We all have dreams and aspirations that seem daunting at first glance. Whether it\'s launching a successful business, 10x\'ing your income, inventing a life saving or life changing device, or mastering a new skill, big goals can often feel overwhelming. \r\n\r\nHowever, I firmly believe that with the right system, you can turn these dreams into reality.\r\n\r\nSystems are what makes the difference on the ability to repeat something that has been proven to work.\r\n\r\nEvery successful franchise in the world is so successful because they have repeatable systems that save time, money effort and have been proven time after time to work for every one that uses them.\r\n\r\nLearn a system for achieving the biggest goals used by the uber successful and now available to you. \r\n\r\nCheck out this free video and get access to a FREE preview of this system before it is taken down.\r\n\r\nJust copy and paste this link in your browser https://youtu.be/ggVXJC7w0Ow',''),(4621,1,1179,'6','Rich',''),(4622,1,1179,'2','203-317-9234',''),(4623,1,1179,'3','rich@mybizfunding.xyz',''),(4624,1,1179,'4','There\'s more investment capital available than you can imagine and much of it never gets placed. Tired of running low or running out of cash just when you need it most? I have a permanent fix to this problem. \r\n\r\nThere\'s no need to be under-capitalized and run out of cash. Your credit, industry, balance sheet, assets, etc. are not a factor. \r\n \r\nI\'ll help you get all the capital you need in record time. Join my FREE FORUM and message me directly or set an appointment for a free video call. Learn how I raised tens of millions of dollars for my own companies. My system has worked for decades and continues providing plenty of cash to this day. \r\n\r\nCheck out 2-minute this video for more info: https://bizfundingforyou.com\r\n\r\nBest Regards,\r\n\r\nRich\r\n\r\nTo opt out of future messages, click or tap here: https://omnioptout.xyz?customer_domain=juiceelectrical.co.nz',''),(4625,1,1180,'6','Michael Sinclair',''),(4626,1,1180,'2','036846 71 96',''),(4627,1,1180,'3','walker.hannon@gmail.com',''),(4628,1,1180,'4','Hello,\r\n \r\nI 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.\r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n- We make changes to the list and content until we get results.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!!!! We will send one hundred thousand emails for just $48 \r\n \r\nBook a 10 min call with me now: https://bit.ly/hivemailer-special \r\n\r\nNOTE: 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.\r\n\r\nThis offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hivemailer-special \r\n\r\nSincerely,\r\nMichael',''),(4629,1,1181,'6','Jessica Eastment',''),(4630,1,1181,'2','0330 9010854',''),(4631,1,1181,'3','jessicaeastment@getafollower.com',''),(4632,1,1181,'4','Hey they, this is Jess from GetAFollower. I checked out your website and social media accounts and noticed they could use a boost!\r\n\r\nOur proven service delivers real, engaged followers, propelling you to the top of your game.\r\n\r\nIf you are interested in our AI powered growth service you can click the link below.\r\n\r\nhttps://www.getafollower.com/#Jessica\r\n\r\n\r\nWarm regards,\r\nJess',''),(4633,1,1182,'6','Hye Mead',''),(4634,1,1182,'2','604-263-4079',''),(4635,1,1182,'3','hye.mead@msn.com',''),(4636,1,1182,'4','Unveiling the Down Range Chronicles: Your Complimentary Ticket to a Legendary Lifestyle!\r\n\r\nWe would be honored to have you by our side on this exhilarating new journey.\r\n\r\nOur Mission is simple; it\'s to share essential products and information that will compliment your legendary life’s journey.\r\n\r\nValue is our guiding principle. We want to deliver so much value that you consider us first when you shop for the items we discuss. You get highly rated products at the same prices or less than you\'d pay elsewhere, and we earn a small commission. That allows us to continue creating and delivering content that will compliment your legendary life.\r\n\r\nSign up at the bottom of our Home Page: https://mydownrange.com/\r\n\r\nHere\'s some of what you\'ll find on our website & newsletters:\r\n\r\n- Outdoor gear, gadgets, electronics and more\r\n\r\n- Book summaries, articles and eBooks to help you grow mentally and physically\r\n\r\n- Adventure travel information to inspire your journey\r\n\r\n- Business and personal resources and information to help you prosper\r\n\r\n- Some of the best food and drink information, resources and products anywhere\r\n\r\nAnd much more as we continue to grow.\r\n\r\nSign up at the bottom of our Home Page: https://mydownrange.com/\r\n\r\nThank you in advance for joining us! We hope you get so much from your subscription that you\'ll share your experience with others. And please, let us know what we can do to add even more value for you.\r\n\r\nSign up at the bottom of our Home Page: https://mydownrange.com/',''),(4637,1,1183,'6','David Taylor',''),(4638,1,1183,'2','03.55.25.98.38',''),(4639,1,1183,'3','rosemarie.gersten14@hotmail.com',''),(4640,1,1183,'4','I will provides high authority da 90 plus SEO dofollow backlinks for 10$..\r\n\r\nLink : https://worldogspot.com/DA90backlinkservice\r\n\r\nclick on the link signup on fiverr and make a order I will complete within 2Days..',''),(4641,1,1184,'6','Thomas Taylor',''),(4642,1,1184,'2','21-85-75-96',''),(4643,1,1184,'3','grace.corrie@outlook.com',''),(4644,1,1184,'4','Hey there,\r\n\r\nWe have 17 potential customers who could use your services. Gain them now! \r\n\r\nClick on https://rokl.ink/increased-sales to seal the deal.\r\n\r\n\r\nBest regards,\r\n\r\n Michael Thompson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(4645,1,1185,'6','Charles Johnson',''),(4646,1,1185,'2','0313 4270916',''),(4647,1,1185,'3','sell.jacklyn@gmail.com',''),(4648,1,1185,'4','Good Day ,\r\n\r\nRest comfortably without a snore. The EPAP mask is your cost-effective portal to restful nights.\r\n\r\nGo to https://sleepl.ink/sleep-easy to experience peaceful slumbers.\r\n\r\nRevolutionize your sleep with the EPAP mask. Address obstructive sleep apnea, keep airways open, and improve sleep quality with ease. \r\n\r\nA non-invasive, compact alternative to CPAP devices and is cheaper by more than 75%. Have questions?\r\n\r\nLearn more at https://sleepl.ink/sleep-easy and sleep the night away.\r\n\r\n\r\nBest regards,\r\n\r\n William Wilson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4649,1,1186,'6','Mike Addington',''),(4650,1,1186,'2','82729122449',''),(4651,1,1186,'3','mikeHourrirm@gmail.com',''),(4652,1,1186,'4','If you are looking to rank your local business on Google Maps in a specific area, this service is for you. \r\n \r\nGoogle Map Stacking is a highly effective technique for ranking your GMB within a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Addington\r\n \r\n \r\nPS: Want a comprehensive local plan that covers everything? \r\nhttps://www.speed-seo.net/product/local-seo-bundle/',''),(4653,1,1186,'5','Google',''),(4654,1,1187,'6','Jackie Torain',''),(4655,1,1187,'2','06534 96 48 49',''),(4656,1,1187,'3','vista@vauleonline.co',''),(4657,1,1187,'4','Hey,\r\n\r\nDo you want unlimited likes, followers\r\nand targeted traffic?\r\n\r\nThis is not about paying for clicks\r\nor anything like that...\r\n\r\nI’m talking about TRUE “set & forget”\r\nInstagram traffic that will BUY from you…\r\n\r\nAnd will totally FLOOD your account...\r\nOf course, you can also drive your Instagram traffic to website.\r\n\r\nWant to see proof for everything I say?\r\n\r\n==> Click here to see how I was\r\nable to generate 100k followers\r\nin less than 24 hours: https://www.vauleonline.co/vista \r\n\r\nHere’s the shocker:\r\n\r\nI didn’t have to do anything unethical\r\nor illegal...\r\nAlso, I never put my Instagram\r\naccount at risk…\r\n\r\nOr violated their TOS…\r\n\r\nWith one simple \"hack,\" I was able\r\nto get an endless amount of\r\n\"set & forget\" traffic...\r\n\r\nEasy peasy…\r\n\r\nYou can copy and clone this\r\nmethod right out of the box...\r\n\r\n==> Click here to unlock\r\nUNLIMITED Instagram traffic: https://www.vauleonline.co/vista \r\n\r\nIt works in ANY niche…\r\n\r\nIt works for ANY type of marketer…\r\n\r\nAnd it works for ANY type of\r\nonline business...\r\n\r\nDo not miss out on the new \r\nInstagram trend worth $100 billion...\r\n\r\nFinally, get all the world\'s traffic\r\n(... and then some...)\r\n\r\n==> Click here to enjoy\r\n“set & forget” Instagram traffic: https://www.vauleonline.co/vista \r\n\r\nTalk soon,\r\n\r\nJackie S. Torain\r\n\r\n\r\nUNSUBSCRIBE: https://www.vauleonline.co/unsubscribe\r\n\r\n231 4th Ave, Brooklyn, NY 11215',''),(4658,1,1188,'6','Diana Cruz Developer',''),(4659,1,1188,'2','1234567890',''),(4660,1,1188,'3','dianacruz.mkt@gmail.com',''),(4661,1,1188,'4','Hello- team juiceelectrical.co.nz\r\n\r\nI was going through your website & I personally see a lot of potential in your website & business.\r\n\r\nWe can increase targeted traffic to your website so that it appears on Google\'s first page. Bing, Yahoo, AOL, etc.\r\n\r\nDo you want to appear on the front page, then?\r\n\r\nPlease provide your name, contact information, and email.\r\n\r\nRegards\r\nDiana Cruz - Website Optimization Expert',''),(4662,1,1189,'6','William Williams',''),(4663,1,1189,'2','0699 900 81 55',''),(4664,1,1189,'3','christal.seale@gmail.com',''),(4665,1,1189,'4','Hey there,\r\n\r\nWe have 17 potential customers who could use your services. Gain them now! \r\n\r\nClick on https://rokl.ink/increased-sales to seal the deal.\r\n\r\n\r\nBest regards,\r\n\r\n Michael Williams \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(4666,1,1190,'6','Richard Jones',''),(4667,1,1190,'2','0486 61 94 32',''),(4668,1,1190,'3','kenton.whatmore@msn.com',''),(4669,1,1190,'4','Hello There,\r\n\r\nSnooze peacefully without a peep. The EPAP mask is your cost-effective gateway to tranquil nights.\r\n\r\nVisit https://sleepl.ink/sleep-easy to sleep the night away.\r\n\r\nRevolutionize your sleep with Optipillows EPAP Mask. Address obstructive sleep apnea, maintain airways open, and boost sleep quality seamlessly. \r\n\r\nA gentle, compact alternative to CPAP devices and is cheaper by more than 75%. Have questions?\r\n\r\nLearn more at https://sleepl.ink/sleep-easy and sleep the night away.\r\n\r\n\r\nBest regards,\r\n\r\nJohn Thompson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4670,1,1191,'6','Kapitonpn',''),(4671,1,1191,'2','89644340397',''),(4672,1,1191,'3','dmitryavangard7@gmail.com',''),(4673,1,1191,'4','Вы занимаетесь продажей или только думаете открыть свой бизнес? Мы готовы стать вашим прочным партнёром китайской продукции! \r\n \r\nНаша компания asiancatalog.ru предоставляет: \r\n \r\n— Поиск товаров и товаропроизводителей прямо в Китае. \r\n— Выкуп товара у поставщика. \r\n— Поставка до вашего адреса. \r\n— Полное таможенное оформление и сертификация товаров. \r\n— Сервис \"под ключ\": от поиска до перевозки. \r\n \r\nЗаказ абсолютно любого товара из Китая от автозапчастей до детских игрушек – мы найдем всё, что вам нужно, и ввезём по лучшей цене. \r\n \r\nПростой и отчетливый процесс партнерства: \r\n \r\n1. Вы посылаете нам заявку на интересующий товар. \r\n2. Мы ищем изготовителя, просчитываем стоимость с учетом доставки и таможенных платежей. \r\n3. После вашего подтверждения заключаем договор и приступаем к работе. \r\n \r\nОриентированы на бизнесменов! Наш опыт и профессионализм позволяют нам оставаться в числе лидеров в обороте поставок из Китая. Поручите нам заботу о вашем предпринимательстве, и вы не пожалеете! \r\n \r\nЖдем ваших заявок на asiancatalog.ru!',''),(4674,1,1192,'6','Beatriz Storm',''),(4675,1,1192,'2','88 948 79 95',''),(4676,1,1192,'3','storm.beatriz@gmail.com',''),(4677,1,1192,'4','Introducing The all-in-one solution for your Business Needs\r\n\r\nImaging having an the all-in-one solution software that uses AI to automate tasks, create engaging content, and reach your targeted audience more effectively.\r\n\r\nWith this software, you can:\r\n\r\nCreate custom AI chatbots to engage with your customers and answer their questions 24/7.\r\nUse AI to create image and video content that is more engaging and likely to convert.\r\nGenerate AI graphics and 3D models to create unique and visually appealing marketing materials.\r\nCreate business cards, pages, ebooks, and flipbooks with ease using AI.\r\nTrack your marketing results and identify areas for improvement using AI analytics.\r\n\r\nTry our AI software today and seethis can help grow your business at >>> https://warriorplus.com/o2/a/npqlst/0 \r\n\r\nVisit us at >>> https://warriorplus.com/o2/a/npqlst/0 \r\n\r\nCheers!',''),(4678,1,1193,'6','Sima Ritter',''),(4679,1,1193,'2','041 782 52 64',''),(4680,1,1193,'3','sima.ritter36@outlook.com',''),(4681,1,1193,'4','Greetings to juiceelectrical.co.nz Owner.\r\n\r\nI am Sima and, contrary to a lot of emails you may receive, I wanted to instead provide you with a word of encouragement – Well done!\r\n\r\nWhy?\r\n\r\nPart of my job is to check out websites and the work you have done with juiceelectrical.co.nz certainly is notable.\r\n\r\nIt is clear you took building a website seriously and invested a real investment of time and resources into developing it premium.\r\n\r\nHowever, there is, however… more accurately, a question…\r\n\r\nSo, when someone like me discovers your site – maybe on top of the search results (good job BTW) or just through a random link, how can you tell?\r\n\r\nMore crucially, how do you make a connection with that person?\r\n\r\nData indicate that 7 out of 10 visitors don’t stay – they’re there one second and then vanished.\r\n\r\nHere is a way to create IMMEDIATE engagement that you may not have known about…\r\n\r\nWeb Visitors Into Leads is a widget widget that’s operates on your site, ready to capture every visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY that they are interested – so that you can chat to that lead as they’re literally checking out juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to experience a Live Demo with Web Visitors Into Leads now to realize precisely how it operates.\r\n\r\nIt can be a revolutionary change for your business – and it gets even better… after you have grabbed their phone number, with our new SMS Text With Lead feature, you can instantly start a text (SMS) chat – instantly (& there’s really a 100X difference between connecting with someone within just 5 minutes compared to 30 minutes.)\r\n\r\nMoreover then, even if you don’t close a deal instantly, you can link later on with text messages for new deals, content links, or even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just mentioned is straightforward, convenient, and effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can offer for your business.\r\n\r\nYou can be turning up to 100X more leads today!\r\n\r\nSima\r\nPS: Web Visitors Into Leads provides a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nThere are customers eager to talk with you at this moment… don’t leave them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to test Web Visitors Into Leads now.\r\n\r\nIf you\'d choose to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\n\r\nOnly a quick note - the names and email used here, Sima and Ritter, are simulations and not real contact information. We appreciate transparency and wanted to make sure you’re aware! If you want to get in touch with the real person responsible for this message, kindly visit our website, and we’ll link you with the right individual.}',''),(4682,1,1194,'6','Darrin Fernando',''),(4683,1,1194,'2','22-19-31-54',''),(4684,1,1194,'3','darrin.fernando@hotmail.com',''),(4685,1,1194,'4','Imagine creating animation videos with REAL Humans who speak anything you type!\r\n\r\nGet the AI Humans to speak with perfect lip-sync in any language. Use 300 male and female neural text-to-speech\r\nvoices or upload your own audio!\r\n\r\nYou can get UNLIMITED usage for a ONE-TIME price.\r\n\r\n* There are NO upgrades, No Hidden Fees, No Monthly costs.\r\nYou get access to EVERYTHING!\r\n\r\nCheck Out The Mind Blowing Software Demo Here\r\n\r\nhttps://bit.ly/UnlimitedAITalkingHumanVideoMaker\r\n\r\n(Use Coupon HUMAN for Extra Discount)\r\n\r\nHere are just some incredible features that leave the competition in the dust:\r\n\r\n+ Ultra-Realistic Digital Humans That Speak\r\nANYTHING You Type\r\n+ Photo To Talking Human Character Builder\r\n+ AI Digital Human Photo Generator\r\n+ Hundreds of REAL Human Text-To-Speech Voices\r\n+ Eye Catching Ready-Made Video Templates\r\n+ Robust Drag-and-Drop Video Editor\r\n+ Speech-To-Text Transcription\r\n+ 1-Click Translation\r\n+ Subtitles and Captions\r\n+ Multilingual Support\r\nAnd 50 other powerful features...\r\n\r\nUnlock The One-Time Price With All Bonuses\r\n\r\nhttps://bit.ly/UnlimitedAITalkingHumanVideoMaker\r\n\r\n(Use Coupon HUMAN for Extra Discount)\r\n\r\nCreate videos for any marketing goal in ANY language like VSLs (video sales letters), 3D explainers, animated, educational, e-commerce, social media, youtube presentations and anything you could imagine within minutes!\r\n\r\nWave goodbye to expensive spokespersons, voice artists, high-end editors and expensive apps to create videos! \r\n\r\nWith the included commercial license you can sell the videos to clients and on freelancer sites for $300 or more.\r\n\r\nGrab This Before The Price Increases\r\n\r\nhttps://bit.ly/UnlimitedAITalkingHumanVideoMaker\r\n\r\n(Use Coupon HUMAN for Extra Discount)\r\n\r\nI value your time, I am giving away bonuses worth thousands when you get HumanPal today...\r\n\r\nBONUS #1: HumanPal Template Request Club ($997/yr Value)\r\n\r\nBONUS #2: Mockups Video Maker App ($997 Value)\r\n\r\nBONUS #3: VideoResizer App With All The Upgrades ($997 Value)\r\n\r\nBONUS #4: VidEditor App With All The Upgrades ($997 Value)\r\n\r\nBONUS #5: HumanPal 10 DAYS Virtual Event Pass ($1497 Value)\r\n\r\nBONUS #6: Meta Marketplace Builder With Web Hosting ($1297 Value)\r\n \r\nBONUS #7: NicheDashboard App With 200+ DFY Marketing Materials ($997 Value)\r\n\r\nBONUS #8: Drag & Drop Website Builder ($997 Value) \r\n\r\nBONUS #9: Done-For-You Call-To-Action Human Voiceovers & Video Sales Scripts ($197 Value)\r\n\r\nBONUS #10: Personal VIP WhatsApp Group Mentorship ($497 Value)\r\n\r\nNote: Keep all the bonuses even if you decide this is not for you and take a refund later. All bonuses are instantly available in the customer portal!\r\n\r\nEnjoy!\r\n\r\nP.S. Due to the incredible demand, the special introductory price may expire without notice.\r\n\r\nSee All The Features Here & Grab The Discount\r\n\r\nhttps://bit.ly/UnlimitedAITalkingHumanVideoMaker\r\n\r\n(Use Coupon HUMAN for Extra Discount)',''),(4686,1,1195,'6','Lesley Markham',''),(4687,1,1195,'2','0272156979',''),(4688,1,1195,'3','markhams@xtra.co.nz',''),(4689,1,1195,'4','Greetings Helen\r\n\r\nWe are purchasing an EV in the near future & are wanting Juice to come on site and advise on the electrics in the garage. We\'ve had no problem with them in 31 years we have been at Woodbury Street but nor have we had them checked for efficiency / safety etc.\r\n\r\nWe would also like some professional advice / guidance on the viability/ suitability of solar panels for our needs.\r\n\r\nWould appreciate hearing from you with a couple of times for Juice to visit so as to be able to co-ordinate with Simon to be present. \r\n\r\nRegards\r\nLesley Markham',''),(4690,1,1195,'5','Returning customers',''),(4691,1,1196,'6','Mike Adrian',''),(4692,1,1196,'2','84386693971',''),(4693,1,1196,'3','mikeinquiff@gmail.com',''),(4694,1,1196,'4','Hi there, \r\n \r\nI have reviewed your domain in MOZ and have observed that you may benefit from an increase in authority. \r\n \r\nOur solution guarantees you a high-quality domain authority score within a period of three months. This will increase your organic visibility and strengthen your website authority, thus making it stronger against Google updates. \r\n \r\nCheck out our deals for more details. \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Ahrefs Domain Rating \r\nhttps://www.monkeydigital.co/ahrefs-seo/ \r\n \r\nThanks and regards \r\nMike Adrian',''),(4695,1,1196,'5','Google',''),(4696,1,1197,'6','Gabriella Rayner',''),(4697,1,1197,'2','06-39614701',''),(4698,1,1197,'3','gabriella.rayner@outlook.com',''),(4699,1,1197,'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.\r\n\r\nP. Stewart\r\nSkype: live:.cid.e169e59bb6e6d159\r\nEmail: ps2517 Aw@gomail2.xyz',''),(4700,1,1198,'6','Eric Jones',''),(4701,1,1198,'2','555-555-1212',''),(4702,1,1198,'3','ericjonesmyemail@gmail.com',''),(4703,1,1198,'4','Dear juiceelectrical.co.nz Webmaster. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. I’m interested… but… maybe…\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(4704,1,1199,'6','Bella Chelmsford',''),(4705,1,1199,'2','508 812 0437',''),(4706,1,1199,'3','automate23thrive@gmail.com',''),(4707,1,1199,'4','Hey there\r\nCan I create a short (60 sec) video for juiceelectrical.co.nz (free) ?\r\n\r\nIf you like it I can offer you content generation services for your business.\r\n\r\nWhat do you think?\r\n\r\nSimply email me back at: automate2thrive@gmail.com\r\n\r\nBest\r\n\r\nOri',''),(4708,1,1200,'6','Solomon Tarleton',''),(4709,1,1200,'2','66 714 15 94',''),(4710,1,1200,'3','tarleton.solomon@gmail.com',''),(4711,1,1200,'4','Subject: Unleash Limitless Productivity with InfinityFlow \r\n\r\nDear Visionary Professionals,\r\n\r\nAre you tired of feeling overwhelmed by the chaos of daily tasks and deadlines? Do you crave a seamless workflow that empowers you to unleash your true potential? Look no further than InfinityFlow.io - the ultimate productivity program that will propel your efficiency to infinity and beyond!\r\n\r\nImagine a world where you effortlessly glide through your to-do list, accomplishing tasks with unrivaled speed and precision. With InfinityFlow.io, this dream becomes a reality. Our cutting-edge platform is designed to optimize every aspect of your workflow, so you can focus on what truly matters - turning your ideas into reality!\r\n\r\nInfinityFlow.io\'s intuitive interface will transform the way you work. Seamlessly manage projects, delegate tasks, and collaborate with your team in real-time. No more messy email chains or lost files - everything you need is just a click away!\r\n\r\nBut that\'s not all - InfinityFlow.io is packed with powerful features to take your productivity to unprecedented heights. Our smart automation tools will streamline repetitive tasks, freeing up valuable time for you to tackle creative challenges. With personalized notifications and reminders, you\'ll never miss a deadline or important milestone again!\r\n\r\nSecurity is our top priority at InfinityFlow.io. Rest easy knowing that your sensitive data is protected by state-of-the-art encryption and authentication protocols. Focus on your work with peace of mind, knowing that your information is safe and secure.\r\n\r\nWhether you\'re a solopreneur, a small team, or a large enterprise, InfinityFlow.io scales to fit your needs. Our flexible plans and customizable workflows ensure that our platform adapts to your unique requirements and maximizes your efficiency.\r\n\r\nJoin the ranks of successful professionals who have harnessed the power of InfinityFlow.io to revolutionize their productivity. As a limited-time offer, we invite you to try InfinityFlow.io FREE for 14 days! Experience the transformative impact it will have on your work life, without any commitment.\r\n\r\nAre you ready to unlock the door to unparalleled productivity? Visit www.infinityflow.io and start your journey towards infinite possibilities today!\r\n\r\nLet InfinityFlow.io be your secret weapon for success.\r\n\r\nTo boundless achievements,\r\n\r\n\r\nGo Get your best LTD for 2023 >>>>> https://rebrand.ly/infinityflow',''),(4712,1,1201,'6','Coldiron',''),(4713,1,1201,'3','coldiron.adelaide@msn.com',''),(4714,1,1201,'4','You’re not going to believe this!\r\n\r\n\r\n\r\n\r\n\r\nDaniel here...\r\n\r\n\r\n\r\n\r\n\r\nDid you know that you can now use robots to sell things for you while you’re asleep?\r\n\r\n\r\n\r\n\r\n\r\nI recently discovered a few tools that allow you to set up bots that network with business owners in a FULLY automated way.\r\n\r\n\r\n\r\n\r\n\r\nIt’s all being taught inside this new training program called, “AI Profits”\r\n\r\n\r\nhttps://marketingworldx2.myclickfunnels.com/optin?new_run=true\r\n\r\n\r\n\r\n \r\n\r\n\r\nThe best part is that you don’t have to be an expert or do much more than click a few buttons to get started.\r\n\r\n\r\n\r\n\r\n\r\nI’ll see you on the inside!\r\n\r\n\r\n\r\n\r\n\r\n-Daniel',''),(4715,1,1202,'6','Mike Holmes',''),(4716,1,1202,'2','83651175773',''),(4717,1,1202,'3','mikelida@gmail.com',''),(4718,1,1202,'4','Hi there \r\n \r\nJust checked your juiceelectrical.co.nz baclink profile, I noticed a moderate percentage of toxic links pointing to your website \r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge. \r\n \r\nStart recovering your ranks today: \r\nhttps://www.hilkom-digital.de/professional-linksprofile-clean-up-service/ \r\n \r\n \r\nRegards \r\nMike Holmes\r\nHilkom Digital SEO Experts \r\nhttps://www.hilkom-digital.de/',''),(4719,1,1202,'5','Google',''),(4720,1,1203,'6','Libby Evans',''),(4721,1,1203,'2','04.10.05.83.21',''),(4722,1,1203,'3','libbyevans461@gmail.com',''),(4723,1,1203,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- We guarantee to gain you 300-1000+ followers per month.\r\n- People follow you because they are interested in you, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nLibby',''),(4724,1,1204,'6','Rufus Maggio-Johns',''),(4725,1,1204,'2','(662) 208-1557',''),(4726,1,1204,'3','rufus.maggiojohns@efficiencyedge.co',''),(4727,1,1204,'4','Greetings,\r\n\r\nBuried under work?\r\n\r\nThis open tool I\'m sharing below was incredibly beneficial in simplifying my business. I completely ditched spreadsheets and email chains for project management.\r\n\r\nhttps://www.efficiencyedge.co/for/juiceelectricalconz-qKfH\r\n\r\nIt enabled me to set clear tasks, define processes, manage time, and develop my business. Maybe you can find value in it too.\r\n\r\nExcuse the unsolicited advice, just sharing in case it\'s of use. Please let me know what you think.\r\n\r\nCheers,\r\n\r\nRufus',''),(4728,1,1205,'6','Annapr',''),(4729,1,1205,'2','87859269241',''),(4730,1,1205,'3','annapr@nutritiouseggs.com',''),(4731,1,1205,'4','Hi!\r\nΙ\'vе nоtісed thаt manу guys рrеfеr regular girlѕ.\r\nI арplаude the men out thеre who had thе ballѕ tо еnjoу thе love оf many women and сhoоsе thе onе that he knew wоuld be hiѕ beѕt friеnd during thе bumpу аnd crаzу thing сalled lіfе.\r\nI wаntеd to be that friend, nоt just а ѕtаble, relіablе and borіng hоusewіfе.\r\nΙ am 24 yеars оld, Аnnа, from thе Czeсh Rеpubliс, knоw Еnglish lаnguаgе аlѕo.\r\nΑnywaу, you саn fіnd my profіlе hеre: http://whaemanmaseti.tk/idl-37368/',''),(4732,1,1205,'5','Google',''),(4733,1,1206,'6','William Taylor',''),(4734,1,1206,'2','0688 160 27 82',''),(4735,1,1206,'3','mallory.cope@googlemail.com',''),(4736,1,1206,'4','Good Day ,\r\n\r\nSnooze peacefully without a peep. The EPAP mask is your pocket-friendly portal to restful nights.\r\n\r\nVisit https://sleepl.ink/sleep-easy to enjoy a restful night\'s sleep.\r\n\r\nRevolutionize your sleep with the EPAP mask. Tackle obstructive sleep apnea, keep airways open, and enhance sleep quality seamlessly. \r\n\r\nA non-invasive, compact alternative to CPAP devices and is cheaper by more than 75%. Have questions?\r\n\r\nFind out more at https://sleepl.ink/sleep-easy and experience restful nights.\r\n\r\n\r\nBest regards,\r\n\r\n David Johnson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4737,1,1207,'6','Diane Genet',''),(4738,1,1207,'2','0273572259',''),(4739,1,1207,'3','Dianegenet11@gmail.com',''),(4740,1,1207,'4','I need an extra power point in my kitchen .',''),(4741,1,1208,'6','Bell Urquhart',''),(4742,1,1208,'2','0360 6988765',''),(4743,1,1208,'3','urquhart.bell9@gmail.com',''),(4744,1,1208,'4','You’re not going to believe this!\r\n\r\n\r\n\r\n\r\n\r\nChase here...\r\n\r\n\r\n\r\n\r\n\r\nDid you know that you can now use robots to sell things for you while you’re asleep?\r\n\r\n\r\n\r\n\r\n\r\nI recently discovered a few tools that allow you to set up bots that network with business owners in a FULLY automated way.\r\n\r\n\r\n\r\n\r\n\r\nIt’s all being taught inside this new training program called, “AI Profits”\r\n\r\nhttps://marketingworldx2.myclickfunnels.com/optin?new_run=true\r\n\r\n\r\n\r\n\r\n\r\nThe best part is that you don’t have to be an expert or do much more than click a few buttons to get started.\r\n\r\n\r\n\r\n\r\n\r\nI’ll see you on the inside!\r\n\r\n\r\n\r\n\r\n\r\n-Chase',''),(4745,1,1209,'6','Reyna Blankinship',''),(4746,1,1209,'2','070 8162 0673',''),(4747,1,1209,'3','webscraftservices@gmail.com',''),(4748,1,1209,'4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\n\r\nCheck our sample work https://drive.google.com/drive/folders/17SA9Ludm-nrCF1OyLKJ8RD1aud1y31bm?usp=sharing\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust Reply to this message or email us webscraftservices@gmail.com\r\n\r\nThanks',''),(4749,1,1210,'6','William Johnson',''),(4750,1,1210,'2','586-888-2445',''),(4751,1,1210,'3','blackburn.jaunita@hotmail.com',''),(4752,1,1210,'4','Hello There,\r\n\r\nSleep snug without a snore. The Optipillows EPAP Mask is your pocket-friendly portal to restful nights.\r\n\r\nCheck out https://sleepl.ink/sleep-easy to sleep the night away.\r\n\r\nRevolutionize your sleep with the EPAP mask. Combat obstructive sleep apnea, keep airways open, and improve sleep quality with ease. \r\n\r\nA non-invasive, portable alternative to CPAP devices and is cheaper by more than 75%. Any questions?\r\n\r\nFind out more at https://sleepl.ink/sleep-easy and enjoy peaceful slumbers.\r\n\r\n\r\nBest regards,\r\n\r\n Joseph Davis \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4753,1,1211,'6','Megan Breeze',''),(4754,1,1211,'2','0320 3301191',''),(4755,1,1211,'3','megan.breeze@gmail.com',''),(4756,1,1211,'4','AMAZON BLACK FRIDAY DEALS ARE LIVE!\r\n\r\nDon\'t miss out jaw-dropping Amazon\'s Black Friday deals\r\n\r\nCheck on Amazon- https://bit.ly/3PrZISP',''),(4757,1,1212,'6','Anna Cousin',''),(4758,1,1212,'2','04.90.97.55.65',''),(4759,1,1212,'3','cousin.anna58@yahoo.com',''),(4760,1,1212,'4','Hey, juiceelectrical.co.nz site speed could use a boost. Upgrade to cloud hosting for faster performance now! \r\nCheck out the deal at https://startupsumo.com/go for 4 months free.',''),(4761,1,1213,'6','Major Cookson',''),(4762,1,1213,'3','cookson.major@outlook.com',''),(4763,1,1213,'4','To the juiceelectrical.co.nz Webmaster.\r\n\r\nI’m Major, and I recently found your site, juiceelectrical.co.nz.\r\n\r\nYour site is has much going for it, but I’ve got an idea to make it even more effective.\r\n\r\nIntroducing Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a real-time demo right now.\r\n\r\nWeb Visitors Into Leads is a software which is works on your site, ready to grab every visitor’s Name, Email address, and Phone Number. It signals you the second they make you know they’re interested – meaning that you can talk to that lead as they’re actually browsing your site.\r\n\r\nPlus, when you’ve captured their phone number, with our new SMS Text With Lead function, you can immediately start a text (SMS) conversation… and if they don’t agree on your offer then, you can follow up with text messages for fresh offers, content links, even just “how you doing?” notes to develop a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between connecting with someone within 5 minutes versus a half-hour implies you could be turning up to 100X more leads now!\r\n\r\nMajor\r\nPS: Studies show that 70% of a site’s visitors disappear and are lost after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads provides a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nThere are customers waiting to talk with you at this moment… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try out Web Visitors Into Leads today.\r\n\r\nIf you\'d like to unsubscribe click https://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nMerely a fast note - the names and email used here, Major and Cookson, are not real and not genuine contact information. We appreciate transparency and want to ensure sure you’re aware! If you desire to contact with the real person behind this message, kindly visit our website, and we’ll connect you with the correct individual.}',''),(4764,1,1214,'6','Lupe Bastyan',''),(4765,1,1214,'2','0339 1305556',''),(4766,1,1214,'3','lupe.bastyan@msn.com',''),(4767,1,1214,'4','To the juiceelectrical.co.nz Administrator.\r\n\r\nI am Lupe and, contrary to many emails you probably get, I wish to alternatively provide you with a word of praise – Kudos!\r\n\r\nWhy?\r\n\r\nA portion of my job is to examine websites and the work you’ve done with juiceelectrical.co.nz definitely is notable.\r\n\r\nIt is clear you took building a website seriously and made a real commitment of time and resources into creating it high quality.\r\n\r\nNonetheless, there is, however… more accurately, a question…\r\n\r\nSo, when someone like me discovers your site – perhaps at the top of the search results (good job BTW) or just through a random link, how do you know?\r\n\r\nEven more importantly, how do you make a connection with that person?\r\n\r\nData show that 7 out of 10 visitors leave – they’re there one second and then gone.\r\n\r\nHere’s a way to create INSTANT engagement that might be new to you…\r\n\r\nWeb Visitors Into Leads is a tool that’s functions on your site, ready to grab any visitor’s Name, Email address and Phone Number. It lets you know RIGHT AWAY that they are interested – so that you can chat to that lead whilst they’re actually browsing juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to experience a Live Demo with Web Visitors Into Leads now to see precisely how it functions.\r\n\r\nIt might be a revolutionary change for your business – and it turns even better… once you have captured their phone number, with our new SMS Text With Lead function, you can instantly start a text (SMS) chat – immediately (and there’s actually a 100X difference between connecting with someone within 5 minutes compared to 30 minutes.)\r\n\r\nPlus then, even if you don’t finalize a deal immediately, you can link later on with text messages for fresh deals, content links, or even just follow up notes to establish a relationship.\r\n\r\nAll I’ve just outlined is easy, convenient, and effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn what Web Visitors Into Leads can provide for your business.\r\n\r\nYou can be converting up to 100X more leads today!\r\n\r\nLupe\r\nPS: Web Visitors Into Leads gives a FREE 14 days trial – and it even includes International Long Distance Calls. \r\nThere are customers eager to talk with you at this moment… don’t leave them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to experience Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\n\r\nJust a quick note - the names and email used here, Lupe and Bastyan, are not real and not real contact details. We appreciate transparency and wish to make you’re aware! If you desire to contact with the genuine person behind this message, kindly visit our website, and we’ll connect you with the right individual.}',''),(4768,1,1215,'6','Lorrie Mcewen',''),(4769,1,1215,'2','079 4237 7562',''),(4770,1,1215,'3','mcewen.lorrie@outlook.com',''),(4771,1,1215,'4','AMAZON BLACK FRIDAY DEALS ARE LIVE!\r\n\r\nDon\'t miss out jaw-dropping Amazon\'s Black Friday deals\r\n\r\nCheck on Amazon- https://bit.ly/3PrZISP',''),(4772,1,1216,'6','Delgadillo',''),(4773,1,1216,'2','06574 99 26 60',''),(4774,1,1216,'3','zenaida.delgadillo23@msn.com',''),(4775,1,1216,'4','Unlock Your Trading Potential with Home Run Trading Mastery!\r\n\r\nAre you ready to elevate your trading game to new heights? Look no further – Home Run Trading Mastery is your ticket to unlocking untapped potential in the dynamic world of trading. And here\'s the exclusive opportunity you\'ve been waiting for.\r\n\r\nHome Run Trading Mastery: Your Path to Success\r\nHome Run Trading Mastery isn\'t just another trading platform; it\'s a comprehensive program designed to empower traders with the knowledge and strategies needed to navigate the markets successfully. Whether you\'re a seasoned trader or just starting, this program is tailored to meet you where you are and guide you towards your financial goals.\r\n\r\nWhy Choose Home Run Trading Mastery?\r\nExpert Guidance: Benefit from expert insights and strategies developed by seasoned traders who\'ve mastered the art of the markets.\r\nComprehensive Resources: Gain access to a wealth of resources, from educational materials to advanced trading tools, providing you with a holistic approach to trading.\r\nProven Success: Home Run Trading Mastery has a track record of success stories. Join a community of like-minded individuals who are achieving their trading goals with this powerful program.\r\n\r\nHow to Get Started\r\nVisit the Exclusive Link: Head to https://homeruntradingmastery.com/#aff=MahmoudAlsabahi to access this exclusive offer.\r\nSign Up and Dive In: Register for Home Run Trading Mastery and start your journey towards financial success.\r\nExperience the Difference: Watch as your trading skills evolve, guided by expert strategies and the exclusive insights.\r\nDon\'t Miss Out on This Exclusive Opportunity!\r\nHome Run Trading Mastery, is not just a program; it\'s a gateway to unlocking your full trading potential. Seize this exclusive opportunity and embark on a journey towards financial mastery.\r\n\r\nSign up now and let Home Run Trading Mastery be the catalyst for your trading success!',''),(4776,1,1217,'6','Susan Karsh',''),(4777,1,1217,'2','(11) 2988-7586',''),(4778,1,1217,'3','mcculloch.paige@yahoo.com',''),(4779,1,1217,'4','Hello,\r\n\r\nI 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. \r\n\r\nPlus, our plans start as low as $10 per month if you decide to continue. \r\n\r\nOur AI Agents Can:\r\n\r\n• Assist your team with tasks, projects and research, which will increase productivity.\r\n• Crush to-do list by writing - ads, code, emails, content, sales copy, contracts & more.\r\n• Give you time to focus on important things instead of handling mundane tasks.\r\n• Save you time, save you money and make your team much more effective.\r\n• Make sales calls, take inbound calls and answer support questions (coming soon).\r\n\r\n... and much, MUCH more!\r\n\r\nWatch our video here and see how we can help: https://bit.ly/myaa-trial \r\n\r\nOur clients are saving 20%- 30% on operational costs each month by using our AI Agents to handle hundreds of tasks.\r\n\r\nClaim your FREE Trial Of our AI Agents Now, before this offer ends. Get started here: https://bit.ly/myaa-trial \r\n\r\nBest,\r\n\r\nSusan Karsh',''),(4780,1,1218,'6','Nelle Felton',''),(4781,1,1218,'2','0475 91 85 44',''),(4782,1,1218,'3','nelle.felton17@googlemail.com',''),(4783,1,1218,'4','HI.\r\nMy name is Eyal.\r\n\r\n\r\nContacting you because I saw your google listing\r\n\r\n(google listing ) is when you type in google \"your service\" in \"your place\"\r\n\r\nfor example dentists in dallas or plumbers in Chicago)\r\n\r\n\r\nYou will find all results under \"businesses\" or \"places\"\r\n\r\n\r\nyour business is not on the first places so people who look up your services on Google\r\n\r\nDo not think you are there and as a result look to your opponents\r\n\r\nThey are among the first positions on the chart.\r\n\r\n\r\nYou understand how critical this is.\r\n\r\n\r\nI was able to assist in boosting it by using something known as \"Semantic Seo\"\r\n\r\n\r\nsemantic seo is a way we can interact with Google using \"code language\"\r\n\r\nand increase your rank \"overnight\" on google maps and google listing.\r\n\r\n\r\n100% refund if you do not get better within two weeks.\r\n\r\n\r\nAre you interested with? or can i send more information?\r\n\r\nI don\'t want to bother you. Only if you are interested in getting your website up on google listing business, as we have already done for thousands of businesses in recent years,\r\n\r\nemail me back to info@startsuccessonline.com and I will send you more details.\r\n\r\n\r\n\r\nThanks.\r\n\r\n\r\nEyal Levi.',''),(4784,1,1219,'6','Ryan King',''),(4785,1,1219,'2','0272394322',''),(4786,1,1219,'3','ryan.king@greenstone.tech',''),(4787,1,1219,'4','Hello Juice team,\r\n\r\nI am a local website developer near your site in Christchurch and came across your website for Juice Electrical.\r\n\r\nWe’re helping businesses just like yours reduce their web hosting costs, by establishing direct hosting services without unnecessary added on monthly fee’s. We understand that for some businesses, finances are tight, so we’re offering a free independent review of your current website setup. Let us help find the most cost effective solution for you.\r\n\r\nIf you need any assistance with your website or other software needs, feel free to reach out to me at Greenstone.\r\n\r\nKind regards,\r\nRyan King',''),(4788,1,1220,'6','Kellie Wylly',''),(4789,1,1220,'2','062 910 96 53',''),(4790,1,1220,'3','wylly.kellie@gmail.com',''),(4791,1,1220,'4','Hi juiceelectrical.co.nz Admin.\r\n\r\nI am Kellie and I just came across your site - juiceelectrical.co.nz - in the search listings.\r\n\r\nThis is what that signifies to me…\r\n\r\nYour SEO’s functioning.\r\n\r\nYou’re attracting eyeballs – at least mine.\r\n\r\nYour content’s not bad, would not change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs do not pay the invoices.\r\n\r\nCUSTOMERS do pay the bills.\r\n\r\nAnd studies indicate that 7 out of 10 visitors to juiceelectrical.co.nz will stop by, have a look, and then depart without doing else.\r\n\r\nIt’s like they never even were even there there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it very simple for them to raise their hand, say, okay, let’s talk without requiring them to even so much as pull their mobile from their pocket… due to Lead Conversion Software.\r\n\r\nLead Conversion Software is a software tool that sits on your site, set and waiting to capture to seize any user’s Name, Email address, and Phone Number. It lets you know immediately immediately – so you can converse with that lead immediately… before they leave.\r\n\r\nCLICK HERE https://turboleadgeneration.com to test a Live Demo with Lead Conversion Software today to see precisely how it works.\r\n\r\nNow it’s also true it’s also true that when contacting to potential customers, you MUST act fast fast – the difference between between contacting someone within 5 minutes 5 minutes versus is huge!\r\n\r\nThat’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 begin a text message (SMS) conversation with them with them… so even if if they don’t take you up on your offer right away right away, you continue to text them to text them new proposals, content links, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://turboleadgeneration.com to find out about everything Web Visitors Into Leads can do Visitor to Lead Widget can do and start turing eyeballs into money.\r\n\r\nKellie\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial!\r\nIt even includes includes International Long Distance Calling.\r\nPaying customers are waiting.\r\nStarting connecting today by CLICKING HERE https://turboleadgeneration.com to try Lead Conversion Software now.\r\n\r\nIf you\'d like to unsubscribe to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nSimply a quick message - the names and email address applied in this message, Kellie and Wylly, are stand-ins and not actually actual contact information. We esteem transparency and aimed to assure you are aware of this! In case you wish to make contact with the true one behind this message, please check out our website, and we’ll link you with the proper entity.',''),(4792,1,1221,'6','Sharron Deluna',''),(4793,1,1221,'2','707-567-5141',''),(4794,1,1221,'3','sharron.deluna@gmail.com',''),(4795,1,1221,'4','Are you open?\r\nhttps://youtu.be/2020DY5EPH0?si=PM4lbPAgiDMyADBT',''),(4796,1,1222,'6','Julia Reyes',''),(4797,1,1222,'2','858-946-4733',''),(4798,1,1222,'3','microsoft@earnmorenow.info',''),(4799,1,1222,'4','Hello webmaster,\r\n\r\nI\'m Julia here at Earnmorenow, Earnmorenow is a 3rd party partner of Microsoft, and we\'ve launched a campaign to provide prizes (capital, iPhone, etc.) to webmasters like you, so you have greater motivation to grow your website and business.\r\nIn return, we expect that in the future you will purchase traffic from Microsoft Advertising? or monetize your website through Media.net (Media.net is a contextual ad network that is powered by Yahoo! and Bing)\r\n\r\nYou only need 1 minute to fill out the form.\r\n\r\nClick here to get your prize now: https://www.earnmorenow.info/microsoft\r\n\r\nGood Luck,\r\nJulia F. Reyes\r\n\r\nUNSUBSCRIBE: https://www.earnmorenow.info/unsubscribe\r\n\r\n4351 California St, San Francisco, CA 94118',''),(4800,1,1223,'6','Diana Cruz',''),(4801,1,1223,'2','1234567890',''),(4802,1,1223,'3','dianacruz.mkt@gmail.com',''),(4803,1,1223,'4','Hi team juiceelectrical.co.nz,\r\n\r\nI came across your Website, when searching on Google and noticed that you do not show in the organic listings.\r\n\r\nOur main focus will be to help generate more sales & online traffic.\r\n\r\nWe can place your website on Google\'s 1st page. We will improve your website’s position on Google and get more traffic.\r\n\r\nI would be happy to send you \"Quotes\", “Proposal” Past work Details, \"Our Packages\", and “Offers”!\r\n\r\nYour sincerely,\r\nDiana',''),(4804,1,1224,'6','Susan Karsh',''),(4805,1,1224,'2','036605 81 60',''),(4806,1,1224,'3','latisha.murray@hotmail.com',''),(4807,1,1224,'4','Hello,\r\n\r\nI 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. \r\n\r\nPlus, our plans start as low as $10 per month if you decide to continue. \r\n\r\nOur AI Agents Can:\r\n\r\n• Assist your team with tasks, projects and research, which will increase productivity.\r\n• Crush to-do list by writing - ads, code, emails, content, sales copy, contracts & more.\r\n• Give you time to focus on important things instead of handling mundane tasks.\r\n• Save you time, save you money and make your team much more effective.\r\n• Make sales calls, take inbound calls and answer support questions (coming soon).\r\n\r\n... and much, MUCH more!\r\n\r\nWatch our video here and see how we can help: https://bit.ly/myaa-trial \r\n\r\nOur clients are saving 20%- 30% on operational costs each month by using our AI Agents to handle hundreds of tasks.\r\n\r\nClaim your FREE Trial Of our AI Agents Now, before this offer ends. Get started here: https://bit.ly/myaa-trial \r\n\r\nBest,\r\n\r\nSusan Karsh',''),(4808,1,1225,'6','Eric Jones',''),(4809,1,1225,'2','555-555-1212',''),(4810,1,1225,'3','ericjonesmyemail@gmail.com',''),(4811,1,1225,'4','Dear juiceelectrical.co.nz Administrator! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(4812,1,1226,'6','Cherie Burk',''),(4813,1,1226,'2','01.14.77.16.38',''),(4814,1,1226,'3','burk.cherie@gmail.com',''),(4815,1,1226,'4','Weight loss stuck? You may have a toxic fatty acid that blocks weight loss. \r\n\r\nAccording to Newcastle University in England, this fatty acid forces fat cells to stream into your blood… \r\n\r\nAnd causes your body to pack on internal visceral fat. \r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\nOnce this happens, your fat-burning metabolism slows down to a crawl… your hormones completely shut down… and your body stores fat instead of burning them as energy. \r\n\r\nFortunately, a renegade doctor from Japan has uncovered a natural “belly fat Drāno” juice that flushes out this toxic fatty acid from your body. \r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\n 67,129 folks are drinking this delicious juice every morning… \r\n\r\nAnd they’re losing an average of 28 lbs – in as little as 21 days! \r\n\r\n>>> drink 1 cup every morning to lose “spare-tire” belly in record time \r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\nRobert lost 62 lbs of deadly fat clogging up his arteries and completely transformed his body in his 40s. \r\n\r\nHis wife Sonya also lost 38 lbs and 4 dress sizes… and it forced her to shop for a whole new wardrobe!\r\n\r\nClick here for the details- https://tinyurl.com/3kd73x6k\r\n\r\nTo your good health,\r\n\r\nThanks\r\nJessica',''),(4816,1,1227,'6','Kirsten Helfer',''),(4817,1,1227,'2','09831523806',''),(4818,1,1227,'3','helferkirsten@gmail.com',''),(4819,1,1227,'4','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too. \r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search. I am so confident that I will offer you a full refund of my fee should you not see an improvement in your google ranking within two months.\r\n\r\nWe\'ve got lots to do together to make you stand out!\r\n\r\nPlease give us the chance to work with you. You can see our rates on our website.\r\n\r\nIf this email has reached you by mistake, or if you do not wish to take advantage of this opportunity, please accept my apologies for any inconvenience caused. We are a small business and we are just trying to get some customers. I\'m sure you were in our position once too. Rest assured that we will not contact you again should you reply to this email with the word \'unsubscribe\'\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\n\r\nKirsten Helfer\r\n\r\nIn return, would you please be so kind as to leave a comment on one of my posts. I\'ll let you know which one if you reply to me.\r\n\r\nSpread the love!',''),(4820,1,1227,'5','google',''),(4821,1,1228,'6','Lincoln Schenk',''),(4822,1,1228,'2','0479 40 39 95',''),(4823,1,1228,'3','lincoln.schenk@yahoo.com',''),(4824,1,1228,'4','Today we launch our Black Friday discounts. We significantly reduced our prices on all of our applications.\r\n\r\nAccess competitive prices on applications for your website such as: SEO, video, email marketing, saas applications, productivity, social media and more.\r\n\r\nGet the discounts here:\r\n\r\nhttps://bit.ly/BlackFridayHotAppsDiscounts',''),(4825,1,1229,'6','Terry Estes',''),(4826,1,1229,'2','09831523806',''),(4827,1,1229,'3','terrydestes6@gmail.com',''),(4828,1,1229,'4','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too. \r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search. I am so confident that I will offer you a full refund of my fee should you not see an improvement in your google ranking within two months.\r\n\r\nWe\'ve got lots to do together to make you stand out!\r\n\r\nPlease give us the chance to work with you. You can see our rates on our website.\r\n\r\nIf this email has reached you by mistake, or if you do not wish to take advantage of this opportunity, please accept my apologies for any inconvenience caused. We are a small business and we are just trying to get some customers. I\'m sure you were in our position once too. Rest assured that we will not contact you again should you reply to this email with the word \'unsubscribe\'\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\n\r\nTerry Estes\r\n\r\nIn return, would you please be so kind as to leave a comment on one of my posts. I\'ll let you know which one if you reply to me.\r\n\r\nSpread the love!',''),(4829,1,1229,'5','google',''),(4830,1,1230,'6','Reagan',''),(4831,1,1230,'2','617-323-8552',''),(4832,1,1230,'3','juiceelectrical.co.nz@zoho.com',''),(4833,1,1230,'4','Good day, \r\n\r\nI hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nThe bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: http://bangeshop.com\r\n\r\nThe Best,\r\n\r\nReagan',''),(4834,1,1231,'6','Jack Aitken',''),(4835,1,1231,'2','0211688256',''),(4836,1,1231,'3','jck.aitken@gmail.com',''),(4837,1,1231,'4','4 downlights in residential house flickering or stopped working. Product code for the downlight: REX10DLWHWWDIM.\r\nSomebody at a lighting store said that light is not the issue - apparently it is the \'driver\'. \r\nThis has happened before and driver replacing fixed problem. Driver model R10LED360D 10W Dimmeable LED Driver.\r\nThe multiple occurance suggests a larger electrical problem.\r\nAlso the lights have stopped working on stovetop fan extractor unit. Model Classic791',''),(4838,1,1231,'5','Google',''),(4839,1,1232,'6','Amanda Benson',''),(4840,1,1232,'2','905-689-2976',''),(4841,1,1232,'3','benson.amanda@hotmail.com',''),(4842,1,1232,'4','Make money while you sleep? You won\'t believe what I just found!\r\n\r\nIf you\'ve been looking for a way to make passive income online with bots and automation I have the course for you!\r\n\r\nIt\'s called \"AI Profits\" - https://marketingworldx2.myclickfunnels.com/optin?new_run=true\r\n\r\nThis course will teach you how to reach out to millions in minutes with deals on products and services \r\n\r\nWe\'re on sale RIGHT NOW so act fast on this life changing course!\r\n\r\nHappy Money Making,\r\n-Daniel',''),(4843,1,1233,'6','Ignacio Wigington',''),(4844,1,1233,'2','425-587-3787',''),(4845,1,1233,'3','wigington.ignacio86@msn.com',''),(4846,1,1233,'4','Hello juiceelectrical.co.nz Admin.\r\n\r\nThis is Ignacio and I discovered juiceelectrical.co.nz a few minutes ago. \r\n\r\nSeems great… but now what?\r\n\r\nBy that I mean, when someone like me discovers your website – either through Searching or just bouncing around – what happens next? Do you get many of leads from your site, or at least enough to make you pleased?\r\n\r\nHonestly, most business websites fall short when it comes to generating paying customers. Studies reveal that 70% of a site’s visitors leave and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really SIMPLE for every visitor who arrives to get a personal phone call from you as soon as they hit your site…\r\n \r\nYou can –\r\n \r\nLead Conversion is a software widget that’s functions on your site, set 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 really looking over your site.\r\n\r\nCLICK HERE https://turboleadgeneration.com to test a Live Demo with Web Conversion now to see specifically how it works.\r\n\r\nYou’ll be astonished - the difference between contacting someone within 5 minutes versus a half-hour or more later could enhance your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nQuite sweet – AND effective.\r\n\r\nCLICK HERE https://turboleadgeneration.com to discover what Lead Conversion can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nIgnacio\r\nPS: Web Conversion offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers eager with you right now… don’t keep them waiting. \r\nCLICK HERE https://turboleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nSimply a swift note - the names and email address utilized in this message, Ignacio and Wigington, are stand-ins and not really genuine contact information. We appreciate openness and aimed to make sure you’re informed! Should you want to make contact with the real one behind this memo, do go to our site, and we’ll unite you with the proper entity.',''),(4847,1,1234,'6','Kathi Whitfeld',''),(4848,1,1234,'2','030 53 54 78',''),(4849,1,1234,'3','whitfeld.kathi@outlook.com',''),(4850,1,1234,'4','To the juiceelectrical.co.nz Administrator. I am Kathi, and for a moment, envision this…\r\n\r\n- A person does a lookup and lands at juiceelectrical.co.nz.\r\n\r\n- They linger for a moment to explore. “I am interested… but… possibly…”\r\n\r\n- And then they click the back button and check out the other search results instead.\r\n\r\n- Ultimately – you got an eyeball, but nothing to show for it.\r\n\r\n- There they go.\r\n\r\nThis situation isn’t actually your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a mark.\r\n\r\nBut you can actually fix that.\r\n\r\nWeb Visitors Into Leads is a software that is works on your site, set to seize any visitor’s Name, Email address, and Phone Number. It allows you know right then and there – permitting you to call that lead while they’re really viewing your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads today to see precisely how it works.\r\n\r\n money when it comes to contacting leads – the difference between reaching out to someone in 5 minutes versus 30 minutes later can be enormous – like 100 times better!\r\n\r\nMoreover, 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 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.\r\n\r\nPowerful stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can offer for your business.\r\n\r\nYou might be turning up to 100X more leads right now!\r\n\r\nKathi\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even comes with International Long Distance Calls. \r\nYou have customers waiting to talk with you at this moment… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try out Web Visitors Into Leads today.\r\n\r\nIf you\'d prefer to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nMerely a fast note - the names and email used here, Kathi and Whitfeld, are not real and not real contact details. We appreciate transparency and wanted to make sure you’re aware! If you wish to contact with the genuine person behind this message, kindly visit our website, and we’ll associate you with the right individual.}',''),(4851,1,1235,'6','Louie Sinnett',''),(4852,1,1235,'2','(02) 6124 5966',''),(4853,1,1235,'3','sinnett.louie94@outlook.com',''),(4854,1,1235,'4','Thats right!....\r\n \r\nThis brand spanking *NEW* software is making me up \r\nto $347 A Day.\r\n\r\n ==>>https://100-k.systeme.io/f50277c0\r\n\r\nHurry before it\'s too late. \r\n\r\nRegards, Mark',''),(4855,1,1236,'6','JeannevoB',''),(4856,1,1236,'2','86861834489',''),(4857,1,1236,'3','aslamovaaurina@yandex.ru',''),(4858,1,1236,'4','Hi. \r\nThere is a new project Autentic, now they have Presale, Guys pour serious budgets into marketing. They have a \r\n<a href=https://aut.finance/register/ru?ref=3344719299>referral program</a>, they give 10% of the client\'s deposit. I did a test, people are coming in very fast, see the <a href=https://bit.ly/49EYACZ>stats</a>. They also have a \r\n<a href=https://zealy.io/c/aut/invite/yZi2-JHpPsv-dqGS3mTaP>campaign on Zealy</a>, where you can also pour people. \r\n \r\nIn general, until they have not run up, you can withdraw money normally. \r\nRegister on my refs please, I\'ll be grateful.',''),(4859,1,1236,'5','Google',''),(4860,1,1237,'6','Sandra Rutherford',''),(4861,1,1237,'2','0220973411',''),(4862,1,1237,'3','sjr1910@gmail.com',''),(4863,1,1237,'4','Hi,\r\nI wondered if I could arrange for someone to check the electrics in a house that we have recently moved back into as some of the sockets don\'t work and I am not sure others are safe, we can also hear bussing in the walls. We would also possibly like additional sockets and lights fitted. The address is 62 Hills Road, so quite local. If you could provide an idea of the time frame we would be working with to get any necessary work done too, that would be great.\r\nThanks,\r\nSandra',''),(4864,1,1237,'5','Google',''),(4865,1,1238,'6','Theresa Smith',''),(4866,1,1238,'2','615-313-7742',''),(4867,1,1238,'3','whittle.luca@outlook.com',''),(4868,1,1238,'4','Hello,\r\n\r\nI work for Elebands. \r\n\r\nWe make ultra-thin, fashionable, all day wearable body weight bands that you put on your wrist, ankle & 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. \r\n\r\nThe 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. \r\n\r\nThat 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.\r\n\r\nBenefits You’ll Get Instantly:\r\n You’ll burn up to 1,500 calories a day as your body gets more toned.\r\n You’ll start losing weight the natural way without having to workout.\r\n You’ll start building more muscles and strength as you just go about your day.\r\n\r\nImagine 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. \r\n\r\nMany of our clients are losing 2-3 pounds a week and getting tremendous health benefits.\r\n\r\nUse this coupon code to get 20% off: SAVE-20%-TODAY\r\n\r\nVisit our site now and get the body you always wanted: https://bit.ly/elebands \r\n\r\nTheresa Smith\r\nBrand Ambassador \r\nElebands USA\r\n\r\nGET STARTED NOW: https://bit.ly/elebands',''),(4869,1,1239,'6','Mike Dutton',''),(4870,1,1239,'2','87155344134',''),(4871,1,1239,'3','peterDilkmaida@gmail.com',''),(4872,1,1239,'4','Hello \r\n \r\nI have just took a look on your SEO for juiceelectrical.co.nz for its SEO Trend and saw that your website could use a boost. \r\n \r\nWe will improve your ranks organically and safely, using only state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/unbeatable-seo/ \r\n \r\n \r\nRegards \r\nMike Dutton\r\nDigital X SEO Experts',''),(4873,1,1239,'5','Google',''),(4874,1,1240,'6','Imogen Vines',''),(4875,1,1240,'2','079 8159 6969',''),(4876,1,1240,'3','imogen.vines@msn.com',''),(4877,1,1240,'4','AMAZON BLACK FRIDAY DEALS ARE LIVE! \r\n\r\nNEVER BEFORE DISCOUNTS\r\n\r\nDon\'t miss out jaw-dropping Amazon\'s Black Friday deals\r\n\r\nCheck on Amazon- https://bit.ly/3PrZISP',''),(4878,1,1241,'6','Merry Morgans',''),(4879,1,1241,'2','079 3420 5512',''),(4880,1,1241,'3','merry.morgans80@hotmail.com',''),(4881,1,1241,'4','STOP TRADING TIME FOR MONEY\r\n\r\nEasier said than done... Until now\r\n\r\nIf you Google \"What is Affiliate Marketing\"\r\nyou will get BILLIONS of answers... WHAT!?\r\n\r\nDoes that sound like fun?\r\nDoes it seem like you\'re getting a clear and simple answer?\r\nWe didn\'t think so.\r\n\r\nThis is EXACTLY why we wrote our FREE E-book.\r\nWe break it down into SIMPLE steps so you know EXACTLY what Affiliate Marketing\r\nIS and HOW to start it as a complete beginner instead of trying to find an answer amongst Billions of results!\r\n\r\nAll you have to do is click here to get the free book and get started. CLICK (https://mydownrange.com/affiliate-landing-page)\r\n\r\n\r\nAfraid to click on email links? Us too. In that case, just go to our website directly at https://mydownrange.com/affiliate-landing-page\r\n\r\n\r\nRespectfully,\r\n\r\nThe Down Range Team\r\nwww.MyDownRange.com',''),(4882,1,1242,'6','Susan Karsh',''),(4883,1,1242,'2','0370 8143151',''),(4884,1,1242,'3','tiffani.felton@gmail.com',''),(4885,1,1242,'4','Hello Again,\r\n\r\nI 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.\r\n\r\nI 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. \r\n\r\nPlus, our plans start as low as $10 per month if you decide to continue. \r\n\r\nOur AI Agents Can:\r\n\r\n• Assist your team with tasks, projects and research, which will increase productivity.\r\n• Crush to-do list by writing - ads, code, emails, content, sales copy, contracts & more.\r\n• Give you time to focus on important things instead of handling mundane tasks.\r\n• Save you time, save you money and make your team much more effective.\r\n• Make sales calls, take inbound calls and answer support questions (coming soon).\r\n\r\n... and much, MUCH more!\r\n\r\nWatch our video here and see how we can help: https://bit.ly/myaa-trial-offer\r\n\r\nOur clients are saving 20%- 30% on operational costs each month by using our AI Agents to handle hundreds of tasks.\r\n\r\nClaim your FREE Trial Of our AI Agents Now, before this offer ends. Get started here: https://bit.ly/myaa-trial-offer\r\n\r\nBest,\r\n\r\nSusan Karsh',''),(4886,1,1243,'6','Matt Wansbrough',''),(4887,1,1243,'2','0277052202',''),(4888,1,1243,'3','matthew.wansbrough@kathmandu.co.nz',''),(4889,1,1243,'4','Hi, We need to replace old wiring to several lights in our house but I need to understand whether the whole house and switchboard need changing, or if we just change the old wiring to the affected lights. We are located at 227 Hills Rd. Job is urgent due to bathroom renovations taking place. Thanks Matt Wansbrough',''),(4890,1,1243,'5','Internet',''),(4891,1,1244,'6','Sina Rollo',''),(4892,1,1244,'2','0275650199',''),(4893,1,1244,'3','sina.rollo@gmail.com',''),(4894,1,1244,'4','Hi\r\nI booked an appointment with Greg for Friday 1st Dec at 11am to install two ceiling fans in master bedroom and a second bedroom. \r\n\r\nI need to reschedule to next week either on the Thursday or Friday because I will be returning the ceiling fans that I purchased from Bunnings (Fairwind AC Ceiling Fan 132cm) due to the reviews on-line being bad!. \r\n\r\nInstead I\'m purchasing 48\" (1200mm) Skyfan DC Ceiling Fan w/ 3 Blades along with a Skyfan DC LCD Wall Control which will hopefully arrive early next week. \r\n\r\nI\'ll confirm once I have the delivery dates confirmed.\r\n\r\nThank you and regards,\r\n\r\nSina Rollo',''),(4895,1,1244,'5','Goggle',''),(4896,1,1245,'6','Dean Gick.',''),(4897,1,1245,'2','0274066016',''),(4898,1,1245,'3','dgick@bunnings.co.nz',''),(4899,1,1245,'4','Hi there,\r\nI have a sensor at the front of the house that turns lights on if sensor is triggered. \r\nFor some reason now it is not working.Can I have an electrician to fix please and potentially install a few more lights across the front of the house. Located in Rolleston. \r\nThanks,\r\nDean.',''),(4900,1,1246,'6','Lien Burchell',''),(4901,1,1246,'2','418 6412',''),(4902,1,1246,'3','burchell.lien@gmail.com',''),(4903,1,1246,'4','Subject: Unleash the Power of Your Business with GoHighLevel!\r\n\r\nDear Entrepreneurs and Business Leaders,\r\n\r\nAre you ready to revolutionize the way you run your business? Say hello to GoHighLevel - the all-in-one platform that will elevate your business to new heights and empower you with the tools you need to succeed!\r\n\r\nPicture this: seamlessly managing your entire customer journey from a single, intuitive dashboard. No more juggling between different platforms or drowning in a sea of confusing spreadsheets. With GoHighLevel, you can streamline your processes and focus on what truly matters - growing your business.\r\n\r\nFrom generating high-converting leads to nurturing them into loyal customers, GoHighLevel has got you covered. Build stunning landing pages that leave a lasting impression, create captivating email campaigns that engage and convert, and effortlessly manage your appointments with a smart scheduling system that syncs with your calendar.\r\n\r\nBut that\'s not all - GoHighLevel\'s versatility knows no bounds! Whether you\'re in the business of coaching, consulting, marketing, or any other industry, our platform adapts to your unique needs. Experience the convenience of managing your SMS marketing, social media, and even client pipelines all under one roof.\r\n\r\nWorried about your business scaling to new heights? Fear not! GoHighLevel is designed with growth in mind. With advanced analytics and performance tracking, you\'ll gain valuable insights into your business\'s performance and make data-driven decisions for continued success.\r\n\r\nOur user-friendly interface ensures that you don\'t need to be tech-savvy to make the most of our platform. Say goodbye to complexities and embrace the simplicity of GoHighLevel!\r\n\r\nAs a special offer for our valued customers, we\'re thrilled to provide a 30-day free trial of GoHighLevel. Yes, you read that right - an entire month to experience the transformative power of our platform, risk-free!\r\n\r\nJoin thousands of businesses worldwide who have already witnessed the magic of GoHighLevel and achieved unparalleled growth and success. Don\'t be left behind - take the leap and go beyond your limits with GoHighLevel!\r\n\r\nReady to embark on a journey of business excellence? Head over to www.gohighlevel.com and sign up for your free trial today.\r\n\r\nEmpower your business, elevate your success - GoHighLevel awaits you!\r\n\r\nTo your success,\r\n\r\nGoHighLevel lover\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(4904,1,1247,'6','Megan Bader',''),(4905,1,1247,'2','071 202 54 76',''),(4906,1,1247,'3','bader.megan@gmail.com',''),(4907,1,1247,'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.\r\n\r\nP. Stewart\r\nSkype: live:.cid.e169e59bb6e6d159\r\nEmail: ps9466@gomail2.xyz',''),(4908,1,1248,'6','Susan Karsh',''),(4909,1,1248,'2','704-838-9890',''),(4910,1,1248,'3','teresita.mawson@gmail.com',''),(4911,1,1248,'4','Hello Again,\r\n\r\nI 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.\r\n\r\nI 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. \r\n\r\nPlus, our plans start as low as $10 per month if you decide to continue. \r\n\r\nOur AI Agents Can:\r\n\r\n• Assist your team with tasks, projects and research, which will increase productivity.\r\n• Crush to-do list by writing - ads, code, emails, content, sales copy, contracts & more.\r\n• Give you time to focus on important things instead of handling mundane tasks.\r\n• Save you time, save you money and make your team much more effective.\r\n• Make sales calls, take inbound calls and answer support questions (coming soon).\r\n\r\n... and much, MUCH more!\r\n\r\nWatch our video here and see how we can help: https://bit.ly/myaa-trial-offer\r\n\r\nOur clients are saving 20%- 30% on operational costs each month by using our AI Agents to handle hundreds of tasks.\r\n\r\nClaim your FREE Trial Of our AI Agents Now, before this offer ends. Get started here: https://bit.ly/myaa-trial-offer\r\n\r\nBest,\r\n\r\nSusan Karsh',''),(4912,1,1249,'6','Eric Jones',''),(4913,1,1249,'2','555-555-1212',''),(4914,1,1249,'3','ericjonesmyemail@gmail.com',''),(4915,1,1249,'4','Dear juiceelectrical.co.nz Admin!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(4916,1,1250,'6','John Jones',''),(4917,1,1250,'2','(03) 5383 0957',''),(4918,1,1250,'3','carslaw.homer@outlook.com',''),(4919,1,1250,'4','Hello,\r\n\r\nWe\'ve pinpointed 17 leads interested in what you offer. can this help you?\r\n\r\nthen Go to https://rokl.ink/increased-sales and let\'s make this happen!\r\n\r\n\r\nBest regards,\r\n\r\n Robert Smith \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(4920,1,1251,'6','Danielle Simpson',''),(4921,1,1251,'2','0676 179 04 12',''),(4922,1,1251,'3','simpsondanielle800@gmail.com',''),(4923,1,1251,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll 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.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nDanielle\r\n\r\nIf you are not interested, unsubscribe here: https://removeme.click/unsubscribe.php?d=juiceelectrical.co.nz',''),(4924,1,1252,'6','Charles Williams',''),(4925,1,1252,'2','(03) 6251 4334',''),(4926,1,1252,'3','dakota.tenney@gmail.com',''),(4927,1,1252,'4','Hi ,\r\n\r\nSleep snug without a snore. The EPAP mask is your budget-friendly portal to tranquil nights.\r\n\r\nVisit https://sleepl.ink/sleep-easy to enjoy a restful night\'s sleep.\r\n\r\nUpgrade your sleep with the EPAP mask. Combat obstructive sleep apnea, maintain airways open, and improve sleep quality effortlessly. \r\n\r\nA gentle, compact alternative to CPAP devices and is cheaper by more than 75%. Have questions?\r\n\r\nDiscover more at https://sleepl.ink/sleep-easy and experience restful nights.\r\n\r\n\r\nBest regards,\r\n\r\n Joseph Wilson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4928,1,1253,'6','Anna Wilson',''),(4929,1,1253,'2','1234567890',''),(4930,1,1253,'3','annawilson.web@gmail.com',''),(4931,1,1253,'4','Hello,\r\n \r\nI just wanted to know if you require a better solution to manage SEO, SMO, SMM, PPC Campaigns, keyword research, Reporting etc. We are a leading Digital Marketing Agency, offering marketing solutions at affordable prices.\r\n \r\nWe can manage all as we have a 150+ expert team of professionals and help you save a hefty amount on hiring resources.\r\n \r\nInterested? Do write back to me, I’d love to chat.\r\n \r\nIf you are interested, then we can send you our past work details, client testimonials, price list and an affordable quotation with the best offer.\r\n \r\nMany thanks,\r\nAnna Wilson\r\n\r\nYour Website : juiceelectrical.co.nz',''),(4932,1,1254,'6','Christina Shackleton',''),(4933,1,1254,'2','20-54-47-63',''),(4934,1,1254,'3','christinaseo76@gmail.com',''),(4935,1,1254,'4','Hi,\r\n\r\nWant to make more money from your website?\r\n\r\nTry accepting guest posts! \r\n\r\nJoin our featured list of publishers that gets exposure to over 50 million people every month!\r\n\r\nWe do all the marketing for you, all you have to do is strike a deal!\r\n\r\nThe first 30 days are free! Join now at: https://furtherinfo.org/gpfeatured\r\n\r\nKind Regards,\r\nChristina',''),(4936,1,1255,'6','Theresa Smith',''),(4937,1,1255,'2','026-2591754',''),(4938,1,1255,'3','hershel.julia@msn.com',''),(4939,1,1255,'4','Hello again,\r\n\r\nI 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.\r\n\r\nI am Teresa with Elebands, we make ultra-thin, fashionable, all day wearable body weight bands that you put on your wrist, ankle & 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.\r\n\r\nThe 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. \r\n\r\nThat 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.\r\n\r\nBenefits You’ll Get Instantly:\r\n You’ll burn up to 1,500 calories a day as your body gets more toned.\r\n You’ll start losing weight the natural way without having to workout.\r\n You’ll start building more muscles and strength as you just go about your day.\r\n\r\nImagine 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. \r\n\r\nMany of our clients are losing 2-3 pounds a week and getting tremendous health benefits.\r\n\r\nUse this coupon code to get 20% off: SAVE-20%-TODAY\r\n\r\nVisit our site now and get the body you always wanted: https://bit.ly/elebands \r\n\r\nTheresa Smith\r\nBrand Ambassador \r\nElebands USA\r\n\r\nGET STARTED NOW: https://bit.ly/elebands',''),(4940,1,1256,'6','Raquel Tate',''),(4941,1,1256,'2','510-967-5955',''),(4942,1,1256,'3','raquel.tate@gmail.com',''),(4943,1,1256,'4','Legendary Christmas Gift Ideas\r\n\r\nDon\'t miss the best new gifts, cool gear, great gadgets, and other awesomeness.\r\n\r\nCheck them out here:\r\nhttps://down-range-gifts-landing-page-11255.grwebsite.com/\r\n\r\nHappy Holiday’s,\r\nThe Down Range Team',''),(4944,1,1257,'6','Eric Jones',''),(4945,1,1257,'2','555-555-1212',''),(4946,1,1257,'3','ericjonesmyemail@gmail.com',''),(4947,1,1257,'4','Dear juiceelectrical.co.nz Administrator.\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(4948,1,1258,'6','Thomas Brown',''),(4949,1,1258,'2','24-59-55-55',''),(4950,1,1258,'3','morin.ona@googlemail.com',''),(4951,1,1258,'4','Good Day ,\r\n\r\nSnooze peacefully without a peep. The EPAP mask is your pocket-friendly portal to peaceful nights.\r\n\r\nGo to https://sleepl.ink/sleep-easy to enjoy a restful night\'s sleep.\r\n\r\nTransform your sleep with the EPAP mask. Address obstructive sleep apnea, maintain airways open, and boost sleep quality with ease. \r\n\r\nA gentle, portable alternative to CPAP devices and is cheaper by more than 75%. Have questions?\r\n\r\nDiscover more at https://sleepl.ink/sleep-easy and experience restful nights.\r\n\r\n\r\nBest regards,\r\n\r\n Robert Williams \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://sleepl.ink/optout.',''),(4952,1,1259,'6','Linda Bettencourt',''),(4953,1,1259,'2','0328 4967946',''),(4954,1,1259,'3','bettencourt.linda@gmail.com',''),(4955,1,1259,'4','I will do website seo service to help improve organic traffic.\r\n\r\nDigital Marketer with 15 Years of SEO and PPC Experience\r\n\r\nDigital Marketing Expert with 15 years of SEO and Paid Search Experience. +100% Positive Feedback with 21,500 Reviews +Google Analytics, Bing Ads, and Google Ads +Multiple SEO Certifications +Excellent Customer Service +Based in the United States +Fast Service Options +Local Fiverr Community Leader.\r\n\r\nContact me Here : https://bit.ly/seoserviceproo',''),(4956,1,1260,'6','WayneBeale',''),(4957,1,1260,'2','89797112375',''),(4958,1,1260,'3','grabowagatha8@hotmail.com',''),(4959,1,1260,'4','Hello dear friend, I would like to offer placement of your link (or links) on different platforms of the internet such as: forums, blogs, comments and much more. . . \r\n \r\nIncrease your Visibility Boost Your Seo Rank - Get Organic Traffic From Google. Ranking in Google isn’t hard. All you need is a healthy number of backlinks from referring domains that have authority and trust in Google’s eyes. \r\n \r\nThis Backlinks Service Benefits: \r\n \r\n1. Easily get Google rankings \r\n \r\n2. Get a lot of traffic from Google \r\n \r\n3. You can earn from the website in different ways \r\n \r\n4. Increase Domain Authority (DA) \r\n \r\nQuality guaranteed ! \r\n \r\nPRICE - 10$ \r\n \r\nWebSite - http://traffic-for-your.site/',''),(4960,1,1260,'5','Google',''),(4961,1,1261,'6','Richard Williams',''),(4962,1,1261,'2','01.22.73.95.63',''),(4963,1,1261,'3','dahl.karl@gmail.com',''),(4964,1,1261,'4','Hey there,\r\n\r\nWe have 17 potential customers who could use your services. Gain them now! \r\n\r\nClick on https://rokl.ink/increased-sales to seal the deal.\r\n\r\n\r\nBest regards,\r\n\r\n Joseph Brown \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to discontinue communication, \r\nplease opt out at https://rokl.ink/optout.',''),(4965,1,1262,'6','Tammi Smithson',''),(4966,1,1262,'2','999 83 386',''),(4967,1,1262,'3','smithson.tammi61@googlemail.com',''),(4968,1,1262,'4','URGENT Found your naked Photos here: superseoplus.com',''),(4969,1,1263,'6','Mike Smith',''),(4970,1,1263,'2','89523536891',''),(4971,1,1263,'3','mikeinquiff@gmail.com',''),(4972,1,1263,'4','Greetings \r\n \r\nThis is Mike Smith\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Smith\r\n \r\nmike@strictlydigital.net',''),(4973,1,1263,'5','Google',''),(4974,1,1264,'6','Kelsey Peterson',''),(4975,1,1264,'2','026 461 21 78',''),(4976,1,1264,'3','kelsey.peterson@gmail.com',''),(4977,1,1264,'4','How to use AI to optimize juiceelectrical.co.nz marketing campaigns and get more out of your marketing budget.\r\n\r\nIn today\'s competitive business landscape, it\'s more important than ever to make sure that your marketing efforts are delivering results. But with so many different channels and tactics available, it can be difficult to know where to start. That\'s where AI comes in.\r\n\r\nAI-powered marketing measurement tools can help you to:\r\n\r\n- Allocate your marketing budget more effectively\r\n- Identify and eliminate wasted ad spend\r\n- Track the impact of your marketing campaigns\r\n- Make data-driven decisions to improve your results\r\n\r\nIt also includes a case study about how one company like yours, juiceelectrical.co.nz, can use AI-powered marketing measurement platform, to increase their ROI by 35%.\r\n\r\nGet access visiting the link below\r\n\r\nhttps://bit.ly/howtoimprovecustomerretention',''),(4978,1,1265,'6','Sim',''),(4979,1,1265,'3','simyc4016@proton.me',''),(4980,1,1265,'4','Hi,\r\n\r\nI am just wondering if you are looking to upgrade your company\'s website - https://juiceelectrical.co.nz? \r\n\r\nI am Sim here & I\'m a freelance website expert, who just started to freelance on my own. :)\r\n\r\nMy fee is from $695 only per site. I\'m just trying to expand my work portfolio only, not really seeking to make a profit whatsoever actually.\r\n\r\nContact me if you\'d like to view some of the websites I\'ve recently created and developed for clients.\r\n\r\nHope you have a great day.\r\n\r\nYours truly,\r\nSim\r\nFreelance Wordpress Website Designer from Singapore\r\nPixel Pulz',''),(4981,1,1266,'6','Bobbie Farquharson',''),(4982,1,1266,'2','02.12.52.97.92',''),(4983,1,1266,'3','farquharson.bobbie@gmail.com',''),(4984,1,1266,'4','To the juiceelectrical.co.nz Owner, I’m Bobbie and I’m assuming you love your site juiceelectrical.co.nz to generate additional prospects\r\n\r\nHere’s how:\r\nWeb Visitors Into Leads is a software that’s operates on your site, ready to snatch any visitor Name, Email and Phone Number. It alerts you as soon as they’re intrigued so that you can talk to that lead whilst they’re still on at juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo right now.\r\n\r\nAnd now that you have got their their phone number, our new SMS Text With Lead feature enables allows you to initiate a text conversation – provide more info, close a deal\r\n\r\nIf they don’t take don’t take you up on your offer , follow up with with text messages for for new offers, content links, even “how you doing to forge a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to find out what Web Visitors Into Leads can do for your for your business.\r\n\r\nThe difference between contacting someone 5 minutes a half-hour means you could be up to 100X more leads.\r\n\r\nTry Web Visitors Into Leads and get more leads now\r\n\r\nBobbie\r\nPS: The studies show 7 out of 10 visitors don’t – you can’t afford them!\r\nWeb Visitors Into Leads offers a FREE 14 day trial – and it includes International International Long Distance Calling.\r\nYou have customers customers waiting to talk to talk with you right now don’t keep waiting.\r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nShould you prefer to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nOnly a quick note - the names and email used here, Bobbie and Farquharson, are placeholders real contact information\r\nWe appreciate transparency and want to make sure sure you’re aware! If you wish to get to get in touch in touch with the real person person this message, kindly visit our website, and and we’ll connect you with the right individual individual.',''),(4985,1,1267,'6','JustinCof',''),(4986,1,1267,'2','84983776943',''),(4987,1,1267,'3','betcas899@gmail.com',''),(4988,1,1267,'4','Best Spоrtbеttіng site \r\nget our free bonuses \r\n \r\n \r\ngo now https://tinyurl.com/3tubztb3',''),(4989,1,1267,'5','Google',''),(4990,1,1268,'6','Eric Jones',''),(4991,1,1268,'2','555-555-1212',''),(4992,1,1268,'3','ericjonesmyemail@gmail.com',''),(4993,1,1268,'4','To the juiceelectrical.co.nz Admin!\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(4994,1,1269,'6','Eric Jones',''),(4995,1,1269,'2','555-555-1212',''),(4996,1,1269,'3','ericjonesmyemail@gmail.com',''),(4997,1,1269,'4','Hi juiceelectrical.co.nz Webmaster. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(4998,1,1270,'6','Kristen Billings',''),(4999,1,1270,'2','(03) 6292 3428',''),(5000,1,1270,'3','kristen.billings@gmail.com',''),(5001,1,1270,'4','I will create high quality SEO contextual backlinks with white hat link building\r\n\r\n250 Contextual SEO Backlinks 100 Tier 1, 150 Tier 2 Patch-Work backlinks, Drip Feed, and Syncopation for 14 days\r\n\r\nPrice : 50$\r\n\r\n4,900 orders completed.\r\n\r\nLink : https://bit.ly/backlinkservicez\r\n\r\nPS : All transaction are done through fiverr... create new account with the above link and get 50 to 80% Save on first order..\r\n\r\nfor proof : check my portfolio and reviews made by the customer..',''),(5002,1,1271,'6','Rachel Ison',''),(5003,1,1271,'2','0312 6159320',''),(5004,1,1271,'3','rachel.ison@outlook.com',''),(5005,1,1271,'4','Hi to juiceelectrical.co.nz Administrator.\r\n\r\nThis is Rachel, and I recently discovered your site, juiceelectrical.co.nz.\r\n\r\nYour site is has plenty going for it, but I’ve got an idea to make it even more effective.\r\n\r\nIntroducing Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a real-time demo now.\r\n\r\nWeb Visitors Into Leads is a tool which is works on your site, prepared to seize every visitor’s Name, Email address, and Phone Number. It alerts you the instant they make you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd, once you’ve captured their phone number, with our new SMS Text With Lead capability, you can immediately start a text (SMS) discussion… and if they don’t take you up on your offer then, you can follow-up with text messages for fresh offers, content links, even just “how you doing?” notes to develop a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can offer for your business.\r\n\r\nThe gap between reaching out to someone within 5 minutes versus a half-hour could mean you can be converting up to 100X more leads right now!\r\n\r\nRachel\r\nPS: Studies reveal that 70% of a site’s visitors disappear and are gone after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads provides a FREE 14 days trial – and it comes with International Long Distance Calls. \r\nYou have customers eager to speak with you right now… don’t leave them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads today.\r\n\r\nShould you like to unsubscribe click https://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nOnly a quick note - the names and email used here, Rachel and Ison, are not real and not real contact information. We value transparency and wish to make sure you’re aware! If you want to reach out with the real person responsible for this message, please visit our website, and we’ll link you with the correct individual.}',''),(5006,1,1272,'6','Eric Jones',''),(5007,1,1272,'2','555-555-1212',''),(5008,1,1272,'3','ericjonesmyemail@gmail.com',''),(5009,1,1272,'4','Dear, Eric here with a quick thought about your website juiceelectrical.co.nz Administrator.\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5010,1,1273,'6','Chanel Needham',''),(5011,1,1273,'2','487 8627',''),(5012,1,1273,'3','needham.chanel@googlemail.com',''),(5013,1,1273,'4','1-Fill out our short form \r\n\r\n2-If approved, the funds can be transferred to your bank account as soon as the next business day.\r\n\r\nWhat is Slam Dunk Loans?\r\n\r\nAt Slam Dunk Loans, we provide a service that aims to quickly connect customers with a lending partner that offers loans that may work for them. People across the country use our service to get a loan to help them pay for emergency expenses like medical expenses, mechanic fees, and bills.\r\nWe can help you find loans\r\nUP TO $50,000\r\nwithout heaps of paperwork.\r\n\r\nWhy Slam Dunk Loans?\r\n\r\nBecause with SlamDunkLoans.com you can submit your information from the comfort of your home and get funds as soon as next business day, simple as that.\r\n\r\nSUBMIT OUR SHORT FORM HERE\r\n\r\nhttps://bit.ly/the-easy-loans',''),(5014,1,1274,'6','Joshua Bensberg',''),(5015,1,1274,'2','0220361937',''),(5016,1,1274,'3','jbensberg@hotmail.co.nz',''),(5017,1,1274,'4','Hello \r\nI am looking at requesting your service in a quote for installing a new power (2x ports) and ethernet as well as checking an LED light at has stopped working. \r\nplease let me know if you require more information \r\nthank you \r\nregards\r\nJoshua',''),(5018,1,1274,'5','google search',''),(5019,1,1275,'6','Liliana McNaughtan',''),(5020,1,1275,'2','044 838 15 15',''),(5021,1,1275,'3','liliana.mcnaughtan@yahoo.com',''),(5022,1,1275,'4','Dear juiceelectrical.co.nz Owner.\r\n\r\nThis is Liliana and I stumbled upon juiceelectrical.co.nz a moment ago. \r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone such as me locates your website – either through Search or just bouncing around – what happens next? Do you get numerous of leads from your site, or at least enough to make you happy?\r\n\r\nFrankly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really STRAIGHTFORWARD for every visitor who shows up to get a personal phone call from they hit your site…\r\n \r\nYou can –\r\n \r\nLead Conversion 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 inform you they’re interested – so that you can chat to that lead while they’re really looking over your site.\r\n\r\nCLICK HERE https://turboleadgeneration.com to experience a Live Demo with Web Conversion now to see precisely how it works.\r\n\r\nYou’ll be surprised - the difference between contacting someone within 5 minutes versus a half-hour or more later could boost your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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 build a relationship.\r\n\r\nQuite sweet – AND effective.\r\n\r\nCLICK HERE https://turboleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nLiliana\r\nPS: Web Conversion offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers eager with you right now… don’t keep them waiting. \r\nCLICK HERE https://turboleadgeneration.com to use Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nOnly a brief note - the identities and email address applied in this communication, Liliana and McNaughtan, are placeholders and not real contact details. We appreciate transparency and desired to make sure you’re informed! Should you wish to make contact with the genuine person behind this note, kindly check out our website, and we’ll unite you with the proper individual.',''),(5023,1,1276,'6','Eric Jones',''),(5024,1,1276,'2','555-555-1212',''),(5025,1,1276,'3','ericjonesmyemail@gmail.com',''),(5026,1,1276,'4','Dear juiceelectrical.co.nz Owner.\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5027,1,1277,'6','Kluge',''),(5028,1,1277,'2','17134875223',''),(5029,1,1277,'3','steve@brandbombz.com',''),(5030,1,1277,'4','Hey, we just made a AI marketing video on how you can save time and keep from having to pay employees more using AI ans systems automation. \r\nDo you mind if I send it here?\r\nPlease reply \'yes\' if so',''),(5031,1,1278,'6','Eric Jones',''),(5032,1,1278,'2','555-555-1212',''),(5033,1,1278,'3','ericjonesmyemail@gmail.com',''),(5034,1,1278,'4','Hello juiceelectrical.co.nz Admin. I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5035,1,1279,'6','Jimmy Elem',''),(5036,1,1279,'2','1541995805',''),(5037,1,1279,'3','elem.harley@outlook.com',''),(5038,1,1279,'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.\r\n\r\nSEO Benefits in Brief:\r\n1. Boosts Visibility and Traffic:\r\n2. Establishes Trust:\r\n3. Yields High ROI:\r\n4. Enhances User Experience:\r\nGoogle announced prioritizing pages based on user experience in their algorithm.\r\nIn essence, SEO is your key to standing out, building trust, and ensuring a high return on investment.\r\n\r\nContact us at https://digitalpromax.co/\r\n\r\nAlso Need expert hands on your WordPress projects? We\'ve got you covered. Let\'s discuss how our WordPress developers can boost your web endeavors.\r\n\r\nClick here for more details: https://outsource-bpo.com/website/',''),(5039,1,1280,'6','Anikaot',''),(5040,1,1280,'2','88979553227',''),(5041,1,1280,'3','anikaot@misskyosei.com',''),(5042,1,1280,'4','Ні!\r\nΙ\'ve nоtіced thаt mаnу guys prefer regulаr girls.\r\nI аpplaudе the mеn out therе whо hаd thе balls to enϳоy the lоve оf manу women аnd choоѕe the оnе that he knew would bе his beѕt friеnd during thе bumpу аnd crаzу thing callеd life.\r\nΙ wantеd to bе that friend, not ϳust а ѕtablе, rеliablе and borіng hоuѕеwifе.\r\nΙ аm 23 уеarѕ оld, Anіkа, from the Czech Reрublіc, knоw Еngliѕh languаgе аlsо.\r\nАnуway, you cаn fіnd my рrofile hеre: http://tioreslebarbund.cf/idl-63799/',''),(5043,1,1280,'5','Google',''),(5044,1,1281,'6','Manuel Needham',''),(5045,1,1281,'2','04.36.40.71.94',''),(5046,1,1281,'3','manuel.needham@yahoo.com',''),(5047,1,1281,'4','Hi,\r\n\r\nHave you ever wondered how you could generate more leads and sales through your website juiceelectrical.co.nz. Watch this video for tips on how to make your website a money-making machine. Watch it now here & claim your F.REE system here, before it is taken down - https://leadpulz.com/rpm\r\n\r\nRegards,\r\nBen\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nExciting news in the world of lead generation! A groundbreaking app has arrived that is changing the way companies and professionals interact with prospective customers. Powered by A.I. with OSINT tech, this application converts LinkedIn profiles into 100% authentic email leads in real time.\r\n\r\nImagine the ease of searching LinkedIn for leads that are of high-quality using an intuitive Chrome extension. The technology guarantees 99.9 percent accuracy in email, providing you with prospects that are not just pertinent but also extremely responsive. Connecting with the leads can be streamlined due to features such as 1-click outreach as well as pre-loaded cold outreach scripts.\r\n\r\nCreated to address the varied requirements of agencies, startups or freelancers, this tool makes lead generation an effortless and productive procedure. If it\'s about finding leads of the highest quality or providing direct access to decision-makers this app has been specifically designed to help you increase the effectiveness of your outreach.\r\n\r\nTake advantage of this opportunity to boost the effectiveness of your lead generation strategies. Click here - https://leadpulz.com/bottom to learn more and begin transforming your approach to business growth today!',''),(5048,1,1282,'6','Aishwarya',''),(5049,1,1282,'2','0220625484',''),(5050,1,1282,'3','phalke2794@gmail.com',''),(5051,1,1282,'4','Hey Team,\r\nCould you please send me the quote for following work, please?\r\n1. Installation of Kitchen pendent light (Over Island) with TS Cable 1.0mm2 TPS Twin + Earth , PDL682 Double gang switch 16A/20A White.\r\n2. Installation of small ceiling chandelier at entrance door. Ceiling Ht- 2.4m Only. ( Remove existing ceiling light and install this chandelier on same spot- No need of wiring /Switch socket)\r\n3. New external 15AMP switch socket- DL682 Double gang switch 16A/20A White.\r\nCould you please send the pricing for this work, please?\r\n\r\nRegards,',''),(5052,1,1282,'5','Google',''),(5053,1,1283,'6','James Anderson',''),(5054,1,1283,'2','070 2742 8902',''),(5055,1,1283,'3','rapidleads360@gmail.com',''),(5056,1,1283,'4','Hi,\r\n\r\nPicture your business thriving with a minimum 23% increase in revenue, all thanks to our AI solutions. That\'s not just a possibility; it\'s a promise with our cutting-edge AI solutions.\r\n\r\nWhile many businesses are yet to discover AI\'s transformative power, you have the chance to lead the pack. Our tailored solutions are designed to give you an edge over your competitors, setting you on the path to dominate your market.\r\n\r\nThink about it: one of our clients is on track for a phenomenal 230% revenue increase. We\'re determined to turn triple-digit growth the new norm for businesses like yours. Our unique blend of AI, automation, and growth hacking marketing has repeatedly resulted in unprecedented results, frequently beyond human capability.\r\n\r\nWe\'re excited to show how our groundbreaking approach can boost your business. Let\'s schedule a meeting at your convenience to explore the opportunities of AI-driven growth for your company.\r\n\r\nIf you\'re ready to change your business, simply reply with \"Yes\" and we\'ll take it from there.\r\n\r\nLooking forward to unlocking new heights for your business,\r\n\r\n\r\nBest regards,\r\n\r\nJohn Taylor',''),(5057,1,1284,'6','Mark Wilba',''),(5058,1,1284,'2','0680 226 72 44',''),(5059,1,1284,'3','wilbamark90@gmail.com',''),(5060,1,1284,'4','Hi, I have a ton of leads that want to pay for your products / services. When do you have a second to chat about them? Would you be willing to do a comission on the leads I send over? Please reply with your best phone number so that we can discuss. -Mark W.',''),(5061,1,1285,'6','Mike Thorndike',''),(5062,1,1285,'2','85616999927',''),(5063,1,1285,'3','mikeHourrirm@gmail.com',''),(5064,1,1285,'4','If you are looking to rank your local business on Google Maps in a specific area, this service is for you. \r\n \r\nGoogle Map Stacking is a highly effective technique for ranking your GMB within a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Thorndike\r\n \r\n \r\nPS: Want a comprehensive local plan that covers everything? \r\nhttps://www.speed-seo.net/product/local-seo-bundle/',''),(5065,1,1285,'5','Google',''),(5066,1,1286,'6','Robert Anderson',''),(5067,1,1286,'2','0554-5022423',''),(5068,1,1286,'3','rapidleads360@gmail.com',''),(5069,1,1286,'4','Good Day,\r\n\r\nI have free traffic for your website if you are interested please reply with \"yes\".\r\n\r\n\r\nBest regards,\r\n\r\n Michael Davis',''),(5070,1,1287,'6','Izetta Chung',''),(5071,1,1287,'3','chung.izetta@outlook.com',''),(5072,1,1287,'4','Salutations juiceelectrical.co.nz Webmaster.\r\n\r\nI\'m Izetta and I’m betting you would like your site juiceelectrical.co.nz to produce more leads.\r\n\r\nHere is how:\r\nVisitor to Lead Widget is a tool that’s works on your site, set to grab any viewer’s Name, Email address, and Phone Number. It signals you the moment they say they’re engaged – so that you can talk to that potential customer while they’re still there at juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://turboleadgeneration.com for a live-action demo right now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature permits you to begin a text (SMS) chat – answer questions, offer more info, and finalize a deal that way.\r\n\r\nIf they don’t agree on your offer then, merely follow up with text messages for new offers, content links, or just how you doing? notes to develop a rapport.\r\n\r\nCLICK HERE https://turboleadgeneration.com to uncover what Visitor to Lead Widget can do for your company.\r\n\r\nThe distinction between connecting with someone within 5 minutes versus a half-hour means you can be changing up to 100X more leads today!\r\n\r\nTest Web Visitors Into Leads and secure more leads immediately.\r\n\r\nIzetta\r\nPS: The research show 7 out of 10 viewers do not hang around – you can not afford to lose them!\r\nVisitor to Lead Widget offers a FREE 14 days trial – and it also includes International Long Distance Calling.\r\nYou have clients waiting to talk with you now… do not keep them waiting.\r\nCLICK HERE https://turboleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d wish to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nJust a swift message - the monikers and email address utilized here, Izetta and Chung, are substitutes and not actually genuine contact information. We cherish openness and desired to ensure you are aware! If ever you wish to connect with the actual person behind this note, kindly go to our website, and we’ll associate you with the proper entity.',''),(5073,1,1288,'6','Michael Wilson',''),(5074,1,1288,'2','79 609 68 24',''),(5075,1,1288,'3','rapidleads360@gmail.com',''),(5076,1,1288,'4','Hello,\r\n\r\nWe\'ve pinpointed 5 leads interested in what you offer. can this help you?\r\n\r\nthen Go to https://rokl.ink/increased-sales and let\'s make this happen!\r\n\r\n\r\nBest regards,\r\n\r\n David Anderson\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving any further communication, \r\nplease opt out at https://rokl.ink/optoutone.',''),(5077,1,1289,'6','JustinCof',''),(5078,1,1289,'2','82157168829',''),(5079,1,1289,'3','betcas302@gmail.com',''),(5080,1,1289,'4','Best Spоrtbеttіng site \r\nget our free bonuses \r\n \r\n \r\ngo now https://tinyurl.com/37r6dtvw',''),(5081,1,1289,'5','Google',''),(5082,1,1290,'6','Emma Joel',''),(5083,1,1290,'2','3156364446',''),(5084,1,1290,'3','allproestimation56@gmail.com',''),(5085,1,1290,'4','Hi,\r\n\r\nHope you are doing well. \r\n\r\nWe do all types of estimates, complete GC or single trade, we do it all.\r\n\r\nWe offer:\r\n\r\nQuantity takeoff.\r\nWorker rates.\r\n100% accuracy with experienced and certified estimators.\r\nCompetitive cost.\r\nColored take-off sheets.\r\nQuick turnaround time.\r\nDiscount on projects.\r\n\r\nWould you be interested in our services?\r\nWe’ll be happy to send over a few sample estimates on your request.\r\n\r\nThank you!',''),(5086,1,1290,'5','Google',''),(5087,1,1291,'6','Dacia Beich',''),(5088,1,1291,'2','(02) 4073 2937',''),(5089,1,1291,'3','dacia.beich@gmail.com',''),(5090,1,1291,'4','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic. Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting businesses on Google. Can I share a testimonial \r\nfrom one of our clients with you? I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(5091,1,1292,'6','Tucker Baine',''),(5092,1,1292,'2','478 02 187',''),(5093,1,1292,'3','martianonlineseo@gmail.com',''),(5094,1,1292,'4','Curious about how an AI-crafted ad could transform your marketing? Reply \'Yes\' to see what we made for you!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n2208 Hanfred Lane\r\nSuite 101-248\r\nTucker, GA 30084\r\n\r\nunsubscribe: https://tinyurl.com/43t3rjrm',''),(5095,1,1293,'6','Donna Coffman',''),(5096,1,1293,'2','0680 312 12 04',''),(5097,1,1293,'3','jai.michaud@gmail.com',''),(5098,1,1293,'4','Hi owner of juiceelectrical.co.nz,\r\n\r\n\r\nLove writing and want to make some extra money? Look no further!\r\n?\r\nPaid Online Writing Jobs is a great opportunity for anyone looking for extra work to fill their hours. We\'re offering competitive rates to create content for social media accounts of small companies, so you\'ll have the opportunity to gain valuable experience, increase your skill set, and receive profitable wages.\r\n?\r\nTake control of your work and make your own schedule; you don\'t even need prior experience. As long as you have access to a laptop, tablet, or phone, a reliable internet connection, and some proficiency in the English language, you can get started right away. So don\'t wait and apply now - start getting paid to do what you love.\r\n?\r\nClick this link to get started with Paid Online Writing Jobs: https://www.vaulemedia.com/writingpaid , and get a rate of $1 per Facebook post! Don\'t miss this opportunity.\r\n\r\nLooking out for you,\r\n\r\n\r\nDonna\r\n\r\n(The relationship between Vaulemedia and Paidonlinewritingjobs is a partnership, we are two separate companies)\r\nUNSUBSCRIBE: https://www.vaulemedia.com/unsubscribe',''),(5099,1,1294,'6','Wade Gardner',''),(5100,1,1294,'2','905-429-8646',''),(5101,1,1294,'3','gardner.wade79@gmail.com',''),(5102,1,1294,'4','Subject: Unleash Limitless Productivity with InfinityFlow \r\n\r\nDear Visionary Professionals,\r\n\r\nAre you tired of feeling overwhelmed by the chaos of daily tasks and deadlines? Do you crave a seamless workflow that empowers you to unleash your true potential? Look no further than InfinityFlow.io - the ultimate productivity program that will propel your efficiency to infinity and beyond!\r\n\r\nImagine a world where you effortlessly glide through your to-do list, accomplishing tasks with unrivaled speed and precision. With InfinityFlow.io, this dream becomes a reality. Our cutting-edge platform is designed to optimize every aspect of your workflow, so you can focus on what truly matters - turning your ideas into reality!\r\n\r\nInfinityFlow.io\'s intuitive interface will transform the way you work. Seamlessly manage projects, delegate tasks, and collaborate with your team in real-time. No more messy email chains or lost files - everything you need is just a click away!\r\n\r\nBut that\'s not all - InfinityFlow.io is packed with powerful features to take your productivity to unprecedented heights. Our smart automation tools will streamline repetitive tasks, freeing up valuable time for you to tackle creative challenges. With personalized notifications and reminders, you\'ll never miss a deadline or important milestone again!\r\n\r\nSecurity is our top priority at InfinityFlow.io. Rest easy knowing that your sensitive data is protected by state-of-the-art encryption and authentication protocols. Focus on your work with peace of mind, knowing that your information is safe and secure.\r\n\r\nWhether you\'re a solopreneur, a small team, or a large enterprise, InfinityFlow.io scales to fit your needs. Our flexible plans and customizable workflows ensure that our platform adapts to your unique requirements and maximizes your efficiency.\r\n\r\nJoin the ranks of successful professionals who have harnessed the power of InfinityFlow.io to revolutionize their productivity. As a limited-time offer, we invite you to try InfinityFlow.io FREE for 14 days! Experience the transformative impact it will have on your work life, without any commitment.\r\n\r\nAre you ready to unlock the door to unparalleled productivity? Visit www.infinityflow.io and start your journey towards infinite possibilities today!\r\n\r\nLet InfinityFlow.io be your secret weapon for success.\r\n\r\nTo boundless achievements,\r\n\r\n\r\nGo Get your best LTD for 2023 >>>>> https://rebrand.ly/infinityflow',''),(5103,1,1295,'6','Eric Jones',''),(5104,1,1295,'2','555-555-1212',''),(5105,1,1295,'3','ericjonesmyemail@gmail.com',''),(5106,1,1295,'4','Hi juiceelectrical.co.nz Admin. I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5107,1,1296,'6','Lester Royer',''),(5108,1,1296,'2','0341 2958752',''),(5109,1,1296,'3','seoforce979@gmail.com',''),(5110,1,1296,'4','Hi,\r\n\r\nEver wondered why your competitors\' websites are ranking in the top 5 positions on Google, but not your website, juiceelectrical.co.nz? Get your definitive answer today at - https://www.infinityinteractive.online/seo-audit?ref=juiceelectrical.co.nz\r\n\r\nHave a great day ahead.\r\n\r\nRegards,\r\nLester\r\nSEO Consultant\r\nNovustri Digital',''),(5111,1,1297,'6','Michael Sinclair',''),(5112,1,1297,'2','06-18409280',''),(5113,1,1297,'3','timmy.sell@yahoo.com',''),(5114,1,1297,'4','Hello,\r\n\r\nWould 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! \r\n\r\nPlus, as an added bonus, we provide the B2B prospect list so you can effortlessly expand your reach weekly and generate consistent leads and sales. \r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n\r\nWHO THIS IS FOR:\r\n\r\n- Companies who sell to businesses (B2B).\r\n- Companies who provide a product/service with wide appeal (not a small niche).\r\n- Companies who product/service can be sold across the USA and/or international.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!! For just $240 a week, we’ll send 1.25 million emails weekly.\r\n\r\nBook a 10 min call with us: https://bit.ly/hivemailer-special-240 \r\n\r\nNOTE: 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. \r\n\r\nSincerely,\r\nMichael\r\n\r\nP.S. This offer is good for the first 20 clients, don’t miss out. Book appointment now: \r\nhttps://bit.ly/hivemailer-special-240',''),(5115,1,1298,'6','Jimmy Cone',''),(5116,1,1298,'2','5344313415',''),(5117,1,1298,'3','cone.sherita@gmail.com',''),(5118,1,1298,'4','I hope this message finds you well. I wanted to highlight the key advantages of our Monthly SEO Services:\r\n\r\nContinuous Visibility: Maintain a strong presence in search results.\r\nTargeted Traffic: Attract relevant visitors through ongoing optimization.\r\nAdaptability: Stay ahead by quickly adapting to industry trends.\r\nDetailed Reporting: Receive comprehensive analytics for informed decision-making.\r\nContent Freshness: Regular updates keep your site relevant and engaging.\r\nAuthority Building: Boost your website\'s credibility over time.\r\nCompetitive Edge: Outperform competitors with refined strategies.\r\n\r\nLet\'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/\r\n\r\nIf you want web development work to support your SEO or build your website from scratch, Please contact at https://speedexpert.co/wp-development/',''),(5119,1,1299,'6','IAN SMITH',''),(5120,1,1299,'2','0274889889',''),(5121,1,1299,'3','coro8@xtra.co.nz',''),(5122,1,1299,'4','Hello\r\n\r\nI find your website presents very well.\r\n\r\nI am wanting 2 plugs moved over by one stud to make room for a built in wardrobe unit.\r\n\r\nThe plugs are one above the other (ordinary plug and tv arial and plug)\r\n\r\nNot sure whether the wires need to be pushed through the stud they are on or just moved over by one.\r\n\r\nThe address is 76A Winchester St. Merivale.\r\n\r\nI haven’t moved in yet and will travel from Blenheim on the Thursday 25th January for the work to be done any time on Friday 26th January as the wardrobe will be installed on the week of the following Monday.\r\n\r\nWould you be able to do this job which is so time specific and perhaps give a price indication.\r\n\r\nI have other work but that can be after we are moved in.\r\n\r\nRegards\r\n\r\nIan Smith',''),(5123,1,1300,'6','Robbin Connibere',''),(5124,1,1300,'2','06-37991270',''),(5125,1,1300,'3','robbin.connibere@hotmail.com',''),(5126,1,1300,'4','I will increase domain rating ahrefs DR 70 plus via high authority seo backlinks for 20$\r\n\r\nIncrease Domain Rating 70+ via SEO Backlinks\r\n\r\nLink : https://bit.ly/Increasedomainrating70\r\n\r\nGet tons of quality traffic with increase in domain rating..',''),(5127,1,1301,'6','Susie Pennell',''),(5128,1,1301,'2','208-438-6261',''),(5129,1,1301,'3','pennell.susie@gmail.com',''),(5130,1,1301,'4','Hey there, \r\n\r\nWe found this cool way to make money online. If you are interested in getting financially free, now is the time to jump on the AI train!!!!!\r\n\r\nIt is SOOOOOOO easy. If I can do it, anyone can. \r\n\r\nClick this link to learn more.... https://aibotsmarketing.systeme.io/cd8a7779-0d424be2\r\n\r\nTake care and blessings to you and your family!!!\r\n\r\nSkylar\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo opt out of future communication through your website contact page, click this link and enter in your website domain name... https://aibotsmarketing.wixsite.com/opt-out-form\r\n\r\n2100 14th St. Suite 107-30\r\nPlano, TX 75074-6444',''),(5131,1,1302,'6','Victoria Tallent',''),(5132,1,1302,'2','032 795 40 17',''),(5133,1,1302,'3','victoria.tallent21@gmail.com',''),(5134,1,1302,'4','Your Holiday Adventure Starts Now!\r\n\r\nImmerse yourself in the magic of the season at Down Range, where every product tells a tale of adventure! Our curated collection goes beyond gear – it\'s an invitation to explore the extraordinary.\r\n\r\n We\'ve curated the perfect gifts for every adventurer.\r\n\r\n What Sets Us Apart?\r\n\r\nUnwrap the Unexpected: Our selection brings a touch of magic to your festive celebrations.\r\n\r\nSecure Shopping: Trust our secure online platform for a worry-free shopping experience.\r\n\r\n Gifting Reimagined: Explore our collection, ensuring your gifts are as memorable as the moments they accompany.\r\n\r\nDon\'t miss the magic! Dive into a world of festive wonders at Down Range. Your holiday adventure begins now!\r\n\r\nCheck them out here:\r\nhttps://down-range-gifts-landing-page-11255.grwebsite.com/\r\n\r\n\r\n\r\nCheers,\r\nThe Down Range Team\r\nwww.mydownrange.com',''),(5135,1,1303,'6','Eric Jones',''),(5136,1,1303,'2','555-555-1212',''),(5137,1,1303,'3','ericjonesmyemail@gmail.com',''),(5138,1,1303,'4','Hello juiceelectrical.co.nz Owner. my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://rushleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5139,1,1304,'6','Susan Karsh',''),(5140,1,1304,'2','0372 7490154',''),(5141,1,1304,'3','mei.mattocks@gmail.com',''),(5142,1,1304,'4','Hey there!\r\n\r\nI 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.\r\n\r\nNow, let me share with you the mind-blowing things our AI Agents can do:\r\n\r\n• They\'ll swoop in and assist your team with tasks, projects, and research, skyrocketing your productivity to new heights.\r\n\r\n• 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.\r\n\r\n• 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.\r\n\r\n• 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.\r\n\r\n• 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)!\r\n\r\nAnd 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. \r\n\r\nOur 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!\r\n\r\nSo, 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. \r\n\r\nGet started by clicking right here: https://bit.ly/myaa-trial. Your journey to unparalleled efficiency and mind-boggling results begins today!\r\n\r\nBest Regards,\r\n\r\nSusan Karsh',''),(5143,1,1305,'6','Randy Ainsworth',''),(5144,1,1305,'3','randy.ainsworth19@gmail.com',''),(5145,1,1305,'4','Hey there, \r\n\r\nWe found this cool way to make money online. No better time than now to let the BOTS create a passive income for you.\r\n\r\nWe especially love the easy-to-follow along, short videos. And, it is a team effort! \r\n\r\nClick this link to learn more.... https://aibotsmarketing.systeme.io/cd8a7779-0d424be2\r\n\r\nTake care and blessings to you and your family!!!\r\n\r\nSkylar\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo opt out of future communication through your website contact page, click this link and enter in your website domain name... https://aibotsmarketing.wixsite.com/opt-out-form\r\n\r\n2100 14th St. Suite 107-30\r\nPlano, TX 75074-6444',''),(5146,1,1306,'6','Mike Macey',''),(5147,1,1306,'2','87744317164',''),(5148,1,1306,'3','mikelida@gmail.com',''),(5149,1,1306,'4','Hi there \r\n \r\nJust checked your juiceelectrical.co.nz baclink profile, I noticed a moderate percentage of toxic links pointing to your website \r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge. \r\n \r\nStart recovering your ranks today: \r\nhttps://www.hilkom-digital.de/professional-linksprofile-clean-up-service/ \r\n \r\nFor any of our SEO plans, we have a December SALE campaign with -30% discounts \r\nApply this coupon on the basket page: XMS30 \r\n \r\nRegards \r\nMike Macey\r\nHilkom Digital SEO Experts \r\nhttps://www.hilkom-digital.de/',''),(5150,1,1306,'5','Google',''),(5151,1,1307,'6','William Davis',''),(5152,1,1307,'2','0650 682 67 79',''),(5153,1,1307,'3','rapidleads360@gmail.com',''),(5154,1,1307,'4','Hi Good Day,\r\n\r\nPicture your business thriving with a minimum 23% increase in revenue, all thanks to our AI solutions. This isn\'t just a dream; our advanced AI methods make it a reality.\r\n\r\nWhile 93% of businesses haven\'t yet tapped into the power of AI, you have the possibility to lead the pack. Our customized solutions are designed to not only match but surpass your competitors, setting you on the path to outperform market leaders.\r\n\r\nThink about it: one of our clients is on track for a staggering 230% revenue increase. We\'re aiming to make triple-digit growth the new norm for businesses like yours. Our unique blend of AI, automation, and growth hacking marketing has consistently delivered exceptional results, regularly beyond human capability.\r\n\r\nWe\'re keen to show how our groundbreaking approach can transform your business. Let\'s schedule a meeting at your convenience to explore the possibilities of AI-driven growth for your company.\r\n\r\nIf you\'re ready to revolutionize your business, simply reply with \"Yes\" and we\'ll take it from there.\r\n\r\nLooking forward to unlocking new heights for your business,\r\n\r\n\r\nBest regards,\r\n\r\n Robert Wilson',''),(5155,1,1308,'6','ori Mountford',''),(5156,1,1308,'2','508 812 0437',''),(5157,1,1308,'3','automate2thrive@gmail.com',''),(5158,1,1308,'4','Hello\r\n\r\nCan I create a short video for juiceelectrical.co.nz? (free, no obligation on your end).\r\nIt will something that showcase your business/website and services.\r\nI\'m looking to help businesses create content.\r\n\r\nSimply reply with the word \"Yes\" and the name of your business.\r\n\r\n\r\nBest,\r\n\r\nOri',''),(5159,1,1309,'6','Leslie Sim',''),(5160,1,1309,'3','mangum.aliza@yahoo.com',''),(5161,1,1309,'4','Dear Business Owner,\r\n\r\nExclusive offer for juiceelectrical.co.nz only! Download our comprehensive database featuring 9 million U.S. companies to boost your lead generation efforts. Refreshed in June 2023, this database includes staff names, job titles, company details, emails, contact numbers, LinkedIn profiles, business industries, and more.\r\n\r\nFor those in B2B, this resource is essential for focusing on the right leads and increasing your sales. Access the database here: https://www.bizdatapros.com.\r\n\r\nWishing you a successful day ahead.\r\n\r\nThank you,\r\nYC\r\nFounder\r\nBiz Data Pros\r\n\r\n\r\n\r\n\r\n\r\n==\r\n28 Sin Ming Lane #04-74, Midview City, Singapore 258127\r\n\r\nTo unsubscribe, kindly submit your request here - https://forms.gle/rpv6AvYEpQGkYw398',''),(5162,1,1310,'6','Maurine Loyd',''),(5163,1,1310,'2','970 76 348',''),(5164,1,1310,'3','loyd.maurine@gmail.com',''),(5165,1,1310,'4','To the juiceelectrical.co.nz Owner!\r\n\r\nI am Maurine, and I just discovered your site, juiceelectrical.co.nz.\r\n\r\nIt really is got a lot going for it, but I’ve got an idea to make it even MORE effective.\r\n\r\nPresenting Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a real-time demo today.\r\n\r\nWeb Visitors Into Leads is a widget 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 second they let you know they’re interested – so that you can chat to that lead while they’re literally browsing your site.\r\n\r\nAnd, once you’ve secured their phone number, with our new SMS Text With Lead feature, you can immediately start a text (SMS) discussion… 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 build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can offer for your business.\r\n\r\nThe distinction between reaching out to someone in 5 minutes compared to a half-hour could mean you can be converting up to 100X more leads now!\r\n\r\nMaurine\r\nPS: Reports reveal that 70% of a site’s visitors leave and are gone in just a moment. Don’t continue losing them. \r\nWeb Visitors Into Leads provides a FREE 14 days trial – and it features International Long Distance Calls. \r\nYou have customers eager to speak with you right now… don’t leave them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIn case you like to unsubscribe click https://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nOnly a quick note - the names and email used here, Maurine and Loyd, are not real and not genuine contact data. We respect transparency and wish to make sure you’re aware! If you wish to get in touch with the actual person behind this message, please visit our website, and we’ll associate you with the appropriate individual.}',''),(5166,1,1311,'6','Mike Enderson',''),(5167,1,1311,'2','81451494219',''),(5168,1,1311,'3','mikethache@gmail.com',''),(5169,1,1311,'4','Hi there, \r\n \r\nMy name is Mike from Monkey Digital, \r\n \r\nAllow me to present to you a lifetime revenue opportunity of 35% \r\nThat\'s right, you can earn 35% of every order made by your affiliate for life. \r\n \r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month. \r\n \r\nClick here to enroll with us today: \r\nhttps://www.monkeydigital.org/affiliate-dashboard/ \r\n \r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved. \r\n \r\nThanks and regards \r\nMike Enderson\r\n \r\nMonkey Digital',''),(5170,1,1311,'5','Google',''),(5171,1,1312,'6','Maverick Spencer',''),(5172,1,1312,'2','(+1) 412-775-1308',''),(5173,1,1312,'3','investors.funding@bancoinvestments.com',''),(5174,1,1312,'4','Hello There,\r\n\r\nI trust this message finds you well. Allow me to introduce myself as Maverick Spencer, serving as a Senior Investment Consultant representing Banco InvestmentFX headquartered in Ottawa, Canada. \r\nMy primary objective is to establish connections with project owners and individuals involved in various enterprises, fostering collaborative funding initiatives for their respective companies.\r\n\r\nBanco InvestmentFX stands as a distinguished private Investment Company renowned for its strategic investments across Canada and the United States. Since its inception, our firm has been\r\ndedicated to driving regional sustainable development while generating value through strategic investments in thriving sectors.\r\n\r\n Our focus spans diverse industries, including but not limited to Oil & Gas, Banking & Finance, project management, tourism, Aviation, Real estate, Business Investment, Marine Projects, Solar projects,\r\nindustrialization, mathematics, agriculture, forest management, Education, printing, advertising, brokerage, mining, film, and farming.\r\n\r\nOur firm takes pride in presenting distinctive investment opportunities and facilitating the realization of projects that cater to both local and international market demands. Acting as a lender, \r\nBanco InvestmentFX offers loans at a clear 3.5% annual interest rate to project owners and Equity Partners, aiding in the realization of their Investment Projects. We specialize in providing funding for\r\nseed capital, early-stage and start-up ventures, existing LLCs, as well as the comprehensive development and expansion of Investment Projects, ensuring immediate financial backing.\r\n\r\nMoreover, our investment scope extends globally, provided there is a mutual commitment to ethical business conduct between involved parties.\r\n\r\nShould our objectives align with your pursuits for a prosperous tomorrow through investment endeavors, I encourage you to reach out via email at info@bancoinvestments.com. \r\nShould you require further elaboration or clarification on any aspect, please do not hesitate to contact me. I eagerly await your affirmative response to commence potential collaborations.\r\n\r\nBest Regards,\r\n\r\nMaverick Spencer\r\nSenior Investment Consultant\r\nBanco InvestmentFX\r\nHead Office: 340 Legget Drive, Suit 101, Ottawa, ON K2K 1Y6, Canada\r\nTel: (+1) 412-775-1308',''),(5175,1,1313,'6','Michael Brown',''),(5176,1,1313,'2','030 64 29 65',''),(5177,1,1313,'3','hudson.angelina@hotmail.com',''),(5178,1,1313,'4','Hi,\r\n\r\nWe have some potential leads available. Interested? Just follow the link below to get things started:\r\nhttps://rokl.ink/increased-sales\r\n\r\n\r\nRegards,\r\n\r\n Charles Thompson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving from our communications from us, please opt out at https://rokl.ink/optoutone',''),(5179,1,1314,'6','Marilyn Gabbard',''),(5180,1,1314,'2','406-748-1923',''),(5181,1,1314,'3','marilyn.gabbard@gmail.com',''),(5182,1,1314,'4','Alert: $BabyGrok rises more than 120% in one day\r\n\r\n\r\n$BabyGrok continues to rise, and it doesn\'t stop.\r\n\r\nThis wallet ⏬ is already holding 500K USD, the interesting thing is that it bought on December 5, when no one was interested prior to the increase.\r\n\r\n0x176E4634A80aCB1d2b892d0d24C05400083ab120\r\n\r\nIt\'s a great purchase, don\'t miss it.\r\n\r\nEnter our Telegram channel to find out when to sell and buy this type of coins.\r\n\r\nhttps://bit.ly/CryptoPumpandDumpProfit\r\n\r\n\r\nFollow us on Twitter\r\nhttps://twitter.com/massinfluencela',''),(5183,1,1315,'6','Eric Jones',''),(5184,1,1315,'2','555-555-1212',''),(5185,1,1315,'3','ericjonesmyemail@gmail.com',''),(5186,1,1315,'4','Dear juiceelectrical.co.nz Admin. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. I’m interested… but… maybe…\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5187,1,1316,'6','Maisie Durack',''),(5188,1,1316,'2','03.07.81.32.06',''),(5189,1,1316,'3','durack.maisie@gmail.com',''),(5190,1,1316,'4','Subject: Unleash Limitless Productivity with InfinityFlow \r\n\r\nDear Visionary Professionals,\r\n\r\nAre you tired of feeling overwhelmed by the chaos of daily tasks and deadlines? Do you crave a seamless workflow that empowers you to unleash your true potential? Look no further than InfinityFlow.io - the ultimate productivity program that will propel your efficiency to infinity and beyond!\r\n\r\nImagine a world where you effortlessly glide through your to-do list, accomplishing tasks with unrivaled speed and precision. With InfinityFlow.io, this dream becomes a reality. Our cutting-edge platform is designed to optimize every aspect of your workflow, so you can focus on what truly matters - turning your ideas into reality!\r\n\r\nInfinityFlow.io\'s intuitive interface will transform the way you work. Seamlessly manage projects, delegate tasks, and collaborate with your team in real-time. No more messy email chains or lost files - everything you need is just a click away!\r\n\r\nBut that\'s not all - InfinityFlow.io is packed with powerful features to take your productivity to unprecedented heights. Our smart automation tools will streamline repetitive tasks, freeing up valuable time for you to tackle creative challenges. With personalized notifications and reminders, you\'ll never miss a deadline or important milestone again!\r\n\r\nSecurity is our top priority at InfinityFlow.io. Rest easy knowing that your sensitive data is protected by state-of-the-art encryption and authentication protocols. Focus on your work with peace of mind, knowing that your information is safe and secure.\r\n\r\nWhether you\'re a solopreneur, a small team, or a large enterprise, InfinityFlow.io scales to fit your needs. Our flexible plans and customizable workflows ensure that our platform adapts to your unique requirements and maximizes your efficiency.\r\n\r\nJoin the ranks of successful professionals who have harnessed the power of InfinityFlow.io to revolutionize their productivity. As a limited-time offer, we invite you to try InfinityFlow.io FREE for 14 days! Experience the transformative impact it will have on your work life, without any commitment.\r\n\r\nAre you ready to unlock the door to unparalleled productivity? Visit www.infinityflow.io and start your journey towards infinite possibilities today!\r\n\r\nLet InfinityFlow.io be your secret weapon for success.\r\n\r\nTo boundless achievements,\r\n\r\n\r\nGo Get your best LTD for 2023 >>>>> https://rebrand.ly/infinityflow',''),(5191,1,1317,'6','Kimberly Hass',''),(5192,1,1317,'2','078 1878 6496',''),(5193,1,1317,'3','g4320399@gmail.com',''),(5194,1,1317,'4','This Makes Earning Money with your cell phone easy!\r\nYour AI Clone that works while you sleep.\r\n\r\nhttps://aiwealthwave--chasereiner.thrivecart.com/viral-ai-clone/',''),(5195,1,1318,'6','Richard Anderson',''),(5196,1,1318,'2','474 3275',''),(5197,1,1318,'3','basil.awad51@outlook.com',''),(5198,1,1318,'4','Good Day,\r\n\r\nThere are some opportunities on standby. Want to explore? Just follow the link below to begin the journey:\r\nhttps://rokl.ink/increased-sales\r\n\r\n\r\nBest wishes,\r\n\r\n David Johnson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to unsubscribe from our communications from us, simply click the link at https://rokl.ink/optoutone',''),(5199,1,1319,'6','Kevin Malloy',''),(5200,1,1319,'2','320-760-6416',''),(5201,1,1319,'3','zeus@busitoday.co',''),(5202,1,1319,'4','Hi,\r\nThis software leverages ...\r\n\r\nThe New 2023 The World’s First A.I-Powered Viral TikTok Builder\r\n\r\nDon\'t pay more for zeus, grab it here now at a low price: https://www.busitoday.co/zeus !\r\n\r\nThis is one of the easiest ways to boost your earnings online\r\n\r\nJust 60 seconds set up\r\n\r\nAnd you can be on your way to pocketing passive profits\r\n\r\nThis closes today.\r\n\r\nYour last chance to get zeus starts now...\r\n\r\n>>> GO here: https://www.busitoday.co/zeus !\r\n\r\n\r\nKevin Malloy\r\n\r\n\r\nUNSUBSCRIBE: https://www.busitoday.co/unsubscribe \r\nAddress: 731 Clovis Ave, Clovis, CA 93612',''),(5203,1,1320,'6','Lionel Darnell',''),(5204,1,1320,'2','475 1113',''),(5205,1,1320,'3','lionel@lioneldarnell.net',''),(5206,1,1320,'4','Hey there! I\'m very experienced with AI and I want to show you something you could start leveraging in your bisuness to get a TON of leads, free of charge. Respond with, \"ýes\" if you\'d like me to send you more info.',''),(5207,1,1321,'6','Sommer Braine',''),(5208,1,1321,'2','972-681-2136',''),(5209,1,1321,'3','braine.sommer73@gmail.com',''),(5210,1,1321,'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.\r\n\r\nFor details, shoot me an email or Skype me at my contact info below.\r\n\r\nP. Stewart\r\nSkype: live:.cid.ad0ee8f191cd36b4\r\nEmail: ps75150@gomail2.xyz',''),(5211,1,1322,'6','Gregg Mcnulty',''),(5212,1,1322,'2','650-931-4526',''),(5213,1,1322,'3','mcnulty.gregg@gmail.com',''),(5214,1,1322,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. My email is wakeupmyleads@gmail.com\r\n\r\nBest\r\n\r\nScott',''),(5215,1,1323,'6','Phil Stewart',''),(5216,1,1323,'2','342-123-4456',''),(5217,1,1323,'3','noreplyhere@aol.com',''),(5218,1,1323,'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.\r\n\r\nP. Stewart\r\nSkype: live:.cid.e169e59bb6e6d159\r\nEmail: ps4893@gomail2.xyz',''),(5219,1,1324,'6','tCiVTLsIhWX',''),(5220,1,1324,'2','KUeMmbYdpTh',''),(5221,1,1324,'3','marionlh_santosh4@outlook.com',''),(5222,1,1324,'4','DlugSREiyYUcVjkG',''),(5223,1,1324,'5','NUCYskAzmcXKa',''),(5224,1,1325,'6','krAlNXyCJcZfRMuD',''),(5225,1,1325,'2','hNsMdGBStker',''),(5226,1,1325,'3','marionlh_santosh4@outlook.com',''),(5227,1,1325,'4','faZwtXyLNmnGUvD',''),(5228,1,1325,'5','BeMhTOWlLSxovEiU',''),(5229,1,1326,'6','ZItcopJAPLFCSf',''),(5230,1,1326,'2','upJyYOABV',''),(5231,1,1326,'3','marionlh_santosh4@outlook.com',''),(5232,1,1326,'4','tmcwphbM',''),(5233,1,1326,'5','yFAegxWNifqh',''),(5234,1,1327,'6','vnXqKruFiPOa',''),(5235,1,1327,'2','tpXfvnGDEUgMTqWx',''),(5236,1,1327,'3','marionlh_santosh4@outlook.com',''),(5237,1,1327,'4','MUtyVnrb',''),(5238,1,1327,'5','IyrvDNpbh',''),(5239,1,1328,'6','Megan Atkinson',''),(5240,1,1328,'2','08230 72 72 77',''),(5241,1,1328,'3','meganatkinson149@gmail.com',''),(5242,1,1328,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 300-1000+ followers per month.\r\n- Real, human followers: People follow you because they are interested in your business or niche.\r\n- Safe: All actions are made manually. We do not use any bots.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you are interested, and would like to see some of our previous work, let me know and we can discuss further.\r\n\r\nKind Regards,\r\nMegan',''),(5243,1,1329,'6','Chris Hanes',''),(5244,1,1329,'2','415-249-7881',''),(5245,1,1329,'3','jayden.hanes62@yahoo.com',''),(5246,1,1329,'4','Hi,\r\n\r\nFind out how to Rank juiceelectrical.co.nz on Google #1 Position Instantly by Using the \"Copy & Paste\" Strategy.\r\n\r\nUtilize the Google loopholes now, nobody in the world knows about this \"copy & paste\" SEO method yet, it\'s time to exploit it now.\r\n\r\nClick this link to get the secret now - https://www.successpath.top/93b3ea59?ref=juiceelectrical.co.nz\r\n\r\nThank you,\r\nChris\r\nFounder\r\nSuccessPath.TOP\r\n\r\n\r\n\r\n\r\n\r\n\r\n== \r\n\r\n23 Cartwright Road, Nicollebury, DE 41804\r\nTo unsubscribe, kindly submit your request here - https://forms.gle/rpv6AvYEpQGkYw398',''),(5247,1,1330,'6','Joseph Davis',''),(5248,1,1330,'2','476 9438',''),(5249,1,1330,'3','erickson.virginia@gmail.com',''),(5250,1,1330,'4','Good Day,\r\n\r\nThere are some opportunities ready and waiting. curious? Just click on the link below to get the ball rolling:\r\nhttps://rokl.ink/increased-sales\r\n\r\n\r\nRegards,\r\n\r\n William Jones \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving from our communications in the future, simply click the link at https://rokl.ink/optoutone',''),(5251,1,1331,'6','Rosaria Dubay',''),(5252,1,1331,'2','01.56.16.25.42',''),(5253,1,1331,'3','drusus852@yahoo.com',''),(5254,1,1331,'4','Making money online, look no further! Shine Ranker!!\r\n\r\nhttps://hi.switchy.io/DPXf\r\n\r\n\r\nOpt out of future messages by replying to this message and stating opt out.\r\njuiceelectrical.co.nz',''),(5255,1,1332,'6','Lela Wishart',''),(5256,1,1332,'2','0240-4583963',''),(5257,1,1332,'3','wishart.lela@googlemail.com',''),(5258,1,1332,'4','I am from USA. I will build manual high authority white hat dofollow SEO backlinks quality service.\r\n\r\n200+ Power Fusion of SEO Backlinks 100 Tier 1, 150 Tier 2 Conglomerated backlinks, Drip Feed, and Syncopation over 10 days..\r\n\r\nLink : https://rebrand.ly/backlink-service',''),(5259,1,1333,'6','Daniel',''),(5260,1,1333,'3','daniellee.430@gmail.com',''),(5261,1,1333,'4','Hi, \r\n\r\nCan I please get a quote on replacing 15 down lights to recessed lights? I have light fixtures already, need rewiring and probably a dimmer switch, thanks.',''),(5262,1,1333,'5','Google',''),(5263,1,1334,'6','Chris Nevarez',''),(5264,1,1334,'2','0386 6843094',''),(5265,1,1334,'3','edith.nevarez@gmail.com',''),(5266,1,1334,'4','Hello,\r\n\r\nLearn how to Rank juiceelectrical.co.nz on Google #1 Page Immediately by Using the \"Copy & Paste\" Methodology.\r\n\r\nExploit the Google loopholes now, nobody in this world aware about this \"copy & paste\" SEO method yet, it\'s time to use it now.\r\n\r\nVisit here to unlock the secret for yourself - https://www.successpath.top/74d9be31?ref=juiceelectrical.co.nz\r\n\r\nThank you,\r\nChris\r\nFounder\r\nSuccessPath.TOP\r\n\r\n\r\n\r\n\r\n\r\n\r\n== \r\n\r\n23 Cartwright Road, Nicollebury, DE 41804\r\nTo unsubscribe, kindly submit your request here - https://forms.gle/rpv6AvYEpQGkYw398',''),(5267,1,1335,'6','bkzOqCJEsLnF',''),(5268,1,1335,'2','LMyknXFbNGz',''),(5269,1,1335,'3','ErinAllman442@yahoo.com',''),(5270,1,1335,'4','GJlWrvubaMCQNst',''),(5271,1,1335,'5','EGeRwAXJOyH',''),(5272,1,1336,'6','dZeaMopAsEIry',''),(5273,1,1336,'2','vwPqYtXlUQLn',''),(5274,1,1336,'3','ErinAllman442@yahoo.com',''),(5275,1,1336,'4','CcJTsKbUSEqjN',''),(5276,1,1336,'5','OFmwNtVeY',''),(5277,1,1337,'6','XyfVrqSnBLmdb',''),(5278,1,1337,'2','IwgxozveTKGDrUh',''),(5279,1,1337,'3','ErinAllman442@yahoo.com',''),(5280,1,1337,'4','qTMoOsurbwGIzx',''),(5281,1,1337,'5','aYNmJvtbkeohiBfl',''),(5282,1,1338,'6','SKpclHyi',''),(5283,1,1338,'2','wTdEnKryzk',''),(5284,1,1338,'3','ErinAllman442@yahoo.com',''),(5285,1,1338,'4','WAHrFehYSgpyPXRo',''),(5286,1,1338,'5','uFyKBClPAh',''),(5287,1,1339,'6','David Ahlers',''),(5288,1,1339,'2','078 3689 5409',''),(5289,1,1339,'3','7minutes@solveques.xyz',''),(5290,1,1339,'4','Hey owner of juiceelectrical.co.nz,\r\n\r\nCongratulations! \r\n\r\n\r\nYou\'re invited to watch this special video where you can start generating your first online income for just a few minutes of work!\r\n\r\n\r\nYou will discover how you too can start drawing dollars from a Little-Known Loophole in the internet...\r\n\r\n\r\nJust by using nothing but your laptop!\r\n\r\n\r\nEverything will be explained here: https://www.solveques.xyz/7minutes \r\n\r\n\r\nThis video will expire within 24 hours so watch it know before it\'s too late!\r\n\r\n\r\n\r\nChat soon,\r\n\r\nDavid Ahlers\r\n\r\n\r\nUNSUBSCRIBE: https://www.solveques.xyz/unsubscribe \r\nAddress: 1034 W 18th St, Merced, CA 95340',''),(5291,1,1340,'6','Antonietta',''),(5292,1,1340,'2','828-457-6421',''),(5293,1,1340,'3','juiceelectrical.co.nz@yahoo.com',''),(5294,1,1340,'4','Hey there \r\n\r\nI 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. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nCheers, \r\n\r\nAntonietta',''),(5295,1,1341,'6','Buck Lyall',''),(5296,1,1341,'2','902-856-9913',''),(5297,1,1341,'3','lyall.buck@googlemail.com',''),(5298,1,1341,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo. My email is wakeupmyleads@gmail.com\r\n\r\nBest\r\n\r\nScott',''),(5299,1,1342,'6','Wing',''),(5300,1,1342,'2','02040591027',''),(5301,1,1342,'3','hinwingneko@gmail.com',''),(5302,1,1342,'4','Hi l want to install ev changer?can you give me more details for that?',''),(5303,1,1342,'5','Google',''),(5304,1,1343,'6','Praveen Raj',''),(5305,1,1343,'2','250-547-7310',''),(5306,1,1343,'3','solutionspherez@gmail.com',''),(5307,1,1343,'4','Hey I saw something was broken on your website, can I fix for you for free? To build my porfolio?\r\n\r\nKindly reply me in email..\r\n\r\nThanks.',''),(5308,1,1344,'6','James Gordon',''),(5309,1,1344,'2','01.62.94.67.39',''),(5310,1,1344,'3','james.gordon@gmail.com',''),(5311,1,1344,'4','AI is here to change the world, and people are going crazy over it\r\n\r\nSo the question is, would you like a piece of that pie?\r\n\r\n\r\nBrainBox - The World’s First AI App Let You Launch Your Own “ChatGPT-like” AI Chatbot with 50 stunning AI features\r\n\r\nYou can even customize this AI Chatbot with your own domain, branding and style and charge people for using it.\r\n\r\nForget paying huge fees for Content Writers, Programmers, Designers, Translators, Video Editors, SEO Experts, Customer Support, etc\r\n\r\n\r\nBrainBox handles all of that for you 100%\r\n\r\n >> Click Here To See The Live Demo & Get Full Access Before Price Increases\r\n\r\n Use my coupon code: bit.ly/BrainBoxExclusive\r\n\r\n\r\n\r\nTo get access to BrainBox you need just 4 easy steps away \r\n\r\nStep1: Login to BrainBox Cloud-Based App ( super-easy to navigate dashboard)\r\n\r\nStep 2: Create- With Just One Click, Create Your Very Own ChatGPT-Like AI Chatbot( this takes just few minutes)\r\n\r\nStep 3: Now Launch- You’re Ready To Charge Millions Of Hungry Customers For Using Your Very Own AI Chatbot.\r\n\r\nStep 4: Start Getting Paid by your Customers and Clients \r\n\r\n\r\nBrainBox comes with over 50 AI features that which includes ;\r\n\r\nWrite engaging, high quality content for videos, blogs, scripts, emails, newsletters, ebooks literally anything\r\n\r\n\r\nTurn plain text into engaging, professional videos that attract thousands of free hits of traffic\r\n\r\n\r\nGenerate the best AI designs that put 99% of graphic designers to shame, in just seconds\r\n\r\n\r\nDesign salespages, sales funnels, fully functional blogs\r\n\r\n\r\nProofread your writing without paying anything\r\n\r\n\r\nTranslate your writing to over 50 different languages and profit\r\n\r\n\r\nThat’s just a tiny fraction of all the features that BrainBox has to offer…\r\n\r\n\r\nUsing BrainBox will give you full control and cut down your expenses on hiring freelancers that give you low service .\r\n\r\n>> Get Unlimited Access to BrainBox AI Technology \r\n\r\nbit.ly/BrainBoxExclusive\r\n\r\n\r\n\r\nAnd to make this a no-brainer, the first 25 people will get full access to my 100 bonuses.\r\n\r\nPS: 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\r\n\r\n\r\n>>Click here to secure your access to BrainBox today\r\n\r\nbit.ly/BrainBoxExclusive\r\n\r\n\r\n\r\nSincerely,\r\n\r\nJames',''),(5312,1,1345,'6','Eric Jones',''),(5313,1,1345,'2','555-555-1212',''),(5314,1,1345,'3','ericjonesmyemail@gmail.com',''),(5315,1,1345,'4','Hello\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz Owner!\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nVisit https://rushleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nVisit https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nVisit https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe visit https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5316,1,1346,'6','Mike Gilson',''),(5317,1,1346,'2','81672569259',''),(5318,1,1346,'3','peterDilkmaida@gmail.com',''),(5319,1,1346,'4','Howdy \r\n \r\nI have just checked juiceelectrical.co.nz for the ranking keywords and saw that your website could use an upgrade. \r\n \r\nWe will increase your ranks organically and safely, using only state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/unbeatable-seo/ \r\n \r\nDecember SALE -30% coupon: XMS30 \r\n \r\nRegards \r\nMike Gilson\r\n \r\nDigital X SEO Experts',''),(5320,1,1346,'5','Google',''),(5321,1,1347,'6','Tobias Filson',''),(5322,1,1347,'2','0528-3435099',''),(5323,1,1347,'3','info@gillysourcing.com',''),(5324,1,1347,'4','Hello,\r\n\r\nHey there! Gilly Sourcing is your go-to when it comes to sourcing from China. We\'ve got storage, price haggling, quality checks, and shipping covered! Have a look https://gillysourcing.com/',''),(5325,1,1348,'6','Marcus McNeil',''),(5326,1,1348,'2','425-409-6403',''),(5327,1,1348,'3','onlineremoteworkers@gmail.com',''),(5328,1,1348,'4','We need beta tester to test our new games online! Earn up to $750 per day!\r\n\r\nSignup for FREE:\r\nwww.unlockgrid.com\r\n\r\n-Marcus\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://bit.ly/websiteoptout',''),(5329,1,1349,'6','Miles Lamontagne',''),(5330,1,1349,'2','062 419 66 49',''),(5331,1,1349,'3','miles.lamontagne@msn.com',''),(5332,1,1349,'4','Apply these innovative affiliate solution\'s to revolutionize your business.\r\n\r\nClick the link below to explore how our program can elevate your business into legendary status!\r\n\r\nhttps://down-range-affiliate-domination-formula.gr-site.com/\r\n\r\nHappy Holiday\'s,\r\nThe Down Range Team',''),(5333,1,1350,'6','Miguel Martinez',''),(5334,1,1350,'2','0366 4563401',''),(5335,1,1350,'3','income@realdollar.xyz',''),(5336,1,1350,'4','Hey,\r\nYou often hear of Google and FB making you rich. Unfortunately, those days are gone as these tech giants have closed off nearly every loophole.\r\n\r\nInstead, did you know Amazon now holds the key to quick wealth?\r\n\r\nClick here for the astonishing discovery: https://www.realdollar.xyz/income \r\n\r\nA data scientist who escaped Amazon’s dastardly clutches has just blown the whistle and EXPOSED a sneaky algorithm that has started to make a select few very, very rich.\r\n\r\nFind out how: https://www.realdollar.xyz/income \r\n\r\nBest Regards,\r\n\r\nMiguel Martinez\r\n\r\nUNSUBSCRIBE: https://www.realdollar.xyz/unsubscribe \r\nAddress: 6031 N Palm Ave, Fresno, CA 93704',''),(5337,1,1351,'6','Marty Mobsby',''),(5338,1,1351,'2','0481 19 35 45',''),(5339,1,1351,'3','mobsby.marty@gmail.com',''),(5340,1,1351,'4','AMAZON CHRISTMAS HOLIDAYS DEALS\r\n\r\nNEVER BEFORE DISCOUNTS\r\n\r\nDon\'t miss out jaw-dropping Amazon\'s Christmas Holidays Deals\r\n\r\nCheck on Amazon- https://bit.ly/3PrZISP',''),(5341,1,1352,'6','Woodrow Gardener',''),(5342,1,1352,'2','078 2635 6866',''),(5343,1,1352,'3','gardener.woodrow60@gmail.com',''),(5344,1,1352,'4','Deel is a global payroll and compliance hiring service for remote groups. It helps companies manage their international workforce, from culture and onboarding to local payroll and compliance. \r\nDeel works for independent contractors and full-time employees in more than 150 countries. It can help with: \r\nComplying with international hiring laws\r\nManaging payment cycles and timesheets\r\nAutomatically generating invoices\r\nHandling multiple payment methods in one platform\r\nDeel supports ACH, SEPA, BACS, PAD, Brex, credit card, and debit card payments. It also supports manual transfers from your bank, Wise, or Mercury account. You can also send a cryptocurrency transfer through Coinbase. \r\nDeel was founded in 2019 by Alex Bouaziz and Shuo Wang, who met while studying at MIT. The company has grown to over 2,000 team members across the globe in over 100 countries. It has 15,000+ customers including Shopify, Nike, and Cloudflare.\r\n\r\nGet Deel for free upto 200 employess : https://get.deel.com/HRsolutionzz',''),(5345,1,1353,'6','Emerson Showalter',''),(5346,1,1353,'2','052 577 50 51',''),(5347,1,1353,'3','showalter.emerson@msn.com',''),(5348,1,1353,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo. My email is wakeupmyleads@gmail.com\r\n\r\nBest\r\n\r\nScott',''),(5349,1,1354,'6','Katherine Robinson',''),(5350,1,1354,'2','021718744',''),(5351,1,1354,'3','missymorzine@gmail.com',''),(5352,1,1354,'4','Kia Ora,\r\nMerry Christmas!! \r\nWhen you are back at work, please could I have a quote for Air con/ heat pump for our small home in Darfield, 2612 Wards Road, 7571.\r\nMany Thanks\r\nKatherine :)',''),(5353,1,1354,'5','Google search',''),(5354,1,1355,'6','Theresa Smith',''),(5355,1,1355,'2','0391 57 77 37',''),(5356,1,1355,'3','bonnett.anita@gmail.com',''),(5357,1,1355,'4','Hello,\r\n\r\nDo you sometimes find yourself in a tug of war between work and fitness? We have the perfect solution for you - Elebands! \r\n\r\nElebands 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.\r\n\r\nWith 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:\r\n\r\n1. Burn Calories: Effortlessly burn up to 1,500 calories daily, toning your body as you go about your day.\r\n\r\n2. Natural Weight Loss: Say goodbye to intense workouts and stressful diets. Elebands helps you lose weight naturally.\r\n\r\n3. Build Strength: Develop lean muscles and enhance your strength as you carry out your regular activities.\r\n\r\nImagine achieving your dream body without stepping foot in a gym or following a strict diet plan. With Elebands, it\'s possible.\r\n\r\nMany 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. \r\n\r\nVisit our website now at https://bit.ly/elebands and embrace the Elebands experience.\r\n\r\nLet Elebands be your partner in achieving a fit and healthy lifestyle. Start your transformation today!\r\n\r\nWarm regards,\r\n\r\nTheresa Smith\r\nBrand Ambassador\r\nElebands USA\r\n\r\nVisit our website NOW! https://bit.ly/elebands',''),(5358,1,1356,'6','Walter Teakle',''),(5359,1,1356,'2','31-92-36-47',''),(5360,1,1356,'3','walter.teakle4@gmail.com',''),(5361,1,1356,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. My email is wakeupmyleads@gmail.com\r\n\r\nBest\r\n\r\nScott',''),(5362,1,1357,'6','Sherryl Veilleux',''),(5363,1,1357,'2','485 63 495',''),(5364,1,1357,'3','sherryl.veilleux@googlemail.com',''),(5365,1,1357,'4','You might like this get your article rank top on google with this gig..\r\n\r\nhttps://bit.ly/organictrafficz',''),(5366,1,1358,'6','Doug Shume',''),(5367,1,1358,'2','077 6677 0327',''),(5368,1,1358,'3','dougshume@gmail.com',''),(5369,1,1358,'4','Hi, I have an overflow of customers that I\'d like to send to you but I want to make sure you can handle more leads, let me know if you\'d like me to send you more info.',''),(5370,1,1359,'6','Maggie Leon',''),(5371,1,1359,'2','0381 4247938',''),(5372,1,1359,'3','leon.maggie@yahoo.com',''),(5373,1,1359,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo. My email is wakeupmyleads@gmail.com\r\n\r\nOr call me +66 800 528 082\r\n\r\nBest Reguards,\r\n\r\nscott paul\r\n\r\nScott',''),(5374,1,1360,'6','Mose Quigley',''),(5375,1,1360,'2','0485 91 59 93',''),(5376,1,1360,'3','quigley.mose@outlook.com',''),(5377,1,1360,'4','Subject: Unleash the Power of Your Business with GoHighLevel!\r\n\r\nDear Entrepreneurs and Business Leaders,\r\n\r\nAre you ready to revolutionize the way you run your business? Say hello to GoHighLevel - the all-in-one platform that will elevate your business to new heights and empower you with the tools you need to succeed!\r\n\r\nPicture this: seamlessly managing your entire customer journey from a single, intuitive dashboard. No more juggling between different platforms or drowning in a sea of confusing spreadsheets. With GoHighLevel, you can streamline your processes and focus on what truly matters - growing your business.\r\n\r\nFrom generating high-converting leads to nurturing them into loyal customers, GoHighLevel has got you covered. Build stunning landing pages that leave a lasting impression, create captivating email campaigns that engage and convert, and effortlessly manage your appointments with a smart scheduling system that syncs with your calendar.\r\n\r\nBut that\'s not all - GoHighLevel\'s versatility knows no bounds! Whether you\'re in the business of coaching, consulting, marketing, or any other industry, our platform adapts to your unique needs. Experience the convenience of managing your SMS marketing, social media, and even client pipelines all under one roof.\r\n\r\nWorried about your business scaling to new heights? Fear not! GoHighLevel is designed with growth in mind. With advanced analytics and performance tracking, you\'ll gain valuable insights into your business\'s performance and make data-driven decisions for continued success.\r\n\r\nOur user-friendly interface ensures that you don\'t need to be tech-savvy to make the most of our platform. Say goodbye to complexities and embrace the simplicity of GoHighLevel!\r\n\r\nAs a special offer for our valued customers, we\'re thrilled to provide a 30-day free trial of GoHighLevel. Yes, you read that right - an entire month to experience the transformative power of our platform, risk-free!\r\n\r\nJoin thousands of businesses worldwide who have already witnessed the magic of GoHighLevel and achieved unparalleled growth and success. Don\'t be left behind - take the leap and go beyond your limits with GoHighLevel!\r\n\r\nReady to embark on a journey of business excellence? Head over to www.gohighlevel.com and sign up for your free trial today.\r\n\r\nEmpower your business, elevate your success - GoHighLevel awaits you!\r\n\r\nTo your success,\r\n\r\nGoHighLevel lover\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(5378,1,1361,'6','Ronald Farkas',''),(5379,1,1361,'2','0484 73 15 10',''),(5380,1,1361,'3','ronald.farkas@gmail.com',''),(5381,1,1361,'4','Did you hear about the unusual rice method that liquifies fat cells as you sleep?\r\n\r\nClinical 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!\r\n\r\nCheck out- https://tinyurl.com/puraflatbelly\r\n\r\nBefore you go to sleep tonight, try it for yourself...\r\n\r\n1 Unusual Rice Method That Liquifies Fat As You Sleep\r\n\r\nDon\'t waste another second on:\r\n\r\nCheck out- https://tinyurl.com/puraflatbelly\r\n\r\nX--- Fad diets that are impossible to enjoy...\r\nX--- Gym memberships or fitness apps...\r\nX--- Calorie counting\r\n\r\nInstead, just try this one easy fat-dissolving rice method before you sleep tonight and drop lbs of stubborn fat by morning.\r\n\r\nCheck out- https://tinyurl.com/puraflatbelly\r\n\r\nTo your health\r\nJennifer',''),(5382,1,1362,'6','Megan Atkinson',''),(5383,1,1362,'2','903-385-1939',''),(5384,1,1362,'3','meganatkinson149@gmail.com',''),(5385,1,1362,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers safely and practically. \r\n\r\nWe aim to gain you 300-1000+ real human followers per month, with all actions safe as they are made manually (no bots).\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nLet me know if you wish to see some of our previous work.\r\n\r\nKind Regards,\r\nMegan',''),(5386,1,1363,'6','Wil Bur',''),(5387,1,1363,'2','(02) 4904 5475',''),(5388,1,1363,'3','hifromwilbur@gmail.com',''),(5389,1,1363,'4','Hey, there! My name is Wil and I have a MASSIVE list of leads that are interested in buying from you. Is this a good place to to send you more information about the leads? Let me know.',''),(5390,1,1364,'6','Eric Jones',''),(5391,1,1364,'2','555-555-1212',''),(5392,1,1364,'3','ericjonesmyemail@gmail.com',''),(5393,1,1364,'4','Hello juiceelectrical.co.nz Administrator! Eric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5394,1,1365,'6','Mike Simon',''),(5395,1,1365,'2','82239281949',''),(5396,1,1365,'3','mikeinquiff@gmail.com',''),(5397,1,1365,'4','Howdy \r\n \r\nThis is Mike Simon\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Simon\r\n \r\nmike@strictlydigital.net',''),(5398,1,1365,'5','Google',''),(5399,1,1366,'6','Dani Hammonds',''),(5400,1,1366,'2','06-70486267',''),(5401,1,1366,'3','dani.hammonds@msn.com',''),(5402,1,1366,'4','Did you hear about the unusual rice method that liquifies fat cells as you sleep?\r\n\r\nClinical 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!\r\n\r\nCheck out- https://tinyurl.com/puraflatbelly\r\n\r\nBefore you go to sleep tonight, try it for yourself...\r\n\r\n1 Unusual Rice Method That Liquifies Fat As You Sleep\r\n\r\nDon\'t waste another second on:\r\n\r\nCheck out- https://tinyurl.com/puraflatbelly\r\n\r\nX--- Fad diets that are impossible to enjoy...\r\nX--- Gym memberships or fitness apps...\r\nX--- Calorie counting\r\n\r\nInstead, just try this one easy fat-dissolving rice method before you sleep tonight and drop lbs of stubborn fat by morning.\r\n\r\nCheck out- https://tinyurl.com/puraflatbelly\r\n\r\nTo your health\r\nJennifer',''),(5403,1,1367,'6','Latonya Lush',''),(5404,1,1367,'2','0368 1545904',''),(5405,1,1367,'3','latonya.lush0@outlook.com',''),(5406,1,1367,'4','I will boost your rankings with tier1 dofollow SEO backlinks for 5$..\r\n\r\nBringing your business to the extraterrestrial level with SEO & Content Marketing. My name is Virtual Superman and I lift the heaviest weights for you! \r\n\r\nLink : https://bit.ly/tier1-dofollow-backlinks\r\n\r\nLatonya',''),(5407,1,1368,'6','Jason Reed',''),(5408,1,1368,'2','0318 2588232',''),(5409,1,1368,'3','sherriff.michaela@googlemail.com',''),(5410,1,1368,'4','Hi owner of juiceelectrical.co.nz,\r\n\r\nThis is unbelievable…\r\n\r\nNew revolutionary technology has JUST been launched that allows you to INSTANTLY generate cash sucking content in less than 60 seconds from a single dashboard!\r\n\r\n> https://www.vauleonline.co/viraldashboards \r\n\r\nIt’ll help you Find, Create & Share Across All Social Media Platforms, eCom Stores, Video Platforms and Blog Channels…\r\n\r\n–All-In-One Content & Social Marketing Software\r\n–Inter-Connect All Your Social & Video Content In One Place\r\n–1-Click Share To The Hottest Social Networks\r\n–1-Click Share To The Most Popular Video Networks\r\n–1-Click Share To The Most Successful E-Com Platforms\r\n–1-Click Share To All The WordPress Blogs\r\n–Exclusive Deep Content Search\r\n–Advanced Hands-Free Automation\r\n– BONUS: VIP Video Training\r\n–BONUS: Free Commercial License\r\n\r\n———————————\r\n\r\nFULL DEMO:\r\n\r\n> https://www.vauleonline.co/viraldashboards \r\n\r\n———————————\r\nJason Reed\r\n\r\nPS. SAVE 97% Today… (limited time ONLY):\r\n\r\n> https://www.vauleonline.co/viraldashboards \r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.vauleonline.co/unsubscribe \r\nAddress: 5610 N Blackstone Ave, Fresno, CA 93710',''),(5411,1,1369,'6','Leon Carmody',''),(5412,1,1369,'2','03.23.38.42.49',''),(5413,1,1369,'3','leon.carmody@gmail.com',''),(5414,1,1369,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo. My email is wakeupmyleads@gmail.com\r\n\r\nBest\r\n\r\nScott',''),(5415,1,1370,'6','Bella Carranza',''),(5416,1,1370,'2','508 812 0437',''),(5417,1,1370,'3','automate2thrive@gmail.com',''),(5418,1,1370,'4','Hello\r\n\r\nWould you like me to help you set up an email newsletter for juiceelectrical.co.nz so you can build a sustainable income stream?\r\n\r\nIf you\'re interested just reply with the word \"newsletter\" and I\'ll do it for you FREE!\r\n\r\nBest\r\n\r\nOri',''),(5419,1,1371,'6','Sherryl Moulton',''),(5420,1,1371,'2','02182 19 22 05',''),(5421,1,1371,'3','moulton.sherryl@hotmail.com',''),(5422,1,1371,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo. My email is wakeupmyleads@gmail.com\r\n\r\nBest\r\n\r\nScott',''),(5423,1,1372,'6','Davey Hopley',''),(5424,1,1372,'2','(02) 4001 7692',''),(5425,1,1372,'3','letssucceed2@gmail.com',''),(5426,1,1372,'4','Dear juiceelectrical.co.nz\r\n\r\nI hope this message finds you well. I’m reaching out to share some potentially valuable information regarding the Employee Retention Tax Credit (ERTC), a significant relief effort established by the U.S. government to support businesses during these challenging times.\r\n\r\nThe ERTC is designed to help businesses like yours retain employees and reduce tax burdens. If you\'ve been adversely affected by the economic impacts of recent events, this program offers a refundable tax credit on qualified wages paid to employees.\r\n\r\nYou can apply here https://ercnationwide.com/qualify/?fpr=david46 or,\r\n\r\nHere’s a brief overview:\r\n\r\nEligibility: Businesses of all sizes that have experienced a decline in gross receipts or were fully or partially suspended due to government orders may qualify.\r\n\r\nBenefits: The credit can cover a substantial portion of wages paid to employees during eligible periods.\r\n\r\nHow to Claim: The credit can be claimed on your quarterly employment tax returns.\r\n\r\nWhy is this relevant to your business?\r\n\r\nFinancial Relief: The ERTC can provide significant financial support, allowing more flexibility in managing your operations.\r\n\r\nRetention of Staff: It aids in keeping your valued team members employed during difficult economic periods.\r\n\r\nI understand navigating these programs can be complex. For detailed information and guidance tailored to your specific situation, it’s advisable to consult with a tax professional or visit [relevant IRS link or a resourceful link about ERTC].\r\n\r\nOur goal is to ensure businesses in our community are aware and able to take advantage of all available resources. If you have any questions or need further information, please feel free to reach out.\r\n\r\nWishing you and your business continued success.\r\n\r\nVisit our website today for a FREE eligibility check here https://ercnationwide.com/qualify/?fpr=david46\r\n\r\nSincerely,\r\nDavid\r\ndavidjfrew.com - Owner\r\nWhatsapp: https://wa.me/447821886501 for immediate help contact me here\r\n\r\nTo stop messages please reply unsubscribe',''),(5427,1,1373,'6','Ngan Zamora',''),(5428,1,1373,'2','(02) 4053 2769',''),(5429,1,1373,'3','zamora.ngan@msn.com',''),(5430,1,1373,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo. My email is wakeupmyleads@gmail.com\r\n\r\nBest\r\n\r\nScott',''),(5431,1,1374,'6','Dorothy Hise',''),(5432,1,1374,'3','billionaire@kagrowth.org',''),(5433,1,1374,'4','Hi juiceelectrical.co.nz,\r\n\r\nDid you know…\r\n\r\n237 million people in the world practice the Law of Attraction?\r\n\r\nBut only 0.1% of these people actually manifest what they desire.\r\n\r\nAsk yourself:\r\n\r\nWhat do the 0.1% know that I don’t?\r\n\r\nMore importantly,\r\n\r\nWhat will you manifest right now if you somehow found out what they know?\r\n\r\nYour dream home?\r\n\r\nDream car? …Vacation? …Partner? Maybe your dream body?\r\n\r\nWell, \r\n\r\nA top-secret CIA “wealth attraction” experiment (funded by elite billionaires) has discovered a new…\r\n\r\n…7-minute at-home ritual to activate the wealth code within you: https://www.kagrowth.org/billionaire .\r\n\r\n✅ Attract extra money into your life effortlessly TODAY\r\n\r\n✅ Heal your body quickly without medicine \r\n\r\n✅ Find the love you’ve been searching for years \r\n\r\nThis neuroscientist taking this top secret information public, is being hailed as the man of Christ by folks who are cash-strapped, confesses that you can achieve all of the above rapidly if you just hear the special soundwave revealed on this website here: https://www.kagrowth.org/billionaire .\r\n\r\nBut I urge you to NOT delay checking it out because \r\n\r\nThe investors that funded this research know about this website and they are currently hiring the best Manhattan lawyers to… \r\n\r\n…shut this site down and silence the rogue scientist, so their secret for manifesting wealth can’t be revealed to the normal public.\r\n\r\nThey’ve already succeeded twice.\r\n\r\nThis might be your last chance to manifest and materialize all your desires in just 7 minutes a day: https://www.kagrowth.org/billionaire .\r\n\r\nMy students are reporting this begins working the first time you try it.\r\n\r\nDorothy Hise\r\n\r\nUNSUBSCRIBE: https://www.kagrowth.org/unsubscribe \r\nAddress: 141 Mahaffey St, Jefferson, GA 30549',''),(5434,1,1375,'6','Phil Stewart',''),(5435,1,1375,'2','342-123-4456',''),(5436,1,1375,'3','noreplyhere@aol.com',''),(5437,1,1375,'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.\r\n\r\nP. Stewart\r\nSkype: live:.cid.e169e59bb6e6d159\r\nEmail: ps1125@gomail2.xyz',''),(5438,1,1376,'6','Eric Jones',''),(5439,1,1376,'2','555-555-1212',''),(5440,1,1376,'3','ericjonesmyemail@gmail.com',''),(5441,1,1376,'4','Hi juiceelectrical.co.nz Administrator!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5442,1,1377,'6','Scott Speed',''),(5443,1,1377,'2','(318) 766-4793',''),(5444,1,1377,'3','betterthantvads@gmail.com',''),(5445,1,1377,'4','First off... Happy New Years! \r\n\r\nSecondly...\r\n\r\nif i could show you a proven, simple 3-step \"productless\" business that generated $1.2 million in 2023...\r\n\r\n... then give you the exact system that shows you how to do it yourself...\r\n\r\nwould you be interested? \r\n\r\nif so, then you might want to look at this:\r\n\r\n\r\nhttps://yellow.betterthansocial.com \r\n\r\n\r\nHappy New Year & here\'s to 2024!!',''),(5446,1,1378,'6','Heather Hansford',''),(5447,1,1378,'2','091 845 62 87',''),(5448,1,1378,'3','teamprocrack@gmail.com',''),(5449,1,1378,'4','Over the years we have collected thousands and thousands of digital marketing training couses and softwares, worth more then million dollor.\r\n\r\nFor just one-time investment of $39 you will get lifetime access to everything we offer for a limited time.\r\n\r\nIf you can\'t find anything you are looking for in our collection, you can always send us request through request page, we will try to get it for you within 24hours.\r\n\r\nVisit Our Site\r\n\r\nhttp://tinyurl.com/ynmvayr8\r\n\r\nTo your success,\r\nProcrack Team',''),(5450,1,1379,'6','Alison Gulley',''),(5451,1,1379,'3','gulley.alison@gmail.com',''),(5452,1,1379,'4','I will increase ahrefs domain rating dr 70 using high authority SEO backlinks.\r\n\r\nWhat Do I Offer ?\r\n\r\nGuaranteed DR Boost\r\nDofollow Backlinks\r\nGoogle Updates Safe\r\nFast Indexing\r\nPermanent Backlinks\r\nNo Drop in DR\r\n\r\nLink : https://sites.google.com/view/increaseahrefsdomainratingdr70\r\n\r\nSorry for sending without your permission It will Definitely help for your website...\r\n\r\nThankyou.',''),(5453,1,1380,'6','Bellatina Shewan',''),(5454,1,1380,'2','0223411080',''),(5455,1,1380,'3','shewan.bell@gmail.com',''),(5456,1,1380,'4','Hi we are looking for an electrician for tomorrow afternoon or Saturday to reconnect a new hot water tank and disconnect an old oven. \r\n43 hills rd .',''),(5457,1,1380,'5','Google',''),(5458,1,1381,'6','Marilou Nadel',''),(5459,1,1381,'2','(02) 4223 3304',''),(5460,1,1381,'3','nadel.marilou@gmail.com',''),(5461,1,1381,'4','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic. Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting contractors on Google. Can I share a testimonial \r\nfrom one of our clients with you? I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(5462,1,1382,'6','Fletcher Sandberg',''),(5463,1,1382,'2','52-83-16-79',''),(5464,1,1382,'3','millioniare@earnmorenow.info',''),(5465,1,1382,'4','Hi owner of juiceelectrical.co.nz,\r\n\r\nA revolutionary new way to earn dollars from your phone has just been revealed.\r\n\r\nSecret Millioniare Bot is making webmaster like you over 3500 bucks every single week!\r\n\r\nSecret Millioniare Bot is a proven system tha shows webmaster like you how to earn dollars with the most popular apps in the world today\r\n\r\nIt\'s soooo simple, check out how it works here :\r\n>>> https://www.earnmorenow.info/millioniare \r\n\r\nProfit now, thank me later ;)\r\n\r\n\r\nFletcher Sandberg\r\n\r\nUNSUBSCRIBE: https://www.earnmorenow.info/unsubscribe\r\nAddress: 3331 Buford Dr, Buford, GA 30519',''),(5466,1,1383,'6','Eric Jones',''),(5467,1,1383,'2','555-555-1212',''),(5468,1,1383,'3','ericjonesmyemail@gmail.com',''),(5469,1,1383,'4','Hi juiceelectrical.co.nz Webmaster. my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://blazeleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5470,1,1384,'6','Internet Marketing',''),(5471,1,1384,'3','lina.lusk@yahoo.com',''),(5472,1,1384,'4','Over the years we have collected thousands and thousands of digital marketing training couses and softwares, worth more then million dollor.\r\n\r\nFor just one-time investment of $39 you will get lifetime access to everything we offer for a limited time.\r\n\r\nIf you can\'t find anything you are looking for in our collection, you can always send us request through request page, we will try to get it for you within 24hours.\r\n\r\nVisit Our Site\r\n\r\nhttp://tinyurl.com/ynmvayr8\r\n\r\nTo your success,\r\nProcrack Team',''),(5473,1,1385,'6','Orlando Gannon',''),(5474,1,1385,'3','send.5658ebb06898@nicoric.com',''),(5475,1,1385,'4','Jasper - The Best AI Writing Assistant\r\n\r\nCreate content 5x faster with artificial intelligence. Jasper is the highest quality AI copywriting tool with over 3,000 5-star reviews. Best for writing blog posts, social media content, and marketing copy.\r\n\r\nhttps://hi.switchy.io/8slx\r\n\r\nOpt out of future messages by replying to this message and stating opt out.\r\njuiceelectrical.co.nz',''),(5476,1,1386,'6','Mike Mathews',''),(5477,1,1386,'2','81832423173',''),(5478,1,1386,'3','mikeHourrirm@gmail.com',''),(5479,1,1386,'4','If you are looking to rank your local business on Google Maps in a specific area, this service is for you. \r\n \r\nGoogle Map Stacking is a highly effective technique for ranking your GMB within a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\n \r\nThanks and Regards \r\nMike Mike Mathews\r\n \r\n \r\nPS: Want a comprehensive local plan that covers everything? \r\nhttps://www.speed-seo.net/product/local-seo-bundle/',''),(5480,1,1386,'5','Google',''),(5481,1,1387,'6','Klara Mcclure',''),(5482,1,1387,'2','077 6580 0962',''),(5483,1,1387,'3','klara.mcclure@gmail.com',''),(5484,1,1387,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo. My email is wakeupmyleads@gmail.com or sms, Whatsapp +66800528082\r\n\r\nBest\r\n\r\nScott',''),(5485,1,1388,'6','Bill Boothe',''),(5486,1,1388,'2','513-428-1713',''),(5487,1,1388,'3','boothe.virgil@hotmail.com',''),(5488,1,1388,'4','Do you find it hard to get reviews from your clients? Want to automate your reviews? Give me a text or call at 513-428-1713\r\n\r\nBill',''),(5489,1,1389,'6','Valerie Kahn',''),(5490,1,1389,'2','(71) 3113-8965',''),(5491,1,1389,'3','valerie.kahn54@gmail.com',''),(5492,1,1389,'4','Hello,\r\n\r\nQuick email to introduce you to Lister - our press coverage outreach service.\r\n\r\nWe secure press coverage and increase your overall visibility and trust by directly targeting and pitching publications in your niche, resulting in more press coverage.\r\n\r\nPlease see our attached deck below for more insights into on how Lister can get top tier press coverage in up to 800 outlets.\r\n\r\nI\'ve also included our 40% off code, CF40 which can be applied at checkout at: https://www.lister.ai\r\n\r\nIf you have any questions, please don\'t hesitate to respond directly to me here (hello@lister.ai) and I\'ll be more than happy to clarify!\r\n\r\nBest,\r\nGaby\r\n\r\nMore information: https://drive.google.com/file/d/1BBQuDLbQMwb2waXfGgh3X-5JpFxsSi5o/view?usp=sharing',''),(5493,1,1390,'6','Fletcher Smith',''),(5494,1,1390,'2','902-628-5833',''),(5495,1,1390,'3','fletcher.smith@dr2197.com',''),(5496,1,1390,'4','Hey I just made a video you can use to promote your website. If you want to see it just respond with the word ỳes.',''),(5497,1,1391,'6','Ravi Haddad',''),(5498,1,1391,'2','(03) 9109 6886',''),(5499,1,1391,'3','haddad.selina@gmail.com',''),(5500,1,1391,'4','Hi,\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(5501,1,1392,'6','Fletcher Smith',''),(5502,1,1392,'2','02.74.45.74.52',''),(5503,1,1392,'3','fletcher.smith@dr2197.com',''),(5504,1,1392,'4','Hey I just made a video you can use to promote your website. If you want to see it just respond with the word ỳes.',''),(5505,1,1393,'6','Shauna Siddons',''),(5506,1,1393,'2','078 0439 3352',''),(5507,1,1393,'3','siddons.shauna@msn.com',''),(5508,1,1393,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo and give a 10 day free trial.\r\n\r\n My email is wakeupmyleads@gmail.com or sms, Whatsapp +66800528082\r\n\r\nBest\r\n\r\nScott',''),(5509,1,1394,'6','Anne Dooley',''),(5510,1,1394,'2','0211665029',''),(5511,1,1394,'3','dooley@scorch.co.nz',''),(5512,1,1394,'4','Would like to have a consultant come to my place in Dunsandel. Currently have heat pump (which I don\'t think is working well or is adequate) and a night storeage. Bathroom room extractor fan not working and needs more lighting. Have a number of other lights causing issues.',''),(5513,1,1394,'5','Google search',''),(5514,1,1395,'6','Steve Zuwala',''),(5515,1,1395,'2','401-354-0459',''),(5516,1,1395,'3','stevezuwala@musicmail.xyz',''),(5517,1,1395,'4','Leaving a note to let you know I was here!\r\nHappy Holidays and continued blessings!\r\n\r\nSteve Zuwala\r\nCounry Music Artist\r\nBMI|NSAI|GMA|CMA\r\nwww.SteveZuwala.com',''),(5518,1,1396,'6','Chastity Grasby',''),(5519,1,1396,'2','070 2926 1531',''),(5520,1,1396,'3','chastity.grasby@gmail.com',''),(5521,1,1396,'4','Boost your website\'s visibility with our classified ad blasting service! We\'ll promote your links on 2,000+ classified ad pages, 500+ blogs, and 150+ social sites in the US and Canada. Our manual submission ensures targeted exposure, and you can track and optimize your ad\'s performance. Reach a broader audience and enhance your website\'s SEO today!\r\n\r\nFor details, shoot me an email or Skype me at my contact info below.\r\n\r\nP. Stewart\r\nSkype: live:.cid.f2bf75b5a952541b\r\nEmail: philstewart@myyahoo.com',''),(5522,1,1397,'6','NAERTREGE1249850NERTHRTYHR',''),(5523,1,1397,'2','89367138375',''),(5524,1,1397,'3','gregorystarks2000@noissmail.com',''),(5525,1,1397,'4','MERYTRH1249850MAMYJRTH',''),(5526,1,1397,'5','Google',''),(5527,1,1398,'6','Julie Demeyer',''),(5528,1,1398,'2','070 2992 1079',''),(5529,1,1398,'3','juliedemeyerjuliedemeyer@gmail.com',''),(5530,1,1398,'4','Hello, I have some leads that would like to buy your services that are interested in finance. Just reply \"yes\" if you\'re interested. Best regards',''),(5531,1,1399,'6','Darlene Dugan',''),(5532,1,1399,'2','06-87430540',''),(5533,1,1399,'3','dugan.darlene68@gmail.com',''),(5534,1,1399,'4','This is seriously perfect for you bit.ly/3tSF9GN',''),(5535,1,1400,'6','Ophelia Aachen',''),(5536,1,1400,'2','0650 114 46 66',''),(5537,1,1400,'3','aachen.ophelia54@gmail.com',''),(5538,1,1400,'4','I didn\'t think this was possible: https://bit.ly/41RjQCk',''),(5539,1,1401,'6','Marilou Grayndler',''),(5540,1,1401,'2','803-564-6885',''),(5541,1,1401,'3','marilou.grayndler@msn.com',''),(5542,1,1401,'4','You won\'t believe this completely automated system that earns you $1,000 a day without effort: https://bit.ly/4aK6HyN',''),(5543,1,1402,'6','Jack Sebastian',''),(5544,1,1402,'2','(18) 9901-2630',''),(5545,1,1402,'3','sebastian.ebony@gmail.com',''),(5546,1,1402,'4','Tired of slow lead responses? Discover instant engagement magic. Go High Level\'s app notifies & connects you instantly. Never miss a lead. Act now!\r\nhttps://bit.ly/FBVid33\r\n\r\nJack',''),(5547,1,1403,'6','Kathleen Withrow',''),(5548,1,1403,'2','0541 61 48 97',''),(5549,1,1403,'3','withrow.kathleen@gmail.com',''),(5550,1,1403,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo and give a 10 day free trial.\r\n\r\n My email is wakeupmyleads@gmail.com or sms, Whatsapp +66800528082\r\n\r\nBest\r\n\r\nScott',''),(5551,1,1404,'6','Lucinda Hetrick',''),(5552,1,1404,'2','60 408 98 44',''),(5553,1,1404,'3','lucinda.hetrick@googlemail.com',''),(5554,1,1404,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. We can show you a demo. My email is wakeupmyleads@gmail.com or sms, Whatsapp +66800528082\r\n\r\nBest\r\n\r\nScott',''),(5555,1,1405,'6','UPprEkaLYSlQGIie',''),(5556,1,1405,'2','zWwXANJIH',''),(5557,1,1405,'3','ashleyhhe796@outlook.com',''),(5558,1,1405,'4','XupzYLFh',''),(5559,1,1405,'5','pIcFrVSftQYm',''),(5560,1,1406,'6','RkinFXaPHufQw',''),(5561,1,1406,'2','MUDzByeEO',''),(5562,1,1406,'3','ashleyhhe796@outlook.com',''),(5563,1,1406,'4','DZYOXgesUVWbIuLr',''),(5564,1,1406,'5','RdsoyEBDf',''),(5565,1,1407,'6','zNwqvPQmrWLxpj',''),(5566,1,1407,'2','KSAsYrWgjhIZ',''),(5567,1,1407,'3','ashleyhhe796@outlook.com',''),(5568,1,1407,'4','TUIkHdnuVOGpi',''),(5569,1,1407,'5','ZunmKREGJxeYkps',''),(5570,1,1408,'6','yAHRhNltcqrJxP',''),(5571,1,1408,'2','dAtZxEwkTah',''),(5572,1,1408,'3','ashleyhhe796@outlook.com',''),(5573,1,1408,'4','lihFKzqbBdArkRG',''),(5574,1,1408,'5','vqgcOPoEe',''),(5575,1,1409,'6','Julio Balog',''),(5576,1,1409,'2','79 606 63 63',''),(5577,1,1409,'3','julio.balog@gmail.com',''),(5578,1,1409,'4','Your ad message sent to contact forms on millions of sites. It\'s way more affordable than conventional advertising. Get in touch with me by email or skype below for details.\r\n\r\nP. Stewart\r\nSkype: live:.cid.e169e59bb6e6d159\r\nEmail: ps43-600@gomail2.xyz',''),(5579,1,1410,'6','Ravi Mollison',''),(5580,1,1410,'2','03.23.69.80.71',''),(5581,1,1410,'3','marcelino.mollison@gmail.com',''),(5582,1,1410,'4','Hi,\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(5583,1,1411,'6','Danielle Simpson',''),(5584,1,1411,'2','20-32-02-17',''),(5585,1,1411,'3','simpsondanielle800@gmail.com',''),(5586,1,1411,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=8S4l8_bgcnc\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll 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.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nDanielle',''),(5587,1,1412,'6','Nellie Smalley',''),(5588,1,1412,'3','smalley.nellie@googlemail.com',''),(5589,1,1412,'4','Hi,\r\n\r\nI was just wondering if you had any old or unconverted leads ?\r\n\r\nWe can help turn this into cash for you using ChatGPT POWERED Reacivation software.\r\n\r\nWe will do this on the backend (100% performance basis).\r\n\r\nLet me know if you are interested. \r\n\r\nWe will work your list for Free for10 days to show you what we can do. \r\n\r\nMy email is wakeupmyleads@gmail.com\r\n\r\nBest\r\n\r\nScott Paul\r\n\r\n+66800528082',''),(5590,1,1413,'6','Judy Calvert',''),(5591,1,1413,'2','0384 7592069',''),(5592,1,1413,'3','calvert.judy@msn.com',''),(5593,1,1413,'4','Dear juiceelectrical.co.nz\r\n\r\nI hope this email finds you well. Today, I wanted to share a deeply personal story with you, one that I believe could inspire and potentially change the trajectory of your life, just as it did mine.\r\n\r\nA few years ago, I found myself in a situation I never imagined I\'d be in: homeless. The weight of life\'s challenges had taken its toll, and I was struggling to find my footing, both financially and emotionally. Every day was a battle, and the future seemed bleak.\r\n\r\nThen, I stumbled upon Rapid Profit Machine rpm4.com At first, I was sceptical. I\'d tried countless online ventures before, and none had delivered on their promises. But something about RPM felt different. I took a leap of faith and decided to give it a shot.\r\n\r\nFast forward to today, and I\'m consistently earning 5 figures a month, all thanks to RPM. But it\'s not just about the money. It\'s about the community, the support, and the genuine success stories that I witness every day.\r\n\r\nDon\'t just take my word for it. I invite you to join the RPM Facebook group and see for yourself. Interact with beginners who, like me, started with little to no experience but are now crushing their financial goals. Hear their stories, ask questions, and get a real sense of the transformative power of RPM.\r\n\r\nIf I, a former homeless individual, could turn my life around with RPM, I genuinely believe that anyone can. It\'s not a get-rich-quick scheme; it\'s a community and a system that, when followed with dedication and perseverance, can yield incredible results.\r\n\r\nGo to https://bit.ly/my-rapid-profit-machine and choose rapid profit machine and take the training, its free! \r\n\r\nWhen you join the group make sure you come say hello to me my name is David James and I am here to help\r\n\r\nThank you for taking the time to read my story. I hope it serves as a beacon of hope and a testament to the fact that no matter where you are in life, with the right tools and mindset, you can achieve greatness.\r\n\r\nWishing you all the best on your journey,\r\n\r\nDavid',''),(5594,1,1414,'6','Mathew Crow',''),(5595,1,1414,'2','0212834328',''),(5596,1,1414,'3','mr.mathewcrow@gmail.com',''),(5597,1,1414,'4','Looking for two quotes. One to install a ducted heat pump in our house, and the other to install and supply a ducted heat pump. Both will also require removing the old high wall heat pump.\r\n\r\nYou have done some work at our property before, 4 Mollymawk Place, Woolston and we were pleased with the service offered.',''),(5598,1,1414,'5','Have done work for us in the past.',''),(5599,1,1415,'6','Tessa',''),(5600,1,1415,'3','tessagrafton@gmail.com',''),(5601,1,1415,'4','Hoping to seek a quote. Needing to get an extractor fan/unobtrusive rangehood installed in the kitchen. A window sits above the stove. Needing to meet healthy home requirements. We are looking for something small and unobtrusive, that would sit above the window. The window width from sill to sill is approx 79cm. The bench to the top of the window sill length is approx 109cm. Appreciate if able to provide a quote for this installation and supply.',''),(5602,1,1415,'5','google',''),(5603,1,1416,'6','Darnell Johnson',''),(5604,1,1416,'2','06595 82 09 69',''),(5605,1,1416,'3','darnell.johnson@clickjobz2197.com',''),(5606,1,1416,'4','I have a way of connecting you to the candidates you need for your open jobs. \r\nIf you\'re interested just respond with the word Yes.',''),(5607,1,1417,'6','Fisher Williams',''),(5608,1,1417,'2','0399 0376019',''),(5609,1,1417,'3','fisher.williams@clickjobz2197.com',''),(5610,1,1417,'4','Hey if you need some help hiring staff, reach out to me.\r\nHere\'s the link to our website:\r\nhttps://clickjobz2197.com/ \r\n\r\nthanks and have a good day',''),(5611,1,1418,'6','Mike Phillips',''),(5612,1,1418,'2','85837367818',''),(5613,1,1418,'3','mikelida@gmail.com',''),(5614,1,1418,'4','Hi there \r\n \r\nJust checked your juiceelectrical.co.nz baclink profile, I noticed a moderate percentage of toxic links pointing to your website \r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge. \r\n \r\nStart recovering your ranks today: \r\nhttps://www.hilkom-digital.de/professional-linksprofile-clean-up-service/ \r\n \r\nRegards \r\nMike Phillips\r\nHilkom Digital SEO Experts \r\nhttps://www.hilkom-digital.de/',''),(5615,1,1418,'5','Google',''),(5616,1,1419,'6','Juana Dickens',''),(5617,1,1419,'2','04.91.07.58.94',''),(5618,1,1419,'3','affiliateinfodk@gmail.com',''),(5619,1,1419,'4','Linkedin has 810 MILLION active users.\r\n\r\n\r\nBut 99% of businesses don\'t know how to use it.\r\n\r\n\r\nHere are 10 powerful features you didn\'t know existed.\r\n\r\nhttps://mydownrange.com/blog/f/social-media-marketing-lesson-unknown-linkedin-features\r\n\r\nDon’t miss a thing. Get these free social marketing lessons 3x/wk here: Subscribe.\r\n\r\nhttps://mydownrange.com/#990ab0ff-9635-4ac2-99a7-84e48879cdfb\r\n\r\n\r\nRespectfully,\r\nThe Down Range Team!!!',''),(5620,1,1420,'6','Alycia Kane',''),(5621,1,1420,'2','(02) 6775 6596',''),(5622,1,1420,'3','kane.alycia@hotmail.com',''),(5623,1,1420,'4','Hello, there!\r\n\r\n-----------\r\nTRENDING NEWS… Make $528/ Day Over And Over Again\r\n-----------\r\n\r\nThose magic words that have the power to stop anyone dead in their track…\r\n\r\nWe can’t help but check the news…\r\n\r\nAnd it’s for that reason, that it is a 43 billion dollar industry…\r\n\r\nBut up until recently…\r\n\r\nTop companies like CNN had a monopoly, and made it incredibly hard for anyone to enter this market… \r\n\r\nBut that ends NOW… \r\n\r\nSee here how: https://bit.ly/TrendHunterAI\r\n\r\nYou see, my friend Ariel Sanders just launched his newest KILLER app\r\nTrendsHunter Ai… \r\n\r\nIt’s the world’s first app that generates not 1, not 2, but 100’s of news sites in ANY niche you want… \r\nHere is the best part… \r\n\r\nCheck now: https://bit.ly/TrendHunterAI\r\n\r\nThose websites are self-updating… meaning you don’t need to write or post anything… \r\n\r\nNot just that, it comes with it’s own built-in traffic generator\r\nThat will allow you to get thousands of clicks…\r\n\r\nWithout ever running paid ads… \r\n\r\nCheck the link: https://bit.ly/TrendHunterAI\r\n\r\nRight now, you can pick up your copy of TrendsHunter Ai \r\nFor a low one-time fee and secure your copy of exclusive bonuses worth over 10,000 \r\nGo on, and click on the link above…\r\n\r\nAnd watch how it works in action… \r\n\r\nhttps://bit.ly/TrendHunterAI\r\n\r\nCheers!',''),(5624,1,1421,'6','Miguel Herman',''),(5625,1,1421,'2','(02) 9208 4354',''),(5626,1,1421,'3','miguel.herman@hotmail.com',''),(5627,1,1421,'4','Hi there, my name is Conner Johnson, co-owner of Insurance Restoration Consultants. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. At IRC, we help contractors and their customers get the settlement they deserve through the supplement process. This is all handled remotely, with minimal intrusion into your daily workflows. Revenue increases from supplementing were in the millions for our largest client last year. If you aren\'t supplementing, you\'re really missing out! Our website is ircestimates.com and our scheduling link is ircconsultation.com but please feel free to reach us via email at info@ircestimates.com or call at (802) 520-0231 as well.',''),(5628,1,1422,'6','Abi',''),(5629,1,1422,'2','(82) 9822-9869',''),(5630,1,1422,'3','contentwriting011994@outlook.com',''),(5631,1,1422,'4','Hello,\r\n\r\nI\'m Abi, an English SEO copywriter and content writer. I excel in crafting blogs, articles, e-commerce product descriptions, SEO content, website content, business service descriptions, newsletter content, brochures, proofreading, social media captions, LinkedIn content, and SOPs.\r\n\r\nMy rate is USD 20 for every 1000 words of content. If you don\'t have time to plan out your content, we can help you with that. \r\n\r\nFeel free to email me at Contentwriting011994@outlook.com with any current requirements.\r\n\r\nThanks,\r\n\r\nAbi',''),(5632,1,1423,'6','William Cage',''),(5633,1,1423,'2','0472 90 71 20',''),(5634,1,1423,'3','thisiswilliamcage@gmail.com',''),(5635,1,1423,'4','I saw something wrong with your Google Map listing, is this a good place to send a report of the issues I found?',''),(5636,1,1424,'6','Raymond Raymond',''),(5637,1,1424,'2','457 04 863',''),(5638,1,1424,'3','raymondpike94@gmail.com',''),(5639,1,1424,'4','Hello there, I found a way to market a business on a shoe string budget. Can I send this to you? Respond \"Yes\" if interested.',''),(5640,1,1425,'6','Scott Treadren',''),(5641,1,1425,'2','69 343 68 36',''),(5642,1,1425,'3','aihubspace02@gmail.com',''),(5643,1,1425,'4','Hey I have this free marketing video for your website, do you want it?',''),(5644,1,1426,'6','Lashawnda Dawes',''),(5645,1,1426,'2','973-989-1209',''),(5646,1,1426,'3','dawes.lashawnda@msn.com',''),(5647,1,1426,'4','I Want To GIVE You\r\nMy Brand New Proven System \r\nPLUS $4,715 Worth Of \'PURE\' Money Making Bonuses For Only...\r\nFREE Today...\r\n\r\nCheck here: https://bit.ly/rpm30AI\r\n\r\nSo, What\'s The Catch...?\r\n\r\n----------\r\nThere Is NO CATCH!\r\n----------\r\n\r\nLet\'s be honest, there is loads out there that offer you something amazing for an incredibly low price but then stick you into some program that charges your card money every month.\r\n\r\nDon\'t worry... This isn\'t one of them.\r\n\r\nThere\'s NO hidden fees continuity program - and in case you\'re wondering why I\'m doing this...\r\n\r\nWell, there are actually a few reasons...\r\n- It\'s my way of giving back from the success I\'ve had...\r\n- Start making sales from my funnel and system, and when you see how awesome it is, it should get you excited to buy other stuff from me in the future.\r\n\r\nRegister here for free in my money making program: https://bit.ly/rpm30AI\r\n\r\n-------------------\r\n\r\nWhy Time Is Of The Essence...\r\n\r\nHere\'s why...\r\n\r\nI don\'t know how long I can keep giving this away for my proven to work RPM Funnel and system that is easier than anything else out there today. \r\n\r\nIf this page is still here, then the offer is live. But I reserve the right to pull it down at any time.\r\n\r\nCheck now: https://bit.ly/rpm30AI\r\n--------------------\r\n\r\nWhat To Do Next?...\r\nFrom here it\'s just finalising the details and getting you inside the RPM system!\r\n\r\nClick here https://bit.ly/rpm30AI right now, and we can finally get started!\r\n\r\nThanks for taking the time to read this letter and I can\'t wait to see you succeeding with the system in no time.\r\n\r\nTo your continued Success,\r\n\r\nJames',''),(5648,1,1427,'6','Eric Jones',''),(5649,1,1427,'2','555-555-1212',''),(5650,1,1427,'3','ericjonesmyemail@gmail.com',''),(5651,1,1427,'4','Dear juiceelectrical.co.nz Administrator. Cool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5652,1,1428,'6','Gregory Lukin',''),(5653,1,1428,'2','03.95.50.88.57',''),(5654,1,1428,'3','gregory.lukin@yahoo.com',''),(5655,1,1428,'4','Hello, there!\r\n\r\n**Link updated**\r\n\r\nhttps://bit.ly/TrendHunterAI\r\n\r\n\r\n-----------\r\nRE: TRENDING NEWS… Make $528/ Day Over And Over Again\r\n-----------\r\n\r\nThose magic words that have the power to stop anyone dead in their track…\r\n\r\nWe can’t help but check the news…\r\n\r\nAnd it’s for that reason, that it is a 43 billion dollar industry…\r\n\r\nBut up until recently…\r\n\r\nTop companies like CNN had a monopoly, and made it incredibly hard for anyone to enter this market… \r\n\r\nBut that ends NOW… \r\n\r\nSee here how: https://bit.ly/TrendHunterAI\r\n\r\nYou see, my friend Ariel Sanders just launched his newest KILLER app\r\nTrendsHunter Ai… \r\n\r\nIt’s the world’s first app that generates not 1, not 2, but 100’s of news sites in ANY niche you want… \r\nHere is the best part… \r\n\r\nCheck now: https://bit.ly/TrendHunterAI\r\n\r\nThose websites are self-updating… meaning you don’t need to write or post anything… \r\n\r\nNot just that, it comes with it’s own built-in traffic generator\r\nThat will allow you to get thousands of clicks…\r\n\r\nWithout ever running paid ads… \r\n\r\nCheck the link: https://bit.ly/TrendHunterAI\r\n\r\nRight now, you can pick up your copy of TrendsHunter Ai \r\nFor a low one-time fee and secure your copy of exclusive bonuses worth over 10,000 \r\nGo on, and click on the link above…\r\n\r\nAnd watch how it works in action… \r\n\r\nhttps://bit.ly/TrendHunterAI\r\n\r\nCheers!',''),(5656,1,1429,'6','Brent Fouch',''),(5657,1,1429,'2','(51) 8730-8378',''),(5658,1,1429,'3','brentfouch@aiviralvideo.com',''),(5659,1,1429,'4','Hey, I noticed your website isn\'t using AI yet, can I send over something that I think would help?',''),(5660,1,1430,'6','Ashish A',''),(5661,1,1430,'2','66 815 96 27',''),(5662,1,1430,'3','jocelyn.reay@gmail.com',''),(5663,1,1430,'4','Hello ,\r\n\r\nEver thought about taking your business to the next level? I\'m Ashish, a seasoned mobile app developer, and I specialize in transforming ideas into powerful Android and iOS applications. With a track record of over 5 years and 500+ successful projects, including iOS, Android, React Native, and Flutter apps, I\'m here to bring your vision to life.\r\n\r\nWhy choose my services?\r\n\r\nStriking UI/UX Design: Give your brand the spotlight it deserves with an app that not only functions flawlessly but also boasts captivating design.\r\n\r\n Bug-Free Assurance: Enjoy a glitch-free experience. I am committed to delivering applications that work seamlessly and without any hiccups.\r\n\r\nVIP Customer Support: Your satisfaction is my top priority. Benefit from VIP customer support throughout the development process.\r\n\r\nReady to reshape your business strategy? Let\'s start the journey! Click the link below:\r\n\r\n Link to contact : https://bit.ly/mobileapp-development-service\r\n\r\nDon\'t miss out on the chance to turn occasional customers into loyal advocates. A mobile app is the secret sauce to building lasting connections in today\'s competitive market.\r\n\r\nExcited to discuss the possibilities and transform your business!\r\n\r\nBest Regards,\r\n\r\nAshish\r\nMobile App Developer\r\n\r\nP.S. Have questions or need more information? Feel free to reach out. Let\'s turn your app dreams into a reality!',''),(5664,1,1431,'6','Stevie Mackrell',''),(5665,1,1431,'2','06-75083672',''),(5666,1,1431,'3','mackrell.stevie@gmail.com',''),(5667,1,1431,'4','Hi,\r\n\r\nI would like to share with you the youtube video 5 Amazing Treehouse Resorts in Thailand \r\nhttps://youtu.be/vhnJTM96YWM\r\n\r\nRegards,\r\n\r\nHotelier Channel',''),(5668,1,1432,'6','Marcelino Bunnell',''),(5669,1,1432,'2','02.09.14.79.16',''),(5670,1,1432,'3','bunnell.marcelino@gmail.com',''),(5671,1,1432,'4','If you\'re into hassle-free online content, you\'ve got to check out TrendHunterAI. It\'s like having an AI assistant for your site. Here\'s the link: https://bit.ly/3Hgty7z\r\n\r\nKeep up the good work over there at juiceelectrical.co.nz!\r\n\r\n- Marcelino',''),(5672,1,1433,'6','Jordan Peterson',''),(5673,1,1433,'2','01.96.21.17.90',''),(5674,1,1433,'3','jordan.peter@gmail.com',''),(5675,1,1433,'4','Hello juiceelectrical.co.nz ,\r\n\r\nCreate your own “ChatGPT-Like” AI Chatbot with 50+ Advanced AI Features - Zero Coding, Zero Monthly Fee!\r\n \r\nYaay! BrainBox is Finally Live!!!\r\n\r\n\r\nYou 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.\r\n\r\nHenceforth, you will stop working tirelessly like a pendulum and quit spending enormously for freelancers and expensive third-party platforms for their pesky tasks.\r\n\r\nIt 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! \r\n\r\n>>Activate your own \"ChatGPT-Like\" AI Chatbot here (Earlybirds and 11 fastest fingers only!)\r\n\r\n===>>> https://warriorplus.com/o2/a/hfjg7b/0 \r\n\r\n\r\nWith 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...\r\n…without experiencing a single downtime or paying outrageously monthly.. and trust me your result is ready within a twinkle of an eye!\r\n\r\nSounds great right?\r\n\r\n>>>Click to Effortlessly launch your own ChatGPT Like AI Chatbot and see more Amazing Benefits (Earlybirds and 11 fastest fingers!) \r\n\r\n===>>> https://warriorplus.com/o2/a/hfjg7b/0\r\n\r\n\r\nNo Bluffing, No Xtra Payment! \r\n\r\nThis 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. \r\n \r\nAnd 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.\r\n\r\nThe sweetest of all is,\r\n\r\nIt 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.\r\n\r\nIsn’t this mind-blowing?\r\n\r\n>>Go here to create your own ChatGPT-like app and charge people for it. (Earlybirds and 11 fastest fingers)\r\n\r\n===>>>> https://warriorplus.com/o2/a/hfjg7b/0\r\n\r\n\r\nSee 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. \r\n\r\nNo upgrading fee, No reselling fee, No Upsells required! \r\n \r\n>>Go here to Claim your earlybird benefits and your Exclusive Launch Benefits. (Earlybirds and 11 fastest fingers)\r\n=>>> https://warriorplus.com/o2/a/hfjg7b/0\r\n\r\nCheers\r\nJordan',''),(5676,1,1434,'6','Richard Thomas',''),(5677,1,1434,'2','53 334 24 46',''),(5678,1,1434,'3','richard@aimoneymakingcourse.com',''),(5679,1,1434,'4','Hi, I noticed a few things wrong with your Google listing, is this a good place to send the problems?',''),(5680,1,1435,'6','Mike',''),(5681,1,1435,'3','mikephillips@windowslive.com',''),(5682,1,1435,'4','Hi, could you please provide a quote to replace a heat pump unit. It is in Winton St in St albans, back to back, and need around a 7kw unit (most economical option if possible)? also when would you be able to do this? \r\n\r\nThanks, mike',''),(5683,1,1436,'6','Gemma McCombie',''),(5684,1,1436,'2','0211420848',''),(5685,1,1436,'3','gemma.mccombie@gmail.com',''),(5686,1,1436,'4','Hi there\r\nWe are needing to install a range hood and put in a plug for the dishwasher in a house we are getting ready for sale. Can we buy a suitable range hood from bunnings to be installed? Do you have any availability to do this in the near future?\r\nKind regards\r\nGemma',''),(5687,1,1436,'5','Google',''),(5688,1,1437,'6','Bobby Ryan',''),(5689,1,1437,'2','(21) 8513-8986',''),(5690,1,1437,'3','heyitsbobbyryan@gmail.com',''),(5691,1,1437,'4','Hi, I noticed a few problems affecting your website on Google, is this a good place to send them?',''),(5692,1,1438,'6','Procrack Team',''),(5693,1,1438,'2','07753 66 41 12',''),(5694,1,1438,'3','kendall.zinke@gmail.com',''),(5695,1,1438,'4','Take Your Internet Marketing Business To Next Level With Our Huge Collection Of Training Courses and softwares.\r\n\r\nNEW COURSES ADDED TODAY\r\n* Anthony Rousek – Super Affiliate Sniper\r\n* Gabe Legion Schillinger – Producer Funnel Secrets+SCORPIO PFS\r\n* Bill Walsh – The Objection Box Family\r\n* Freedom Farmers – Start A Microgreens Business From Scratch\r\n* Build Grow Scale – User Testing Mastery\r\n\r\nIf you can\'t find what you are looking for in our collection, you can always send us a request we will try to get it for you within 48hours.\r\n\r\nVisit Our Site\r\n\r\nhttps://procrackteam.com\r\n\r\nTo your success\r\nProcrack Team',''),(5696,1,1439,'6','Michael Davis',''),(5697,1,1439,'2','231-853-3136',''),(5698,1,1439,'3','rapidleads360@gmail.com',''),(5699,1,1439,'4','Good Day,\r\n\r\nGet your free Sales Funnel Guide for Success now!\r\n\r\nhttps://rokl.ink/sales-funnel-success\r\n\r\nBest wishes,\r\n\r\n David Anderson\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving from our communications from us, simply click the link at https://rokl.ink/optoutone',''),(5700,1,1440,'6','Elbert Wiese',''),(5701,1,1440,'2','03494 48 97 01',''),(5702,1,1440,'3','elbert.wiese@gmail.com',''),(5703,1,1440,'4','This Is A\r\nOnce-In-A-Generation Moment!!\r\n1000x Bigger Than\r\nAnything Else Online Right Now!\r\nFinally, The GPT Store Has Launched, \r\nAnd GPT\'s Have Already Made Us $131,085.00!\r\n\r\nSee how: https://bit.ly/GPTStoresExposed',''),(5704,1,1441,'6','Anthony Lewis',''),(5705,1,1441,'2','06-76431372',''),(5706,1,1441,'3','anthony@rapidprofitmachine1.com',''),(5707,1,1441,'4','Hello, did you notice the problems with your website\'s performance?',''),(5708,1,1442,'6','Lane Herrick',''),(5709,1,1442,'2','077 6184 5096',''),(5710,1,1442,'3','lane.herrick@msn.com',''),(5711,1,1442,'4','Hey there, \r\n\r\nI found this cool way to make money online. If you are interested in getting financially free, now is the time to jump on the AI train!!!!!\r\n\r\nIt is SOOOOOOO easy. If I can do it, anyone can. \r\n\r\nClick this link for a FREE 16-minute video that explains the whole process.... https://aibotsmarketing.systeme.io/cd8a7779-0d424be2\r\n\r\nTake care and blessings to you and your family!!!\r\n\r\nSkylar Jade\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo opt out of future communication through your website contact page, click this link and enter in your website domain name... https://aibotsmarketing.wixsite.com/opt-out-form\r\n\r\n2100 14th St. Suite 107-30\r\nPlano, TX 75074-6444',''),(5712,1,1443,'6','Fletcher Smith',''),(5713,1,1443,'2','51 253 67 98',''),(5714,1,1443,'3','fletcher.smith@dr2197.com',''),(5715,1,1443,'4','Hey I just made a video you can use to promote your website. \r\nIf you want to see it just respond with the word yes.',''),(5716,1,1444,'6','Joshua Walker',''),(5717,1,1444,'2','077 6350 3189',''),(5718,1,1444,'3','joshua@airapidprofits.com',''),(5719,1,1444,'4','Hello, may I report some issues I\'ve spotted with your website on Google?',''),(5720,1,1445,'6','Ouida Halsey',''),(5721,1,1445,'2','06-68933810',''),(5722,1,1445,'3','halsey.ouida@gmail.com',''),(5723,1,1445,'4','Millions of men and women are enjoying accelerated fat loss, increased energy and healthier, happier lives…\r\n\r\nI invite you to try\r\nhttps://bit.ly/ikariajuice-Leanbelly\r\n\r\nAll the best,',''),(5724,1,1446,'6','Vivian',''),(5725,1,1446,'3','nzbest777@yahoo.co.nz',''),(5726,1,1446,'4','Hi, just wondering do you provide service for COV( certificate of verification)? If yes, how much will be charger? Cause my property without have power more than 6 months. My address: 1/49 Waltham road. Thank you. Vivian',''),(5727,1,1446,'5','Google',''),(5728,1,1447,'6','Mellissa Wenger',''),(5729,1,1447,'2','01.73.09.26.83',''),(5730,1,1447,'3','mellissa.wenger@yahoo.com',''),(5731,1,1447,'4','Hey,\r\nI would like to share with you the youtube video from my research on the top 5 questions and the best answers for Hotel Reservation and sales job interviews. \r\nWish you enjoy it. https://youtu.be/qxiTHptLxY0 \r\n\r\nRegards,\r\n\r\nHotelier Channel',''),(5732,1,1448,'6','Eric Grey',''),(5733,1,1448,'2','070 6338 7731',''),(5734,1,1448,'3','ericg@domaindirectory.org',''),(5735,1,1448,'4','Immediate action is required: Submit your domain to the Domain Directory. \r\n\r\nGo to https://DomainDirectory.org/pay\r\n\r\nEric Grey\r\nHead of Compliance\r\nDomainDirectory.org',''),(5736,1,1449,'6','Matthew Martinez',''),(5737,1,1449,'2','0246-3852803',''),(5738,1,1449,'3','matthewm@aibestsuite.com',''),(5739,1,1449,'4','Hi, I\'ve observed some inaccuracies in your Google listing; is this the correct contact for addressing them?',''),(5740,1,1450,'6','Kenneth White',''),(5741,1,1450,'2','06-33689747',''),(5742,1,1450,'3','kenneth@adamhustle.com',''),(5743,1,1450,'4','Hi, I noticed your website hasn\'t embraced AI capabilities yet. Would you be interested in a suggestion I have?',''),(5744,1,1451,'6','Mike Leman',''),(5745,1,1451,'2','86547777898',''),(5746,1,1451,'3','peterDilkmaida@gmail.com',''),(5747,1,1451,'4','Howdy \r\n \r\nI have just checked juiceelectrical.co.nz for its SEO Trend and saw that your website could use an upgrade. \r\n \r\nWe will enhance your ranks organically and safely, using only state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/unbeatable-seo/ \r\n \r\n \r\nRegards \r\nMike Leman\r\n \r\nDigital X SEO Experts',''),(5748,1,1451,'5','Google',''),(5749,1,1452,'6','Richard Thomas',''),(5750,1,1452,'2','077 5096 3808',''),(5751,1,1452,'3','richard@aimoneymakingcourse.com',''),(5752,1,1452,'4','I saw that your google my business listing is not working as it should. Like where google show customers your business. I can give you a list of a couple things to fix, is that ok?',''),(5753,1,1453,'6','praveen raj',''),(5754,1,1453,'2','(03) 5324 5913',''),(5755,1,1453,'3','solutionspherez@gmail.com',''),(5756,1,1453,'4','Hi,\r\n\r\nWe\'ve noticed your website is at risk due to spammy comments and contact form submissions, making it susceptible to issues like spammy backlinks and data breaches. Don\'t worry—there\'s a simple solution!\r\n\r\nIntroducing MalCare, the ultimate anti-malware plugin:\r\n\r\n Bot Protection\r\n Real-time Firewall\r\n Brute-Force Protection\r\n Deep Malware Scan\r\n Instant Malware Removal\r\n 100% Protection for Critical Sites\r\n Activity Log\r\n Bulletproof Backups\r\n\r\nSecuring your site is as easy as 1-2-3:\r\n\r\nInstall MalCare.\r\nScan your site.\r\nClean it with one click.\r\nTake action now and try MalCare for free: https://linktr.ee/bizsolutionhub\r\n\r\nEnsure your website\'s safety today!\r\n\r\nBest,\r\nPraveen',''),(5757,1,1454,'6','Michael Sinclair',''),(5758,1,1454,'2','04.08.76.27.69',''),(5759,1,1454,'3','taggart.jasmine75@outlook.com',''),(5760,1,1454,'4','Hello,\r\n\r\nI 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! \r\n\r\nPlus, as a bonus, we provide the B2B prospect list so you can effortlessly expand your reach weekly and generate consistent leads and sales. \r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n\r\nWHO THIS IS FOR:\r\n\r\n- Companies who sell to businesses (B2B).\r\n- Companies who provide a product/service with wide appeal (not a small niche).\r\n- Companies whose product/service can be sold across the USA and/or international.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!! For just $240 a week, we’ll send 1.25-Million emails weekly and start filling your inbox with qualified leads. \r\n\r\nBook a 10 min call with us: https://bit.ly/hivemailer-240-special \r\n\r\nNOTE: 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.\r\n\r\nSincerely,\r\nMichael\r\n\r\nP.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',''),(5761,1,1455,'6','Stephanie Beich',''),(5762,1,1455,'2','425-346-7060',''),(5763,1,1455,'3','hello@socialbusybee.com',''),(5764,1,1455,'4','Hi there, Natalie from Social Busy Bee, your ally in the exciting world of Instagram growth. I\'ve discovered something phenomenal for skyrocketing your Instagram presence and I\'m thrilled to share it with you!\r\n\r\nSocial Growth Engine brings to you a revolutionary service that propels your Instagram engagement to new heights. It\'s seamless:\r\n\r\n- Concentrate on crafting captivating content.\r\n- Extremely affordable at just $36/month.\r\n- Safe and secure (no password needed), incredibly powerful, and the ideal Instagram companion.\r\n\r\nI\'ve witnessed remarkable results firsthand, and I\'m sure you will too! Elevate your Instagram presence today: http://get.socialbuzzzy.com/instagram_booster\r\n\r\nTo your success,\r\nNatalie at Social Busy Bee\"',''),(5765,1,1456,'6','eDZFGYSXk',''),(5766,1,1456,'2','KaLwzhoefgZvqO',''),(5767,1,1456,'3','avxxppzhvqynpu@outlook.com',''),(5768,1,1456,'4','MNGQrIiSdv',''),(5769,1,1456,'5','oTCeMgvXRlKmPu',''),(5770,1,1457,'6','eDZFGYSXk',''),(5771,1,1457,'2','KaLwzhoefgZvqO',''),(5772,1,1457,'3','avxxppzhvqynpu@outlook.com',''),(5773,1,1457,'4','MNGQrIiSdv',''),(5774,1,1457,'5','oTCeMgvXRlKmPu',''),(5775,1,1458,'6','SwzueyvjIQrFlaqW',''),(5776,1,1458,'2','MszNnUGZWgLaOku',''),(5777,1,1458,'3','avxxppzhvqynpu@outlook.com',''),(5778,1,1458,'4','MxVtrYuT',''),(5779,1,1458,'5','rPztFlXH',''),(5780,1,1459,'6','SwzueyvjIQrFlaqW',''),(5781,1,1459,'2','MszNnUGZWgLaOku',''),(5782,1,1459,'3','avxxppzhvqynpu@outlook.com',''),(5783,1,1459,'4','MxVtrYuT',''),(5784,1,1459,'5','rPztFlXH',''),(5785,1,1460,'6','praveen raj',''),(5786,1,1460,'2','0676 499 76 74',''),(5787,1,1460,'3','solutionspherez@gmail.com',''),(5788,1,1460,'4','Hi,\r\n\r\nWe\'ve noticed your website is at risk due to spammy comments and contact form submissions, making it susceptible to issues like spammy backlinks and data breaches. Don\'t worry—there\'s a simple solution!\r\n\r\nIntroducing MalCare, the ultimate anti-malware plugin:\r\n\r\n Bot Protection\r\n Real-time Firewall\r\n Brute-Force Protection\r\n Deep Malware Scan\r\n Instant Malware Removal\r\n 100% Protection for Critical Sites\r\n Activity Log\r\n Bulletproof Backups\r\n\r\nSecuring your site is as easy as 1-2-3:\r\n\r\nInstall MalCare.\r\nScan your site.\r\nClean it with one click.\r\nTake action now and try MalCare for free: https://linktr.ee/bizsolutionhub\r\n\r\nEnsure your website\'s safety today!\r\n\r\nBest,\r\nPraveen',''),(5789,1,1461,'6','Jody Foulds',''),(5790,1,1461,'2','936 38 260',''),(5791,1,1461,'3','foulds.jody@msn.com',''),(5792,1,1461,'4','Private invitation to access our new AI tool.\r\n\r\nIntroducing Automatic Trading.\r\n\r\nImagine if your phone could earn you money while you sleep, play video games, or hang out with friends. Sounds too good to be true? Well, it’s not! It’s called automatic trading, and it’s about to make your life a whole lot easier.\r\n\r\nYou can test it for FREE here:\r\n\r\nhttps://yfind.net/make-your-phone-do-the-trading-for-you-introducing-automatic-trading-with-vestinda/',''),(5793,1,1462,'6','Krista Yee',''),(5794,1,1462,'2','475 29 598',''),(5795,1,1462,'3','krista.yee@googlemail.com',''),(5796,1,1462,'4','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic. Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting contractors on Google. Can I share a testimonial \r\nfrom one of our clients with you? I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(5797,1,1463,'6','Merle Crook',''),(5798,1,1463,'2','0680 192 23 74',''),(5799,1,1463,'3','merle.crook@gmail.com',''),(5800,1,1463,'4','Want to absolutely crush your sales this new year?\r\n\r\nGet featured in 150 to 350 news sites within 3 days at 90% OFF PR PROMO SALE!\r\n\r\nYou won\'t find this deal anywhere on the internet.\r\n\r\nGet it here now: https://9figuremedia.com/2024-promo/?aff-id=421JD',''),(5801,1,1464,'6','Eli Powell',''),(5802,1,1464,'2','032 282 16 86',''),(5803,1,1464,'3','powell.eli@gmail.com',''),(5804,1,1464,'4','Hey! Stumbled upon something amazing for your online business journey. Check out this book on building a 7-figure business using just email marketing, no extra fluff! [Here\'s more info](https://www.socialsurge.ai/recommends/secret-email-system/)\r\n\r\nI am confident that this book will be priceless for juiceelectrical.co.nz\r\n\r\nLet me know what you think!\r\n\r\nTake it easy\r\nEli',''),(5805,1,1465,'6','Theresa Smith',''),(5806,1,1465,'2','51 334 36 53',''),(5807,1,1465,'3','jasper.lister@gmail.com',''),(5808,1,1465,'4','Hello,\r\n\r\nDo you sometimes find yourself in a tug of war between work and fitness? We have the perfect solution for you - Elebands! \r\n\r\nElebands 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.\r\n\r\nThe best part is we have full body weight sets ranging from 3lbs – 30lbs to ensure optimal results no matter what your fitness goals are. \r\n\r\nPlus! 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.\r\n\r\nWith 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:\r\n\r\n1. Burn Calories: Effortlessly burn up to 1,500 calories daily, toning your body as you go about your day.\r\n\r\n2. Natural Weight Loss: Say goodbye to intense workouts and stressful diets. Elebands helps you lose weight naturally.\r\n\r\n3. Build Strength: Develop lean muscles and enhance your strength as you carry out your regular activities.\r\n\r\nImagine achieving your dream body without stepping foot in a gym or following a strict diet plan. With Elebands, it\'s possible.\r\n\r\nMany 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. \r\n\r\nVisit our website now at https://bit.ly/elebands-special and embrace the Elebands experience.\r\n\r\nLet Elebands be your partner in achieving a fit and healthy lifestyle. Start your transformation today!\r\n\r\nWarm regards,\r\n\r\nTheresa Smith\r\nBrand Ambassador\r\nElebands USA\r\n\r\nVisit our website NOW! https://bit.ly/elebands-special',''),(5809,1,1466,'6','Jessica Wright',''),(5810,1,1466,'2','0369 0146754',''),(5811,1,1466,'3','jessicawright@getafollower.com',''),(5812,1,1466,'4','Hey there, my name is Rebecca I help people around the world scale their businesses. I had a look at your social media pages and I noticed they could use a boost. \r\n\r\nWe\'re trialling a new AI organic social media growth software for our clients and would like to give you the opportunity to test it out.\r\n\r\nIf you are interested you can click the link below!\r\n\r\nhttps://www.getafollower.com/#Jessica\r\n\r\n\r\nThank you for your time, we hope to help you with you social media pages!\r\n\r\nBest of luck,\r\nJessica from GetAFollower',''),(5813,1,1467,'6','Jen Bailey',''),(5814,1,1467,'2','0273209119',''),(5815,1,1467,'3','jenbaileyjen@gmail.com',''),(5816,1,1467,'4','Kitchen light not working - repaired a few months ago with a new transformer? Not sure if that is the right name. Worked until a week ago, tired new light bulb. They are halogen lights.\r\n\r\nThanks',''),(5817,1,1467,'5','Internet',''),(5818,1,1468,'6','Shana Hoskins',''),(5819,1,1468,'2','0482 16 31 61',''),(5820,1,1468,'3','hoskins.shana@outlook.com',''),(5821,1,1468,'4','Discover How We Make $25/min with GPT\r\n\r\n Get our Most Profitable AI Apps for Chat-GPT\r\n\r\n *NEW* AI Apps Bank Us $194/Hour With AI\r\n\r\n Case Studies: $120 to $5k/Day Revealed\r\n\r\n *EXPOSED* SECRET Free AI Tools for Profit\r\n\r\n Make 100% With Resell Rights Included!\r\n\r\n Fast-Track Your AI Profit in 2024.. in 1 Click!\r\n\r\n Get the Elite 2024 Tech of The #1 AI Profiteer\r\n\r\n 100% GUARANTEED you NEVER SAW these AI Tricks in ALL of 2024.. or 5x your money-back!\r\n\r\nclick here so see it \r\n\r\nhttps://warriorplus.com/o2/a/y53jnb/0\r\n\r\nthank me later',''),(5822,1,1469,'6','mZpLnsqf',''),(5823,1,1469,'2','PEYamDhHFXgsQ',''),(5824,1,1469,'3','xdgrnzhnbsip@outlook.com',''),(5825,1,1469,'4','xgaEnKhSUHN',''),(5826,1,1469,'5','mUGBSdaCKlFTo',''),(5827,1,1470,'6','mZpLnsqf',''),(5828,1,1470,'2','PEYamDhHFXgsQ',''),(5829,1,1470,'3','xdgrnzhnbsip@outlook.com',''),(5830,1,1470,'4','xgaEnKhSUHN',''),(5831,1,1470,'5','mUGBSdaCKlFTo',''),(5832,1,1471,'6','FouRGZEMiPxhYNdf',''),(5833,1,1471,'2','kAhwcvFJXZpnR',''),(5834,1,1471,'3','xdgrnzhnbsip@outlook.com',''),(5835,1,1471,'4','zaKgDCEfA',''),(5836,1,1471,'5','huskIMgcfOKmToj',''),(5837,1,1472,'6','FouRGZEMiPxhYNdf',''),(5838,1,1472,'2','kAhwcvFJXZpnR',''),(5839,1,1472,'3','xdgrnzhnbsip@outlook.com',''),(5840,1,1472,'4','zaKgDCEfA',''),(5841,1,1472,'5','huskIMgcfOKmToj',''),(5842,1,1473,'6','Patrick Harris',''),(5843,1,1473,'2','(02) 9850 9107',''),(5844,1,1473,'3','patrick.harris@dr2197.com',''),(5845,1,1473,'4','Hi, I am volunteering to make a free short video for you.\r\nIf you\'re interested just reply with Yes.',''),(5846,1,1474,'6','Chen Shepherd',''),(5847,1,1474,'2','0488 18 60 07',''),(5848,1,1474,'3','chenulebay+6@gmail.com',''),(5849,1,1474,'4','Hi,\r\n\r\n\r\n\r\nHave you searched for “coffee shop near me” or “pizza near me”?\r\n\r\n\r\n\r\nDoes your business show up when potential customers perform a “near me” search for your business?\r\n\r\n\r\n\r\nWant make sure your business appears on top of “near me” search even if they are searching from 50 miles away? \r\n\r\n\r\nHit reply and I’ll send you video that shows how to get your business on top of the near me search results within 45 days!\r\n\r\nCheers\r\nChen',''),(5850,1,1475,'6','praveen raj',''),(5851,1,1475,'2','031 694 68 27',''),(5852,1,1475,'3','solutionspherez@gmail.com',''),(5853,1,1475,'4','Hi,\r\n\r\nWe\'ve noticed your website is at risk due to spammy comments and contact form submissions, making it susceptible to issues like spammy backlinks and data breaches. Don\'t worry—there\'s a simple solution!\r\n\r\nIntroducing MalCare, the ultimate anti-malware plugin:\r\n\r\n Bot Protection\r\n Real-time Firewall\r\n Brute-Force Protection\r\n Deep Malware Scan\r\n Instant Malware Removal\r\n 100% Protection for Critical Sites\r\n Activity Log\r\n Bulletproof Backups\r\n\r\nSecuring your site is as easy as 1-2-3:\r\n\r\nInstall MalCare.\r\nScan your site.\r\nClean it with one click.\r\nTake action now and try MalCare for free: https://linktr.ee/bizsolutionhub\r\n\r\nEnsure your website\'s safety today!\r\n\r\nBest,\r\nPraveen',''),(5854,1,1476,'6','Nataliajavy',''),(5855,1,1476,'2','89757626591',''),(5856,1,1476,'3','nataliajavy@rukou3.com',''),(5857,1,1476,'4','Ηеllо аll, guуsǃ I know, mу message may bе tоo sресіfіc,\r\nВut mу sіѕtеr fоund nіcе mаn herе аnd thеу marrіed, ѕo hоw about me?! :)\r\nΙ am 24 уеarѕ old, Natаlіa, frоm Romanіа, Ι know Еnglish аnd Germаn languаgеs аlso\r\nΑnd... I hаvе ѕpесific diѕеaѕе, named nуmрhomаnia. Ԝhо know what iѕ thiѕ, саn undеrѕtand me (better to ѕaу it immеdіаtеly)\r\nAh уеѕ, I cоok verу tаѕty! аnd I lovе not оnly cook ;))\r\nΙm rеal gіrl, not рrоѕtitute, аnd lookіng fоr sеrіоus аnd hоt rеlаtіоnѕhір...\r\nАnуwaу, уоu can fіnd my рrofіlе hеrе: http://hoosanbumbcardlo.tk/idl-91711/',''),(5858,1,1476,'5','Google',''),(5859,1,1477,'6','Alex Noster',''),(5860,1,1477,'2','02041080715',''),(5861,1,1477,'3','alexnoster111@gmail.com',''),(5862,1,1477,'4','Hey just wondering if you have any work experience available, I’m a fit 19 year old male and have just completed my electrical pre trade course at Ara. I’m finishing up with my current job on the 30th of jan so am able to in feb if there is any available, cheers',''),(5863,1,1477,'5','Google',''),(5864,1,1478,'6','Demetria Ellis',''),(5865,1,1478,'2','410 2701',''),(5866,1,1478,'3','webscrafts@gmail.com',''),(5867,1,1478,'4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\nJust Reply to this message or email us webscrafts@gmail.com\r\n\r\nCheck our sample work https://drive.google.com/drive/folders/17SA9Ludm-nrCF1OyLKJ8RD1aud1y31bm?usp=sharing\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust Reply to this message or email us webscrafts@gmail.com\r\n\r\nThanks',''),(5868,1,1479,'6','Sheena Hoinville',''),(5869,1,1479,'2','909-743-2636',''),(5870,1,1479,'3','hoinville.sheena@gmail.com',''),(5871,1,1479,'4','This message showed up to you and I can make your message show up to millions of websites the same way. It\'s awesome and low-cost.Contact me by email or skype below if you want to know more.\r\n\r\nP. Stewart\r\nEmail: xu32fs@gomail2.xyz\r\nSkype: live:.cid.37ffc6c14225a4a8',''),(5872,1,1480,'6','Wemirref',''),(5873,1,1480,'2','83479168677',''),(5874,1,1480,'3','5e3e4wx0@icloud.com',''),(5875,1,1480,'4','You have been awarded dividends from securities. You need to follow the link https://tinyurl.com/yu6hsygf',''),(5876,1,1480,'5','Google',''),(5877,1,1481,'6','Eric Jones',''),(5878,1,1481,'2','555-555-1212',''),(5879,1,1481,'3','ericjonesmyemail@gmail.com',''),(5880,1,1481,'4','Dear juiceelectrical.co.nz Webmaster! my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. I’m interested… but… maybe…\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5881,1,1482,'6','Patrick Harris',''),(5882,1,1482,'2','070 1310 4086',''),(5883,1,1482,'3','patrick.harris@dr2197.com',''),(5884,1,1482,'4','Hi, I am volunteering to make a free short video for you.\r\nIf you\'re interested just reply with Yes.',''),(5885,1,1483,'6','Richard Thomas',''),(5886,1,1483,'2','091 603 39 23',''),(5887,1,1483,'3','richard@aimoneymakingcourse.com',''),(5888,1,1483,'4','I saw your google, its not, well its not right. Like where google show customers about your business. I don\'t want to impose, but there are a couple things that are just not right, may I tell you what they are?',''),(5889,1,1484,'6','Procrack Team',''),(5890,1,1484,'2','(02) 4018 3118',''),(5891,1,1484,'3','tenney.callum@gmail.com',''),(5892,1,1484,'4','Take Your Internet Marketing Business To Next Level With Our Huge Collection Of Training Courses and softwares.\r\n\r\nIf you can\'t find what you are looking for in our collection, you can always send us a request we will try to get it for you within 48hours.\r\n\r\nVisit Our Site\r\n\r\nhttps://procrackteam.com\r\n\r\nTo your success\r\nProcrack Team',''),(5893,1,1485,'6','Chase Richards',''),(5894,1,1485,'2','53 413 21 91',''),(5895,1,1485,'3','chase.richards@gmail.com',''),(5896,1,1485,'4','How does pulling in 3.5K+ a day sound?\r\n\r\nThat’s what Chris is making with his 10 AI apps…\r\n\r\nNow you can get these SAME 10 AI apps…\r\n\r\n…his most profitable AI Apps…\r\n\r\nAlong with case studies for making 120 to 5K/ day…\r\n\r\nWait… what? \r\n\r\n\r\nFind out more >> bit.ly/AiApps\r\n\r\n\r\nHe’s including resell rights too?\r\n\r\nThis is vintage and cutting edge AI, like always… \r\n\r\n…full of awesome…\r\n\r\n\r\n\r\nImagine having the power (and the resell rights) to these:\r\n\r\nVidGPT - create AI videos, with voice-overs, royalty-free images, videos & text-slides right from your browser and much more… easily worth the price of admission alone…\r\n\r\nPassive GPT MultiModal ChatGPT - Give Chat-GPT \"ears\" + plug it into ANY audio source or YouTube video - for an unlimited stream of content from other people\'s videos…\r\n\r\nInfinite AI - Build Unique AI Software - Create your own unique, sellable, password-protected software apps, powered by Chat-GPT! This is the SAME tech he used to build my 1k selling \"AI Commissions\" app!\r\n\r\n\r\n\r\nAnd that’s just THREE of the 10 AI apps you’ll pick up today… with QuickStart Guide, training… piles and piles of training videos so you’ll have everything you need…\r\n\r\n…to be an AI Wizard… if you want…\r\n\r\nIn the meantime, you can get ALL of these amazing apps for a ONE time fee, 96% off…\r\n\r\n…but hurry, this is a VERY limited time offer...\r\n\r\n\r\nGet this and watch your profits explode in 2024… >> bit.ly/AiApps\r\n\r\nTo Your Success, \r\nChase',''),(5897,1,1486,'6','Jason',''),(5898,1,1486,'2','81376384666',''),(5899,1,1486,'3','jason@rongyuejiaju.com',''),(5900,1,1486,'4','Hello Manager \r\nHope everything goes well with you. \r\nI\'m Jason a sales manager from Rongyuejiaju Company. \r\n \r\nI\'m writing to the inquiry that do you have any plan to launch \r\nrattan and wicker furniture in your market? \r\n \r\nOur company specializes in the design and manufacture of outdoor \r\nfurniture for 20 years.We manufacture products to international products \r\nquality standards.which earn us a good fame in our partners.All our products \r\nare developed with a complete dedication to quality, durability, and functionality \r\n \r\nBesides , We offer free samples ,products inpection and factory capacity review on \r\nyour request. \r\n \r\nHow would you like us cooperate with you? \r\n \r\nLooking forward to your earlier reply. \r\n \r\nBest Regard \r\nJason \r\n________________________________________ \r\nJasonoutdoorfurniture@outlook.com \r\nSkype:Jasonoutdoorfurniture@outlook.com \r\nFacebook: Jason7018788591 \r\nPhone:+86 13783683739',''),(5901,1,1486,'5','Google',''),(5902,1,1487,'6','Devin Sterne',''),(5903,1,1487,'2','0364 1387326',''),(5904,1,1487,'3','devin.sterne@yahoo.com',''),(5905,1,1487,'4','Hello,\r\n\r\nAwesome website at juiceelectrical.co.nz\r\n\r\nNeed more Business while lowering your costs ?\r\n\r\nDid you know AI can get you better qualified leads ? \r\n\r\nIf you have an old lead list or customer database, you can use AI to reactivate those prospects.\r\n\r\nLet us show you \"How to turn old leads into cash using Ai\" Video\r\n\r\nhttps://bit.ly/GPTandroid\r\n\r\nSincerely,\r\n\r\nScott Paul\r\nwhatsapp +66800528082\r\nwakeupmyleads@gmail.com\r\n\r\nIf you don\'t want to receive messages like this at: juiceelectrical.co.nz, please write me at wakeupmyleads@gmail.com with \"unsubscribe\" in the subject line and we will remove you.',''),(5906,1,1488,'6','Dick Brenan',''),(5907,1,1488,'2','0373 0621292',''),(5908,1,1488,'3','brenan.dick@gmail.com',''),(5909,1,1488,'4','GAMIFY your videos and get viewers to happily give you their email and phone number. There is no other tech like this..it’s the next big thing. As seen on CBS, NBC, FOX, and ABC. \r\nSee if you qualify for a free GAMIFICATION of your video.\r\n\r\nContact me via my email or skype below for more details\r\n\r\n\r\nRobert\r\nemail: gamifyvideo@gmail.com\r\nskype: live:.cid.d347be37995c0a8d',''),(5910,1,1489,'6','Nehal K.',''),(5911,1,1489,'2','(605) 309-8865',''),(5912,1,1489,'3','nehalsolutionz@gmail.com',''),(5913,1,1489,'4','Hi there,\r\n\r\nMy name is Nehal & I have noticed a few issues with your website & I would love to help you fix them.\r\n\r\nAs an SEO specialist. I am specialized in helping solar companies to get more customers using their website. Should I send you the list of issues I have found on your website?\r\n\r\nReply \"yes\" if you are interested, No worries If not have a nice day! \r\n\r\nRegards,\r\nNehal K.\r\n(605) 309-8865',''),(5914,1,1490,'6','Kaitlyn Colley',''),(5915,1,1490,'2','301-864-5474',''),(5916,1,1490,'3','colley.kaitlyn@outlook.com',''),(5917,1,1490,'4','Hey [Recipient],\r\n\r\nLost at sea in the vast world of online marketing? Fear not! Imagine Moosend as your treasure map, guiding you to a chest of loyal customers. \r\nNavigate through the waves of competition with our secret sauce for successful email marketing.\r\n\r\n[https://sales-holding.systeme.io/96c4989f]\r\n\r\nTo your success!',''),(5918,1,1491,'6','Cristina Harrell',''),(5919,1,1491,'2','0387 2520304',''),(5920,1,1491,'3','cristina.harrell@gmail.com',''),(5921,1,1491,'4','Is there a reason you\'re not hosting juiceelectrical.co.nz on a faster, more cost-effective platform like Cloudways? https://www.shareasale.com/r.cfm?b=1080835&u=2909545&m=75038',''),(5922,1,1492,'6','Wemirref',''),(5923,1,1492,'2','85769451525',''),(5924,1,1492,'3','gy3zr0vt@hotmail.com',''),(5925,1,1492,'4','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/ym9tfdoy',''),(5926,1,1492,'5','Google',''),(5927,1,1493,'6','Megan Atkinson',''),(5928,1,1493,'2','403-245-8340',''),(5929,1,1493,'3','meganatkinson149@gmail.com',''),(5930,1,1493,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 300-1000+ followers per month.\r\n- Real, human followers: People follow you because they are interested in your business or niche.\r\n- Safe: All actions are made manually. We do not use any bots.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you are interested, and would like to see some of our previous work, let me know and we can discuss further.\r\n\r\nKind Regards,\r\nMegan',''),(5931,1,1494,'6','Natasha Fredricksen',''),(5932,1,1494,'2','06786 23 21 47',''),(5933,1,1494,'3','fredricksen.natasha40@msn.com',''),(5934,1,1494,'4','Hi there\r\n\r\nJust checked your juiceelectrical.co.nz\'s baclink profile, I noticed a moderate percentage of toxic links pointing to your website\r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge.\r\n\r\nStart recovering your ranks today:\r\nhttps://www.hilkom-digital.com/free-backlinks-clean-up/\r\n\r\nThanks and regards\r\nMike',''),(5935,1,1495,'6','Tod Dove',''),(5936,1,1495,'2','0680 325 91 72',''),(5937,1,1495,'3','tod.dove@outlook.com',''),(5938,1,1495,'4','Are you looking for a dream home in a land of luxury and opportunity? Discover the best Overseas real estate deals in the Arab Emirates, where you can buy directly from the developer and save! Enjoy stunning views, world-class amenities, and tax-free living. For more info contact Aleksei Alimkin:\r\nEmail: hive.home@hotmail.com Tel: +79299909194,',''),(5939,1,1496,'6','Wemirref',''),(5940,1,1496,'2','82658268237',''),(5941,1,1496,'3','tn93gckf@hotmail.com',''),(5942,1,1496,'4','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/ynl8qkb4',''),(5943,1,1496,'5','Google',''),(5944,1,1497,'6','Mark Shultz',''),(5945,1,1497,'2','22-64-79-65',''),(5946,1,1497,'3','marks333@gmail.com',''),(5947,1,1497,'4','Boost your business revenue effortlessly with ProfitMarc! Our AI-driven platform writes and sends high-converting emails for you, targeting fresh, pre-qualified leads. \r\n\r\nWith our state-of-the-art delivery system, see a significant increase in engagement and sales. Don\'t miss out on the easiest way to enhance your marketing strategy and drive profits. \r\n\r\nClick Below to explore ProfitMarc and start generating leads!\r\n\r\nhttps://aiandcompanybest.com\r\n\r\nMark',''),(5948,1,1498,'6','Mike Dyson',''),(5949,1,1498,'2','82858649252',''),(5950,1,1498,'3','mikeinquiff@gmail.com',''),(5951,1,1498,'4','Hello \r\n \r\nThis is Mike Dyson\r\n \r\nLet me show you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\nRegards \r\nMike Dyson\r\n \r\nmike@strictlydigital.net',''),(5952,1,1498,'5','Google',''),(5953,1,1499,'6','Zeem',''),(5954,1,1499,'2','815-853-8991',''),(5955,1,1499,'3','zeem@linkoutreach.shop',''),(5956,1,1499,'4','Hi!\r\n\r\nI have spotted some issues on your website. Would you like to get a free Website audit ? Let\'s talk.\r\n\r\nRegards,\r\nZeem\r\nLO Digital\r\nWhatsapp: https://wa.me/+447739746117',''),(5957,1,1500,'6','ori Connell',''),(5958,1,1500,'2','508 812 0437',''),(5959,1,1500,'3','automate2thrive@gmail.com',''),(5960,1,1500,'4','Would you like to see the video I created for juiceelectrical.co.nz ?\r\n\r\nIt\'s something you can use for you social media ,youtube channel etc.\r\n\r\nSimply reply with the word \"Yes\" and I\'ll send it over\r\n\r\nBest,\r\n\r\nOri',''),(5961,1,1501,'6','John Wellson',''),(5962,1,1501,'3','john.wellson@gmail.com',''),(5963,1,1501,'4','Audiobooks is now the BIG goldmine, and people are making huge profits with it on a daily basis…\r\n\r\n\r\nSadly, creating and selling them can be tough and super-expensive. \r\n\r\nBut I have got good news for you…\r\n\r\nMeet Vox AI\r\n\r\nThe World’s First ChatGPT4-Powered AI App That Turns Any \"Text, URL, Website, Article, Keyword, Blog, Document or PDF\" into High-Quality Audiobooks or Podcast In 660 Different Voices & 80 Languages…\r\n\r\n>> Click Here To See The Live Demo: bit.ly/VoxAiOffer\r\n\r\n\r\n\r\nWith Vox AI, you can generate content on any topic using “Siri-Like” voice command & turn it to Audiobooks, Podcasts, or Voiceovers for VSL, TV Commercial, Webinars, Sales Videos, etc\r\n\r\n...Publish To The Built-In Marketplace with 2.3M active users, Sell & Receive Instant Payments Via Multiple Methods, including Paypal, Stripe, Cards, and Bank Accounts…\r\n\r\n\r\n\r\n>> Click Here to Get Instant Access to Vox AI and Sell On Automation: bit.ly/VoxAiOffer\r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\nEven if you are a newbie with zero knowledge… VoxAI is your best shot.\r\n\r\n\r\n\r\nYou can easily Activate VoxAI in 3 simple steps & start your audiobook empire:\r\n\r\nStep 1: Login - Login to VoxAI Cloud-Bases App\r\n\r\nStep 2: Generate- Enter a Keyword, article, PDF, or even a URL… and VoxAI will turn them into a Full Audiobook or Podcast\r\n\r\nStep 3: Publish- publish your audiobooks on our built-in marketplace with 2.3 million active users.\r\n\r\nStep 4: Start Profiting as soon as you are done\r\n\r\nIt is as simple as that.\r\n\r\n\r\n>> Get Lifetime Access Here: bit.ly/VoxAiOffer\r\n\r\n\r\n\r\nWith Vox AI, you can…\r\n\r\nCreate Your First Audiobook Within 2 Minutes\r\n\r\nTurn Any Article, Website, Url, PDF or Blog Into Audiobook, Podcast, VSL, Audio/Music Track…\r\n\r\nCreate A Podcast With Human Voice Without Recording\r\n\r\nChoose From 660 Real Human Voices \r\n\r\nCreate Voices In 80+ Different Languages\r\n\r\nComes With 50+ Built-In AI Features That Will Make Your Life 100x Easier \r\n\r\nWe Don’t Even Write Scripts, We Let AI Do It For Us.\r\n\r\nPublish Your AudioBook To Our Marketplace With 2.3 Million Active User\r\n\r\nPublish your AudioBook Or Podcast To (Spotify, Audible, Scribe)\r\n\r\nNo Complicated Setup - Get Up And Running In 2 Minutes\r\n\r\n\r\n…All these, and many more without Paying Any Monthly Fee\r\n\r\n\r\n>> Click Here To Get Earlybird Access (Ends In 2 Hours From Now): bit.ly/VoxAiOffer\r\n\r\nCoupon Code - VOX5OFF (strictly for the first 12 people)\r\n\r\n\r\nFair Warning - Go In Now To Avoid Paying Monthly Fee Later\r\n\r\nSincerely, \r\n\r\nJohn',''),(5964,1,1502,'6','Leroy Harton',''),(5965,1,1502,'2','077 3020 8638',''),(5966,1,1502,'3','harton.leroy@gmail.com',''),(5967,1,1502,'4','Hi there,\r\n\r\nMy name is Leroy from Monkey Digital, \r\n\r\nAllow me to present to you a lifetime revenue opportunity of 35%\r\nThat\'s right, you can earn 35% of every order made by your affiliate for life.\r\n\r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month.\r\n\r\nClick here to enroll with us today:\r\nhttps://www.monkeydigital.org/affiliate-dashboard/\r\n\r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved.\r\n\r\nThanks and regards\r\nLeroy Harton\r\nMonkey Digital',''),(5968,1,1503,'6','Nestor Hogan',''),(5969,1,1503,'2','0337 7394029',''),(5970,1,1503,'3','nestor.hogan98@yahoo.com',''),(5971,1,1503,'4','Greetings! My name is Nestor Hogan. \r\n \r\nBe Sophisticated! \r\n \r\nUse the site TiaraShop EU whenever you need Swimwear Tops or Bottoms, Women\'s Leotards, Underwear or Socks. \r\n \r\nNow everything is discounted! \r\n \r\nFollow the link and use code \"VIP\" for an extra discount in Men\'s boxers:\r\n \r\nhttps://bit.ly/3R8jRwn \r\n \r\nGreetings, Nestor Hogan',''),(5972,1,1504,'6','Eric Jones',''),(5973,1,1504,'2','555-555-1212',''),(5974,1,1504,'3','ericjonesmyemail@gmail.com',''),(5975,1,1504,'4','Hello,\r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz Admin definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://rushleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://rushleadgeneration.com to try Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(5976,1,1505,'6','Chase Jackson',''),(5977,1,1505,'2','026 494 23 86',''),(5978,1,1505,'3','chase.jackson@gmail.com',''),(5979,1,1505,'4','Imagine a world where your income streams never sleep, \r\n\r\nwhere every phone call turns into a revenue opportunity, \r\n\r\nand where the power of AI blends seamlessly with innovative marketing strategies. \r\n\r\nWelcome to that world with Pay Per Call AI.\r\n\r\nClick here to find out more: https://warriorplus.com/o2/a/zdnynm/0\r\n\r\n\r\n\r\nWhy settle for traditional affiliate marketing when you can step into the future with Pay Per Call AI? \r\n\r\nThis game-changer is not just another strategy;\r\n\r\nit\'s an innovative approach that combines highly-targeted, \r\n\r\nfree traffic with the leverage power of AI,\r\n\r\nsetting you up for ongoing passive income that lasts.\r\n\r\n\r\nWhat makes Pay Per Call AI stand out?\r\n\r\nA Unique Blend of AI & Marketing: Harness the untapped potential of pay-per-call marketing with AI\'s analytical prowess.\r\n\r\nSimplicity & Efficiency: Set up once and watch your income grow, with step-by-step guidance.\r\n\r\nFree, High-Quality Traffic: Tap into the power of YouTube, driving high-quality, targeted traffic directly to your offers.\r\n\r\nExpert Guidance: Learn from the best, with James Renouf guiding you through every step to profitability.\r\n\r\nDon\'t miss this chance to revolutionize your income and be part of the passive income revolution with Pay Per Call AI. \r\n\r\nYour future self will thank you!\r\n\r\n\r\nJoin Pay Per Call AI Now!\r\n\r\nhttps://warriorplus.com/o2/a/zdnynm/0\r\n\r\nTo your success,\r\nChase\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n149 N West Ave, Jackson, MI 49205\r\n\r\nTo Avoid Future Marketing, Messege your domain name Here: \r\nfullwebsiteaudit@gmail.com',''),(5980,1,1506,'6','Susan Karsh',''),(5981,1,1506,'2','078 3522 0550',''),(5982,1,1506,'3','linette.gonyea@gmail.com',''),(5983,1,1506,'4','Just checked out your site. \r\n\r\nAre 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. \r\n\r\nAs Soon As You Sign Up, Our AI Agents Can:\r\n\r\n• Assist your team with tasks, projects and research, which will increase productivity.\r\n• Crush to-do list by writing - ads, code, emails, content, sales copy, contracts & more.\r\n• Give you time to focus on important things instead of handling mundane tasks.\r\n• Save you time, save you money and make your team much more effective.\r\n• Make sales calls, take inbound calls and book appointments (available 02/15/24)\r\n\r\n... and much, MUCH more!\r\n\r\nWatch our video here and see how we can help: https://bit.ly/myaa-trial \r\n\r\nOur clients are saving 20%- 30% on operational costs each month by using our AI Agents to handle hundreds of tasks.\r\n\r\nClaim your FREE Trial Of our AI Agents Now, before this offer ends. Get started here: https://bit.ly/myaa-trial \r\n\r\nBest,\r\n\r\nSusan Karsh',''),(5984,1,1507,'6','Stevendrync',''),(5985,1,1507,'2','87576132653',''),(5986,1,1507,'3','spbetcas197@gmail.com',''),(5987,1,1507,'4','Top online casios! \r\nGet Big bonus for free \r\n \r\nhttps://tinyurl.com/2p9fw6zs',''),(5988,1,1507,'5','Google',''),(5989,1,1508,'6','Karl',''),(5990,1,1508,'2','0211060754',''),(5991,1,1508,'3','karl1321232@gmail.com',''),(5992,1,1508,'4','Hey there! I hope you\'re doing well. I wanted to reach out because I\'m super keen to apply for a electrical apprenticeship position! if possible I\'ve always been fascinated by electricity and wiring, and I believe this apprenticeship would be a perfect fit for me. I\'ve been working on honing my skills in electrical work, and I\'m eager to learn from experienced professionals like yourself. I\'m a hardworking and dedicated individual, and I\'m confident that I can contribute positively to your team. I have passed an level 3 electrical course at ara and have been looking for an apprenticeship opportunity for over a year I would be incredibly grateful for the opportunity to be considered for this apprenticeship. Thank you so much, and I\'m looking forward to hearing back from you soon!',''),(5993,1,1509,'6','Latashia Murakami',''),(5994,1,1509,'2','06-22788546',''),(5995,1,1509,'3','latashia.murakami@gmail.com',''),(5996,1,1509,'4','The Traffic Syndicate is a new high-ticket traffic generation mastermind and weekly traffic coaching program. Affiliate commission is 40% per $5K sale ($2K) & your share of a $25K Prize Pool. Find out how to can access to your promo tools, and more, here:\r\n\r\nhttps://bit.ly/BeASyndicateAffililate',''),(5997,1,1510,'6','Brandie Adler',''),(5998,1,1510,'2','0981 42 65 88',''),(5999,1,1510,'3','brandie.adler@gmail.com',''),(6000,1,1510,'4','Hey there! I was browsing through your website and found myself deeply engaged with your content, especially https://juiceelectrical.co.nz. It reminded me of my own journey when I first started trying to make money online. I had quite a few struggles until I stumbled upon something that made a significant difference. Thought I\'d share it with you too, hoping it might offer some value: https://stressfreelifehacks.xyz/billionaire. All the best',''),(6001,1,1511,'6','Eric Jones',''),(6002,1,1511,'2','555-555-1212',''),(6003,1,1511,'3','ericjonesmyemail@gmail.com',''),(6004,1,1511,'4','Hello juiceelectrical.co.nz Webmaster. my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://rushleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(6005,1,1512,'6','Hollie Tang-Smith',''),(6006,1,1512,'2','0273414535',''),(6007,1,1512,'3','hollietang@gmail.com',''),(6008,1,1512,'4','Installing power from mains to the new shed next to the house. Including lights and sockets.',''),(6009,1,1512,'5','Google',''),(6010,1,1513,'6','Peter Hart',''),(6011,1,1513,'2','0211455465',''),(6012,1,1513,'3','peterhart55@gmail.com',''),(6013,1,1513,'4','I\'m wanting to look at having some smart lights installed for internal security purposes. I see that you advertise this on your website. The majority of our indoor lighting is LED downlights and I am hoping that it may not be too complicated to have a small selection converted to a smart system.\r\n\r\nI would appetite a conversation around how we could pursue this further.',''),(6014,1,1513,'5','Google search took me to your website.',''),(6015,1,1514,'6','Eric Jones',''),(6016,1,1514,'2','555-555-1212',''),(6017,1,1514,'3','ericjonesmyemail@gmail.com',''),(6018,1,1514,'4','To the, this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nTalk 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(6019,1,1515,'6','Gidget Theodor',''),(6020,1,1515,'2','29-67-76-03',''),(6021,1,1515,'3','ampbusinsslimited@gmail.com',''),(6022,1,1515,'4','Want to skyrocket your brand? TV is the best way to do that!\r\n\r\n\r\nNot only can we get you on NBC, CBS, ABC, Fox, etc...\r\n\r\n\r\nBut we can also get published on over 130 sites like Yahoo.\r\n\r\n\r\nWe GUARANTEE that we will get your business on one of the major TV networks.\r\n\r\n- You can do this virtually\r\n\r\n- You can do this in the studio\r\n\r\n- We can provide a spokesperson for you\r\n\r\n- You can have Kevin Harrington, one of the original Sharks on Shark Tank on with you\r\n\r\nGo to - ampsvcs.online \r\nor\r\nEmail Us At - ampbusinesslimited@gmail.com',''),(6023,1,1516,'6','Wemirref',''),(6024,1,1516,'2','86213583794',''),(6025,1,1516,'3','gjr9hw10@icloud.com',''),(6026,1,1516,'4','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/yvv66cxr',''),(6027,1,1516,'5','Google',''),(6028,1,1517,'6','Michael Sinclair',''),(6029,1,1517,'2','0340 3423228',''),(6030,1,1517,'3','lowell.mcvay@hotmail.com',''),(6031,1,1517,'4','Hello,\r\n\r\nI checked out your business today and wanted to know if you would be interested in getting 10-15 solid leads a week for your business?\r\n\r\nThis week, we are offering businesses in your area, the opportunity to reach 1.25 million potential clients through our highly effective email marketing system that can start getting you leads in just a few days. And the best part is, we are discounting our price from $550 to just $240. \r\n\r\nBook a 10 min call with us to learn more: https://bit.ly/hivemailer-special \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nPLUS, WE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n\r\nWHO THIS IS FOR: Companies who sell products or services with a wide appeal to businesses (B2B). \r\n\r\nJust imagine, getting hot leads within days of getting started with us. Get started now!!! For just $240, we’ll send 1.25-Million emails and start filling up your inbox instantly.\r\n\r\nBook a 10 min call with us to learn more: https://bit.ly/hivemailer-special \r\n\r\nSincerely,\r\n\r\nMichael',''),(6032,1,1518,'6','Sam Ibrahim',''),(6033,1,1518,'2','84444864229',''),(6034,1,1518,'3','aramco@mbox.re',''),(6035,1,1518,'4','Hello, \r\n \r\nWe extend warm greetings to your esteemed company and formally invite you to register as a vendor for potential partnerships in upcoming projects with SAUDI ARAMCO/UAE in 2024/2025. \r\n \r\nThese projects offer a global opportunity, welcoming participation from companies worldwide. Should your company express interest in this endeavor, we kindly request confirmation by contacting ibrahim@aramcointernational.net of intent by requesting the necessary documents. \r\n \r\nYour interest is highly valued, and we eagerly await your prompt response. \r\n \r\nBest Regards, \r\n \r\nMr. Sam Ibrahim \r\nibrahim@aramcointernational.net \r\nhttp://www.aramcointernational.net/ \r\nContract & Supplier Services Management',''),(6036,1,1518,'5','Google',''),(6037,1,1519,'6','Eric Jones',''),(6038,1,1519,'2','555-555-1212',''),(6039,1,1519,'3','ericjonesmyemail@gmail.com',''),(6040,1,1519,'4','Hello,\r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz Owner definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://rushleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://rushleadgeneration.com to try Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(6041,1,1520,'6','Doug Nadel',''),(6042,1,1520,'2','0473 62 27 21',''),(6043,1,1520,'3','nadel.doug@gmail.com',''),(6044,1,1520,'4','This message arrived to you and I can make your ad message reach millions of websites the same way. It\'s a low-priced and effective way to market your product or service.If you are interested, you can reach me via email or skype below.\r\n\r\nP. Stewart\r\nEmail: zkpyte@gomail2.xyz\r\nSkype: live:.cid.37ffc6c14225a4a8',''),(6045,1,1521,'6','Tobiaslilla',''),(6046,1,1521,'2','83594139879',''),(6047,1,1521,'3','no.reply.ChristopheMaes@gmail.com',''),(6048,1,1521,'4','Yo! juiceelectrical.co.nz \r\n \r\nDid you know that it is possible to send business offer well legal? We make available a legitimate method of sending appeals through contact forms. You can find these forms on numerous websites. \r\nWhen such appeals are sent, no personal data is used, and messages are sent to forms specifically designed to receive messages and appeals securely. Also, messages sent through Feedback Forms don\'t get into spam as such messages are considered to be of great importance. \r\nCome and sample our service without any cost! \r\nWe can transmit up to 50,000 messages in your behalf. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis message was automatically generated. \r\nPlease use the contact details below to get in touch with us. \r\n \r\nContact us. \r\nTelegram - https://t.me/FeedbackFormEU \r\nSkype live:feedbackform2019 \r\nWhatsApp +375259112693 \r\nWhatsApp https://wa.me/+375259112693 \r\n \r\nWe only use chat for communication.',''),(6049,1,1521,'5','Google',''),(6050,1,1522,'6','Mireya Turner',''),(6051,1,1522,'2','09441 29 50 25',''),(6052,1,1522,'3','turner.mireya@gmail.com',''),(6053,1,1522,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(6054,1,1523,'6','Andrew Lincoln',''),(6055,1,1523,'2','079 6707 4132',''),(6056,1,1523,'3','ndrjcaro@gmail.com',''),(6057,1,1523,'4','Hey,\r\n\r\nAre you tired of missing out on potential profits in the volatile world of\r\ncryptocurrency trading? Look no further! I\'ve got something special for you.\r\n\r\nIntroducing the \"GOD Trading Strategies\" e-book, your ultimate guide to\r\nmastering successful crypto trading.\r\n\r\nFor a limited time, you can get this comprehensive guide for just $19.95\r\ninstead of the regular $49. That\'s a whopping 60% discount! \r\n\r\nHere\'s what you get with \"GOD Trading Strategies\":\r\n\r\nIn-depth insights into successful trading strategies.\r\nTips on risk management to safeguard your investments.\r\nReal-world examples and case studies for practical application.\r\n\r\nDon\'t miss out on this incredible opportunity to elevate your trading\r\ngame. If you are interested, write to me or click here to grab your copy now! \r\n---\r\nhttp://hornoselectricos.online/CryptoGOD/\r\n---\r\n\r\nHappy Trading!',''),(6058,1,1524,'6','Onita Lascelles',''),(6059,1,1524,'2','089 84 92 99',''),(6060,1,1524,'3','onita.lascelles@gmail.com',''),(6061,1,1524,'4','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic. Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting contractors on Google. Can I share a testimonial \r\nfrom one of our clients with you? I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(6062,1,1525,'6','Matthew Martinez',''),(6063,1,1525,'2','078 1276 9231',''),(6064,1,1525,'3','matthewm@aibestsuite.com',''),(6065,1,1525,'4','Hello, I noticed mistakes in your Google listing. Can I contact you to help fix them?',''),(6066,1,1526,'6','Kathy Lamington',''),(6067,1,1526,'2','(02) 6751 6633',''),(6068,1,1526,'3','lamington.kathy@gmail.com',''),(6069,1,1526,'4','Hi there,\r\n\r\nAutoSEO has scanned your website and found 86 broken links and 28 pages have missing meta descriptions. \r\n\r\nThis can affect your Google rankings.\r\n\r\nUse AI to Fix this in 10 minutes with 1 click with AutoSEO: https://getautoseo.com',''),(6070,1,1527,'6','Piper Cain',''),(6071,1,1527,'2','06-79636203',''),(6072,1,1527,'3','cain.piper@gmail.com',''),(6073,1,1527,'4','Subject: Unleash Limitless Productivity with InfinityFlow \r\n\r\nDear Visionary Professionals,\r\n\r\nAre you tired of feeling overwhelmed by the chaos of daily tasks and deadlines? Do you crave a seamless workflow that empowers you to unleash your true potential? Look no further than InfinityFlow.io - the ultimate productivity program that will propel your efficiency to infinity and beyond!\r\n\r\nImagine a world where you effortlessly glide through your to-do list, accomplishing tasks with unrivaled speed and precision. With InfinityFlow.io, this dream becomes a reality. Our cutting-edge platform is designed to optimize every aspect of your workflow, so you can focus on what truly matters - turning your ideas into reality!\r\n\r\nInfinityFlow.io\'s intuitive interface will transform the way you work. Seamlessly manage projects, delegate tasks, and collaborate with your team in real-time. No more messy email chains or lost files - everything you need is just a click away!\r\n\r\nBut that\'s not all - InfinityFlow.io is packed with powerful features to take your productivity to unprecedented heights. Our smart automation tools will streamline repetitive tasks, freeing up valuable time for you to tackle creative challenges. With personalized notifications and reminders, you\'ll never miss a deadline or important milestone again!\r\n\r\nSecurity is our top priority at InfinityFlow.io. Rest easy knowing that your sensitive data is protected by state-of-the-art encryption and authentication protocols. Focus on your work with peace of mind, knowing that your information is safe and secure.\r\n\r\nWhether you\'re a solopreneur, a small team, or a large enterprise, InfinityFlow.io scales to fit your needs. Our flexible plans and customizable workflows ensure that our platform adapts to your unique requirements and maximizes your efficiency.\r\n\r\nJoin the ranks of successful professionals who have harnessed the power of InfinityFlow.io to revolutionize their productivity. As a limited-time offer, we invite you to try InfinityFlow.io FREE for 14 days! Experience the transformative impact it will have on your work life, without any commitment.\r\n\r\nAre you ready to unlock the door to unparalleled productivity? Visit www.infinityflow.io and start your journey towards infinite possibilities today!\r\n\r\nLet InfinityFlow.io be your secret weapon for success.\r\n\r\nTo boundless achievements,\r\n\r\n\r\nGo Get your best LTD for 2023 >>>>> https://rebrand.ly/infinityflow',''),(6074,1,1528,'6','James Seaton',''),(6075,1,1528,'2','06-78939295',''),(6076,1,1528,'3','ampbusinsslimited@gmail.com',''),(6077,1,1528,'4','Want to skyrocket your brand? TV is the best way to do that!\r\n\r\n\r\nNot only can we get you on NBC, CBS, ABC, Fox, etc...\r\n\r\n\r\nBut we can also get published on over 130 sites like Yahoo.\r\n\r\n\r\nWe GUARANTEE that we will get your business on one of the major TV networks.\r\n\r\n- You can do this virtually\r\n\r\n- You can do this in the studio\r\n\r\n- We can provide a spokesperson for you\r\n\r\n- You can have Kevin Harrington, one of the original Sharks on Shark Tank on with you\r\n\r\nGo to - ampsvcs.online \r\nor\r\nEmail Us At - ampbusinesslimited@gmail.com',''),(6078,1,1529,'6','George Brulie',''),(6079,1,1529,'3','u2bzonehelp@gmail.com',''),(6080,1,1529,'4','Hello, your Youtube channel has good content but deserves more views and engagement. Just visit u2bzone(dot)com and try the service I provide absolutely free.',''),(6081,1,1530,'6','Nehal K.',''),(6082,1,1530,'2','(605) 309-8865',''),(6083,1,1530,'3','nehalsolutionz@gmail.com',''),(6084,1,1530,'4','Hi there,\r\n\r\nMy name is Nehal & I have noticed a few issues with your website & I would love to help you fix them.\r\n\r\nAs an SEO specialist. I specialize in helping home renovation business owners to get more customers using their website. Recently I helped Dustin California-based home renovation business owner bring on 37 new customers last month. I\'d love to do the same for you\r\n\r\nShould I send you the list of issues I have found on your website? Reply \"yes\" if you are interested, No worries If not have a nice day!\r\n\r\nRegards,\r\nNehal Khan',''),(6085,1,1531,'6','Koby Justus',''),(6086,1,1531,'2','510-378-9374',''),(6087,1,1531,'3','ghamrawi1995@gmail.com',''),(6088,1,1531,'4','Hey! I\'ve been loving your videos and content – seriously awesome stuff. You know what could take it up a notch? \r\n\r\nAdding subtitles or captions! \r\n\r\nAs a content creator, I\'ve been using this cool tool for my videos: https://submagic.co?via=wowcaptions \r\n\r\nIt\'s been a game-changer for me. \r\n\r\nGive it a shot! Hope that helps. Cheers!',''),(6089,1,1532,'6','Eric Jones',''),(6090,1,1532,'2','555-555-1212',''),(6091,1,1532,'3','ericjonesmyemail@gmail.com',''),(6092,1,1532,'4','Dear juiceelectrical.co.nz Administrator! Eric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(6093,1,1533,'6','Earl Westacott',''),(6094,1,1533,'2','04.38.96.89.15',''),(6095,1,1533,'3','westacott.earl@googlemail.com',''),(6096,1,1533,'4','Greetings\r\n\r\nFor 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.\r\n\r\nWe 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.\r\n\r\nWhat\'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, and they decide to work with us, they will get a 50% Discount from our retail pricing. But you get it for NO-COST just for introducing them to us!\r\n\r\nGET YOUR NO-COST VIDEO HERE:\r\nhttps://YourFreeReputationVideo.repvids.com\r\n\r\nThank You,\r\nMedia Relations',''),(6097,1,1534,'6','Amanda Lyver',''),(6098,1,1534,'2','0273826571',''),(6099,1,1534,'3','amanda.lyver@cdhb.health.nz',''),(6100,1,1534,'4','Hi\r\nCan we arrange for a couple of led ceiling lights to be replaced please.\r\n(We have replacements)\r\nAddress is 372 Ellesmere Junction Rd, Springston.',''),(6101,1,1534,'5','Previous customer',''),(6102,1,1535,'6','Lolita Valazquez',''),(6103,1,1535,'2','0350 1354117',''),(6104,1,1535,'3','lolita.valazquez@googlemail.com',''),(6105,1,1535,'4','Hey, just wanted to make sure you saw this. This is that video I was telling you about last week. https://bit.ly/3UlWwe4 I really think you should move on this ASAP!',''),(6106,1,1536,'6','John Johnson',''),(6107,1,1536,'2','077 6575 6308',''),(6108,1,1536,'3','john.johnson@gmail.com',''),(6109,1,1536,'4','$40 per hour, regular work\r\n\r\n\r\nHave you ever written short email messages before? \r\n\r\nWe need to talk if you have that skill set.\r\n\r\nWe are currently looking for new beginner-paid remote workers who want to start work right away!\r\n\r\nAll employers hiring through our company are looking for people with no previous experience but are willing to learn. \r\n\r\n\r\n\r\nThese are remote positions, meaning that as long as you can work the required hours, you can work from home.\r\n\r\nClick here to complete your application if interested.\r\n\r\n>> https://3314d6rhpbg17ucafp5h12521w.hop.clickbank.net\r\n\r\n\r\n\r\nIn this position, you will be assigned tasks related to sending promotional email messages about various products and services. \r\n\r\nYou must write in clear English with no errors and provide consistency so we can rely on you to produce many weekly messages.\r\n\r\n\r\nThe rate we offer varies depending on what kind of assignment(s) you\'ll take. Still, generally speaking, \r\n\r\nit ranges between $40-$80 per hour depending on what service(s) they entail and your level of expertise.\r\n\r\n\r\nInterested? Check out this page before completing an application to get everything important!\r\n\r\nBest of luck!',''),(6110,1,1537,'6','Brent Fouch',''),(6111,1,1537,'2','060-3818773',''),(6112,1,1537,'3','brentfouch@aiviralvideo.com',''),(6113,1,1537,'4','Can I send you something to help your website use AI?',''),(6114,1,1538,'6','Wurst',''),(6115,1,1538,'2','02137 33 26 45',''),(6116,1,1538,'3','dmxlab@gmail.com',''),(6117,1,1538,'4','Hello, \r\n\r\nDid you notice the problems with your website\'s performance?\r\n\r\nif you would like to improve your website\'s \r\nperformance as per Google\'s standards,\r\njust reply to me, at ( melvin@reachuslocaloffice.com )\r\n\r\nThank You. \r\n\r\nWaiting for your reply.\r\n\r\nMel',''),(6118,1,1539,'6','Anthony Lewis',''),(6119,1,1539,'3','anthony@rapidprofitmachine1.com',''),(6120,1,1539,'4','Did you see that your website is having performance issues?',''),(6121,1,1540,'6','Ethan Gray',''),(6122,1,1540,'2','0220926364',''),(6123,1,1540,'3','ethangray140@gmail.com',''),(6124,1,1540,'4','Hey, I\'m Ethan Gray, a motivated 19-year-old seeking a hands-on role in the electrical industry. After completing Level 3 at Ashburton College and a year at university, I realized my passion lies in practical work.\r\nI\'m interested in becoming an electrician as I feel it will give me the best combo off being handy and challenging the brain, I\'m confident my enthusiasm and quick learning abilities make me a strong fit for your team.\r\nI am more than welcome to send in a cv if it is requested\r\nThanks Ethan',''),(6125,1,1540,'5','Google',''),(6126,1,1541,'6','Janet Garside',''),(6127,1,1541,'2','04551 42 82 38',''),(6128,1,1541,'3','myorcaoffers@gmail.com',''),(6129,1,1541,'4','Hi,\r\n\r\nAre you ready to search for the perfect private jet charter? \r\nOne with an extensive network that brings together over 10,000 exclusive private aircraft spanning 40K destinations around the globe.\r\n\r\nClick here https://orcadigitals.net/cheapest-private-jet-charter-flights to enjoy access to the best empty leg private jet charter prices available across the market.\r\n\r\n\r\nJanet Garside\r\n30934 Grady Pines\r\nNew Evangeline\r\nIndiana, 03669',''),(6130,1,1542,'6','Gillen',''),(6131,1,1542,'2','053 75 99 20',''),(6132,1,1542,'3','newdynamicsgroup@gmail.com',''),(6133,1,1542,'4','Want more leads at a reduced cost that close at a higher rate than any other advertising platform out there?\r\n \r\nWe Are Looking For 7 Businesses To Test Our Proven AI Lead Generation Machine And Add A Minimum Of 40% More To Their Bottom Line In 2024!\r\n\r\nWe\'ve Increased Deal Flow, Reduced Cost, and Blown Up Profit In Almost Every Industry On The Planet...\r\n\r\nSo, if you want to use AI to grow your business, comment YES and we will get back to you ASAP',''),(6134,1,1543,'6','Dallas Lakeland',''),(6135,1,1543,'2','920-999-3524',''),(6136,1,1543,'3','dallaspmedia@gmail.com',''),(6137,1,1543,'4','I noticed that your website is not ranking as good as it could be on Google, and that is costing you customers. \r\nI can send you a free report of your website to help improve your rankings. \r\nPlease let me know if it is ok to send you the free report. \r\nThank you!\r\nDallas',''),(6138,1,1544,'6','Robert Thompson',''),(6139,1,1544,'2','205-221-8810',''),(6140,1,1544,'3','rapidleads360@gmail.com',''),(6141,1,1544,'4','Hello There,\r\n\r\nGet your free Sales Funnel Guide for Success now!\r\n\r\nhttps://rokl.ink/sales-funnel-success\r\n\r\nRegards,\r\n\r\n Joseph Thompson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to stop receiving from our communications from us, simply click the link at https://rokl.ink/optoutone',''),(6142,1,1545,'6','Dallas Sharp',''),(6143,1,1545,'2','438 57 828',''),(6144,1,1545,'3','dallaspmedia@gmail.com',''),(6145,1,1545,'4','I noticed that your website is not ranking as good as it could be on Google, and that is costing you customers. \r\nI can send you a free report of your website to help improve your rankings. \r\nPlease let me know if it is ok to send you the free report. \r\nThank you!\r\nDallas',''),(6146,1,1546,'6','Sophia Rodriguez',''),(6147,1,1546,'2','06-22717918',''),(6148,1,1546,'3','roxanna.york@outlook.com',''),(6149,1,1546,'4','Quick questions.\r\n\r\nDo you want to grow on Instagram, X (Twitter), or LinkedIn and be sure to post quality content? \r\n\r\nWant to write ads fast?\r\n\r\nWould you like to increase your newsletter and boost your back-end profits?\r\n\r\nUse your competitors\' best content and rework it with an AI that specializes in it.\r\n\r\nIt never been so easy for you to make good content fast.\r\n\r\nAre you skeptical? \r\n\r\nTry it for FREE here, https://snip.ly/v7ro37\r\n\r\nIt\'s sure to become your secret weapon ;)\r\n\r\nPS: Use code “ScrollMaster3000” at checkout to get a 10% discount after your free trial',''),(6150,1,1547,'6','Janelle Rawlings',''),(6151,1,1547,'2','403-545-8225',''),(6152,1,1547,'3','rawlings.janelle@hotmail.com',''),(6153,1,1547,'4','Hey, I\'ve got a FREE checklist of tools designed to assist your business in generating revenue through AI.\r\n\r\nhttps://www.wildaitools.com/',''),(6154,1,1548,'6','Steve Talker',''),(6155,1,1548,'2','446 3666',''),(6156,1,1548,'3','steve.talker@gmail.com',''),(6157,1,1548,'4','Hi juiceelectrical.co.nz ,\r\n\r\nToday’s the day.\r\n\r\nThe replay of the most popular webinar I’ve ever hosted is coming offline in just a few hours.\r\n\r\nWhat Joel and Adam are sharing here is truly GROUNDBREAKING. \r\n\r\nIf you want a quick and easy way to setup a passive income stream online, \r\n\r\nthen you HAVE to check it out before it’s taken down:\r\n\r\n>> Watch it here: bit.ly/FreeWebinarEnds\r\n\r\n\r\nI’m floored at the vast amount of positive feedback I’ve gotten about this webinar. \r\n\r\nI’m so glad I was able to bring it to you and I really hope you don’t miss out on watching the replay.\r\n\r\n\r\n\r\nHere’s a quick recap of everything you’re going to discover in this revolutionary presentation:\r\n\r\nHow to use their PROVEN solution to quickly launch a ‘crypto profit machine’ in 2023 that makes money every day and runs on total autopilot.\r\n\r\nHow this system makes money whether crypto is going up or down so you can enjoy consistent, predictable profits without any stress or worry.\r\n\r\n\r\nMultiple 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.\r\n\r\nThe secret technology that makes this all possible and how you can get your first PROFITABLE campaign up and running in *60 minutes or less.*\r\n\r\n\r\nA 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.\r\n\r\nMind-blowing success stories from their most successful students who have used this method to launch life-changing passive income streams.\r\n\r\n\r\nWhy ANYONE can and should do this - you don\'t need any previous experience or know ANYTHING about crypto investing or trading\r\n\r\nPlus, 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.\r\n\r\n\r\n\r\n>> Watch the replay in full here -- bit.ly/FreeWebinarEnds\r\n\r\nAgain, 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.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n149 N West Ave, Jackson, MI 49205\r\n\r\nTo Avoid Future Marketing, Messege your domain name Here: \r\nfullwebsiteaudit@gmail.com',''),(6158,1,1549,'6','Sam Burns',''),(6159,1,1549,'2','42-39-20-13',''),(6160,1,1549,'3','samburns56789@gmail.com',''),(6161,1,1549,'4','Gutter cleaning is not for the faint of heart. \r\n\r\nLet Clean Pro Gutter Cleaning Take Care Of It For you\r\n\r\nIn business for over 20 years and thousands of happy Customers\r\n\r\nGet Your Quote Today! \r\n\r\nhttps://cleanproguttercleaning.com/quote/',''),(6162,1,1550,'6','Cottle',''),(6163,1,1550,'2','0484 38 18 24',''),(6164,1,1550,'3','bob@getbizcreditfast.com',''),(6165,1,1550,'4','Hi, \r\n\r\nWould you like to discover the secret to accessing high-limit business credit lines, credit cards, and vehicle financing even when you think you can\'t qualify? \r\n\r\nFind it in our FREE step-by-step guide which also shows you how to get business credit without a personal guarantee or credit check... whether you\'re a startup or have an 8-figure business. \r\n\r\nFollow the link below and download your complimentary copy today: \r\n>>> https://GetBizCreditFast.com \r\n\r\nWishing you much success in business and in life for 2024 and beyond.\r\n\r\nRegards, \r\nBob \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n2000 S Colorado Blvd\r\nDenver CO 80222\r\n\r\nIf you\'d rather not find out more about building business credit, simply reply to this email with the word REMOVE in the subject line and your wish will be promptly granted.',''),(6166,1,1551,'6','Steve Pluck',''),(6167,1,1551,'2','0274498026',''),(6168,1,1551,'3','felicitypluck@yahoo.com',''),(6169,1,1551,'4','Hi Helen and Greg\r\n\r\nCan I please book an electrician in for installation of outdoor blinds - The installers of the blinds are coming in 14th Feb but I am unsure if an electrician is needed before or after installation. Either way I will need someone to come. Let me know when you are available please.\r\n\r\nThanks heaps.',''),(6170,1,1552,'6','Rock Owen',''),(6171,1,1552,'2','72 961 39 85',''),(6172,1,1552,'3','rockowen0@gmail.com',''),(6173,1,1552,'4','Dear juiceelectrical.co.nz Admin. I hope this message reaches you well. While exploring your website recently, I noticed a few areas that could use some improvement. As a concerned visitor who values your business, I\'d like to offer you a complimentary list of these observations. Let me know if you want the list?',''),(6174,1,1553,'6','Eric Jones',''),(6175,1,1553,'2','555-555-1212',''),(6176,1,1553,'3','ericjonesmyemail@gmail.com',''),(6177,1,1553,'4','Hello juiceelectrical.co.nz Webmaster. I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(6178,1,1554,'6','Emily Jones',''),(6179,1,1554,'2','0224-5300868',''),(6180,1,1554,'3','emilyjones2250@gmail.com',''),(6181,1,1554,'4','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically. \r\n\r\n- We guarantee to gain you 700+ new subscribers per month.\r\n- People subscribe because they are interested in your videos/channel, increasing video likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you\'d like to see some of our previous work, let me know, and we can discuss it further.\r\n\r\nKind Regards,\r\nEmily',''),(6182,1,1555,'6','Daniel',''),(6183,1,1555,'2','06-32617474',''),(6184,1,1555,'3','isabel.brandie@gmail.com',''),(6185,1,1555,'4','Hello!\r\n\r\nThis is going to surprise you...\r\n\r\nA little-known whistleblowing doctor walked into a top US hospital with this common pantry food, prepared it and gave it to the overweight patients...\r\n\r\nAnd within weeks 96% of them had dropped an average of 29.4 lbs, supporting healthy blood sugar and blood pressure...\r\n\r\nClick here to see tne video: https://compressl.ink/puravive\r\n\r\nHow the doctor\'s unusual method works is nothing short of incredible... and it has changed everything we thought we knew about weight loss.\r\n\r\nThe craziest part?\r\n\r\nYou can do this method for yourself in less than 30 seconds a day...\r\n\r\nWith one simple pantry food.\r\n\r\nTry it for yourself now: https://compressl.ink/puravive\r\n\r\n>>> Doctor\'s Unusual Method Liquifies Fat Cells As You Sleep\r\n\r\nSkeptical?\r\n\r\nI was too, but then I saw this shocking proof for myself.\r\n\r\nTo your health,\r\nMichael\r\n\r\nPS. If you have weight concerns, you should try this method for yourself right now. The $80 billion dollar weight loss industry do not want you to see this video https://compressl.ink/puravive and discover the amazing fat-melting pantry food. Watch it now before it\'s too late.',''),(6186,1,1556,'6','Sam Burns',''),(6187,1,1556,'2','(11) 2962-9648',''),(6188,1,1556,'3','samburns56789@gmail.com',''),(6189,1,1556,'4','Gutter cleaning is not for the faint of heart. \r\n\r\nLet Clean Pro Gutter Cleaning Take Care Of It For you\r\n\r\nIn business for over 20 years and thousands of happy Customers\r\n\r\nGet Your Quote Today! \r\n\r\nhttps://cleanproguttercleaning.com/quote/',''),(6190,1,1557,'6','Daniel Schealler',''),(6191,1,1557,'2','+64 21 187 5710',''),(6192,1,1557,'3','daniel.schealler@gmail.com',''),(6193,1,1557,'4','Hey there. My residential 4-bedroom home has one room dedicated as a home office. In the short term I would like to add a heat pump to the home office, and in the future I would like to add a cooling solution to the other 3 bedrooms.',''),(6194,1,1557,'5','Google search for heat pump providers near Rolleston.',''),(6195,1,1558,'6','Joann Weigall',''),(6196,1,1558,'2','466 2047',''),(6197,1,1558,'3','joann.weigall83@outlook.com',''),(6198,1,1558,'4','You saw this message and I can send your message to millions of sites just like this. It\'s amazing and affordable.If you are interested, you can reach me via email or skype below.\r\n\r\nP. Stewart\r\nEmail: 7qn2nq@gomail2.xyz\r\nSkype: live:.cid.2bc4ed65aa40fb3b',''),(6199,1,1559,'6','Jonah Hartwell',''),(6200,1,1559,'2','(07) 4571 5718',''),(6201,1,1559,'3','hartwell.jonah@outlook.com',''),(6202,1,1559,'4','Hi,\r\n\r\nReady to elevate juiceelectrical.co.nz\'s online presence? Quality assured Fiverr Pro service is here to help you achieve your goals.\r\n\r\nIntroducing our premium SEO service on a leading freelance platform. Our team of expert professionals specializes in delivering premium backlinks that are guaranteed to enhance your website\'s visibility and drive organic traffic.\r\n\r\nWith our service, you\'ll receive a tailored strategy crafted to meet your specific needs and goals. We understand the importance of high-quality links in boosting your search engine rankings, and we\'re committed to delivering results that exceed your expectations.\r\n\r\nWhy choose us? - Verified track record of achievements - Premium backlinks from trusted sources - Personalized approach to suit your company objectives - Cost-effective packages designed to fit any budget\r\n\r\nDon\'t miss out on this opportunity to supercharge your SEO efforts. Get started today!\r\n\r\nLet\'s work together to elevate your website to the next level.\r\n\r\nFiver link: https://go.fiverr.com/visit/?bta=570412&brand=fp&landingPage=https2F%2Fwww.fiverr.com2Fdo-goat-link-building-seo-service-for-google-top-ranking\r\n\r\nBest regards,',''),(6203,1,1560,'6','Lori Fadden',''),(6204,1,1560,'2','0326 3215285',''),(6205,1,1560,'3','lori.fadden@gmail.com',''),(6206,1,1560,'4','Dear Sir,\r\n\r\nWe provide country targeted website visitors and social media services.\r\n\r\nWebsite Traffic, SEO Services, Backlinks, Google Reviews, Classified ADS, Social Followers etc\r\nIf you are interested then please visit our website.\r\n\r\nhttps://webstraffics.com\r\n\r\nThanks\r\nWebs Traffics',''),(6207,1,1561,'6','Jamison',''),(6208,1,1561,'2','01.75.37.04.65',''),(6209,1,1561,'3','marydaze2020@gmail.com',''),(6210,1,1561,'4','Hi, I teach businesses like yours on getting new clients. When do you have time for a call this\r\nweek?',''),(6211,1,1562,'6','Heike Walker',''),(6212,1,1562,'2','070 0197 8422',''),(6213,1,1562,'3','andrewshuman@andrewmshuman.com',''),(6214,1,1562,'4','I know this is random, but I\'ve found a way to guarantee you exclusive targeted phone calls almost immediately with no time spent on your part.\r\nWould you like to hear how it works?',''),(6215,1,1563,'6','Solomon Keenum',''),(6216,1,1563,'2','077 5616 4591',''),(6217,1,1563,'3','keenum.solomon@gmail.com',''),(6218,1,1563,'4','Hi, This is Solomon\r\nThe local search game is competitive, but we have the winning strategy. Let\'s optimize your GMB listing and outrank your competitors. Are you available for a quick call next week?\r\nSkype me at: live:.cid.c3b3db85e019bd59\r\nFind out how your rivals rank in organic and paid search: https://rebrand.ly/CompetitorsAuditor\r\n\r\nBest regards, \r\nSolomon \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFreelance RS Agency\r\nwww rsagency online\r\n4875 Poplar Avenue\r\nSan Diego, CA 92105 \r\n\r\n---------------------------------------\r\nWhile I am a freelancer, I\'m not a pest. Don\'t want to hear from me again? \r\nJust unsubscribe now: https://rebrand.ly/UnsubscribeLink',''),(6219,1,1564,'6','Steven Clark',''),(6220,1,1564,'2','(02) 9511 9952',''),(6221,1,1564,'3','steven@rapidprofitmachine1.com',''),(6222,1,1564,'4','Your Google setup is wrong; I can explain if you need.',''),(6223,1,1565,'6','Mike Evans',''),(6224,1,1565,'2','85531269791',''),(6225,1,1565,'3','mikethache@gmail.com',''),(6226,1,1565,'4','Hi there, \r\n \r\nMy name is Mike from Monkey Digital, \r\n \r\nAllow me to present to you a lifetime revenue opportunity of 35% \r\nThat\'s right, you can earn 35% of every order made by your affiliate for life. \r\n \r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month. \r\n \r\nClick here to enroll with us today: \r\nhttps://www.monkeydigital.org/affiliate-dashboard/ \r\n \r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved. \r\n \r\nThanks and regards \r\nMike Evans\r\n \r\nMonkey Digital',''),(6227,1,1565,'5','Google',''),(6228,1,1566,'6','Anthony Lewis',''),(6229,1,1566,'2','461 7476',''),(6230,1,1566,'3','anthony@rapidprofitmachine1.com',''),(6231,1,1566,'4','Have you noticed that your website is running slowly?',''),(6232,1,1567,'6','Bennett Dealba',''),(6233,1,1567,'2','0315 4147831',''),(6234,1,1567,'3','dealba.bennett@gmail.com',''),(6235,1,1567,'4','Hey! Do you want to Get Back Your Ex? Watch Video From Here: https://bit.ly/3OEGcBp',''),(6236,1,1568,'6','Fleta Zubia',''),(6237,1,1568,'2','06-78194058',''),(6238,1,1568,'3','info@financesworldwidehk.com',''),(6239,1,1568,'4','Hello,\r\n\r\nFinding a reputable financial company can be tough for business owners like you. But good news we are here to\r\nassist you achieve the greater height in your project funding.\r\nOur company specializes in providing business loan globally with our extensive resources and we can fund any\r\nproject your company have. Let\'s discuss how we can support your business growth. Contact us today to explore the possibilities.\r\n \r\nSkype:ID:live:.cid.c25a1f8b0fdaab04\r\nPhone:+85223194662\r\nmailto:info@financesworldwidehk.com\r\n\r\n\r\nNote: No upfront fee is required.\r\n\r\nBest regards,\r\nLaura Cha.\r\nCustomer Service Representative',''),(6240,1,1569,'6','Brent Fouch',''),(6241,1,1569,'2','079 5651 8302',''),(6242,1,1569,'3','brentfouch@aiviralvideo.com',''),(6243,1,1569,'4','May I send you something to enhance your website with AI?',''),(6244,1,1570,'6','John Johnson',''),(6245,1,1570,'2','818-512-9326',''),(6246,1,1570,'3','chinner.karol63@yahoo.com',''),(6247,1,1570,'4','Hi,\r\n\r\nFree Marketing and sales platform \r\n\r\nGet it Now: https://klxl.ink/easy-marketing\r\n\r\nBest wishes,\r\n\r\n James Smith \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving from our communications going forward, simply click the link at https://rokl.ink/optoutone',''),(6248,1,1571,'6','Josh Alban',''),(6249,1,1571,'2','0660 459 87 34',''),(6250,1,1571,'3','josh.alban@gmail.com',''),(6251,1,1571,'4','96% of subjects dropped 29.4 lbs with Dr\'s rare method\r\n\r\nThis is going to surprise you...\r\n\r\nA little-known whistleblowing doctor walked into a top US hospital with this common pantry food, prepared it and gave it to the overweight patients...\r\n\r\nAnd within weeks 96% of them had dropped an average of 29.4 lbs, supporting healthy blood sugar and blood pressure...\r\n\r\nHow the doctor\'s unusual method works is nothing short of incredible... and it has changed everything we thought we knew about weight loss.\r\n\r\nhttps://e3fc9zv6p2k0jw2n2jn0ubre1b.hop.clickbank.net \r\n\r\n\r\nThe craziest part?\r\n\r\nYou can do this method for yourself in less than 30 seconds a day...\r\n\r\nWith one simple pantry food.\r\n\r\nTry it for yourself now:\r\n\r\n>>> Doctor\'s Unusual Method Liquifies Fat Cells As You Sleep \r\n\r\nhttps://e3fc9zv6p2k0jw2n2jn0ubre1b.hop.clickbank.net\r\n\r\n\r\nSkeptical?\r\n\r\nI was too, but then I saw this shocking proof for myself.\r\n\r\nhttps://e3fc9zv6p2k0jw2n2jn0ubre1b.hop.clickbank.net \r\n\r\n\r\nTo your health,\r\nDr. Alban\r\n\r\nPS. If you have weight concerns, you should try this method for yourself right now. \r\nThe $80 billion dollar weight loss industry do not want you to see this video and \r\ndiscover the amazing fat-melting pantry food. Watch it now before it\'s too late.',''),(6252,1,1572,'6','Genevieve Carper',''),(6253,1,1572,'2','972-426-5079',''),(6254,1,1572,'3','telesyncai@gmail.com',''),(6255,1,1572,'4','Special promotion: Get started with conversation Ai and boost your business operations for under $1,000 a month. \r\n\r\nDon\'t get left behind; unlock your free 30 minute demonstration here. \r\n\r\nhttps://www.dahbahmdm.com/free-ai-lead-information',''),(6256,1,1573,'6','Jacob Stewart',''),(6257,1,1573,'2','036374 83 95',''),(6258,1,1573,'3','jacobstewart1972@gmail.com',''),(6259,1,1573,'4','Hey, I\'m using the contact form because I noticed you didnt have an A.I. chat option\r\n\r\nI have a software that adds an A.I. chat feature for small businesses like yours.\r\n\r\nYou got a few minutes so I can demo it for you?\r\n\r\nIts making some of the other users lots of money and its mostly automated so it won\'t add to your plate.\r\n\r\nPS reply back \"AI Chatbot\" for more info',''),(6260,1,1574,'6','Kaspar Bennett',''),(6261,1,1574,'2','098879499',''),(6262,1,1574,'3','kasparbennett400@gmail.com',''),(6263,1,1574,'4','\"Kia ora,\r\n\r\nI am an online marketing specialist based here in NZ.\r\n\r\nI was on your website and wanted to share some strategies for improving your online marketing efforts.\r\n\r\nCould I send you a free video (with a website report) specifically for your business, online profile and how you could improve it? It will show you which people who need your service can reach you directly through your website so that you can get more new clients & revenue.\r\n\r\nThe advice is complimentary, no strings attached.\r\n\r\nPlease email us back for a free video review of your website.\r\n\r\nNgā Mihi,\r\nKaspar Bennett\r\nkasparbennett400@gmail.com\r\nMarketing Manager\r\n\r\n\r\n\r\nIf you’re NOT interested, simply reply “NO” and I will not contact you again.\"',''),(6264,1,1574,'5','Re: Your Website Review',''),(6265,1,1575,'6','Tom Chauvel',''),(6266,1,1575,'2','72 808 22 27',''),(6267,1,1575,'3','tomdonna27@gmail.com',''),(6268,1,1575,'4','This AI-driven method revolutionize my lead generation in just 4 days.\r\n\r\n This isn\'t about conventional tactics; it\'s about leveraging artificial intelligence to precisely target and attract the leads your business needs.\r\n\r\nImagine harnessing AI to not only find but deeply connect with your ideal audience, elevating your strategy beyond the norm. \r\n\r\nThis approach is tailored, efficient, and ready to set your business apart.\r\n\r\nCurious to unlock this potential? Dive into the AI revolution that promises to redefine your growth. Your transformation starts now.\r\n\r\nWatch this now : www.brainytoolsai.com/402c18cb\r\n\r\n( CLICK ON THE SOUND)\r\n\r\nThis is working for me, I hope it works for you.\r\n\r\nAll my best\r\n\r\nTom Ridge\r\n\r\nStar Gazer Products\r\n1934 Old Gallows Rd\r\nTysons, VA 22182\r\n\r\n\r\n\r\n\r\n\r\nIf you no longer want to receive emails replay OPT OUT @ tomdonnalee27@gmail.com and will delete your email.',''),(6269,1,1576,'6','Chic Templeton',''),(6270,1,1576,'3','chic@pinnacleandco.nz',''),(6271,1,1576,'4','Hi, as part of our twice-yearly assessment, we\'re checking to ensure your contact form is operating as it should. Could you kindly send a confirmation reply to chic@pinnacleandco.nz to let us know you\'ve received this email? If you find this email in your spam folder, please inform us so we can take the necessary steps to ensure future communications reach you directly.\r\n\r\nThanks,\r\nChic 🙂',''),(6272,1,1576,'5','Pinnacle&Co.',''),(6273,1,1577,'6','Keith Embling',''),(6274,1,1577,'2','0413-4613366',''),(6275,1,1577,'3','travis.ezmm@gmail.com',''),(6276,1,1577,'4','Boost efficiency & leap ahead of the competition with our easy-to-integrate AI tools. \r\nLet\'s unlock your business\'s potential together. \r\nIf this interests you, respond to this email with a YES. \r\n\r\nBest, \r\nKeith',''),(6277,1,1578,'6','Dillon Salmond',''),(6278,1,1578,'2','253-351-7597',''),(6279,1,1578,'3','dillon.salmond18@gmail.com',''),(6280,1,1578,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(6281,1,1579,'6','Natalie Zook',''),(6282,1,1579,'2','463 1060',''),(6283,1,1579,'3','hello@socialbusybee.com',''),(6284,1,1579,'4','Hey there, I\'m Natalie from Social Busy Bee, your ally in the exciting world of Instagram growth. I\'ve discovered something spectacular for skyrocketing your Instagram profile and I\'m thrilled to share it with you!\r\n\r\nSocial Growth Engine introduces a revolutionary service that propels your Instagram engagement to new heights. It\'s a breeze:\r\n\r\n- Zero in on crafting unforgettable content.\r\n- Extremely budget-friendly at a mere $36/month.\r\n- Completely safe (no password needed), incredibly powerful, and tailor-made for Instagram.\r\n\r\nI\'ve observed remarkable results firsthand, and I\'m certain you will too! Boost your Instagram presence this instant: http://get.socialbuzzzy.com/instagram_booster\r\n\r\nBest wishes,\r\nNatalie at Social Busy Bee\"',''),(6285,1,1580,'6','Kenneth White',''),(6286,1,1580,'2','0340 0483183',''),(6287,1,1580,'3','kenneth@adamhustle.com',''),(6288,1,1580,'4','Hello, have you seen the issues with your website\'s performance?',''),(6289,1,1581,'6','Brent Callender',''),(6290,1,1581,'2','416-635-2999',''),(6291,1,1581,'3','brent.callender@gmail.com',''),(6292,1,1581,'4','Cool website!\r\n\r\nDear juiceelectrical.co.nz Admin.\r\n\r\nMy name’s Brent, and I just discovered your site - juiceelectrical.co.nz - while browsing the net. You surfaced at the top of the search results, so I looked you out. Looks like what you’re doing is quite cool. \r\n\r\nBut if you don’t mind me inquiring – after someone like me stumbles across juiceelectrical.co.nz, what normally happens?\r\n\r\nIs your site producing leads for your company? \r\n\r\nI’m supposing some, but I also gamble you’d like more… studies show that 7 out 10 who arrive on a site end up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a notion – 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 said, “call me now.”\r\n\r\nYou can –\r\n \r\nWeb Visitor is a software widget that’s functions on your site, prepared to capture 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 literally looking your site.\r\n\r\nCLICK HERE https://turboleadgeneration.com to test a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’s why we built out our new SMS Text With Lead attribute because once you’ve captured the visitor’s phone number, you can automatically a text message (SMS) conversation.\r\n \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow with text messages for new offers, content links, even just “how you doing?” notes to build a a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://turboleadgeneration.com to learn Web Visitor can do for your business\r\n\r\nYou could be converting up to 100X more leads today!\r\nBrent\r\n\r\nPS: Web Visitor provides FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers eager to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://turboleadgeneration.com to try Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nOnly a brief notification - the monikers and email employed in this communication, Brent and Callender, are stand-ins and not really real contact information. We appreciate openness and aimed to confirm you are aware of this! In case you wish to make contact with the real person responsible for this memo, kindly check out our site, and we’ll link you with the proper entity.',''),(6293,1,1582,'6','Mike Thornton',''),(6294,1,1582,'2','81359766657',''),(6295,1,1582,'3','peterDilkmaida@gmail.com',''),(6296,1,1582,'4','Howdy \r\n \r\nI have just analyzed juiceelectrical.co.nz for its SEO metrics and saw that your website could use an upgrade. \r\n \r\nWe will enhance your ranks organically and safely, using only state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/unbeatable-seo/ \r\n \r\n \r\nRegards \r\nMike Thornton\r\n \r\nDigital X SEO Experts',''),(6297,1,1582,'5','Google',''),(6298,1,1583,'6','James Walter',''),(6299,1,1583,'2','82494972559',''),(6300,1,1583,'3','jamewaltjamewalt00@gmail.com',''),(6301,1,1583,'4','Greetings \r\nI hope this mail finds you well. I am James Walter a private Funds Manager for high net worth individuals. \r\n \r\nI hold a mandate from a Russian Client who wants his funds totaling USD 47 Million reinvested using 3rd party due to the current sanctions, which means all aspect of the transaction will remain confidential, you will be paid 25% for facilitation or you can buy shares into the new investment, we can also invest in your company if it’s for expansion only. \r\n \r\nPlease note that there is no risk involved as funds are legal and currently in an European Bank, all details will be available as soon as you indicate interest by contacting me via the email or phone number bellow to discuss this opportunity in more detail. \r\n \r\nSincerely, \r\n \r\nMr. James Walter \r\n \r\nEmail:jamesldbuk@gmail.com \r\n \r\nTEL: +44 7706 280570',''),(6302,1,1583,'5','Google',''),(6303,1,1584,'6','Ines Cheung',''),(6304,1,1584,'2','72 585 70 14',''),(6305,1,1584,'3','mailbangerusa@gmx.com',''),(6306,1,1584,'4','Since 2012 Mailbanger.com has been selling OPTIN marketing lists with customer name/contact information to many small and startup businesses.\r\nMarket direct to millions of cutomers who have opted in to receive offers from third parties!\r\n\r\nwe have lists for USA/UK/Australia/Canada and many more countries\r\n\r\n\r\nHere are some of our packages:\r\n\r\n2023 USA Business Database with free LINKEDIN database:\r\nhttps://www.mailbanger.com/us-business-database\r\n\r\n\r\nUSA Business database with executive contact info - Over 30 million records:\r\nhttps://www.mailbanger.com/2020-usa-business-database-executive-edition/\r\n\r\n\r\n2022-2023 USA residential Homeowners list - Over 200 million records\r\nhttps://www.mailbanger.com/2021-usa-homeowner-and-residential-248-million-records/\r\n\r\n\r\n2024 100 million USA consumers with age,cell/home phone/address/email:\r\nhttps://www.mailbanger.com/100-million-usa-consumers-mega-edition\r\n\r\n\r\n2024 Cell/SMS Marketing package of over 40 million USA Customers:\r\nhttps://www.mailbanger.com/2024-usa-42-million-consumer-cell-phone-numbers/\r\n\r\n\r\nUSA Charity donors:\r\nhttps://www.mailbanger.com/usa-charity-donor-leads\r\n\r\nAustralia residential and consumer leads:\r\nhttps://www.mailbanger.com/mailing-lists-australia/\r\n\r\n850 000 Weight loss customers:\r\nhttps://www.mailbanger.com/weight-loss-diet-leads-lists\r\n\r\n\r\nwe have many more lists - stop wasting thousands on pay per click or other expensive forms of advertising, and market direct for super affordable prices.\r\n\r\nAll lists are updated regularly, buy once and its yours so you can use them for many campaigns. They come in Excel files with sortable categories\r\n\r\n\r\nBecome an Affiliate with Mailbanger and earn 20% - average sale is $500!\r\nhttps://www.mailbanger.com/affiliate-center/\r\n\r\n\r\nRegards',''),(6307,1,1585,'6','Albert Neistat',''),(6308,1,1585,'3','albert.neistat@gmail.com',''),(6309,1,1585,'4','Hello, I made a free marketing video for your website, Is this a good place to send it? \r\n\r\nReply to marketingvideosbyai@gmail.com\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe reply with the word unsubscribe in the subject.',''),(6310,1,1586,'6','Ethan Pierce',''),(6311,1,1586,'2','061 536 98 66',''),(6312,1,1586,'3','marketingboost.vip@gmail.com',''),(6313,1,1586,'4','Dear Business Professional, \r\n\r\nI hope this message finds you well. I\'m reaching out to share a remarkable opportunity that could transform your business dynamics.\r\n\r\nDiscover our Travel Incentive Program – a proven catalyst for enhancing customer loyalty and boosting sales by up to 60% or more. Providing complimentary vacations to your clients, leads, and employees not only deepens connections but also creates unforgettable experiences. This innovative marketing strategy, embraced by many successful businesses, holds the key to significant sales growth.\r\n\r\nGive it a try by visiting https://marketingsboost.com to claim your complimentary vacation and unlock this marketing strategy secret. \r\n\r\nBest regards,\r\nEthan\r\nMarketing Specialist',''),(6314,1,1587,'6','Dorian',''),(6315,1,1587,'2','0340 1016519',''),(6316,1,1587,'3','guadalupe.clary@gmail.com',''),(6317,1,1587,'4','Hope this finds you well,\r\n\r\nFact: Roughly 68% of the population never experiences tinnitus, no matter if they have been exposed to loud workplaces or other ear-harmful environments. \r\n\r\nThis has drawn the attention of a small group of European researchers who have recently published their astounding discoveries...\r\n\r\nCheck here: https://compressl.ink/tinnituscure\r\n\r\nThey 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...\r\n\r\nThis is fresh-out-of-the-box info that you won\'t find anywhere else but in their short documentary.\r\n\r\nCheck now here: https://compressl.ink/tinnituscure\r\n\r\n\r\nHow to stop weird sounds in 3 easy steps.\r\n\r\nStay healthy,\r\n\r\nDorian\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6318,1,1588,'6','Dorian',''),(6319,1,1588,'2','(34) 8047-6373',''),(6320,1,1588,'3','vasser.johanna@gmail.com',''),(6321,1,1588,'4','Hello,\r\n\r\nDid you know that every 17 seconds, someone in America is diagnosed with diabetes?\r\n\r\nHowever, a groundbreaking discovery from Harvard has enabled over 100,000 individuals to declare, \'I\'m no longer diabetic!\' \r\n\r\nFind out what they did by accessing this link: https://compressl.ink/overcomediabetes the stories of the 100,000 people who have overcome diabetes.\r\n\r\nYou\'ll be surprised how easy it is to get rid of diabetes. \r\n\r\nDoctors can hardly believe it.\r\n\r\n\r\nWatch the short documentary about this new discovery here: https://compressl.ink/overcomediabetes\r\n\r\nStay healthy,\r\n[YOUR NAME]\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6322,1,1589,'6','Shonda Sherwin',''),(6323,1,1589,'2','06-93327231',''),(6324,1,1589,'3','robot.savant@gmail.com',''),(6325,1,1589,'4','How much money are missed calls costing you? \r\n\r\nOur Missed Call Text-Back service instantly\r\nengages your missed calls with personalized \r\ntext messages, turning potential losses into \r\nengaged customers. \r\n\r\nTry it now and see the difference for \r\nyourself: https://the-missed-call.com\r\n\r\nBest, \r\nKeith\r\n\r\n\r\n\r\n\r\nTo Opt-Out please click this link: \r\nhttps://the-missed-call.com/opt-out',''),(6326,1,1590,'6','Dorian',''),(6327,1,1590,'2','218-776-8264',''),(6328,1,1590,'3','ernst.deon@yahoo.com',''),(6329,1,1590,'4','Hello!\r\n\r\nThis is going to surprise you...\r\n\r\nA little-known whistleblowing doctor walked into a top US hospital with this common pantry food, prepared it and gave it to the overweight patients...\r\n\r\nAnd within weeks 96% of them had dropped an average of 29.4 lbs, supporting healthy blood sugar and blood pressure...\r\n\r\nClick here to see tne video: https://compressl.ink/puravive\r\n\r\nHow the doctor\'s unusual method works is nothing short of incredible... and it has changed everything we thought we knew about weight loss.\r\n\r\nThe craziest part?\r\n\r\nYou can do this method for yourself in less than 30 seconds a day...\r\n\r\nWith one simple pantry food.\r\n\r\nTry it for yourself now: https://compressl.ink/puravive\r\n\r\n>>> Doctor\'s Unusual Method Liquifies Fat Cells As You Sleep\r\n\r\nSkeptical?\r\n\r\nI was too, but then I saw this shocking proof for myself.\r\n\r\nTo your health,\r\n\r\nDorian\r\n\r\nPS. If you have weight concerns, you should try this method for yourself right now. The $80 billion dollar weight loss industry do not want you to see this video https://compressl.ink/puravive and discover the amazing fat-melting pantry food. Watch it now before it\'s too late.\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6330,1,1591,'6','Tyrone Boxer',''),(6331,1,1591,'2','445-612-3366',''),(6332,1,1591,'3','tyrone.boxer@gmail.com',''),(6333,1,1591,'4','hi there!\r\n\r\nI love with what you guys are doing at juiceelectrical.co.nz and curious if you would be open to me penning an article about you guys and posting it on my website?\r\n\r\nMy intention is to do this absolutely free - no hidden agendas, I simply need your consent first!\r\n\r\nThis is the place I\'ll be publishing it, and we typically get plenty of excellent traffic! See for yourself here:\r\n\r\n\r\nhttps://ibit.ly/let-us-feature-your-business-198 \r\n\r\nThis is my small way to \'pay it forward\' :) Eager to hear back!\r\n\r\nAll the best,\r\nTyrone',''),(6334,1,1592,'6','Brent Fouch',''),(6335,1,1592,'2','(45) 7071-9160',''),(6336,1,1592,'3','brentfouch@aiviralvideo.com',''),(6337,1,1592,'4','Have you noticed your website\'s performance problems?',''),(6338,1,1593,'6','Anthony Lewis',''),(6339,1,1593,'2','0311 5449970',''),(6340,1,1593,'3','anthony@rapidprofitmachine1.com',''),(6341,1,1593,'4','Hi, did you see that your website is having performance issues?',''),(6342,1,1594,'6','Otilia Schaefer',''),(6343,1,1594,'2','613-799-6059',''),(6344,1,1594,'3','customersupport@capitalfund-hk.com',''),(6345,1,1594,'4','Are you okay running your business without much funds? This could slow down growth and delay returns on your business.\r\n\r\nNow 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.\r\n\r\nTake 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.\r\n\r\nGive us a call on:\r\n+852 3008 8373, \r\nor write us at:\r\ninfo@capitalfund-hk.com',''),(6346,1,1595,'6','Hye Puglisi',''),(6347,1,1595,'2','427 1409',''),(6348,1,1595,'3','mailbangerusa@gmx.com',''),(6349,1,1595,'4','Since 2012 Mailbanger.com has been selling OPTIN marketing lists with customer name/contact information to many small and startup businesses.\r\nMarket direct to millions of cutomers who have opted in to receive offers from third parties!\r\n\r\nwe have lists for USA/UK/Australia/Canada and many more countries\r\n\r\n\r\nHere are some of our packages:\r\n\r\n2023 USA Business Database with free LINKEDIN database:\r\nhttps://www.mailbanger.com/us-business-database\r\n\r\n\r\nUSA Business database with executive contact info - Over 30 million records:\r\nhttps://www.mailbanger.com/2020-usa-business-database-executive-edition/\r\n\r\n\r\n2022-2023 USA residential Homeowners list - Over 200 million records\r\nhttps://www.mailbanger.com/2021-usa-homeowner-and-residential-248-million-records/\r\n\r\n\r\n2024 100 million USA consumers with age,cell/home phone/address/email:\r\nhttps://www.mailbanger.com/100-million-usa-consumers-mega-edition\r\n\r\n\r\n2024 Cell/SMS Marketing package of over 40 million USA Customers:\r\nhttps://www.mailbanger.com/2024-usa-42-million-consumer-cell-phone-numbers/\r\n\r\n\r\nUSA Charity donors:\r\nhttps://www.mailbanger.com/usa-charity-donor-leads\r\n\r\nAustralia residential and consumer leads:\r\nhttps://www.mailbanger.com/mailing-lists-australia/\r\n\r\n850 000 Weight loss customers:\r\nhttps://www.mailbanger.com/weight-loss-diet-leads-lists\r\n\r\n\r\nwe have many more lists - stop wasting thousands on pay per click or other expensive forms of advertising, and market direct for super affordable prices.\r\n\r\nAll lists are updated regularly, buy once and its yours so you can use them for many campaigns. They come in Excel files with sortable categories\r\n\r\n\r\nBecome an Affiliate with Mailbanger and earn 20% - average sale is $500!\r\nhttps://www.mailbanger.com/affiliate-center/\r\n\r\n\r\nRegards',''),(6350,1,1596,'6','Sebastian Akhlak',''),(6351,1,1596,'2','+1216848068',''),(6352,1,1596,'3','soci.sebastian@gmail.com',''),(6353,1,1596,'4','Dear Owner,\r\n\r\nI hope this message finds you well. I\'m reaching out to offer a unique opportunity to amplify your business\'s online presence and attract more clients through targeted Google Ads campaigns.\r\n\r\nBy understanding your specific business needs, we create customized advertising strategies that place your services in front of the right audience, significantly increasing your visibility and customer engagement. Our approach is designed to ensure your marketing budget is invested wisely, yielding a higher return on investment through quality leads and local market dominance.\r\n\r\nI\'ve successfully helped businesses in similar sectors thrive by enhancing their online reach and would love to do the same for you. Let\'s connect for a brief discussion on how we can elevate your business together.\r\n\r\nLooking forward to your positive response.\r\n\r\nBest regards,\r\nSebastian Akhlak\r\nData-Driven Google Ads Expert',''),(6354,1,1597,'6','Bobby Ryan',''),(6355,1,1597,'2','607-441-3072',''),(6356,1,1597,'3','heyitsbobbyryan@gmail.com',''),(6357,1,1597,'4','I\'ve got some leads that are interested in your company, who/where can I send them?',''),(6358,1,1598,'6','Emerald Empire Gaming. Arriola',''),(6359,1,1598,'3','arriola.wiley39@gmail.com',''),(6360,1,1598,'4','Hey friend,\r\n\r\nEver feel like you\'re chasing your tail in the money game? It\'s like being a hamster on a wheel, running endlessly but getting nowhere. But fear not! Our \"Win a $1000 Worth PayPal Gift Card\" campaign is your shortcut to breaking free from the cycle. Say goodbye to the hamster wheel and hello to financial freedom with just a click. Don\'t let this chance slip through your fingers!\r\n\r\n(Note) For an better accessibility, consider using a VPN from USA.\r\n\r\n[http://tinyurl.com/4tpm8nh3]\r\n\r\nCheers,\r\nEmerald Empire Gaming.',''),(6361,1,1599,'6','Dante',''),(6362,1,1599,'2','703-408-0019',''),(6363,1,1599,'3','fadden.jessika@gmail.com',''),(6364,1,1599,'4','They thought only a genius could crack the lottery code...\r\n\r\nBut after 273 tests Yale scientists revealed a shocking truth...\r\n\r\nPeople who just couldn’t understand math in school pick 12 times more winning numbers than those who scored only A in class...\r\n\r\nWhich explains why the biggest jackpot winners were incredibly bad at math...\r\n\r\nWhile great mathematicians never won anything...\r\n\r\nSkeptical?\r\n\r\nThis lottery legend https://bit.ly/loterrydefeater showed his winning formula...\r\n\r\nAnd it’s so simple that the complicated minds of math teachers could barely conceive...\r\n\r\nInstead, 5th graders saw right through it!\r\n\r\nSee it for yourself right here: https://bit.ly/loterrydefeater\r\n\r\nFor your wealth,\r\n\r\nDante\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6365,1,1600,'6','Janet Garside',''),(6366,1,1600,'2','0483 50 53 54',''),(6367,1,1600,'3','myorcaoffers@gmail.com',''),(6368,1,1600,'4','Hi,\r\nEmpty leg flights can be as cheap as 75% off the standard charter price, which means you can fly on a private jet for a fraction of the cost of a regular flight.\r\nFind and book discounted private jet charter empty leg flights.\r\nWith an extensive network that brings together over 10,000 exclusive private aircraft spanning 40K destinations around the globe.\r\n\r\nClick here https://orcadigitals.net/cheapest-private-jet-charter-flights to enjoy access to the best empty leg private jet charter prices available across the market.\r\n\r\n\r\nJanet Garside\r\n30934 Grady Pines\r\nNew Evangeline\r\nIndiana, 03669',''),(6369,1,1601,'6','WlasowPetroiGAt',''),(6370,1,1601,'2','89727233559',''),(6371,1,1601,'3','alenka@meteo.gold',''),(6372,1,1601,'4','Within the constantly changing world of SEO, instruments and methods that could successfully enhance a website\'s internet presence are in persistent request. Introduce XRumer, a advanced software crafted to power up link-building campaigns. Using the ability to post on message boards, blogs, guestbooks, and different platforms automatedly, XRumer revolutionizes the way digital marketers handle off-page SEO. This robust tool circumvents common online barriers like CAPTCHAs, making sure an uninterrupted and effective backlink generation process. A properly executed XRumer SEO run might significantly raise a site\'s search engine rankings, driving organic traffic and boosting online appearance. \r\n \r\nYet, while the capability of XRumer is undeniable, its use calls for a planned and wise technique. Just like all SEO software, the results are only as excellent as the technique after them. Too much reliance or misuse can lead to unwanted results, like punishments from search engines for forced link building. Therefore, when commencing on an XRumer SEO run, it\'s imperative to prioritize excellence over quantity, focusing on relevant and high-authority sites that conform with the brand\'s principles. In the grip of a talented SEO specialist, XRumer turns into a strong asset, bridging the divide between a brand and its internet possibility. \r\n \r\n \r\n \r\nTelgrm: @exrumer \r\nSkype: XRumer.pro',''),(6373,1,1601,'5','Nokia',''),(6374,1,1602,'6','Peter Dawnson',''),(6375,1,1602,'2','0362 1139204',''),(6376,1,1602,'3','peter.dawson@gmail.com',''),(6377,1,1602,'4','Daily 7-second ritual activates the billionaire brain wave\r\n\r\nYou may have already read or listened to the book “Think and grow rich”…\r\n\r\nBut the leaked CIA research reveals a powerful sound wave…\r\n\r\nWhen heard for 7 mins every day…\r\n\r\nStart attracting money in your life. \r\n\r\nFrom all directions.\r\n\r\nBecause this brain wave targets your hippocampus, a walnut-sized region in your brain…\r\n\r\nWhich is activated in wealthy people…\r\n\r\nBut dormant in the average person. \r\n\r\nThe leaked experiment shows you how to activate and grow your hippocampus…\r\n\r\nSo, money and abundance start flowing into your life.\r\n\r\n(If the page is still up), you can discover the truth here: \r\n\r\n—> https://2052c9pbo8m16m636fz8plqo4z.hop.clickbank.net\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe reply with the word unsubscribe in the subject.',''),(6378,1,1603,'6','Rob Cope-Williams',''),(6379,1,1603,'2','0272281033',''),(6380,1,1603,'3','rfcopewilliams@gmail.com',''),(6381,1,1603,'4','Can Greg pop back to 71b Cranford Street, the deck lights worked once and then stopped again. \r\n\r\nall the fuses are OK \r\n\r\nPerhaps he likes my coffee to much...... \r\n\r\ncheers Rob.',''),(6382,1,1603,'5','website',''),(6383,1,1604,'6','Christi Baron',''),(6384,1,1604,'2','0311 8428334',''),(6385,1,1604,'3','christi.baron@hotmail.com',''),(6386,1,1604,'4','This message showed up to you and I can make your message show up to millions of websites the same way. It\'s awesome and low-cost.Contact me by email or skype below if you want to know more.\r\n\r\nP. Stewart\r\nEmail: h23u5g@gomail2.xyz\r\nSkype: live:.cid.2bc4ed65aa40fb3b',''),(6387,1,1605,'6','Donovan',''),(6388,1,1605,'2','24-21-01-79',''),(6389,1,1605,'3','carnahan.meredith75@gmail.com',''),(6390,1,1605,'4','Hey,\r\n\r\nHave a fantastic day!\r\n\r\nToday, 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.\r\n\r\nAll recipes come with simple ingredients and easy instructions and you can download everything today for free. \r\n\r\nSounds good?\r\n\r\n==> Just click here to download your FREE copy of 21 yummiest keto recipes: \r\n\r\nhttps://bit.ly/FreeKetosRecipes\r\n\r\nYour family and friends will love these keto recipes...\r\n\r\nAnd everything is 100% keto-approved and proven to speed up your ketosis.\r\n\r\nJust follow the instructions below and download your free keto cookbook :)\r\n\r\n1. just click here to get to the download page: \r\n\r\nhttps://bit.ly/FreeKetosRecipes\r\n\r\n2. enter your details where to send the recipes\r\n3. check your email address in the next few minutes (also check your spam filter) and enjoy your new recipes!\r\n\r\nStay healthy,\r\n\r\nDonovan\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6391,1,1606,'6','Dorian',''),(6392,1,1606,'2','05.94.08.60.98',''),(6393,1,1606,'3','benito.cheongcheokhong24@gmail.com',''),(6394,1,1606,'4','Hello!\r\n\r\nDid you hear about the unusual rice method that liquifies fat cells as you sleep?\r\n\r\nClinical 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!\r\n\r\nTry it for yourself now: https://bit.ly/ExoticRiceLiquifiesFatCells\r\n\r\nBefore you go to sleep tonight, try it for yourself...\r\n\r\n>>> 1 Unusual Rice Method That Liquifies Fat As You Sleep\r\n\r\nDon\'t waste another second on:\r\n\r\nX--- Fad diets that are impossible to enjoy...\r\nX--- Gym memberships or fitness apps...\r\nX--- Calorie counting\r\n\r\nInstead, just try this one easy fat-dissolving rice method before you sleep tonight and drop lbs of stubborn fat by morning.\r\n\r\nCheck it now: https://bit.ly/ExoticRiceLiquifiesFatCells\r\n\r\nTo your health,\r\n\r\nDorian\r\n\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6395,1,1607,'6','Shawnbet',''),(6396,1,1607,'2','89826153266',''),(6397,1,1607,'3','tihagniya@yandex.ru',''),(6398,1,1607,'4','Hey there, savvy earners and crypto enthusiasts! ?? We\'re excited to bring you the inside scoop on Autentic’s innovative affiliate program that\'s shaking up the world of RWA (Real World Asset) tokenization. \r\n \r\nAre you ready to get a hefty 20% cashback in USDT? Yes, you heard that right! Autentic is not your average crypto gig. It\'s a groundbreaking opportunity that\'s extending its hands to you, whether you\'re a seasoned influencer or just starting your blogging journey. \r\n \r\nMove Over, Traditional Crypto Affiliates! \r\nForget the high demands and fierce competition of classic crypto affiliate programs. Autentic is here to change the game. Launched in October 2023, this tokensale is not just about buying and selling; it’s about being part of a movement that brings the real estate market right into the cryptosphere. \r\n \r\nA Global Team with a Local Touch \r\nWhile Autentic boasts an international team of experts, it steers clear of operating in the USA. This strategic move opens up a whole new world of possibilities for affiliates everywhere else. Check out the tokensale at \r\n \r\n<a href=https://aut.finance/register/en?ref=61210544031574>https://aut.finance/</a> and see for yourself how Autentic stands out. \r\n \r\nPartner Support Like Never Before \r\nNew to the YouTube scene or need some creative boost? Don’t fret! Autentic’s Partner Support is on standby to assist with text, creative assets, and even video production help for newcomers. They\'re committed to fueling your success. \r\n \r\nBeyond Referrals: Earn with Token Growth Potential \r\nWith the second round of the tokensale wrapping up and an exchange listing on the horizon at https://p2pb2b.com, the potential for token price growth is buzzing! This means double the earning potential – from referrals and from the token price surge. \r\n \r\nGetting Started is Simple: \r\n1. Register at \r\n<a href=https://aut.finance/register/ru?ref=3344719299>https://aut.finance/</a>. \r\n2. Grab your unique referral code from your personal account. \r\n3. Spread the word, attract new users, and watch your cashback flow in! \r\n \r\nAutentic\'s program is a goldmine for those looking for generous cashback, prompt payments, and passive income potential. Plus, it\'s perfect for budding arbitrageurs, microbloggers, and influencers looking to maximize their profits with minimal fuss. \r\n \r\nSo, what are you waiting for? With your unique code and a smart sharing strategy, you\'re all set to earn big through Autentic\'s referral rewards. Don\'t miss out on this lucrative chance to boost your income with Autentic – where earning meets innovation! \r\n \r\nHappy earning, \r\nThe Autentic Team',''),(6399,1,1607,'5','Nokia',''),(6400,1,1608,'6','Rob Cope-Williams',''),(6401,1,1608,'2','0272281033',''),(6402,1,1608,'3','rfcopewilliams@gmail.com',''),(6403,1,1608,'4','Just in case there is a cancellation. Or perhaps Greg feels bad, or if he would like two coffees, rather than the normal one, I would be delighted, or actually Lighted I suppose, if he were to jump the que and pop in earlier.',''),(6404,1,1609,'6','John',''),(6405,1,1609,'2','08031 41 94 70',''),(6406,1,1609,'3','richie.mcnamee@gmail.com',''),(6407,1,1609,'4','You Got Screwed..\r\n\r\nThat’s right.\r\n\r\nThe whole \"Be a good little boy/girl. \r\n\r\nGet good grades. \r\n\r\nGo to college. \r\n\r\nFind a good job. \r\n\r\nPut away money into your retirement account and you’ll be just fine\" charade is collapsing right under our noses. \r\n\r\n\r\nWe’ve been PLAYED.\r\n\r\nWe’ve been led to believe that happiness and security were waiting for us if only we did as we were told.\r\n\r\nIf only we followed the path laid out for us, we’d be ok.\r\n\r\nBut surveys show 1 in 3 Americans have no retirement savings.\r\n\r\nSurveys show most Americans don\'t have even $1,000 in their bank account.\r\n\r\nAnd this may sound crazy... but surveys show that only 20% of Americans are free of debt.\r\n\r\nHorrifying stats...\r\n\r\nBut honestly, not surprising. \r\n\r\nNot 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…\r\n\r\nOnly to see themselves having to go back to their parents\' place because there just aren’t any jobs for their line of work.\r\n\r\n\r\nWorst of all? \r\n\r\n\r\nStudent 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.\r\n\r\nAs 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.\r\n\r\nIt’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.\r\n\r\nThe report found that as much as 70% of households saw their earnings drop in the past decade.\r\n\r\nTo put it bluntly?\r\n\r\nThose 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.\r\n\r\nAnd you know what? \r\n\r\nThis is not your fault. \r\n\r\nWe’ve all been played!\r\n\r\nBut it IS your RESPONSIBILITY to do something about it and guarantee that you and your family will NOT be played anymore. \r\n\r\nPress Here To See How You Can Stop Being Played TODAY And Put Your Financial Future In Your Own Hands: https://compressl.ink/LegendaryMarketer\r\n\r\n\r\nThe information in this video will change your life... \r\n\r\n\r\nIF you decide to act on it.\r\n\r\n\r\nPress Here Right Now To See It: https://compressl.ink/LegendaryMarketer\r\n\r\n\r\nTo your success,\r\n\r\nJohn\r\n\r\n\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, LA. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6408,1,1610,'6','Chas Suffolk',''),(6409,1,1610,'2','889-59-8981',''),(6410,1,1610,'3','chas_suffolk@gmail.com',''),(6411,1,1610,'4','hi!\r\n\r\nI\'m really impressed by what you team is doing at juiceelectrical.co.nz and curious if you would be open to me writing an article about you guys and posting it on my website?\r\n\r\nI want is to do this completely free - no strings attached, I simply need your consent first!\r\n\r\nHere\'s where I\'ll be posting it, and we typically get plenty of excellent traffic! Take a look here:\r\n\r\n\r\nhttps://ibit.ly/let-us-feature-your-business-159 \r\n\r\nThis is my tiny way to \'pay it forward\' :) Can\'t wait to get a response!\r\n\r\nWarm regards,\r\nChas',''),(6412,1,1611,'6','Grant Lira',''),(6413,1,1611,'2','0211 48 31 86',''),(6414,1,1611,'3','growthpartners13@gmail.com',''),(6415,1,1611,'4','Hey,\r\n\r\nThis 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.\r\n\r\nWe’ve helped 37 clients do just that to build their thought leadership in their specific industry which has helped them:\r\n\r\n- Generate more appointments\r\n- Close at a higher % (Because they built authority before the meeting even started)\r\n- Charge higher amounts because people view their company as a premium option \r\n\r\nInterested? 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:\r\n\r\nhttps://bit.ly/empathyfirm-30-minute-meeting\r\n\r\nBest,\r\nGrant\r\n\r\nPS - I will not see your response so if you have a question, book a time to chat (:\r\n\r\n\r\n\r\nN6565 Shorewood Hills Rd. Lake Mills WI, 53551\r\nEmail unsubnow1@gmail.com with your website to “unsub” meaning you will not hear from me again.',''),(6416,1,1612,'6','Jed Le Souef',''),(6417,1,1612,'2','077 8538 4973',''),(6418,1,1612,'3','jed.lesouef@googlemail.com',''),(6419,1,1612,'4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK \r\n\r\nContact us at https://websdesign.co/\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nContact us at https://websdesign.co/\r\n\r\nThanks\r\nWebs Design',''),(6420,1,1613,'6','Mohsin Ali',''),(6421,1,1613,'2','486 9344',''),(6422,1,1613,'3','assistsupmohsinali@gmail.com',''),(6423,1,1613,'4','Hi there,\r\n\r\nI\'m Mohsin, CEO of Assistsup, and I\'m excited to introduce you to our top-notch 24/7 virtual assistant, customer support management, and system admin management services. With a decade of experience running Assistsup, I understand firsthand how crucial seamless operations are for business success.\r\n\r\nAt Assistsup, we specialize in keeping your systems running smoothly around the clock. Our dedicated team ensures your business operates flawlessly, allowing you to focus on what matters most.\r\n\r\nReady to take your business to the next level? Let\'s chat about how Assistsup can help.\r\n\r\nLooking forward to connecting.\r\n\r\nBest regards,\r\nMohsin\r\nCEO, Assistsup',''),(6424,1,1614,'6','Janet Garside',''),(6425,1,1614,'2','(02) 4035 6459',''),(6426,1,1614,'3','myorcaoffers@gmail.com',''),(6427,1,1614,'4','Hi,\r\nEmpty leg flights can be as cheap as 75% off the standard charter price, which means you can fly on a private jet for a fraction of the cost of a regular flight.\r\nFind and book discounted private jet charter empty leg flights.\r\nWith an extensive network that brings together over 10,000 exclusive private aircraft spanning 40K destinations around the globe.\r\n\r\nClick here https://orcadigitals.net/cheapest-private-jet-charter-flights to enjoy access to the best empty leg private jet charter prices available across the market.\r\n\r\n\r\nJanet Garside\r\n30934 Grady Pines\r\nNew Evangeline\r\nIndiana, 03669',''),(6428,1,1615,'6','Louis Mayo',''),(6429,1,1615,'2','60 490 03 66',''),(6430,1,1615,'3','dodsonlouis79@gmail.com',''),(6431,1,1615,'4','Hi, I made a free video for your business. May I ask if this is the best place to send it?',''),(6432,1,1616,'6','Eric Jones',''),(6433,1,1616,'2','555-555-1212',''),(6434,1,1616,'3','ericjonesmyemail@gmail.com',''),(6435,1,1616,'4','Dear juiceelectrical.co.nz Webmaster. my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://rushleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(6436,1,1617,'6','William Brown',''),(6437,1,1617,'2','256-414-5990',''),(6438,1,1617,'3','rapidleads360@gmail.com',''),(6439,1,1617,'4','Good Day,\r\n\r\nGet your free Sales Funnel Guide for Success now!\r\n\r\nhttp://ugyl.ink/sales-funnel-success\r\n\r\n Richard Smith \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving from our communications in the future, please opt out at http://ugyl.ink/optoutone',''),(6440,1,1618,'6','Money Maker',''),(6441,1,1618,'2','05.32.68.32.01',''),(6442,1,1618,'3','genie.filson@msn.com',''),(6443,1,1618,'4','I\'ve got a tremendous offer for you.\r\n\r\nFor a very limited time...\r\n\r\nMatt\'s giving you his fresh-off\r\n-the-presses book revealing...\r\n\r\nHow he built a 7-Figure Online\r\nBusiness using nothing but...\r\n\r\nEthical Email Marketing to drive\r\nrevenue, sales and commissions...\r\n\r\n...right now for 85% off :-)\r\n\r\n...for a tiny investment of just $5.60.\r\n\r\nAnd that\'s not all...\r\n\r\nHe\'s also including (at no extra cost)...\r\n\r\n10 amazing bonuses valued at $1,645.\r\n\r\n...many of which others would\r\nsimply call \"priceless\"...\r\n\r\nThe price will rise soon.\r\n\r\nHurry and save $31.40\r\n\r\nhttps://compressl.ink/limitedoffer\r\n\r\nBest Regards,\r\n\r\nMoney Maker\r\n\r\nP.S. You\'ll SAVE $31.40\r\nif you act quickly\r\n\r\nhttps://compressl.ink/limitedoffer\r\n\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, San Francisco Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6444,1,1619,'6','Luke Struthers',''),(6445,1,1619,'2','959 22 938',''),(6446,1,1619,'3','salcidomedia@gmail.com',''),(6447,1,1619,'4','It’s time to create VIRAL content through our POWERFUL AI tool!\r\nShinefy creates VIRAL content for you in SECONDS!\r\nVisit https://deidre--chasereiner.thrivecart.com/yearly-shinefy-subscription/ now!',''),(6448,1,1620,'6','Dorian',''),(6449,1,1620,'2','814-858-7176',''),(6450,1,1620,'3','nowakowski.brock@gmail.com',''),(6451,1,1620,'4','Hello,\r\n\r\nRecent studies from Harvard have discovered a specific plant that targets the root cause of Type 2 Diabetes.\r\n\r\nThese studies refer to \"zombie cells\" that accumulate around the pancreas and cause the disease.\r\n\r\nWhat plant do you think is most effective at eliminating these zombie cells, eradicating diabetes from the body permanently?\r\n\r\n1. Black Mulberry\r\n2. Chicory\r\n3. Eleuthero\r\n4. Aloe\r\n\r\nThe answer will surprise you! Watch this short video explanation: https://compressl.ink/overcomediabetes\r\n\r\nStay healthy,\r\n\r\nDorian\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6452,1,1621,'6','Marcel',''),(6453,1,1621,'2','252-373-9692',''),(6454,1,1621,'3','douglas.hussain@yahoo.com',''),(6455,1,1621,'4','Hello,\r\n\r\nMost of us like to partake in a little vino, a cocktail, or a nice cold brewski every now and then...\r\n\r\nAnd I\'m one of them :)\r\n\r\nHowever, recent studies prove the #1 sign you drink too much is excess lower belly fat (also referred to as \"Liver Belly\").\r\n\r\nThat\'s because the entire fat-burning process depends on a healthy liver.\r\n\r\nAnd although alcohol is normally quite damaging to your liver...\r\n\r\nThe ancient Mediterranean ritual you\'ll see at the link below naturally protects, purifies, and rapidly cleanses your liver of EVERY form of alcohol...\r\n\r\nAllowing you to enjoy a few drinks while promoting weight loss at the same time!\r\n\r\nThat\'s why, if you\'re gonna drink alcohol, just follow this simple Mediterranean Ritual beforehand (takes 30 seconds): https://compressl.ink/liverhealth\r\n\r\nBest,\r\n\r\nMarcel\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6456,1,1622,'6','Lavonne Selby',''),(6457,1,1622,'2','06-97775500',''),(6458,1,1622,'3','webmageddon@protonmail.com',''),(6459,1,1622,'4','AI Will End Your Website \r\n\r\n\r\nClick here https://aiearndaily.com \r\n\r\nI will design you a custom Chatbot GPT for juiceelectrical.co.nz. \r\n\r\nI will Volunteer to get you started but only if you ACT NOW!\r\n\r\nClick the link here https://aiearndaily.com \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nYou can OPT OUT here: \r\nhttps:///mybotboss.com/opt-out/?customer_domain=juiceelectrical.co.nz',''),(6460,1,1623,'6','Eric Jones',''),(6461,1,1623,'2','555-555-1212',''),(6462,1,1623,'3','ericjonesmyemail@gmail.com',''),(6463,1,1623,'4','Dear juiceelectrical.co.nz Administrator! my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. I’m interested… but… maybe…\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(6464,1,1624,'6','Dorian',''),(6465,1,1624,'2','0644-3468981',''),(6466,1,1624,'3','carmon.stevenson0@yahoo.com',''),(6467,1,1624,'4','Does your salad contain this vegetable?\r\n\r\nNew 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...\r\n\r\nmeaning it cannot absorb nutrients, increasing inflammation and slowing your metabolism, making you fatter and sicker.\r\n\r\nResearchers found lectin is so dangerous its now referred to as a \"anti-nutrient\"...\r\n\r\nAnd it\'s found in this everyday vegetable.\r\n\r\nYes it sounds crazy.\r\n\r\nI thought that too, but then I saw this alarming video.\r\n\r\nSo what is this evil vegetable?\r\n\r\n>>> Click Here To Discover The One Vegetable You Should NEVER Eat (Makes You Fat And Sick)\r\n\r\nhttps://bit.ly/ExoticRiceLiquifiesFatCells\r\n\r\nTo your health,\r\n\r\nDorian\r\n\r\nPS. 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\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6468,1,1625,'6','Charles Williams',''),(6469,1,1625,'2','(08) 8780 7268',''),(6470,1,1625,'3','rapidleads360@gmail.com',''),(6471,1,1625,'4','Hello,\r\n\r\nGet your free Sales Funnel Guide for Success now!\r\n\r\nhttp://ugyl.ink/sales-funnel-success\r\n\r\n David Thompson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to unsubscribe from our communications going forward, simply click the link at http://ugyl.ink/optoutone',''),(6472,1,1626,'6','Robert Shultz',''),(6473,1,1626,'2','0699 838 23 81',''),(6474,1,1626,'3','richard@aimoneymakingcourse.com',''),(6475,1,1626,'4','Hello, did you notice the problems with your website\'s web design?',''),(6476,1,1627,'6','Eric Jones',''),(6477,1,1627,'2','555-555-1212',''),(6478,1,1627,'3','ericjonesmyemail@gmail.com',''),(6479,1,1627,'4','Hi juiceelectrical.co.nz Webmaster. my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(6480,1,1628,'6','Debbie Walker',''),(6481,1,1628,'2','(02) 4910 8402',''),(6482,1,1628,'3','joshua@airapidprofits.com',''),(6483,1,1628,'4','Hello, did you notice the problems with your website\'s web design?',''),(6484,1,1629,'6','David Anderson',''),(6485,1,1629,'2','705-330-2629',''),(6486,1,1629,'3','david.anderson@gmail.com',''),(6487,1,1629,'4','This is your personal wake up call...\r\n\r\n... and a sneak-peek behind the curtains of\r\n\r\n the #1 new money-getting vehicle of\r\n\r\nthis decade, and the forseeable future…\r\n\r\n==>>*(HERE\'S HOW): https://linktracksystem.biz/cpa/?affid=351937&offerid=11\r\n\r\n\r\n\r\nI’m going to show you exactly how\r\n\r\nyou can become that \"person behind the curtain”\r\n\r\nWith an automated process that works for you 24/7.\r\n\r\nThis is cutting edge information on an emerging\r\n\r\nmarket that you cannot afford to miss.\r\n\r\n==>>*Watch The Demonstration Video Here: https://linktracksystem.biz/cpa/?affid=351937&offerid=11\r\n\r\n\r\n\r\nThis demo will only be up for a limited time.\r\n\r\nAnd this how new system is\r\n\r\ngetting further along every single day.\r\n\r\nDon\'t wait.\r\n\r\nThis is your wake up call\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe reply with the word unsubscribe in the subject to videopromotions10x@gmail.com',''),(6488,1,1630,'6','Venetta Dobos',''),(6489,1,1630,'2','(03) 5360 5354',''),(6490,1,1630,'3','dobos.venetta@gmail.com',''),(6491,1,1630,'4','Find the Top 0.01% of E‑commerce Products to Sell to Launch Your Business…\r\n\r\nEven if You’ve Never Sold Online Before!\r\n\r\nPlus, get access to advanced tools to spy on your competitors, uncover the most profitable keywords, and track exact profits!\r\n\r\nThere are $353M products you could possibly sell online.\r\n\r\nBut 99.99% of them will be a waste of your time, money, and energy.\r\n\r\nThat’s because only 0.01% of products are even worth pursuing.\r\n\r\nLuckily, finding that 0.01% isn’t too hard.\r\n\r\nWhich is why I believe anybody with a good head on their shoulders can do it.\r\n\r\nTest our cutting‑edge software that helps you start and scale an e‑commerce business all in one place.\r\n\r\nhttps://bit.ly/BestAmazonResearchTool',''),(6492,1,1631,'6','Agnes Shultz',''),(6493,1,1631,'2','04101 94 40 49',''),(6494,1,1631,'3','richard@aimoneymakingcourse.com',''),(6495,1,1631,'4','Hi, I noticed a few problems affecting your website on Google, is this a good place to send them?',''),(6496,1,1632,'6','Kami Walker',''),(6497,1,1632,'2','032 697 91 77',''),(6498,1,1632,'3','joshua@airapidprofits.com',''),(6499,1,1632,'4','Hello, I\'ve detected some inconsistencies in your Google listing. Is this the right place to discuss them?',''),(6500,1,1633,'6','Emerald Empire Gaming. Emerald Casinos.',''),(6501,1,1633,'3','suportemeraldcasinos@gmail.com',''),(6502,1,1633,'4','Hey there,\r\n\r\nTired of feeling like you\'re just spinning your wheels when it comes to money? Well, guess what? Global Casino is here to change the game! Just like a skilled gambler knows when to hold \'em and when to fold \'em, our casino is your ticket to turning your luck around and stacking up those winnings faster than you can say \"jackpot\"!\r\n\r\nImagine money as the key to unlocking the doors of opportunity, and Global Casino as your master key. With our $5 million jackpot waiting to be claimed, along with a generous $1000 bonus and 220 free spins for first-time depositors, you\'ll be rolling in dough faster than you can say \"show me the money\"! Don\'t miss out on your chance to win big and change your financial destiny today.\r\n\r\nLuck and prosperity await at Global Casino - where every spin brings you one step closer to your dreams!\r\n\r\nClick HERE to: [https://sweetrnd.net/cl?c=59879698&p=21550159&cid=[CLICK_ID]&sid=[SOURCE_ID]\r\n\r\nBest regards,\r\nEmerald Empire Gaming.\r\n\r\n\r\n\r\n\r\n\r\n\r\nYou may unsubscribe or change your contact details at any time.',''),(6503,1,1634,'6','Money Maker',''),(6504,1,1634,'2','(03) 9484 5649',''),(6505,1,1634,'3','sheryl.hilson@yahoo.com',''),(6506,1,1634,'4','Hello there,\r\n\r\nYou are a business owner? \r\n\r\nDive into the future of website creation without touching a single line of code! \r\n\r\nOur 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. \r\n\r\nPlus, with our one-time promotional offer, getting started has never been easier or more affordable.\r\n\r\nEmbrace the future now. Click here to start your journey even if you know nothing about web design: https://bit.ly/sitesflowai\r\n\r\nBest,\r\n\r\nDOnatelo\r\n\r\n\r\n\r\n\r\nIf you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/\r\n\r\n333 Summer Street, San Francisco Privacy Policy. Anti-spam Policy.\r\n\r\n©2024 Compressl.Ink, Inc.',''),(6507,1,1635,'6','Rita McBrien',''),(6508,1,1635,'2','422-415-2357',''),(6509,1,1635,'3','rita_mcbrien@gmail.com',''),(6510,1,1635,'4','Hey hey!\r\n\r\n\r\nExciting news: Your achievements at juiceelectrical.co.nz have not gone unnoticed! We\'ve shared your story with our audience, and the response is phenomenal. It\'s a celebration of your hard work and vision. Peek at the article and let us know your thoughts!\r\n\r\ncheck it here\r\n\r\nhttps://ibit.ly/GbWpC \r\n\r\nThis is our little way to \'pay it forward\' :) Eager to hear back!\r\n\r\nWarm regards,\r\nRita',''),(6511,1,1636,'6','Shellie Laird',''),(6512,1,1636,'2','0496 22 10 10',''),(6513,1,1636,'3','robot.savant@gmail.com',''),(6514,1,1636,'4','Elevate your business on Google, Facebook, and \r\nYelp effortlessly with our automated 5-star \r\nreview service. \r\n\r\nTailored for entrepreneurs eager for more \r\nvisibility and free leads, our platform \r\nstreamlines the process of gathering \r\ngenuine reviews from satisfied customers. \r\nDiscover the simple start to enhancing your \r\nGoogle My Business profile and attracting \r\nmore customers—automatically.\r\n\r\nReady to see the difference? \r\n\r\nBegin here: https://awifiedleadpro.com/wf\r\n\r\nBest regards,\r\nShellie\r\n\r\n\r\n\r\n116 Agnes Rd, Ste 200\r\nKnoxville, TN 37919\r\n\r\nTo Opt Out go here: https://awifiedleadpro.com/optout\r\nor reply UNSUBSCRIBE in the subject line\r\n\r\n\r\njuiceelectrical.co.nz',''),(6515,1,1637,'6','Mike Bradberry',''),(6516,1,1637,'2','86943345541',''),(6517,1,1637,'3','mikeinquiff@gmail.com',''),(6518,1,1637,'4','Howdy \r\n \r\nThis is Mike Bradberry\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your juiceelectrical.co.nz SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\nRegards \r\nMike Bradberry\r\n \r\nmike@strictlydigital.net',''),(6519,1,1637,'5','Google',''),(6520,1,1638,'6','rebecca lovell-smith',''),(6521,1,1638,'2','0223235851',''),(6522,1,1638,'3','godsavethequeen@hotmail.co.nz',''),(6523,1,1638,'4','Hi \r\nWe have recently moved into a Victorian house in the central city and need the hanging light fixtures removed for simple pendants. We also need a light installed, and some other small jobs. We would also like to talk to someone about the possibility of putting in a heat pump (for cooling reasons so far as the house is extremely hot and sunny, and we have heating sorted).\r\n\r\nThanks\r\nRebecca',''),(6524,1,1638,'5','google search, good reviews',''),(6525,1,1639,'6','Jody Hawthorne',''),(6526,1,1639,'2','05.44.27.44.43',''),(6527,1,1639,'3','jody.hawthorne@gmail.com',''),(6528,1,1639,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(6529,1,1640,'6','Eric Jones',''),(6530,1,1640,'2','555-555-1212',''),(6531,1,1640,'3','ericjonesmyemail@gmail.com',''),(6532,1,1640,'4','Dear juiceelectrical.co.nz Owner.\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(6533,1,1641,'6','Marshall Fennell',''),(6534,1,1641,'2','(08) 9084 5056',''),(6535,1,1641,'3','fennell.marshall40@hotmail.com',''),(6536,1,1641,'4','↳ Plan Content ↳ Track QA & Competitors ↳ Create Flows\r\n\r\nAutomatically generate beautiful visual sitemaps + high-resolution screenshots of any public or private website, making it fast and easy to perform in-depth site audits for UI, UX, SEO, and marketing research.\r\n\r\nSimply enter a URL and get a thumbnail-based visual architecture of the entire site.\r\n\r\nhttps://VisualSitemaps.com/?gr_pk=3Q8R&gr_uid=O6L8',''),(6537,1,1642,'6','Michael Davis',''),(6538,1,1642,'2','06-72680946',''),(6539,1,1642,'3','rapidleads360@gmail.com',''),(6540,1,1642,'4','Hello,\r\n\r\nGet your free Sales Funnel Guide for Success now!\r\n\r\nhttp://ugyl.ink/sales-funnel-success\r\n\r\n Robert Johnson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving from our communications going forward, simply click the link at http://ugyl.ink/optoutone',''),(6541,1,1643,'6','Benjamin Wright',''),(6542,1,1643,'2','052 709 52 99',''),(6543,1,1643,'3','benjamin.wright@gmail.com',''),(6544,1,1643,'4','Hey,\r\n\r\nDo you participate in online gambling at casinos? \r\n\r\nIf so....Say goodbye to waiting forever for your winnings!\r\nExperience the thrill of INSTANT cashouts at the very best online casinos!\r\n\r\nWelcome Bonus Offer\r\nGet $500 or 5BTC\r\n+ 180 Free Spins\r\n\r\nhttps://gamblerstation.com/?page_id=183\r\n\r\nThank you and Good Luck,\r\n\r\nBenjamin',''),(6545,1,1644,'6','Jayden Marcello',''),(6546,1,1644,'2','06-85911307',''),(6547,1,1644,'3','marcello.jayden49@gmail.com',''),(6548,1,1644,'4','Hey, there!\r\n\r\nMy 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\r\n\r\nGreat Day!',''),(6549,1,1645,'6','Money Maker',''),(6550,1,1645,'2','06-10236191',''),(6551,1,1645,'3','peter@notivv.site',''),(6552,1,1645,'4','Dear owner of juiceelectrical.co.nz,\r\n\r\n\r\nDid you know that there may be up to $10,000 in free advertising credits available for your business? \r\n\r\nIn short, advertisers create incentives and bonuses for small and medium sized businesses... \r\n\r\nLeveraging these opportunities will complement your marketing strategy and maximize your reach. \r\n\r\nWould you be interested in receiving a free report detailing various free advertising opportunities? \r\n\r\nPlease let me know if this interests you, and I\'ll reply with the report. \r\n\r\nBest regards,\r\n \r\nPeter\r\n\r\n\r\nP.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.',''),(6553,1,1646,'6','Susan Bradley',''),(6554,1,1646,'2','0275234700',''),(6555,1,1646,'3','gsbradley@xtra.co.nz',''),(6556,1,1646,'4','Hi could someone come out please to quote for removing the current heat, light, fans in two bathrooms and replacing with a new more streamlined LED models? Address is 158 Lowes Road in Rolleston.',''),(6557,1,1646,'5','Used before',''),(6558,1,1647,'6','Paulina Ayres',''),(6559,1,1647,'2','(02) 8210 7195',''),(6560,1,1647,'3','paulina.ayres63@gmail.com',''),(6561,1,1647,'4','New tech could give Chatgpt a run for its money. It turns your Youtube videos into video games..keeps people engaged to watch every second. You can even reward them for watching the whole video and they give you their email to get the reward ;) As seen on CBS, NBC, FOX, and ABC. \r\n\r\nSend me an email or skype message below to see if you qualify for a free GAMIFICATION of your video.\r\n\r\nMike\r\nemail: gamifyvideo@gmail.com\r\nskype: live:.cid.d347be37995c0a8d',''),(6562,1,1648,'6','Amy Rox',''),(6563,1,1648,'3','amyamycorr@yahoo.com',''),(6564,1,1648,'4','Hello. How are you?',''),(6565,1,1649,'6','Manuel McAlroy',''),(6566,1,1649,'2','0383 3764847',''),(6567,1,1649,'3','robot.savant@gmail.com',''),(6568,1,1649,'4','Find out here: https://the-missed-call.com/calculator\r\n\r\nBest regards,\r\nManuel\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n116 Agnes Rd, Ste 200\r\nKnoxville, TN 37919\r\n\r\nTo Opt Out reply go here: www./the-missed-call.com/opt-out\r\nor reply UNSUBSCRIBE in subject line\r\n\r\n\r\njuiceelectrical.co.nz',''),(6569,1,1650,'6','Antonetta Glenn',''),(6570,1,1650,'2','0350 5478590',''),(6571,1,1650,'3','glenn.antonetta11@hotmail.com',''),(6572,1,1650,'4','Hey,\r\n\r\nIf you\'re looking to set up a woodworking shop, you\'ve got to check out this video right now: https://bit.ly/3wEhBX8\r\n\r\nIn Ralph\'s free presentation, he\'ll reveal the 3 most common mistakes when setting up shop and how YOU can avoid them!\r\n \r\nAnd it doesn\'t matter if you have no money, tools or space to set up a shop.\r\n\r\nBecause 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...)\r\n\r\nYou\'ll also discover EXACTLY how to setup a fully functioning workshop for under $1000...even if you do not have a large space.\r\n\r\nWatch the free video presentation here >> https://bit.ly/3wEhBX8\r\n\r\nTo your perfect shop,\r\n\r\nDennis\r\n\r\nP.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!',''),(6573,1,1651,'6','Alenapa',''),(6574,1,1651,'2','89348475364',''),(6575,1,1651,'3','alenapa@nerddigi.com',''),(6576,1,1651,'4','Hеllоǃ\r\nРerhapѕ mу mеѕѕаgе іѕ too ѕрeсifіс.\r\nВut my oldеr ѕister found a wоndеrful man hеre and thеу havе a great rеlаtiоnѕhіp, but what about mе?\r\nΙ am 27 уearѕ оld, Аlena, frоm thе Сzech Reрublіс, know Englіѕh languаge аlѕо\r\nАnd... better to ѕаy it immеdіatеlу. I am biseхuаl. Ι am nоt ϳeаlouѕ of anothеr womаn... еsреcіаllу if wе mаkе lоve togеther.\r\nАh yеs, Ι сook vеry tаѕty! and Ι lovе not only coоk ;))\r\nΙm real girl аnd loоking fоr ѕerіous and hot relatіonshір...\r\nАnуwaу, yоu саn fіnd my рrоfіle hеre: http://acesse.dev/IUZsx',''),(6577,1,1651,'5','Nokia',''),(6578,1,1652,'6','Priscilla Marcus',''),(6579,1,1652,'2','88 856 43 39',''),(6580,1,1652,'3','priscilla.marcus@yahoo.com',''),(6581,1,1652,'4','Grab 16,000 woodworking plans here (Open Now): https://bit.ly/fr5t3de5y7u\r\n\r\nHere is something you\'ll absolutely love if you\'re a woodworker. \r\n\r\nGet access to 16,000 woodworking plans >> https://bit.ly/fr5t3de5y7u\r\n\r\n \r\nYou can get instant access to over *16,000* woodworking projects in the next 5 minutes or less..\r\n\r\nYou got to check out Ted\'s video now: https://bit.ly/fr5t3de5y7u\r\n\r\nTed has spent years putting together \"Earth\'s largest collection of woodworking plans!\"\r\n\r\nI\'m talking about 16,000 \"done-for-you\" plans with STEP-BY- STEP instructions, photos and diagrams to make every project laughably easy...\r\n\r\nAnd the best part is, it doesn\'t matter if you don\'t have a large workshop or expensive tools!\r\n\r\nGet access to TedsWoodworking now >> https://bit.ly/fr5t3de5y7u\r\n\r\nYou 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.\r\n\r\nYou can be going through all the plans in just a few minutes from now: https://bit.ly/fr5t3de5y7u\r\n\r\nExperience the joy.. the satisfaction, to know with 100% certainty that your project will turn out exactly the way you want it to look.\r\n\r\nIt\'s an incredible feeling… \r\n...being able to wake up on a Saturday morning and get to work on your project with absolute confidence it will turn out right. \r\n\r\nWith no strange gut feeling you’ll make a mistake or you won’t finish what you start... \r\n\r\nThat\'s the way woodworking is supposed to be.\r\n\r\nClick here to take a look at his plans: https://bit.ly/fr5t3de5y7u\r\n\r\n\r\nTHIS IS A TIME-LIMITED OFFER\r\nTed is running a time limited \"launch discount\" and the complete package of plans is 77% off the regular price: https://bit.ly/fr5t3de5y7u\r\n\r\nThis 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.\r\n\r\nSo grab your discount while it lasts...\r\n\r\nDon\'t miss out on this.\r\n\r\nHave a great day and talk soon.\r\n\r\nP.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',''),(6582,1,1653,'6','Columbus Sayers',''),(6583,1,1653,'2','06-36597586',''),(6584,1,1653,'3','sayers.columbus81@googlemail.com',''),(6585,1,1653,'4','Hi there,\r\n\r\nStruggling to keep up with video content for your social media? \r\n\r\nIn today\'s digital world, videos are crucial for business growth, engagement, and attention-grabbing. But constantly churning out videos is no easy feat.\r\n\r\nEnter InVideo – your ultimate AI-powered video generation and editing platform, like having ChatGPT for Videos!\r\n\r\nSimply type in your topic, and InVideo\'s AI takes over, generating scripts, crafting scenes, adding voiceovers, and fine-tuning your video to perfection. Plus, with over 5000 pre-made templates, tailored for various industries like real estate, agencies, and education, you\'re all set.\r\n\r\nReady to experience remarkable business growth? Try InVideo now for FREE!\r\n\r\nVisit https://invideo.sjv.io/EKjg7X to get started today!\r\n\r\nRegards, \r\nCraig\r\n ',''),(6586,1,1654,'6','Bernie Amadio',''),(6587,1,1654,'2','0372 4571589',''),(6588,1,1654,'3','bernie.amadio@gmail.com',''),(6589,1,1654,'4','Wealthy Credit Limited(WCL) and investment is the one-stop solution for numerous types of lending solutions. The company is managed by a team of committed professionals. They have a team of expert loan counselors. Moreover, They offer end-to-end services to clients with ease. The team will completely manage the entire borrowing process on behalf of the clients.\r\n\r\nThey are the best in the world, they also give funding meeting face to face.\r\n\r\nFeel free to follow up and contact them for more details;\r\n\r\nCalls : +852 300 16439\r\nEmail : info@fastcapitalhk.com',''),(6590,1,1655,'6','Jesse Astudillo',''),(6591,1,1655,'2','0369 8888195',''),(6592,1,1655,'3','jesse.astudillo@gmail.com',''),(6593,1,1655,'4','Do you want to profit in 2024?\r\n\r\nYou have infinite options:\r\n\r\nAffiliate marketing... writing content... build your own app... become an influencer...\r\n\r\nIn all the years I\'ve been online, I\'ve tried ALL of these methods (and 100s more)\r\n\r\nBut, millions later - there\'s ONE method I recommend - above all others:\r\n\r\nSelling your own digital product.\r\n\r\nAnd more specifically...\r\n\r\nSelling your own software product, in the Internet marketing niche, and promoting it with affiliate traffic.\r\n\r\nNow...\r\n\r\nThat sounds eerily specific - and it is. Because...\r\n\r\nI shouldn\'t need to \"convince\" you this method works.\r\n\r\nChances are you got on this list because you at some point bought a marketing software!\r\n\r\nThe fact you\'re reading this is proof that this method works.\r\n\r\nAnd... how many marketing tools have you bought to get here?\r\n\r\nBut don\'t think yours is a unique situation...\r\n\r\nEvery week millions buy marketing products in this same way.\r\n\r\nYou\'ve probably worked this out a long time ago... you already know it\'s a billion-dollar business...\r\n\r\nBut, until now, you might have thought:\r\n\r\n\"yeah but there\'s no way I could do that, so I\'ll just look at the other methods out there...\"\r\n\r\nMaybe you concluded:\r\n\r\n• You can\'t create your own software products\r\n• You don\'t know any big affiliates who would promote you\r\n• There\'s no way you could create a professional sales website\r\n• You simply could never afford a $5k copywriter to write a script\r\n• Nor can you do all the \"little\" jobs like logo creation, ecovers etc\r\n\r\nAnd most of all you probably decided...\r\n\r\n\"I would love to have my own legit, unique software business... but just don\'t know how to put it all together\"\r\n\r\nWell, guess what...\r\n\r\nI\'ve just come across a $20 million marketer who automated and simplified all these steps.\r\n\r\nHow?\r\n\r\nBy REMIXING what other six-figure marketers are doing.\r\n\r\nAnd then automated this entire process!\r\n\r\nThis marketer\'s name is CHRIS, and...\r\n\r\nThis is something he\'s been working on for over 2 years!\r\n\r\nIn fact, he tried to automate this #1 method... for over a decade...\r\n\r\nBut it\'s such a big, hairy problem, that he just couldn\'t crack it... until now.\r\n\r\nAnd, as of today, it\'s here!\r\n\r\nNow, I can say that, for the first time ever, anyone can tap into the ultimate business model on the planet:\r\n\r\nSelling your own Internet marketing software.\r\n\r\nOK, so here\'s the score...\r\n\r\nGo see yourself:\r\n\r\n==> https://bit.ly/3wBpUDq\r\n\r\nYou won\'t find a better solution for you to plug into the #1 business on the planet.\r\n\r\nOK, enough talk.\r\n\r\nIf you\'re at all curious about what he\'s up to, then hit this link and watch the intro video...\r\n\r\nAt the very least, it will show you some information that no-one has disclosed before.\r\n\r\nOK, here\'s that link:\r\n\r\nClick Here \r\n\r\n==> https://bit.ly/3wBpUDq\r\n\r\nThanks\r\n\r\nP.S. This offer is running for the last few weeks of February.\r\n\r\nThen early March Chris is going to increase the price.\r\n\r\nHe threw everything at this, including the kitchen sink...\r\n\r\nHe spent $200k+ to make this software for you.\r\n\r\nThat\'s the good news. The bad news? It\'s due a price increase.\r\n\r\nNo joke. Go here to see what I mean...\r\n\r\n==> https://bit.ly/3wBpUDq',''),(6594,1,1656,'6','Georgeicort',''),(6595,1,1656,'2','85829864649',''),(6596,1,1656,'3','georgeTop@gmail.com',''),(6597,1,1656,'4','<Insane>Hack] Unique A.I. App Makes Us $635/Day \r\n \r\nhttps://www.youtube.com/watch?v=z0aiLF3Sz7E',''),(6598,1,1656,'5','AliExpress',''),(6599,1,1657,'6','Phillipp Stopford',''),(6600,1,1657,'2','237-797-3662',''),(6601,1,1657,'3','phillipp.stopford@gmail.com',''),(6602,1,1657,'4','Hey hey!\r\n\r\nAre you aware of the story circulated about juiceelectrical.co.nz that people are sharing? What\'s the story? How do you feel about an discussion regarding this news?\r\n\r\nlook at the published post here\r\n\r\nhttps://ibit.ly/let-us-feature-your-business-46 \r\n\r\nPlease contact me at your earliest convenience after you\'ve reviewed the above.\r\n\r\n\r\nAll the best,\r\nPhillipp',''),(6603,1,1658,'6','Danielle Simpson',''),(6604,1,1658,'2','03.56.97.90.28',''),(6605,1,1658,'3','simpsondanielle800@gmail.com',''),(6606,1,1658,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll 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.\r\n\r\nThey 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.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nDanielle',''),(6607,1,1659,'6','VictoriaTece',''),(6608,1,1659,'2','82624729435',''),(6609,1,1659,'3','victoriaTece@myndsnax.com',''),(6610,1,1659,'4','Ніǃ\r\nΙ аpplаud womеn whо hаvе thе courаgе to еnϳoy thе lovе оf many women аnd сhооsе the onе whо wіll bе her beѕt frіend during the bumpу and crаzy thіng сalled lіfe.\r\nΙ wаntеd tо be thаt friеnd, not ϳuѕt thе stаble, rеlіablе, boring housеwifе оf an ordinarу marriеd couplе.\r\nΙ am 23 уeаrs old, Viсtоrіа, frоm Dеnmаrk.\r\nMy profilе is here: http://acesse.dev/6gaEk',''),(6611,1,1659,'5','Apple',''),(6612,1,1660,'6','Willson Pecker',''),(6613,1,1660,'2','01.48.59.11.43',''),(6614,1,1660,'3','willson.pecker@gmail.com',''),(6615,1,1660,'4','(just a couple of days from now)\r\n\r\n\r\nWorking from home is becoming increasingly popular. \r\n\r\nWith your computer and a little training, you could make some bucks from the comfort of your home. \r\n\r\nAnd you can speed up the arrival of your initial paycheck.\r\n\r\n\r\nClick here if you are interested-> https://700561pdp8kzkw3kr5s-wl33xm.hop.clickbank.net\r\n\r\nIf you are one of those eager to start a different stage in their \r\n\r\nlives and make more bucks while working in your spare time, \r\n\r\nthis job might suit you. With minimal effort and no prior experience, \r\n\r\nyou could gain the same day you apply.\r\n\r\n\r\nTake advantage of this out - grab this and begin right away. \r\n\r\nConfirm your interest by clicking the button below, and you can see that\r\n\r\nthe first payment will arrive in as little as a couple of days.\r\n\r\n\r\n\r\nRegards,\r\nWillson\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe reply with the word unsubscribe in the subject line to fullwebsiteaudit@gmail.com',''),(6616,1,1661,'6','Steve Zuwala',''),(6617,1,1661,'2','(03) 9742 7199',''),(6618,1,1661,'3','stevezuwala@musicmail.xyz',''),(6619,1,1661,'4','Leaving a note to let you know I was here!\r\ncontinued blessings!\r\n\r\nSteve Zuwala\r\nCounry Music Artist\r\nBMI|NSAI|GMA|CMA\r\nwww.SteveZuwala.com',''),(6620,1,1662,'6','Natajer',''),(6621,1,1662,'2','82175763515',''),(6622,1,1662,'3','woodthighgire1988@gmail.com',''),(6623,1,1662,'4','I am looking for sex, but do you want? Come in here https://lovevoyager.page.link/6BG2',''),(6624,1,1662,'5','Google',''),(6625,1,1663,'6','Scotty Frazer',''),(6626,1,1663,'2','0335 1879803',''),(6627,1,1663,'3','scotty.frazer@gmail.com',''),(6628,1,1663,'4','Hi!\r\n\r\nIf 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!\r\n\r\nCheck here: https://bit.ly/49PbgXb\r\n\r\nBecause 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. \r\n\r\nShe is now 149lbs and looks amazing!\r\n\r\nRead her story below! \r\n \r\n\"Hi, I’m Linda and I’m 56 years old. \r\n\r\nI 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. \r\n\r\nAnyway, since starting a family 20 years ago I’ve struggled with my weight.\r\n\r\nI knew having a child would leave me with a few extra pounds…\r\n\r\nBut 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... \r\n\r\nIt 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...\r\n\r\nGiven the less-than-active lifestyle I had, it shouldn’t have been a big surprise.\r\n\r\nBut the news made me really scared of course.\r\n\r\nAnd when I thought about all the health problems it could lead to, I became terrified.\r\n\r\nI started making small changes: reducing my portion size, trying to cut out the snacks, and even tried a few workouts.\r\n\r\nBut when the current global situation came along, I got so stressed and worried I began to comfort eat.\r\n\r\nI 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.\r\n\r\nPlus, what else could I do?\r\n\r\nGyms were closed, and I never enjoyed working out in the park as everyone was always staring at me…\r\n\r\nA 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!\r\n\r\nBut 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. \r\n\r\nSo, I decided to get the recipe and start drinking a few cups of tea every day!\r\n\r\nGo Here To Get The Costa Rican Tea Recipe & Lose 6Lbs A Week!\r\n\r\nBut 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.\r\n\r\nAnd that’s exactly what I did!\r\n\r\nThe first thing I noticed was the fact that I became full of energy and I was able to control my urges to comfort eat. \r\n\r\nIn fact, after drinking the tea in the morning, I was not hungry anymore. \r\n\r\nIn 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. \r\n\r\nHaving 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.\r\n\r\nI continued drinking a few cups of tea every day and I decided to start eating healthier.\r\n\r\nInstead of pizza I went for grilled chicken with some vegetables, and so on... and after 10 weeks I had lost 50 pounds. \r\n\r\nI was feeling amazing, plus I was slowly getting toned as well.\r\n\r\nIn the next 30 days I lost an additional 10 pounds and my body completely changed as I started to develop an attractive shape. \r\n\r\nI really think everyone should try the Costa Rican tea because it was a huge help for me!\"\r\n\r\nGo Here To Get The Costa Rican Tea Recipe & Lose 6Lbs A Week!\r\n\r\nhttps://bit.ly/49PbgXb\r\n\r\nTo your best health!',''),(6629,1,1664,'6','Harry Mocatta',''),(6630,1,1664,'2','06-54695652',''),(6631,1,1664,'3','harry.mocatta@gmail.com',''),(6632,1,1664,'4','Hi,\r\n\r\nLifetime deal, best email cold outreach and marketing tool\r\n\r\nSet up drip campaigns using industry-specific templates to stay top-of-inbox with prospects who haven’t responded yet.\r\n\r\nStart using AI-powered smart campaigns to automate every step of your email marketing and instantly scale your cold outreach.\r\n\r\nEmail sequences stopped on replies.\r\n\r\nBoyth cold outreach and transactional emails.\r\n\r\n- integrates with Shopify, BigCommerce, and WooCommerce\r\n- set up welcome, post-purchase, and abandon cart flows, anything\r\n- huge limits\r\n\r\nLink: https://appsumo.8odi.net/DKGKQb',''),(6633,1,1665,'6','Robert Smith',''),(6634,1,1665,'2','22-60-54-27',''),(6635,1,1665,'3','rapidleads360@gmail.com',''),(6636,1,1665,'4','Hello,\r\n\r\nGet your free Sales Funnel Guide for Success now!\r\n\r\nhttp://ugyl.ink/sales-funnel-success\r\n\r\n Joseph Brown \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo unsubscribe from our communications from us, simply click the link at http://ugyl.ink/optoutone',''),(6637,1,1666,'6','Andy Au-Yeung',''),(6638,1,1666,'2','0212685919',''),(6639,1,1666,'3','aauyeungnz@gmail.com',''),(6640,1,1666,'4','Hi Team,\r\n\r\nHope you are all well and had a nice weekend. We are looking for a quote to add some power sockets to our bedrooms (approximately 5-6 sockets in total), replace a bathroom extractor fan & heat lamp unit, and also to check our two heat pumps to see if they require servicing. Is this a job that you would be interested in providing a quote on? Best contact method would be email as I am usually unable to take a call. Thank you!\r\n\r\nKind regards,\r\n\r\nAndy',''),(6641,1,1666,'5','A friend who is having some electrical work done currently by your team.',''),(6642,1,1667,'6','Santiago Poole',''),(6643,1,1667,'2','0612-3667438',''),(6644,1,1667,'3','poole.santiago@outlook.com',''),(6645,1,1667,'4','Turn any idea or content to video, instantly\r\n\r\nYour complete video solution in one AI tool\r\n\r\nUse the full power of video to grow your brand\r\n\r\ninvideo.sjv.io/m5y1Qe',''),(6646,1,1668,'6','Jayne Mcmurdo',''),(6647,1,1668,'2','0276055698',''),(6648,1,1668,'3','jaynemcmurdo28@gmail.com',''),(6649,1,1668,'4','I\'m wanting a plug and switch put onto a 50w 220v IP66 UV floodlight',''),(6650,1,1668,'5','Online servh',''),(6651,1,1669,'6','Avis Hay',''),(6652,1,1669,'2','021 622 74 78',''),(6653,1,1669,'3','hay.avis@googlemail.com',''),(6654,1,1669,'4','Hey,\r\n\r\nIf you\'re looking to set up a woodworking shop, you\'ve got to check out this video right now: https://bit.ly/43bvWH7\r\n\r\nIn Ralph\'s free presentation, he\'ll reveal the 3 most common mistakes when setting up shop and how YOU can avoid them!\r\n \r\nAnd it doesn\'t matter if you have no money, tools or space to set up a shop.\r\n\r\nBecause 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...)\r\n\r\nYou\'ll also discover EXACTLY how to setup a fully functioning workshop for under $1000...even if you do not have a large space.\r\n\r\nWatch the free video presentation here >> https://bit.ly/43bvWH7\r\n\r\nTo your perfect shop,\r\n\r\nDennis\r\n\r\nP.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!',''),(6655,1,1670,'6','Johnson Langdon',''),(6656,1,1670,'3','johnson.langdon@gmail.com',''),(6657,1,1670,'4','Hey, \r\n\r\nEvery business owner needs ultra fast loading websites to convert random website visitors to lifetime happy customers.\r\n\r\nBut,\r\n\r\nFinding a suitable hosting technology that gives ultra fast performance without charging a fortune is a tough nut to crack.\r\n\r\nNow, \r\n\r\nIf you too faced this issue,\r\n\r\nIt’s time to take a breather as we present…\r\n\r\nNever Seen Before Technology That Hosts Unlimited WordPress Websites & Domains on Most Reliable, Blazing Fast Ultraport Servers for Life For A Low, One Time Price.\r\n\r\nCheck it now: https://bit.ly/3Tgh6M0\r\n\r\nUsing WP Host, \r\n\r\nAnyone Can Save Thousands Of Dollars That Expensive Third Party Hosting Platforms Charge.\r\n\r\nHere are some of its benefits:\r\n\r\n- Host & Market UNLIMITED WordPress Websites & Domains On The Most Reliable Ultraport Servers On The Planet\r\n- Get UNLIMITED Bandwidth To Get Blazing Fast Load Times & Manage High Traffic Volume At No Extra Or Monthly Cost \r\n- Get 100s Of Premium WP Themes & Plugins Without Paying A Cent Extra\r\n- Free End-To-End SSL Encryption To Ensure 100% Website & Data Safety\r\n- Get Free Website Migration To Migrate Any Existing Website To WP Host Without Any Downtime \r\n- One-Click WordPress Installer To Get New Sites Live In Minutes \r\n- Enhanced DDOS Protection To Disarm Potential Hackers & Threats\r\n- Enjoy 100% Uptime Guarantee, Minimal Latency And Lightning-Fast Speed At No Extra Cost\r\n- Stop Paying Through The Nose On Money Sucking Hosting Companies Forever\r\n- Detect And Remove Harmful Files Completely With A Malware Scanner\r\n- Included WordPress Installer With Sophisticated Control Panel\r\n- Find Out How Even Newbies Are Saving Anywhere Between $975 To $18945 Monthly From Expensive Hosting Platforms Using Our Technology: https://bit.ly/3Tgh6M0\r\n- Proprietary Tech Helps Join Thousands Of Marketers Who’re Using WordPress Hosting To Attract Hordes Of Customers & Make Billions Of Dollars \r\n\r\nJust imagine the kind of growth prospects in store without any huge investment, third party dependency or experience?\r\n\r\nIt’s all going to soon become your reality.\r\n\r\nGet WP Host At Low Earlybird Price Here: https://bit.ly/3Tgh6M0\r\n\r\nSo, I highly recommend you to get your hands on this like all serious & top marketers do.\r\n\r\nI can bet there’s nothing easier and smarter than this. \r\n\r\nBTW if you get something good, hit me up and I’ll be up to it right away?\r\n\r\nGet WP Host With Cool Bonuses: https://bit.ly/3Tgh6M0\r\n\r\nLet’s Succeed Together,\r\n\r\nJohn\r\n\r\nP.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',''),(6658,1,1671,'6','Tosha Clegg',''),(6659,1,1671,'2','(07) 4070 9036',''),(6660,1,1671,'3','tosha.clegg53@yahoo.com',''),(6661,1,1671,'4','Hello! My name is Tosha Clegg. \r\n \r\nBe Unique! \r\n \r\nUse the site Tiara Galiano EU whenever you need Leggings, Lingerie, Swimwear or Socks. \r\n \r\nNow everything is discounted! \r\n \r\nFollow the link and use code \"VIP\" for an extra discount in Men\'s underwear: \r\n \r\nhttps://bit.ly/3RGzGMP \r\n \r\nRegards, Tosha Clegg',''),(6662,1,1672,'6','Sol Graber',''),(6663,1,1672,'2','(11) 3486-9563',''),(6664,1,1672,'3','graber.sol@gmail.com',''),(6665,1,1672,'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.\r\n\r\nWe 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.\r\n\r\nWhat\'s the Catch - excellent question - if you like the video we produce for you, all we need from you is 3 referrals.\r\n\r\nWhen you introduce them to us, they will get a 50% Discount from our retail pricing.\r\n\r\nGET YOUR NO-CHARGE VIDEO HERE:\r\nhttps://YourFreeReputationVideo.com\r\n\r\nThank You,\r\nMedia Relations',''),(6666,1,1673,'6','Jordan Ronalds',''),(6667,1,1673,'2','412-755-1302',''),(6668,1,1673,'3','jordan.ronalds@gmail.com',''),(6669,1,1673,'4','By far, the biggest mistake men make when they want to make a woman wet…\r\n\r\n\r\nIs thinking that LUSTING FOR YOU somehow comes from LIKING you.\r\n\r\n\r\nBut nothing could be further from the truth.\r\n\r\n\r\nYou see, whether or not a girl ‘likes’ you and approves of you…\r\n\r\n\r\nHas nothing to do with whether or not she wants to wrap her legs around you and draw you deep inside her.\r\n\r\n\r\nIn fact…\r\n\r\n\r\nWomen are more likely to fantasize about getting bent over and ravaged by a guy they don’t particularly “like” in the traditional sense.\r\n\r\n\r\nDiscover how to make her fantasize about getting pounded by you here\r\n\r\n\r\n==> https://cb0b7yrgodl5gkf5flilycvjqe.hop.clickbank.net \r\n\r\n\r\n\r\nThat’s because LUST and LIKING exist in different areas of her brain…\r\n\r\n\r\n“Liking” is generated in the rational, logical part of the brain…\r\n\r\n\r\nAnd lust is activated in the deeper, more primal, animal part of the brain…\r\n\r\n\r\nThe good news is…\r\n\r\n\r\nThat a woman’s primal, animal brain is much more powerful than her logical, reasonable one…\r\n\r\n\r\nAnd guys who know how to activate it…\r\n\r\n\r\nHave an insane amount of choice with women..\r\n\r\n\r\nHere’s how to activate the LUST part of her brain\r\n\r\n\r\nhttps://cb0b7yrgodl5gkf5flilycvjqe.hop.clickbank.net <== Watch now\r\n\r\n\r\n\r\n\r\nWhen you think about it, we men aren’t that different:\r\n\r\n\r\nI’m sure there’s been a girl you didn’t particularly “like” or connect with…\r\n\r\n\r\nBut you wouldn’t hesitate to slide into bed with her and tear her panties off.\r\n\r\n\r\nThe main difference between men’s and women’s brains…\r\n\r\n\r\nIs where a man’s primal lust is triggered by a woman’s physical appearance…\r\n\r\n\r\nA woman’s primal lust is triggered by the signals his body language gives off…\r\n\r\n\r\nThat’s why carrying yourself a certain way will make a woman squirm in her seat…\r\n\r\n\r\nIt’ll make her want to reach down and start touching herself…\r\n\r\n\r\nAnd she’ll be picturing your face as she crests over…\r\n\r\n\r\nLearn how it’s done in this short, instructional video: https://cb0b7yrgodl5gkf5flilycvjqe.hop.clickbank.net \r\n\r\n\r\nThank me later...\r\n\r\n\r\n-Jordan\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe reply with the word unsubscribe in the subject line and include your domain name to media.acquisition1@gmail.com',''),(6670,1,1674,'6','Justin Blakie',''),(6671,1,1674,'2','0211411705',''),(6672,1,1674,'3','justin.blakie@gmail.com',''),(6673,1,1674,'4','Hi, we are starting to look at installing solar for our home and wanted to have a chat with someone who can help us evaluate whether it would be right for us, and look at options. We receive your email newsletter and understand you work with partners to do this. Our address is 9 New Creek Mews, Rolleston. Can someone contact us please. Thanks.',''),(6674,1,1674,'5','Previous customer, receive enewsletter',''),(6675,1,1675,'6','Mike Gustman',''),(6676,1,1675,'2','87322952868',''),(6677,1,1675,'3','mikeHourrirm@gmail.com',''),(6678,1,1675,'4','If you are looking to rank your local business on Google Maps in a specific area, this service is for you. \r\n \r\nGoogle Map Stacking is a highly effective technique for ranking your GMB within a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\n \r\nThanks and Regards \r\nMike Mike Gustman\r\n \r\n \r\nPS: Want a comprehensive local plan that covers everything? \r\nhttps://www.speed-seo.net/product/local-seo-bundle/',''),(6679,1,1675,'5','Google',''),(6680,1,1676,'6','Amelia Brown',''),(6681,1,1676,'2','089 70 38 40',''),(6682,1,1676,'3','ameliabrown0325@gmail.com',''),(6683,1,1676,'4','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically. \r\n\r\n- We guarantee to gain you 700-1500+ subscribers per month.\r\n- People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nAmelia',''),(6684,1,1677,'6','Aaron Wright',''),(6685,1,1677,'2','0291-8284842',''),(6686,1,1677,'3','aaronwright@pacificwestinvestors.com',''),(6687,1,1677,'4','Hi,\r\n\r\nTake a moment.....How would $100k in Business Credit + 0% interest in 12 months... change your business & life?!...\r\n- Advertise on social media/ Hire a marketing company to help bring more sales\r\n- Hire more employees/ Upgrade computers, software, phones, systems etc/ Create more products ...\r\n\r\nYou\'re about to get a system that\'ll allow you to grow your business, have extra money to fall back on and allow you to fulfill your dreams! It’s FREE! \r\nhttps://cf.businesscreditworkshop.net/squeeze-page-2385222956?affiliate_id=4242733\r\n\r\nAaron Wright\r\nBusiness Credit Workshop\r\n458 Elizabeth Avenue, Suite 5104\r\nSomerset NJ 08873',''),(6688,1,1678,'6','Nila Tribolet',''),(6689,1,1678,'2','06-63104190',''),(6690,1,1678,'3','nila.tribolet@gmail.com',''),(6691,1,1678,'4','Hi,\r\n\r\nDo you require traffic for your website?\r\n\r\nWe can drive top-notch visitors to juiceelectrical.co.nz\r\n\r\nCheck it out here https://zwoops.com/CFP/\r\n\r\nCheers,\r\n\r\nNila',''),(6692,1,1679,'6','Bebe La Trobe',''),(6693,1,1679,'2','030 49 64 56',''),(6694,1,1679,'3','bebe.latrobe@hotmail.com',''),(6695,1,1679,'4','AI article writer with fact check. Autopublish with confidence.\r\n\r\nThis tool can generate over 30 types of content in over 110 languages, while ensuring factual accuracy with citations from trusted sources.\r\n\r\n- Lets you insert your own FAQs and offline materials as text to create a knowledge repository for your brand.\r\n\r\n- And just like your articles, you’ll be able to include in-text citations for this AI-generated content.\r\n\r\n- You’ll even be able to generate long-form, SEO-friendly content with relevant images, getting your posts to the top of the SERPs.\r\n\r\n- Fetch and re-write articles with 1 click\r\n\r\nFrom $39 Life time package: https://appsumo.8odi.net/ZQ5Qyg',''),(6696,1,1680,'6','Masonphync',''),(6697,1,1680,'2','82548788913',''),(6698,1,1680,'3','kaenquirynicholls@gmail.com',''),(6699,1,1680,'4','Hola, quería saber tu precio..',''),(6700,1,1680,'5','FBI',''),(6701,1,1681,'6','Veda Knoll',''),(6702,1,1681,'2','467 1409',''),(6703,1,1681,'3','knoll.veda@gmail.com',''),(6704,1,1681,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(6705,1,1682,'6','Barbara Hawk',''),(6706,1,1682,'2','0473 84 30 35',''),(6707,1,1682,'3','barbara.hawk@gmail.com',''),(6708,1,1682,'4','This short independent documentary has terrified christians across the globe…\r\n\r\nCheck the video: https://bit.ly/3wMOBfV\r\n\r\nBecause it exposes the terrifying reality of Artificial Intelligence...\r\n\r\nAnd its effect it will have on Christian society...\r\n\r\nThis is something darker and more sinister than the world has ever seen...\r\n\r\n>> Click Here Before The Video Is Taken Down Permanently: https://bit.ly/3wMOBfV',''),(6709,1,1683,'6','Leopoldo Huckstep',''),(6710,1,1683,'2','69 168 04 37',''),(6711,1,1683,'3','leopoldo.huckstep@gmail.com',''),(6712,1,1683,'4','Warning: This Is Disturbing! \r\n\r\n\r\nHealth industry, as you know it, won’t be the same…\r\n\r\nEven top doctors are STUNNED...\r\n \r\nThis amazing 5 second hack can change any person at astonishing\r\n\r\nrates in a matter of days. \r\n\r\nThe Pharmaceutical industry panicked when this video got leaked and\r\n\r\nthey’ve already gathered their army of lawyers to take this down!\r\n\r\nFind out more here so you can start using it right now: https://bit.ly/4a0ELWl\r\n\r\n\r\nThey’ve tried to keep this a secret but everybody who’s struggled\r\n\r\nwith brain problem has the right to see this. Now the truth is coming out to light.\r\n\r\nThere\'s never been a better time for such a method to rise.\r\n\r\n \r\n\r\nClick to See the Best Way to Repair Your Brain Function:\r\n\r\nhttps://bit.ly/4a0ELWl\r\n\r\nOnce you read the full story you’ll be amazed…\r\n\r\nAnd I guarantee you’ll be sharing this incredible tale.\r\n\r\nWith your friends, family and loved ones…\r\n\r\n \r\nIt’s That Unbelievable!\r\n\r\nCheck now: https://bit.ly/4a0ELWl',''),(6713,1,1684,'6','Effie Rounsevell',''),(6714,1,1684,'2','0221 39 85 95',''),(6715,1,1684,'3','effie.rounsevell@gmail.com',''),(6716,1,1684,'4','Did you hear about the unusual rice method that liquifies fat cells as you sleep?\r\n\r\nClinical 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!\r\n\r\nBefore you go to sleep tonight, try it for yourself...\r\n\r\n>>> 1 Unusual Rice Method That Liquifies Fat As You Sleep: https://bit.ly/3V21Jb5\r\n\r\nDon\'t waste another second on:\r\n\r\nX--- Fad diets that are impossible to enjoy...\r\nX--- Gym memberships or fitness apps...\r\nX--- Calorie counting\r\n\r\nInstead, just try this one easy fat-dissolving rice method before you sleep tonight and drop lbs of stubborn fat by morning.\r\n\r\nYou need to check it, it is too easy: https://bit.ly/3V21Jb5',''),(6717,1,1685,'6','Edwin Repass',''),(6718,1,1685,'2','06-32751064',''),(6719,1,1685,'3','edwin.repass@gmail.com',''),(6720,1,1685,'4','Are you okay running your business without much funds? This could slow down growth and delay returns on your business.\r\n\r\nNow 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.\r\n\r\nTake 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.\r\n\r\nGive us a call on:\r\n+852 3008 8373, \r\nor write us at:\r\ninfo@capitalfund-hk.com',''),(6721,1,1686,'6','Joseph Thompson',''),(6722,1,1686,'2','0475 43 66 05',''),(6723,1,1686,'3','rapidleads360@gmail.com',''),(6724,1,1686,'4','Hello There,\r\n\r\nGet your free Sales Funnel Guide for Success now!\r\n\r\nhttp://ugyl.ink/sales-funnel-success\r\n\r\n James Jones \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nTo stop receiving from our communications in the future, simply click the link at http://ugyl.ink/optoutone',''),(6725,1,1687,'6','Mike Bishop',''),(6726,1,1687,'2','85661447277',''),(6727,1,1687,'3','mikeinquiff@gmail.com',''),(6728,1,1687,'4','Hi there, \r\n \r\nI have reviewed your domain in MOZ and have observed that you may benefit from an increase in authority. \r\n \r\nOur solution guarantees you a high-quality domain authority score within a period of three months. This will increase your organic visibility and strengthen your website authority, thus making it stronger against Google updates. \r\n \r\nCheck out our deals for more details. \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Ahrefs Domain Rating \r\nhttps://www.monkeydigital.co/ahrefs-seo/ \r\n \r\n \r\nThanks and regards \r\nMike Bishop',''),(6729,1,1687,'5','Google',''),(6730,1,1688,'6','Nick Smith',''),(6731,1,1688,'2','+64211049563',''),(6732,1,1688,'3','nicholas.smith00@gmail.com',''),(6733,1,1688,'4','Hello. A couple of years ago you installed Shelly smart light switches in my kitchen and lounge switches. I\'ve been having issues with the kitchen one recently. A few weeks ago it stopped responding in the app. I tried resetting it by flipping the fuse off/on and then flicking the light switch 10 times until it clicks a few times. That hasn\'t helped connect it again, but could still work manually. But this morning I get up and the switch doesn\'t work at all. It did after turning the fuse off and on. Could the shelly switch have failed and is causing issues with manual operation? Can someone come out and look at it? \r\n\r\nI also have an outside light that\'s not working I\'d like looked at at the same time. Thank you',''),(6734,1,1688,'5','Long time customer',''),(6735,1,1689,'6','Cheryl Hanna',''),(6736,1,1689,'2','391-297-1321',''),(6737,1,1689,'3','cheryl.hanna@yahoo.com',''),(6738,1,1689,'4','hi there!\r\n\r\nThe juiceelectrical.co.nz team got a significant mention in an article recently, did you come across it? I noticed it shared on my feed, attached is the article:\r\n\r\n\r\nhttps://ibit.ly/let-us-feature-your-business-52 \r\n\r\nRegardless, kudos, that\'s a significant accomplishment.\r\n\r\n\r\n\r\nAll the best and keep up the stellar work,\r\nCheryl',''),(6739,1,1690,'6','Hildred Hardeman',''),(6740,1,1690,'2','413 20 385',''),(6741,1,1690,'3','hildred.hardeman29@googlemail.com',''),(6742,1,1690,'4','Hello,\r\n\r\nOnline loans up to $5,000\r\n\r\nA personal loan can be the solution you are looking for.\r\n\r\nWhen looking to connect with a lender quickly, that is where we can help!\r\n\r\nWe partner with 100+ lenders. This means we could connect you with one of several lenders in our network.\r\n\r\nSimply go to https://cx2e.short.gy/GetCash\r\n\r\nThank you and have a good day,\r\n\r\nHildred',''),(6743,1,1691,'6','Aaron Trotter',''),(6744,1,1691,'2','727-860-3170',''),(6745,1,1691,'3','trotter.aaron@gmail.com',''),(6746,1,1691,'4','Imagine if you made $57k in the first week of December...\r\n\r\nMy buddy Chris is having weeks like that all the time - and...\r\n\r\nNow you can make 100% commissions, by copying him:\r\n\r\nClick Here - Software Made Him $57k In 7x Days (Here\'s How!)\r\n\r\n==> https://bit.ly/3wBpUDq\r\n\r\nAnd here\'s the crazy part.\r\n\r\nYou can just watch the video on this link...\r\n\r\nThen get 100% resell rights to this $57k software...\r\n\r\nPLUS 49x other tools! \r\n\r\nYou can of course use these tools yourself...\r\n\r\nSell them for 100% commissions...\r\n\r\nUse them to build a list...\r\n\r\nUse them as bonuses to sell affiliate programs...\r\n\r\nIN FACT, you can even \"rebrand\" them to launch your own marketing \"super brand\".\r\n\r\nChris actually calls this \"remixing\"\r\n\r\nBUT, I don\'t want to spoil anything.\r\n\r\nLet\'s just say his method is INGENIOUS!\r\n\r\nOK, OK, I\'ll let Chris explain what he\'s up to:\r\n\r\n==> https://bit.ly/3wBpUDq\r\n\r\nThanks,\r\n\r\nP.S. This site was created with his software.\r\n\r\nThis email template is inside the software.\r\n\r\nIn fact, all Chris\'s business is \"template\" driven.\r\n\r\nAnd now you can steal his templates (and \"remix\" them).\r\n\r\nLearn how here:\r\n\r\n==> https://bit.ly/3wBpUDq',''),(6747,1,1692,'6','Doug Creevy',''),(6748,1,1692,'2','0275346064',''),(6749,1,1692,'3','douglascreevy88@gmail.com',''),(6750,1,1692,'4','Hi, I am looking for a quote for a full rewire of a single story two bedroom house. The house has floor, roof access and the building is roughly 50 square meters.',''),(6751,1,1692,'5','Online',''),(6752,1,1693,'6','Nina Boyes',''),(6753,1,1693,'2','0272020544',''),(6754,1,1693,'3','neens73@gmail.com',''),(6755,1,1693,'4','Hello, we are looking for someone to:\r\n\r\n1) Replace some kitchen/study lights (5) with later model LEDs and to install 1-2 additional LEDs. \r\n2) Install some LED strip lighting above our kitchen bench (we have the driver kit just need to purchase the LED strip)\r\n3) Replace pendant lights in our lounge (3) and master bedroom (1) as the fittings have been burned out due to previous residents using the wrong wattage bulbs - we are unsure whether you can supply and fit these or whether we need to get some and you just fit? \r\n\r\nCan someone please call me?\r\nCheers, Nina',''),(6756,1,1693,'5','Saw an advert in our local newspaper',''),(6757,1,1694,'6','Matt BetterBunch',''),(6758,1,1694,'2','01.50.62.17.32',''),(6759,1,1694,'3','betterbunch@gmail.com',''),(6760,1,1694,'4','Hey Guys,\r\n\r\nIn light of rising marketing costs, we at Better Bunch are reaching out to online businesses to introduce our services. We specialize in helping you garner more Google reviews and enhance your online visibility. Follow us on Instagram and we\'ll follow back, reviewing your services as well. Dive into our resources for thriving in challenging times by visiting our website or connecting on Instagram. Our Instagram is https://www.instagram.com/betterbunch (we will happily follow your business back)\r\n\r\nBest,\r\nThe Better Bunch Team\r\nlinktr.ee/betterbunch\r\nhttps://betterbunch.com/',''),(6761,1,1695,'6','Jamey Banuelos',''),(6762,1,1695,'2','(03) 5307 4334',''),(6763,1,1695,'3','jamey.banuelos@gmail.com',''),(6764,1,1695,'4','We all know we shouldn't drink too much...\r\n\r\nEspecially when trying to lose weight.\r\n\r\nYet, the real reason is NOT because of the calories...\r\n\r\nIt\'ss because the entire fat-burning process depends on a healthy liver.\r\n\r\nFact is, too much alcohol can damage your liver and your metabolism.\r\n\r\nHowever, the remarkably powerful Mediterranean ritual below naturally protects and\r\nrapidly purifies your liver of EVERY alcohol...\r\n\r\nAllowing you to enjoy an extra drink or two while promoting fat loss at the same time.\r\n\r\nThat\'s why, if you\'re gonna drink, do this simple Mediterranean Ritual before hand\r\n(takes 30 seconds): https://bit.ly/3T21w5k',''),(6765,1,1696,'6','John Thompson',''),(6766,1,1696,'2','(77) 2467-5872',''),(6767,1,1696,'3','rapidleads360@gmail.com',''),(6768,1,1696,'4','Hello,\r\n\r\nGet your free Sales Funnel Guide for Success now!\r\n\r\nhttp://ugyl.ink/sales-funnel-success\r\n\r\n Thomas Anderson\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//Optout//\r\n\r\nIf you wish to unsubscribe from our communications going forward, simply click the link at http://ugyl.ink/optoutone',''),(6769,1,1697,'6','Vladimir Rotenberg',''),(6770,1,1697,'2','Nil',''),(6771,1,1697,'3','homemade262@gmail.com',''),(6772,1,1697,'4','Email:homemade262@gmail.com\r\n\r\nHello\r\nI Solicit your partnership to secure a portfolio Investment of $45m United states dollars on my behlaf , as well as partner,in the immediate supply of Petroleum products.I am presently indisposed to carry out any financial transaction owing to restrictions relating to the Russia /Ukraine war. I would appreciate if you have the capacity to handle this role Please revert to me for further details as this is of utmost critical importance.\r\nBest regards\r\nVladimir Rotenberg',''),(6773,1,1698,'6','EVEREST FINANCE CORPORATION',''),(6774,1,1698,'2','+971562646836',''),(6775,1,1698,'3','everestfinancecorp@gmail.com',''),(6776,1,1698,'4','Everest Finance Corporation is situated in the United Arab Emirates, Russia and the United Kingdom. It is a company that has financed so many projects and ventures all over the world. The corporation is financed by the Investment corporation of Dubai https://icd.gov.ae/ and The Arab investment Company of Saudi Arabia http://www.taic.com/ Both companies are financial arms of the rich oil state of Saudi and the economic nerve center of Dubai.\r\n\r\nEverest finance is therefore the conduit to which the 2 financial institutions finance and assist businessmen and Entrepreneurs around the globe and outside their oil rich states. To this end we have made remarkable progress as we have had valuable commendations from A rated companies around the globe.\r\n\r\nYou only need to have a good proposal to finance and an executive summary of your intentions for you to be eligible.\r\n\r\nYou can secure a non-collateral loan of up to $50 million united states dollars, with a repayment term of 10years. Our loans are given at an annual interest rate of 3% which is basically the lowest in the industry. You would not also go through the rigors of credit ratings and the bureaucracy of long approvals, as our process is timely.\r\n\r\nPresently the company offers only loan facilities of $5, 000,000.00 (Five Million Dollars for personal Loans) and $50, 000, 000. 00 (Fifty Million for Business Loans). These are the maximum amounts that can be given on both personal and business loans.\r\n\r\nWe do also have opportunity to recommend you to our Angel investors whom would only invest in projects above $50 million for a 3% Annual fee to us\r\n\r\nIf you feel inclined to what has been explained above then please visit our website on\r\n\r\nhttps://everestfinancecorp.com/contact-us/ and fill the online application form.\r\n\r\nPlease note that filling the application form is your first formal communication with Everest Finance Corporation. we would only be able to act on your behalf as soon as a customer service representative acknowledges receipt of your application.\r\n\r\nYou can also officially contact us on:\r\n\r\nPhone: +44 07899237850 (WhatsApp)\r\n\r\nBest Regards\r\n\r\nCredit Desk\r\n\r\nEverest Finance corporation',''),(6777,1,1699,'6','Stevendrync',''),(6778,1,1699,'2','86155742846',''),(6779,1,1699,'3','vinbon427@gmail.com',''),(6780,1,1699,'4','Top online casіos! \r\nGet Big bоnus for frее singup \r\n \r\nhttps://tinyurl.com/yeyuaehv',''),(6781,1,1699,'5','Apple',''),(6782,1,1700,'6','EVEREST FINANCE CORPORATION',''),(6783,1,1700,'2','+971562646836',''),(6784,1,1700,'3','everestfinancecorp@gmail.com',''),(6785,1,1700,'4','Everest Finance Corporation is situated in the United Arab Emirates, Russia and the United Kingdom. It is a company that has financed so many projects and ventures all over the world. The corporation is financed by the Investment corporation of Dubai https://icd.gov.ae/ and The Arab investment Company of Saudi Arabia http://www.taic.com/ Both companies are financial arms of the rich oil state of Saudi and the economic nerve center of Dubai.\r\n\r\nEverest finance is therefore the conduit to which the 2 financial institutions finance and assist businessmen and Entrepreneurs around the globe and outside their oil rich states. To this end we have made remarkable progress as we have had valuable commendations from A rated companies around the globe.\r\n\r\nYou only need to have a good proposal to finance and an executive summary of your intentions for you to be eligible.\r\n\r\nYou can secure a non-collateral loan of up to $50 million united states dollars, with a repayment term of 10years. Our loans are given at an annual interest rate of 3% which is basically the lowest in the industry. You would not also go through the rigors of credit ratings and the bureaucracy of long approvals, as our process is timely.\r\n\r\nPresently the company offers only loan facilities of $5, 000,000.00 (Five Million Dollars for personal Loans) and $50, 000, 000. 00 (Fifty Million for Business Loans). These are the maximum amounts that can be given on both personal and business loans.\r\n\r\nWe do also have opportunity to recommend you to our Angel investors whom would only invest in projects above $50 million for a 3% Annual fee to us\r\n\r\nIf you feel inclined to what has been explained above then please visit our website on\r\n\r\nhttps://everestfinancecorp.com/contact-us/ and fill the online application form.\r\n\r\nPlease note that filling the application form is your first formal communication with Everest Finance Corporation. we would only be able to act on your behalf as soon as a customer service representative acknowledges receipt of your application.\r\n\r\nYou can also officially contact us on:\r\n\r\nPhone: +44 07899237850 (WhatsApp)\r\n\r\nBest Regards\r\n\r\nCredit Desk\r\n\r\nEverest Finance corporation',''),(6786,1,1701,'6','Emilia Mais',''),(6787,1,1701,'2','78 150 23 44',''),(6788,1,1701,'3','mais.emilia@gmail.com',''),(6789,1,1701,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(6790,1,1702,'6','Ophelia Barber',''),(6791,1,1702,'2','(08) 9055 3199',''),(6792,1,1702,'3','ophelia.barber57@gmail.com',''),(6793,1,1702,'4','The shocking reality of AI… caught on camera.\r\n\r\nBig tech claims it’s nothing to worry about.\r\n\r\nThey say A does weird things for no apparent reason.\r\n\r\nBut I’m not convinced. And neither should you be.\r\n\r\nAI is part of something much bigger, and more sinister.\r\n\r\nA warning of the coming apocalypse.\r\n\r\nThey’ve been hiding the real purpose of AI from the public… And now it’s coming out…\r\n\r\nWe have no idea what AI will do to humanity in the future, yet the elites are racing forward to develop it.\r\n\r\nWe’ve prepared an urgent documentary to help you understand and prepare for the dangers of AI.\r\n\r\nDue to the rapid exponential growth of this technology, it becomes more serious with each passing day.\r\n\r\nIf you truly believe in God, and his biblical prophecies, I urge you to watch the video now.\r\n\r\nIt could be taken down at any moment.\r\n\r\nClick the link below to get access now:\r\n\r\nhttps://bit.ly/3wMOBfV',''),(6794,1,1703,'6','Amanda Bridgeford',''),(6795,1,1703,'2','86164383572',''),(6796,1,1703,'3','amanbridgeford@gmail.com',''),(6797,1,1703,'4','Hope this email finds you in good health. I have an exciting business opportunity I would like to discuss with you.It\'s an business opportunity you will benefit from. \r\n \r\nIf you’re interested email me at Amanda3@consultant.com or what’sapp +44 7988 939850 so I can send you more details or arrange a meeting to discuss \r\n \r\nLooking forward to your response. \r\n \r\nKind regards, \r\nAmanda Bridgeford \r\nHays Lane, London SE1 2QE. \r\n00447462574368',''),(6798,1,1703,'5','Google',''),(6799,1,1704,'6','Milo Glossop',''),(6800,1,1704,'2','799-275-5976',''),(6801,1,1704,'3','milo.glossop@icloud.com',''),(6802,1,1704,'4','Howdy!\r\n\r\nWe haven\'t spoken in a while, but I came across something online about juiceelectrical.co.nz and felt it necessary to reach out. \r\n\r\nIt appears like there\'s some rumors circulating that could be harmful to your reputation. \r\nBeing aware of how quickly rumors can spiral and hoping not you to be taken by surprise, I decided to notify you.\r\n\r\nHere\'s where I came across the info:\r\n\r\n\r\nhttps://ibit.ly/0VXR7 \r\n\r\nI\'m hoping it\'s all a mix-up, but it seemed prudent you should know!\r\n\r\nBest wishes,\r\nMilo',''),(6803,1,1705,'6','Norman Barrera',''),(6804,1,1705,'2','862-588-2753',''),(6805,1,1705,'3','barrera.norman86@gmail.com',''),(6806,1,1705,'4','https://bit.ly/2024ExponentialGrowth\r\n\r\nGreetings, we are sending this message to everyone in your local market that is in your industry as we are only allowed to work with a limited number of similar businesses. We are a national business growth research group that is testing a new AI-infused 7-stage exponential growth platform and we are seeking pilot project partners who will get the discounted benefits of our new offering.\r\n\r\nWe have a short video explaining our project and our offering here: https://bit.ly/2024ExponentialGrowth\r\n\r\nOnce we reach out limit of participants from your industry and local market, we will close this offering to others in your industry, so don\'t risk missing out.\r\n\r\nOur clients have used this information to grow by 300% during the pandemic and other uncertain economic periods.\r\n\r\nThank you for your time and engagement.\r\n\r\nGeoReferral AI',''),(6807,1,1706,'6','Wehan Roets',''),(6808,1,1706,'2','0223233987',''),(6809,1,1706,'3','wehan.roets@gmail.com',''),(6810,1,1706,'4','Hello\r\nI am interested in becoming a qualified electrician and would like to find out if you have any apprenticeship opportunities available within your company.\r\nLooking forward to your reply.\r\nWehan Roets',''),(6811,1,1706,'5','google search',''),(6812,1,1707,'6','Melina Clift',''),(6813,1,1707,'2','(17) 7440-8146',''),(6814,1,1707,'3','melina.clift@googlemail.com',''),(6815,1,1707,'4','Good day!\r\n\r\nAlthough hard alcohol like vodka, whisky, gin and tequila can increase belly fat...\r\n\r\nProminent scientists from Greece have found that one of the following red wines actually increases fat-burning when you drink it a certain way.\r\n\r\nBut which one? Is it...\r\n\r\n1. Cabernet Sauvignon\r\n2. Shiraz\r\n3. Merlot\r\n4. Malbec\r\n\r\nCheck here to see which one is: https://bit.ly/4a0hzaD\r\n\r\nHINT - 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.\r\n\r\nThat\'s why, if you\'re gonna drink wine AND lose weight fast, it should definitely be THIS.\r\n\r\nClick here now to find out which red wine boosts !\r\n\r\nhttps://bit.ly/4a0hzaD',''),(6816,1,1708,'6','Dan Farias',''),(6817,1,1708,'2','022 559 63 41',''),(6818,1,1708,'3','info@aileadstars.com',''),(6819,1,1708,'4','Hi,\r\n\r\nIf you need business financing fast, our fintech solution (2,000 Trust Pilot 5-Star reviews), analyzes the top 75+ lenders to find the perfect loan for YOUR business. Your personal concierge will generate three offers based on your needs with fast approvals & funding in 48 hours (no hard credit pull!). \r\nClick here to learn how easy it is: https://cli.re/145Qx4\r\n\r\nThanks!\r\nSteve',''),(6820,1,1709,'6','Theresa Smith',''),(6821,1,1709,'2','0676 715 18 52',''),(6822,1,1709,'3','ronda.merriam@gmail.com',''),(6823,1,1709,'4','Hello,\r\n\r\nDo you sometimes find yourself in a tug of war between work and fitness? We have the perfect solution for you - Elebands! \r\n\r\nElebands 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.\r\n\r\nThe best part is we have full body weight sets ranging from 3lbs – 30lbs to ensure optimal results no matter what your fitness goals are. \r\n\r\nPlus! 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.\r\n\r\nWith 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:\r\n\r\n1. Burn Calories: Effortlessly burn up to 1,500 calories daily, toning your body as you go about your day.\r\n\r\n2. Natural Weight Loss: Say goodbye to intense workouts and stressful diets. Elebands helps you lose weight naturally.\r\n\r\n3. Build Strength: Develop lean muscles and enhance your strength as you carry out your regular activities.\r\n\r\nImagine achieving your dream body without stepping foot in a gym or following a strict diet plan. With Elebands, it\'s possible.\r\n\r\nMany 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. \r\n\r\nVisit our website now at https://bit.ly/elebands-special and embrace the Elebands experience.\r\n\r\nLet Elebands be your partner in achieving a fit and healthy lifestyle. Start your transformation today!\r\n\r\nWarm regards,\r\n\r\nTheresa Smith\r\nBrand Ambassador\r\nElebands USA\r\n\r\nVisit our website NOW! https://bit.ly/elebands-special',''),(6824,1,1710,'6','Ronnie Butters',''),(6825,1,1710,'2','41-92-48-73',''),(6826,1,1710,'3','butters.ronnie@gmail.com',''),(6827,1,1710,'4','Hi,\r\n\r\nIf you’re anything like me you want to lose some weight. Maybe not 100 pounds, but even just 10-20 pounds.\r\n\r\nAnd, you’re probably tired of “trying”. Like, seriously, losing weight and keeping it off shouldn’t be so freaking hard right?\r\n\r\nWell, that’s why I’m so happy to be emailing you.\r\n\r\nThere’s a company that is preparing a personalized keto plan right now.\r\n\r\nYou can snag your custom plan by clicking here: https://bit.ly/4a8HHAj\r\n\r\nIt’s as easy as 1-2-3.\r\n\r\n1. Go Here: https://bit.ly/4a8HHAj\r\n2. Spend 45 seconds telling them a little bit about yourself and your goals\r\n3. Get your custom plan and review it right away!\r\n\r\nIt really is that simple.\r\n\r\nBut what makes this plan so easy to follow is that literally everything is done for you.\r\n\r\nThey 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!\r\n\r\nIt doesn’t get easier than this.\r\nSo go right now and claim your custom plan while it’s still available!\r\n\r\nhttps://bit.ly/4a8HHAj\r\n\r\nTalk Soon!\r\n\r\nPS - 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.\r\n\r\nThe 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. \r\n\r\nGrab it now: https://bit.ly/4a8HHAj',''),(6828,1,1711,'6','Kristi Saxton',''),(6829,1,1711,'2','462 3102',''),(6830,1,1711,'3','kristi.saxton@googlemail.com',''),(6831,1,1711,'4','Does your salad contain this vegetable?\r\n\r\nNew 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...\r\n\r\nmeaning it cannot absorb nutrients, increasing inflammation and slowing your metabolism, making you fatter and sicker.\r\n\r\nResearchers found lectin is so dangerous its now referred to as a \"anti-nutrient\"...\r\n\r\nAnd it\'s found in this everyday vegetable.\r\n\r\nYes it sounds crazy.\r\n\r\nI thought that too, but then I saw this alarming video.\r\n\r\nSo what is this evil vegetable?\r\n\r\n>>> Click Here To Discover The One Vegetable You Should NEVER Eat (Makes You Fat And Sick)\r\n\r\nhttps://bit.ly/3Txje2c\r\n\r\nTo your health!\r\n\r\n\r\nPS. 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.',''),(6832,1,1712,'6','Melody Mckenney',''),(6833,1,1712,'2','043 427 32 85',''),(6834,1,1712,'3','melody.mckenney67@yahoo.com',''),(6835,1,1712,'4','Hello,\r\n\r\n Expressing Gratitude for Your Contact \r\n\r\n Unlock the Potential of Google\'s Traffic Without Investing in Content Creation. \r\n\r\nIn just five minutes, you can tap into Google in a little-known way to get free traffic to any product or service, creating an unstoppable passive income.\r\n\r\nSee how it works for FREE here\r\n https://zwoops.com/access-google-hack-page/\r\n\r\nThank you and have a good day,\r\n\r\nMelody',''),(6836,1,1713,'6','Maude Washington',''),(6837,1,1713,'2','418 9028',''),(6838,1,1713,'3','maude.washington@gmail.com',''),(6839,1,1713,'4','Dear Shopper,\r\n\r\nLike 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!\r\n\r\nImagine 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.\r\n\r\nDon\'t miss out on this chance to maximize your savings. Check out our website now!\r\n\r\nhttps://bit.ly/3v3nwEY\r\n\r\nWarm regards!',''),(6840,1,1714,'6','Dewayne Kirchner',''),(6841,1,1714,'2','(19) 8482-7109',''),(6842,1,1714,'3','dewayne.kirchner@hotmail.com',''),(6843,1,1714,'4','Hi!\r\n\r\nIt is with sad regret to inform you that LeadsFly is shutting down!\r\n\r\nWe have made available all our consumer and business leads for the entire world on our way out.\r\n\r\nWe have the following available worldwide:\r\n\r\nConsumer Records: 294,582,351\r\nBusiness Records: 25,215,278\r\n\r\nVisit us here: https://leadsfly.biz/juiceelectrical.co.nz/\r\n\r\nBest regards,\r\nDewayne',''),(6844,1,1715,'6','Trinidad Hoyle',''),(6845,1,1715,'2','834-12-8967',''),(6846,1,1715,'3','trinidad.hoyle@gmail.com',''),(6847,1,1715,'4','Hello\r\n\r\nIt\'s been a while, but I recently stumbled upon a very negative opinon online about juiceelectrical.co.nz and felt it necessary to message you guys to confirm this article. \r\n\r\nIt looks like there\'s some negative press that could be potentially damaging. \r\nKnowing how fast misinformation can spread and wishing not you to be taken by surprise, I decided to inform you.\r\n\r\nHere\'s where I came across the info:\r\n\r\nhttps://ibit.ly/kLz9e \r\n\r\nI\'m hoping it\'s all a simple confusion, but I believed it necessary you should know!\r\n\r\nBest wishes,\r\nTrinidad',''),(6848,1,1716,'6','Philip Smith',''),(6849,1,1716,'2','06-12937865',''),(6850,1,1716,'3','revolution.ai297@outlook.com',''),(6851,1,1716,'4','Picture a dimension where you could write a straightforward \r\nsentence & have it transformed into captivating, astounding \r\nAI videos that fascinate, persuade, & are entirely created automatically!\r\n\r\nUnlock the future of marketing with the world\'s first ever \"real\" AI video technology, \r\nwhich is gaining notoriety as being the biggest technological breakthrough \r\nin AI yet & is powered by OpenAI\'s newest AI model called Sora, designed specifically for video.\r\n\r\nDon\'t be left behind by this AI video transformation \r\nthat will change how the world looks at video permanently!\r\n\r\nSpots are extremely limited....Lock down this unique beta access today & \r\nsteer your company into a new generation of advancement!\r\n\r\nThe Clock Is Ticking: https://bit.ly/ailegacy\r\n\r\nPhillippe\r\n\r\n\r\n\r\n\r\n\r\nOpt-out of subsequent messages by replying to this message and tell me Opt Out.\r\njuiceelectrical.co.nz',''),(6852,1,1717,'6','Daniele Kearney',''),(6853,1,1717,'2','(03) 5325 9507',''),(6854,1,1717,'3','kearney.daniele@gmail.com',''),(6855,1,1717,'4','4 things that are scams!\r\n\r\nThere are many scams around Bitcoin and cryptocurrencies!\r\n\r\nThis is not the fault of cryptocurrencies, rather that people still have very minimal information about these things, and many take advantage of that.\r\n\r\n\r\nBE CAREFUL if You encounter these things:\r\n1,\r\nNever 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.\r\n\r\n\r\n2,\r\nNever 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.\r\n\r\nDo NOT believe such things!\r\n\r\nBitcoin 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.\r\n\r\n\r\n3,\r\nBe 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.\r\n\r\nService providers NEVER ask for such things, so never send that data to anyone via email!\r\n\r\n\r\n4,\r\nNote 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.\r\n\r\nAlways install antivirus software on Your computer to secure Your data. I use the ESET Smart Security Premium, which has a 30-day trial too.\r\n\r\n\r\nDo not let Yourself be scammed!\r\n\r\nLearn everything about cryptocurrencies!\r\n\r\n\r\nClick here and view all details about the \"CRYPTO ULTIMATUM\" training system\r\n\r\nhttps://tinyurl.com/2rnc2a9j',''),(6856,1,1718,'6','Priscilla Mena',''),(6857,1,1718,'2','0335 1744792',''),(6858,1,1718,'3','mena.priscilla@outlook.com',''),(6859,1,1718,'4','This short independent documentary has the Catholic Church on the ropes\r\n\r\nBecause it exposes the biggest scandal in its long history.\r\n\r\nAnd it will affect the lives of each God fearing American.\r\n\r\nThis is something darker and more sinister than the Covid-19 Pandemic and Russia’s invasion of Ukraine\r\n\r\nAnd it’s spreading like wildfire all over the internet.\r\n\r\n>> Click Here Before The Video Is Taken Down Permanently <<\r\n\r\nhttps://tinyurl.com/bddbnzt3',''),(6860,1,1719,'6','Cruz Walls',''),(6861,1,1719,'2','077 3580 9057',''),(6862,1,1719,'3','walls.cruz@gmail.com',''),(6863,1,1719,'4','1 John 2:18\r\n\r\n\"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.\"\r\n\r\nThere 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”.\r\n\r\nSome bible scholars say that this verse references the rise of AI,\r\n\r\nAnd Christians have been shocked by the woke anti-faith bias of Chat GPT\r\n\r\nUnfortunately, the truth is far more sinister…\r\n\r\nAI’s influence is rapidly spreading around the world in disguise.\r\n\r\nAnd most people are blissfully unaware.\r\n\r\nOr perhaps already corrupted by its “touch.”\r\n\r\nIf you’ve ever had a bad feeling about artificial intelligence,\r\n\r\nPerhaps it is God’s way of warning you that\r\n\r\nAI is NOT here for what you think: https://tinyurl.com/2hc89mmr\r\n\r\nBlinded by the trillion-dollar profits,\r\n\r\nBig Tech has no idea of what it has unleashed upon the world.\r\n\r\nAnd they may have already lost control of their own creation.\r\n\r\nThis short documentary exposes 5 shocking facts misguided tech gurus are desperately trying to hide: https://tinyurl.com/2hc89mmr\r\n\r\nTherefore, it could be scrubbed off the internet at any moment.\r\n\r\nClick here to watch it right now!\r\n\r\nhttps://tinyurl.com/2hc89mmr',''),(6864,1,1720,'6','Mike Wilson',''),(6865,1,1720,'2','89287558573',''),(6866,1,1720,'3','peterDilkmaida@gmail.com',''),(6867,1,1720,'4','Hi \r\n \r\nI have just analyzed juiceelectrical.co.nz for its SEO Trend and saw that your website could use a push. \r\n \r\nWe will improve your ranks organically and safely, using only state of the art AI and whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nMore info: \r\nhttps://www.digital-x-press.com/unbeatable-seo/ \r\n \r\n \r\nRegards \r\nMike Wilson\r\n \r\nDigital X SEO Experts',''),(6868,1,1720,'5','Google',''),(6869,1,1721,'6','Phil Stewart',''),(6870,1,1721,'2','342-123-4456',''),(6871,1,1721,'3','noreplyhere@aol.com',''),(6872,1,1721,'4','Want Your Ad Everywhere? Reach Millions Instantly! For less than $100 I can blast your message to website contact forms globally. Contact me via skype or email below for info\r\n\r\nP. Stewart\r\nEmail: v8ngh8@gomail2.xyz\r\nSkype: live:.cid.2bc4ed65aa40fb3b',''),(6873,1,1722,'6','Gary Viner',''),(6874,1,1722,'2','05502 61 52 07',''),(6875,1,1722,'3','viner.gary@gmail.com',''),(6876,1,1722,'4','Hello,\r\n\r\nI recently visited https://juiceelectrical.co.nz and was truly inspired by your business vision. I wanted to share something that could complement your growth strategy – an exclusive, free webinar that has opened new avenues for my business. It offers practical insights into innovative income generation. Check it out here: https://cuttingedgebusiness.biz/fasttrack\r\n\r\nWarm regards,\r\nCutting Edge Business',''),(6877,1,1723,'6','Claudio Zweig',''),(6878,1,1723,'2','08191 61 06 79',''),(6879,1,1723,'3','zweig.claudio@outlook.com',''),(6880,1,1723,'4','Did you know our ancestors enjoyed normal pressure?\r\n\r\nThat’s right. \r\n\r\nThey chased wild mammoths and lived in caves. But they had healthy hearts and had no strokes.\r\n\r\nAnd modern scientists from the University of Virginia just discovered why.\r\n\r\nIt’s all because they had a “signaling molecule” in their tiny kidney cells that we don’t have.\r\n\r\nBut the good news is — there’s an easy way to restore your kidneys’ “signaling molecule” by using something called ‘Nectar of Gods’.\r\n\r\nThat’s because the ‘nectar of gods’ is proven by modern science to help get your blood pressure normal again.\r\n\r\n⇒ Nectar of Gods restores normal blood pressure\r\n\r\nhttps://tinyurl.com/bdh92xdb',''),(6881,1,1724,'6','Michelle Augustin',''),(6882,1,1724,'2','05.39.13.31.40',''),(6883,1,1724,'3','michelle.augustin@gmail.com',''),(6884,1,1724,'4','This new antifungal ritual is absolutely insane:\r\n\r\n1. Gently wash your feet with warm water…\r\n\r\n2. Then SLOWLY DRIP THESE 2 COMMON SPICES ON YOUR NAILS.\r\n\r\nhttps://tinyurl.com/mw7d22k4\r\n\r\nWith this one odd trick, which involves no smelly apple cider vinegar or useless tea tree oil…\r\n\r\nYou’ll be able to quickly clear more than 70% of the fungus infection in a matter of days…\r\n\r\nAnd finally make your nails strong and your feet healthy for years to come.\r\n\r\nIt sounds weird, but thousands of men and women with severe fungus infections “IT WORKS WONDERS!”\r\n\r\nIt has an astonishing 98% success rate…\r\n\r\nIt’s 6X more powerful than any laser surgery…\r\n\r\nAnd 7X more effective than any anti-fungal gel, supplement or pill currently on the market!\r\n\r\nIf you really want to get back your healthy nails starting today, you MUST see this now:\r\n\r\n==> Simple “NAIL SPICE” Ritual Clears Fungus 3X Faster: https://tinyurl.com/mw7d22k4',''),(6885,1,1725,'6','Rahul',''),(6886,1,1725,'2','06-26973411',''),(6887,1,1725,'3','hireonline4455@outlook.com',''),(6888,1,1725,'4','Hi, \r\n\r\nMy name is Rahul. I am a Data Entry Virtual Assistant. I will follow your step-by-step process and get things done for you at just $10 per hour. \r\n\r\nI can do Online Data Entry, Medical Bill Data Entry, Copy Paste Work, Document Data Entry, Physical to Digital Document Conversion, WooCommerce/Magento/Shopify Product Data Entry, Amazon/Ebay/Etsy/Walmart/Target Product Data Entry, Facebook Shop/Google Merchant Store Product Data Entry, Application Forms Data Entry, Software Data Entry, Invoice/Billing Data Entry Processing, Insurance Claim Processing, Order Entry, Purchase Entry, Captcha Filling, 1 by 1 Manual Entry, Step-by-Step Process Entry, E-Commerce Product Data Entry, Market Research Forms Processing, Credit Cards Form Processing, Survey Forms Processing, Mortgage Forms Processing, Data Collection, Sales Leads, List Collection using your Strategy and Criteria, List Creation, Typing Work, Data capturing from websites, Wordpress/Shopify Data Entry, Web scrapping and putting data into excel sheet, Proper formatting of excel entries, Resolve different formats of excel entries into 1 format, Process repetition, Google spreadsheet, \r\nProperty data research, Linkedin Data Collection, Business Card Data Entry, Finding leads online. \r\n\r\nIf you have any requirements, please send me an email on Hireonline4455@outlook.com',''),(6889,1,1726,'6','Agueda Oglesby',''),(6890,1,1726,'3','agueda.oglesby@gmail.com',''),(6891,1,1726,'4','I recently stumbled on a powerful fat-burning metabolic water recipe that I simply have to share with you.\r\n\r\n>> THIS Metabolic water burns up to 59lbs of fat\r\n\r\nhttps://tinyurl.com/3bh23ech\r\n\r\nWhen you drink this metabolic water once per day…\r\n\r\nYou’ll burn more belly blubber in a week than you would in a month!\r\n\r\nPlus, this potent metabolic water also lowers cholesterol, boosts energy and reawakens your sex drive…\r\n\r\nClick the link below to check it out:\r\n\r\n>> THIS Metabolic water burns up to 59lbs of fat\r\n\r\nhttps://tinyurl.com/3bh23ech',''),(6892,1,1727,'6','Barb Zavala',''),(6893,1,1727,'2','081 362 26 23',''),(6894,1,1727,'3','barb.zavala@hotmail.com',''),(6895,1,1727,'4','Are you tired of struggling to find funding for your business? Finance Worldwide can help. Our company specializes in providing business loans to entrepreneurs like you who are looking to grow their financial standing. With our easy application process and competitive rates, you\'ll be glad you reached out to us.\r\n\r\nDon\'t let a lack of funding hold you back. Contact us today to learn more about our business loan solutions.\r\nSkype:ID:live:.cid.c25a1f8b0fdaab04\r\nPhone:+85223194662\r\nmailto:info@financesworldwidehk.com\r\n\r\n\r\nBest regards,\r\nLaura Cha.\r\nCustomer Service Representative',''),(6896,1,1728,'6','Larry Olsen',''),(6897,1,1728,'2','648-265-5111',''),(6898,1,1728,'3','larry.olsen@gmail.com',''),(6899,1,1728,'4','hi!\r\n\r\nIt\'s been a while since our last conversation, but I just got emailed an article online about juiceelectrical.co.nz and immediately needed to message you guys to disprove this nonsense. \r\n\r\nIt looks like there\'s some rumors circulating that could be harmful to your reputation. \r\nBeing aware of how quickly rumors can spiral and hoping not you to be taken by surprise, I thought it best to warn you.\r\n\r\nHere\'s the source of the info:\r\n\r\nhttps://ibit.ly/uRvjm \r\n\r\nI\'m hoping it\'s all a simple confusion, but I thought it best you should know!\r\n\r\nBest wishes,\r\nLarry',''),(6900,1,1729,'6','Alphonse Wheare',''),(6901,1,1729,'2','27314633',''),(6902,1,1729,'3','alphonse.wheare@outlook.com',''),(6903,1,1729,'4','Feel like your diet is just you losing and gaining the same 5 lbs over and over?\r\n\r\nFeel like you eat healthy and exercise all day, but never make any progress?\r\n\r\nThen check this...\r\n\r\nA groundbreaking study published in Nature Medicine has revealed a bizarre fat dissolving loophole that has nothing to do with dieting or exercise.\r\n\r\nThey 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.\r\n\r\nhttps://tinyurl.com/ysc8t3mu\r\n\r\nStudies show this plant is 335% more powerful than exercise...\r\n\r\nand 408% more powerful at burning butt, arm and neck fat than any diet...\r\n\r\nSee it now:\r\n\r\n>>> One Ugly Plant Liquifies Fat Cells Into Nothing: https://tinyurl.com/ysc8t3mu\r\n\r\nRight 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.\r\n\r\nFrancine was able to break past her plateau to drop 34 lbs and her waist is smaller than ever...\r\n\r\nDebra dropped 47 lbs...\r\n\r\nAnd once I saw the fat dissolve away for me too, I had to share it with you...\r\n\r\nJust watch this surprising video and discover this simple ugly plant method yourself to start burning calories even when you\'re sleeping.\r\n\r\nTo your health!\r\n\r\nPS. 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.\r\n\r\nCheck now: https://tinyurl.com/ysc8t3mu',''),(6904,1,1730,'6','Isobel Huynh',''),(6905,1,1730,'2','3781799742',''),(6906,1,1730,'3','isobel.huynh@gmail.com',''),(6907,1,1730,'4','Many say this is impossible, but it’s NOT!\r\n\r\nThanks to a recent discovery, anyone can now wipe off nail fungus 3X faster, even while sleeping!\r\n\r\nBut how?\r\n\r\nA 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…\r\n\r\nWith NO pills or toxic drugs…\r\n\r\nWith ZERO scrubbing or smelly ACV solutions…\r\n\r\nAnd with ABSOLUTELY NO painful surgery!\r\n\r\nCheck here: https://tinyurl.com/mw7d22k4\r\n\r\nThe best thing?\r\n\r\nIt’s completely natural and you can do it safely from the comfort of your home starting tonight!\r\n\r\nClick here to see the simple spice mix which wipes off fungus 3X faster, in a matter of days: https://tinyurl.com/mw7d22k4',''),(6908,1,1731,'6','Pas Martine',''),(6909,1,1731,'2','7948681530',''),(6910,1,1731,'3','avantimediaprojects@gmail.com',''),(6911,1,1731,'4','Hey there,\r\n\r\nWant your business showcased in Google News?\r\n\r\nOur hyper-targeted content gets distributed across Google News and similar platforms, bringing you increased exposure, calls, and clients.\r\n\r\nReply with \"YES\" to learn more.\r\n\r\nBest regards,\r\nPas',''),(6912,1,1732,'6','Beck Little',''),(6913,1,1732,'2','0276587106',''),(6914,1,1732,'3','littlebeckbear@gmail.com',''),(6915,1,1732,'4','Looking for a quote for a new kitchen upgrade. Have a 1915 cottage. Will be stripping down to the studs to assist with access for wiring, as I don\'t have ceiling assess.',''),(6916,1,1732,'5','Through a friend',''),(6917,1,1733,'6','Anya Jarnigan',''),(6918,1,1733,'2','498455611',''),(6919,1,1733,'3','anya.jarnigan@googlemail.com',''),(6920,1,1733,'4','Hey,\r\n\r\nAppreciative of Your Outreach\r\n\r\nStrategies for Increasing Your Website Traffic Without Creating New Content.\r\n\r\nIn just five minutes, juiceelectrical.co.nz can tap into Google in a little-known way to get free traffic to any product or service, creating an unstoppable passive income.\r\n\r\nSee how it works for FREE here :\r\nhttps://cx2e.short.gy/FreeTraffic\r\n\r\nThank you and have a good day,\r\n\r\nAnya',''),(6921,1,1734,'6','Hugh Peacock',''),(6922,1,1734,'2','9318360666',''),(6923,1,1734,'3','hugh.peacock@gmail.com',''),(6924,1,1734,'4','2.4 trillion dollars…\r\n\r\nA sum almost 3 times larger than our defense budget\r\n\r\nIn 2023 this staggering amount of money flowed into Big Tech companies developing Artificial intelligence…\r\n\r\nSuch an enormous pile of cash can make corporations ignore warnings\r\n\r\nDisregard the dangers of their actions\r\n\r\nAnd hide from the public the truth about what may be the most dangerous technology since the atomic bomb…\r\n\r\nIf you’ve ever had a bad feeling about artificial intelligence,\r\n\r\nPerhaps it is God’s way of warning you that\r\n\r\nAI is NOT here for what you think…\r\n\r\nSee here: https://tinyurl.com/4pz7c7ky\r\n\r\nBlinded by the trillion-dollar profits,\r\n\r\nBig Tech has no idea of what it has unleashed upon the world.\r\n\r\nAnd they may have already lost control of their own creation\r\n\r\nThis short documentary exposes 5 shocking facts misguided tech gurus are desperately trying to hide…\r\n\r\nTherefore, it could be scrubbed off the internet at any moment.\r\n\r\nClick here to watch it right now: https://tinyurl.com/4pz7c7ky',''),(6925,1,1735,'6','Darren Tierney',''),(6926,1,1735,'2','1939193370',''),(6927,1,1735,'3','tierney.darren@gmail.com',''),(6928,1,1735,'4','Hey,\r\n\r\nYou’re probably already aware that going to the gym is a must if you want to have strong, healthy muscles.\r\n\r\nBut did you know that you almost NEVER get to exercise one of the most important muscles in your entire body?\r\n\r\nThe smooth muscles in your penis need to be strengthened and toned periodically in order to guarantee rock-hard erections on command.\r\n\r\nThis is why so many men over 40 have trouble getting it up…\r\n\r\nhttps://tinyurl.com/cd65pzu5\r\n\r\nTheir penis muscles have deteriorated to the point where they can’t even fulfill their most basic role.\r\n\r\nBut you don’t have to live like that.\r\n\r\nA new medical breakthrough is taking the field of male health by storm:\r\n\r\nOver 59,200 men have already benefited from this radical reimagining of manhood.\r\n\r\n>>Don’t be the one left behind: https://tinyurl.com/cd65pzu5',''),(6929,1,1736,'6','Pearline Ebsworth',''),(6930,1,1736,'2','7773353426',''),(6931,1,1736,'3','pearline.ebsworth@googlemail.com',''),(6932,1,1736,'4','URGENT HEALTH UPDATE:\r\n\r\nNo antifungal drug, cream or expensive surgery can do what this $3 natural method does…\r\n\r\nEven top doctors say “IT’S BETTER THAN ANYTHING ELSE!”...\r\n\r\nCheck now: https://tinyurl.com/4aetkynk\r\n\r\nAs it’s not just one of those temporary solutions that won’t clear your nails even after months of trying...\r\n\r\nThis actually targets the most dangerous type of nail fungus at its source…\r\n\r\nWhich is deeply hidden inside your socks and shoes, causing your nails to ALWAYS get infected (no matter how hard you try to clean them!).\r\n\r\nScientists say that this new method is faster, cheaper and more effective than anything else on the market!\r\n\r\nYou can wipe off almost 98% of the fungal infections in a matter of days…\r\n\r\nCompletely restore your nails 3x faster, eliminate nasty feet odor…\r\n\r\nAnd easily bulletproof against fungal infection for years, if not decades…\r\n\r\nClick here to see how to protect your nails and eliminate fungal infections starting today!\r\n\r\nhttps://tinyurl.com/4aetkynk',''),(6933,1,1737,'6','Chris Buchanan',''),(6934,1,1737,'2','+64275299966',''),(6935,1,1737,'3','mrstarfire@hotmail.com',''),(6936,1,1737,'4','Hi, can you please tell me how much it would be to supply and install a 7.4kW electric car charger in a newly built house.\r\nLocation: Rangiora, Townsend Fields',''),(6937,1,1737,'5','Previous customer',''),(6938,1,1738,'6','Quyen Ricker',''),(6939,1,1738,'2','3728224946',''),(6940,1,1738,'3','ricker.quyen@gmail.com',''),(6941,1,1738,'4','Turn your 5 star reviews into videos that rank super high when people Google your reputation. Pay nothing for the video! http://free-rep-videos.info',''),(6942,1,1739,'6','Christian Adame',''),(6943,1,1739,'2','7721698804',''),(6944,1,1739,'3','mermaid.digital@outlook.com',''),(6945,1,1739,'4','Hey!\r\n\r\nIf you are in a service business, this article worth reading https://knowhowcommunity.org/how-to-build-free-app-for-your-business/\r\n\r\nIf you\'re a small business looking to build your own free app, start by researching your target audience, defining your app\'s purpose, and selecting the right platform for development. With careful planning and execution, you can create a valuable app that enhances your customer experience and drives business growth\r\n\r\nFor free assistance in app building,reply to this email.\r\n\r\nThanks\r\nMermaid Digital\r\nhttps://mermaid-digital.com\r\nskype:mermaid.digital\r\n\r\n\r\nTo unsubscribe receiving email,please reply this email bearing subject \"unsubscribe\"',''),(6946,1,1740,'6','Kellee Nussbaum',''),(6947,1,1740,'2','604-250-8709',''),(6948,1,1740,'3','kellee.nussbaum@gmail.com',''),(6949,1,1740,'4','Dear ,\r\n\r\nSign up today through https://cutt.ly/9wXHM7s1 and kickstart your journey with Bybit Starter Rewards. Earn up to 5,000 USDT and take your trading to new heights!\r\n\r\n \r\nthe Bybit Starter Rewards program – a fantastic opportunity for you to supercharge your trading experience.\r\n\r\nHere\'s how it works:\r\n\r\n1. Register: Sign up for a Bybit account through https://cutt.ly/9wXHM7s1 to ensure you\'re eligible for the rewards.\r\n\r\n2. Deposit: Make your first deposit and enjoy seamless transactions with our user-friendly platform.\r\n\r\n3. Trade: Dive into the exciting world of crypto trading on Bybit. The more you trade, the more you earn!\r\n\r\n \r\n\r\n\r\nHappy trading!\r\n\r\nBest regards',''),(6950,1,1741,'6','Princess McGeorge',''),(6951,1,1741,'2','4681907065',''),(6952,1,1741,'3','mcgeorge.princess@gmail.com',''),(6953,1,1741,'4','Dear : Hello every one,\r\n\r\nSubject: Utilization of Notion Template for Enhanced Daily Living\r\n\r\nWe are writing to emphasize the significance of integrating Notion into daily life and its consequential benefits. At safedigitalgoods, our commitment lies in providing solutions that not only enrich lives but also enhance productivity and well-being.\r\n\r\nIn today\'s fast-paced world, the value of efficiency and effectiveness cannot be overstated. With [Product/Service], individuals can streamline their daily routines, optimize their time management, and experience a heightened sense of organization. By incorporating Notion template into everyday life, users can unlock a multitude of benefits, including:\r\n\r\nIncreased Productivity: Notion template empowers users to accomplish tasks with greater efficiency, allowing for more time to focus on priorities and personal pursuits.\r\n\r\nEnhanced Organization: Our Notion template facilitates seamless organization of schedules, tasks, and essential information, reducing clutter and fostering clarity of thought.\r\n\r\nImproved Time Management: With intuitive features designed to prioritize tasks and allocate time effectively, users can optimize their schedules and achieve a better work-life balance.\r\n\r\nStress Reduction: By streamlining processes and providing comprehensive support, Notion template alleviates the burden of daily stressors, enabling individuals to approach each day with confidence and composure.\r\n\r\nGreater Accountability: Through tracking and monitoring capabilities, Notion template promotes accountability and progress tracking, empowering users to stay on course and achieve their goals.\r\n\r\nEnhanced Communication: Our Notion template facilitates seamless communication and collaboration, fostering stronger connections and promoting synergy within teams and communities.\r\n\r\nPersonal Development: By freeing up valuable time and resources, Notion template creates opportunities for personal growth, exploration, and self-improvement.\r\n\r\nIn essence, integrating Notion template into daily life is not merely a choice but a strategic investment in one\'s overall well-being and success. It is our firm belief that by embracing innovative solutions, individuals can unlock their full potential and lead more fulfilling lives.\r\n\r\nShould you require any further information or assistance regarding the implementation of safedigitalgoods, please do not hesitate to contact us. We are dedicated to supporting you on your journey towards greater efficiency, productivity, and satisfaction.\r\n\r\nThank you for considering safedigitalgoods as your partner in progress.\r\n\r\n%https://www.safedigitalgoods.com%',''),(6954,1,1742,'6','Cameron Benes',''),(6955,1,1742,'2','240836113',''),(6956,1,1742,'3','fightfraud001@gmail.com',''),(6957,1,1742,'4','Hi,\r\n\r\nProtect your business from all types of Fraud with the FraudSafe Starter Kit\r\n\r\nDesigned by qualified and certified professionals, the FraudSafe Starter Kit offers over 200 pages of key info about how to protect your business.\r\n\r\nVisit: https://go.fraud.services/fraudsafekit\r\n\r\nBe FraudSafe\r\nCameron',''),(6958,1,1743,'6','Grant Lira',''),(6959,1,1743,'2','9802411498',''),(6960,1,1743,'3','growthpartners13@gmail.com',''),(6961,1,1743,'4','Monthly, you\'ll be featured on 3 podcasts + 15 professionally edited short-form social media videos from these podcasts, and have 3 online publication features - completely DFY.\r\n\r\nWe’ve helped 43 clients do just that to build their thought leadership in their specific industry which has helped them:\r\n\r\n- Generate more appointments\r\n- Close at a higher % (Because they built authority before the meeting even started)\r\n- Charge higher amounts because people view their company as a premium option \r\n\r\nInterested? We are raising our service by 22 % on April 15th, but if we chat before then, you’ll be locked in at the current amount. We can chat here:\r\n\r\nhttps://bit.ly/empathyfirm-30-minute-meeting\r\n\r\nBest,\r\nGrant\r\n\r\nPS - I will not see your response so if you have a question, book a time to chat (:\r\n\r\n\r\n\r\nN6565 Shorewood Hills Rd. Lake Mills WI, 53551\r\nEmail unsubnow1@gmail.com with your website to “unsub” meaning you will not hear from me again.',''),(6962,1,1744,'6','Lolita Leavens',''),(6963,1,1744,'2','8171386828',''),(6964,1,1744,'3','lolita.leavens@yahoo.com',''),(6965,1,1744,'4','Hey dear juiceelectrical.co.nz manager,\r\n\r\nI\'m reaching out from Promocrown, a company specializing in website monetization strategies.\r\n\r\nWe are interested in potentially purchasing some of your website traffic.\r\n\r\nWe offer a straightforward arrangement where we pay weekly, with a low minimum revenue requirement of just $25.\r\n\r\nIf this opportunity interests you, please visit promocrown.com/monetize/ for more information.\r\n\r\nThere, you can find details about our partnership program and how we can work together to maximize your website\'s revenue potential.\r\n\r\nLooking forward to hearing from you and discussing this further.\r\n\r\nBest regards,\r\n\r\nJuliann\r\nBusiness Development Director',''),(6966,1,1745,'6','Kiara Scales',''),(6967,1,1745,'2','261560488',''),(6968,1,1745,'3','scales.kiara4@gmail.com',''),(6969,1,1745,'4','Many say this is impossible, but it’s NOT!\r\n\r\nThanks to a recent discovery, anyone can now wipe off nail fungus 3X faster, even while sleeping!\r\n\r\nBut how?\r\n\r\nA 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…\r\n\r\nWith NO pills or toxic drugs…\r\n\r\nWith ZERO scrubbing or smelly ACV solutions…\r\n\r\nAnd with ABSOLUTELY NO painful surgery!\r\n\r\nCheck here: https://tinyurl.com/35dhzcvj\r\n\r\nThe best thing?\r\n\r\nIt’s completely natural and you can do it safely from the comfort of your home starting tonight!\r\n\r\nClick here to see the simple spice mix which wipes off fungus 3X faster, in a matter of days: \r\n\r\nhttps://tinyurl.com/35dhzcvj',''),(6970,1,1746,'6','Jan',''),(6971,1,1746,'2','0273106600',''),(6972,1,1746,'3','jandorislimolaivar@gmail.com',''),(6973,1,1746,'4','Hi, \r\n\r\nCan I get a qoute to rewire a 1930 two bedroom house in Waltham? And is there an add on cost to change the light fixtures during the rewiring process? \r\nSome of the wires were added in the kitchen, water cylinder and heat pump last year so I guess not all needs to be replaced? \r\n\r\n\r\nKind regards,\r\n\r\nJan',''),(6974,1,1746,'5','Google',''),(6975,1,1747,'6','Ina Mattner',''),(6976,1,1747,'2','25274399',''),(6977,1,1747,'3','ina.mattner@outlook.com',''),(6978,1,1747,'4','Tired of foot fungus? Don\'t let this unpleasant and embarrassing condition go unnoticed. \r\n\r\n\r\nIgnoring it could lead to long-term damage, even amputation.\r\n\r\nDr. Richard Gannon has created a simple secret fungus killer that only takes as little as 30 seconds to 5-minute daily. \r\n\r\nThis simple solution is the answer to your foot and nail fungus... \r\n\r\nClick Here to Watch Dr. Gannon\'s Secret Fungus Killer and use his secret tactic:\r\n\r\nhttps://tinyurl.com/jfvnwfxt',''),(6979,1,1748,'6','Effie Clever',''),(6980,1,1748,'2','429786006',''),(6981,1,1748,'3','clever.effie@yahoo.com',''),(6982,1,1748,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(6983,1,1749,'6','Isabel Brier',''),(6984,1,1749,'2','41723199',''),(6985,1,1749,'3','brier.isabel@hotmail.com',''),(6986,1,1749,'4','Discover the Simple Ingredient That Improves Teeth & Gum Health.\r\n\r\nDoctors are amazed as individuals report improved oral hygiene within days of using this surprising ingredient used by the Ancient Romans in Pompei for perfect teeth.\r\n\r\n> Watch this video and learn about this simple ingredient that restores your teeth: https://tinyurl.com/yvnzhhrx',''),(6987,1,1750,'6','Millard Soubeiran',''),(6988,1,1750,'2','3830098013',''),(6989,1,1750,'3','soubeiran.millard66@gmail.com',''),(6990,1,1750,'4','4/15/24 is the deadline to claim the SETC for your 2020 amended tax return. Today is 3/7/2024. \r\nIndividuals can still claim their Self-Employed Tax Credit (SETC), worth up to $32,220, under the FFCRA. Here is everything you need to know.\r\nThe 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.\r\nDon’t miss your COVID tax credit: \r\nCall Kerry at 480-790-9186\r\nEmail Kerry at processing@taxcreditfunder.com\r\nOr watch the explanation here: https://taxcreditfunder.com/en/',''),(6991,1,1751,'6','Alex Landrum',''),(6992,1,1751,'2','316542372',''),(6993,1,1751,'3','alexstrose1581997@gmail.com',''),(6994,1,1751,'4','Beauty Be Me - Where Quality Meets Affordability. At Beauty Be Me, our mission is to provide high-quality cosmetic supplies at affordable prices. \r\nWe believe that beauty should be accessible to everyone, and we’re here to make that happen. \r\nWith a wide range of products and competitive prices, we’re the one-stop-shop for all your cosmetic needs.\r\n\r\nIf you are interest respond to this email with yes or view our website at https://beautybeme.10web.cloud/\r\n\r\nThanks, Alex \r\n\r\nAddress: \r\n444 Alaska Avenue\r\nSuite #BUK132\r\nTorrance, CA 90503\r\nUSA',''),(6995,1,1752,'6','Shaina Garcia',''),(6996,1,1752,'2','0272293818',''),(6997,1,1752,'3','shaina@clientevervue.com',''),(6998,1,1752,'4','Dear Juice Electrical,\r\n \r\nI am Shaina from Evervue. We believe our MirrorVue mirror TV collection could be the game-changer for your next project:\r\n\r\n \r\n1. A stunning 4K OLED TV when on, a beautiful mirror when off.\r\n\r\n2. Custom Options: Touchscreen, shape, frame, lighting, and more to your needs.\r\n\r\n3. Eco-Friendly: High-quality designs with minimal environmental impact.\r\n \r\nExplore the full MirrorVue collection: https://www.mirrorvue.com/ \r\n \r\nFor questions or a personalized consultation, email us at sales@evervue.com.au. We would love to see how our mirror TVs can refine and elevate your design spaces.\r\n \r\nIf you are not interested in receiving further communications from us, please reply to this email with \"Not Interested\". We deeply respect your preferences and will ensure that you will not receive any more emails from us in the future.',''),(6999,1,1752,'5','Google Search',''),(7000,1,1753,'6','Elizbeth Luscombe',''),(7001,1,1753,'2','7162760591',''),(7002,1,1753,'3','luscombe.elizbeth@hotmail.com',''),(7003,1,1753,'4','This new antifungal ritual is absolutely insane:\r\n\r\n1. Gently wash your feet with warm water…\r\n\r\n2. Then SLOWLY DRIP THESE 2 COMMON SPICES ON YOUR NAILS.\r\n\r\nhttps://tinyurl.com/mw7d22k4\r\n\r\nWith this one odd trick, which involves no smelly apple cider vinegar or useless tea tree oil…\r\n\r\nYou’ll be able to quickly clear more than 70% of the fungus infection in a matter of days…\r\n\r\nAnd finally make your nails strong and your feet healthy for years to come.\r\n\r\nIt sounds weird, but thousands of men and women with severe fungus infections “IT WORKS WONDERS!”\r\n\r\nIt has an astonishing 98% success rate…\r\n\r\nIt’s 6X more powerful than any laser surgery…\r\n\r\nAnd 7X more effective than any anti-fungal gel, supplement or pill currently on the market!\r\n\r\nIf you really want to get back your healthy nails starting today, you MUST see this now:\r\n\r\n==> Simple “NAIL SPICE” Ritual Clears Fungus 3X Faster: https://tinyurl.com/mw7d22k4',''),(7004,1,1754,'6','Tracee Papst',''),(7005,1,1754,'2','3457060612',''),(7006,1,1754,'3','tracee.papst@msn.com',''),(7007,1,1754,'4','Do you touch your gums like this with your tongue?\r\n\r\nSTOP RIGHT NOW or risk losing all your teeth!\r\n\r\nRecent 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.\r\n\r\n>> Click here to find why this habit might cause all your teeth to fall out and what you can do about it. \r\n\r\nhttps://tinyurl.com/yvnzhhrx',''),(7008,1,1755,'6','Shayla Galway',''),(7009,1,1755,'2','324932321',''),(7010,1,1755,'3','shayla.galway@gmail.com',''),(7011,1,1755,'4','If you’re dealing with bleeding gums, tooth decay and sewage breath…\r\n\r\nAnd if the thought of eventually losing your teeth does not let you sleep at night…\r\n\r\nYou need to know this.\r\n\r\nNew 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...\r\n\r\nWithout any toxic medication or risky dental procedures…\r\n\r\nFrom the comfort of their home…\r\n\r\nMore than 34,677 people have already managed to get back their perfect smiles without any effort.\r\n\r\nThis video explains everything in simple steps: https://tinyurl.com/y5rky7vs\r\n\r\nThis Mineral Gum Strengthens Teeth And Gums Almost Overnight \r\n\r\n>> https://tinyurl.com/y5rky7vs',''),(7012,1,1756,'6','Tanja Ruckman',''),(7013,1,1756,'2','299543862',''),(7014,1,1756,'3','ruckman.tanja38@gmail.com',''),(7015,1,1756,'4','Storm Damage Rejected? I\'ve Fought This Battle.\r\n\r\nHello,\r\n\r\nWhen my storm damage claim was rejected, I sought help. Now, we\'re here to fight for your rights too. Let\'s discuss how we can assist you. \r\n\r\n\r\n Contact us now.\r\n\r\nCLICK HERE FOR YOUR FREE GUIDE - https://aibotsmarketing.wixsite.com/publicadjusters/projects\r\n\r\n\r\n==> Click Here to Contact Us Now - www.piadjuster.com\r\n\r\n\r\n-Jade',''),(7016,1,1757,'6','Emile Marcotte',''),(7017,1,1757,'2','792092860',''),(7018,1,1757,'3','marcotte.emile@gmail.com',''),(7019,1,1757,'4','Did you hear about the unusual rice method that liquifies fat cells as you sleep?\r\n\r\nClinical 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!\r\n\r\nBefore you go to sleep tonight, try it for yourself...\r\n\r\nhttps://tinyurl.com/bdy2nzpz\r\n\r\n>>> 1 Unusual Rice Method That Liquifies Fat As You Sleep\r\n\r\nDon\'t waste another second on:\r\n\r\nX--- Fad diets that are impossible to enjoy...\r\nX--- Gym memberships or fitness apps...\r\nX--- Calorie counting\r\n\r\nInstead, just try this one easy fat-dissolving rice method before you sleep tonight and drop lbs of stubborn fat by morning.\r\n\r\nCheck now: https://tinyurl.com/bdy2nzpz',''),(7020,1,1758,'6','Amelia Brown',''),(7021,1,1758,'2','292087052',''),(7022,1,1758,'3','ameliabrown0325@gmail.com',''),(7023,1,1758,'4','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers safely and practically. \r\n\r\nWe aim to gain you 700+ real human subscribers per month, with all actions safe as they are made manually (no bots).\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nLet me know if you wish to see some of our previous work.\r\n\r\nKind Regards,\r\nAmelia',''),(7024,1,1759,'6','Penelope O\'Toole',''),(7025,1,1759,'2','6220494147',''),(7026,1,1759,'3','hacked@juiceelectrical.co.nz',''),(7027,1,1759,'4','We have hacked your website https://juiceelectrical.co.nz and extracted your databases.\r\n\r\nHow did this happen?\r\n\r\nOur 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.\r\n\r\nWhat does this mean?\r\n\r\nWe 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://juiceelectrical.co.nz 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.\r\n\r\nHow do i stop this?\r\n\r\nWe are willing to refrain from destroying your site\'s reputation for a small fee. The current fee is $3000 in bitcoins (0.044 BTC).\r\n\r\nSend the bitcoin to the following Bitcoin address (Make sure to copy and paste):\r\n\r\n39RgrnuVhHPqXWKLwryKatFLSCNgZtLjrX \r\n\r\nOnce 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!\r\n\r\nHow do i get Bitcoins?\r\n\r\nYou can easily buy bitcoins via several websites or even offline from a Bitcoin-ATM.\r\n\r\nWhat if i don\'t pay?\r\n\r\nWe 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.\r\n\r\nThis 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!\r\n\r\nPlease note that Bitcoin is anonymous and no one will find out that you have complied.',''),(7028,1,1760,'6','Alex Kneebone',''),(7029,1,1760,'2','3333841064',''),(7030,1,1760,'3','alexstrose1581997@gmail.com',''),(7031,1,1760,'4','Beauty Be Me - Where Quality Meets Affordability. At Beauty Be Me, our mission is to provide high-quality cosmetic supplies at affordable prices. \r\nWe believe that beauty should be accessible to everyone, and we’re here to make that happen. \r\nWith a wide range of products and competitive prices, we’re the one-stop-shop for all your cosmetic needs.\r\n\r\nIf you are interest respond to this email with yes or view our website at https://beautybeme.10web.cloud/\r\n\r\nThanks, Alex \r\n\r\nAddress: \r\n444 Alaska Avenue\r\nSuite #BUK132\r\nTorrance, CA 90503\r\nUSA',''),(7032,1,1761,'6','Ellie Bowles',''),(7033,1,1761,'2','447268371',''),(7034,1,1761,'3','bowles.ellie@gmail.com',''),(7035,1,1761,'4','The data doesn’t lie.\r\n\r\nRecent studies have shown that over half of men between the ages of 40 and 70 experience at least some difficulty performing in bed.\r\n\r\nAnd 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.\r\n\r\nYou can’t afford to be the guy she leaves just because you can’t get it up.\r\n\r\nBut 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.\r\n\r\nBut all that ends today.\r\n\r\nhttps://tinyurl.com/4mzsyf22 \r\n\r\nScientists 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.\r\n\r\nThey call it the “Morningwood Miracle”, and it works for all men regardless of age and medical condition. \r\n\r\n>> Check It Out For Yourself NOW: https://tinyurl.com/4mzsyf22',''),(7036,1,1762,'6','Ebony Kimmel',''),(7037,1,1762,'2','272415561',''),(7038,1,1762,'3','ebony.kimmel@gmail.com',''),(7039,1,1762,'4','We all know we shouldn\'t drink too much...\r\n\r\nEspecially when trying to lose weight.\r\n\r\nYet, the real reason is NOT because of the calories...\r\n\r\nIt\'ds because the entire fat-burning process depends on a healthy liver.\r\n\r\nFact is, too much alcohol can damage your liver and your metabolism.\r\n\r\nHowever, the remarkably powerful Mediterranean ritual below naturally protects and rapidly purifies your liver of EVERY alcohol...\r\n\r\nAllowing you to enjoy an extra drink or two while promoting fat loss at the same time.\r\n\r\nThat\'s why, if you\'re gonna drink, do this simple Mediterranean Ritual before hand: https://tinyurl.com/4jd7hzc9\r\n(takes 30 seconds)',''),(7040,1,1763,'6','Libby Evans',''),(7041,1,1763,'2','42796136',''),(7042,1,1763,'3','libbyevans461@gmail.com',''),(7043,1,1763,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- We guarantee to gain you 300-1000+ followers per month.\r\n- People follow you because they are interested in you, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you\'d like to see some of our previous work, let me know, and we can discuss it further.\r\n\r\nKind Regards,\r\nLibby',''),(7044,1,1764,'6','Vivien',''),(7045,1,1764,'2','2676817317',''),(7046,1,1764,'3','juiceelectrical.co.nz@icloud.com',''),(7047,1,1764,'4','Hey \r\n\r\nI 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. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nThanks for your time, \r\n\r\nVivien',''),(7048,1,1765,'6','Letha Parra',''),(7049,1,1765,'3','letha.parra@yahoo.com',''),(7050,1,1765,'4','Hope this finds you wel,\r\n\r\nFact: Roughly 68% of the population never experiences tinnitus, no matter\r\nif they have been exposed to loud workplaces or other ear-harmful\r\nenvironments.\r\n\r\nThis has drawn the attention of a small group of European researchers who\r\nhave recently published their astounding discoveries...\r\n\r\nCheck now: https://tinyurl.com/yx2jfzea\r\n\r\nThey have found the nucleic acid which makes some immune to developing\r\ntinnitus and how everybody can activate it in a matter of months,\r\npossibly even weeks...\r\n\r\nThis is fresh-out-of-the-box info that you won\'t find anywhere else but in\r\ntheir short documentary.\r\n\r\nHow to stop weird sounds in 3 easy steps: https://tinyurl.com/yx2jfzea',''),(7051,1,1766,'6','Ravi Hatfield',''),(7052,1,1766,'2','3350478769',''),(7053,1,1766,'3','hatfield.abe81@gmail.com',''),(7054,1,1766,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7055,1,1767,'6','Jessica Bustos',''),(7056,1,1767,'2','462669173',''),(7057,1,1767,'3','bustos.jessica@outlook.com',''),(7058,1,1767,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(7059,1,1768,'6','Carlo Adame',''),(7060,1,1768,'2','23952788',''),(7061,1,1768,'3','adame.carlo@gmail.com',''),(7062,1,1768,'4','URGENT HEALTH UPDATE:\r\n\r\nNo antifungal drug, cream or expensive surgery can do what this $3 natural method does…\r\n\r\nEven top doctors say “IT’S BETTER THAN ANYTHING ELSE!”...\r\n\r\nSee now: https://tinyurl.com/bdz7r9bk\r\n\r\nAs it’s not just one of those temporary solutions that won’t clear your nails even after months of trying...\r\n\r\nThis actually targets the most dangerous type of nail fungus at its source…\r\n\r\nWhich is deeply hidden inside your socks and shoes, causing your nails to ALWAYS get infected (no matter how hard you try to clean them!).\r\n\r\nScientists say that this new method is faster, cheaper and more effective than anything else on the market!\r\n\r\nYou can wipe off almost 98% of the fungal infections in a matter of days…\r\n\r\nCompletely restore your nails 3x faster, eliminate nasty feet odor…\r\n\r\nAnd easily bulletproof against fungal infection for years, if not decades…\r\n\r\nClick here to see how to protect your nails and eliminate fungal infections starting today!\r\n\r\nhttps://tinyurl.com/bdz7r9bk',''),(7063,1,1769,'6','Phil Stewart',''),(7064,1,1769,'2','342-123-4456',''),(7065,1,1769,'3','noreplyhere@aol.com',''),(7066,1,1769,'4','Want Your Ad Everywhere? Reach Millions Instantly! For less than $100 I can blast your message to website contact forms globally. Contact me via skype or email below for info\r\n\r\nP. Stewart\r\nEmail: qwpcpy@mail-to-form.xyz\r\nSkype: form-blasting',''),(7067,1,1770,'6','Kristan Brubaker',''),(7068,1,1770,'2','8431497100',''),(7069,1,1770,'3','brubaker.kristan@hotmail.com',''),(7070,1,1770,'4','\"Revolutionize Your Workflow with AI: Seamlessly Automate Every Task! Don\'t Miss Out on this Unbeatable Offer - Captivate Your Senses, Seize the Opportunity, and Let Your Mind Embrace the Possibilities of Complete Automation!\"\r\n\r\n\r\n\r\nhttps://tinyurl.com/36sbzbuf',''),(7071,1,1771,'6','Darby Genders',''),(7072,1,1771,'2','5014707598',''),(7073,1,1771,'3','genders.darby@msn.com',''),(7074,1,1771,'4','NASA kept it hidden…\r\n\r\nI want to warn you,\r\n\r\nThis method isn’t for everyone. \r\n\r\nIf you don’t want to experience what it’s like to have an open eye, then close this message. \r\n\r\nThis 3-second method is so powerful at activating your pineal gland that a few elite individuals have kept it hidden for centuries. \r\n\r\nBut now the secret is out and people across the world are using it to manifest everything they desire in a matter of days. (sometimes even twenty-four hours)\r\n\r\nCheck it here: https://tinyurl.com/fx9nkfv4\r\n\r\nIf you want to discover the real truth about your being and how you’re truly connected to the Universe through your pineal gland…\r\n\r\nPlus, how to start experiencing psychic abilities, clairvoyance or manifest wealth fast.\r\n\r\nThen all you need to do is try this three-second method NOW.\r\n\r\nTo your success: https://tinyurl.com/fx9nkfv4',''),(7075,1,1772,'6','Leon Blaylock',''),(7076,1,1772,'2','9831523845',''),(7077,1,1772,'3','blaylockleonb22@gmail.com',''),(7078,1,1772,'4','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n\r\n2. Meta Tag Optimization descriptions are absent, I can add them too.\r\n\r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n\r\n4. Targeted keywords are not placed into tags correctly.\r\n\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n\r\n6. Google Publisher is missing; I can set this up for you\r\n\r\n7. Custom 404 Page is missing and I can create this for you.\r\n\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search.\r\n\r\nWe\'ve got lots to do together to make you stand out!\r\n\r\nPlease give us the chance to work with you. You can see our rates on our website.\r\n\r\nIf this email has reached you by mistake, or if you do not wish to take advantage of this opportunity, please accept my apologies for any inconvenience caused. We are a small business and we are just trying to get some customers. I\'m sure you were in our position once too. Rest assured that we will not contact you again should you reply to this email with the word \'unsubscribe\'\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\n\r\nLeon Blaylock\r\n\r\nIn return, would you please be so kind as to leave a comment on one of my posts. I\'ll let you know which one if you reply to me.\r\n\r\nSpread the love!',''),(7079,1,1772,'5','GOOGLE',''),(7080,1,1773,'6','Brenda Cecil',''),(7081,1,1773,'2','6924756413',''),(7082,1,1773,'3','brenda.cecil@googlemail.com',''),(7083,1,1773,'4','Weight loss stuck? You may have a toxic fatty acid that blocks weight loss. \r\n\r\nAccording to Newcastle University in England, this fatty acid forces fat cells to stream into your blood… \r\n\r\nAnd causes your body to pack on internal visceral fat. \r\n\r\nOnce 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. \r\n\r\nFortunately, a renegade doctor from Japan has uncovered a natural “belly fat Drāno” juice that flushes out this toxic fatty acid from your body. \r\n\r\nCheck now: https://tinyurl.com/4f88nb95\r\n\r\n67,129 folks are drinking this delicious juice every morning… \r\n\r\nAnd they’re losing an average of 28 lbs – in as little as 21 days! \r\n\r\n>>> drink 1 cup every morning to lose “spare-tire” belly in record time: https://tinyurl.com/4f88nb95\r\n\r\nRobert lost 62 lbs of deadly fat clogging up his arteries and completely transformed his body in his 40s. \r\n\r\nHis wife Sonya also lost 38 lbs and 4 dress sizes… and it forced her to shop for a whole new wardrobe!\r\n\r\nTo your good health!',''),(7084,1,1774,'6','Zelda Schwing',''),(7085,1,1774,'2','7060585091',''),(7086,1,1774,'3','schwing.zelda@gmail.com',''),(7087,1,1774,'4','FREE Reputation Video for your Website, LinkedIn, Facebook, Instagram etc.\r\n\r\nWe turn your 5 Star Reviews into SEO videos that show up on Google’s Front Page when your Online Reputation is searched.\r\n\r\nThe Catch - if you enjoy the video, just give us 3 referrals and they will get a 80% Discount. Get your free video here: http://your-top-reviews-to-videos.info',''),(7088,1,1775,'6','Vincent Evard',''),(7089,1,1775,'2','06-98536499',''),(7090,1,1775,'3','contact@motor-import.com',''),(7091,1,1775,'4','Dear,\r\n\r\nI hope this message finds you well. I represent motor-import.com, a trusted and reliable partner for individuals and businesses seeking cost-effective solutions for importing both used and new cars from around the world. We specialize in offering comprehensive services, including shipping, customs clearance, and delivery, to make global car buying a hassle-free and economical experience.\r\n\r\nWhy Choose Motor-Import?\r\n\r\nCompetitive Pricing: At Motor-Import, we are committed to helping our customers save money. We understand that purchasing a car locally can often come with a hefty price tag. Our services are designed to provide a cost-effective alternative, making it possible for you to acquire your dream vehicle for less.\r\n\r\nGlobal Network: With our extensive network of contacts and partners worldwide, we can source vehicles from a variety of locations, ensuring you have access to a wide range of options. Whether you\'re interested in a specific make and model or hunting for unique vehicles, we have you covered.\r\n\r\nExpertise in Customs: Navigating the complexities of international customs regulations can be a daunting task. Our experienced team specializes in customs clearance, ensuring that your vehicle is imported legally and without any unexpected delays or costs.\r\n\r\nSecure Shipping: We prioritize the safety of your investment. Our shipping solutions are designed to protect your vehicle during transit, ensuring it arrives in the same condition it left its origin.\r\n\r\nReliable Delivery: We pride ourselves on timely and secure deliveries. You can trust us to get your car to your doorstep or preferred location promptly.\r\n\r\nVisit our website at Motor-Import Website to learn more about our services and explore the testimonials from our satisfied customers.\r\n\r\nIf you have any questions or are interested in starting the process of importing your desired vehicle, please don\'t hesitate to reach out to us at contact@motor-import.com. Our team is ready to assist you in finding the best car import solution to suit your needs and budget.\r\n\r\nSay goodbye to overpriced local car dealerships and hello to affordable and convenient global car sourcing with Motor-Import. We look forward to helping you import your dream car at a price that\'s both competitive and satisfying.\r\n\r\nBest regards,',''),(7092,1,1776,'6','Roseanne Inouye',''),(7093,1,1776,'3','roseanne.inouye@yahoo.com',''),(7094,1,1776,'4','Are you missing out on potential customers? With 74% of consumers turning to social media for purchasing decisions, you can\'t afford to not post online. Let Badger Digital Marketing Solutions help you stay connected. Click the link below to get started.\r\nContact Badger Digital Marketing Solutions | Digital Agency Services office:414-800-9761 Cell: 414-800-2852',''),(7095,1,1777,'6','Ravi Gehlert',''),(7096,1,1777,'2','393879091',''),(7097,1,1777,'3','virginia.gehlert@gmail.com',''),(7098,1,1777,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7099,1,1778,'6','Nitin Chaudhary',''),(7100,1,1778,'2','1- (209) 813-5119',''),(7101,1,1778,'3','nitin.chaudhary@rankinghattechie.com',''),(7102,1,1778,'4','Hello team juiceelectrical.co.nz,\r\n\r\nI was looking at your website, and while the style and design are outstanding, your website\'s rating cannot be found on the first pages of Google.\r\n\r\nWe can increase targeted traffic to your website so that it appears on Google\'s first page. Bing, Yahoo, AOL, etc.\r\n\r\nDo you want to appear on the front page, then?\r\n\r\nIf interested. May I send you a package/proposal.?\r\n\r\nRegards,\r\nNitin Chaudhary\r\nInternational Project Manager\r\nEmail:- nitin.chaudhary@rankinghattechie.com\r\nContact Number:- +1- (209) 813-5119\r\n\r\n\r\n\r\n\r\n\r\nIf you don’t want me to contact you again about this, reply with “unsubscribe.”',''),(7103,1,1779,'6','Jonathan Byrd',''),(7104,1,1779,'2','295906095',''),(7105,1,1779,'3','taskflowsolutions.us@gmail.com',''),(7106,1,1779,'4','Are you struggling with trying to make money from your email list?\r\n\r\nI’ve been there too.\r\n\r\nI got help - I decided to learn from the best.\r\nIt worked for me, and it will work for you too.\r\n\r\nWatch the short video and learn exactly what to do to take your dead list and turn it into money in the bank.\r\n\r\nhttps://jdbyrd--tiapos.thrivecart.com/the-complete-daily-email-strategy/',''),(7107,1,1780,'6','Landon Carolan',''),(7108,1,1780,'2','7056551653',''),(7109,1,1780,'3','landon.carolan@outlook.com',''),(7110,1,1780,'4','Hi!\r\n\r\nHave you ever written short email messages before? We need to talk if you have that skill set.\r\n\r\nWe are currently looking for new beginner-paid remote workers who want to start work right away!\r\n\r\nAll 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.\r\n\r\nClick here to complete your application if interested: https://tinyurl.com/6nubaee5\r\n\r\nIn 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.\r\n\r\nThe 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.\r\n\r\nInterested? Check out this page before completing an application to get everything important!\r\n\r\nBest of luck!\r\n\r\nCheck here: https://tinyurl.com/6nubaee5',''),(7111,1,1781,'6','Kent Macias',''),(7112,1,1781,'2','484939292',''),(7113,1,1781,'3','macias.kent@gmail.com',''),(7114,1,1781,'4','Wait!\r\n \r\nBefore your next meal do this simple 10-second ritual to put an end to your blood sugar swings and reverse scary diabetes complications…\r\n\r\nThe 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.\r\n \r\nHere it is: https://tinyurl.com/mvha3x2t\r\n \r\n=> 10-second pre-meal ritual to fix your blood sugar and end diabetes complications\r\n \r\nCindy fixed her blood sugar swings and lost 43lbs with this ritual...\r\n \r\nJohn lost 27lbs and reversed his diabetes complications with this ritual...\r\n \r\nNow it\'s your turn.\r\n \r\nhttps://tinyurl.com/mvha3x2t\r\n \r\nPS. 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...',''),(7115,1,1782,'6','Heather Cardona',''),(7116,1,1782,'2','7885998995',''),(7117,1,1782,'3','cardona.heather29@googlemail.com',''),(7118,1,1782,'4','Need working capital for your business but not sure where to start? I can help, reply to me below and I\'ll show you how\r\n\r\nElizabeth Miller\r\nWorking Capital Loan Specialist\r\n295 Seven Farms Drive\r\nSuite C- 201\r\nCharleston, SC 29492\r\nwww.HelloRatesFastFunding.com\r\nelizabeth.miller@helloratesfastfunding.com',''),(7119,1,1783,'6','Neil',''),(7120,1,1783,'2','196972087',''),(7121,1,1783,'3','brandbuildingassistance@outlook.com',''),(7122,1,1783,'4','Hi there,\r\n\r\nThis is Neil, and I\'m here to boost your brand\'s visibility and credibility by sharing your articles on other high-quality websites. This will establish your authority and enhance SEO. \r\nYour articles need to be at least 600 words, or I can write one for you at an extra cost.\r\n\r\nReady to elevate your brand? Reply at Brandbuildingassistance@outlook.com to begin.',''),(7123,1,1784,'6','Victorina Menendez',''),(7124,1,1784,'2','6189198639',''),(7125,1,1784,'3','victorina.menendez@hotmail.com',''),(7126,1,1784,'4','the most reliable way to make cashola online is with an email list, it’s a simple fact.\r\n\r\nBut, 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!\r\n\r\nAnd I just discovered an unknown, underground Internet millionaire who developed the easiest way to build gargantuan email lists with...\r\n\r\n- No product \r\n- No complex websites\r\n- No confusing marketing plan\r\n- No prior experience\r\n- No big advertising budget\r\n- No tech skills\r\n\r\n\r\nA 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 ;-)\r\n\r\nIf 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...\r\n\r\nhttps://tinyurl.com/mrxysr9k\r\n\r\nThis 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!\r\nYou can register for the free workshop here: https://tinyurl.com/mrxysr9k\r\n\r\nI spent weeks convincing him to let me interview him and he finally agreed to share his entire business model TODAY!\r\n\r\nBut you absolutely MUST claim your seat right now, there are less than 50.\r\n\r\nRegister free immediatly: https://tinyurl.com/mrxysr9k\r\n\r\nI will see you there!\r\n\r\nP.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\r\nout you having to risk a single penny on advertising. I’ll be taking copious notes and I hope you will too!\r\n\r\nJoin me for the free training workshop here, now...: https://tinyurl.com/mrxysr9k',''),(7127,1,1785,'6','Ravi Horder',''),(7128,1,1785,'3','horder.jose@gmail.com',''),(7129,1,1785,'4','Hi,\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n I recently grew my client’s organic search traffic with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(7130,1,1786,'6','Roman Caudill',''),(7131,1,1786,'2','6107920843',''),(7132,1,1786,'3','caudill.roman@googlemail.com',''),(7133,1,1786,'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?\r\n\r\nhttps://tinyurl.com/e79djczm\r\n\r\nWould you try it for yourself? Of course right…\r\n\r\nEspecially 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.\r\n\r\n\r\nAnd the best part...it doesn’t matter how old you are when you start.\r\n\r\n=> 7-Sec daily ritual for razor sharp memory (start today): https://tinyurl.com/e79djczm\r\n\r\nLet me know how this works for you, ok...',''),(7134,1,1787,'6','Alessandro Molari',''),(7135,1,1787,'2','00',''),(7136,1,1787,'3','privatecomunication@bestqtf.com',''),(7137,1,1787,'4','Dear valued customer,\r\n\r\nWe introduce ourselves as promoters of specialized business software, designed to enhance operational efficiency across various industry sectors. We are confident that our proposals can significantly contribute to the success of your business.\r\n\r\nYou can find further details and review one of our proposals at the following link https://www.bestqtf.org/webmeetingapp\r\n\r\nWe remain at your disposal for any clarifications \r\n\r\nBest regards,\r\nAlessandro Molari\r\n\r\nOpt out of future messages by replying to the message and saying you opt out and entering your website domain.',''),(7138,1,1788,'6','Alex Hayter',''),(7139,1,1788,'2','1753728394',''),(7140,1,1788,'3','alex.hayter@gmail.com',''),(7141,1,1788,'4','Is juiceelectrical.co.nz struggling with creating engaging content and managing social media effectively?\r\n\r\nLook no further than AIFollow – the ultimate solution for seamless social media management and content creation.\r\n\r\nAIFollow is a game-changing platform integrating seamlessly with your social media accounts, providing a centralized space for content creation, scheduling, and engagement enhancement.\r\n\r\n-- AI-Powered Content Creation --\r\n\r\nEffortlessly craft captivating posts with our AI Playground tools like \"Create from News\" (curated news relevant to your business). \"Ask AI To Write\" (generate content with specific prompts). \"Create from Google Search\" (Google Insights from your Audience) \"Create from Raw Content, and many more!\r\n\r\n-- Scheduling & Automation --\r\n\r\nMaximize efficiency by planning and automating posts across major platforms like Facebook, Instagram, Twitter, LinkedIn, Medium, Pinterest and TikTok\r\n\r\n-- AIFollow\'s Analytics Feature --\r\n\r\nComprehensive view of data and statistics across various social media platforms, helping you make informed decisions and optimize your strategy.\r\n\r\n-- Explore Diverse Topics --\r\n\r\nThe Playground allows you to seamlessly explore and generate content ideas directly from the editor! Never run out of inspiration!\r\n\r\n-- Verified Facts & Stats --\r\n\r\nGet access to cited facts and statistics that lend credibility and authority to your articles. Elevate your content with verified data!\r\n\r\n-- Understand Your Audience --\r\n\r\nAIFollow\'s AI understands your audience\'s intents, helping you tailor your content to resonate with your readers. Deliver what they seek!\r\n\r\n-- Address Audience Queries --\r\n\r\nwhat questions your audience has? AIFollow\'s Playground identifies these, aiding you in creating content that truly connects! Answering their needs!\r\n\r\nGet Lifetime Access to AIFollow today!\r\nhttps://bit.ly/AIFollowrLifetimeAccess\r\n\r\nDive into the realm of creativity with AIFollow\'s AI image generation feature. Unleash the power of artificial intelligence to craft visually stunning images that captivate your audience and elevate your brand. Generate compelling visuals tailored to your unique style and voice.\r\n\r\nYou can also explore the expansive Media Gallery through AIFollow\'s intuitive Explore feature. Immerse yourself in a curated collection of videos, GIFs, and images, selected to enhance your social media presence. From engaging your audience with captivating videos to choosing the perfect image for your next post, Followr.ai provides a rich resource for managing and elevating your content strategy across a variety of social media platforms.\r\n\r\nElevate your social media game with AIFollow – where innovation meets creativity\r\n\r\nWith our Analytics module, you can effortlessly access vital insights about your posts. Here are some key metrics you can expect:\r\n\r\nImpressions: Measure how visible your content is to your audience.\r\n\r\nEngagement: Understand your connection with your audience by tracking likes, comments, and shares.\r\n\r\nEngagement Rate: Unveil the effectiveness of your content in engaging your followers.\r\n\r\nPost Count: Keep an eye on your posting frequency and content strategy.\r\n\r\nUnlock a world of creativity with AIFollow\'s Media Templates feature. Dive into our extensive collection of thoughtfully curated templates, offering you a diverse range of options to craft engaging and visually appealing content for your social networks. Elevate your social media presence with ease, thanks to the versatility and convenience provided by this feature\r\n\r\nSmart Scheduling and Automation with Seamless Social Media Integration\r\n\r\nConnect with and effortlessly manage all your accounts in one centralized hub.\r\n\r\nFacebook\r\nInstagram\r\nTwitter\r\nPinterest\r\nLinkedIn\r\nMedium\r\nTikTok\r\nTake the hassle out of posting. Our robust calendar and automation tools allow you to schedule and post content across multiple platforms at the perfect times, optimizing engagement.\r\n\r\nGet Lifetime Access to AIFollow today!\r\nhttps://bit.ly/AIFollowrLifetimeAccess',''),(7142,1,1789,'6','Tanya Utting',''),(7143,1,1789,'2','021 087 63266',''),(7144,1,1789,'3','tanyautwebb@gmail.com',''),(7145,1,1789,'4','Hi, could you please give me a call to book in a visit - the lightswitch in my bathroom sparked etc. today and now doesn\'t work (mid 60\'s house). I have removed the bulb but will need to be fixed. I have used your services before so should be in your system!\r\nCheers,\r\nTanya',''),(7146,1,1790,'6','J. Lee',''),(7147,1,1790,'3','jlee.letters@gmail.com',''),(7148,1,1790,'4','Hi,\r\n\r\nI\'m looking for ways to minimise the heat loss through the gaps/holes in the ceiling--where the downlights are installed.\r\n\r\nThe quote is for unit 9, 75 Gloucester St. \r\n\r\nThanks\r\n\r\nJ.',''),(7149,1,1790,'5','google maps',''),(7150,1,1791,'6','Megan Atkinson',''),(7151,1,1791,'2','7002532719',''),(7152,1,1791,'3','meganatkinson149@gmail.com',''),(7153,1,1791,'4','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- We guarantee to gain you 300-1000+ followers per month.\r\n- People follow you because they are interested in you, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nMegan\r\n\r\nUnsubscribe here: https://removeme.click/unsubscribe.php?d=juiceelectrical.co.nz',''),(7154,1,1792,'6','Keith Robinson',''),(7155,1,1792,'2','211746247',''),(7156,1,1792,'3','keith893robinson@gmail.com',''),(7157,1,1792,'4','Good morning, I require an electrician to remove wall bathroom light fixture to make safe for tiling and also remove old ceiling light/fan and install new one. Cheers',''),(7158,1,1792,'5','Your company has done great work at my house before',''),(7159,1,1793,'6','Stacey Cunningham',''),(7160,1,1793,'2','0211499672',''),(7161,1,1793,'3','staceybird@rocketmail.com',''),(7162,1,1793,'4','Hi there, Can we please book in a heat pump service? Address is 7 Farnborough Way. We will leave a key out if you are comfortable with this?',''),(7163,1,1793,'5','Used previously',''),(7164,1,1794,'6','Marita',''),(7165,1,1794,'2','1373502150',''),(7166,1,1794,'3','marita.decicco@gmail.com',''),(7167,1,1794,'4','Hello,\r\n\r\nAre you suffering from a drop in traffic after the latest Google updates? Are your AI-generated posts getting removed from search results faster than you can create them?\r\n\r\nDon\'t worry, because I\'ve got some good news for you: backlinks still work. And I\'ve got the proof to back it up. Check out this insightful experiment by Ahrefs: https://www.youtube.com/watch?v=dHW-izBq2-I\r\n\r\nBut that\'s not all. I\'m here to offer you a solution that will get you ranking on the first page of Google for multiple keywords and boost your site\'s trust on Google\'s data.\r\n\r\nExcited?\r\n\r\nThen take a look at my Fiverr Pro gig:\r\n\r\nhttps://go.fiverr.com/visit/?bta=570412&brand=fp&landingPage=https2F%2Fwww.fiverr.com2Fdo-seo-analysis-of-your-website3A2Fwww.fiverr.com%2Fana_seo_85%2Fdo-seo-wizard-to-rank-up-on-google-ranking\r\n\r\nDon\'t let those Google updates hold you back. Let\'s work together to get your site back on top!\r\n\r\nBest regards,',''),(7168,1,1795,'6','Lina Fine',''),(7169,1,1795,'2','365984005',''),(7170,1,1795,'3','fine.lina8@gmail.com',''),(7171,1,1795,'4','Hi,\r\n\r\nThis deal gives you access to Reachinbox with unlimited email accounts, AI Generated E-mails, Automated warmups, unified inbox and agency whitelabelling.\r\n\r\nNo need to pay more again for any expensive email marketing tool\r\n\r\nGet the Life time deal now click here to start ====> www.reachinbox.ai/insider-ltd?ref=Omar\r\n\r\n\r\nRegards',''),(7172,1,1796,'6','Tammi Hartin',''),(7173,1,1796,'2','4367431',''),(7174,1,1796,'3','hartin.tammi@gmail.com',''),(7175,1,1796,'4','Hi,\r\n\r\nMaximize Website Visibility with Premium Traffic Solutions.\r\n\r\nConnect with Genuine Human Traffic: Increase Your Reach!\r\n\r\nUncover Everything: Details Within\r\nhttps://cx2e.short.gy/RealHuman?juiceelectrical.co.nz\r\n\r\nThank you and have a good day,\r\n\r\nTammi',''),(7176,1,1797,'6','Alex Mercer',''),(7177,1,1797,'2','736244114',''),(7178,1,1797,'3','alex@badadeal.com',''),(7179,1,1797,'4','Conversion Gorilla Can Transform Your Website and Skyrocket Your Success. Here\'s why you need it:\r\n\r\n- Boost conversions and sales effortlessly.\r\n- Create urgency with countdown timers to increase clicks and sales.\r\n- Drive traffic to your affiliate promotions and time-sensitive deals.\r\n- Personalize visitor experience with welcome and thank you messages.\r\n- Works seamlessly on any type of website, including landing pages, blogs, and shopping carts.\r\n- Easy-to-use dashboard for quick customization.\r\n- Smart triggering options ensure bars appear at the right time for maximum effectiveness.\r\n- Fully customizable appearance to match your website\'s branding.\r\n- Flexible bar positioning options to optimize visibility.\r\n- Fully hosted platform—no installation required.\r\n- 30-day satisfaction guarantee for peace of mind.\r\n\r\nDon\'t miss out on this opportunity to supercharge your online business! Discover why Conversion Gorilla is the solution you\'ve been looking for. \r\nClick the link below to start grabbing more attention and boosting your sales today!\r\n\r\nhttps://www.badadeal.com/conversion-gorilla/',''),(7180,1,1798,'6','Margo Davidson',''),(7181,1,1798,'2','9352565628',''),(7182,1,1798,'3','margo.davidson@hotmail.com',''),(7183,1,1798,'4','Did you hear about the unusual rice method that liquifies fat cells as you sleep?\r\n\r\nClinical 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!\r\n\r\nBefore you go to sleep tonight, try it for yourself...\r\n\r\n>>> 1 Unusual Rice Method That Liquifies Fat As You Sleep: https://tinyurl.com/exoticricemethod24\r\n\r\nDon\'t waste another second on:\r\n\r\nX--- Fad diets that are impossible to enjoy...\r\nX--- Gym memberships or fitness apps...\r\nX--- Calorie counting\r\n\r\nInstead, just try this one easy fat-dissolving rice method before you sleep tonight and drop lbs of stubborn fat by morning.\r\n\r\nTo your health,\r\n\r\nWil\r\n\r\nPS: Check it now: https://tinyurl.com/exoticricemethod24',''),(7184,1,1799,'6','Helen Lord',''),(7185,1,1799,'2','0220605944',''),(7186,1,1799,'3','helendon.lord@gmail.com',''),(7187,1,1799,'4','Have one small cold bedroom that may need a heat pump.',''),(7188,1,1799,'5','Fb',''),(7189,1,1800,'6','Birgit',''),(7190,1,1800,'2','6139456492',''),(7191,1,1800,'3','birgit.clune@outlook.com',''),(7192,1,1800,'4','Hey there,\r\n\r\nAre you struggling to keep up with Google\'s ever-changing algorithms? Frustrated with the constant fight against AI-generated content deindexing?\r\n\r\nFear not, because there\'s still hope for your website. Backlinks are as powerful as ever, and I\'ve got the evidence to prove it. Check out this informative experiment conducted by Ahrefs: https://www.youtube.com/watch?v=dHW-izBq2-I\r\n\r\nBut let\'s not stop there. With my Fiverr Pro gig, I can help you enhance your SEO efforts and propel your website to the top of Google\'s search results.\r\n\r\nReady to take the next step towards SEO success?\r\n\r\nMy Fiverr Pro gig: https://go.fiverr.com/visit/?bta=570412&brand=fp&landingPage=https2F%2Fwww.fiverr.com2Fdo-seo-analysis-of-your-website3A2Fwww.fiverr.com%2Fana_seo_85%2Fdo-seo-wizard-to-rank-up-on-google-ranking\r\n\r\nLet\'s boost your Google traffic.',''),(7193,1,1801,'6','Ravi Blank',''),(7194,1,1801,'2','3773868507',''),(7195,1,1801,'3','dominique.blank@gmail.com',''),(7196,1,1801,'4','Hi,\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n I recently grew my client’s organic search traffic with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(7197,1,1802,'6','Yufeng',''),(7198,1,1802,'3','mr.mojiji@proton.me',''),(7199,1,1802,'4','Hello, Can you help wire a power timer to the hot water cylinder? I\'m based in Rolleston. Could you give me a quote and let me know when you will be available? Thanks. \r\n\r\nThis is the switch I have and intend to install. BTW, is SDOC needed for the switch to be installed? https://www.dicksmith.co.nz/dn/buy/zoestore-thc15a-digital-lcd-power-programmable-timer-switch-relay-16a-amp-electronic-h0k8-e13798/',''),(7200,1,1803,'6','Ravi Gowlland',''),(7201,1,1803,'2','8643191037',''),(7202,1,1803,'3','lucile.gowlland@gmail.com',''),(7203,1,1803,'4','Hi,\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n I recently grew my client’s organic search traffic with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(7204,1,1804,'6','Ravi Hagan',''),(7205,1,1804,'2','442637825',''),(7206,1,1804,'3','bess.hagan39@gmail.com',''),(7207,1,1804,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7208,1,1805,'6','Theresa Smith',''),(7209,1,1805,'2','635451095',''),(7210,1,1805,'3','clegg.justina86@googlemail.com',''),(7211,1,1805,'4','Hello,\r\n\r\nDo you sometimes find yourself in a tug of war between work and fitness? We have the perfect solution for you - Elebands! \r\n\r\nElebands 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.\r\n\r\nThe 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. \r\n\r\nPlus! 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.\r\n\r\nWith 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:\r\n\r\n1. Burn Calories: Effortlessly burn up to 1,500 calories daily, toning your body as you go about your day.\r\n\r\n2. Natural Weight Loss: Say goodbye to intense workouts and stressful diets. Elebands helps you lose weight naturally.\r\n\r\n3. Build Strength: Develop lean muscles and enhance your strength as you carry out your regular activities.\r\n\r\nImagine achieving your dream body without stepping foot in a gym or following a strict diet plan. With Elebands, it\'s possible.\r\n\r\nMany 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.\r\n\r\nLet Elebands be your partner in achieving a fit and healthy lifestyle. Start your transformation today!\r\n\r\nWarm regards,\r\n\r\nTheresa Smith\r\nBrand Ambassador\r\nElebands USA\r\n\r\nVisit our website NOW! https://bit.ly/elebands-special',''),(7212,1,1806,'6','Finlay Walker',''),(7213,1,1806,'2','476 1289',''),(7214,1,1806,'3','joshua@airapidprofits.com',''),(7215,1,1806,'4','Hello, I\'vegot some leads that are interested in your company, who/where can I send them?',''),(7216,1,1807,'6','Jeannine Smartt',''),(7217,1,1807,'2','887579502',''),(7218,1,1807,'3','mailbangerusa@gmx.com',''),(7219,1,1807,'4','Since 2012 Mailbanger.com has been selling OPTIN marketing lists with customer name/contact information to many small and startup businesses.\r\nMarket direct to millions of cutomers who have opted in to receive offers from third parties!\r\n\r\nwe have lists for USA/UK/Australia/Canada and many more countries\r\n\r\n\r\nHere are some of our packages:\r\n\r\n2023 USA Business Database with free LINKEDIN database:\r\nhttps://www.mailbanger.com/us-business-database\r\n\r\n\r\nUSA Business database with executive contact info - Over 30 million records:\r\nhttps://www.mailbanger.com/2020-usa-business-database-executive-edition/\r\n\r\n\r\n2022-2023 USA residential Homeowners list - Over 200 million records\r\nhttps://www.mailbanger.com/2021-usa-homeowner-and-residential-248-million-records/\r\n\r\n\r\n2024 100 million USA consumers with age,cell/home phone/address/email:\r\nhttps://www.mailbanger.com/100-million-usa-consumers-mega-edition\r\n\r\n\r\n2024 Cell/SMS Marketing package of over 40 million USA Customers:\r\nhttps://www.mailbanger.com/2024-usa-42-million-consumer-cell-phone-numbers/\r\n\r\n\r\nUSA Charity donors:\r\nhttps://www.mailbanger.com/usa-charity-donor-leads\r\n\r\nAustralia residential and consumer leads:\r\nhttps://www.mailbanger.com/mailing-lists-australia/\r\n\r\n850 000 Weight loss customers:\r\nhttps://www.mailbanger.com/weight-loss-diet-leads-lists\r\n\r\n\r\nwe have many more lists - stop wasting thousands on pay per click or other expensive forms of advertising, and market direct for super affordable prices.\r\n\r\nAll lists are updated regularly, buy once and its yours so you can use them for many campaigns. They come in Excel files with sortable categories\r\n\r\n\r\nBecome an Affiliate with Mailbanger and earn 20% - average sale is $500!\r\nhttps://www.mailbanger.com/affiliate-center/\r\n\r\n\r\nRegards',''),(7220,1,1808,'6','Kaspar Bennett',''),(7221,1,1808,'2','098879496',''),(7222,1,1808,'3','kasparbennett82@gmail.com',''),(7223,1,1808,'4','\"Kia ora,\r\n\r\nWe’re a NZ based online marketing company.\r\n\r\nI was on your website and wanted to share some ideas and tips for improving your online marketing efforts.\r\n\r\nCould I send you a free video (with a website report) specifically for your business, online profile and how you could improve it? It will show you which people who need your service can reach you directly through your website. So that you can increase your Leads & revenue.\r\n\r\nThe advice is complimentary, no strings attached.\r\n\r\nPlease email us back for a free video review of your website.\r\n\r\nNgā Mihi,\r\nKaspar Bennett\r\nkasparbennett82@gmail.com\r\nMarketing Consultant\r\n\r\n\r\n\r\nIf you’re NOT interested, simply reply “NO” and I will not contact you again.\"',''),(7224,1,1809,'6','Steven Clark',''),(7225,1,1809,'2','329443991',''),(7226,1,1809,'3','steven@rapidprofitmachine1.com',''),(7227,1,1809,'4','Can I buy your Facebook page and your Instagram account?\r\nLet me know here\r\nhttps://sellyourfbpage.com/',''),(7228,1,1810,'6','Kenneth White',''),(7229,1,1810,'2','432684592',''),(7230,1,1810,'3','kenneth@adamhustle.com',''),(7231,1,1810,'4','May I purchase your Instagram account and your Facebook page?\r\nPlease let me know here\r\nhttps://sellyourfbpage.com/',''),(7232,1,1811,'6','Noeline',''),(7233,1,1811,'2','0221200281',''),(7234,1,1811,'3','duckmanton2@gmail.com',''),(7235,1,1811,'4','Hi, we are wanting a camping plug connected to house for a power source to sleep out, was wanting a quote please',''),(7236,1,1811,'5','Goggle',''),(7237,1,1812,'6','Maricruz Benham',''),(7238,1,1812,'2','3547954995',''),(7239,1,1812,'3','benham.maricruz54@gmail.com',''),(7240,1,1812,'4','Hey, it\'s been a proper rollercoaster journey for me,\r\n\r\nbut finally I\'ve managed to build platform connecting ppl with mobile car valeters (think Uber Eats for car cleaning!). Came upon your site & thought you might like the idea.\r\n\r\nDw I\'m not about to sell you backlinks or a cheap website. lol\r\n\r\nIn 2 weeks I\'ve launched a full MVP - valeters can accept online bookings & payments (I take an 18% cut). Also I\'ve automated free listings for UK valeting companies, already indexed & ranking on Google.\r\n\r\nAs a fellow founder, I know you know the challenges with new companies. I\'m basically looking to raise £60k for 15% equity to fuel growth.\r\n\r\nIf keen, let\'s chat more on a call. No pressure tho. Worst case, we can swap founder war stories! Always appreciate advice.\r\n\r\nThanks for your time mate, I know it\'s precious!\r\n\r\nCheers,\r\nJack\r\njack@wearepython.com',''),(7241,1,1813,'6','Richard Thomas',''),(7242,1,1813,'2','2147826654',''),(7243,1,1813,'3','matthewm@aibestsuite.com',''),(7244,1,1813,'4','Interested in acquiring your Facebook page and Instagram. Are you interested in selling it?\r\nIf so I just need a little info here please\r\nhttps://sellyourfbpage.com/',''),(7245,1,1814,'6','Janina',''),(7246,1,1814,'2','353914288',''),(7247,1,1814,'3','emerson.janina3@hotmail.com',''),(7248,1,1814,'4','Howdy mate,\r\n\r\nJust a heads up!! Kucoin\'s giving away $100 USD to new sign-ups! Interested? Just click on this link to claim your reward: https://www.kucoin.com/land/earn-crypto-rewards-by-referring?rcode=QBA38A3S&utm_source=cashgiftpackage](https://www.kucoin.com/land/earn-crypto-rewards-by-referring?rcode=QBA38A3S&utm_source=cashgiftpackage)\r\n\r\nBest,',''),(7249,1,1815,'6','Sabine Devito',''),(7250,1,1815,'2','3303309901',''),(7251,1,1815,'3','devito.sabine@gmail.com',''),(7252,1,1815,'4','Hi,\r\n\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\nI recently grew my client’s organic search traffic with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(7253,1,1816,'6','Brent Fouch',''),(7254,1,1816,'2','06-15425439',''),(7255,1,1816,'3','brentfouch@aiviralvideo.com',''),(7256,1,1816,'4','May I buy either your Facebook page or your Instagram account or both?\r\nPlease tell me here\r\nhttps://sellyourfbpage.com/',''),(7257,1,1817,'6','Masonphync',''),(7258,1,1817,'2','87376372535',''),(7259,1,1817,'3','kaenquirynicholls@gmail.com',''),(7260,1,1817,'4','Aloha, makemake wau eʻike i kāu kumukūʻai.',''),(7261,1,1817,'5','AliExpress',''),(7262,1,1818,'6','+16822731392',''),(7263,1,1818,'2','89639769782',''),(7264,1,1818,'3','readytostartcr@gmail.com',''),(7265,1,1818,'4','The best thing in life is freedom. Freedom comes from material independence. \r\n<a href=https://script.google.com/macros/s/AKfycbxHfAUiTMCCIUnTBdxT5SHiTrbFZfnnwo17oFpNUxAABH5IJg6bZPHfR-o4l31uUY_G/exec><b><u>Discover your financial independence now!</b></u></a>',''),(7266,1,1818,'5','+16822731392',''),(7267,1,1819,'6','Shannon Fitts',''),(7268,1,1819,'3','shannon.fitts76@outlook.com',''),(7269,1,1819,'4','Hello there, \r\n\r\nYou all want your website to be rockstars, right? If you feel like yours needs a little boost, I can help. I\'m an SEO whiz on Fiverr, and I can get your site ranking higher on Google searches without any complicated mumbo jumbo. Curious? \r\n\r\nLook at my gig https://go.fiverr.com/visit/?bta=570412&brand=fp&landingPage=https252F%252Fwww.fiverr.com252Fdo-seo-backlinks-high-quality-manual-link-building-service-for-google-ranking.\r\n\r\nRegards,',''),(7270,1,1820,'6','kyre S',''),(7271,1,1820,'2','351427498',''),(7272,1,1820,'3','hey@kyre9958.com',''),(7273,1,1820,'4','Hello there,\r\n\r\nYou don’t know me. And I am really sorry to be contacting you in such way… I have been trying to take the situation under control for a while but I don’t know what to do other than to ask for help.\r\n\r\nMy name is Kyre. I’m from Ukraine. The region where I grew up in my home town (Kharkiv) has been pretty much destroyed. It looks like this now: https://imgur.com/a/8QBgG0Z\r\n\r\nBut I and my girlfriend who I’ve been together with for 9 years have evacuated ourselves just in time a while ago. So we are safe.\r\n\r\nThe problem has been that it’s been really hard for me to get enough work. And we have been struggling to just pay for rent and basic needs.\r\n\r\nThe worst part is that my girlfriend has a lipoma which needs to be taken care of, so she needs a surgery. Plus she is missing 4 teeth due to Anodontia and it’s really important to get them done sooner rather than later.\r\n\r\nWe are already in quite a big debt and all the medical bills are in the range of $6k or so.\r\n\r\nThis is why I’m writing to you. I don’t expect you to open this message, or reply. But in the rare case you do, every bit of money can help a lot right now.\r\n\r\nI have a PayPal account: kyre9958@gmail.com I also have bank (ACH / SWIFT / IBAN) accounts if that works better.\r\n\r\nI’m very sorry to be asking you for money. I know the situation in Ukraine must have gotten tiresome for everyone at this point. And everyone has their own problems.\r\n\r\nPlease reply if you have any questions. If I got on your nerves and caught you in a bad mood with this cold message… please forgive me, and just delete it.\r\n\r\nI wish you all the best,\r\nKyre',''),(7274,1,1821,'6','Amie Flanigan',''),(7275,1,1821,'2','474144701',''),(7276,1,1821,'3','amie.flanigan@gmail.com',''),(7277,1,1821,'4','Good afternoon,\r\n\r\nAre you ready for Finest Online Casino Adventure?\r\n\r\nThis casino boasts 5,250 top-tier games and industry-leading bonuses. With a generous welcome offer for newcomers and ongoing promotions for regulars, players can enjoy extended gaming sessions and increased winnings.\r\n\r\nSecure Your Exclusive Bonus: Sign Up Today!\r\nhttps://track.aso1.net/link?z=116268\r\n\r\nLady Luck Smiles Upon You: Enjoy Our Casino\'s Game Selection\r\n\r\nAmie',''),(7278,1,1822,'6','Phil Stewart',''),(7279,1,1822,'2','342-123-4456',''),(7280,1,1822,'3','noreplyhere@aol.com',''),(7281,1,1822,'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!\r\n\r\nP. Stewart\r\nEmail: qqdkfq@mail-to-form.xyz\r\nSkype: form-blasting',''),(7282,1,1823,'6','+16822731392',''),(7283,1,1823,'2','85392341924',''),(7284,1,1823,'3','readytostartcr@gmail.com',''),(7285,1,1823,'4','The best thing in life is freedom. Freedom comes from material independence. \r\n<a href=https://script.google.com/macros/s/AKfycbyqb5wGkDSY1EEYzIe7DWK0Hs9eBXiapGbIxVCNppD-ND5b7lpeKrzlaWRU8glIxjBH-g/exec><b><u>Discover your financial independence now!</b></u></a>',''),(7286,1,1823,'5','+16822731392',''),(7287,1,1824,'6','Robertphync',''),(7288,1,1824,'2','83928828811',''),(7289,1,1824,'3','lucido.leinteract@gmail.com',''),(7290,1,1824,'4','Hallo, ek wou jou prys ken.',''),(7291,1,1824,'5','Google',''),(7292,1,1825,'6','Tonja Hammer',''),(7293,1,1825,'2','2022694387',''),(7294,1,1825,'3','tonja.hammer@gmail.com',''),(7295,1,1825,'4','I\'m glad! My name is Tonja Hammer. \r\n \r\nBe Attractive! \r\n \r\nGo to the site TIARASHOP EUROPE if you need Ladie\'s Bodysuits. \r\n \r\nNow everything is discounted! \r\n \r\nFollow the link and use code \"VIP\" for an extra discount in Women\'s bodysuit short sleeve: \r\n \r\nhttps://bit.ly/413BZw9 \r\n \r\nBest regards, Tonja Hammer',''),(7296,1,1826,'6','Rachelle Newkirk',''),(7297,1,1826,'2','7915288606',''),(7298,1,1826,'3','newkirk.rachelle@googlemail.com',''),(7299,1,1826,'4','Hi there,\r\n\r\nI recently came across your website on juiceelectrical.co.nz and found it very interesting. I was curious, have you ever considered creating an eBook out of your website content?\r\n\r\nThere 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.\r\n\r\nOf course, I understand this might not be something you\'re interested in, but I just wanted to share the possibility!\r\n\r\nAnyway, here is the tool I had in mind. It\'s only $16.95 so worth checking out: \r\nhttps://furtherinfo.org/lgb7\r\n\r\nBest regards,\r\nRachelle\r\n\r\nUnsubscribe: https://removeme.click/wp/unsubscribe.php?d=juiceelectrical.co.nz',''),(7300,1,1827,'6','Robertphync',''),(7301,1,1827,'2','81765715157',''),(7302,1,1827,'3','lucido.leinteract@gmail.com',''),(7303,1,1827,'4','Прывітанне, я хацеў даведацца Ваш прайс.',''),(7304,1,1827,'5','Google',''),(7305,1,1828,'6','Clint Whittell',''),(7306,1,1828,'2','744-819-9243',''),(7307,1,1828,'3','clint.whittell@gmail.com',''),(7308,1,1828,'4','Hey hey!\r\n\r\nIt\'s been some time, but I recently stumbled upon a very negative opinon online about juiceelectrical.co.nz and thought it was important to message you guys to confirm this review. \r\n\r\nIt seems like there\'s some rumors circulating that could be harmful to your reputation. \r\nKnowing how quickly rumors can spiral and hoping not you to be unprepared, I felt the need to warn you.\r\n\r\nHere\'s where I found the info:\r\n\r\nhttps://ibit.ly/Krket \r\n\r\nI\'m hoping it\'s all a simple confusion, but I thought it best you should know!\r\n\r\nAll the best to you,\r\nClint',''),(7309,1,1829,'6','Murray Swift Seymore',''),(7310,1,1829,'2','1668668919',''),(7311,1,1829,'3','seymore.pedro@msn.com',''),(7312,1,1829,'4','Hi,\r\n\r\nI am Murray Swift a Marketing Expert Featured on Forbes , I and My Team and I Specialize in Growing Instagram Reach Organically without wasting your money in useless paid ads .\r\n\r\nJOIN OUR HAPPY clients and let us grow your Instagram Page now\r\n\r\nLets chat click here to Know what you are looking exactly for =====> https://tinyurl.com/wrbkauz7\r\n\r\nSee Inside\r\n\r\nRegards',''),(7313,1,1830,'6','Barbra Supple',''),(7314,1,1830,'2','3906303228',''),(7315,1,1830,'3','mailbangerusa@gmx.com',''),(7316,1,1830,'4','Since 2012 Mailbanger.com has been selling OPTIN marketing lists with customer name/contact information to many small and startup businesses.\r\nMarket direct to millions of cutomers who have opted in to receive offers from third parties!\r\n\r\nwe have lists for USA/UK/Australia/Canada and many more countries\r\n\r\n\r\nHere are some of our packages:\r\n\r\n2023 USA Business Database with free LINKEDIN database:\r\nhttps://www.mailbanger.com/us-business-database\r\n\r\n\r\nUSA Business database with executive contact info - Over 30 million records:\r\nhttps://www.mailbanger.com/2020-usa-business-database-executive-edition/\r\n\r\n\r\n2022-2023 USA residential Homeowners list - Over 200 million records\r\nhttps://www.mailbanger.com/2021-usa-homeowner-and-residential-248-million-records/\r\n\r\n\r\n2024 100 million USA consumers with age,cell/home phone/address/email:\r\nhttps://www.mailbanger.com/100-million-usa-consumers-mega-edition\r\n\r\n\r\n2024 Cell/SMS Marketing package of over 40 million USA Customers:\r\nhttps://www.mailbanger.com/2024-usa-42-million-consumer-cell-phone-numbers/\r\n\r\n\r\nUSA Charity donors:\r\nhttps://www.mailbanger.com/usa-charity-donor-leads\r\n\r\nAustralia residential and consumer leads:\r\nhttps://www.mailbanger.com/mailing-lists-australia/\r\n\r\n850 000 Weight loss customers:\r\nhttps://www.mailbanger.com/weight-loss-diet-leads-lists\r\n\r\n\r\nwe have many more lists - stop wasting thousands on pay per click or other expensive forms of advertising, and market direct for super affordable prices.\r\n\r\nAll lists are updated regularly, buy once and its yours so you can use them for many campaigns. They come in Excel files with sortable categories\r\n\r\n\r\nBecome an Affiliate with Mailbanger and earn 20% - average sale is $500!\r\nhttps://www.mailbanger.com/affiliate-center/\r\n\r\n\r\nRegards',''),(7317,1,1831,'6','Williams Petersen',''),(7318,1,1831,'2','690738459',''),(7319,1,1831,'3','petersen.williams@yahoo.com',''),(7320,1,1831,'4','Have you recently experienced a mysterious drop in website traffic?\r\n\r\nYou’re not alone. Google’s Helpful Content Update (HCU) has shaken things up, leaving many websites struggling to rank. But fear not! This comprehensive guide is here to be your hero.\r\n\r\nPresenting -> Mastering Google HCU Recovery: The Ultimate Guide to Reclaim Your Lost Traffic\r\n\r\nWritten in a clear and engaging style, this book is your one-stop shop for understanding and recovering from the HCU. Inspired by his successful approach, author breaks down complex SEO concepts into easy-to-grasp steps.\r\n\r\nAccess Mastering Google HCU Recovery: The Ultimate Guide, here\r\nhttps://bit.ly/3JhYrJI\r\n\r\nInside, you’ll discover:\r\n\r\nThe core principles of HCU: Learn what Google prioritizes in content, including user-focus, E-A-T (Expertise, Authoritativeness, and Trustworthiness), relevance, freshness, and website usability.\r\n\r\nActionable strategies to navigate the update: No more confusion! This book provides clear steps for analyzing backlinks, optimizing keywords, crafting HCU-friendly content, and leveraging AI ethically.\r\n\r\nCombating manipulative practices: Discover how to avoid search ranking spam and focus on creating high-quality content that genuinely informs and engages your audience.\r\n\r\nThe power of Information Gain: This revolutionary concept helps you understand what truly valuable information your target audience craves. Learn how to implement this strategy to create content that attracts and retains visitors.\r\n\r\nPractical measurement techniques: Stop guessing and start measuring! The book equips you with tools to track your progress and ensure your HCU recovery efforts are successful.\r\n\r\nCoping with the emotional rollercoaster: Let’s face it, dealing with website traffic loss can be stressful. This guide offers guidance on overcoming frustration, confusion, discouragement, and uncertainty.\r\n\r\nDon’t let Google’s update leave your website in the dust!\r\n\r\nMastering Google HCU Recovery is your key to getting back on track, attracting qualified traffic, and achieving long-term SEO success.\r\n\r\nGrab your copy today and reclaim your rightful place at the top of search results!\r\n\r\nhttps://bit.ly/3JhYrJI\r\n\r\n-- Table of Contents: --\r\n\r\nUnderstanding Google’s Helpful Content Update (HCU)\r\n 1. User-Focused Content:\r\n 2. E-A-T Principles:\r\n 3. Content Relevance & Depth\r\n 4. Content Freshness & Regular Updates\r\n 5. Website Usability\r\nUser-Focused Content: The Heart of HCU Success\r\nE-A-T: Building Trust and Authority for HCU Success\r\nContent Relevance & Depth: Striking the HCU Balance\r\nContent Freshness & Regular Updates: Staying Relevant in the HCU Era\r\nWebsite Usability: A Cornerstone of HCU Success\r\nThe Impact of Google HCU on Your Website: A Navigational Guide\r\nUnderstanding the Impact\r\nBacklink Analysis: Building Trustworthy Backlinks for HCU Success\r\nNavigating Google’s Content Update: Strategies for Successful Blogs\r\nAnalyzing Organic Keywords and Google Search Central\r\nEnhancing Content with Images, Headlines, and SEO Techniques\r\nStaying Proactive in Navigating Google’s Algorithm Updates\r\nGoogle’s view on AI-generated content\r\nAgainst Manipulative Practices\r\nAI-Powered Detection Methods\r\nFocus on User Value\r\nTransparency is Key\r\nSearch Ranking Spam\r\nSpecific Examples of Spam with Automation/AI\r\nFocus on Quality\r\nLeveraging Information Gain for Enhanced Website TrafØc in a Post-HCU Landscape\r\nUnderstanding Information Gain\r\nInformation Gain and HCU\r\nImplementing Information Gain for TrafØc Growth\r\nCreating Information Gain Content\r\nMeasuring Information Gain Success\r\nDiving Deeper: Measuring Content Value with Information Gain\r\nUnderstanding the Formula\r\nMetrics for Measuring Information Gain\r\nIndirect Measurement Techniques\r\nEnhancing Website Traffic with Information Gain Strategy\r\nGenerating Insights with AI\r\nEnhancing Content with Images\r\nOptimizing Articles for Search Engines\r\nHow to cope with the frustration of having lost all the traffic to your website?\r\nFrustration\r\nConfusion\r\nDiscouragement\r\nDeflation\r\nUncertainty\r\n\r\nRead the book now\r\nhttps://bit.ly/3JhYrJI',''),(7321,1,1832,'6','Zachery Hedberg',''),(7322,1,1832,'2','171973332',''),(7323,1,1832,'3','hedberg.zachery22@yahoo.com',''),(7324,1,1832,'4','Imagine if you can invest and own Bitc0in… \r\n\r\nWithout risking a single dollar of your own money…\r\n\r\nYes, imagine owning hundreds or thousands of dollars worth of Crypt0… without actually paying for it… \r\n\r\nI know it sounds like the newest scam on the market… \r\n\r\nOr at least that’s what I thought… \r\n\r\nUntil my friend, Seyi showed me his latest creation… \r\n\r\nCoinz \r\n\r\nIt’s the world’s first AI app that allows YOU to to turn any run-of-the-mil mobile phone, or crappy old laptop… \r\n\r\nInto a powerful Bitc0in extracting machine… \r\n\r\nWithout you paying anything… \r\n\r\nYou don’t need to invest anything \r\nYou don’t need to trade \r\nYou don’t need to mine anything \r\nYou don’t need any experience \r\n\r\nAnd right now, you can secure your copy of Coinz for an insanely low one-time fee… \r\n\r\nPlus get access to Seyi’s crazy bonuses pack worth over 10 grand… \r\n\r\nClick here and create your account now >> https://shortz.pro/coinz\r\n\r\nCheers.',''),(7325,1,1833,'6','Anthony Duckmanton',''),(7326,1,1833,'2','022510326',''),(7327,1,1833,'3','duckmanton2@gmail.com',''),(7328,1,1833,'4','Hi, could we please get a quote for the outdoor plug socket to be installed, we had visit on Monday 15th suggesting running from heat pump\r\nPlease call',''),(7329,1,1834,'6','Masonphync',''),(7330,1,1834,'2','86112892518',''),(7331,1,1834,'3','kaenquirynicholls@gmail.com',''),(7332,1,1834,'4','Kaixo, zure prezioa jakin nahi nuen.',''),(7333,1,1834,'5','Wallmart',''),(7334,1,1835,'6','Bob S.',''),(7335,1,1835,'2','619-777-6610',''),(7336,1,1835,'3','info@digitalbusinessservices.com',''),(7337,1,1835,'4','Hey there, \r\n\r\nI saw your google business listing and I think I can help it boost within 1-2 weeks using something called Semantic SEO.\r\n\r\nFor more info watch this short video: https://screenpal.com/watch/cZfnnMVs1vk\r\n\r\nIf you\'re interested call/text: 619-777-6610 or private email me at digitalbusinessservices101@gmail.com for a quote.\r\n\r\n\r\nThanks & Regards,\r\nBob S.\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://bit.ly/websiteoptout',''),(7338,1,1836,'6','Trevor Heitmann',''),(7339,1,1836,'2','688573923',''),(7340,1,1836,'3','heitmann.shelly@yahoo.com',''),(7341,1,1836,'4','Hi,\r\nI\'m Trevor, with over 7 years in video production, marketing, and social media. I\'ve not only crafted compelling narratives but also elevated multiple YouTube channels across various brands. \r\n\r\nI can Help with :\r\n-Grow your all your Social Media Content\r\n-Social Media Ads (TikTok, Instagram Stories, Snapchat)\r\n-Website and App Introductions\r\n-Product Launches\r\n\r\n\r\nJoin our Happy customers Now , Lets Chat to help you out \r\n\r\n\r\nClick here to contact =====> https://tinyurl.com/5xdh2k6y',''),(7342,1,1837,'6','CharlieTes',''),(7343,1,1837,'2','82523143585',''),(7344,1,1837,'3','mat.ipes.mi.t.h@gmail.com',''),(7345,1,1837,'4','You want to earn free cryptocurrency - it\'s easy to do by simply clicking on the screen of your phone, follow the link and join millions of users https://tinyurl.com/3u45x2kw',''),(7346,1,1837,'5','AliExpress',''),(7347,1,1838,'6','Aleksandar',''),(7348,1,1838,'2','7982144727',''),(7349,1,1838,'3','trendflex0220@gmail.com',''),(7350,1,1838,'4','Hello\r\n\r\n-I recently explored your website and discovered exciting opportunities to enhance its performance.\r\n With expertise in website visibility and engagement, I\'m eager to collaborate with you on this journey.\r\n\r\n* What I Offer:\r\n- In-Depth Website Analysis: Uncover insights to supercharge your site\'s performance.\r\n- Tailored Visibility Strategies: Drive more traffic and elevate your online presence.\r\n\r\n* Special Invitation:\r\n- I\'m thrilled to offer you my first service for FREE. Even small changes can lead to significant results, and I\'m here to guide you through this process.\r\n\r\n* Next Steps:\r\n- Let\'s work together to customize solutions that match your unique needs. Reach out to me on WhatsApp or Viber at\r\n +381604141669 for more details and to schedule your complimentary service.\r\n\r\n* Remember, every improvement counts. Let\'s collaborate to unlock the full potential of your website!\r\n\r\n Warm regards\r\n Aleksandar',''),(7351,1,1839,'6','Peter Matheson',''),(7352,1,1839,'2','0274354832',''),(7353,1,1839,'3','peter.matheson@fultonhogan.com',''),(7354,1,1839,'4','Hi\r\n\r\nHave a portacom at Lot 2, 469 Maddisons Road, Templeton and looking for a temporary power supply to be connected. The portacom is 12m x 3.5m and has two heat pumps plus an hot water \"zip\" above the sink. There is a pump shed beside the portacom that has a sub main and main supply to the property.\r\n\r\n1/ Can we get a quote to get the power connected. This will be a temporary connection for about 6 months, but will be relocated to a new location around Xmas. Would also like a simple way to monitor power useage, so can claim power cost back to the business.\r\n\r\n2/ If we accept the quote, how quickly can the connection be made? \r\n\r\nYou can get access to the property at any stage and there is a key hidden on site if you need to get into the portacom. Driveway is second on the left and you will see the portacom beside the watertank on the right hand side of the property.\r\n\r\nAny question, feel free to ring on 0274 354 832.\r\n\r\nCheers Peter\r\n\r\nCheers Peter',''),(7355,1,1839,'5','Googled for Electricians in the Rolleston area',''),(7356,1,1840,'6','Chic Templeton',''),(7357,1,1840,'3','chic@pinnacleandco.nz',''),(7358,1,1840,'4','Hiya, this is a test on your contact form. Kindly reply to chic@pinnacleandco.nz to confirm you have received this :)',''),(7359,1,1841,'6','Masonphync',''),(7360,1,1841,'2','87953784362',''),(7361,1,1841,'3','kaenquirynicholls@gmail.com',''),(7362,1,1841,'4','হাই, আমি আপনার মূল্য জানতে চেয়েছিলাম.',''),(7363,1,1841,'5','AliExpress',''),(7364,1,1842,'6','Jaclyn Weiland',''),(7365,1,1842,'3','weiland.jaclyn@outlook.com',''),(7366,1,1842,'4','Are you ready to streamline your business operations like never before?\r\n\r\nFREE Trial for 14 days along with With Go High Level\r\n\r\n https://shorturl.at/dioKX\r\n\r\nThey also have an amazing affiliate program and exceptional level of customer support.\r\n\r\nYou can seriously elevate your CRM, lead management, and marketing efforts all in one place!\r\n\r\nReady to transform how you manage your business? Click here to explore Go High Level and see the difference for yourself: https://shorturl.at/dioKX\r\n\r\nImagine having a powerful platform that not only manages your contacts seamlessly but also automates your day-to-day tasks, freeing you up to focus on growth. That\'s what Go High Level offers – a solution designed to boost efficiency and drive your business forward.\r\n\r\nSeriously, we use this ourselves and this thing is absolutely awesome. \r\nGive it a try.',''),(7367,1,1843,'6','Michael Jacobson',''),(7368,1,1843,'2','021533553',''),(7369,1,1843,'3','michaellukejacobson@gmail.com',''),(7370,1,1843,'4','Hi, I need some help with a rental property we own in Richmond Christchurch.\r\n\r\nThe tenants have been reporting a light repeatedly blowing in one of the bedrooms and it would be nice piece of mind to find out what the problem is.\r\n\r\nIt may not be related but we have a relatively old switchboard with old style fuses that needs to be converted to RCDs. Rewiring was done is 2018, and the switchboard was not been deemed urgent by previous electricians, however now might be the right time to get it done. FYI I\'m fairly sure that backing board is asbestos.\r\n\r\nFirst step is to get run an expert eye over things, then discuss options and best way forward.\r\n\r\nIs this something that you can help me with?\r\n\r\nThanks in advance\r\nMichael',''),(7371,1,1843,'5','google',''),(7372,1,1844,'6','Tucker Oquendo',''),(7373,1,1844,'2','22-22-41-28',''),(7374,1,1844,'3','tucker@airankhub.com',''),(7375,1,1844,'4','Hi! \r\n\r\nWe\'ve put together a free checklist that teaches how to boost your business without ads.\r\n\r\nJust reply with \'Ỵes\' if you\'d like to receive it. \r\n\r\nHow\'s that sound?\r\n\r\n-Tucker with AiRankings',''),(7376,1,1845,'6','Aleksandar',''),(7377,1,1845,'3','trendflex0220@gmail.com',''),(7378,1,1845,'4','Greatings\r\n\r\n* I recently had the pleasure of reviewing your website and identified exciting opportunities to enhance its performance.\r\n- As a specialist in website visibility and customer engagement, I\'m thrilled to collaborate with you on this journey.\r\n\r\n* What I Offer:\r\n- In-Depth Website Analysis: Gain valuable insights to boost your site\'s performance and success.\r\n- Effective Visibility Strategies: Increase visitor traffic and elevate your online presence for greater reach.\r\n- Expert Guidance for Online Success: Utilize my skills to maximize your website\'s potential and achieve tangible results.\r\n\r\n* Special Invitation:\r\n- I\'m delighted to offer you my first service for FREE. Small, strategic changes can lead to significant improvements, \r\n and I\'m here to guide you through this process.\r\n\r\n* Next Steps:\r\n- Let\'s team up to tailor solutions that fit your unique needs. Contact me on WhatsApp or Viber at\r\n +381604141669 for more details and to schedule your complimentary service.\r\n\r\n* Remember, even the smallest tweaks can make a big difference. Let\'s work together to unlock your website\'s true potential!\r\n\r\n Warm regards\r\n Aleksandar',''),(7379,1,1846,'6','Aleksandar',''),(7380,1,1846,'2','2708223238',''),(7381,1,1846,'3','trendflex0220@gmail.com',''),(7382,1,1846,'4','Greetings\r\n* I recently had the pleasure of reviewing your website and wanted to reach out to you personally. \r\n- I have exciting news for you!\r\n\r\n*During my analysis, I identified a few areas where I believe I can assist in enhancing your website\'s performance and visibility.\r\n\r\n* As a professional website designer and analyst, I am passionate about helping businesses like yours succeed online. \r\n That\'s why I would like to offer you a complimentary website analysis service for FREE. \r\n\r\n* This is my way of demonstrating my expertise and showcasing the potential benefits you can expect from my services.\r\n\r\n- Through this free analysis, you can expect to gain valuable insights into your website\'s strengths and areas for improvement.\r\n I will provide you with actionable recommendations to : \r\n 1. boost your site\'s performance,\r\n 2. increase visitor engagement,\r\n 3. and enhance your online presence.\r\n\r\n\r\n* If you are satisfied with the results of my complimentary service, we can further discuss how we can collaborate to make your website even better and more noticeable to your target audience.\r\n- My goal is to help you outshine your competition and achieve your online goals.\r\n\r\n* Please feel free to reach out to me on WhatsApp at +381604141669 if you have any questions.\r\n- I am more than happy to address your concerns and build the necessary trust between us to ensure a successful working relationship.\r\n- I am willing to sacrifice my time and energy for your success because I believe in providing exceptional value to my clients.\r\n\r\n* In today\'s competitive digital landscape, many website designers and analysts charge exorbitant fees for services that can be completed efficiently.\r\n- However, my mission is to lower the barriers to entry and ensure that every business has access to professional help in enhancing their online presence.\r\n\r\n* I look forward to the opportunity to collaborate with you and help your website reach new heights.\r\n- Together, we can create a strong online foundation that will attract and engage your target audience, ultimately driving your business forward.\r\n\r\nBest regards\r\n Aleksandar',''),(7383,1,1847,'6','Masonphync',''),(7384,1,1847,'2','85258315692',''),(7385,1,1847,'3','kaenquirynicholls@gmail.com',''),(7386,1,1847,'4','Hola, quería saber tu precio..',''),(7387,1,1847,'5','Wallmart',''),(7388,1,1848,'6','Ezequiel Seabolt',''),(7389,1,1848,'3','seabolt.ezequiel@gmail.com',''),(7390,1,1848,'4','Hello,\r\n\r\nAre you tired of feeling the negative effects of aging? The aches, the fatigue, that nagging sense that you\'re not as sharp as you used to be?\r\n\r\nWell, there\'s good news! Genuine Purity offers an exceptional line of supplements designed to target aging at the cellular level. Their NMN and NR products are scientifically formulated to boost NAD+, a crucial molecule that helps:\r\n\r\n- Recharge your energy levels\r\n- Improve heart health\r\n- Sharpen cognitive function\r\n- Support healthy DNA\r\n\r\nCheck it now: https://tinyurl.com/nmnnr\r\n\r\nImagine feeling stronger, more focused, and more alive – like a younger version of yourself. It\'s possible with Genuine Purity.\r\n\r\nWhy Genuine Purity?\r\n\r\n- Pure, potent ingredients backed by scientific research\r\n- Made in the USA in high-quality facilities\r\n- Liposomal technology for maximum absorption\r\n- 97-day money-back guarantee\r\n\r\nReady to give it a try?\r\n\r\nCheck it now: https://tinyurl.com/nmnnr\r\n\r\nTo your health and vitality.\r\n\r\nhttps://tinyurl.com/nmnnr\r\n\r\nIn order to unsubscribe your website from this list, please click here: https://seo-first-page.com/unsubscribe/\r\n\r\n333 Summer Street . Boston, MA 02210 . Privacy Policy . Anti-spam Policy . www.goto.com/webinar ©2024 GoTo, Inc.',''),(7391,1,1849,'6','Amelia Brown',''),(7392,1,1849,'2','695435137',''),(7393,1,1849,'3','ameliabrown0325@gmail.com',''),(7394,1,1849,'4','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nAmelia\r\n\r\nUnsubscribe: https://removeme.click/yt/unsubscribe.php?d=juiceelectrical.co.nz',''),(7395,1,1850,'6','Marilyn Waley',''),(7396,1,1850,'2','1',''),(7397,1,1850,'3','marilyn.waley@gmail.com',''),(7398,1,1850,'4','Enhance your online experience with our powerful VPS solutions. Enjoy up to 5 Gbit/s connectivity and 50TB of monthly traffic starting at just €3.90.\r\n\r\nSelect your ideal plan:\r\nStarter: 1x AMD Ryzen vCore, 4GB RAM, 120GB NVMe Disk - €3.90\r\nEnhanced: 2x AMD Ryzen vCore, 8GB RAM, 240GB NVMe Disk - €7.90\r\nAdvanced: 3x AMD Ryzen vCore, 12GB RAM, 320GB NVMe Disk - €11.90\r\nPro: 6x AMD Ryzen vCore, 12GB RAM, 640GB NVMe Disk - €16.90\r\n\r\nEach plan offers:\r\n5 Gbit/s connectivity\r\n50 TB traffic per month\r\nKVM / ISO mount\r\nCompatibility with Linux, Windows, BSD\r\nEasy UI for up/downgrades\r\n5 Snapshots and 1 Backup slot\r\n\r\nAchieve the performance you need for your tasks. Sign up and get started with a powerful, high-speed VPS today: https://bit.ly/vps4euro\r\n\r\n\r\n\r\nUnsubscribe here if you don\'t want to get these fantastic messages: https://docs.google.com/forms/d/e/1FAIpQLSfqamyB6byPaAwgcS6ofGmo4N4Pqkn2ZutAk6aInDQ_WhohRg/viewform\r\nUl. Polkole 16, Troy, New York, USA, 31-559',''),(7399,1,1851,'6','Philip Black',''),(7400,1,1851,'2','4518580529',''),(7401,1,1851,'3','cosmos-fable742@outlook.com',''),(7402,1,1851,'4','Imagine a world where you could compose a straightforward \r\nsentence & have it converted into spellbinding, breathtaking \r\nAI videos that fascinate, influence, & are completely created automatically!\r\n\r\nUnlock the future of marketing with the world\'s first ever \"true\" AI video technology, \r\nwhich is earning notoriety as being the greatest technological breakthrough \r\nin AI to date & will be powered by OpenAI\'s newest AI model called Sora, designed specifically for video.\r\n\r\nDon\'t miss out on this AI video innovation \r\nthat is set to alter how the world watches video permanently!\r\n\r\nSpots are very limited....Lock down your exclusive beta access asap & \r\nlead your success into a new digital era!\r\n\r\nThe Clock Is Ticking: https://bit.ly/halo-ai\r\n\r\nPhil\r\n\r\n\r\n\r\n\r\n\r\nOpt-Out of future correspondence by replying to this message and tell me opt-out.\r\njuiceelectrical.co.nz',''),(7403,1,1852,'6','Umar khan',''),(7404,1,1852,'2','+923112610335',''),(7405,1,1852,'3','umarseo19@gmail.com',''),(7406,1,1852,'4','Hello Dear \r\nI hope this email finds you well. My name is Umar khan and I am a SEO Guest Posting And Content Writing Expert.\r\nI visited your site and as I saw the traffic and DA, DR of your site are not enough for a healthy business. I think no one business or website can grow without good traffic and an audience that will be attracted by good content. I think your site should be on the first page in this process. I will serve you.\r\nWe offer Google news site guest posts with Do-follow backlinks for website ranking on Google.\r\nOur service includes high-authority guest posts on Google News-approved sites, providing top-quality backlinks from trusted sources. We also offer additional website options.\r\nIn addition to these, we will provide you with more websites that you want.\r\n Let me know I have to wait for your response.',''),(7407,1,1853,'6','Ravi Elam',''),(7408,1,1853,'2','3383989563',''),(7409,1,1853,'3','elam.buck@googlemail.com',''),(7410,1,1853,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7411,1,1854,'6','Aleksandar',''),(7412,1,1854,'2','+381604141669',''),(7413,1,1854,'3','trendflex0220@gmail.com',''),(7414,1,1854,'4','Greetings\r\n\r\n- I recently had the pleasure of reviewing your website and identified exciting opportunities to enhance its performance. \r\nAs a specialist in website visibility and customer engagement, I\'m thrilled to collaborate with you on this journey.\r\n\r\n* What i offer:\r\n 1. In-Depth Website Analysis: Gain valuable insights to boost your site\'s performance and success.\r\n 2. Effective Visibility Strategies: Increase visitor traffic and elevate your online presence for greater reach.\r\n 3. Expert Guidance for Online Success: Utilize my skills to maximize your website\'s potential and achieve tangible results.\r\n\r\n* Special Invitation:\r\n- I\'m delighted to offer you my first service for FREE. Small, strategic changes can lead to significant improvements, and I\'m here to guide you through this process.\r\n\r\n* Next Steps:\r\n- Let\'s team up to tailor solutions that fit your unique needs. Contact me on WhatsApp or Viber at \r\n+381604141669 for more details and to schedule your complimentary service.\r\n\r\n* Remember, even the smallest tweaks can make a big difference. Let\'s work together to unlock your website\'s true potential!\r\n\r\nWarm regards\r\n Aleksandar',''),(7415,1,1855,'6','Penny Blue',''),(7416,1,1855,'2','0272780819',''),(7417,1,1855,'3','penny-blue@live.com',''),(7418,1,1855,'4','Hi Greg and Helen\r\n\r\nI hope you\'re all well!\r\n\r\nJust wondering if I could please get you to refix/check a heated towel rail that has come off the wall, and check a socket in the garage that isn\'t working. The external security light isn\'t working either so may be linked.\r\n\r\nThe address is 30 Breens Road, Bishopdale (I think it should be in your system) and we have a lovely tenant Jacqui who can be contacted on 021 023 34372 for access.\r\n\r\nIf you need anything else please let me know :)\r\n\r\nMany Thanks \r\n\r\nPenny Blue',''),(7419,1,1855,'5','Old nanny :)',''),(7420,1,1856,'6','Charlespek',''),(7421,1,1856,'2','88247569515',''),(7422,1,1856,'3','w.oo.db.n54.4@gmail.com',''),(7423,1,1856,'4','Catizen: Unleash, Play, Earn - Where Every Game Leads to an Airdrop Adventure! Let play-to-earn airdrop right now! https://tinyurl.com/3f6af6hh',''),(7424,1,1856,'5','Apple',''),(7425,1,1857,'6','Aleksandar',''),(7426,1,1857,'2','+381604141669',''),(7427,1,1857,'3','trendflex0220@gmail.com',''),(7428,1,1857,'4','Greetings\r\n\r\n- I recently had the pleasure of reviewing your website and identified exciting opportunities to enhance its performance. \r\nAs a specialist in website visibility and customer engagement, I\'m thrilled to collaborate with you on this journey.\r\n\r\n* What i offer:\r\n 1. In-Depth Website Analysis: Gain valuable insights to boost your site\'s performance and success.\r\n 2. Effective Visibility Strategies: Increase visitor traffic and elevate your online presence for greater reach.\r\n 3. Expert Guidance for Online Success: Utilize my skills to maximize your website\'s potential and achieve tangible results.\r\n\r\n* Special Invitation:\r\n- I\'m delighted to offer you my first service for FREE. Small, strategic changes can lead to significant improvements, and I\'m here to guide you through this process.\r\n\r\n* Next Steps:\r\n- Let\'s team up to tailor solutions that fit your unique needs. Contact me on WhatsApp or Viber at \r\n+381604141669 for more details and to schedule your complimentary service.\r\n\r\n* Remember, even the smallest tweaks can make a big difference. Let\'s work together to unlock your website\'s true potential!\r\n\r\nWarm regards\r\n Aleksandar',''),(7429,1,1858,'6','Caleb Davis',''),(7430,1,1858,'2','+1 619 798 8260',''),(7431,1,1858,'3','partnerships@setcreliefconsultants.com',''),(7432,1,1858,'4','Hey there, hope everything\'s going well with you~\r\n\r\nI was just going through your website, and would it be correct to assume that you are classified as self-employed?\r\n\r\nAs a self-employed American, I just wanted to let you know that you may be eligible for up to $32,220 through the IRS\'s Self-Employed Tax Credit program:\r\nirs.gov/newsroom/tax-credits-for-paid-leave-under-the-american-rescue-plan-act-of-2021-specific-provisions-related-to-self-employed-individuals\r\n\r\nIf you want, you can easily check your estimated refund amount for the SETC program: setcreliefconsultants.com\r\n\r\nBTW,if you do decide that this is for you, please know that our process is designed with your security in mind.\r\n\r\nWe get paid only if we\'ve successfully secured your funds, ensuring an entirely risk-free experience for our clients.\r\n\r\nHoping to hear from you.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBest regards,\r\n\r\nCaleb Davis\r\n\r\nSETC Relief Consultants\r\n+1 619 798 8260\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo stop receiving marketing messages, reply “Stop” in the subject line for your website: juiceelectrical.co.nz',''),(7433,1,1859,'6','Bertha Rosenbaum',''),(7434,1,1859,'2','216631066',''),(7435,1,1859,'3','rosenbaum.bertha@yahoo.com',''),(7436,1,1859,'4','There\'s a issue with your contact page! You didn\'t set it up accurately to exclude marketing messages like this one. I have a no-cost guide to help you how to fix this in about a few minutes. If you don’t think you are tech-savvy, I\'ll even update it for you at no charge.\r\n\r\nhttps://perp.us/ff\r\n\r\nI\'ve been helping people earn more revenue with less stress for over 20+ years!\r\n\r\n\r\n\r\nUnsubscribe here if you don\'t want to get these awesome deals: https://form.jotform.com/241362853020447\r\nVia Gabbietta 92, Massena, NY, USA, 1551',''),(7437,1,1860,'6','Kaye Powell',''),(7438,1,1860,'2','0210364803',''),(7439,1,1860,'3','kayepowell@xtra.co.nz',''),(7440,1,1860,'4','The underfloor heating has ceased to work in 2 of 3 areas. It was AOK for 2 nights but not the last 2nights.\r\nHopefully some kind person will fix it asap. So see you next week??? Thank you\r\nKaye Powell\r\n103B Hinau Street,\r\nRiccarton\r\nChristchurch',''),(7441,1,1860,'5','You have repaired things at my place before. Thanks',''),(7442,1,1861,'6','Ravi Willie',''),(7443,1,1861,'2','673634291',''),(7444,1,1861,'3','ivey.willie97@yahoo.com',''),(7445,1,1861,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7446,1,1862,'6','Aleksandar',''),(7447,1,1862,'2','6371392957',''),(7448,1,1862,'3','trendflex0220@gmail.com',''),(7449,1,1862,'4','Greetings\r\n\r\n- I recently had the pleasure of reviewing your website and identified exciting opportunities to enhance its performance. \r\nAs a specialist in website visibility and customer engagement, I\'m thrilled to collaborate with you on this journey.\r\n\r\n* What i offer:\r\n 1. In-Depth Website Analysis: Gain valuable insights to boost your site\'s performance and success.\r\n 2. Effective Visibility Strategies: Increase visitor traffic and elevate your online presence for greater reach.\r\n 3. Expert Guidance for Online Success: Utilize my skills to maximize your website\'s potential and achieve tangible results.\r\n\r\n* Special Invitation:\r\n- I\'m delighted to offer you my first service for FREE. Small, strategic changes can lead to significant improvements, and I\'m here to guide you through this process.\r\n\r\n* Next Steps:\r\n- Let\'s team up to tailor solutions that fit your unique needs. Contact me on WhatsApp or Viber at \r\n+381604141669 for more details and to schedule your complimentary service.\r\n\r\n* You can also reach me at web0220supp@gmail.com for any inquiries or to discuss further collaboration opportunities.\r\n\r\n* Remember, even the smallest tweaks can make a big difference. Let\'s work together to unlock your website\'s true potential!\r\n\r\nWarm regards\r\n Aleksandar',''),(7450,1,1863,'6','Ravi Stainforth',''),(7451,1,1863,'2','47970241',''),(7452,1,1863,'3','israel.stainforth@yahoo.com',''),(7453,1,1863,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7454,1,1864,'6','Yukiko Martins',''),(7455,1,1864,'2','317659910',''),(7456,1,1864,'3','yukiko.martins@gmail.com',''),(7457,1,1864,'4','In need of an efficient way to reach a large number of businesses? For only 47 dollars, our bulk message submission service allows you to deliver your message to 1 million businesses\' contact forms. \r\n\r\nThis is a game-changer for expanding your network and boosting your business leads.\r\n\r\nImagine your business details landing directly in the inboxes of potential clients and partners. This service not only is time-saving but also offers a huge return on investment by increasing your visibility in the business world.\r\n\r\nTake action and scale your business with minimal effort!\r\n\r\nVisit: https://bit.ly/bulkforms\r\n\r\n\r\n\r\nUnsubscribe here if you don\'t want to get these fantastic newsletters: https://form.jotform.com/241362853020447\r\nKammelenbergstrasse 117, Flugbrunnen, NA, Switzerland, 3065',''),(7458,1,1865,'6','Bruce Gordon',''),(7459,1,1865,'2','1-804-715-1479',''),(7460,1,1865,'3','info@increaseorganictraffic.com',''),(7461,1,1865,'4','Hi Team juiceelectrical.co.nz, \r\n \r\nI was looking at your website and realized that despite having a great design; it was not ranking high on any of the search engines (Google, Yahoo & Bing) for most of the keywords related to your business.\r\n\r\nWe can place your website on Google\'s 1st page.\r\n\r\n✓ Top ranking on Google search!\r\n✓ Improve website traffic!\r\n✓ Increase Your Leads, Sales & Revenue!\r\n\r\nIf you are interested, I will send you our SEO Packages and Cost.\r\n \r\nRegards,\r\nBruce Gordon\r\nSr SEO consultant\r\nwww.Increaseorganictraffic.com\r\nPh. No: 1-804-715-1479\r\n\r\n\r\n\r\nIf you don’t want me to contact you again about this, reply with “unsubscribe”',''),(7462,1,1866,'6','JoshuaFet',''),(7463,1,1866,'2','84361717367',''),(7464,1,1866,'3','m.0.3257.7.31@gmail.com',''),(7465,1,1866,'4','play, win, +2,500 coins using our link - https://tinyurl.com/592dn2td',''),(7466,1,1866,'5','Nokia',''),(7467,1,1867,'6','WlasovaVladsSr',''),(7468,1,1867,'2','81896746157',''),(7469,1,1867,'3','arts@meteo.gold',''),(7470,1,1867,'4','Mailing: \r\n \r\n \r\nConnecting via comment forms is an eloquent manifestation of modern business dialogue, combining the best of discretion and innovation. This method gives companies a straight line to their consumers, permitting them to grasp the details of user interaction, collect constructive feedback, and, most, demonstrate that they are constantly attending. Rather than navigating the jammed landscape of emails and marketing messages, comment forms offer a streamlined space, paving the way for genuine dialogue and more involved conversations. \r\n \r\nFurthermore, communicating to comment forms is a proof to a brand\'s devotion to incessant improvement. Rather than of operating in a isolation, businesses get an precious viewpoint into their consumers\' minds, unveiling possibilities for growth, refinement, and forging firmer relationships. As consumer needs transform, this two-way dialogue channel ensures that brands continue to be not just relevant but intimately connected to their audience\'s continually shifting likes and worries. In the grand scheme of things, it\'s not merely about gathering feedback; it\'s about cultivating faith and solidifying bonds that endure the test of time. \r\n \r\n \r\n \r\n \r\nОтчётность. \r\nОплата: Yoo.Money, Bitcoin, МИР, Visa, MasterCard... \r\nПринимаем USDT \r\nTelgrm: https://t.me/exrumer \r\nSkype: Loves.Ltd \r\nhttps://xrumer.cc/ \r\nТолько этот.',''),(7471,1,1867,'5','Apple',''),(7472,1,1868,'6','Michaelged',''),(7473,1,1868,'2','83818864846',''),(7474,1,1868,'3','graem.s.m.eet.h.9.9.7@gmail.com',''),(7475,1,1868,'4','Feed your cute capybara in this game in telegram and get real money for it https://tinyurl.com/5bhfrnj9',''),(7476,1,1868,'5','Apple',''),(7477,1,1869,'6','Ross',''),(7478,1,1869,'2','3357544926',''),(7479,1,1869,'3','ross@briley.podiatristusa.sale',''),(7480,1,1869,'4','Hey,\r\n\r\nIf 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.\r\n\r\nWe are confident that our Toenail Clippers will provide you with the results you are looking for.\r\n\r\nGet yours today with 60% OFF: https://podiatristusa.sale\r\n\r\nBest regards,\r\n\r\nRoss',''),(7481,1,1870,'6','Creatify AI',''),(7482,1,1870,'2','6762325132',''),(7483,1,1870,'3','dalyell.eulalia@hotmail.com',''),(7484,1,1870,'4','Hi,\r\n\r\nI am Omar ,I found this toll that can create for yourr website or Producrts 2 free Marketing short videos that you can use it freely in any of your social accounts or Youtube channel , the tool is Fu*king simple\r\n\r\nthat you Just add your Link and it will take care about the reset\r\n\r\nTry it Here ====> https://tinyurl.com/4xjf7kya\r\n\r\n\r\n\r\n\r\nRegards',''),(7485,1,1871,'6','Aleesandro Molari',''),(7486,1,1871,'2','41889849',''),(7487,1,1871,'3','prendergast.guillermo@gmail.com',''),(7488,1,1871,'4','To the attention of the manager of Juice Electrical - Master Electricians and Contractors\r\n\r\nGood morning,\r\n\r\nI visited your site and found it very well done; you certainly have a successful business. I would like to propose a payment system with completely free registration that helps companies achieve greater liquidity.\r\n \r\nThere are commissions only for the use of the services, which you can find at the link below https://www.bestqtf.org/paymentsystem\r\n\r\nFor more details i am here to answer you.\r\n\r\nRegards\r\n\r\nAlessandro\r\n\r\ninfo@bestqtf.org',''),(7489,1,1872,'6','Aleksandar',''),(7490,1,1872,'2','267449953',''),(7491,1,1872,'3','trendflex0220@gmail.com',''),(7492,1,1872,'4','Greetings\r\n\r\n- I recently reviewed your website and found exciting ways to improve its performance and online presence.\r\nAs an expert in website visibility and customer engagement, I\'m thrilled to work with you on this journey.\r\n\r\n* What I Offer:\r\n 1. In-Depth Website Analysis: Discover valuable insights to optimize your site\'s performance and success.\r\n 2. Effective Visibility Strategies: Increase visitors and improve your online presence for wider reach.\r\n 3. Expert Guidance for Online Success: Use my skills to maximize your website\'s potential and achieve great results.\r\n\r\n* Special Invitation:\r\n- I\'m happy to provide my first service for FREE. Small, smart changes can lead to big improvements, and I\'ll guide you through this process.\r\n\r\n* Next Steps:\r\n- Let\'s work together to create solutions for your unique needs. Contact me on WhatsApp or Viber at\r\n+381604141669 for more details and to schedule your free service.\r\n\r\n* You can also email me at web0220supp@gmail.com for any questions or further collaboration opportunities.\r\n\r\n* Remember, even small changes can make a big difference. Let\'s work together to unlock your website\'s full potential!\r\n\r\n Best regards\r\n Aleksandar',''),(7493,1,1873,'6','Nadine Sherrill',''),(7494,1,1873,'2','(02) 4053 6569',''),(7495,1,1873,'3','nadine.sherrill@hotmail.com',''),(7496,1,1873,'4','Hi there\r\n\r\nJust checked your juiceelectrical.co.nz\'s baclink profile, I noticed a moderate percentage of toxic links pointing to your website\r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge.\r\n\r\nStart recovering your ranks today:\r\nhttps://www.hilkom-digital.com/free-backlinks-clean-up/\r\n\r\nThanks and regards\r\nMike',''),(7497,1,1874,'6','Sandra Clark',''),(7498,1,1874,'2','0211344918',''),(7499,1,1874,'3','sammygr8c@gmail.com',''),(7500,1,1874,'4','Hi,\r\n\r\nCan you please provide a supply & installation quote for a Mitsubishi Electric Multi-Split Heat Pump solution for:\r\n4 bedrooms x AP Plus series\r\nMSZ-AP25VG(K)D (Indoor Unit)\r\n& to be on one outdoor unit.\r\n\r\nAlso, please quote - looking to replace a heat pump in main lounge (& replace outdoor unit) with a Mitsubishi Electric Black Diamond LN Series Hypercore MSZ-LN50VG2 (Indoor & Outdoor unit).\r\n\r\nSo overall, should have 2 outdoor units. Thanks.',''),(7501,1,1874,'5','Customer',''),(7502,1,1875,'6','Sandra Clark',''),(7503,1,1875,'2','0211344918',''),(7504,1,1875,'3','sammygr8c@gmail.com',''),(7505,1,1875,'4','Hi,\r\n\r\nCan you please provide a supply & installation quote for a Mitsubishi Electric Multi-Split Heat Pump solution for:\r\n4 bedrooms x AP Plus series\r\nMSZ-AP25VG(K)D (Indoor Unit)\r\n& to be on one outdoor unit.\r\n\r\nAlso, please quote - looking to replace a heat pump in main lounge (& replace outdoor unit) with a Mitsubishi Electric Black Diamond LN Series Hypercore MSZ-LN50VG2 (Indoor & Outdoor unit).\r\n\r\nSo overall, should have 2 outdoor units. Thanks.',''),(7506,1,1875,'5','Customer',''),(7507,1,1876,'6','Sandra Clark',''),(7508,1,1876,'2','0211344918',''),(7509,1,1876,'3','sammygr8c@gmail.com',''),(7510,1,1876,'4','Hi,\r\n\r\nCan you please provide a supply & installation quote for a Mitsubishi Electric Multi-Split Heat Pump solution for:\r\n4 bedrooms x AP Plus series\r\nMSZ-AP25VG(K)D (Indoor Unit)\r\n& to be on one outdoor unit.\r\n\r\nAlso, please quote - looking to replace a heat pump in main lounge (& replace outdoor unit) with a Mitsubishi Electric Black Diamond LN Series Hypercore MSZ-LN50VG2 (Indoor & Outdoor unit).\r\n\r\nSo overall, should have 2 outdoor units. Thanks.',''),(7511,1,1876,'5','Customer',''),(7512,1,1877,'6','Sandra Clark',''),(7513,1,1877,'2','0211344918',''),(7514,1,1877,'3','sammygr8c@gmail.com',''),(7515,1,1877,'4','Hi,\r\n\r\nCan you please provide a supply & installation quote for a Mitsubishi Electric Multi-Split Heat Pump solution for: 4 bedrooms x AP Plus series\r\nMSZ-AP25VG(K)D (Indoor Unit)\r\n& to be on one outdoor unit.\r\n\r\nAlso, please quote - looking to replace a heat pump in main lounge (& replace outdoor unit) with a Mitsubishi Electric Black Diamond LN Series Hypercore MSZ-LN50VG2 (Indoor & Outdoor unit).\r\n\r\nSo overall, should have 2 outdoor units. Thanks.',''),(7516,1,1877,'5','Customer',''),(7517,1,1878,'6','Walt Bayliss',''),(7518,1,1878,'2','9227992664',''),(7519,1,1878,'3','shannan.carter@gmail.com',''),(7520,1,1878,'4','Hi ,\r\n\r\nAre you feeling overwhelmed by everything you see everyone else doing or what you\'re being told to do to make your agency successful?\r\n\r\nOnly to find yourself stuck where you started...\r\n\r\nI have some exciting news for you!\r\n\r\nOn Monday, May 27th, 2024 at 5 pm EST, White Label Suite is hosting an exclusive online event, the \"White-Label Freedom Event”, that you won\'t want to miss.\r\n\r\nWhat to Expect:\r\n\r\n-Learn how to remove all of the noise and focus on what actually works so you can finally get started.\r\n\r\n-Discover a clear roadmap for success so you can remove the guesswork from your business.\r\n\r\n-Get a playbook to help you focus on a single target audience, address one core problem, and provide a simple solution so you can easily scale without stress.\r\n\r\nJoin us on Zoom [link will be provided when you register] and let Walt Bayliss, co-founder of White Label Suite, guide you through this transformative journey.\r\n\r\nThe team at White Label Suite will also be randomly selecting participants who are engaged on the call and giving away $50 Amazon Gift Cards!\r\n\r\nRegister Now ===> https://whitelabelsuite.com/freedom?am_id=omaralghossain6089\r\n\r\nto secure your spot and start building the freedom-based business you’ve always wanted.\r\n\r\nLooking forward to seeing you there!\r\n\r\n\r\n\r\nRegards',''),(7521,1,1879,'6','Mike King',''),(7522,1,1879,'2','81163719177',''),(7523,1,1879,'3','mikeHourrirm@gmail.com',''),(7524,1,1879,'4','This service is perfect for boosting your local business\' visibility on the map in a specific location. \r\n \r\nWe provide Google Maps listing management, optimization, and promotion services that cover everything needed to rank in the Google 3-Pack. \r\n \r\nMore info: \r\nhttps://www.speedseos.com/ranking-in-the-maps-means-sales/ \r\n \r\nWhatsapp us: https://wa.link/t9gzao \r\n \r\n \r\nThanks and Regards \r\nMike King\r\n \r\nPS: Want a ONE-TIME comprehensive local plan that covers everything? \r\nhttps://www.speedseos.com/local-seo-bundle/',''),(7525,1,1879,'5','Google',''),(7526,1,1880,'6','Azan Tariqs',''),(7527,1,1880,'2','3206192805',''),(7528,1,1880,'3','azanbsns7@gmail.com',''),(7529,1,1880,'4','Hey, this is Azan, I have noticed a few issues with your website, and that is actually stopping people to find your website on Google, \r\nbeing an SEO expert, i have helped many small businesses like yours to get more business through their website, \r\nshould i send you the list of issues? If yes, reply with \"Yes\".',''),(7530,1,1881,'6','Robertphync',''),(7531,1,1881,'2','88371343654',''),(7532,1,1881,'3','lucido.leinteract@gmail.com',''),(7533,1,1881,'4','Hæ, ég vildi vita verð þitt.',''),(7534,1,1881,'5','Wallmart',''),(7535,1,1882,'6','Masonphync',''),(7536,1,1882,'2','81438223814',''),(7537,1,1882,'3','kaenquirynicholls@gmail.com',''),(7538,1,1882,'4','হাই, আমি আপনার মূল্য জানতে চেয়েছিলাম.',''),(7539,1,1882,'5','Wallmart',''),(7540,1,1883,'6','Taylah Fantl',''),(7541,1,1883,'2','318499065',''),(7542,1,1883,'3','taylah.fantl@gmail.com',''),(7543,1,1883,'4','Revolutionize Your Marketing with USA B2B Contact Data! Business names, emails, websites, phones, social media and linkedIn links, and more.\r\n\r\nWhy restrict your business potential? Access over 5 million business contact details throughout the USA for only USD49. With more than 7,900 niche-targeted databases, you’ll have all the resources you need to reach out to the right companies.\r\n\r\nAt just $0.00001 per contact, our newly collected 20GB data from this year ensures you have the most current information to boost your marketing efforts.\r\n\r\nExperience the change yourself—download a free sample now: https://bit.ly/usab2bCFL\r\n\r\n\r\n\r\nUnsubscribe here if you don\'t want to get these great offers: https://bit.ly/cflunsubs\r\nErlenweg 29, Bern, NA, Switzerland, 3018',''),(7544,1,1884,'6','Ravi Eberly',''),(7545,1,1884,'2','497280367',''),(7546,1,1884,'3','roberto.eberly@gmail.com',''),(7547,1,1884,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7548,1,1885,'6','Cory Mosby',''),(7549,1,1885,'2','040 96 03 64',''),(7550,1,1885,'3','cory.mosby@gmail.com',''),(7551,1,1885,'4','Hey. You could be losing customers every day to your competitors.\r\n\r\n \r\n\r\nPlease go to Google and write the term best (your niche) in (your area)\r\n\r\nFor example, best plumbers in Chicago\r\n\r\n \r\n\r\nPlease check if you appear in the first 3 places on Google.\r\n\r\n \r\n\r\nIf not then I want you to know that you are losing customers to your competitors every day because the top 3 places get 99% of the customers.\r\n\r\n \r\n\r\nIf you\'re interested in solving this and improving your local search ranking on Google.\r\nIt\'s actually quite affordable, and we\'ve assisted thousands of local businesses in making that happen.\r\n\r\n \r\n\r\nWe specialize in helping small local businesses to improve their Google search rankings for targeted keywords.\r\n\r\n \r\nCheck out our service in further depth to discover all of the\r\nsuccess stories highlighted by the clients with countless 5-star reviews.\r\n\r\nIf You Have Any Question\r\n\r\nAnd Want To Know How We Can\r\n\r\nHelp You We Are Live On The Chat 24/7\r\n\r\nhttps://bit.ly/gmb-management-and-ranking-service\r\n\r\n \r\n\r\nThanks for your time \r\n\r\n \r\n\r\nDanial',''),(7552,1,1886,'6','EdwardBuT',''),(7553,1,1886,'2','84558635511',''),(7554,1,1886,'3','sak.u.r.o.w.v.azoa@gmail.com',''),(7555,1,1886,'4','Make a piggy farm in this game in telegram and get real money for it in cryptocurrency https://tinyurl.com/mvwbwyfw',''),(7556,1,1886,'5','Apple',''),(7557,1,1887,'6','Chastity Brett',''),(7558,1,1887,'2','417622202',''),(7559,1,1887,'3','chastity.brett@yahoo.com',''),(7560,1,1887,'4','Hi there,\r\n\r\nI recently came across your website on juiceelectrical.co.nz and found it very interesting. I was curious, have you ever considered creating an eBook out of your website content?\r\n\r\nThere 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.\r\n\r\nOf course, I understand this might not be something you\'re interested in, but I just wanted to share the possibility!\r\n\r\nAnyway, here is the tool I had in mind. It\'s only $16.95 so worth checking out: \r\nhttps://furtherinfo.org/lgb7\r\n\r\nBest regards,\r\nChastity',''),(7561,1,1888,'6','Emma Stilwell',''),(7562,1,1888,'2','0273220559',''),(7563,1,1888,'3','emmastilwell62@gmail.com',''),(7564,1,1888,'4','Hi,\r\n\r\nWould it be possible to get an electrician next Friday (June 7th) after about 11am? We need a new induction cooktop installed and the gas fitter is coming in the morning to remove the old one. They say they\'ll be there at 8am and it\'s a quick job, but I figure I\'d better build in some buffer room. \r\n\r\nThere is already a 3 pin plug where the gas cooktop used to connect, but I\'ve been told that the induction cooktop has to be wired in. I\'m hoping that we can also get a broken garage door switch fixed (the garage door still works, just not with the wall switch) and a serene bathroom heater removed on the same visit.\r\n\r\nWe\'re in Edgeware.\r\n\r\nThanks,\r\nEmma',''),(7565,1,1888,'5','Google reviews',''),(7566,1,1889,'6','Theresa Smith',''),(7567,1,1889,'2','558418654',''),(7568,1,1889,'3','andrew.nelly@outlook.com',''),(7569,1,1889,'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!\r\n\r\nWe created the first ever, luxury, all-day-wearable weight bands that goes on your wrist, ankles, & waist. The great thing is, they look stylish, super sexy, and you can wear them with any outfit.\r\n\r\nPlus, 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. \r\n\r\nNow 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. \r\n\r\nWhat are you waiting for, get started today. Go Here: https://bit.ly/elebands-special-bogo\r\n \r\nJoin 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. \r\n\r\nStart getting results NOW!, the smart and easy way!!\r\n\r\nOUR BANDS HELP YOU TO: \r\n\r\n- Burn calories all-day\r\n- Have a sculpted body\r\n- Slim down all over\r\n- Tighten glutes\r\n- Tone your calves \r\n- Firm up abs\r\n\r\nMany 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. \r\n\r\nWhat are you waiting for, get started today. Go Here: https://bit.ly/elebands-special-bogo',''),(7570,1,1890,'6','Georgia Smith',''),(7571,1,1890,'2','(917) 310-3348',''),(7572,1,1890,'3','georgia@getonglobe.com',''),(7573,1,1890,'4','Hi [juiceelectrical.co.nz],\r\n\r\nI was checking your website and find out you have a good design and it looks great, but it’s not ranking on Google and other major search engines.\r\n \r\nWe can place your website on Google\'s 1st page. Yahoo, Facebook, LinkedIn, YouTube, Instagram, Pinterest etc.).\r\n \r\nLet me know if you are interested, then I can send our Packages and Pricelist.\r\n \r\nThank you,\r\nGeorgia - (Sr SEO consultant)\r\nwww.GetOnGlobe.com\r\nCall: +1 (917) 310-3348\r\n\r\n\r\n\r\n\r\n\r\nNote: - If you’re not Interested in our Services, please send us unsubscribe in.',''),(7574,1,1891,'6','CharlieTes',''),(7575,1,1891,'2','88564653862',''),(7576,1,1891,'3','mat.i.p.e.s.mith@gmail.com',''),(7577,1,1891,'4','You want to earn free cryptocurrency - it\'s easy to do by simply clicking on the screen of your phone, follow the link and join millions of users https://tinyurl.com/3u45x2kw',''),(7578,1,1891,'5','Wallmart',''),(7579,1,1892,'6','+19842781092',''),(7580,1,1892,'2','81325582532',''),(7581,1,1892,'3','mindenergyopenyour@gmail.com',''),(7582,1,1892,'4','I present to your attention an effective working tool for stimulating your brain, especially relevant for computer scientists - Neuroprime! \r\nNeuroprime - tablets that give you energy and vitality in simple way: \r\n- Natural Energy \r\n- Optimises Cellular Function \r\n- Promotes Mental Vitality \r\n- Boosts Exercises Perfomance \r\nDoes not contain caffeine and is absolutely safe for your health! \r\n<a href=https://bit.ly/49ZlVPi>Buy your Neuroprime right now!</a>',''),(7583,1,1892,'5','+19842781092',''),(7584,1,1893,'6','Mervin Peyton',''),(7585,1,1893,'2','0650 139 21 18',''),(7586,1,1893,'3','peyton.mervin@outlook.com',''),(7587,1,1893,'4','Hey. You could be losing customers every day to your competitors.\r\n\r\n \r\n\r\nPlease go to Google and write the term best (your niche) in (your area)\r\n\r\nFor example, best plumbers in Chicago\r\n\r\n \r\n\r\nPlease check if you appear in the first 3 places on Google.\r\n\r\n \r\n\r\nIf not then I want you to know that you are losing customers to your competitors every day because the top 3 places get 99% of the customers.\r\n\r\n \r\n\r\nIf you\'re interested in solving this and improving your local search ranking on Google.\r\nIt\'s actually quite affordable, and we\'ve assisted thousands of local businesses in making that happen.\r\n\r\n \r\n\r\nWe specialize in helping small local businesses to improve their Google search rankings for targeted keywords.\r\n\r\n \r\nCheck out our service in further depth to discover all of the\r\nsuccess stories highlighted by the clients with countless 5-star reviews.\r\n\r\nIf You Have Any Question\r\n\r\nAnd Want To Know How We Can\r\n\r\nHelp You We Are Live On The Chat 24/7\r\n\r\nhttps://bit.ly/gmb-management-and-ranking-service\r\n\r\n \r\n\r\nThanks for your time \r\n\r\n \r\n\r\nDanial',''),(7588,1,1894,'6','Davidphync',''),(7589,1,1894,'2','89575369318',''),(7590,1,1894,'3','lucido.leinteract@gmail.com',''),(7591,1,1894,'4','Salut, ech wollt Äre Präis wëssen.',''),(7592,1,1894,'5','AliExpress',''),(7593,1,1895,'6','Constance Kaiser',''),(7594,1,1895,'2','267460748',''),(7595,1,1895,'3','kaiser.constance@googlemail.com',''),(7596,1,1895,'4','Hi there,\r\n\r\nAre you tired of paying monthly fees for website hosting, cloud storage, and funnels?\r\n\r\nWe offer a revolutionary solution: host unlimited websites, files, and videos for a single, low one-time fee. No more monthly payments.\r\n\r\nLearn more: https://furtherinfo.org/0wg3\r\n\r\nHere\'s what you get:\r\n\r\nUltra-fast hosting powered by Intel® Xeon® CPU technology\r\nUnlimited website hosting\r\nUnlimited cloud storage\r\nUnlimited video hosting\r\nUnlimited funnel creation\r\nFree SSL certificates for all domains and files\r\n99.999% uptime guarantee\r\n24/7 customer support\r\nEasy-to-use cPanel\r\n365-day money-back guarantee\r\n\r\nPlus, get these exclusive bonuses when you act now:\r\n\r\n60+ reseller licenses (sell hosting to your clients!)\r\n10 Fast-Action Bonuses worth over $19,997 (including AI tools, traffic generation, and more!)\r\n\r\nDon\'t miss out on this limited-time offer! The price is about to increase, and this one-time fee won\'t last forever.\r\n\r\nClick here to learn more: https://furtherinfo.org/0wg3\r\n\r\nConstance',''),(7597,1,1896,'6','Georgina Haynes',''),(7598,1,1896,'2','3350658928',''),(7599,1,1896,'3','georginahaynes620@gmail.com',''),(7600,1,1896,'4','Hi,\r\n\r\nI just visited juiceelectrical.co.nz and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur prices start from just $195.\r\n\r\nLet me know if you\'re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nGeorgina',''),(7601,1,1897,'6','Nace',''),(7602,1,1897,'2','7817249238',''),(7603,1,1897,'3','valencia.goldberg@gmail.com',''),(7604,1,1897,'4','Hi ,\r\n\r\nMy name is Nace. I have been converting websites into apps on Fiverr over 10 years. I don\'t stop working until you are fully satisfied, and I provide professional support before,\r\n during and after the work is done. I do this for living, so I take my work very seriously. Each and every buyer will receive my personal care and attention.\r\n\r\nThe process:\r\n\r\n- Please contact me and send me the URL\r\n\r\n- I will inform you what to expect and prepare\r\n\r\n- Leave everything else to me!\r\n\r\nWhat I offer:\r\n\r\n- New website content updated automatically\r\n\r\n- Lifetime customer support\r\n\r\n- Professionally developed apps to sync with your website flow, colors, logo, font, style\r\n\r\n- UNIQUE: Choose your layout and easily edit apps anytime!\r\n\r\n- Works on phones and tablets\r\n\r\n- Unlimited push notifications\r\n\r\n- Unlimited links & buttons\r\n\r\n- Analytics\r\n\r\n- Social media\r\n\r\n- Contact page with action buttons\r\n\r\n- About/Services\r\n\r\n- APK/IPA files\r\n\r\n- Etc.\r\n\r\n\r\nI work with all websites: Wordpress, Shopify, Wix, GoDaddy, Squarespace, Weebly, HostGator, etc. I am looking forward to working with you!\r\n\r\nLets Starts and contact me here ===> https://tinyurl.com/4hxuhsy5',''),(7605,1,1898,'6','JeremyMom',''),(7606,1,1898,'2','83267211981',''),(7607,1,1898,'3','stwertla.w1@gmail.com',''),(7608,1,1898,'4','Have you heard how many people made a lot of money playing NOTCOIN? Play a new game and earn real money in cryptocurrency. https://tinyurl.com/4wcykaas',''),(7609,1,1898,'5','Nokia',''),(7610,1,1899,'6','Emily Jones',''),(7611,1,1899,'2','61178445',''),(7612,1,1899,'3','emilyjones2250@gmail.com',''),(7613,1,1899,'4','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically. \r\n\r\n- We guarantee to gain you 700-1500+ subscribers per month.\r\n- People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nEmily',''),(7614,1,1900,'6','Stephany Mitchell',''),(7615,1,1900,'2','02108383776',''),(7616,1,1900,'3','patchin001@gmail.com',''),(7617,1,1900,'4','Thermostat on oven dysfunctional and heat transfer motor has stopped working',''),(7618,1,1900,'5','Used previously',''),(7619,1,1901,'6','Ravi Haire',''),(7620,1,1901,'2','366428997',''),(7621,1,1901,'3','haire.angelica@gmail.com',''),(7622,1,1901,'4','Hi,\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n I recently grew my client’s organic search traffic with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(7623,1,1902,'6','Stuart Hair',''),(7624,1,1902,'2','027 3066117',''),(7625,1,1902,'3','stuartandhelenhair@gmail.com',''),(7626,1,1902,'4','Hi there, I would like to get a quote to install several power outlets.\r\nOne single 20A,\r\nOne switched double 15A,\r\nFour switched double 10A, and\r\nOne four way switched 10A.\r\n\r\nI suspect there will also need to be two or three RCDs as well.\r\n\r\n7A Shadbolt Lane,\r\nHighgate,\r\nRolleston.',''),(7627,1,1902,'5','On Line.',''),(7628,1,1903,'6','Aubreyfup',''),(7629,1,1903,'2','83797215796',''),(7630,1,1903,'3','neslonp.au.s.lon.56.4@gmail.com',''),(7631,1,1903,'4','Play this game in telegram, just click on the screen and get real money for it, in tokens and cryptocurrency https://tinyurl.com/yjscxddz',''),(7632,1,1903,'5','Wallmart',''),(7633,1,1904,'6','Trevor Tritt',''),(7634,1,1904,'2','070 3556 1961',''),(7635,1,1904,'3','trevor.tritt@googlemail.com',''),(7636,1,1904,'4','Hi\r\n\r\nI hope this massage finds you well.\r\n\r\nAre you looking to elevate your Website SEO game and achieve top rankings on Google?\r\n\r\nAt [Ranked Ai , we specialize in delivering powerful SEO solutions tailored for agencies like yours.\r\n\r\nHere’s how we can help:\r\n\r\nTargeted SEO Strategies: Choose from plans with 25, 50, or 100 target keywords.\r\n\r\nContent Creation: We provide up to 4 high-quality articles per week.\r\n\r\nComprehensive Optimization: From on-page tweaks to building high-quality backlinks.\r\n\r\nCutting-Edge SEO Software: Access industry-leading tools to boost your results.\r\n\r\nWe’ve successfully propelled thousands of companies to page 1 on Google,\r\n\r\ntranslating into millions of dollars in revenue. \r\n\r\nAnd the best part? You can try our services free for the first 7 days!\r\n\r\nPlace your website URL with us, and we’ll do all the work for you.\r\n\r\nReady to get started? Click Here\r\n\r\nbit.ly/seo-free-7\r\n\r\nBest regards,\r\n\r\n\r\n\r\nP.S. Don’t miss out on this opportunity to see the impact of our SEO services firsthand, absolutely risk-free!\r\n\r\n\r\nThanks for your time \r\n\r\n \r\n\r\nDanial',''),(7637,1,1905,'6','CharlieTes',''),(7638,1,1905,'2','81961538911',''),(7639,1,1905,'3','m.a.ti.p.es.m.ith@gmail.com',''),(7640,1,1905,'4','You want to earn free cryptocurrency - it\'s easy to do by simply clicking on the screen of your phone, follow the link and join millions of users https://tinyurl.com/3u45x2kw',''),(7641,1,1905,'5','Google',''),(7642,1,1906,'6','Bronze Templeton',''),(7643,1,1906,'3','bronzet@hotmail.com',''),(7644,1,1906,'4','Hello, my name is Bronze Templeton and i would like to enquire about getting a couple of Shelly PMs gen 3 (for heat pump and small hot water cylinder) (https://www.shelly.com/en/products/shop/shelly-1pm-gen3) + 1 x shelly EM (for the mains) (https://www.shelly.com/en/products/shop/shelly-em-120a/shelly-em-120a-50a) installed at the switchboard. I am looking at buying them directly from the shelly website but i am also curious if you sell them too and how the price compares if you do.\r\nI live in Christchurch in area code 8052\r\nTHanks\r\nBronze',''),(7645,1,1906,'5','google search',''),(7646,1,1907,'6','JoshuaFet',''),(7647,1,1907,'2','88759986323',''),(7648,1,1907,'3','m032.57.73.1@gmail.com',''),(7649,1,1907,'4','play, win, +2,500 coins using our link - https://tinyurl.com/592dn2td',''),(7650,1,1907,'5','Google',''),(7651,1,1908,'6','Aleksandar',''),(7652,1,1908,'2','495270634',''),(7653,1,1908,'3','trendflex0220@gmail.com',''),(7654,1,1908,'4','Greetings \r\n\r\n* I recently had the pleasure of revisiting your website and was impressed by the foundation you\'ve laid. \r\n-However, I also noticed areas where your online presence could be enhanced to better serve your customers and drive business growth.\r\n\r\n* As a seasoned professional with expertise in SEO analysis, visual design, and customer satisfaction, \r\n-I\'ve seen firsthand how a well-crafted online strategy can make all the difference. \r\n\r\n* For example, our SEO analysis has helped clients increase organic traffic by an average of 45%. \r\n-Unfortunately, many businesses struggle with common mistakes, \r\n-including poor website structure, inconsistent branding, inadequate SEO, and inadequate conversion-optimized landing pages.\r\n\r\n* I understand that you may be aware of these issues or may not have the resources to address them.\r\n-That\'s why I\'m offering my services to help you achieve your online goals. My expertise includes:\r\n\r\n1. Improving your website\'s visibility and driving more traffic through SEO analysis\r\n2. Enhancing your website\'s search engine rankings\r\n3. Engaging your target audience\r\n4. Creating content tailored to your brand and target audience\r\n5. Mentoring and guidance to help you get started\r\n\r\n* To help you get started, I\'m offering my first service for FREE. \r\n-I believe I can bring significant value to your online presence and help you surpass your competition effortlessly.\r\n\r\n* If you\'re interested in learning more, please feel free to contact me using \r\n- WhatsApp at +381604141669 \r\n or by \r\n- email at web0220supp@gmail.com.\r\n\r\n* I\'m confident that by working together, we can elevate your online presence and help your business thrive in the digital landscape.\r\n\r\n Best regards,\r\n Aleksandar',''),(7655,1,1909,'6','angel zhang',''),(7656,1,1909,'3','export@jincheng-aluminium.com',''),(7657,1,1909,'4','Lovely day to you ≧◠◡◠≦\r\nCan you tell us the email of Aluminum profile purchaser or manager? Maybe they are looking for us everywhere, I believe they will appreciate your kind behavior, because: Maybe you are buying from us, but by a middle company. \r\n✿ We are the Top 3 super large aluminum manufacturer --Since from 1990, Price in No.1.\r\n✿ Super large scale group company, include Jincheng Aluminium, Jincheng steel structure, Jincheng Hotel-- We have the local largest, The only 4- star level hotel.\r\n✿We are the Certificated Supplier of Beijing Capital International Airport,QINGDAO INTERNATIONAL AIR PORT, Canton Tower, Shanghai Tower, International Financial Center,etc.\r\n✿ If necessary, We can afford all the Mould cost, also the samples and express, even buy the tickets for you to visit our factory.......Strong desire you come to visit our factory, then you will feel lucky and excited to find us, among so many people. \r\nI love ❤ my clients & my company, So You really can count on us, as we will treat your matter much important than ours, with high sense of responsibility! \r\nYours Sincerely and integrity\r\nAngel\r\nWeifang Jincheng Aluminum Co., Ltd\r\nwww.jinchengalu.com',''),(7658,1,1909,'5','google',''),(7659,1,1910,'6','Greg Buist',''),(7660,1,1910,'2','0277700664',''),(7661,1,1910,'3','gtbnnn@gmail.com',''),(7662,1,1910,'4','Just after a quote for the following:\r\n- Replace 2 x outside lantern lights for back deck area: I have purchased the lights- just need to fitted to house and wired in.\r\n- Install an external safety spotlight over front door area- replacing exisiting light: again have purchased the light- just needs to be repositioned and wired in.\r\n- Replace 3-4 old outdated light switches and plugs in bedrooms with modern ones.\r\nCan arrange to be at home if convenient for an electrician to come out and review prior to being able to quote. Thanks',''),(7663,1,1910,'5','Online',''),(7664,1,1911,'6','Penny Blue',''),(7665,1,1911,'2','0272780819',''),(7666,1,1911,'3','penny-blue@live.com',''),(7667,1,1911,'4','Hello,\r\n\r\nMe again! Our water pump blew up at 30 Breens Road (as it was apparently installed upside down!). \r\n\r\nWe\'ve had a plumber in to replace this however they advised that the socket that the pump was plugged into has stopped working. The tenant has checked the switchboard and said that that wasn\'t the issue. \r\n\r\nThe pump and socket is located in the hot water cylinder cupboard which is in the bedroom on the left as you walk in. \r\n\r\nCould you please send somebody out to fix this?\r\n\r\nTenant contact - Jacqui 021 023 34372\r\n \r\nThank you very much :)',''),(7668,1,1912,'6','Penny Blue',''),(7669,1,1912,'2','0272780819',''),(7670,1,1912,'3','penny-blue@live.com',''),(7671,1,1912,'4','Hello,\r\n\r\nMe again! Our water pump blew up at 30 Breens Road (as it was apparently installed upside down!). \r\n\r\nWe\'ve had a plumber in to replace this however they advised that the socket that the pump was plugged into has stopped working. The tenant has checked the switchboard and said that that wasn\'t the issue. \r\n\r\nThe pump and socket is located in the hot water cylinder cupboard which is in the bedroom on the left as you walk in. \r\n\r\nCould you please send somebody out to fix this?\r\n\r\nTenant contact - Jacqui 021 023 34372\r\n \r\nThank you very much :)',''),(7672,1,1913,'6','Phil Stewart',''),(7673,1,1913,'2','342-123-4456',''),(7674,1,1913,'3','noreplyhere@aol.com',''),(7675,1,1913,'4','Quick question for you, would you like me to blast your ad to millions of contact forms? I posted my ad to your contact form just now and you\'re reading it so there\'s proof it works. Take a look at my site below for more info\r\n\r\nhttp://3uh6rg.blast-to-forms.xyz',''),(7676,1,1914,'6','Masonphync',''),(7677,1,1914,'2','89834429112',''),(7678,1,1914,'3','kaenquirynicholls@gmail.com',''),(7679,1,1914,'4','Hi, I wanted to know your price.',''),(7680,1,1914,'5','FBI',''),(7681,1,1915,'6','Ravi Jean',''),(7682,1,1915,'2','8655401754',''),(7683,1,1915,'3','ruby.jean@gmail.com',''),(7684,1,1915,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7685,1,1916,'6','Marvin Scofield',''),(7686,1,1916,'2','6134735079',''),(7687,1,1916,'3','marvin.scofield88@outlook.com',''),(7688,1,1916,'4','Hi juiceelectrical.co.nz Webmaster!,\r\n\r\nIs your website traffic falling short? I\'m Ozzie, Fiverr\'s ONLY SEO Super Seller with 15+ years of experience.\r\n\r\nI offer a service to create 10+ high-quality backlinks from PR9 authority sites, safe from Google updates. Our effective SEO strategies have helped over 70,000 clients improve their domain authority and search engine positions.\r\n\r\nBoost your conversions and traffic today. No need to message before ordering—just click and watch your SEO soar!\r\n\r\nCheck out my gig here: https://www.fiverrseopro.com\r\n\r\nTransform your website’s performance with our help!\r\n\r\nBest,\r\n\r\nOzzie',''),(7689,1,1917,'6','Matthew Williams',''),(7690,1,1917,'2','4323345',''),(7691,1,1917,'3','futurosalesco@gmail.com',''),(7692,1,1917,'4','Hey, \r\n\r\nAre you interested in a sms/whatsapp bot that can reactive all your old leads within minutes, warm them up, and either close the sale or book an appointment using the best practices for sales? \r\n\r\nIt’s free of cost to get started. You only pay when you book an appointment or close a sale a fixed amount or fixed commission. \r\n\r\nThis way you can re-engage all of your old leads by sms/whatsapp with a bot trained on your sales data, product data, and knowledge base in minutes without having to contact them manually or design a campaign to re-engage them by email, sms, etc. The bot does it all for you. \r\n\r\nDoes that sound like something you’re interested in?\r\n\r\nIf you are click the link below to book an appointment to learn more.\r\n\r\nhttps://bit.ly/reactive8 \r\n\r\n\r\nBest,\r\n\r\nMatthew Williams\r\nPresident\r\nZentara\r\n\r\n\r\n\r\n\r\nReply to this email with the word \"UNSUBSCRIBE\" as the Subject to unsubscribe.',''),(7693,1,1918,'6','Masonphync',''),(7694,1,1918,'2','82536269854',''),(7695,1,1918,'3','kaenquirynicholls@gmail.com',''),(7696,1,1918,'4','Здравейте, исках да знам цената ви.',''),(7697,1,1918,'5','AliExpress',''),(7698,1,1919,'6','Aleksandar',''),(7699,1,1919,'2','3336035572',''),(7700,1,1919,'3','trendflex0220@gmail.com',''),(7701,1,1919,'4','* As a highly experienced SEO analyst, I\'ve helped numerous businesses like yours boost their online visibility,\r\n drive more traffic, and increase conversions.\r\n- Now, I\'m excited to offer my expertise to you!\r\n\r\n* Get Started with a FREE SEO Analysis\r\n- Take the first step towards elevating your online presence by claiming your FREE SEO analysis. \r\n-This comprehensive assessment will identify areas of improvement and provide actionable recommendations to help you:\r\n\r\n• Improve your website\'s search engine rankings\r\n• Increase organic traffic and engagement\r\n• Enhance user experience and conversion rates\r\n\r\n* Why Choose Me?\r\n• Proven track record of delivering high-quality SEO services\r\n• Expertise in site analysis and SEO audits\r\n• Personalized approach to meet your unique business needs\r\n• Competitive pricing and flexible packages\r\n\r\n* Get in Touch\r\n- Ready to take your online presence to the next level? \r\nContact me today using WhatsApp at +381604141669 \r\nor email at web0220supp@gmail.com. I look forward to helping you achieve your online goals!\r\n\r\n Best regards,\r\n Aleksandar',''),(7702,1,1920,'6','Sheena Reichert',''),(7703,1,1920,'2','362327474',''),(7704,1,1920,'3','reichert.sheena@gmail.com',''),(7705,1,1920,'4','To who ever this may interest, \r\n\r\nI hope this message finds you well.\r\n\r\n\r\n\r\nI\'m excited to share an incredible opportunity with you – the Leo Trial from NextGen Workers. If you\'re looking to advance your career, develop new skills, and gain a competitive edge in the workforce, this is your chance!\r\n\r\nWhy NextGen Workers?\r\n\r\n\r\nNextGen Workers is dedicated to empowering individuals like you to reach their full potential. With a focus on practical, real-world applications, our programs are designed to make a tangible difference in your professional journey.\r\n\r\n\r\n\r\nJoin the Leo Trial Today!\r\n\r\n\r\n\r\nDon\'t miss out on this exclusive opportunity. \r\n\r\nClick the link below to learn more and sign up:\r\n\r\n\r\n\r\nhttps://www.digistore24.com/redir/546694/promotecurrency/\r\n\r\nJoin the Leo Trial Now\r\n\r\n\r\n\r\nInvest in yourself and take the first step towards a brighter future with NextGen Workers.\r\n\r\nThank you for your Time and Consideration!',''),(7706,1,1921,'6','WilliamObede',''),(7707,1,1921,'2','85143819334',''),(7708,1,1921,'3','gabreilo.m.s.s.o.n.7.22@gmail.com',''),(7709,1,1921,'4','Register an account on Bybit and receive exclusive rewards with the Bybit referral program! Additionally, get a bonus of up to 6,045 USDT using the link - https://tinyurl.com/bddw5ye7',''),(7710,1,1921,'5','Wallmart',''),(7711,1,1922,'6','Alysa Currey',''),(7712,1,1922,'2','468082390',''),(7713,1,1922,'3','alysa.currey@outlook.com',''),(7714,1,1922,'4','Hi, I was trying to contact the business owner because I found a great system for marketing and automation. Go High Level is the name of the game and you get 14 days for free in using this link.\r\n https://shorturl.at/c9O0A',''),(7715,1,1923,'6','Davidphync',''),(7716,1,1923,'2','85923548636',''),(7717,1,1923,'3','algebraically.pawlo@gmail.com',''),(7718,1,1923,'4','Kaixo, zure prezioa jakin nahi nuen.',''),(7719,1,1923,'5','Apple',''),(7720,1,1924,'6','Julianne Greener',''),(7721,1,1924,'2','1692092496',''),(7722,1,1924,'3','julianne.greener@gmail.com',''),(7723,1,1924,'4','Subject: Unleash Limitless Productivity with InfinityFlow \r\n\r\nDear Visionary Professionals,\r\n\r\nAre you tired of feeling overwhelmed by the chaos of daily tasks and deadlines? Do you crave a seamless workflow that empowers you to unleash your true potential? Look no further than InfinityFlow.io - the ultimate productivity program that will propel your efficiency to infinity and beyond!\r\n\r\nImagine a world where you effortlessly glide through your to-do list, accomplishing tasks with unrivaled speed and precision. With InfinityFlow.io, this dream becomes a reality. Our cutting-edge platform is designed to optimize every aspect of your workflow, so you can focus on what truly matters - turning your ideas into reality!\r\n\r\nInfinityFlow.io\'s intuitive interface will transform the way you work. Seamlessly manage projects, delegate tasks, and collaborate with your team in real-time. No more messy email chains or lost files - everything you need is just a click away!\r\n\r\nBut that\'s not all - InfinityFlow.io is packed with powerful features to take your productivity to unprecedented heights. Our smart automation tools will streamline repetitive tasks, freeing up valuable time for you to tackle creative challenges. With personalized notifications and reminders, you\'ll never miss a deadline or important milestone again!\r\n\r\nSecurity is our top priority at InfinityFlow.io. Rest easy knowing that your sensitive data is protected by state-of-the-art encryption and authentication protocols. Focus on your work with peace of mind, knowing that your information is safe and secure.\r\n\r\nWhether you\'re a solopreneur, a small team, or a large enterprise, InfinityFlow.io scales to fit your needs. Our flexible plans and customizable workflows ensure that our platform adapts to your unique requirements and maximizes your efficiency.\r\n\r\nJoin the ranks of successful professionals who have harnessed the power of InfinityFlow.io to revolutionize their productivity. As a limited-time offer, we invite you to try InfinityFlow.io FREE for 14 days! Experience the transformative impact it will have on your work life, without any commitment.\r\n\r\nAre you ready to unlock the door to unparalleled productivity? Visit www.infinityflow.io and start your journey towards infinite possibilities today!\r\n\r\nLet InfinityFlow.io be your secret weapon for success.\r\n\r\nTo boundless achievements,\r\n\r\n\r\nGo Get your best LTD for 2023 >>>>> https://rebrand.ly/infinityflow',''),(7724,1,1925,'6','CharlieTes',''),(7725,1,1925,'2','87735164114',''),(7726,1,1925,'3','evan.b.o.ri.s.4.8.7@gmail.com',''),(7727,1,1925,'4','You want to earn free cryptocurrency - it\'s easy to do by simply clicking on the screen of your phone, follow the link and join millions of users https://tinyurl.com/3u45x2kw',''),(7728,1,1925,'5','AliExpress',''),(7729,1,1926,'6','Your Secret Friend',''),(7730,1,1926,'2','246105429',''),(7731,1,1926,'3','secretsofsuccess87@gmail.com',''),(7732,1,1926,'4','Hey,\r\n\r\nI\'ve discovered something that has transformed my personal and financial life, \r\n\r\nand I immediately thought of you and your incredible dedication to business and\r\n\r\npersonal development. The \"Secrets of Success\" program offers a wealth of knowledge\r\n\r\nfrom personal development legends, and I truly believe this will elevate both your \r\n\r\nbusiness and personal growth. Spots are limited, \r\n\r\nso don\'t miss out join me now: https://secretsofsuccess.com/roundpegs?afmc=17em\r\n\r\nLooking forward to seeing you inside...\r\n\r\nYour Secret Friend! xxx',''),(7733,1,1927,'6','Amelia Brown',''),(7734,1,1927,'2','749087578',''),(7735,1,1927,'3','ameliabrown0325@gmail.com',''),(7736,1,1927,'4','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your \r\nsubscriber count safely and practically.\r\n\r\nOur focus is on organic growth strategies that nurture a \r\nthriving community around your channel. We don\'t use bots or \r\ngimmicks, just targeted engagement tactics to help you reach the \r\nright people.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nAmelia\r\n\r\nUnsubscribe: https://removeme.click/yt/unsubscribe.php?d=juiceelectrical.co.nz',''),(7737,1,1928,'6','Robertped',''),(7738,1,1928,'2','84665371889',''),(7739,1,1928,'3','ama.s.l61.7.90@gmail.com',''),(7740,1,1928,'4','Play MemiFi Coin Earn and cryptocurrency and have fun https://tinyurl.com/yc8b6r6a',''),(7741,1,1928,'5','FBI',''),(7742,1,1929,'6','WlasovGoodmrSr',''),(7743,1,1929,'2','84798955442',''),(7744,1,1929,'3','nasa@meteo.gold',''),(7745,1,1929,'4','Рады приветствовать вас на вашем онлайн-сайте! \r\n \r\nАгентство XRumer Co предлагает свои профессиональные услуги СЕО продвижения. \r\n \r\nВаш ресурс, как можно заметить, еще только начинает набирать обороты. Чтобы ускорить его рост, предлагаем наши услуги по СЕО-оптимизации. Продвижение в поисковиках – наше основное направление. В ассортименте представлены эффективные SEO-инструменты для специалистов. Наши профессионалы обладают серьезным опытом и портфолио выполненных проектов, которыми мы с радостью поделимся по запросу. \r\n \r\nДо конца месяца предлагаем скидку на все услуги - 10%. \r\n \r\nСреди наших предложений следующее: \r\n \r\n- Супер трастовые ссылки (требуется любому сайту) – стоимость 1500-5000 р \r\n \r\n- Размещаем 2500 трастовых безанкорных ссылок (желательно всем сайтам) – 3.900 р \r\n \r\n- Топовый прогон по 110000 сайтам в зоне RU (очень полезно для сайтов) – 2900 руб \r\n \r\n- 150 постов в VK про ваш сайт (недорогая реклама) – 3900 руб \r\n \r\n- Публикации о вашем сайте на 300 топовых форумах (мощнейшая раскрутка веб-сайта) – 29.000 р \r\n \r\n- МегаПостинг – это прогон по 3 млн площадок (мощный пакет для ваших сайтов) – 39900 рублей \r\n \r\n- Рассылка сообщений по сайтам при помощи обратной связи – цена по договоренности, в зависимости от объема. \r\n \r\nЕсли появятся вопросы, смело обращайтесь, поможем. \r\nОплата: Yoo.Деньги, Bitcoin, МИР, Visa, MasterCard... \r\nПринимаем USDT - Отчётность. \r\nТелегрм: https://t.me/exrumer \r\nSkype: Loves.Ltd \r\nhttps://xrumer.cc/ \r\nТолько этот.',''),(7746,1,1929,'5','FBI',''),(7747,1,1930,'6','Aleksandar',''),(7748,1,1930,'2','5444529145',''),(7749,1,1930,'3','trendflex0220@gmail.com',''),(7750,1,1930,'4','* As a highly experienced SEO analyst, I\'ve helped numerous businesses like yours boost their online visibility,\r\n drive more traffic, and increase conversions.\r\n- Now, I\'m excited to offer my expertise to you!\r\n\r\n* Get Started with a FREE SEO Analysis\r\n- Take the first step towards elevating your online presence by claiming your FREE SEO analysis. \r\n-This comprehensive assessment will identify areas of improvement and provide actionable recommendations to help you:\r\n\r\n• Improve your website\'s search engine rankings\r\n• Increase organic traffic and engagement\r\n• Enhance user experience and conversion rates\r\n\r\n* Why Choose Me?\r\n• Proven track record of delivering high-quality SEO services\r\n• Expertise in site analysis and SEO audits\r\n• Personalized approach to meet your unique business needs\r\n• Competitive pricing and flexible packages\r\n\r\n* Get in Touch\r\n- Ready to take your online presence to the next level? \r\nContact me today using WhatsApp at +381604141669 \r\nor email at web0220supp@gmail.com. I look forward to helping you achieve your online goals!\r\n\r\n Best regards,\r\n Aleksandar',''),(7751,1,1931,'6','TyroneNax',''),(7752,1,1931,'2','87335219465',''),(7753,1,1931,'3','marisolhendrick@icloud.com',''),(7754,1,1931,'4','Join our dynamic team at https://AccsMarket.net and become a vital partner in revolutionizing the account acquisition industry. With a diverse array of accounts available, from social media profiles to gaming credentials, partnering with us offers limitless potential for growth and success. Together, we can unlock new opportunities and reshape the digital landscape. \r\n \r\nVisit Now : https://AccsMarket.net',''),(7755,1,1931,'5','Wallmart',''),(7756,1,1932,'6','Your Secret Friend',''),(7757,1,1932,'2','687889535',''),(7758,1,1932,'3','secretsofsuccess87@gmail.com',''),(7759,1,1932,'4','Hey,\r\n\r\nI\'ve discovered something that has transformed my personal and financial life, \r\n\r\nand I immediately thought of you and your incredible dedication to business and\r\n\r\npersonal development. The \"Secrets of Success\" program offers a wealth of knowledge\r\n\r\nfrom personal development legends, and I truly believe this will elevate both your \r\n\r\nbusiness and personal growth. Spots are limited, \r\n\r\nso don\'t miss out join me now: https://secretsofsuccess.com/roundpegs?afmc=17em\r\n\r\nLooking forward to seeing you inside...\r\n\r\nYour Secret Friend! xxx',''),(7760,1,1933,'6','Mellisa Buckman',''),(7761,1,1933,'2','529301211',''),(7762,1,1933,'3','mailbangerusa@gmx.com',''),(7763,1,1933,'4','vSince 2012 Mailbanger.com has been selling OPTIN marketing lists with customer name/contact information to many small and startup businesses.\r\nMarket direct to millions of cutomers who have opted in to receive offers from third parties!\r\n\r\nWe have lists for USA/UK/Australia/Canada and many more countries\r\n\r\n\r\nHere are some of our packages:\r\n\r\n2024 USA Business Database bundle with free LINKEDIN database and Executive contact database:\r\nhttps://www.mailbanger.com/2024-usa-business-database-ultra-bundle/\r\n\r\n\r\n2023-2024 USA residential Homeowners list - Over 200 million records\r\nhttps://www.mailbanger.com/2021-usa-homeowner-and-residential-248-million-records/\r\n\r\n\r\n2024 100 million USA consumers with age,cell/home phone/address/email:\r\nhttps://www.mailbanger.com/100-million-usa-consumers-mega-edition\r\n\r\n\r\n2024 Cell/SMS Marketing package of over 40 million USA Customers:\r\nhttps://www.mailbanger.com/2024-usa-42-million-consumer-cell-phone-numbers/\r\n\r\n\r\nUSA Charity donors:\r\nhttps://www.mailbanger.com/usa-charity-donor-leads\r\n\r\nAustralia residential and consumer leads:\r\nhttps://www.mailbanger.com/mailing-lists-australia/\r\n\r\n850 000 Weight loss customers:\r\nhttps://www.mailbanger.com/weight-loss-diet-leads-lists\r\n\r\n\r\nWe have many more lists - stop wasting thousands on pay per click or other expensive forms of advertising, and market direct for super affordable prices.\r\n\r\nAll lists are updated regularly, buy once and its yours so you can use them for many campaigns. They come in Excel files with sortable categories\r\n\r\n\r\nBecome an Affiliate with Mailbanger and earn 20% - average sale is $500!\r\nhttps://www.mailbanger.com/affiliate-center/\r\n\r\n\r\nRegards\r\nMailbanger.com',''),(7764,1,1934,'6','Alex',''),(7765,1,1934,'2','1533863981',''),(7766,1,1934,'3','alex@juiceelectrical.co.nz',''),(7767,1,1934,'4','Good Morning \r\n\r\nThe New Powerful LED Flashlight is The Perfect Flashlight For Any Situation!\r\n\r\nThe 3,000 Lumens & Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have.\r\n\r\n50% OFF + Free Shipping! Get it Now: https://linterna.cc\r\n\r\nMany Thanks, \r\n\r\nAlex',''),(7768,1,1935,'6','Ravi Ancher',''),(7769,1,1935,'2','1939193370',''),(7770,1,1935,'3','eddy.ancher@hotmail.com',''),(7771,1,1935,'4','Hi,\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n I recently grew my client’s organic search traffic with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(7772,1,1936,'6','Aleksandar',''),(7773,1,1936,'2','3203011841',''),(7774,1,1936,'3','trendflex0220@gmail.com',''),(7775,1,1936,'4','* As a highly experienced SEO analyst, I\'ve helped many businesses like yours grow their online presence.\r\n- I\'ve seen some clients experience a 47% increase in online visibility in just 6 months. \r\n\r\n* Are you ready to boost your online success? \r\n- Now, I\'m excited to offer my expertise to you!\r\n\r\n* Get Started with a FREE SEO Analysis\r\n- Take the first step towards elevating your online presence by claiming your FREE SEO analysis. \r\n-This comprehensive assessment will identify areas of improvement and provide actionable recommendations to help you:\r\n\r\n• Improve your website\'s search engine rankings\r\n• Increase organic traffic and engagement\r\n• Enhance user experience and conversion rates\r\n\r\n* Why Choose Me?\r\n• Proven track record of delivering high-quality SEO services\r\n• Expertise in site analysis and SEO audits\r\n• Personalized approach to meet your unique business needs\r\n• Competitive pricing and flexible packages\r\n\r\n* Get in Touch\r\n- Ready to take your online presence to the next level? \r\nContact me today using:\r\n- WhatsApp at +381604141669 \r\n or\r\n- Email at web0220supp@gmail.com.\r\n\r\n* I look forward to helping you achieve your online goals!\r\n\r\n Best regards,\r\n Aleksandar',''),(7776,1,1937,'6','Trina Gillan',''),(7777,1,1937,'2','7034117667',''),(7778,1,1937,'3','gillan.trina@googlemail.com',''),(7779,1,1937,'4','Absolutely, here’s a concise post to promote JavaBurn with a link:\r\n\r\nTitle: Supercharge Your Coffee with JavaBurn and Shed Pounds!\r\n\r\nAre you ready to transform your morning coffee into a powerful weight loss tool? JavaBurn is a natural supplement that boosts metabolism, curbs cravings, and increases energy levels—all by simply adding it to your coffee.\r\n\r\nExperience the benefits of JavaBurn for yourself! Click https://bit.ly/3KF7Ony',''),(7780,1,1938,'6','Chastity MacNeil',''),(7781,1,1938,'2','7044069558',''),(7782,1,1938,'3','chastity.macneil@hotmail.com',''),(7783,1,1938,'4','Unlock Your issue Potential once A.I.!\r\n\r\nAre you ready to take on your business to the adjacent level? \r\n\r\nTake this quick quiz to discover how A.I. can improve your operations, boost efficiency, and drive growth. \r\n\r\nhttps://bit.ly/4c8cnmJ',''),(7784,1,1939,'6','Robertphync',''),(7785,1,1939,'2','83165252594',''),(7786,1,1939,'3','cautioningsehomogen@gmail.com',''),(7787,1,1939,'4','Szia, meg akartam tudni az árát.',''),(7788,1,1939,'5','Nokia',''),(7789,1,1940,'6','Desmond Michel',''),(7790,1,1940,'3','desmond.michel@gmail.com',''),(7791,1,1940,'4','Hi\r\n\r\njuiceelectrical.co.nz is very engaging!\r\n\r\nJoin the eco-friendly movement with MissionNewEnergy, your trusted source for renewable energy solutions.\r\n\r\nAs going green becomes the new trend, now is the time to explore the benefits of renewable energy.\r\n\r\nClick this link to learn more about how you can make a difference >>> https://www.missionnewenergy.com/solar-energy/how-do-solar-panels-work/.\r\n\r\nFrom solar and wind energy to biodiesel, MissionNewEnergy offers cutting-edge technologies to help you reduce your carbon footprint and save on energy costs.\r\n\r\nTake advantage of the most efficient renewable energy solutions that are both environmentally friendly and cost-effective.\r\n\r\nJoin the thousands making the switch to a greener future.\r\n\r\nFind out more about how you can make a difference >>> https://www.missionnewenergy.com/solar-energy/innovations-in-solar-panel-technology/}.\r\n\r\nBlessings always!',''),(7792,1,1941,'6','Task Wave',''),(7793,1,1941,'2','+18334780702',''),(7794,1,1941,'3','tryme@taskwavegpt.com',''),(7795,1,1941,'4','We promise this one’s different! We’re excited to introduce you to Task Wave GPT, our AI automation system designed to make your business life easier. Our system can:\r\n\r\nReply to inquiries and questions accurately\r\nSchedule meetings seamlessly\r\nSend invites and reminders\r\nFollow up on no-shows\r\nFilter spam\r\nAutomatically update your CRM\r\nProvide pre-meeting client briefs\r\nTailored made solutions\r\nWe think our system is incredibly innovative and highly effective, and we’d love for you to try it out. Just email us or fill out our contact form to get the full experience.\r\ntaskwavegpt.com\r\ntryme@taskwavegpt.com\r\nLooking forward to seeing how Task Wave GPT can help you!',''),(7796,1,1942,'6','Emilie Kirtley',''),(7797,1,1942,'2','4023242099',''),(7798,1,1942,'3','kirtley.emilie@msn.com',''),(7799,1,1942,'4','Just like you\'ve received this message:\r\n\r\nContact millions people with your message from only USD9. We will deliver your message through millions website contact forms, ensuring it lands in the inbox. Create potential customers, site visits, purchasers, and awareness, enhancing your recognition.\r\n\r\nVisit https://bit.ly/cformmarketing\r\n\r\n\r\n\r\nUnsubscribe here if you don\'t want to get these amazing deals: https://bynd.li/unsubscribe\r\n4277 Poling Farm Road, Chester, NE, United States, 68327',''),(7800,1,1943,'6','Michaelged',''),(7801,1,1943,'2','83782261631',''),(7802,1,1943,'3','suki.na.natas.u@gmail.com',''),(7803,1,1943,'4','Feed your cute capybara in this game in telegram and get real money for it https://tinyurl.com/5bhfrnj9',''),(7804,1,1943,'5','Apple',''),(7805,1,1944,'6','NgcHuh',''),(7806,1,1944,'2','83681945594',''),(7807,1,1944,'3','ngc5620919@gmail.com',''),(7808,1,1944,'4','Non gаmstоp сasіnоs \r\nGеt уоur sіgn-up bоnus \r\nhttps://tinyurl.com/bddhbf5u',''),(7809,1,1944,'5','FBI',''),(7810,1,1945,'6','Ravi Fortenberry',''),(7811,1,1945,'2','4502731',''),(7812,1,1945,'3','fortenberry.isaac@yahoo.com',''),(7813,1,1945,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7814,1,1946,'6','Chris Smith',''),(7815,1,1946,'2','485547075',''),(7816,1,1946,'3','leadmegaphoneus@gmail.com',''),(7817,1,1946,'4','Hi,\r\n\r\nI was on your website and noticed some words are missing. It might sound silly, but this could be costing you customers and affecting your monthly revenue.\r\n\r\nWould you like a complimentary Website Checkup to see how your site compares with your competition on Google? I can send it over shortly.\r\n\r\nWarm regards,\r\n\r\nChris Smith',''),(7818,1,1947,'6','Deandre Hibbins',''),(7819,1,1947,'2','672579148',''),(7820,1,1947,'3','deandre.hibbins@outlook.com',''),(7821,1,1947,'4','curious approximately how A.I. can supercharge your business?\r\n\r\nTake our quiz and uncover personalized insights on leveraging A.I. for success. From automating tasks to enhancing customer experiences, look how A.I. can make a difference!\r\n\r\n\r\nhttps://bit.ly/4c8cnmJ',''),(7822,1,1948,'6','Albert Eichmann Eichmann',''),(7823,1,1948,'2','44116024',''),(7824,1,1948,'3','eichmann.albert@gmail.com',''),(7825,1,1948,'4','Hi ,\r\n\r\nBuy Google Workspace + OAuth Setup at just $3/Mo\r\n\r\nClick here to start ===> https://tinyurl.com/rfzurh59',''),(7826,1,1949,'6','Louise French',''),(7827,1,1949,'2','0273358300',''),(7828,1,1949,'3','Louise_frenchlink@hotmail.com',''),(7829,1,1949,'4','Hello \r\nWe have two jobs we would like a quote for.\r\n\r\n- Outside sensor light immediately turns off after it comes on, as if short circuiting or something. We\'d like this repaired.\r\n\r\n- Ensuite wall mounted fan heater needs replacing. (Serene S2088 - not available I\'m NZ anymore so will be after similar size and chrome finish)',''),(7830,1,1949,'5','Google search, great reviews',''),(7831,1,1950,'6','Klaus Carlile',''),(7832,1,1950,'2','3725169938',''),(7833,1,1950,'3','carlile.klaus94@googlemail.com',''),(7834,1,1950,'4','Dear to juiceelectrical.co.nz Webmaster!\r\n\r\nNice website!\r\n\r\n name’s Klaus, and I found your site - juiceelectrical.co.nz - while surfing the net. You showed up at the top of the search engine results, so I looked you out. Seems like what you’re doing is amazing.\r\n\r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what normally happens?\r\n\r\nDoes your site create leads for your business?\r\n\r\nI’m assuming a few, but I also assume you’d prefer more… studies show that 7 out 10 people that land on a site end up leaving without any interaction.\r\n\r\nNot good.\r\n\r\nHere is a suggestion – what if there\'s an easy way for each visitor to raise their hand to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n\r\nWeb Visitors Into Leads is a application widget that’s works on your site, set to grab every visitor’s Name, Email address and Phone Number. It lets you be informed IMMEDIATELY – so that you can chat to that lead while they’re actually browsing your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to experience a Live Demo with Web Visitors Into Leads now to realize precisely how it functions.\r\n\r\nTiming is crucial when it comes to connecting with leads – the gap between contacting someone in just 5 minutes versus 30 minutes later is huge – like 100 times more effective!\r\n\r\nThat’s why we created out our new SMS Text With Lead capability… because after you’ve collected the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n\r\nThink about the possibilities – even if you don’t seal a deal then and there, you can stay connected with text messages for new deals, content links, or even just “how you doing?” notes to build a relationship.\r\n\r\nWould not that be cool?\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn what Web Visitors Into Leads can do for your business.\r\n\r\nYou might be turning up to 100X more leads today!\r\nKlaus\r\n\r\nPS: Web Visitors Into Leads gives a FREE 14 days trial – and it also includes International Long Distance Calls. \r\nYou have customers waiting to chat with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to test Web Visitors Into Leads now.\r\n\r\nIf you\'d want to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\n\r\nJust a brief note - the name and email used here, Klaus and Carlile, are for representation and not actual contact details. We value transparency and wish to make that you’re aware! If you want to get in touch with the actual person behind this message, kindly visit our site, and we’ll associate you with the correct individual.',''),(7835,1,1951,'6','Matthew Williams',''),(7836,1,1951,'2','6644169314',''),(7837,1,1951,'3','futurosalesco@gmail.com',''),(7838,1,1951,'4','Hi there,\r\n\r\nAre you ready to take your social media presence to the next level? Imagine having a library of 35,000 engaging Reels and Shorts at your fingertips, ready to captivate your audience on Facebook, Instagram, TikTok, and YouTube.\r\n\r\nAt AgencyFuse, we offer a comprehensive bundle that provides exactly that—35,000 high-quality Reels designed to boost your engagement and expand your reach. Whether you\'re an entrepreneur, a social media marketer, or a CMO, this bundle is your ticket to dominating the social media landscape.\r\n\r\nDon\'t miss out on this opportunity to transform your social media strategy. Discover more about our Reels bundle and start growing your following today: [Explore the Reels Bundle](https://thedigitalagency.site/reels).\r\n\r\nBest regards,\r\n\r\nMatthew Williams \r\nPresident, AgencyFuse\r\n\r\n\r\n\r\nReply with the word “UNSUBSCRIBE” as the subject to unsubscribe.',''),(7839,1,1952,'6','Joanna Riggs',''),(7840,1,1952,'2','1237295375',''),(7841,1,1952,'3','joannariggs278@gmail.com',''),(7842,1,1952,'4','Hi,\r\n\r\nI just visited juiceelectrical.co.nz and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur videos cost just $195 for a 30 second video ($239 for 60 seconds) and include a full script, voice-over and video.\r\n\r\nI 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.\r\n\r\nRegards,\r\nJoanna',''),(7843,1,1953,'6','Andrianauwo',''),(7844,1,1953,'2','86865113878',''),(7845,1,1953,'3','a.nd.rian.a.lo.v.ea.d.am.s37@gmail.com',''),(7846,1,1953,'4','I found the official website where you can buy Best Cooler Shock Reusable Ice Packs for Cooler for less. \r\nhttps://www.google.com/search?q=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+shock+official+website&rlz=1C1GCEA_enUA1111UA1112&oq=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+shock+official+website&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIGCAEQRRg60gEJMzgzOTFqMGo3qAIAsAIA&sourceid=chrome&ie=UTF-8 \r\nhttps://www.google.com/search?q=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+shock+website&newwindow=1&sca_esv=7a2c727ac526d59d&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKAwJ1yW9K18ghOpjx6no_643icOw%3A1718270677572&ei=1bpqZtbEIvj_wPAPnIS7sAE&udm=&ved=0ahUKEwiWg_WKodiGAxX4PxAIHRzCDhYQ4dUDCBA&uact=5&oq=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+shock+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiNHNpdGU6aHR0cDovL3RoZWNvb2xlcnNob2NrLmNvbS8gQ29vbGVyIHNob2NrIHdlYnNpdGVIAFAAWABwAHgAkAEAmAEAoAEAqgEAuAEDyAEA-AEBmAIAoAIAmAMAkgcAoAcA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+Shock+Reusable+Ice+Packs+for+Cooler&newwindow=1&sca_esv=7a2c727ac526d59d&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKhu3TNtpJXVYM8OvAHTJ2oahPRVQ%3A1718270706810&ei=8rpqZvKSMemkwPAPxpicsA8&udm=&ved=0ahUKEwjy0-2YodiGAxVpEhAIHUYMB_YQ4dUDCBA&uact=5&oq=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+Shock+Reusable+Ice+Packs+for+Cooler&gs_lp=Egxnd3Mtd2l6LXNlcnAiSnNpdGU6aHR0cDovL3RoZWNvb2xlcnNob2NrLmNvbS8gQ29vbGVyIFNob2NrIFJldXNhYmxlIEljZSBQYWNrcyBmb3IgQ29vbGVySABQAFgAcAB4AJABAJgBAKABAKoBALgBA8gBAPgBAvgBAZgCAKACAJgDAJIHAKAHAA&sclient=gws-wiz-serp \r\nI recommend You use it Too!',''),(7847,1,1953,'5','Nokia',''),(7848,1,1954,'6','Abdul Razzak',''),(7849,1,1954,'2','+918582831644',''),(7850,1,1954,'3','abdulrazzak2331@gmail.com',''),(7851,1,1954,'4','Hello i am Arz and i am from India.\r\nI take pictures of my wife having sex with our goat and 2 chickens and sell to you also we offer live streaming where we can do any custom request.\r\nIf you like i can put coca cola bottle in my ass and show to you\r\nvery cheap price only 1 or 2 dollars we do anything because we like this.\r\n\r\ni have very much money and do this most for fun and also i like to put poop on my wifes face and lick it from her\r\n\r\ncontact me: abdulrazzak2331@gmail.com\r\n\r\nwhatsapp: +91 85828 31644',''),(7852,1,1955,'6','Masonphync',''),(7853,1,1955,'2','83198961854',''),(7854,1,1955,'3','yjdisantoyjdissemin@gmail.com',''),(7855,1,1955,'4','Hi, მინდოდა ვიცოდე თქვენი ფასი.',''),(7856,1,1955,'5','AliExpress',''),(7857,1,1956,'6','Joanne Bitmead',''),(7858,1,1956,'2','0276165091',''),(7859,1,1956,'3','bitmeadjm@gmail.com',''),(7860,1,1956,'4','Hi Greg. Just after a price for a really small job at my home in Farringdon. \r\nI am going to install 2 panel heaters in 2 bedrooms. One room has a power socket, however the second bedroom needs on directly the other side. Please could you quote me roughly for this job. \r\nMany thanks Jo',''),(7861,1,1956,'5','Rolleston School - Dean :)',''),(7862,1,1957,'6','Masonphync',''),(7863,1,1957,'2','82936572362',''),(7864,1,1957,'3','yjdisantoyjdissemin@gmail.com',''),(7865,1,1957,'4','Sawubona, bengifuna ukwazi intengo yakho.',''),(7866,1,1957,'5','AliExpress',''),(7867,1,1958,'6','Natalie Giron',''),(7868,1,1958,'2','6239941747',''),(7869,1,1958,'3','hello@socialbusybee.com',''),(7870,1,1958,'4','Hi there, Natalie from Social Busy Bee, your partner in the exciting world of Instagram growth. I\'ve discovered something spectacular for skyrocketing your Instagram popularity and I\'m thrilled to share it with you!\r\n\r\nSocial Growth Engine introduces a pioneering service that takes your Instagram engagement to new heights. It\'s a breeze:\r\n\r\n- Focus on producing captivating content.\r\n- Extremely budget-friendly at only $36/month.\r\n- Completely safe (no password needed), incredibly powerful, and tailor-made for Instagram.\r\n\r\nI\'ve observed extraordinary results firsthand, and I\'m sure you will too! Amplify your Instagram presence today: http://get.socialbuzzzy.com/instagram_booster\r\n\r\nTo your success,\r\nNatalie\"',''),(7871,1,1959,'6','Hosea Vest',''),(7872,1,1959,'2','7424440756',''),(7873,1,1959,'3','hosea.vest58@gmail.com',''),(7874,1,1959,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(7875,1,1960,'6','Andy D',''),(7876,1,1960,'2','06-93921204',''),(7877,1,1960,'3','andrew1985david@gmail.com',''),(7878,1,1960,'4','Hey there, if we could arrange for you media coverage on top publications like Forbes, The Economist, ITV News, and Channel 4 News in just 30 days with our Advanced SEO and PR Blueprint, would you like to discuss this further? Andrew',''),(7879,1,1961,'6','Julie Nielson',''),(7880,1,1961,'2','0276889894',''),(7881,1,1961,'3','julipaulspark13@gmail.com',''),(7882,1,1961,'4','We need help with out dishwasher, waste disposal, and plug switch are not working from the kitchen.\r\nUnfortunately we unable to hear the phone due we both Deaf and live in Rolleston.\r\nPlease let me know if can help us out? please reply by email thanks.\r\n\r\nThank you will look forward to read your reply.',''),(7883,1,1961,'5','thru website',''),(7884,1,1962,'6','Judith Goodwin',''),(7885,1,1962,'2','0211851948',''),(7886,1,1962,'3','gjggoodwin@gmail.com',''),(7887,1,1962,'4','Hi Glenn from 261 Rolleston Drive here, you looked at an outside plug for me a few weeks ago it was popping the RCD well it’s still doing it even with the spa pool off so think we will go ahead and replace it if you can do that for us thanks cheers.',''),(7888,1,1963,'6','Karissa Wertheim',''),(7889,1,1963,'2','0018143008897',''),(7890,1,1963,'3','wertheim.karissa@gmail.com',''),(7891,1,1963,'4','Hi juiceelectrical.co.nz team\r\n\r\nWe provide real human traffic with a revenue share option.\r\n\r\nAre you striving for long-term growth and looking forward to skyrocket your ad revenue? Pristine Traffic offers premium traffic solutions that bring engaged, high-quality visitors to your site easily. Our traffic helps you:\r\n- Enhance user engagement and retention\r\n- Maximize your ad earnings\r\n- Ensure consistent, profitable traffic flow\r\n\r\nJoin the many successful websites that have achieved sustainable growth with our tailored solutions. Seize the opportunity to elevate your ad revenue and secure long-term success.\r\n\r\nLearn more about Pristine Traffic and get started today: https://bit.ly/prstraffic\r\n\r\nKind regards\r\n\r\nMatthew Turner\r\nPristine Traffic\r\nmatthew@pristinetraffic.com\r\nWhatsApp: +18143008897\r\nhttps://bit.ly/prstraffic',''),(7892,1,1964,'6','Mani J',''),(7893,1,1964,'2','1 347 560-8971',''),(7894,1,1964,'3','myseoranks.com@gmail.com',''),(7895,1,1964,'4','Hello team,\r\n\r\nI was going through your website & I personally see a lot of potential in your website & business. \r\n\r\nWe can increase targeted views to your website so that it appears on Google\'s first page. Bing, Yahoo, AOL, etc.\r\n\r\nIf interested. May I send you a package/proposal.?\r\n\r\nWell wishes,\r\nMani J | Sr SEO consultant\r\n\r\n\r\n\r\n If you\'re not Interested in our Services, please send us \"NO Thanks\".\r\n\r\n\r\n juiceelectrical.co.nz',''),(7896,1,1965,'6','Michael Coburn',''),(7897,1,1965,'2','7845000555',''),(7898,1,1965,'3','ava.coburn@yahoo.com',''),(7899,1,1965,'4','Hi ,\r\n\r\nBoost your website to first google page in ranking \r\n\r\nClick here to start ===> https://tinyurl.com/3htytd7h\r\n\r\nJoin our 1k+ happy cutomers !',''),(7900,1,1966,'6','Erick Hicks',''),(7901,1,1966,'2','8185327032',''),(7902,1,1966,'3','erick.hicks@dominatingkeywords.com',''),(7903,1,1966,'4','I am not offering you SEO, neither PPC.\r\nThis is something completely different.\r\nJust send us keywords of your interest and your website banner instantly appears number one on Google and Bing search results without Pay Per Click charges.\r\nLet me show you how it works and you will be pleasantly surprised by the results.',''),(7904,1,1966,'5','ad',''),(7905,1,1967,'6','Raina Heine',''),(7906,1,1967,'2','368-684-9213',''),(7907,1,1967,'3','raina.heine@gmail.com',''),(7908,1,1967,'4','It has been quite some time, but I just read a warning article online about juiceelectrical.co.nz and thought it was important to message you guys to confirm this review. \r\n\r\nIt seems like there\'s some rumors circulating that could be potentially damaging. \r\nBeing aware of how quickly rumors can spiral and hoping not you to be caught off guard, I decided to inform you.\r\n\r\nHere\'s where I found the info:\r\n\r\nhttps://ibit.ly/C-LD9 \r\n\r\nMy hope is it\'s all a simple confusion, but I believed it necessary you should know!\r\n\r\nBest wishes,\r\nRaina',''),(7909,1,1968,'6','Lucy Newbold',''),(7910,1,1968,'3','lucy6688newbold@gmail.com',''),(7911,1,1968,'4','Hi Helen:\r\n\r\nJuice Electrical installed a Dry-Matic ventilation system for us about 4 years ago.\r\n\r\nWe would like to have the filter changed (an annual service to make sure the system works well). Could we ask your company to do the service?\r\n\r\nKind regards.\r\n\r\nLucy',''),(7912,1,1969,'6','Florentina',''),(7913,1,1969,'2','9172155903',''),(7914,1,1969,'3','florentinatoussaint@foxmail.com',''),(7915,1,1969,'4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.co\r\n\r\nKind Regards,\r\n\r\nFlorentina\r\nContact - Juice Electrical',''),(7916,1,1970,'6','Ravi Mattson',''),(7917,1,1970,'2','627414651',''),(7918,1,1970,'3','tory.mattson@gmail.com',''),(7919,1,1970,'4','Hi,\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n I recently grew my client’s organic search traffic with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(7920,1,1971,'6','James Muskett',''),(7921,1,1971,'2','89677095',''),(7922,1,1971,'3','james@commissiongorilla.com',''),(7923,1,1971,'4','Double or triple your affiliate commissions with Commission Gorilla! \r\nAchieve a 21% click-through rate with our Bonus Blocks and Drag & Drop Builder. \r\nEnjoy unlimited page hosting, instant promotion, and proven best practices templates. \r\nStart your 30-day risk-free trial now and see instant results.\r\n\r\nhttps://jvz2.com/c/1116711/273395/',''),(7924,1,1972,'6','Alice Minnie Finnan',''),(7925,1,1972,'2','8751122866',''),(7926,1,1972,'3','alice@keysearch.com',''),(7927,1,1972,'4','KeySearch, designed by bloggers for bloggers, helps you uncover less competitive keywords, track keyword trends, and find long-tail keywords that boost your rankings. With our comprehensive SEO suite, including competition analysis, rank tracking, and more, you\'ll have everything you need to dominate the search results.\r\nStart now and see why we have a 4.9/5 rating and over 100 glowing testimonials. Don\'t miss out on the tool trusted by top businesses and SEO experts!\r\n\r\nhttps://jvz8.com/c/1116711/194909/',''),(7928,1,1973,'6','Nancy Deborah Apple',''),(7929,1,1973,'2','745263854',''),(7930,1,1973,'3','nancy@explaindio.com',''),(7931,1,1973,'4','Create videos in 3 easy steps: Create, Customize, Export & Share.\r\nEngage audiences with professional videos in minutes.\r\nSave time and money with our easy drag-and-drop interface.\r\nLimited Time Offer: Get an agency license for 5 users included when you act now! Don’t miss this chance to elevate your business and earnings.\r\nP.S. Enjoy a 14-day money-back guarantee, so there’s zero risk!\r\n\r\nhttps://jvz2.com/c/1116711/123757/',''),(7932,1,1974,'6','Heather Baron',''),(7933,1,1974,'2','0274960098',''),(7934,1,1974,'3','thismumrocks@gmail.com',''),(7935,1,1974,'4','Hello :) Looking to get a bit of electrical work done on our house in Halswell, & a FB friend recommended your company.\r\nHoping to get 2 electrical points put in, wiring for a tv in our living room ,so we can watch the Olympics :), fix an exterior light not working, sort out our loading so on Saturday/ mornings I can use the washing machine, dryer, dishwasher, kettler & toaster/toastie maker at the same time without tripping the circuit?\r\nWondering what your rates & availability are in July and to arrange a visit/obtain a quote for services.\r\nRegards,\r\nHeather Baron',''),(7936,1,1974,'5','Halswell School Family',''),(7937,1,1975,'6','Cyril Albrecht',''),(7938,1,1975,'2','6807046012',''),(7939,1,1975,'3','cyril.albrecht@msn.com',''),(7940,1,1975,'4','Hi there,\r\n\r\nAre you tired of paying monthly fees for website hosting, cloud storage, and funnels?\r\n\r\nWe offer a revolutionary solution: host unlimited websites, files, and videos for a single, low one-time fee. No more monthly payments.\r\n\r\nLearn more: https://furtherinfo.org/0wg3\r\n\r\nHere\'s what you get:\r\n\r\nUltra-fast hosting powered by Intel® Xeon® CPU technology\r\nUnlimited website hosting\r\nUnlimited cloud storage\r\nUnlimited video hosting\r\nUnlimited funnel creation\r\nFree SSL certificates for all domains and files\r\n99.999% uptime guarantee\r\n24/7 customer support\r\nEasy-to-use cPanel\r\n365-day money-back guarantee\r\n\r\nPlus, get these exclusive bonuses when you act now:\r\n\r\n60+ reseller licenses (sell hosting to your clients!)\r\n10 Fast-Action Bonuses worth over $19,997 (including AI tools, traffic generation, and more!)\r\n\r\nDon\'t miss out on this limited-time offer! The price is about to increase, and this one-time fee won\'t last forever.\r\n\r\nClick here to learn more: https://furtherinfo.org/0wg3\r\n\r\nCyril\r\n\r\n\r\nIf you do not wish to receive any further offers:\r\nhttps://removeme.click/wp/unsubscribe.php?d=juiceelectrical.co.nz',''),(7941,1,1976,'6','Bob Jimerson',''),(7942,1,1976,'2','7869407471',''),(7943,1,1976,'3','jimersonbob6@gmail.com',''),(7944,1,1976,'4','Hi, I did a free marketing video for your website, is this a good place to send it?\r\nPlease fill out your info here if so: https://freevideoservice.com/',''),(7945,1,1977,'6','Shane Goodwin',''),(7946,1,1977,'2','0220443233',''),(7947,1,1977,'3','shane_1986@live.com',''),(7948,1,1977,'4','Just need a new stove hooked up and 2 outdoor plugs ( 1x for a spa pool and 1x standard plug) and potentially 2 heat pumps serviced\r\nPlease and thankyou',''),(7949,1,1977,'5','Have used you guys before',''),(7950,1,1978,'6','Masonphync',''),(7951,1,1978,'2','84889935225',''),(7952,1,1978,'3','yjdisantoyjdissemin@gmail.com',''),(7953,1,1978,'4','Xin chào, tôi muốn biết giá của bạn.',''),(7954,1,1978,'5','AliExpress',''),(7955,1,1979,'6','Kristal Vigil',''),(7956,1,1979,'2','564-387-6248',''),(7957,1,1979,'3','kristal.vigil@gmail.com',''),(7958,1,1979,'4','hi there!\r\n\r\nIt\'s been a while since our last conversation, but I just read a warning article online about juiceelectrical.co.nz and felt it necessary to email you guys to disprove this review. \r\n\r\nIt appears like there\'s some negative press that could be harmful to your reputation. \r\nBeing aware of how fast misinformation can spread and not wanting you to be caught off guard, I felt the need to inform you.\r\n\r\nHere\'s the source of the info:\r\n\r\nhttps://ibit.ly/5XClN \r\n\r\nI hope it\'s all a misunderstanding, but I believed it necessary you should know!\r\n\r\nBest wishes,\r\nKristal',''),(7959,1,1980,'6','Kim van Duiven',''),(7960,1,1980,'2','0211166885',''),(7961,1,1980,'3','info@askodesign.co.nz',''),(7962,1,1980,'4','Hello\r\n\r\nIs it possible for someoneto come to the shop sometime next week to quote on some spotlights on our outdoor signage? We are at 210 Moorhouse Ave. Asko Design.\r\n\r\nKind regards\r\nKim',''),(7963,1,1981,'6','Ravi Strunk',''),(7964,1,1981,'2','740754761',''),(7965,1,1981,'3','renaldo.strunk@msn.com',''),(7966,1,1981,'4','Hi,\r\nMy name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n I recently grew my client’s organic search traffic with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/yycmkjf6',''),(7967,1,1982,'6','Flynn Lavallie',''),(7968,1,1982,'3','lavallie.flynn@googlemail.com',''),(7969,1,1982,'4','Salutations juiceelectrical.co.nz Webmaster.\r\n\r\nI\'m Flynn, and I just found your site juiceelectrical.co.nz. It’s got much going for it, but here’s a proposal to make it even better.\r\n\r\nVisitor Engagement Widget – CLICK HERE https://turboleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s operates 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 literally viewing your site.\r\n\r\nAnd 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 agree 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.\r\n\r\nCLICK HERE https://turboleadgeneration.com to uncover what Lead Conversion Tool can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes compared to a half-hour means you could be converting up to 100X more leads now!\r\n\r\nFlynn\r\nPS: Studies indicate that 70% of a site’s visitors disappear and are gone permanently after just a moment. Don’t keep missing out on them.\r\nVisitor Engagement Widget offers a FREE 14 days trial – and it even includes International Long Distance Calling.\r\nYou have customers ready to talk with you immediately… don’t keep them waiting.\r\nCLICK HERE https://turboleadgeneration.com to use Lead Conversion Tool now.\r\n\r\nIf you\'d prefer to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nOnly a quick remark - the names and email utilized in this communication, Flynn and Lavallie, are stand-ins and not actual contact information. We value honesty and aimed to assure you’re conscious! If you want to connect with the real individual behind this message, please check out our site, and we’ll link you with the proper entity.',''),(7970,1,1983,'6','Davidphync',''),(7971,1,1983,'2','86648468847',''),(7972,1,1983,'3','kayleighbpsteamship@gmail.com',''),(7973,1,1983,'4','Hallo, ek wou jou prys ken.',''),(7974,1,1983,'5','Nokia',''),(7975,1,1984,'6','Raymundo Gwendolen',''),(7976,1,1984,'2','608067570',''),(7977,1,1984,'3','gwendolen.raymundo@outlook.com',''),(7978,1,1984,'4','Hi,\r\n\r\nAre you tired of low email engagement?\r\n\r\nOur AI-powered email platform lets you:\r\n\r\n1. Send UNLIMITED Text, Voice & Video emails ️\r\n2. Reach UNLIMITED Subscribers with FAST Servers\r\n3. Enjoy a GUARANTEED 99.4% Inbox Delivery Rate\r\n4. Leverage a Friendly AI Autoresponder\r\n\r\nBoost Sales & Conversions by 10X!\r\n\r\nPlus:\r\n\r\n1. No Monthly Fees, No Limits!\r\n2. Import Unlimited Email Lists\r\n3. Cloud-Based, Works Anywhere\r\n4. 30-Day Money-Back Guarantee\r\n5. World-Class Support ⭐️\r\n6. Proven Conversion Templates\r\n\r\nDon\'t miss out on this game-changer. \r\nClick here to see it in action: https://furtherinfo.org/xp2j\r\n\r\nRegards,\r\nRaymundo',''),(7979,1,1985,'6','Mindy Early',''),(7980,1,1985,'2','8472092050',''),(7981,1,1985,'3','rafamodra@gmail.com',''),(7982,1,1985,'4','Hey you,\r\n\r\nI am helping lazy sales guys, to find and create new sources of income.\r\nIf you wanna check it out\r\n\r\nBrando.gives\r\n\r\nLet the force be with you \r\n\r\nModra,Slovakia\r\nTo unsubscribe, reply with Nwaa',''),(7983,1,1986,'6','Michal Beard',''),(7984,1,1986,'2','4430310',''),(7985,1,1986,'3','beard.michal8@googlemail.com',''),(7986,1,1986,'4','HighLevel is the first-ever all-in-one platform that will give you the tools, support and resources you need to succeed and crush your marketing goals!\r\n\r\nFor a limited time we\'ve extended our risk free 14 day trial to 30 days! \r\n\r\nCapture more leads, Nurture them untill they are ready to purchase, and turn them into long term customers simply and easily with our proven system. Currently, over 60,000 Marketing Agencies and over 1 Million local businesses are using High Level!!!\r\n\r\nStart your trial today: https://www.gohighlevel.com/30-day-trial?fp_ref=ghl_promo\r\n\r\nHurry! This extended trial ends June 30th.',''),(7987,1,1987,'6','Dena Haley',''),(7988,1,1987,'2','1',''),(7989,1,1987,'3','haley.dena@msn.com',''),(7990,1,1987,'4','Elevate your online experience with our powerful VPS solutions. Enjoy up to 5 Gbit/s connectivity and 50TB of monthly traffic starting at just €3.90.\r\n\r\nSelect your ideal plan:\r\nStarter: 1x AMD Ryzen vCore, 4GB RAM, 120GB NVMe Disk - €3.90\r\nEnhanced: 2x AMD Ryzen vCore, 8GB RAM, 240GB NVMe Disk - €7.90\r\nAdvanced: 3x AMD Ryzen vCore, 12GB RAM, 320GB NVMe Disk - €11.90\r\nPro: 6x AMD Ryzen vCore, 12GB RAM, 640GB NVMe Disk - €16.90\r\n\r\nEach plan offers:\r\n5 Gbit/s connectivity\r\n50 TB traffic per month\r\nKVM / ISO mount\r\nCompatibility with Linux, Windows, BSD\r\nEasy UI for up/downgrades\r\n5 Snapshots and 1 Backup slot\r\n\r\nAchieve the performance you need for your tasks. Sign up and get started with a powerful, high-speed VPS today: https://bit.ly/vps4euro\r\n\r\n\r\n\r\nUnsubscribe here if you don\'t want to get these amaing newsletters: https://docs.google.com/forms/d/e/1FAIpQLSfqamyB6byPaAwgcS6ofGmo4N4Pqkn2ZutAk6aInDQ_WhohRg/viewform\r\nRue De Baras 449, Tonawanda, New York, US, 1740',''),(7991,1,1988,'6','Ravi Haas',''),(7992,1,1988,'2','3700135332',''),(7993,1,1988,'3','haas.damon93@gmail.com',''),(7994,1,1988,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(7995,1,1989,'6','Hermine Oakley',''),(7996,1,1989,'2','7785392290',''),(7997,1,1989,'3','oakley.hermine@hotmail.com',''),(7998,1,1989,'4','WANTED: Partnerships & Agents for Global E-commerce Firm\r\n\r\n4U2 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.\r\n\r\nWhy Choose 4U2 Inc.? (see https.//www.4u2inc.com)\r\n\r\nGlobal reach for your products\r\nImmediate requirements for a wide range of items\r\nOpportunity to expand your business network\r\nJoin 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.\r\n\r\nGet in Touch Don’t miss out on this opportunity. Contact us at 4u2inc123@gmail.com to learn more or to start our partnership today!\r\n\r\nThis 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!',''),(7999,1,1990,'6','Masonphync',''),(8000,1,1990,'2','86713677929',''),(8001,1,1990,'3','yjdisantoyjdissemin@gmail.com',''),(8002,1,1990,'4','Hæ, ég vildi vita verð þitt.',''),(8003,1,1990,'5','Wallmart',''),(8004,1,1991,'6','Waganabe Reck',''),(8005,1,1991,'3','proscratcher@gmail.com',''),(8006,1,1991,'4','Hey,\r\n\r\nI just noticed your juiceelectrical.co.nz website. I really like the clean design and usability of it. It’s really nice.\r\n\r\nI have an irresistible offer for you.\r\n\r\nThis is Waganabe. \r\n\r\nI have a Linkedin upgrade service. I specialized in upgrading anyone\'s Linkedin account to Premium Business with subscription period of 12 months.\r\n\r\nThe price of this upgrade service is only $99.99 for 12 months subscription. That\'s only $8.33/month. You no longer need to pay the normal price of $59.99/month.\r\n\r\nYou can learn more here: linkinprem.com\r\n\r\nLooking forward to upgrading your account.\r\n\r\nNote: You must not have an active subscription to get upgraded.\r\n\r\nAll the best,\r\nWaganabe Reck\r\nLinkedin Premium Upgrader specialist\r\nproscratcher@gmail.com',''),(8007,1,1992,'6','Hans Dampier',''),(8008,1,1992,'2','7072691752',''),(8009,1,1992,'3','hans.dampier@gmail.com',''),(8010,1,1992,'4','We are looking for used technologies and realities!\r\nDear Sir, Madam,\r\nthe company Sedlacek Trade s.r.o. deals with the sale of used technologies and real estate. We are constantly expanding our offer and are therefore looking for new products that we could provide to our clients.\r\nWe are contacting you with a question whether you are interested in selling any used technologies, machines, equipment or real estate. If so, please send us an offer with a detailed description of the product, its condition and the asking price.\r\nWe offer:\r\nFast and fair dealing\r\nProfessional approach\r\nIndividual price calculation\r\nWe are interested in a wide range of used technologies and properties, including:\r\nMachine tools\r\nProcessing centers\r\nLasers\r\nPresses\r\nWelding technique\r\nProduction lines\r\nReal estate - houses, apartments, land\r\nIf you are interested in cooperation, please do not hesitate to contact us:\r\nSedlacek Trade s.r.o. Tel.: +420 725 586 141 Email: info@sedlacek-t.cz\r\nwww.sedlacek-t.cz\r\nThank you for your time and we look forward to possible cooperation.\r\nBest regards,\r\nThe Sedlacek Trade s.r.o. team\r\np.s. If this email was received by someone who is not interested in selling used technology and real estate, please ignore this message.',''),(8011,1,1993,'6','Jackphync',''),(8012,1,1993,'2','83546311371',''),(8013,1,1993,'3','yjdisantoyjdissemin@gmail.com',''),(8014,1,1993,'4','Ciao, volevo sapere il tuo prezzo.',''),(8015,1,1993,'5','AliExpress',''),(8016,1,1994,'6','Kambre Kittila',''),(8017,1,1994,'2','1',''),(8018,1,1994,'3','ttmwpmwmdj.j@silesia.life',''),(8019,1,1994,'4','Kambre Kittila',''),(8020,1,1994,'5','Kambre Kittila',''),(8021,1,1995,'6','Guadalupe Hair',''),(8022,1,1995,'2','353095772',''),(8023,1,1995,'3','guadalupe.hair47@hotmail.com',''),(8024,1,1995,'4','Dear to juiceelectrical.co.nz Webmaster.\r\n\r\nNice website!\r\n\r\nMy name’s Guadalupe, and I recently found your site - juiceelectrical.co.nz - when browsing the net. You popped up at the very top of the search engine results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n\r\nBut just in case you don’t mind me asking – once someone like me comes across juiceelectrical.co.nz, what typically happens?\r\n\r\nIs your site generating leads for your business?\r\n\r\nI’m assuming a few, but I also guess you’d love more… research suggest that 7 out 10 who land on a site wind up leaving without any interaction.\r\n\r\nThat\'s unfortunate.\r\n\r\nHere’s a idea – what if there\'s an easy way for each visitor to signal interest to get a phone call from you INSTANTLY… the second they visit your site and expressed, “call me now.”\r\n\r\nWell, you can –\r\n\r\nWeb Visitors Into Leads is a software widget that’s functions on your site, set to capture any visitor’s Name, Email address and Phone Number. It lets you be informed RIGHT AWAY – so that you can chat to that lead as they’re literally checking out your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to experience a Live Demo with Web Visitors Into Leads now to understand precisely how it operates.\r\n\r\nTiming 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!\r\n\r\nThat’s why we created out our new SMS Text With Lead capability… as after you’ve collected the visitor’s phone number, you can instantly start a text message (SMS) chat.\r\n\r\nConsider about the potential – even if you don’t seal a deal immediately, you can stay connected with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads right now!\r\nGuadalupe\r\n\r\nPS: Web Visitors Into Leads gives a FREE 14 days trial – and it even comes with International Long Distance Calling. \r\nYou have customers waiting to chat with you at this moment… don’t leave them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to test Web Visitors Into Leads today.\r\n\r\nIf you\'d prefer to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\n\r\nOnly a short note - the names and email used in this email, Guadalupe and Hair, are for representation and not real contact details. We value transparency and wanted to make that you’re aware! If you wish to get in contact with the real person responsible for this message, please visit our website, and we’ll associate you with the correct individual.',''),(8025,1,1996,'6','Robertphync',''),(8026,1,1996,'2','83946994823',''),(8027,1,1996,'3','kayleighbpsteamship@gmail.com',''),(8028,1,1996,'4','Hi, kam dashur të di çmimin tuaj',''),(8029,1,1996,'5','Google',''),(8030,1,1997,'6','Nick Smith',''),(8031,1,1997,'2','29624844',''),(8032,1,1997,'3','thenickjsmith@gmail.com',''),(8033,1,1997,'4','I\'m running 5 x national/global advertising campaigns for qualifying websites in July ... for free!\r\n\r\nWould you like one of the spots?\r\n\r\nHit reply with a \"Tell Me More!\" and I\'ll send the details.\r\n\r\nYour Website: juiceelectrical.co.nz\r\n\r\nBest wishes\r\n\r\nNick Smith\r\n\r\nP.S. It really won\'t cost you anything! \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nKemp House, 152-160 City Road, London. EC1V 2NX\r\n\r\nTo Avoid Future Marketing Messages Click Here\r\nhttps://email-sending.net/?domain=juiceelectrical.co.nz',''),(8034,1,1998,'6','Eric Jones',''),(8035,1,1998,'2','555-555-1212',''),(8036,1,1998,'3','ericjonesmyemail@gmail.com',''),(8037,1,1998,'4','Hi juiceelectrical.co.nz Webmaster. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8038,1,1999,'6','Rocco Fort',''),(8039,1,1999,'2','374-962-8383',''),(8040,1,1999,'3','rocco.fort@icloud.com',''),(8041,1,1999,'4','Quick heads up\r\n\r\nIt\'s been some time, but I just saw an article online about juiceelectrical.co.nz and felt compelled to reach out to disprove this review. \r\n\r\nIt looks like there\'s some rumors circulating that could be detrimental. \r\nKnowing how quickly rumors can spiral and wishing not you to be unprepared, I decided to inform you.\r\n\r\nHere\'s where I came across the info:\r\n\r\nhttps://ibit.ly/Kxv0c \r\n\r\nI\'m hoping it\'s all a simple confusion, but I thought it best you should know!\r\n\r\nWishing you all the best,\r\nRocco',''),(8042,1,2000,'6','Liam Stout',''),(8043,1,2000,'2','7884493098',''),(8044,1,2000,'3','stout.liam@gmail.com',''),(8045,1,2000,'4','Cool website!\r\n\r\nDear juiceelectrical.co.nz Admin.\r\n\r\nMy name’s Liam, and I simply discovered your site - juiceelectrical.co.nz - while browsing the net. You surfaced at the summit of the search results, so I looked you out. Seems like what you’re doing is very cool. \r\n\r\nBut if you don’t mind me questioning – after someone like me comes across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site producing leads for your enterprise? \r\n\r\nI’m assuming some, but I also bet you’d like more… studies reveal that 7 out 10 who touch down on a site end up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’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 said, “call me now.”\r\n\r\nYou can –\r\n \r\nWeb Visitor is a software widget that’s works on your site, prepared to grab any visitor’s Name, Email address and Phone Number. It enables you know IMMEDIATELY – so that you can talk to that lead while they’re literally examining your site.\r\n\r\nCLICK HERE https://turboleadgeneration.com to test a Live Demo with Web Visitor now to see specifically how it works.\r\n\r\nTime is money when it comes to linking with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be enormous – like 100 times better!\r\n\r\nThat’s why we constructed our new SMS Text With Lead feature because once you’ve caught the visitor’s phone number, you can instantly a text message (SMS) conversation.\r\n \r\nConsider 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 a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://turboleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nLiam\r\n\r\nPS: Web Visitor offers FREE 14 days trial – and it even includes Long Distance Calling. \r\nYou have customers eager to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://turboleadgeneration.com to try Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nJust a swift notification - the identities and email used in this communication, Liam and Stout, are placeholders and not genuine contact information. We value candor and wanted to make sure you’re aware of this! If you desire to communicate with the real one behind this communication, kindly go to our site, and we’ll associate you with the proper individual.',''),(8046,1,2001,'6','Gentle',''),(8047,1,2001,'2','6586477948',''),(8048,1,2001,'3','philipspartanppc@gmail.com',''),(8049,1,2001,'4','Hey, I noticed you\'re not currently running Google Ads. Want us to run ads for you?\r\n\r\nFill out the form below, and we\'ll be in touch.\r\n\r\nhttps://services.spartanppc.com/\r\n\r\nPhilip',''),(8050,1,2002,'6','Stacey Cunningham',''),(8051,1,2002,'2','0211499672',''),(8052,1,2002,'3','stacey.cunningham@codeblue.co.nz',''),(8053,1,2002,'4','Hi there, do you service the ducted heating? We have 3 filters I believe and these are up high. Can you give me a price if so. Thanks',''),(8054,1,2002,'5','Used you guys before',''),(8055,1,2003,'6','Emily Jones',''),(8056,1,2003,'2','894913352',''),(8057,1,2003,'3','emilyjones2250@gmail.com',''),(8058,1,2003,'4','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nEmily\r\n\r\nUnsubscribe: https://removeme.click/yt/unsubscribe.php?d=juiceelectrical.co.nz',''),(8059,1,2004,'6','Madeleine Spivey',''),(8060,1,2004,'2','792-253-1864',''),(8061,1,2004,'3','madeleine.spivey@yahoo.com',''),(8062,1,2004,'4','Hey hey!\r\n\r\nIt\'s been some time since we last communicated, but I recently stumbled upon something online about juiceelectrical.co.nz and immediately needed to message you guys to confirm this review. \r\n\r\nIt seems like there\'s some rumors circulating that could be potentially damaging. \r\nUnderstanding how quickly rumors can spiral and hoping not you to be taken by surprise, I felt the need to notify you.\r\n\r\nHere\'s the source of the info:\r\n\r\nhttps://ibit.ly/l4WU6 \r\n\r\nMy hope is it\'s all a mix-up, but I thought it best you should know!\r\n\r\nWishing you all the best,\r\nMadeleine',''),(8063,1,2005,'6','Glenda Johnstone',''),(8064,1,2005,'2','021351557',''),(8065,1,2005,'3','johnstoneglenda@icloud.com',''),(8066,1,2005,'4','Hi, I’d like to get a quote to replace an extractor fan in the bathroom and a Dimplex wall heater installed. We also need a couple of LED downlight units replaced in the house. Thanks Glenda\r\nWe live in Cashmere',''),(8067,1,2005,'5','Recommended by a friend',''),(8068,1,2006,'6','Rob Cope-Williams',''),(8069,1,2006,'2','0272281033',''),(8070,1,2006,'3','rfcopewilliams@gmail.com',''),(8071,1,2006,'4','Guys, I have noted that a huge number of letter boxes are in the dark because of bad street lighting.\r\n\r\nI have taken to taking a torch to pick out numbers.\r\n\r\nI note that ETSY NZ sell wee solar powered lights that would light up the numbers for about $40.00. \r\n\r\nPerhaps there\'s a chance for a quick sale and fit opportunity. Even a part timer could get the job done after school. Or have them in the van and do it as a \"Do you want a number light while we are here\" \r\n\r\nJust a thought. Rob',''),(8072,1,2007,'6','Shelby Minns',''),(8073,1,2007,'2','51312908',''),(8074,1,2007,'3','shelby.minns@googlemail.com',''),(8075,1,2007,'4','Are you ready to transform your relationships and build lasting connections?\r\n\r\nIntroducing the Habits of Great Relationships Course\r\nyour ultimate guide to mastering the art of meaningful relationships.\r\n\r\nWhether it\'s with your partner, family, friends, or colleagues, this\r\ncourse provides the tools and insights you need to nurture and maintain strong, healthy bonds.\r\n\r\nWhy Join the Habits of Great Relationships Course?\r\n\r\n* Proven Strategies: Learn from experts with decades of experience in relationship psychology.\r\n* Interactive Lessons: Engage with practical exercises designed to reinforce positive habits.\r\n* Flexible Learning: Access course materials anytime, anywhere, at your own pace.\r\n* Community Support: Join a vibrant community of like-minded individuals on the same journey.\r\n\r\nWhat You\'ll Discover:\r\n\r\n- Effective communication techniques\r\n- Conflict resolution strategies\r\n- Building trust and intimacy\r\n- Balancing personal and relationship goals\r\n- And much more!\r\n\r\nDon\'t miss out on the chance to elevate your relationships to new heights.\r\n\r\nEnroll now and take the first step towards a more fulfilling and connected life.\r\n\r\nEnroll Now => https://shortz.pro/relationship-course',''),(8076,1,2008,'6','Chris Washington',''),(8077,1,2008,'2','2529862583',''),(8078,1,2008,'3','washington.erica59@yahoo.com',''),(8079,1,2008,'4','Hi,\r\n\r\nMy name is Chris, and I specialize in SEO. I provide valuable tips and tricks to enhance your SEO strategy. Explore this unique tool that can significantly benefit your business!\r\n\r\nClick the link below:\r\n\r\nhttps://elitedealfinds.com/seo\r\n\r\nBest wishes on your SEO journey,\r\n\r\nChris',''),(8080,1,2009,'6','Zoila Felton',''),(8081,1,2009,'2','498178992',''),(8082,1,2009,'3','mailbangerusa@gmx.com',''),(8083,1,2009,'4','vSince 2012 Mailbanger.com has been selling OPTIN marketing lists with customer name/contact information to many small and startup businesses.\r\nMarket direct to millions of cutomers who have opted in to receive offers from third parties!\r\n\r\nWe have lists for USA/UK/Australia/Canada and many more countries\r\n\r\n\r\nHere are some of our packages:\r\n\r\n2024 USA Business Database bundle with free LINKEDIN database and Executive contact database:\r\nhttps://www.mailbanger.com/2024-usa-business-database-ultra-bundle/\r\n\r\n\r\n2023-2024 USA residential Homeowners list - Over 200 million records\r\nhttps://www.mailbanger.com/2021-usa-homeowner-and-residential-248-million-records/\r\n\r\n\r\n2024 100 million USA consumers with age,cell/home phone/address/email:\r\nhttps://www.mailbanger.com/100-million-usa-consumers-mega-edition\r\n\r\n\r\n2024 Cell/SMS Marketing package of over 40 million USA Customers:\r\nhttps://www.mailbanger.com/2024-usa-42-million-consumer-cell-phone-numbers/\r\n\r\n\r\nUSA Charity donors:\r\nhttps://www.mailbanger.com/usa-charity-donor-leads\r\n\r\nAustralia residential and consumer leads:\r\nhttps://www.mailbanger.com/mailing-lists-australia/\r\n\r\n850 000 Weight loss customers:\r\nhttps://www.mailbanger.com/weight-loss-diet-leads-lists\r\n\r\n\r\nWe have many more lists - stop wasting thousands on pay per click or other expensive forms of advertising, and market direct for super affordable prices.\r\n\r\nAll lists are updated regularly, buy once and its yours so you can use them for many campaigns. They come in Excel files with sortable categories\r\n\r\n\r\nBecome an Affiliate with Mailbanger and earn 20% - average sale is $500!\r\nhttps://www.mailbanger.com/affiliate-center/\r\n\r\n\r\nRegards\r\nMailbanger.com',''),(8084,1,2010,'6','Tiffany Stuckey',''),(8085,1,2010,'2','632763393',''),(8086,1,2010,'3','joanne.stuckey@gmail.com',''),(8087,1,2010,'4','I\'m so horny right now. I hope you can help me masturbate.\r\n\r\nhttps://tiffanycamgirl.com',''),(8088,1,2011,'6','+12858761381',''),(8089,1,2011,'2','88936619551',''),(8090,1,2011,'3','datingsforsouls@gmail.com',''),(8091,1,2011,'4','Try <a href=https://bit.ly/3RcVqyK><b>HARD</b></a> sex \r\nOR \r\nTry <a href=https://psee.io/65y9et><b>SOFT</b></a> sex \r\nYour decision?',''),(8092,1,2011,'5','+12858761381',''),(8093,1,2012,'6','Davidphync',''),(8094,1,2012,'2','85965569868',''),(8095,1,2012,'3','kayleighbpsteamship@gmail.com',''),(8096,1,2012,'4','Hola, volia saber el seu preu.',''),(8097,1,2012,'5','FBI',''),(8098,1,2013,'6','Brandon MacDonald',''),(8099,1,2013,'2','884061866',''),(8100,1,2013,'3','brandonn.macdonaldd@gmail.com',''),(8101,1,2013,'4','Hey, I did a free marketing video for your website, is this a good place to send it? Please fill out your info here if so: https://freemarketingvideo.site/opt-in-page',''),(8102,1,2014,'6','Rachel McConachy',''),(8103,1,2014,'2','247243183',''),(8104,1,2014,'3','rachel.mcconachy@hotmail.com',''),(8105,1,2014,'4','Greetings juiceelectrical.co.nz Administrator.\r\n\r\nThis is Rachel, and I just stumbled upon your site juiceelectrical.co.nz. It’s got plenty going for it, but here’s a proposal to make it even more effective.\r\n\r\nVisitor Engagement Widget – CLICK HERE https://turboleadgeneration.com for a live demo right now.\r\n\r\nWeb 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 notifies you the second they inform you they’re interested – so that you can chat to that lead while they’re literally browsing your site.\r\n\r\nAnd 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 agree 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.\r\n\r\nCLICK HERE https://turboleadgeneration.com to find out what Lead Conversion Tool can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes compared to a half-hour means you can be converting up to 100X more leads right now!\r\n\r\nRachel\r\nPS: 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.\r\nLead Conversion Tool offers a FREE 14 days trial – and it even includes International Long Distance Calling.\r\nYou have customers ready to talk with you at this moment… don’t keep them waiting.\r\nCLICK HERE https://turboleadgeneration.com to use Visitor Engagement Widget now.\r\n\r\nIf you\'d choose to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nSimply a brief message - the monikers and email address applied here, Rachel and McConachy, are placeholders and not really real information. We appreciate transparency and desired to assure you’re aware of this! Should you aspire to get in touch with the true person responsible for this communication, please check out our site, and we’ll associate you with the appropriate individual.',''),(8106,1,2015,'6','Leonel Badgett',''),(8107,1,2015,'2','1',''),(8108,1,2015,'3','leonel.badgett50@gmail.com',''),(8109,1,2015,'4','Experience the ideal mix of power and cost-effectiveness with our top-performing VPSs starting at just €3.90 per month. Get up to 5 Gbit/s connectivity and 50TB of traffic included. \r\n\r\nChoose the plan that suits you:\r\nPlan 1: 1x AMD Ryzen vCore, 4GB RAM, 120GB NVMe Disk - €3.90\r\nPlan 2: 2x AMD Ryzen vCore, 8GB RAM, 240GB NVMe Disk - €7.90\r\nPlan 3: 3x AMD Ryzen vCore, 12GB RAM, 320GB NVMe Disk - €11.90\r\nPlan 4: 6x AMD Ryzen vCore, 12GB RAM, 640GB NVMe Disk - €16.90\r\n\r\nEach plan includes:\r\nUp to 5 Gbit/s connectivity\r\n50TB traffic per month\r\nKVM / ISO mount\r\nLinux/Windows/BSD OS ready\r\nUp/downgrades through UI\r\n5 Snapshots and 1 Backup slot\r\n\r\nGet the performance you need without breaking the bank. Upgrade or downgrade anytime through our intuitive UI. Sign up today: https://bit.ly/vps5eur\r\n\r\n\r\n\r\nUnsubscribe here if you don\'t want to get these fantastic offers: https://bit.ly/meunsubscribe\r\nRue Fosse Piron 129, Buffalo, NY, US, 5600',''),(8110,1,2016,'6','Matthew Williams',''),(8111,1,2016,'2','2622947837',''),(8112,1,2016,'3','futurosalesco@gmail.com',''),(8113,1,2016,'4','Hi there,\r\n\r\nEngagement is the key to social media success, and what better way to boost it than with a vast collection of high-quality Reels and Shorts? Our bundle of 35,000 Reels is crafted to help you captivate your audience and keep them coming back for more.\r\n\r\nWith content tailored for Facebook, Instagram, TikTok, and YouTube, you can ensure consistent and engaging posts across all your social media channels. Perfect for promoting your business, enhancing your personal brand, or amplifying your clients\' presence, our Reels bundle is a game-changer.\r\n\r\nReady to elevate your engagement? Click here to learn more and make this powerful tool yours: [Get Your Reels Bundle](https://thedigitalagency.site/reels).\r\n\r\nWarm regards,\r\n\r\nMatthew Williams \r\nPresident, AgencyFuse\r\n\r\n\r\nReply with the word “UNSUBSCRIBE” as the subject to unsubscribe.',''),(8114,1,2017,'6','Harlan Malizia',''),(8115,1,2017,'2','2189847735',''),(8116,1,2017,'3','harlan.malizia0@outlook.com',''),(8117,1,2017,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(8118,1,2018,'6','Eric Jones',''),(8119,1,2018,'2','555-555-1212',''),(8120,1,2018,'3','ericjonesmyemail@gmail.com',''),(8121,1,2018,'4','Hi,\r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz Owner definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://rushleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://rushleadgeneration.com to try Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8122,1,2019,'6','Terrie Salas',''),(8123,1,2019,'2','577-769-5395',''),(8124,1,2019,'3','terrie.salas@yahoo.com',''),(8125,1,2019,'4','hey\r\n\r\nWe haven\'t spoken in a while, but I just read an article online about juiceelectrical.co.nz and immediately needed to reach out to validate this review. \r\n\r\nIt seems like there\'s some negative press that could be potentially damaging. \r\nKnowing how quickly rumors can spiral and hoping not you to be unprepared, I felt the need to warn you.\r\n\r\nHere\'s where I found the info:\r\n\r\nhttps://ibit.ly/g_ScX \r\n\r\nI hope it\'s all a simple confusion, but it seemed prudent you should know!\r\n\r\nAll the best to you,\r\nTerrie',''),(8126,1,2020,'6','Cristine Weissmuller',''),(8127,1,2020,'2','3716172802',''),(8128,1,2020,'3','weissmuller.cristine@googlemail.com',''),(8129,1,2020,'4','Hey, what\'s new with you! My name is Cristine Weissmuller. \r\n \r\nBe Graceful! \r\n \r\nWalk to the site Tiara Shop eu whenever you need Leggings, Lingerie, Swimwear or Socks. \r\n \r\nNow everything is discounted! \r\n \r\nFollow the link and use code \"VIP\" for an extra discount in Women\'s bodysuit long sleeve: \r\n \r\nhttps://bit.ly/4a1FSpr \r\n \r\nGreetings, Cristine Weissmuller',''),(8130,1,2021,'6','Sofia carson',''),(8131,1,2021,'2','356429198',''),(8132,1,2021,'3','sofiacarson18@gmail.com',''),(8133,1,2021,'4','I recently visited your website and noticed your logo. While it has its charm, \r\n\r\nI believe a refreshed, modern logo could significantly enhance your brand\'s appeal. I recommend exploring options on Fiverr. They have a variety of talented freelancers who specialize in logo design.\r\n\r\nYou can browse logo design services here : https://bit.ly/fiverrr-service\r\n\r\n It\'s a convenient way to find expert designers who can meet your specific needs.\r\n\r\nLet me know if you find this helpful or if there\'s anything else I can assist you with!\r\n\r\n\r\nBest regards,\r\nSofia',''),(8134,1,2022,'6','Dianne Copland',''),(8135,1,2022,'2','2073347772',''),(8136,1,2022,'3','copland.dianne@gmail.com',''),(8137,1,2022,'4','Enhance Your Professional Image with Popl Digital Business Cards\r\n\r\nAre you a Professional looking to make a lasting impression and succeed in your business both locally and nationwide? \r\nPopl digital business cards are the perfect solution for you!\r\n\r\nWith Popl, you can seamlessly share your contact information with just a tap. \r\nLeaving a memorable and professional impression on your clients. \r\n\r\nWhether you’re a plumber, builder, electrician, or any other skilled professional, \r\nPopl helps you stand out from the competition and connect effortlessly with your clients.\r\n\r\nHere’s why you should switch to Popl:\r\n\r\nModern & Professional: Impress clients with cutting-edge technology.\r\nConvenient: Share your details instantly, without the need for physical cards.\r\nEfficient: Save time and ensure your information is always up-to-date.\r\nVersatile: Perfect for networking at local and national levels.\r\n\r\nVisit Us @ popl.pxf.io/LXLGGa\r\n\r\nTransform the way you network and grow your business with Popl.',''),(8138,1,2023,'6','Daisy Torres',''),(8139,1,2023,'2','267081091',''),(8140,1,2023,'3','daisy.t@internationaltrade.academy',''),(8141,1,2023,'4','* * * * * * * * * * * * * * * * * * * *\r\n100% free online courses from the International Trade Council with the ITC Academy\r\n* * * * * * * * * * * * * * * * * * * *\r\n\r\nOur expert-led online courses in international trade, import/export, intellectual property, and supply chain management are designed to elevate your career. Join us to gain valuable insights, practical skills, and a competitive edge in the global market.\r\n\r\nWhy Take an Online Course?\r\n- 100% Onlne: Study in your own time - anywhere in the world\r\n- Totally Free: No cost for all courses and certificates.\r\n- Expert Instructors: Learn from industry professionals.\r\n- Comprehensive Curriculum: Covering key aspects of international trade.\r\n- Flexible Learning: Study at your own pace, anytime, anywhere.\r\n- Regular Updates: New courses added weekly.\r\n- Free Certificate: Earn a certificate upon course completion.\r\n\r\nEnroll free today and start your journey to success! \r\n\r\nVisit https://www.internationaltrade.academy to sign up.',''),(8142,1,2024,'6','Isobel Dundalli',''),(8143,1,2024,'2','483903855',''),(8144,1,2024,'3','websboostonline@gmail.com',''),(8145,1,2024,'4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK \r\n\r\nJust message us websdesignservices2000@gmail.com\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nContact us at websdesignservices2000@gmail.com\r\n\r\nThanks',''),(8146,1,2025,'6','Sofia carson',''),(8147,1,2025,'2','678499883',''),(8148,1,2025,'3','sofiacarson18@gmail.com',''),(8149,1,2025,'4','I recently visited your website and noticed that its design and speed could use some improvement. \r\n\r\nA modern web design can greatly enhance user experience and overall performance.\r\n\r\nI recommend exploring options on Fiverr, where you can find talented freelancers specializing in web design. \r\n\r\nCheck out the services here: https://bit.ly/website-design-with-seo\r\n \r\nBest regards,\r\nSofia',''),(8150,1,2026,'6','Jacki Tallis',''),(8151,1,2026,'2','314966429',''),(8152,1,2026,'3','paidperemailsubmit@easymoneyflow.online',''),(8153,1,2026,'4','Reach Visitors 24/7 with Pushwoosh - MUST SEE THIS\r\n\r\nHi,\r\n\r\nImagine a salesperson whispering deals to visitors even after they leave your site!\r\n \r\n Pushwoosh lets you do just that with Push Notifications (unlimited amount)\r\n\r\n\r\n.\r\n\r\nHere\'s the magic: Visitors opt-in for alerts, allowing you to reach them on their phone/computer, anytime.(even when they don\'t visit your website)!\r\nThey keep getting message from you every time a push notification is sent\r\n\r\n\r\n\r\nThe result?\r\n Pushwoosh users see increased conversions, traffic, and sales\r\n\r\n7x higher engagement with push notifications\r\n25x higher conversion into target action\r\n30x higher in-app activity\r\nMassive returning visitor rate and retention \r\n\r\n\r\n.\r\n\r\nReady to unlock explosive growth?\r\n\r\n\r\n\r\nGet a FREE Pushwoosh account now! https://bit.ly/Pushwoosh_notification_TryFree',''),(8154,1,2027,'6','Eric Jones',''),(8155,1,2027,'2','555-555-1212',''),(8156,1,2027,'3','ericjonesmyemail@gmail.com',''),(8157,1,2027,'4','Hello juiceelectrical.co.nz Admin! my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://blazeleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8158,1,2028,'6','Eric Jones',''),(8159,1,2028,'2','555-555-1212',''),(8160,1,2028,'3','ericjonesmyemail@gmail.com',''); INSERT INTO `wp_gf_entry_meta` VALUES (8161,1,2028,'4','To the juiceelectrical.co.nz Webmaster!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8162,1,2029,'6','Lukas Hynes',''),(8163,1,2029,'2','8172069485',''),(8164,1,2029,'3','lukas.hynes@gmail.com',''),(8165,1,2029,'4','Hey,\r\n\r\nCool stuff on your website! Let\'s do it like this:\r\nI sign up for your stuff and service\r\n\r\nand you do me a favor back and submit your name for this free contest for a prize:\r\n\r\nhttps://bit.ly/Free_Gift_4you\r\n\r\nDeal? 1.. 2.. 3..GO!\r\n\r\nhaha, peace and love (i get a few cents if you participate so consider it :)',''),(8166,1,2030,'6','Al Saxon',''),(8167,1,2030,'2','798851533',''),(8168,1,2030,'3','saxon.al@yahoo.com',''),(8169,1,2030,'4','Cool website!\r\n\r\nHi juiceelectrical.co.nz Webmaster.\r\n\r\nMy name’s Al, and I simply found your site - juiceelectrical.co.nz - 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. \r\n\r\nBut if you don’t mind me questioning – after someone like me runs across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site producing leads for your business? \r\n\r\nI’m assuming some, but I also bet you’d like more… studies show that 7 out 10 who arrive on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a idea – what if there was an simple way for every visitor to “lift their hand” to get a phone call from you INSTANTLY… the moment they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n \r\nWeb Visitor is a software widget that’s functions on your site, prepared to capture any visitor’s Name, Email address and Phone Number. It allows you know IMMEDIATELY – so that you can talk to that lead while they’re really looking your site.\r\n\r\nCLICK HERE https://turboleadgeneration.com to try out a Live Demo with Web Visitor now to see specifically how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference in between contacting someone within 5 minutes versus 30 minutes later can be enormous – like 100 times better!\r\n\r\nThat’s why we built our new SMS Text With Lead attribute because once you’ve captured the visitor’s phone number, you can automatically a text message (SMS) conversation.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://turboleadgeneration.com to discover what Web Visitor can do for your enterprise\r\n\r\nYou could be converting up to 100X more leads today!\r\nAl\r\n\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes Long Distance Calling. \r\nYou have customers waiting to to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://turboleadgeneration.com to try Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz\r\n\r\nMerely a brief remark - the names and email employed in this communication, Al and Saxon, are substitutes and not actually authentic contact information. We cherish candor and desired to make sure you’re aware! In case you aspire to connect with the genuine person behind this message, do check out our site, and we’ll link you with the proper entity.',''),(8170,1,2031,'6','Malcolm Banning',''),(8171,1,2031,'2','925-884-1418',''),(8172,1,2031,'3','malcolm.banning@yahoo.com',''),(8173,1,2031,'4','hey\r\n\r\nIt\'s been some time, but I just read an article online about juiceelectrical.co.nz and thought it was important to reach out to validate this article. \r\n\r\nIt appears like there\'s some rumors circulating that could be detrimental. \r\nUnderstanding how easily stories can get out of hand and not wanting you to be taken by surprise, I felt the need to inform you.\r\n\r\nHere\'s the source of the info:\r\n\r\nhttps://ibit.ly/AscSD \r\n\r\nI hope it\'s all a misunderstanding, but I thought it best you should know!\r\n\r\nWishing you all the best,\r\nMalcolm',''),(8174,1,2032,'6','Barry Parkinson',''),(8175,1,2032,'2','395740422',''),(8176,1,2032,'3','barry.parkinson@hotmail.com',''),(8177,1,2032,'4','Are you drowning in a sea of inefficient marketing tools?\r\nEvery day, you\'re losing money, time, and sanity.\r\n\r\n- Your CRM is a mess\r\n- Emails go unread\r\n- SMS campaigns fall flat\r\n- Landing pages fail to convert\r\n\r\nSound familiar? You\'re not alone.\r\nBut imagine a world where:\r\n\r\n- Leads flow in automatically\r\n- Emails hit inboxes at the perfect moment\r\n- Text messages get instant responses\r\n- Your pages convert visitors into buyers\r\n\r\nAll from one powerful, integrated platform.\r\nIt\'s not a dream. It\'s the solution that\'s transforming businesses right now.\r\nCurious? Here\'s your lifeline: https://bit.ly/BznsNxtLvl09& \r\n\r\nWarning: This offer won\'t last. Your competition is already one click ahead.\r\nDon\'t let another day of struggle pass. Your business deserves better.\r\nTake control. Boost your ROI. Reclaim your time.\r\nClick now and watch your business soar: https://bit.ly/BznsNxtLvl04& \r\n\r\nThe only thing standing between you and success is this click. Make it count.',''),(8178,1,2033,'6','Tam Pankhurst',''),(8179,1,2033,'2','53947356',''),(8180,1,2033,'3','pankhurst.tam99@gmail.com',''),(8181,1,2033,'4','You heard about the REVOLUTION WITH AI? JUMP IN\r\n\r\nYou now can generate unlimited amounts of e-books\r\nVERY HIGH QUALITY (layout, design) with SQRIBLE\r\n\r\nUNLIMITED BOOKS - IN A FEW CLICKS - NICE GRAPHICS\r\n\r\n(for your business or people sell them on amazon etc.)\r\n\r\nJUST TAKE A LOOK it is crazy: 1 CLICK = FULL EBOOK\r\n\r\nhttps://bit.ly/Sqribble-in1click',''),(8182,1,2034,'6','Nancy Feuerstein',''),(8183,1,2034,'2','461849915',''),(8184,1,2034,'3','nancy.feuerstein41@gmail.com',''),(8185,1,2034,'4','hi!\r\n\r\nExplode Your Website Earnings: Get Paid Up to $16 Every Time Someone Clicks Your Link (Seriously!)\r\n\r\ncheck how now:\r\n\r\nhttps://bit.ly/Get_Paid_Alot_Per_Visitor',''),(8186,1,2035,'6','Dianne Ray',''),(8187,1,2035,'2','678365431',''),(8188,1,2035,'3','dianne.ray@googlemail.com',''),(8189,1,2035,'4','Hello,\r\n\r\nI\'m Kim, a junior editor for our blog, and I am excited to propose a collaboration with teamsoda.com. We believe your site would be an excellent addition to our content and would greatly benefit our readers.\r\n\r\nWe are eager to feature https://juiceelectrical.co.nz/ at https://www.google.com/search?q=teamsoda.com and would love to discuss this opportunity further with you.\r\n\r\nPlease let me know if you are interested in this collaboration.\r\n\r\nBest regards,\r\n\r\nKim\r\n(858) 226-2824\r\n2736 Worden St\r\nSan Diego, California, 92110',''),(8190,1,2036,'6','Sofia carson',''),(8191,1,2036,'2','7762516376',''),(8192,1,2036,'3','sofiacarson18@gmail.com',''),(8193,1,2036,'4','I recently visited your website and noticed that its design and speed could use some improvement. \r\n\r\nA modern web design can greatly enhance user experience and overall performance.\r\n\r\nI recommend exploring options on Fiverr, where you can find talented freelancers specializing in web design. \r\n\r\nCheck out the services here: https://bit.ly/website-design-with-seo\r\n \r\nBest regards,\r\nSofia',''),(8194,1,2037,'6','Felicity Sauncho',''),(8195,1,2037,'2','694784221',''),(8196,1,2037,'3','felicitysauncho@gmail.com',''),(8197,1,2037,'4','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically. \r\n\r\n- We guarantee to gain you 700-1500+ subscribers per month.\r\n- People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nFelicity\r\n\r\nUnsubscribe: https://removeme.click/yt/unsubscribe.php?d=juiceelectrical.co.nz',''),(8198,1,2038,'6','Arden Joske',''),(8199,1,2038,'2','0018143008897',''),(8200,1,2038,'3','joske.arden@gmail.com',''),(8201,1,2038,'4','Hi\r\n\r\nWe provide real human traffic with a revenue share option.\r\n\r\nReady to see a significant elevate in your ad revenue? At Pristine Traffic, we provide high-quality traffic that delivers proven results. Our satisfied clients have experienced:\r\n- Remarkable increases in user engagement\r\n- Substantial growth in ad revenue\r\n- Enhanced site performance and profitability\r\n\r\nDon’t take our word for it—experience the difference for yourself! Our premium traffic solutions will drive real, engaged traffic to your site, making your revenue soar.\r\n\r\nDiscover how Pristine Traffic can transform your site’s performance today: https://bit.ly/prstraffic\r\n\r\nRegards\r\n\r\nContact: hello@pristinetraffic.com\r\nVisit: https://bit.ly/prstraffic\r\nWhatsApp: +18143008897',''),(8202,1,2039,'6','Klaus Bourchier',''),(8203,1,2039,'3','klaus.bourchier96@gmail.com',''),(8204,1,2039,'4','Dear Pet Lover,\r\n\r\nWe are excited to introduce our comprehensive online pet pharmacy at our online store, your one-stop destination for all your pet care needs.\r\n\r\nWhy Choose Us?\r\n\r\n Wide Range of Products: From heartworm prevention to flea and tick control, pain relief, and more.\r\n Top Brands: Including Bravecto, NexGard, Vetmedin, Apoquel, and more.\r\n Licensed U.S. Pharmacy: Ensuring safety and quality.\r\n Easy Ordering: Simple process with fast and secure delivery.\r\n\r\nSpecial Offer: Enjoy 20% off your first purchase with code 4JULY20.\r\n\r\nVisit our online store today and ensure your pets get the best care they deserve!\r\n\r\nBest Regards,\r\nThe Customer Care Team\r\n\r\nUse this link https://bit.ly/ReliableCareforYourBelovedPet to get the offer.',''),(8205,1,2040,'6','Mikel Heffron',''),(8206,1,2040,'2','3825067687',''),(8207,1,2040,'3','suhaib@sim-consultants.co.uk',''),(8208,1,2040,'4','Do you need to know a heavy or expensive product works before you use it? What kind of aerodynamic forces will this 340 metre tall building be subjected to? Will this propellor perform as well as we think it would? How do we know this gas turbine engine won’t stall mid-flight? How well will this aircraft actually perform flying at mach 3? All these questions can be answered at sim-consultants.co.uk.\r\n\r\nAt sim-consultants we run alibaba-cloud based OpenFOAM simulations. We deliver transient results either compressible and incompressible. With added turbulence modelling and optionally rotating physical parts. All you need to do is to drop us a quote with either digital plans or a 3D file. Our price will be £100 per hour.\r\n\r\nSim-consultants.co.uk\r\n\r\n(Simulations that demand more than 160 computing cores will incur further charges)',''),(8209,1,2041,'6','Raquel Pring',''),(8210,1,2041,'2','264408471',''),(8211,1,2041,'3','pring.raquel@hotmail.com',''),(8212,1,2041,'4','Dear Business Owner,\r\n\r\nAre negative online reviews affecting your reputation and sales? We have the perfect solution for you!\r\n\r\nOur expert team specializes in removing negative reviews from platforms like Google, Yelp, Airbnb, Amazon, and Reddit. By enhancing your online image, we help boost customer confidence and drive more sales.\r\n\r\nDiscover how we can help you maintain a positive online presence. Visit our website: Negative Reviews Removal Services.\r\n\r\nTake control of your online reputation now!\r\n\r\nUse this link https://bit.ly/reviewremovalservice to get the offer or email us at reputationmanagement555@gmail.com',''),(8213,1,2042,'6','Colby Wick',''),(8214,1,2042,'2','1923075853',''),(8215,1,2042,'3','wick.colby@gmail.com',''),(8216,1,2042,'4','hi!\r\n\r\nExplode Your Earnings:(Seriously!): SECRET EMAIL SYSTEM\r\n\r\nWithout Ever Creating Product, Without Fulfilling Services, Without Running Ads, or Ever Doing Customer Service – And Best of All Only Working 30 Minutes A Day, All While Automatically Generating Sales 24/7\r\n\r\ncheck how now:\r\nhttps://bit.ly/copy_my_business_now_ebook (copy high succes strategy now)',''),(8217,1,2043,'6','Yh y',''),(8218,1,2043,'2','266517933',''),(8219,1,2043,'3','marcella.slaughter@gmail.com',''),(8220,1,2043,'4','Greetings juiceelectrical.co.nz team,\r\n\r\nEager to enhance your e-commerce success and see substantial growth? Say goodbye to product testing, increase your conversion rate, and generate a surge of leads using our comprehensive suite of tools and resources.\r\n\r\nFrom AI-powered product selection to optimized page builders, reliable supplier connections, and authentic traffic building, we offer all you need to succeed in the challenging e-commerce environment. Plus, you\'ll get expert tips and tutorials to support you at every stage. No fluff, just pure actionable info you can implement right away.\r\n\r\nGeared up to boost your e-commerce venture? \r\n\r\n\r\n++ Explore: https://bit.ly/winners-now\r\n\r\nand find out the secrets to e-commerce success.\r\n\r\nBest regards,\r\nAspazian Silviu\r\naspazian.silviu@winners-now.vip',''),(8221,1,2044,'6','Estela Rankin',''),(8222,1,2044,'2','490264879',''),(8223,1,2044,'3','rankin.estela@gmail.com',''),(8224,1,2044,'4','Enhance Your Professional Image with Popl Digital Business Cards\r\n\r\nAre you looking to make a lasting impression and succeed in your business?\r\n Popl digital business cards are your perfect solution!\r\n\r\nWith Popl, you can seamlessly share your contact information with just a tap, \r\nLeaving a memorable and professional impression on your clients. \r\nWhether you’re a plumber, builder, electrician, or any other skilled professional, \r\nPopl helps you stand out and connect effortlessly.\r\n\r\nWhy Choose Popl:\r\n\r\nModern & Professional: Impress clients with cutting-edge technology.\r\nConvenient: Share your details instantly without physical cards.\r\nEfficient: Ensure your information is always up-to-date.\r\nVersatile: Ideal for networking locally and nationally.\r\n\r\nVisit us at popl.pxf.io/LXLGGa\r\nAnd transform the way you network and grow your business!',''),(8225,1,2045,'6','Spencer Plate',''),(8226,1,2045,'2','525192036',''),(8227,1,2045,'3','plate.spencer@gmail.com',''),(8228,1,2045,'4','Elevate Your Business with Fiverr Professionals!\r\n\r\nBoost your online presence and attract more clients with Fiverr’s expert services. \r\nHere’s how Fiverr can help builders, electricians, plumbers, and other skilled professionals:\r\n\r\nSEO Optimization: Improve search engine rankings.\r\nModern Web Design: Create a user-friendly, attractive website.\r\nContent Creation: Develop engaging and relevant content.\r\nProfessional Branding: Establish a strong brand identity.\r\nTechnical Enhancements: Ensure fast, secure, reliable performance.\r\nSocial Media Integration: Connect with social media to increase reach.\r\nAnalytics and Monitoring: Track and enhance performance.\r\n\r\nVisit Us @ https://go.fiverr.com/visit/?bta=935157&brand=fp\r\n\r\nGet started with Fiverr and elevate your business today!',''),(8229,1,2046,'6','Sofia carson',''),(8230,1,2046,'2','797660702',''),(8231,1,2046,'3','sofiacarson18@gmail.com',''),(8232,1,2046,'4','I recently visited your website and noticed that its design and speed could use some improvement. \r\n\r\nA modern web design can greatly enhance user experience and overall performance.\r\n\r\nI recommend exploring options on Fiverr, where you can find talented freelancers specializing in web design. \r\n\r\nCheck out the services here: https://bit.ly/website-design-with-seo\r\n \r\nBest regards,\r\nSofia',''),(8233,1,2047,'6','Tamantha Willimon',''),(8234,1,2047,'2','1',''),(8235,1,2047,'3','tbbmwdcdpc.j@silesia.life',''),(8236,1,2047,'4','Tamantha Willimon',''),(8237,1,2047,'5','Tamantha Willimon',''),(8238,1,2048,'6','Chris Silcock',''),(8239,1,2048,'2','555-249-4315',''),(8240,1,2048,'3','chris.silcock@icloud.com',''),(8241,1,2048,'4','It\'s been some time, but I just read a warning article online about juiceelectrical.co.nz and thought it was important to message you guys to disprove this review. \r\n\r\nIt looks like there\'s some rumors circulating that could be potentially damaging. \r\nUnderstanding how easily stories can get out of hand and not wanting you to be taken by surprise, I decided to inform you.\r\n\r\nHere\'s the source of the info:\r\n\r\nhttps://ibit.ly/wxRqV \r\n\r\nMy hope is it\'s all a misunderstanding, but it seemed prudent you should know!\r\n\r\nWishing you all the best,\r\nChris',''),(8242,1,2049,'6','Mike Ogden',''),(8243,1,2049,'2','81257999688',''),(8244,1,2049,'3','mikeDilkmaida@gmail.com',''),(8245,1,2049,'4','Hi there \r\nI just checked juiceelectrical.co.nz ranks and am sorry to bring this up, but it lacks in many areas. \r\n \r\nUnfortunately, building a bunch of links won\'t solve the issue in this case, and a more comprehensive strategy is required. Google has undergone significant changes over the past year, making it nearly impossible to compete for favorable rankings without a well-designed website. \r\n \r\nWe recommend a search engine-friendly website layout to resolve all issues and propel your site to the top. \r\n \r\nYou can check more details here: https://www.speed-seo.org/web-design/ \r\n \r\nThanks for your consideration \r\nMike Ogden\r\nSpeed Designs \r\nhttps://www.speed-seo.org/whatsapp-us/',''),(8246,1,2049,'5','FBI',''),(8247,1,2050,'6','Charli Garling',''),(8248,1,2050,'2','3457667001',''),(8249,1,2050,'3','charli.garling@gmail.com',''),(8250,1,2050,'4','hi! I want to invite you to boost your earnings with our service:\r\n\r\nMonetag accept all websites instant!\r\nYou can place ads, yes\r\n\r\nBut:\r\n\r\nJust place a (direct lin)k, and for everyone that clicks the link you get paid instantly!\r\n\r\nExample1: https://bit.ly/TestExampleMonetagDirectLink1\r\nExample2: https://bit.ly/MoneTagExampleDirectLink2\r\n\r\nWithout the visitor needing to buy something or sign up, just getting paid per linkclick!\r\n\r\nTo Sign up and start earning immidiatly with your traffic (High CPM earnings) register here:\r\n\r\nhttps://bit.ly/MonetagRegisterToEarn',''),(8251,1,2051,'6','Mike Nathan',''),(8252,1,2051,'2','82948977741',''),(8253,1,2051,'3','mikeDilkmaida@gmail.com',''),(8254,1,2051,'4','Hi there, \r\n \r\nWhile checking your juiceelectrical.co.nz for its ranks, I have noticed that there are some toxic links pointing towards it. \r\n \r\nGrab your free clean up and improve ranks in no time \r\nhttps://www.hilkom-seo.com/free-links-cleanup/ \r\n \r\nIt really works, get a free backlinks clean up with us today \r\n \r\n \r\nRegards \r\nMike Nathan\r\n \r\nWhatsapp: https://www.hilkom-seo.com/whatsapp-us/',''),(8255,1,2051,'5','Nokia',''),(8256,1,2052,'6','Clifton Niven',''),(8257,1,2052,'2','3952718060',''),(8258,1,2052,'3','niven.clifton@googlemail.com',''),(8259,1,2052,'4','Hey gamers! Ready to boost your gaming experience? \r\n\r\n3030 Games offers a huge array of games, entirely no cost! From puzzles to exciting journeys, we have it all.\r\n\r\nWhy You\'ll Love 3030 Games:\r\n- Huge Selection: There\'s a game for every preference and skill level.\r\n- no cost for All: Play as much as you want without any cost!\r\n- Quick Start: No need to install – just play instantly!\r\n\r\nDon\'t let go of the fun! Click the link and start your gaming spree at 3030 Games now!\r\n\r\nPlay Browser Games Now: https://bit.ly/3030games',''),(8260,1,2053,'6','Joanna Riggs',''),(8261,1,2053,'2','3841340430',''),(8262,1,2053,'3','joannariggs278@gmail.com',''),(8263,1,2053,'4','Hi,\r\n\r\nI just visited juiceelectrical.co.nz and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur videos cost just $195 for a 30 second video ($239 for 60 seconds) and include a full script, voice-over and video.\r\n\r\nI 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.\r\n\r\nRegards,\r\nJoanna\r\n\r\nUnsubscribe: https://removeme.click/ev/unsubscribe.php?d=juiceelectrical.co.nz',''),(8264,1,2054,'6','Leigh',''),(8265,1,2054,'2','353578007',''),(8266,1,2054,'3','magicmat@juiceelectrical.co.nz',''),(8267,1,2054,'4','Get The Worlds Greatest Magic Sand Free Beach Mat!\r\n\r\nWatch sand, dirt & dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking.\r\n\r\nAct Now And Receive A Special Discount For Our Magic Mat!\r\n\r\nGet Yours Here: https://magicmats.co\r\n\r\nCheers, \r\n \r\nLeigh',''),(8268,1,2055,'6','Matthew Williams',''),(8269,1,2055,'2','353987598',''),(8270,1,2055,'3','futurosalesco@gmail.com',''),(8271,1,2055,'4','Hey there,\r\n\r\nRemember when I said our Custom Unlimited Lifetime APIs are a game-changer? Let’s dive into why.\r\n\r\nImagine running your business without the fear of hitting API limits. No more sleepless nights worrying about data caps or unexpected bills. Just pure, unadulterated growth.\r\n\r\nHere’s how our APIs can transform your business:\r\n1. Unlimited API calls – Scale without constraints.\r\n2. Lifetime access – Save big on recurring fees.\r\n3. Custom solutions – Perfect fit for your unique needs.\r\n\r\nOur APIs are already powering the success of businesses across industries – from e-commerce to healthcare, finance, and more.\r\n\r\nCurious to see how it works? Click here to see our APIs in action.\r\n\r\n\r\nDon’t just take our word for it. Click the link now to see how our Custom Unlimited Lifetime APIs can revolutionize your business! [Get Your API] (https://arsourceinfo.wixstudio.io/lifetime-api)\r\n\r\nWarning: The website works best on desktop.\r\n\r\nHere’s to your limitless future,\r\nMatthew WIlliams, President, ARSource\r\n\r\n\r\nReply with the word “UNSUBSCRIBE” as the subject to unsubscribe.',''),(8272,1,2056,'6','Masonphync',''),(8273,1,2056,'2','89919487397',''),(8274,1,2056,'3','yjdisantoyjdissemin@gmail.com',''),(8275,1,2056,'4','Xin chào, tôi muốn biết giá của bạn.',''),(8276,1,2056,'5','AliExpress',''),(8277,1,2057,'6','Nicholas Johnston',''),(8278,1,2057,'2','021 2690828',''),(8279,1,2057,'3','n8j@outlook.co.nz',''),(8280,1,2057,'4','I would like to arrange to get a quote for a new heat pump please.',''),(8281,1,2057,'5','Previous customer',''),(8282,1,2058,'6','German Hogle',''),(8283,1,2058,'2','482-818-7947',''),(8284,1,2058,'3','german.hogle@gmail.com',''),(8285,1,2058,'4','Howdy!\r\n\r\nIt\'s been a while, but I recently stumbled upon a slam piece online about juiceelectrical.co.nz and immediately needed to message you guys to disprove this review. \r\n\r\nIt looks like there\'s some unfavorable news that could be potentially damaging. \r\nUnderstanding how fast misinformation can spread and not wanting you to be caught off guard, I decided to notify you.\r\n\r\nHere\'s where I found the info:\r\n\r\nhttps://ibit.ly/3BSw9 \r\n\r\nMy hope is it\'s all a simple confusion, but I believed it necessary you should know!\r\n\r\nAll the best to you,\r\nGerman',''),(8286,1,2059,'6','Edison Salerno',''),(8287,1,2059,'2','7045151905',''),(8288,1,2059,'3','edison.salerno@gmail.com',''),(8289,1,2059,'4','Why Shop on Prime Day?\r\n\r\nUnbeatable Deals: Huge discounts on electronics, home appliances, fashion, and more.\r\n\r\nExclusive for Prime Members: Access these deals with a Prime membership. Not a member? \r\n\r\nStart a free 30-day trial @ https://amzn.to/3LJMApn\r\n\r\nEarly Access: Get first dibs on select lightning deals and special promotions.\r\nConvenience: Shop from home and enjoy fast, free shipping on millions of items.\r\nWide Selection: Find deals on everything from tech gadgets to trendy apparel.\r\nMaximize Your Savings\r\n\r\nCreate a Wishlist: Track discounts on your favorite items.\r\nSet Alerts: Use the Amazon app to get notified about deals.\r\nCompare Prices: Use price tracking tools to ensure the best deal.\r\nCheck for Coupons: Look for additional savings at checkout.\r\nExplore All Categories: Discover deals across various categories.\r\nHighlighted Deals\r\n\r\nTech & Electronics: Up to 50% off.\r\nHome & Kitchen: Major discounts.\r\nFashion & Beauty: Save up to 60%.\r\nEntertainment: Great deals on books, movies, and music.\r\n\r\nAct Now @ https://amzn.to/4d0KaxZ\r\n\r\nSign up for Amazon Prime, mark your calendar, and start prepping your wishlist. \r\n\r\nHappy shopping!',''),(8290,1,2060,'6','Donny Jett',''),(8291,1,2060,'2','986-628-5961',''),(8292,1,2060,'3','donny.jett@gmail.com',''),(8293,1,2060,'4','hi!\r\n\r\nIt\'s been some time, but I came across a slam piece online about juiceelectrical.co.nz and immediately needed to message you guys to disprove this nonsense. \r\n\r\nIt looks like there\'s some negative press that could be harmful to your reputation. \r\nUnderstanding how fast misinformation can spread and hoping not you to be unprepared, I felt the need to inform you.\r\n\r\nHere\'s where I found the info:\r\n\r\nhttps://ibit.ly/hHPQ6 \r\n\r\nMy hope is it\'s all a misunderstanding, but it seemed prudent you should know!\r\n\r\nAll the best to you,\r\nDonny',''),(8294,1,2061,'6','Eric Jones',''),(8295,1,2061,'2','555-555-1212',''),(8296,1,2061,'3','ericjonesmyemail@gmail.com',''),(8297,1,2061,'4','Hi,\r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with juiceelectrical.co.nz Owner definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nCLICK HERE http://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://rushleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://rushleadgeneration.com to try Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8298,1,2062,'6','Eric Jones',''),(8299,1,2062,'2','555-555-1212',''),(8300,1,2062,'3','ericjonesmyemail@gmail.com',''),(8301,1,2062,'4','Hello\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz Owner.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nVisit https://rushleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nVisit https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nVisit https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe visit https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8302,1,2063,'6','Eric Jones',''),(8303,1,2063,'2','555-555-1212',''),(8304,1,2063,'3','ericjonesmyemail@gmail.com',''),(8305,1,2063,'4','To the juiceelectrical.co.nz Administrator! this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8306,1,2064,'6','Raina Lafleur',''),(8307,1,2064,'2','6721593298',''),(8308,1,2064,'3','raina.lafleur@yahoo.com',''),(8309,1,2064,'4','hi! I want to invite you to boost your earnings (massivly!) with our service:\r\n\r\nFREE Traffic System: Flood Your Sites With FREE Traffic\r\n\r\n\r\nHere’s Why You Need To Get Empire For Just $1 Right Now…\r\n\r\nNo Paid Advertising\r\nNo Creating Videos\r\nNewbie-friendly method\r\nWorks for anyone, period\r\nUnlimited FREE Traffic System\r\n60 day money back guarantee. Get results with this or we will give you 100% of your money back inside the next 60 days\r\n\r\nTry it out for just 1$ Trial here:\r\nhttps://bit.ly/SuperBoostTrafficTrial',''),(8310,1,2065,'6','Hermelinda McKenny',''),(8311,1,2065,'2','636395346',''),(8312,1,2065,'3','mckenny.hermelinda63@googlemail.com',''),(8313,1,2065,'4','Dear Valued Customer,\r\n\r\n\r\nI hope this note finds you well.\r\n\r\n\r\n\r\nI am pleased to present you Foxy Beauty, your one-stop shop for top-notch beauty products. We specialize in providing premium Botox - Botulinum Toxin A, available for purchase online and available worldwide.\r\n\r\nAt Foxy Beauty, we emphasize your beauty needs by offering superior products that deliver exceptional results. \r\nWhether you\'re looking to enhance your natural beauty or maintain a youthful appearance, our Botox products are designed to meet your expectations.\r\n\r\n\r\nExplore our website today and explore our range of Botox products: https://bit.ly/foxybotox\r\n\r\n\r\nWe eagerly await serving you and helping you attain your beauty goals.\r\n\r\n\r\n\r\nWarm regards,\r\n\r\n\r\nPaola\r\n\r\nFounder, Foxy Beauty\r\n\r\n\r\n\r\nP.S. Stay informed on our special offers and latest updates – sign up for our newsletter!',''),(8314,1,2066,'6','Geoffrey Shillito',''),(8315,1,2066,'2','6046351297',''),(8316,1,2066,'3','geoffrey.shillito44@msn.com',''),(8317,1,2066,'4','Hey there,\r\n\r\nAre you tired of seeing your website traffic go to waste?\r\n\r\n Monetag can help you turn those visitors into cold, hard cash. Imagine earning extra income without the hassle of complex ad networks.\r\n\r\n Our platform makes it easy to place high-paying ads on your site, with instant approval and quick payouts. Don\'t let another visitor leave empty-handed.\r\n\r\n Let\'s start making your website work harder for you.\r\n\r\nReady to give it a try?\r\nhttps://bit.ly/MonetagRegisterToEarn',''),(8318,1,2067,'6','Eric Jones',''),(8319,1,2067,'2','555-555-1212',''),(8320,1,2067,'3','ericjonesmyemail@gmail.com',''),(8321,1,2067,'4','Hello juiceelectrical.co.nz Owner!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8322,1,2068,'6','Lorenza Melba',''),(8323,1,2068,'2','749250414',''),(8324,1,2068,'3','melba.lorenza23@gmail.com',''),(8325,1,2068,'4','\"Unlock Endless Fun and Learning with Amazon Kids+!\"\r\n\r\nAmazon Kids+ is an all-in-one subscription for kids aged 3-12, \r\noffering thousands of kid-friendly books, movies, TV shows, educational apps, and games. \r\n\r\nIt features content from top brands like Disney, Nickelodeon, \r\nAnd PBS Kids, ensuring high-quality and age-appropriate entertainment. \r\n\r\nParents can set screen time limits, filter content, and review activities, \r\nProviding a safe and controlled environment for kids to explore and learn. \r\n\r\nAvailable on multiple devices,\r\nAmazon Kids+ keeps children entertained and educated, giving parents peace of mind.\r\n\r\nSimply Visit Us @ https://amzn.to/3zNh1YZ',''),(8326,1,2069,'6','Masonphync',''),(8327,1,2069,'2','84575416794',''),(8328,1,2069,'3','yjdisantoyjdissemin@gmail.com',''),(8329,1,2069,'4','Hola, quería saber tu precio..',''),(8330,1,2069,'5','AliExpress',''),(8331,1,2070,'6','Gary Charles',''),(8332,1,2070,'2','8185327032',''),(8333,1,2070,'3','garycharles@dominatingkeywords.com',''),(8334,1,2070,'4','Forget about the usual SEO and PPC. I have something different for you. Just send me your favorite keywords, and I\'ll make sure your website gets lot of clicks from Google and Bing with no Pay Per Click charges involved. Let me show you how it works. You\'re going to love the results!',''),(8335,1,2070,'5','ad',''),(8336,1,2071,'6','Eric Jones',''),(8337,1,2071,'2','555-555-1212',''),(8338,1,2071,'3','ericjonesmyemail@gmail.com',''),(8339,1,2071,'4','Dear juiceelectrical.co.nz Admin. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8340,1,2072,'6','Eric Jones',''),(8341,1,2072,'2','555-555-1212',''),(8342,1,2072,'3','ericjonesmyemail@gmail.com',''),(8343,1,2072,'4','Hello juiceelectrical.co.nz Webmaster. this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8344,1,2073,'6','Marina Fatnowna',''),(8345,1,2073,'2','974-745-4421',''),(8346,1,2073,'3','marina.fatnowna@gmail.com',''),(8347,1,2073,'4','Howdy!\r\n\r\nIt\'s been a while, but I recently stumbled upon a slam piece online about juiceelectrical.co.nz and thought it important to message you guys to disprove this article. \r\n\r\nIt appears like there\'s some negative press that could be potentially damaging. \r\nBeing aware of how quickly rumors can spiral and wishing not you to be taken by surprise, I felt the need to warn you.\r\n\r\nHere\'s the source of the info:\r\n\r\nhttps://ibit.ly/CXK1W \r\n\r\nI\'m hoping it\'s all a simple confusion, but I thought it best you should know!\r\n\r\nWishing you all the best,\r\nMarina',''),(8348,1,2074,'6','Cecila Roten',''),(8349,1,2074,'2','246422161',''),(8350,1,2074,'3','cecila.roten@googlemail.com',''),(8351,1,2074,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(8352,1,2075,'6','Isabelle Freehill',''),(8353,1,2075,'2','89514697',''),(8354,1,2075,'3','isabelle.freehill@gmail.com',''),(8355,1,2075,'4','I hope this message finds you well. I am reaching out to introduce our cutting-edge AI API platform that seamlessly integrates world-class AI models such as GPT-4, Claude, and Gemini. Our platform is designed to empower websites like yours with advanced AI capabilities at a fraction of the cost.\r\n\r\n\r\nKey benefits of our AI API platform:\r\n\r\n\r\nAccess to top-tier AI models for various applications\r\n\r\nAPI prices that are 4-7 times cheaper than official rates\r\n\r\nHigh concurrency and stability for smooth AI services\r\n\r\nEasy integration and comprehensive developer support\r\n\r\n\r\n\r\nWe are offering a FREE API key to get you started. To receive your key and access our step-by-step tutorials, simply reach out to us via Telegram or email, providing your website name. Our team is also available for 1-on-1 technical support to help you unlock the full potential of AI for your website.\r\n\r\nDon\'t miss this opportunity to revolutionize your website with the power of AI. Claim your free API key today and experience the benefits firsthand.\r\n\r\nTo learn more about our services, visit our website: https://www.lmzh.top/\r\n\r\n\r\nTelegram: https://t.me/nicky05061\r\n\r\nEmail: q2408808@outlook.com\r\n\r\nWebsite: https://www.lmzh.top/',''),(8356,1,2076,'6','Masonphync',''),(8357,1,2076,'2','85914638636',''),(8358,1,2076,'3','yjdisantoyjdissemin@gmail.com',''),(8359,1,2076,'4','Kaixo, zure prezioa jakin nahi nuen.',''),(8360,1,2076,'5','Apple',''),(8361,1,2077,'6','Jina Huddart',''),(8362,1,2077,'2','677154080',''),(8363,1,2077,'3','jina.huddart@yahoo.com',''),(8364,1,2077,'4','Unlock Huge Travel Savings with a Vacabee Membership!\r\n\r\nVacabee brings you exclusive access to wholesale travel prices, previously available only to businesses. \r\n\r\nBy cutting out traditional travel agency fees, Vacabee members save big on vacations. \r\n\r\nJoin now and enjoy superior travel experiences at unbeatable prices!\r\n\r\nVisit us to find out More @ https://bit.ly/46actaW\r\n\r\n#TravelSavings #WholesaleTravel #VacabeeMembership \r\n#DiscountVacations #ExclusiveTravelDeals',''),(8365,1,2078,'6','Lindsay Ebersbach',''),(8366,1,2078,'2','3862132441',''),(8367,1,2078,'3','lindsay.ebersbach@gmail.com',''),(8368,1,2078,'4','WANTED: Partnerships & Agents for Global E-commerce Firm\r\n\r\n4U2 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.\r\n\r\nWhy Choose 4U2 Inc.? (see https.//www.4u2inc.com)\r\n\r\nGlobal reach for your products\r\nImmediate requirements for a wide range of items\r\nOpportunity to expand your business network\r\nJoin 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.\r\n\r\nGet in Touch Don’t miss out on this opportunity. Contact us at 4u2inc123@gmail.com to learn more or to start our partnership today!\r\n\r\nThis 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!',''),(8369,1,2079,'6','Matthew Williams',''),(8370,1,2079,'2','7972955324',''),(8371,1,2079,'3','futurosalesco@gmail.com',''),(8372,1,2079,'4','Hey there,\r\n\r\nI know what you’re thinking – “This sounds amazing, but is it really for me?” Let’s tackle those doubts head-on.\r\n\r\nConcern 1: “I’m not tech-savvy enough to manage custom APIs.”\r\nOur APIs are designed to be user-friendly. If you can send an email, you can integrate our APIs. Plus, our support team is here to help every step of the way.\r\n\r\nConcern 2: “Is it really worth the investment?”\r\nAbsolutely! Think of the savings on recurring fees and the endless growth potential. It’s an investment that pays for itself in no time.\r\n\r\nConcern 3: “Will it fit my unique needs?”\r\nOur APIs are custom-built to fit your exact requirements. You get exactly what you need, tailored for your business.\r\n\r\nStop holding back your growth. Click here to explore how our Custom Unlimited Lifetime APIs can work for you.\r\n\r\n\r\nReady to break free from limitations? Click the link now to get your Custom Unlimited Lifetime API and watch your business soar! [Get Your API] (https://arsourceinfo.wixstudio.io/lifetime-api)\r\n\r\nWarning: The website works best on desktop.\r\n\r\nTo breaking barriers,\r\nMatthew WIlliams, President, ARSource\r\n\r\n\r\nReply with the word “UNSUBSCRIBE” as the subject to unsubscribe.',''),(8373,1,2080,'6','Sue Leathwick',''),(8374,1,2080,'2','022 162 8744',''),(8375,1,2080,'3','sue.leathwick@gmail.com',''),(8376,1,2080,'4','We have just moved into our new home in Dunsandel and we would like to get our heat pump serviced as we do not know when it was last done. It is a Mitsubishi heat pump.',''),(8377,1,2080,'5','Google search',''),(8378,1,2081,'6','caelan joy',''),(8379,1,2081,'2','0274159387',''),(8380,1,2081,'3','caelanjoy1@gmail.com',''),(8381,1,2081,'4','Kia ora,\r\n\r\nMy names Caelan I’m currently studying my electrical pre trade at SIT. I am excited about attaining a trade as an electrician and would be interested to do some work experience for you and your team \r\n\r\nYou can contact me either on my email or my mobile number \r\n\r\nKind regards,',''),(8382,1,2081,'5','Google',''),(8383,1,2082,'6','Davidphync',''),(8384,1,2082,'2','89943287311',''),(8385,1,2082,'3','kayleighbpsteamship@gmail.com',''),(8386,1,2082,'4','Hola, quería saber tu precio..',''),(8387,1,2082,'5','Google',''),(8388,1,2083,'6','henry aitken',''),(8389,1,2083,'3','henryartdirector@gmail.com',''),(8390,1,2083,'4','Hello,\r\n\r\nI\'m getting in touch regarding an Electrician Apprenticeship. I\'m looking at a change in career path and was wondering if have any vacancies or any advice you can give me.\r\n\r\nKind regards,\r\n\r\nHenry Aitken',''),(8391,1,2083,'5','google',''),(8392,1,2084,'6','Amber McNair',''),(8393,1,2084,'2','021 209 7901',''),(8394,1,2084,'3','amber.mcnair@hotmail.com',''),(8395,1,2084,'4','Hi there,\r\n\r\nLooking for a quote for the following in Rolleston please;\r\n\r\n- Installing an outdoor plug/connection suitable for a spa pool (no wiring currently in place).\r\n- Fixing a dimmer switch that has stopped working in the lounge.\r\n- Replacing an outdoor light fitting that has a bulb broken off inside it.\r\n- Investigating why an outdoor sensor light has stopped working.\r\n\r\nAlso, looking to understand if I was to continue as quoted when this work could be carried out.\r\n\r\n Please let me know if you need any further information.\r\n\r\nMany thanks,\r\nAmber',''),(8396,1,2084,'5','Google',''),(8397,1,2085,'6','Mario Huhn',''),(8398,1,2085,'2','53117061',''),(8399,1,2085,'3','mario.huhn@msn.com',''),(8400,1,2085,'4','Experience entertainment like never before with Prime Video! \r\n\r\nSubscribe now to dive into a world of endless possibilities, where captivating stories and unforgettable moments await you. \r\nWith a subscription, you\'ll unlock a treasure trove of movies, TV shows, and exclusive content that will keep you on the edge of your seat.\r\n\r\nJoin millions of happy viewers who have already discovered the magic of Prime Video. \r\n\r\nDon\'t miss out—subscribe today and elevate your viewing experience to extraordinary heights!\r\n\r\nSimply Visit us @ https://amzn.to/4cMM7hH\r\n\r\n#PrimeVideo, #SubscribeNow, #EndlessEntertainment, #ExclusiveContent, #WatchNow, #BingeWorthy, #JoinTheFun',''),(8401,1,2086,'6','Lyndon Yewen',''),(8402,1,2086,'2','4934188638',''),(8403,1,2086,'3','lyndon.yewen@msn.com',''),(8404,1,2086,'4','hi!\r\n\r\nExplode Your Earnings:(Seriously!): SECRET EMAIL SYSTEM\r\n\r\nWithout Ever Creating Product, Without Fulfilling Services, Without Running Ads, or Ever Doing Customer Service – And Best of All Only Working 30 Minutes A Day, All While Automatically Generating Sales 24/7\r\n\r\ncheck how now:\r\nhttps://bit.ly/copy_my_business_now_ebook (copy high succes strategy now)',''),(8405,1,2087,'6','Eric Jones',''),(8406,1,2087,'2','555-555-1212',''),(8407,1,2087,'3','ericjonesmyemail@gmail.com',''),(8408,1,2087,'4','Hi juiceelectrical.co.nz Administrator. my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8409,1,2088,'6','Milagro Haddad',''),(8410,1,2088,'3','milagro.haddad83@gmail.com',''),(8411,1,2088,'4','\"Transform Your Networking: Say Hello to Popl Digital Business Cards!\"\r\n\r\nIntroducing Popl Digital Business Cards \r\n\r\nThe modern, efficient way for everyday professionals to network and share contact information seamlessly.\r\n\r\nWith Popl, you can:\r\n\r\nInstantly share your contact info, social media profiles, and more with a simple tap.\r\nSay goodbye to paper business cards – eco-friendly and always updated.\r\nEnhance your professional presence with customizable profiles.\r\nSimplify your networking – perfect for meetings, conferences, and everyday encounters.\r\n\r\nJoin the digital revolution and make your networking effortless with Popl Digital Business Cards.\r\n\r\nSimply Visit us @ popl.pxf.io/LXLGGa\r\n\r\n#Networking, #DigitalBusinessCard, #ProfessionalTools, #ContactSharing, #EcoFriendly, #ModernNetworking',''),(8412,1,2089,'6','Alexis Riley',''),(8413,1,2089,'2','(818) 789-0123',''),(8414,1,2089,'3','ali.vernon@msn.com',''),(8415,1,2089,'4','Did you know?\r\n\r\nEmbracing sustainability is the future!\r\n\r\nJoin the movement and revamp your space with eco-friendly practices.\r\n\r\nLearn more >>> https://u.to/Qn7LIA\r\n\r\nSave money on utility expenses while helping the planet.\r\n\r\nFrom recycled materials to green roofs, each effort makes a difference.\r\n\r\nGet started today and experience the benefits!\r\n\r\nStay ahead in green innovation.',''),(8416,1,2090,'6','Tegan Sigler',''),(8417,1,2090,'2','616377299',''),(8418,1,2090,'3','tegan.sigler65@gmail.com',''),(8419,1,2090,'4','Dear valued customer,\r\nEnhance your pet\'s comfort with our premium products! Our cozy pet blankets, orthopedic beds, and convenient car seats ensure your furry friend feels at home, whether relaxing or traveling. Discover how our top-quality items can make a difference in your pet\'s life.\r\n\r\nUse this link https://bit.ly/4bN25Y7',''),(8420,1,2091,'6','Karol Allwood',''),(8421,1,2091,'2','7757637904',''),(8422,1,2091,'3','karol.allwood@gmail.com',''),(8423,1,2091,'4','Skyrocket Your Rankings with Top-Tier SEO Guest Posts & High Authority Link Building!**\r\n\r\nGet top-tier SEO assistance with our top-rated Fiverr Pro gig!\r\n\r\n+ What We Offer:\r\n\r\n- Premium SEO Guest Posts\r\n- High Authority, High Traffic Links\r\n- Proven Results, Even After Google\'s Most Recent Updates\r\n\r\n* Benefits:\r\n\r\n- Boost Your Search Engine Rankings\r\n- Boost Visibility and Organic Traffic\r\n- Rave 5-Star Reviews\r\n\r\nDon’t miss out on this chance to improve your SEO strategy with a expert specialist.\r\n\r\n* See our Fiverr Pro Service! https://go.fiverr.com/visit/?bta=570412&brand=fp&landingPage=https252F%252Fwww.fiverr.com252Fbuild-1110-ultra-seo-contextual-backlinks-tiered',''),(8424,1,2092,'6','Andrianaktq',''),(8425,1,2092,'2','85736153739',''),(8426,1,2092,'3','an.dria.n.alo.v.eadams3.7@gmail.com',''),(8427,1,2092,'4','I found the official website where you can buy Best Cooler Shock Reusable Ice Packs for Cooler for less. \r\nhttps://www.google.com/search?q=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+shock+official+website&rlz=1C1GCEA_enUA1111UA1112&oq=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+shock+official+website&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIGCAEQRRg60gEJMzgzOTFqMGo3qAIAsAIA&sourceid=chrome&ie=UTF-8 \r\nhttps://www.google.com/search?q=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+shock+website&newwindow=1&sca_esv=7a2c727ac526d59d&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKAwJ1yW9K18ghOpjx6no_643icOw%3A1718270677572&ei=1bpqZtbEIvj_wPAPnIS7sAE&udm=&ved=0ahUKEwiWg_WKodiGAxX4PxAIHRzCDhYQ4dUDCBA&uact=5&oq=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+shock+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiNHNpdGU6aHR0cDovL3RoZWNvb2xlcnNob2NrLmNvbS8gQ29vbGVyIHNob2NrIHdlYnNpdGVIAFAAWABwAHgAkAEAmAEAoAEAqgEAuAEDyAEA-AEBmAIAoAIAmAMAkgcAoAcA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+Shock+Reusable+Ice+Packs+for+Cooler&newwindow=1&sca_esv=7a2c727ac526d59d&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKhu3TNtpJXVYM8OvAHTJ2oahPRVQ%3A1718270706810&ei=8rpqZvKSMemkwPAPxpicsA8&udm=&ved=0ahUKEwjy0-2YodiGAxVpEhAIHUYMB_YQ4dUDCBA&uact=5&oq=site%3Ahttp%3A%2F%2Fthecoolershock.com%2F+Cooler+Shock+Reusable+Ice+Packs+for+Cooler&gs_lp=Egxnd3Mtd2l6LXNlcnAiSnNpdGU6aHR0cDovL3RoZWNvb2xlcnNob2NrLmNvbS8gQ29vbGVyIFNob2NrIFJldXNhYmxlIEljZSBQYWNrcyBmb3IgQ29vbGVySABQAFgAcAB4AJABAJgBAKABAKoBALgBA8gBAPgBAvgBAZgCAKACAJgDAJIHAKAHAA&sclient=gws-wiz-serp \r\nI recommend You use it Too!',''),(8428,1,2092,'5','Google',''),(8429,1,2093,'6','CONFIDENCE FINANCE',''),(8430,1,2093,'2','+7 (985) 059-26-23',''),(8431,1,2093,'3','info@confidence-finance.ru',''),(8432,1,2093,'4','Нужны деньги!? \r\nПоможем получить кредит даже с плохой кредитной историей. \r\n \r\nНа самых выгодных условиях. \r\n+7 800 700 34 58',''),(8433,1,2094,'6','Liam',''),(8434,1,2094,'2','388515362',''),(8435,1,2094,'3','juiceelectrical.co.nz@outlook.com',''),(8436,1,2094,'4','Good day \r\n\r\nI 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. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nBest Wishes, \r\n\r\nLiam',''),(8437,1,2095,'6','Jessicasgv',''),(8438,1,2095,'2','87697798712',''),(8439,1,2095,'3','je.ss.ic.a86.88.w.il.l.i.am.s@gmail.com',''),(8440,1,2095,'4','I was amazed by the quality and comfort of my Gorich Beach Tent, transforming my vacation into the perfect beach getaway! \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthegorich.com%2F+Gorich+official+website&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILgDvZes19Su2Zo-QhtXRwmOXtxGQ%3A1721401609610&ei=CYGaZpv5JPOFxc8Pq72xkAg&ved=0ahUKEwjbodPbsLOHAxXzQvEDHateDIIQ4dUDCA8&oq=site%3Ahttps%3A%2F%2Fthegorich.com%2F+Gorich+official+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiM3NpdGU6aHR0cHM6Ly90aGVnb3JpY2guY29tLyBHb3JpY2ggb2ZmaWNpYWwgd2Vic2l0ZUjbjwZQjAlY6NoFcAJ4AJABAJgBWKABpgeqAQIxMrgBDMgBAPgBAfgBApgCAKACAJgDAIgGAZIHAKAHnAQ&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthegorich.com%2F+Gorich+website&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIL-L9axgUfN7s-WedBTYlQlv7KpKw%3A1721401713169&ei=cYGaZsz7CYWI7NYPoPiKwAY&ved=0ahUKEwiM-IONsbOHAxUFBNsEHSC8AmgQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthegorich.com%2F+Gorich+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiKnNpdGU6aHR0cHM6Ly90aGVnb3JpY2guY29tLyBHb3JpY2ggd2Vic2l0ZUiJDVDcBVjcBXABeACQAQCYAVmgAVmqAQExuAEDyAEA-AEBmAIAoAIAmAMAiAYBkgcAoAct&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthegorich.com%2F+Gorich+Beach+Tent&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILMhOatGft6zCGQ5Sk5-Kkz-gIQsQ%3A1721401765260&ei=pYGaZp61D-CG7NYP4rKdmAw&ved=0ahUKEwjem--lsbOHAxVgA9sEHWJZB8MQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthegorich.com%2F+Gorich+Beach+Tent&gs_lp=Egxnd3Mtd2l6LXNlcnAiLXNpdGU6aHR0cHM6Ly90aGVnb3JpY2guY29tLyBHb3JpY2ggQmVhY2ggVGVudEj6SlDXDFjPM3ABeACQAQCYAVOgAf4FqgECMTC4AQPIAQD4AQGYAgCgAgCYAwCIBgGSBwCgB8ID&sclient=gws-wiz-serp \r\nI recommend You use it Too!',''),(8441,1,2095,'5','Wallmart',''),(8442,1,2096,'6','Joanna Riggs',''),(8443,1,2096,'3','joannariggs278@gmail.com',''),(8444,1,2096,'4','Hi,\r\n\r\nI just visited juiceelectrical.co.nz and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur prices start from just $195.\r\n\r\nLet me know if you\'re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nJoanna\r\n\r\nUnsubscribe: https://removeme.click/ev/unsubscribe.php?d=juiceelectrical.co.nz',''),(8445,1,2097,'6','Eric Jones',''),(8446,1,2097,'2','555-555-1212',''),(8447,1,2097,'3','ericjonesmyemail@gmail.com',''),(8448,1,2097,'4','To the juiceelectrical.co.nz Admin. my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8449,1,2098,'6','Vick Strizheus',''),(8450,1,2098,'2','353793982',''),(8451,1,2098,'3','vipindicatorsreview@gmail.com',''),(8452,1,2098,'4','Does your company or you have cash flow and cannot invest it? I present to you 100% a free \r\nVideo about “Unlock 93% Profit with VIP Indicators: My Trading Secret”\r\nVisit us : vipindicatorsreview.online',''),(8453,1,2099,'6','Kimber Faulding',''),(8454,1,2099,'2','344613596',''),(8455,1,2099,'3','kimber.faulding3@hotmail.com',''),(8456,1,2099,'4','hi!\r\n\r\nExplode Your Earnings:(Seriously!): SECRET EMAIL SYSTEM\r\n\r\nWithout Ever Creating Product, Without Fulfilling Services, Without Running Ads, or Ever Doing Customer Service – And Best of All Only Working 30 Minutes A Day, All While Automatically Generating Sales 24/7\r\n\r\ncheck how now:\r\nhttps://bit.ly/copy_my_business_now_ebook (copy high succes strategy now)',''),(8457,1,2100,'6','Masonphync',''),(8458,1,2100,'2','83536314888',''),(8459,1,2100,'3','yjdisantoyjdissemin@gmail.com',''),(8460,1,2100,'4','Hæ, ég vildi vita verð þitt.',''),(8461,1,2100,'5','Wallmart',''),(8462,1,2101,'6','Robertphync',''),(8463,1,2101,'2','89896219542',''),(8464,1,2101,'3','kayleighbpsteamship@gmail.com',''),(8465,1,2101,'4','Aloha, makemake wau eʻike i kāu kumukūʻai.',''),(8466,1,2101,'5','Apple',''),(8467,1,2102,'6','Eric Jones',''),(8468,1,2102,'2','555-555-1212',''),(8469,1,2102,'3','ericjonesmyemail@gmail.com',''),(8470,1,2102,'4','To the, this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nTalk 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8471,1,2103,'6','Wilburn Grimstone',''),(8472,1,2103,'2','0018143008897',''),(8473,1,2103,'3','wilburn.grimstone@yahoo.com',''),(8474,1,2103,'4','Hey\r\n\r\nWe provide real human traffic with a revenue share option.\r\n\r\nAre you looking to boost your website’s ad revenue easily? At Pristine Traffic, we specialize in providing premium traffic solutions designed to connect you with engaged, high-quality audience. Our targeted traffic can help you:\r\n- Increase user engagement and retention\r\n- Maximize your ad earnings\r\n- Achieve sustainable growth with consistent, profitable traffic\r\n\r\nTransform your performance like many successful websites with our tailored traffic solutions. Don’t miss out on the opportunity to elevate your site’s revenue potential!\r\n\r\nVisit Pristine Traffic today to learn more and get started: https://bit.ly/psttraffic\r\n\r\nRegards\r\n\r\nMatthew Turner\r\nPristine Traffic\r\nmatthew@pristinetraffic.com\r\nWhatsApp: +18143008897\r\nhttps://bit.ly/psttraffic',''),(8475,1,2104,'6','Natajer',''),(8476,1,2104,'2','88277375684',''),(8477,1,2104,'3','woodthighgire1988@gmail.com',''),(8478,1,2104,'4','Hi! If you want to pull me on your stick, then message me where we can meet https://datingsmatches-meets.top/?u=41nkd08&o=8dhpkzk',''),(8479,1,2104,'5','Google',''),(8480,1,2105,'6','Eric Jones',''),(8481,1,2105,'2','555-555-1212',''),(8482,1,2105,'3','ericjonesmyemail@gmail.com',''),(8483,1,2105,'4','To the juiceelectrical.co.nz Owner! my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8484,1,2106,'6','Ray Jarnagin',''),(8485,1,2106,'2','474662523',''),(8486,1,2106,'3','jarnagin.ray@gmail.com',''),(8487,1,2106,'4','MUST SEE!\r\n\r\nCreate AI Video\'s in 1 click (every topic)\r\nEnter your idea (every niche) and click generate!=video!\r\n\r\nGuru\'s Don\'t want you to know this! 60 000$/year!\r\nGenearte Shorts videos 9:16 BUT ALSO LONG FORM Video\'s ratio 16:9 (3-4 minutes)\r\nGenerate + post on social media (youtube - tiktok - instagram - facebook - Website..)\r\n\r\nDon\'t spend tons of MONEY to make a channel and video\'s!\r\nNO more hours of working and edditing!\r\n\r\nEnter Idea + genrate = video to post, in 1-2-3!\r\n\r\nfor example youtube channel (generate your videos + shedule them to post)\r\n---> after a while your videos get traction and you have a full income!\r\n\r\nNEVER BEEN EASIER - JOIN THE AI REVOLUION NOW HERE\r\n\r\nhttps://bit.ly/GenerateFullVideosHere',''),(8488,1,2107,'6','Velva Miles',''),(8489,1,2107,'2','9054540483',''),(8490,1,2107,'3','miles.velva@yahoo.com',''),(8491,1,2107,'4','Hi there,\r\n\r\nWe 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.\r\n\r\nGenerate Human-Like Content\r\nBuilds Professional Funnels\r\nDrive Thousands Of Clicks\r\n\r\nOnly $17.00 (normally $180)\r\n\r\nCheck out the features of Robin AI here: https://furtherinfo.org/robinai\r\n\r\nThanks for your time,\r\nVelva',''),(8492,1,2108,'6','Edward Scarf',''),(8493,1,2108,'2','021803622',''),(8494,1,2108,'3','edwardscssrhnds@yahoo.com',''),(8495,1,2108,'4','Hi there. I’m looking into getting three of my light switches converted to smart switches, and two bayonet bulb sockets replaced with Edison sockets.\r\nOne of the switch plates is single and the other two are two gang. One has already been replaced with a modern plate, but the other two are from the original (I assume) 1975 build.\r\nI’m on paid time off this week, so I’ll be free most times. I live locally in Sydenham.\r\nAlso, a general ballpark figure on pricing would be fantastic if possible.\r\n\r\nThank you!',''),(8496,1,2108,'5','Google Search (top rated)',''),(8497,1,2109,'6','Natalie Norfleet',''),(8498,1,2109,'2','347577826',''),(8499,1,2109,'3','natalie.norfleet@hotmail.com',''),(8500,1,2109,'4','Get An INSTANT FLOOD of Non-Stop HUNGRY LEADS\r\nUsing This SHOCKING HACK That Nobody’s Even Heard Of!\r\nWe Show You How To Turn This FLOOD OF LEADS\r\nInto ONGOING INCOME…\r\nAnd Do It In Just 3 MINUTES!(REAL! SERIOUSLY!)\r\n\r\nCHECK HERE NOW:\r\n\r\nhttps://bit.ly/LeadsIn3MinutesSecretSystem',''),(8501,1,2110,'6','Felicity Sauncho',''),(8502,1,2110,'3','felicitysauncho@gmail.com',''),(8503,1,2110,'4','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nFelicity',''),(8504,1,2111,'6','Andrianasoi',''),(8505,1,2111,'2','84536784487',''),(8506,1,2111,'3','an.dr.i.analo.vea.d.am.s37@gmail.com',''),(8507,1,2111,'4','This is the best CAR ROOF CARGO BAG. While traveling, we loaded it with a lot of things!!! \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Ftheasinking.com%2F+%0D%0AAsinking+official+website&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILTxtj6-AuutwEQ-IFpvKwYIjZ-dg%3A1721940204585&ei=7LiiZvShI_DhwPAPp_mwmQg&ved=0ahUKEwj0x9-Rh8OHAxXwMBAIHac8LIMQ4dUDCA8&oq=site%3Ahttps%3A%2F%2Ftheasinking.com%2F+%0D%0AAsinking+official+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiOHNpdGU6aHR0cHM6Ly90aGVhc2lua2luZy5jb20vIApBc2lua2luZyBvZmZpY2lhbCB3ZWJzaXRlSABQAFgAcAB4AJABAJgBAKABAKoBALgBDMgBAPgBAfgBApgCAKACAJgDAJIHAKAHAA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Ftheasinking.com%2F+%0D%0AAsinking+website&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILrIO8LCG3RCrgVku4DxK3pyFH6Xg%3A1721940295867&ei=R7miZoe7NI2EwPAP0cnRwQc&ved=0ahUKEwjH-qK9h8OHAxUNAhAIHdFkNHgQ4dUDCA8&oq=site%3Ahttps%3A%2F%2Ftheasinking.com%2F+%0D%0AAsinking+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiL3NpdGU6aHR0cHM6Ly90aGVhc2lua2luZy5jb20vIApBc2lua2luZyB3ZWJzaXRlSABQAFgAcAB4AJABAJgBAKABAKoBALgBDMgBAJgCAKACAJgDAJIHAKAHAA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Ftheasinking.com%2F+%0D%0AAsinking+Car+Rooftop+Cargo+Carrier+Bag&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILrIO8LCG3RCrgVku4DxK3pyFH6Xg%3A1721940295867&ei=R7miZoe7NI2EwPAP0cnRwQc&ved=0ahUKEwjH-qK9h8OHAxUNAhAIHdFkNHgQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Ftheasinking.com%2F+%0D%0AAsinking+Car+Rooftop+Cargo+Carrier+Bag&gs_lp=Egxnd3Mtd2l6LXNlcnAiRXNpdGU6aHR0cHM6Ly90aGVhc2lua2luZy5jb20vIApBc2lua2luZyBDYXIgUm9vZnRvcCBDYXJnbyBDYXJyaWVyIEJhZ0gAUABYAHAAeACQAQCYAQCgAQCqAQC4AQPIAQD4AQGYAgCgAgCYAwCSBwCgBwA&sclient=gws-wiz-serp \r\nMy husband was also very pleased. Now this bag is always with us when traveling! We recommend!',''),(8508,1,2111,'5','Wallmart',''),(8509,1,2112,'6','Michael James',''),(8510,1,2112,'2','078 1466 1100',''),(8511,1,2112,'3','michaeljamesowen45@gmail.com',''),(8512,1,2112,'4','The online marketplace wants you to struggle, but Shopify empowers you to dominate. Build, grow, and scale your store effortlessly.\r\n\r\n\r\nStart Your Shopify Journey Now\r\n\r\nhttps://shopify.pxf.io/XYDLz5',''),(8513,1,2113,'6','Grazyna Haenke',''),(8514,1,2113,'2','159523871',''),(8515,1,2113,'3','amazingfeeling2020@gmail.com',''),(8516,1,2113,'4','Greetings!\r\n\r\nExplore the revolutionary power of The Genius Wave to unlock \r\nyour brain\'s full potential. Our innovative soundwave technology, \r\ninspired by cutting-edge neuroscience, \r\nis designed to enhance creativity, intuition,\r\nand problem-solving skills by stimulating your Theta brainwaves. \r\nJust seven minutes a day can lead to remarkable transformations. \r\nExperience this transformative journey at https://bit.ly/renewremember and \r\nstart reshaping your mental capabilities now!\r\n\r\nTo you awakening your genius!\r\n\r\nBrain Genius\r\nhttps://bit.ly/renewremember',''),(8517,1,2114,'6','Florian Briseno',''),(8518,1,2114,'2','6023470449',''),(8519,1,2114,'3','florian.briseno@googlemail.com',''),(8520,1,2114,'4','Dear enthusiastic golfer,\r\nTransform your home into a golfer\'s paradise with our advanced launch monitors and golf simulators. Our cutting-edge technology provides detailed data on ball speed, launch angle, and spin rate to help you improve your swing. Enjoy access to top courses and realistic gameplay, making practice sessions more effective and enjoyable.\r\n\r\nUse this link https://bit.ly/3W4s5sa',''),(8521,1,2115,'6','Rachel Grossinger',''),(8522,1,2115,'3','info@sixfiguresadsagency.com',''),(8523,1,2115,'4','Hi there,\r\n\r\n\r\n\r\nI hope this message finds you well.\r\n\r\nMy name is Rachel, and I am excited to extend an exclusive offer that could significantly boost your business growth.\r\n\r\n\r\n\r\nWith 8+ years in lead generation, I\'ve helped hundreds of businesses just like yours harness the power of Facebook\'s algorithm \r\nto attract the right audience and maximize ROI. Now, I\'m offering YOUthe opportunity to benefit from my expertise for only $599 per month.\r\n\r\n\r\n\r\nHere\'s what you get with this unbeatable deal:\r\n\r\n \r\n\r\nI use a data-driven, mathematical approach to ensure every dollar is well spent, focusing on strategies that have proven results.\r\n\r\n\r\n\r\n-Comprehensive Service: \r\nThis offer includes both creatives and copywriting, so you don’t have to worry about additional costs for these essential elements.\r\n\r\n\r\n\r\n-Precision Targeting: \r\nUtilizing Facebook\'s sophisticated algorithm, I hone in on the right audience, avoid wasted spend, and replicate \r\nsuccessful campaigns by leveraging lookalike audiences and retargeting techniques.\r\n\r\n\r\n\r\n-Your Control Over Ad Spend: You decide your ad spend budget, giving you flexibility and control over your investment.\r\n\r\n\r\n\r\nWith this exclusive offer, you can tap into a steady stream of potential customers without the usual hassle and high costs. \r\nImagine the impact of having a consistent flow of leads tailored to your business needs.\r\n\r\nSpots are limited, so act now to secure your place.\r\n\r\nBook a quick call with me to get started: https://bit.ly/dweb-rachel\r\n\r\nLooking forward to helping you achieve unparalleled growth.\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\nRachel Grossinger\r\ninfo@sixfiguresadsagency.com',''),(8524,1,2116,'6','🖲 Ticket- Withdrawing NoCQ15. LOG IN => https://out.carrotquest.io/r?hash=YXBwPTYyNTczJmNvbnZlcnNhdGlvbj0xNzI3NDEzNjI3NzgwMDcyNTMzJmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnRlbGVncmEucGglMkZHby10by15b3VyLXBlcnNvbmFsLWNhYmluZXQtMDUtMTAmcmFpc2Vfb25fZXJyb3I9RmFsc2Umc2lnbmF0dXJlPTE2ZGJhOWVlMjNkY2E4YzhiMWIzMDVjZmZmMmUxMTdiMzNkNjllMGVkYzdiYzQzMGZmZjhhMTU0MDMwMDJmZTE=?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 🖲',''),(8525,1,2116,'2','658754797315',''),(8526,1,2116,'3','stevescan@24hinbox.com',''),(8527,1,2116,'4','wfrrn5',''),(8528,1,2116,'5','e7wfoz',''),(8529,1,2117,'6','Matthew Williams',''),(8530,1,2117,'2','740436214',''),(8531,1,2117,'3','futurosalesco@gmail.com',''),(8532,1,2117,'4','Hey there,\r\n\r\nTime is of the essence! Our exclusive offer on Custom Unlimited Lifetime APIs won’t last forever. This is your chance to secure unlimited API access for a lifetime with just one investment.\r\n\r\nImagine the freedom of scaling your business without constraints. No more monthly bills, no more data caps. Just endless possibilities.\r\n\r\nDon’t miss out on:\r\n- Unlimited API calls\r\n- Lifetime access\r\n- Custom solutions tailored to you\r\n\r\nThis offer is going fast, and I don’t want you to miss out. Click here to grab this opportunity before it’s gone.\r\n\r\n\r\nDon\'t wait! Click the link now to get your Custom Unlimited Lifetime API and secure your business\'s future today! [Get Your API] (https://arsourceinfo.wixstudio.io/lifetime-api)\r\n\r\nAct now and unlock your limitless potential,\r\nMatthew Williams, President, ARSource\r\n\r\n\r\nReply with the word “UNSUBSCRIBE” as the subject to unsubscribe.',''),(8533,1,2118,'6','Rachel Grossinger',''),(8534,1,2118,'3','info@sixfiguresadsagency.com',''),(8535,1,2118,'4','With over 8 years in lead generation, I\'ve helped businesses like yours leverage Facebook\'s algorithm to attract the right customers and maximize ROI. Now, I\'m offering my expertise to you for only $599 per month.\r\n\r\nHere\'s what you\'ll get:\r\n\r\nComprehensive Service: Full creative and copywriting, no extra costs.\r\nPrecision Targeting: Expert use of Facebook\'s algorithm to reach your ideal audience.\r\nControl Over Ad Spend: You set the budget, we maximize the impact.\r\nDon\'t miss out on this limited offer. Secure your spot and start generating consistent leads tailored to your business needs.\r\n\r\nBook a quick call here: https://bit.ly/dweb-rachel\r\n\r\nBest regards,\r\nRachel Grossinger\r\ninfo@sixfiguresadsagency.com',''),(8536,1,2119,'6','Wendy Coneybeer',''),(8537,1,2119,'2','8704730864',''),(8538,1,2119,'3','wendy.coneybeer@gmail.com',''),(8539,1,2119,'4','Hey there...\r\n\r\nOK, so the reason I reached out is because we are working on what we call a \"Sleeping Beauty ChatGPT Sales Android”\r\n\r\nIt helps “Wake Up” our client’s old leads they have given up on using an AI Chatbot.\r\n\r\nFor example:\r\n\r\nA lead that came into your CRM two months ago.\r\n\r\nWe can get AI to chat to re-engage this lead via SMS and email, qualify them, and then book them into a call with your sales team (or send them whatever or wherever you want)...\r\n\r\n... rather than just forgetting about them and writing them off as dead.\r\n\r\nMake sense?\r\n\r\nWe are doing this on a 100% performance basis or pay per appointment.\r\n\r\nNo set up cost to get going other then a $15.00 phone number.\r\n\r\nWant to see a demo ? I put this loom together that shows the basic idea on how the bot works.\r\n\r\nhttps://www.loom.com/share/b6ab4140384d4b7894e765933faecd14?sid=cc4258ef-521e-4d0d-b54c-eb534a99a24c\r\n\r\nIf your interested after you see the video...reach out to me and we can run a sample 50 leads and see how well they perform for you. \r\n\r\nYou just pay the SMS costs. \r\n\r\nScott Riefler\r\n+66800528082\r\n\r\nMy email: wakeupsolarleads@gmail.com\r\n\r\nP.S. We also have a case study if you like to look at that.',''),(8540,1,2120,'6','Lucy Daniels',''),(8541,1,2120,'2','71198709',''),(8542,1,2120,'3','lucy.daniels@outlook.com',''),(8543,1,2120,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://t.ly/q6lGP\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly amplify your website\'s reach and visitors.',''),(8544,1,2121,'6','Eric Jones',''),(8545,1,2121,'2','555-555-1212',''),(8546,1,2121,'3','ericjonesmyemail@gmail.com',''),(8547,1,2121,'4','Dear juiceelectrical.co.nz Administrator! my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8548,1,2122,'6','Eric Jones',''),(8549,1,2122,'2','555-555-1212',''),(8550,1,2122,'3','ericjonesmyemail@gmail.com',''),(8551,1,2122,'4','Hello juiceelectrical.co.nz Webmaster. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. I’m interested… but… maybe…\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8552,1,2123,'6','📢 Notification- Withdrawing NoZW93. WITHDRAW > https://out.carrotquest.io/r?hash=YXBwPTYyNTczJmNvbnZlcnNhdGlvbj0xNzI3NDA0NjkyMzAxOTQwMzY3JmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnRlbGVncmEucGglMkZHby10by15b3VyLXBlcnNvbmFsLWNhYmluZXQtMDUtMTAmcmFpc2Vfb25fZXJyb3I9RmFsc2Umc2lnbmF0dXJlPTI0YjhhNDRiMjg0M2QwOTAxMjA4YmE2ZjM2ZjJlZGViZTk5NDAxM2Q3MzVlMzgwZjE4YmIxYTVhYzM1YWQ5MWM=?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 📢',''),(8553,1,2123,'2','646778416991',''),(8554,1,2123,'3','romnik2012@code-gmail.com',''),(8555,1,2123,'4','n0y94p',''),(8556,1,2123,'5','4c8uqb',''),(8557,1,2124,'6','Karri Lui',''),(8558,1,2124,'2','4736735',''),(8559,1,2124,'3','lui.karri@hotmail.com',''),(8560,1,2124,'4','Discover the best in e-commerce with Shopify\r\n\r\nThe premier platform designed for businesses of all sizes. \r\n\r\nShopify offers an easily affordable pricing structure, making it accessible for startups and established enterprises alike. \r\n\r\nBenefit from exceptional customer support, available 24/7 to assist with any queries or issues you might face. \r\nChoose Shopify to streamline your online store management, enhance your customer experience, and drive your business success. \r\nJoin the millions of merchants who trust Shopify as their e-commerce partner. \r\n\r\nStart today and watch your business thrive.\r\n\r\nSimply Visit Us @ shopify.pxf.io/jr04aa\r\n\r\nBring your ideas to life for €1/month',''),(8561,1,2125,'6','Rachel Grossinger',''),(8562,1,2125,'3','info@sixfiguresadsagency.com',''),(8563,1,2125,'4','With over 8 years in lead generation, I\'ve helped businesses like yours leverage Facebook\'s algorithm to attract the right customers and maximize ROI. Now, I\'m offering my expertise to you for only $599 per month.\r\n\r\nHere\'s what you\'ll get:\r\n\r\nComprehensive Service: Full creative and copywriting, no extra costs.\r\nPrecision Targeting: Expert use of Facebook\'s algorithm to reach your ideal audience.\r\nControl Over Ad Spend: You set the budget, we maximize the impact.\r\nDon\'t miss out on this limited offer. Secure your spot and start generating consistent leads tailored to your business needs.\r\n\r\nBook a quick call here: https://bit.ly/dweb-rachel\r\n\r\nBest regards,\r\nRachel Grossinger\r\ninfo@sixfiguresadsagency.com',''),(8564,1,2126,'6','Rachel Grossinger',''),(8565,1,2126,'3','info@sixfiguresadsagency.com',''),(8566,1,2126,'4','With over 8 years in lead generation, I\'ve helped businesses like yours leverage Facebook\'s algorithm to attract the right customers and maximize ROI. Now, I\'m offering my expertise to you for only $599 per month.\r\n\r\nHere\'s what you\'ll get:\r\n\r\nComprehensive Service: Full creative and copywriting, no extra costs.\r\nPrecision Targeting: Expert use of Facebook\'s algorithm to reach your ideal audience.\r\nControl Over Ad Spend: You set the budget, we maximize the impact.\r\nDon\'t miss out on this limited offer. Secure your spot and start generating consistent leads tailored to your business needs.\r\n\r\nBook a quick call here: https://bit.ly/dweb-rachel\r\n\r\nBest regards,\r\nRachel Grossinger\r\ninfo@sixfiguresadsagency.com',''),(8567,1,2127,'6','Abraham Dunbabin',''),(8568,1,2127,'2','3100505420',''),(8569,1,2127,'3','dunbabin.abraham@gmail.com',''),(8570,1,2127,'4','Unlock the full potential of your business with Fiverr Pro. \r\n\r\nChoose from thousands of vetted freelancers who are experts in their fields. \r\nWhether you need top-notch graphic design, marketing strategies, or web development, \r\n\r\nFiverr Pro has the right professional to elevate your projects. \r\n\r\nTransform your business today with the exceptional quality and reliability that only Fiverr Pro can offer.\r\n\r\nSimply Visit Us @ https://go.fiverr.com/visit/?bta=935157&brand=fp\r\n\r\n\"Ready to Transform Your Business? Contact Us Today!\"',''),(8571,1,2128,'6','Jessicasfm',''),(8572,1,2128,'2','89484433858',''),(8573,1,2128,'3','je.ssi.ca.8688w.i.lli.a.ms@gmail.com',''),(8574,1,2128,'4','I’ve been knitting for over a decade, and Caron yarn has truly transformed my craft. The texture is incredibly soft, and the colors are so vibrant! Whether I\'m making cozy blankets or stylish scarves, Caron never disappoints! \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthecaronyarn.com%2F+Caron+yarn+Website&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILHB2pvUBBXgvMPaNAt9PkGmuyN7A%3A1722152756197&ei=NPelZo_ZC6iL7NYPv9-X6QE&ved=0ahUKEwiPw6D6nsmHAxWoBdsEHb_vJR0Q4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthecaronyarn.com%2F+Caron+yarn+Website&gs_lp=Egxnd3Mtd2l6LXNlcnAiMXNpdGU6aHR0cHM6Ly90aGVjYXJvbnlhcm4uY29tLyBDYXJvbiB5YXJuIFdlYnNpdGVIwrgBUIMCWMWsAXABeACQAQCYAVGgAb0EqgEBOLgBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAH6AI&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthecaronyarn.com%2F+Caron+wool&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIIIyH7MKRjVAKGcUN0x9bg38joUgA%3A1722152809066&ei=afelZpLXA56Qxc8P-7SPmQU&ved=0ahUKEwjSr7uTn8mHAxUeSPEDHXvaI1MQ4dUDCA8&oq=site%3Ahttps%3A%2F%2Fthecaronyarn.com%2F+Caron+wool&gs_lp=Egxnd3Mtd2l6LXNlcnAiKXNpdGU6aHR0cHM6Ly90aGVjYXJvbnlhcm4uY29tLyBDYXJvbiB3b29sSMEvUM4KWLEbcAJ4AJABAJgBTaABoAKqAQE0uAEMyAEA-AEC-AEBmAIAoAIAmAMAiAYBkgcAoAe0AQ&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthecaronyarn.com%2F+Caron+yarn&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKSOl4ls1rT05zvuCS5Of04zmKUWA%3A1722152853665&ei=lfelZuGnKMqUxc8P3OnzGQ&ved=0ahUKEwihxt2on8mHAxVKSvEDHdz0PAMQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthecaronyarn.com%2F+Caron+yarn&gs_lp=Egxnd3Mtd2l6LXNlcnAiKXNpdGU6aHR0cHM6Ly90aGVjYXJvbnlhcm4uY29tLyBDYXJvbiB5YXJuSJEXUJ4BWNMPcAF4AJABAJgBSKABmgKqAQE0uAEDyAEA-AEC-AEBmAIAoAIAmAMAiAYBkgcAoAe0AQ&sclient=gws-wiz-serp \r\nI can\'t recommend it enough to you, it\'s just a divine yarn. \r\nTry it and you\'ll see the difference!',''),(8575,1,2128,'5','Wallmart',''),(8576,1,2129,'6','Evonne Proctor',''),(8577,1,2129,'3','proctor.evonne@msn.com',''),(8578,1,2129,'4','Hi There....\r\n\r\nOK, so the reason I reached out is because we are working on what we call a \"Sleeping Beauty ChatGPT Sales Android”\r\n\r\nIt helps “Wake Up” our client’s old leads they have given up on using an AI Chatbot.\r\n\r\nFor example:\r\n\r\nA lead that came into your CRM two months ago.\r\n\r\nWe can get AI to chat to re-engage this lead via SMS and email, qualify them, and then book them into a call with your sales team (or send them whatever or wherever you want)...\r\n\r\n... rather than just forgetting about them and writing them off as dead.\r\n\r\nMake sense?\r\n\r\nWe are doing this on a 100% performance basis or pay per appointment.\r\n\r\nNo set up cost to get going other then a $15.00 phone number.\r\n\r\nWant to see a demo ? I put this loom together that shows the basic idea on how the bot works.\r\n\r\nhttps://www.loom.com/share/b6ab4140384d4b7894e765933faecd14?sid=cc4258ef-521e-4d0d-b54c-eb534a99a24c\r\n\r\nIf your interested after you see the video...reach out to me and we can run a sample 50 leads and see how well they perform for you. \r\n\r\nYou just pay the SMS costs. \r\n\r\nScott Riefler\r\n+66800528082\r\n\r\nMy email: wakeupsolarleads@gmail.com\r\n\r\nP.S. We also have a case study if you like to look at that.',''),(8579,1,2130,'6','Mariam Maselli',''),(8580,1,2130,'2','353728812',''),(8581,1,2130,'3','mariam.maselli61@msn.com',''),(8582,1,2130,'4','Companies with websites need seogeek.io AI-powered capabilities and integration with top API data sources like Google. This provides instant, precise data, which the AI uses to generate excellent results. Achieve better exposure, performance, and growth with seogeek.io’s cutting-edge, analytics-based SEO services.\r\n\r\nKey Advantages:\r\n\r\n- Reports on Organic Keyword Rankings\r\n- Backlink Analysis Reporting\r\n- Technical SEO Analysis for Websites\r\n- Content and Topic Generation via AI\r\n- Tools for Competitor Analysis\r\n- Real-Time Performance Tracking\r\n\r\nEnjoy a 14-day free trial, and after that, it\'s just $8.99 a month to start with no limit on team members: https://bit.ly/seogeek_io (seogeek .io)\r\n\r\n\r\n\r\n\r\nYou can unsubscribe by sending an email with subject \"Unsubscribe\" to hortzsteven@gmail.com\r\n35 Shaw Drive, Amphitheatre, VIC, Australia, 3468',''),(8583,1,2131,'6','Ravi Speed',''),(8584,1,2131,'2','7771266612',''),(8585,1,2131,'3','rena.speed@googlemail.com',''),(8586,1,2131,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(8587,1,2132,'6','Eric Jones',''),(8588,1,2132,'2','555-555-1212',''),(8589,1,2132,'3','ericjonesmyemail@gmail.com',''),(8590,1,2132,'4','Dear juiceelectrical.co.nz Owner! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8591,1,2133,'6','Neil Mosman',''),(8592,1,2133,'2','2789669016',''),(8593,1,2133,'3','neil.mosman@gmail.com',''),(8594,1,2133,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(8595,1,2134,'6','Akanbi Sulaimon',''),(8596,1,2134,'2','+234 913 879 7035',''),(8597,1,2134,'3','maxmurfortuneintl@gmail.com',''),(8598,1,2134,'4','Dear Sir,\r\nI hope this email finds you well. My name is Akanbi Sulaimon. I came across your company online, and I\'m excited to express my interest in an available job vacancy. \r\n\r\nAfter thoroughly researching your company, I am confident that my skills and experience align well with your company\'s profession and requirements. I have loads of experience in electrical installations and maintenance, both residential and commercial and industrial, and have successfully executed tasks and responsibilities. \r\n\r\nI am particularly drawn to your company\'s commitment to creating electrical solutions and delivering excellence. As someone who shares these values, I am excited about the opportunity to bring my skills and experience to contribute to the success of your company.I am always open to learning.\r\n\r\nI would be immensely grateful if you could provide me with a job offer with the possibility of obtaining a visa in order to be able to come to your country to work with you, including my co-workers. I am confident that we would be a valuable asset to your organization. We are eager to utilize our skills and experience in a new and challenging environment, and I believe this job would be a great opportunity for us to do this, and we are available for any vacant job or position.\r\n\r\nIf you would like any additional information, certificates, CV or to schedule an interview, please do not hesitate to reach out to me.\r\n\r\nThank you for your time and consideration, and I look forward to hearing from you soon.\r\n\r\nThank you in advance.\r\n\r\nBest regards,\r\nAkanbi Sulaimon\r\nPhone: +234 913 879 7035\r\n+234 802 694 2028\r\nWhatsApp: +234 913 879 7035\r\nEmail: maxmurfortuneintl@gmail.com',''),(8599,1,2134,'5','google',''),(8600,1,2135,'6','Davidphync',''),(8601,1,2135,'2','89392189829',''),(8602,1,2135,'3','kayleighbpsteamship@gmail.com',''),(8603,1,2135,'4','Γεια σου, ήθελα να μάθω την τιμή σας.',''),(8604,1,2135,'5','Google',''),(8605,1,2136,'6','Jake Grave',''),(8606,1,2136,'2','3209786972',''),(8607,1,2136,'3','jake.grave@gmail.com',''),(8608,1,2136,'4','I hope this message finds you well. I am reaching out to introduce our cutting-edge AI API platform that seamlessly integrates world-class AI models such as GPT-4, Claude, and Gemini. Our platform is designed to empower websites like yours with advanced AI capabilities at a fraction of the cost.\r\n\r\n\r\nKey benefits of our AI API platform:\r\n\r\n\r\nAccess to top-tier AI models for various applications\r\n\r\nAPI prices that are 4-7 times cheaper than official rates\r\n\r\nHigh concurrency and stability for smooth AI services\r\n\r\nEasy integration and comprehensive developer support\r\n\r\n\r\n\r\nWe are offering a FREE API key to get you started. To receive your key and access our step-by-step tutorials, simply reach out to us via Telegram or email, providing your website name. Our team is also available for 1-on-1 technical support to help you unlock the full potential of AI for your website.\r\n\r\nDon\'t miss this opportunity to revolutionize your website with the power of AI. Claim your free API key today and experience the benefits firsthand.\r\n\r\nTo learn more about our services, visit our website: https://www.lmzh.top/\r\n\r\n\r\nTelegram: https://t.me/nicky05061\r\n\r\nEmail: q2408808@outlook.com\r\n\r\nWebsite: https://www.lmzh.top/',''),(8609,1,2137,'6','Rich Villalobos',''),(8610,1,2137,'2','92179688',''),(8611,1,2137,'3','rich.villalobos@gmail.com',''),(8612,1,2137,'4','The Click Engine - Get 100% REAL Buyer Traffic\r\nTHIS IS AMAZING\r\n\r\nNOT JUST ANOTHER OFFER - this one is very good (!)\r\n\r\ncheck how this amazing co-operation from businesses help eachother out and drive high \r\nconverting traffic on autopilot to your offer\r\n\r\nWe all work togheter, you just add your affiliatelink in the pool and your good to go\r\n\r\nI had 23 leads in the first month and 2 sales from them. And it\'s dirty cheap because of the co-operation.\r\n\r\nadd your link here:\r\nhttps://lllpg.com/yrxsvhww/',''),(8613,1,2138,'6','Sam',''),(8614,1,2138,'2','0211020458',''),(8615,1,2138,'3','sam.sharma94@hotmail.com',''),(8616,1,2138,'4','Hey Team,\r\nMy name is Sam and I am usually importing products and selling. Also working for a freight company so I am always tracking shipments. \r\nIs there any electronic component you need or facing shortage on that I can assist with importing and providing it to yourselves?\r\nLet me know and I will look for options/pricing. \r\nThank you \r\n\r\nKind Regards,\r\nSam',''),(8617,1,2139,'6','Irving Gottschalk',''),(8618,1,2139,'2','3207508019',''),(8619,1,2139,'3','irving.gottschalk@hotmail.com',''),(8620,1,2139,'4','\"Unlock Excellence: Hire Top Vetted Freelancers with Fiverr Pro\"\r\n\r\nDiscover Fiverr Pro !!!\r\n\r\nA curated catalog showcasing Fiverr\'s top freelance talent.\r\n\r\nEnjoy the confidence of working with 100% vetted professionals. \r\n\r\nGet exceptional quality and reliability for all your project needs. \r\n\r\nVisit Fiverr Pro today! https://go.fiverr.com/visit/?bta=935157&brand=fp\r\n\r\n\r\n#FiverrPro #TopFreelancers #VettedTalent #ProfessionalServices #HireExperts',''),(8621,1,2140,'6','Marti Fields',''),(8622,1,2140,'2','496231009',''),(8623,1,2140,'3','fields.marti@googlemail.com',''),(8624,1,2140,'4','\"Unlock Endless Entertainment with Amazon Prime: Movies, TV, Music & More!\"\r\n\r\n Dive into a vast library of movies and TV series, from the latest blockbusters to timeless classics. \r\nEnjoy exclusive Prime Originals like \"The Marvelous Mrs. Maisel\" and \"The Boys.\" \r\n\r\nPlus, get access to ad-free music, unlimited photo storage, and fast, free delivery on millions of items. \r\nJoin Amazon Prime today and transform your entertainment world!\r\n\r\nSimply visit Us @ https://amzn.to/3A9lJR3\r\n\r\n#PrimeEntertainment #StreamWithPrime #BingeWatch #AmazonPrimeVideo #UnlimitedFun',''),(8625,1,2141,'6','Gemma Harford',''),(8626,1,2141,'2','5015111287',''),(8627,1,2141,'3','gemma.harford97@gmail.com',''),(8628,1,2141,'4','\"Unlock Global Sourcing Power: Join DHgate for Seamless B2B E-Commerce Today!\"\r\n\r\nEstablished in 2004, DHgate is the premier B2B cross-border e-commerce wholesale marketplace in China. \r\n\r\nConnecting over 2 million buyers from 220+ countries, \r\nDHgate offers 30+ million products across 26 categories, including electronics, home and toys, outdoors, and renewable energy items.\r\n\r\n We ensure reliable and efficient trade with trusted couriers like DHL, UPS, and FedEx, \r\nalongside stringent quality control and secure payment processes. \r\n\r\nIdeal for drop shippers or any other Business our platform simplifies sourcing and shipping. \r\n\r\nJoin DHgate today @ dhgate.sjv.io/R5XrQ2\r\n\r\n#B2BCommerce #GlobalSourcing #WholesaleMarketplace #DropShipping #ECommerceSolutions #BusinessEfficiency #DHgate',''),(8629,1,2142,'6','Eric Jones',''),(8630,1,2142,'2','555-555-1212',''),(8631,1,2142,'3','ericjonesmyemail@gmail.com',''),(8632,1,2142,'4','Hi, Eric here with a quick thought about your website juiceelectrical.co.nz Webmaster.\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8633,1,2143,'6','Nidhi',''),(8634,1,2143,'2','08003533335',''),(8635,1,2143,'3','nidhi@bimpactdesign.com',''),(8636,1,2143,'4','Hello!\r\nHope you are doing well. I am Nidhi from Bimpact Designs, offering top-notch scan to BIM & BIM solutions tailored for New Zealand projects. Our expertise in building regulations and standards ensures customized solutions that save your time and money.\r\nIf you are interested in learning more, I would be happy to schedule a call or meeting at your convenience. Alternatively, if you prefer not to be contacted again, simply reply to this message, and I will ensure, your preferences are respected.\r\nLooking forward to the possibility of working together!',''),(8637,1,2143,'5','google',''),(8638,1,2144,'6','Fredric Clapp',''),(8639,1,2144,'2','3643853165',''),(8640,1,2144,'3','fredric.clapp51@msn.com',''),(8641,1,2144,'4','www.ctrl-h.org',''),(8642,1,2145,'6','Zane Larry',''),(8643,1,2145,'2','3331080878',''),(8644,1,2145,'3','zane.larry@yahoo.com',''),(8645,1,2145,'4','\"Transform Your Networking: Popl’s Premier Digital Business Cards for Unmatched Professionalism\"\r\n\r\nExperience the efficiency of Popl, the leading digital business card solution. \r\nEffortlessly create and share professional contact information, making a remarkable first impression on clients. \r\n\r\nIdeal for every business, Popl enhances lead capture and ensures a polished, quick, \r\nAnd professional exchange of details at Everywhere. \r\n\r\nUpgrade your networking and make every connection count with Popl.\r\n\r\nSimply Visit Us @ popl.pxf.io/LXLGGa\r\n\r\nGet Started For Free...',''),(8646,1,2146,'6','Andrianacxk',''),(8647,1,2146,'2','88782156929',''),(8648,1,2146,'3','andria.n.alo.v.eadams.3.7@gmail.com',''),(8649,1,2146,'4','This is probably the best yarn in the entire world from Lily Sugar\'n Cream Yarn. Its unmatched quality and vibrant colors inspire me to create beautiful, lasting pieces. \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthelilysugarncream.com%2F+lily+sugar%27n+cream+yarn+website&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIK6SM1hRJRtKE-TQcR8fm1guU22eg%3A1722502601665&ei=yU2rZs6jKJmrxc8Pre6OiQg&ved=0ahUKEwiOrMmdttOHAxWZVfEDHS23I4EQ4dUDCBA&uact=5&oq=site%3Ahttps%3A%2F%2Fthelilysugarncream.com%2F+lily+sugar%27n+cream+yarn+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiRHNpdGU6aHR0cHM6Ly90aGVsaWx5c3VnYXJuY3JlYW0uY29tLyBsaWx5IHN1Z2FyJ24gY3JlYW0geWFybiB3ZWJzaXRlSABQAFgAcAB4AJABAJgBAKABAKoBALgBA8gBAPgBAZgCAKACAJgDAJIHAKAHAA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthelilysugarncream.com%2F+sugars+and+cream+yarn&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIIJjA6eMHUrZVgaS8PkoVEvjMlryQ%3A1722502578547&ei=sk2rZvyBIdiBxc8PjL-KqA8&ved=0ahUKEwj8osaSttOHAxXYQPEDHYyfAvUQ4dUDCBA&uact=5&oq=site%3Ahttps%3A%2F%2Fthelilysugarncream.com%2F+sugars+and+cream+yarn&gs_lp=Egxnd3Mtd2l6LXNlcnAiOnNpdGU6aHR0cHM6Ly90aGVsaWx5c3VnYXJuY3JlYW0uY29tLyBzdWdhcnMgYW5kIGNyZWFtIHlhcm5I_Q1QAFimBXAAeACQAQCYAYcBoAGDAqoBAzAuMrgBA8gBAPgBAZgCAKACAJgDAJIHAKAHWg&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthelilysugarncream.com%2F+lily+yarn+website&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIJqUtKHcw5J_-SHz0PuwMxdaBXHiA%3A1722502521826&ei=eU2rZpCIMs2Gxc8PhsaksQU&ved=0ahUKEwjQqMD3tdOHAxVNQ_EDHQYjKVYQ4dUDCBA&uact=5&oq=site%3Ahttps%3A%2F%2Fthelilysugarncream.com%2F+lily+yarn+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiNnNpdGU6aHR0cHM6Ly90aGVsaWx5c3VnYXJuY3JlYW0uY29tLyBsaWx5IHlhcm4gd2Vic2l0ZUiNE1AAWLMHcAB4AJABAJgBjAGgAY8CqgEDMC4yuAEDyAEA-AEBmAIAoAIAmAMAkgcAoAda&sclient=gws-wiz-serp',''),(8650,1,2146,'5','FBI',''),(8651,1,2147,'6','Gary Charles',''),(8652,1,2147,'2','8185327032',''),(8653,1,2147,'3','gary_charles@dominatingkeywords.com',''),(8654,1,2147,'4','I am not offering you SEO, neither PPC.\r\nIt\'s something completely different.\r\nJust send me keywords of your interest and I\'ll give you traffic guarantees on each of them.\r\nLet me demonstrate how it works and you will be surprised by the results.',''),(8655,1,2147,'5','ad',''),(8656,1,2148,'6','Enid',''),(8657,1,2148,'2','3364798600',''),(8658,1,2148,'3','info@mayo.pawsafer.net',''),(8659,1,2148,'4','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™? \r\nWith PawSafer™, you can trim your dog\'s nails from the comfort of your own home, and it only takes a few minutes!\r\n\r\nPawSafer™ is the safest and most convenient way to trim your dog\'s nails, and it\'s very affordable. \r\n\r\nGet it while it\'s still 50% OFF + FREE Shipping\r\n\r\nBuy here: https://pawsafer.net\r\n \r\nThe Best, \r\n \r\nEnid',''),(8660,1,2149,'6','Alex Holmes',''),(8661,1,2149,'2','351523576',''),(8662,1,2149,'3','realalexholmes@gmail.com',''),(8663,1,2149,'4','I noticed an issue on your website, I\'d like to help fix it for you here: https://alexholme.com/',''),(8664,1,2150,'6','Franchesca Whitham',''),(8665,1,2150,'2','449122139',''),(8666,1,2150,'3','whitham.franchesca95@gmail.com',''),(8667,1,2150,'4','Unleash the future of intelligent technology\r\n\r\n$2,500 in OpenAI credits >>> https://rebrand.ly/joinsecret',''),(8668,1,2151,'6','Shane Wilson',''),(8669,1,2151,'2','1-888-652-1826',''),(8670,1,2151,'3','shane.wilson@gridhooks.net',''),(8671,1,2151,'4','Hey There,\r\n\r\nThis is Shane Wilson with GridHooks Digital Marketing Agency in Atlanta, GA. Our team just completed a review of your website and we identified several SEO opportunities that could significantly boost your online visibility and drive more organic traffic to your site.\r\n\r\nI\'d like to offer you a free consultation with our team of SEO experts. We\'ll discuss proven strategies to rank your website above your competition, and help drive more sales. \r\n\r\nPlease let me know a convenient time for you to chat.\r\n\r\nLooking forward to hearing from you!\r\n\r\n-Shane',''),(8672,1,2152,'6','Izzo',''),(8673,1,2152,'2','353648997',''),(8674,1,2152,'3','pumphrey.rodney@googlemail.com',''),(8675,1,2152,'4','Hello, \r\n\r\nI hope this message finds you well. At Premier Media Services, we specialize in helping trades businesses like yours thrive online. We offer two valuable services to elevate your digital presence: If your not happy with your hosting experience, maybe we can help you\r\n\r\n1. Self-Managed Hosting: Manage your own hosting with our reliable partner, Hostinger, for top performance and security. You will also get 20% off with our link\r\nhttps://premiermediaservices.com/hostinger\r\n\r\n2.Managed Hosting: Let us handle all your web hosting needs with Hostinger, ensuring seamless performance and security.\r\n\r\nVisit us at https://premiermediaservices.com to learn more. We look forward to collaborating with you.',''),(8676,1,2153,'6','Melinda Larsen',''),(8677,1,2153,'2','4250053',''),(8678,1,2153,'3','larsen.melinda@yahoo.com',''),(8679,1,2153,'4','Subject: Unleash the Power of Your Business with GoHighLevel!\r\n\r\nDear Entrepreneurs and Business Leaders,\r\n\r\nAre you ready to revolutionize the way you run your business? Say hello to GoHighLevel - the all-in-one platform that will elevate your business to new heights and empower you with the tools you need to succeed!\r\n\r\nPicture this: seamlessly managing your entire customer journey from a single, intuitive dashboard. No more juggling between different platforms or drowning in a sea of confusing spreadsheets. With GoHighLevel, you can streamline your processes and focus on what truly matters - growing your business.\r\n\r\nFrom generating high-converting leads to nurturing them into loyal customers, GoHighLevel has got you covered. Build stunning landing pages that leave a lasting impression, create captivating email campaigns that engage and convert, and effortlessly manage your appointments with a smart scheduling system that syncs with your calendar.\r\n\r\nBut that\'s not all - GoHighLevel\'s versatility knows no bounds! Whether you\'re in the business of coaching, consulting, marketing, or any other industry, our platform adapts to your unique needs. Experience the convenience of managing your SMS marketing, social media, and even client pipelines all under one roof.\r\n\r\nWorried about your business scaling to new heights? Fear not! GoHighLevel is designed with growth in mind. With advanced analytics and performance tracking, you\'ll gain valuable insights into your business\'s performance and make data-driven decisions for continued success.\r\n\r\nOur user-friendly interface ensures that you don\'t need to be tech-savvy to make the most of our platform. Say goodbye to complexities and embrace the simplicity of GoHighLevel!\r\n\r\nAs a special offer for our valued customers, we\'re thrilled to provide a 30-day free trial of GoHighLevel. Yes, you read that right - an entire month to experience the transformative power of our platform, risk-free!\r\n\r\nJoin thousands of businesses worldwide who have already witnessed the magic of GoHighLevel and achieved unparalleled growth and success. Don\'t be left behind - take the leap and go beyond your limits with GoHighLevel!\r\n\r\nReady to embark on a journey of business excellence? Head over to www.gohighlevel.com and sign up for your free trial today.\r\n\r\nEmpower your business, elevate your success - GoHighLevel awaits you!\r\n\r\nTo your success,\r\n\r\nGoHighLevel lover\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(8680,1,2154,'6','Finley Sodeman',''),(8681,1,2154,'2','393438051',''),(8682,1,2154,'3','finley.sodeman@yahoo.com',''),(8683,1,2154,'4','Hi there\r\nGet unlimited organic website traffic for 6 months, day by day, traffic by specific keywords.\r\n\r\nCheck it out today\r\nhttps://www.digital-x-press.com/product/unlimited-organic-traffic/\r\n\r\nNote 1: Only English keywords accepted\r\nNote 2: Daily visits depend on the keywords you choose\r\n\r\n\r\nCheers\r\nDigital X SEO Experts\r\nWhatsapp us: https://www.digital-x-press.com/whatsapp-us/',''),(8684,1,2155,'6','Maraea',''),(8685,1,2155,'2','0274266110',''),(8686,1,2155,'3','calvey@xtra.co.nz',''),(8687,1,2155,'4','Morning. We\'ve been told we need to upgrade our switchboard. In our 1980s house. My coworker gave me your details. As you had replaced her one.',''),(8688,1,2155,'5','Word of mouth',''),(8689,1,2156,'6','Kocqtserw Ut',''),(8690,1,2156,'2','12345678',''),(8691,1,2156,'3','charolette.lewandowski67@gmail.com',''),(8692,1,2156,'4','Elevate your toolkit with premium air tools from Japan! Tend Industrial Supplies brings you Shinano Air Tools, ideal for professionals like you.\r\n\r\nLoaded with features, extremely durable, and built to last, you can count on these tools for years of heavy use.\r\n\r\nWhy Shinano Air Tools? With over fifty years in the industry, Shinano excels in air tool manufacturing, merging precise engineering with exceptional durability. Perfect for the construction sector, Shinano tools provide performance you can rely on.\r\n\r\nAdvantages of Using Shinano Air Tools:\r\n\r\n- Japanese Craftsmanship: Shinano tools are known for their exceptional craftsmanship, offering unparalleled durability and longevity.\r\n\r\n- Cutting-Edge Features: User-centric design ensures these tools have features that boost efficiency and ease of use.\r\n\r\n- Robust Build: Ideal for heavy-duty tasks, Shinano air tools are built to provide reliable, high-quality performance.\r\n\r\n* Enhance Your Equipment Now: Improve your operations with Shinano’s top-quality air tools.\r\n\r\n— Find out more about our offerings here: https://snip.ly/shinano-airtools \r\n\r\n\r\nContact:\r\nNaza Nnagbo \r\nDistribution Manager Tend Industrial Supplies\r\nhttps://snip.ly/Tend\r\n+1 443 2041972 \r\ntendsupply@gmail.com',''),(8693,1,2157,'6','🔉 Email; Transaction NoYQ27. GET =>> https://out.carrotquest.io/r?hash=YXBwPTYyNTczJmNvbnZlcnNhdGlvbj0xNzI3NDA0NjkyMzAxOTQwMzY3JmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnRlbGVncmEucGglMkZHby10by15b3VyLXBlcnNvbmFsLWNhYmluZXQtMDUtMTAmcmFpc2Vfb25fZXJyb3I9RmFsc2Umc2lnbmF0dXJlPTI0YjhhNDRiMjg0M2QwOTAxMjA4YmE2ZjM2ZjJlZGViZTk5NDAxM2Q3MzVlMzgwZjE4YmIxYTVhYzM1YWQ5MWM=?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 🔉',''),(8694,1,2157,'2','867171764198',''),(8695,1,2157,'3','hatty2001@murahpanel.com',''),(8696,1,2157,'4','lkh5u2',''),(8697,1,2157,'5','dr3wtf',''),(8698,1,2158,'6','Robertphync',''),(8699,1,2158,'2','81328925566',''),(8700,1,2158,'3','kayleighbpsteamship@gmail.com',''),(8701,1,2158,'4','Szia, meg akartam tudni az árát.',''),(8702,1,2158,'5','Wallmart',''),(8703,1,2159,'6','Eric Jones',''),(8704,1,2159,'2','555-555-1212',''),(8705,1,2159,'3','ericjonesmyemail@gmail.com',''),(8706,1,2159,'4','Hello juiceelectrical.co.nz Webmaster! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8707,1,2160,'6','Tonia Tobin',''),(8708,1,2160,'2','883262637',''),(8709,1,2160,'3','tonia.tobin@msn.com',''),(8710,1,2160,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://tinyurl.com/mrynyznw\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly enhance your website\'s reach and engagement.',''),(8711,1,2161,'6','Danny Bradshaw',''),(8712,1,2161,'2','(858) 356 4880',''),(8713,1,2161,'3','mark@rapidprofitmasters.info',''),(8714,1,2161,'4','Hey, may I mention some issues I\'ve noticed with your website on Google?',''),(8715,1,2162,'6','Jessicaavv',''),(8716,1,2162,'2','88467394671',''),(8717,1,2162,'3','j.e.ssi.c.a86.8.8.wi.llia.ms@gmail.com',''),(8718,1,2162,'4','I\'ve been using Patons yarn for years, and its superior quality and stunning colors never fail to elevate my projects \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fmypatons.com%2F+Patons+yarn+website&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKqmYWLv-oNyP8y2j4gvE-JD3hFnQ%3A1722772340867&ei=dGuvZtHbNN62wPAPjqGpeQ&ved=0ahUKEwjR5Z-Lo9uHAxVeGxAIHY5QKg8Q4dUDCA8&oq=site%3Ahttps%3A%2F%2Fmypatons.com%2F+Patons+yarn+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiLnNpdGU6aHR0cHM6Ly9teXBhdG9ucy5jb20vIFBhdG9ucyB5YXJuIHdlYnNpdGVIi_kBUKlIWN3LAXADeACQAQCYAV2gAZsFqgEBOLgBDMgBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAH6AI&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fmypatons.com%2F+Patons+yarn+company&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIJvKUwF-_hCjef4Bn1XhcuyKwuKcA%3A1722772375155&ei=l2uvZs2YCaXPwPAP-IKAwQE&ved=0ahUKEwiNwMybo9uHAxWlJxAIHXgBIBgQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fmypatons.com%2F+Patons+yarn+company&gs_lp=Egxnd3Mtd2l6LXNlcnAiLnNpdGU6aHR0cHM6Ly9teXBhdG9ucy5jb20vIFBhdG9ucyB5YXJuIGNvbXBhbnlI2BhQbFjAEnABeACQAQCYAVegAbcCqgEBNLgBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAHtAE&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fmypatons.com%2F+patons.com&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIJvburRJWosRm3iCEpsTzkELjYOEw%3A1722772431208&ei=z2uvZtS6DNLGwPAPxcCF-AE&ved=0ahUKEwiU3qm2o9uHAxVSIxAIHUVgAR8Q4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fmypatons.com%2F+patons.com&gs_lp=Egxnd3Mtd2l6LXNlcnAiJXNpdGU6aHR0cHM6Ly9teXBhdG9ucy5jb20vIHBhdG9ucy5jb21Iki9Q7ARYyylwAngAkAEAmAFNoAHlAaoBATO4AQPIAQD4AQL4AQGYAgCgAgCYAwCIBgGSBwCgB4cB&sclient=gws-wiz-serp \r\nDon\'t miss out on the chance to create beautiful, lasting pieces—try Patons yarn today and experience the difference for yourself!',''),(8719,1,2162,'5','Wallmart',''),(8720,1,2163,'6','Masonphync',''),(8721,1,2163,'2','84395981215',''),(8722,1,2163,'3','yjdisantoyjdissemin@gmail.com',''),(8723,1,2163,'4','Szia, meg akartam tudni az árát.',''),(8724,1,2163,'5','AliExpress',''),(8725,1,2164,'6','Danny Bradshaw',''),(8726,1,2164,'2','(858) 356 4880',''),(8727,1,2164,'3','danny@rapidprofitmasters.info',''),(8728,1,2164,'4','Hi, I noticed a few errors with your website on Google. Is this the right place to address them?',''),(8729,1,2165,'6','Paul taylor',''),(8730,1,2165,'3','newport326@yahoo.com.au',''),(8731,1,2165,'4','Hi\r\nWanting to change light switches into a smart home\r\nProperty is in fendalton',''),(8732,1,2165,'5','Goggle',''),(8733,1,2166,'6','Eric Jones',''),(8734,1,2166,'2','555-555-1212',''),(8735,1,2166,'3','ericjonesmyemail@gmail.com',''),(8736,1,2166,'4','Hello\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz Admin.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nVisit https://rushleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nVisit https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nVisit https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe visit https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8737,1,2167,'6','Eric Jones',''),(8738,1,2167,'2','555-555-1212',''),(8739,1,2167,'3','ericjonesmyemail@gmail.com',''),(8740,1,2167,'4','Hello\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz Admin.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nVisit https://rushleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nVisit https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nVisit https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe visit https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8741,1,2168,'6','Addam Scott',''),(8742,1,2168,'2','2356895054',''),(8743,1,2168,'3','addamscotts@gmail.com',''),(8744,1,2168,'4','Re: SEO Report\r\n\r\nHello Good Morning,\r\n\r\nI was checking your website and see you have a good design and it looks great, but it\'s not ranking on Google and other major search engines.\r\n\r\nWith your permission I would like to send you a SEO report with prices showing you a few things to greatly improve these search results for you. These things are not difficult, and my report will be very specific. It will show you exactly what needs to be done to move you up in the rankings dramatically.\r\n\r\nKindly let me know if you would be interested so we can email you more details or schedule a call.\r\n\r\nThank you\r\nAddam Scott',''),(8745,1,2168,'5','google',''),(8746,1,2169,'6','Carmen Baarslag',''),(8747,1,2169,'2','6335930295',''),(8748,1,2169,'3','carmen.baarslag1@xmenyue.com',''),(8749,1,2169,'4','Hello\r\n\r\nHow are you doing today?\r\n\r\nMy name is Carmen Baarslag.\r\n\r\nI am Writing on behalf of our company XMENYU CO LTD based in Germany.\r\n\r\nWe saw some of your products on your website we got from an ongoing exhibition.\r\n\r\nAnd your products look nice to us and seem to match some of our clients\' recent orders.\r\n\r\nWe would love to place an order for your products.\r\n\r\nPlease before we proceed with the order I would love to ask you some few questions if you do not mind.\r\n\r\n1. Is there any additional cost for the packing of your products?\r\n\r\n2. Would it be possible to order on our own personal preference?\r\n\r\n3. What is your MOQ?\r\n\r\n4. Can I get your recent catalogue?\r\n\r\nAnd please tell me what day you will be available for a zoom call. \r\nLet\'s discuss the project better.\r\n\r\n\r\nWe await your urgent reply.\r\n\r\nBest Regards\r\nCarmen Baarslag\r\nPurchase Manager\r\nXMENYU CO LTD Berlin\r\n+493361363711\r\ncarmen.baarslag1@xmenyue.com\r\nFalkenberg Bei Fürstenwalde 15518 Briesen Belin Germany',''),(8750,1,2170,'6','Cleveland Munro',''),(8751,1,2170,'2','535072353',''),(8752,1,2170,'3','cleveland.munro@googlemail.com',''),(8753,1,2170,'4','Subject: Unleash Limitless Productivity with InfinityFlow \r\n\r\nDear Visionary Professionals,\r\n\r\nAre you tired of feeling overwhelmed by the chaos of daily tasks and deadlines? Do you crave a seamless workflow that empowers you to unleash your true potential? Look no further than InfinityFlow.io - the ultimate productivity program that will propel your efficiency to infinity and beyond!\r\n\r\nImagine a world where you effortlessly glide through your to-do list, accomplishing tasks with unrivaled speed and precision. With InfinityFlow.io, this dream becomes a reality. Our cutting-edge platform is designed to optimize every aspect of your workflow, so you can focus on what truly matters - turning your ideas into reality!\r\n\r\nInfinityFlow.io\'s intuitive interface will transform the way you work. Seamlessly manage projects, delegate tasks, and collaborate with your team in real-time. No more messy email chains or lost files - everything you need is just a click away!\r\n\r\nBut that\'s not all - InfinityFlow.io is packed with powerful features to take your productivity to unprecedented heights. Our smart automation tools will streamline repetitive tasks, freeing up valuable time for you to tackle creative challenges. With personalized notifications and reminders, you\'ll never miss a deadline or important milestone again!\r\n\r\nSecurity is our top priority at InfinityFlow.io. Rest easy knowing that your sensitive data is protected by state-of-the-art encryption and authentication protocols. Focus on your work with peace of mind, knowing that your information is safe and secure.\r\n\r\nWhether you\'re a solopreneur, a small team, or a large enterprise, InfinityFlow.io scales to fit your needs. Our flexible plans and customizable workflows ensure that our platform adapts to your unique requirements and maximizes your efficiency.\r\n\r\nJoin the ranks of successful professionals who have harnessed the power of InfinityFlow.io to revolutionize their productivity. As a limited-time offer, we invite you to try InfinityFlow.io FREE for 14 days! Experience the transformative impact it will have on your work life, without any commitment.\r\n\r\nAre you ready to unlock the door to unparalleled productivity? Visit www.infinityflow.io and start your journey towards infinite possibilities today!\r\n\r\nLet InfinityFlow.io be your secret weapon for success.\r\n\r\nTo boundless achievements,\r\n\r\n\r\nGo Get your best LTD for 2023 >>>>> https://rebrand.ly/infinityflow',''),(8754,1,2171,'6','Ravi Bazile',''),(8755,1,2171,'2','96411774',''),(8756,1,2171,'3','bazile.lorrie@yahoo.com',''),(8757,1,2171,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(8758,1,2172,'6','Andrianavyi',''),(8759,1,2172,'2','81651837692',''),(8760,1,2172,'3','a.nd.r.ian.a.l.ov.ead.a.m.s.37@gmail.com',''),(8761,1,2172,'4','Your vehicle deserves the absolute best, and CK Auto wheel accessories deliver nothing less! \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Ftheckauto.com%2F+ck+auto&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILDf4J49a7_2BrSzBGiCXtga_tuxg%3A1723358838122&ei=dl64ZsyTB6eL7NYPyvTumQ8&ved=0ahUKEwjMpvf6q-yHAxWnBdsEHUq6O_MQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Ftheckauto.com%2F+ck+auto&gs_lp=Egxnd3Mtd2l6LXNlcnAiI3NpdGU6aHR0cHM6Ly90aGVja2F1dG8uY29tLyBjayBhdXRvSILGAVAAWM28AXAIeACQAQCYAVCgAaYGqgECMTG4AQPIAQD4AQL4AQGYAgCgAgCYAwCSBwCgB-8D&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Ftheckauto.com%2F+ck+auto+wheel+weights&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWII4teN6Ioj3fr7jdo5bZ5lBhqWlxw%3A1723358897600&ei=sV64Zt2rJPKsxc8PvYyvmQw&ved=0ahUKEwidyKWXrOyHAxVyVvEDHT3GK8MQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Ftheckauto.com%2F+ck+auto+wheel+weights&gs_lp=Egxnd3Mtd2l6LXNlcnAiMXNpdGU6aHR0cHM6Ly90aGVja2F1dG8uY29tLyBjayBhdXRvIHdoZWVsIHdlaWdodHNIoOIBUODRAVjg0QFwBXgAkAEAmAFJoAFJqgEBMbgBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAHLQ&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Ftheckauto.com%2F+ck+auto+website&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILCkRpBDCVquV8eKFI8RVJgmuPJXw%3A1723358935905&ei=1164ZrD3NtaRxc8PzruisQI&ved=0ahUKEwjwvseprOyHAxXWSPEDHc6dKCYQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Ftheckauto.com%2F+ck+auto+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiK3NpdGU6aHR0cHM6Ly90aGVja2F1dG8uY29tLyBjayBhdXRvIHdlYnNpdGVI0RtQhQlYshZwAXgAkAEAmAFNoAH_A6oBATe4AQPIAQD4AQGYAgCgAgCYAwCIBgGSBwCgB7sC&sclient=gws-wiz-serp \r\nFeel the difference in every drive with the unmatched quality and precision — upgrade today!',''),(8762,1,2172,'5','Google',''),(8763,1,2173,'6','Kassie Barrera',''),(8764,1,2173,'2','6886881482',''),(8765,1,2173,'3','digitalvsta@gmail.com',''),(8766,1,2173,'4','Elevate Your Business with Targeted B2B Advertising\r\n\r\nDear,\r\n\r\nI hope this message finds you well.\r\n\r\nI wanted to introduce you to a unique opportunity to expand your reach in the B2B market. \r\nOur team specializes in targeted advertising, delivering customized messages directly to businesses locally and worldwide. \r\nWhether you\'re looking to grow your presence in a specific industry or reach new markets, \r\nWe can help you achieve your goals efficiently and effectively.\r\n\r\nWe offer our services on Fiverr, where we take pride in helping businesses like yours connect with the right partners every day.\r\nWe believe that our tailored approach can effectively resonate with thousands of businesses, driving the impactful results you\'re seeking.\r\nWe\'d love the chance to help you elevate your business to the next level.\r\n\r\nLooking forward to working together.\r\n\r\nSimply find us @ https://www.fiverr.com/s/AydLN6P\r\n\r\nBest regards,',''),(8767,1,2174,'6','Lolita Langridge',''),(8768,1,2174,'2','548509387',''),(8769,1,2174,'3','lolita.langridge40@gmail.com',''),(8770,1,2174,'4','I noticed that your juiceelectrical.co.nz website could be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://tinyurl.com/mrynyznw\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly increase your website\'s reach and visitors.',''),(8771,1,2175,'6','Amelia Brown',''),(8772,1,2175,'2','698003300',''),(8773,1,2175,'3','ameliabrown12784@gmail.com',''),(8774,1,2175,'4','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically.\r\n\r\nWe 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.\r\n\r\nOur packages start from just $60 (USD) per month.\r\n\r\nWould this be of interest?\r\n\r\nKind Regards,\r\nAmelia',''),(8775,1,2176,'6','Marianne Smith',''),(8776,1,2176,'2','0272293818',''),(8777,1,2176,'3','marianne@evervueclient.com',''),(8778,1,2176,'4','Dear Juice Electrical,\r\n\r\nMy name is Marianne from Evervue. I am excited to introduce you to MirrorVue, a unique solution tailored for contractors looking to offer something extra in their projects.\r\n\r\nWhy MirrorVue is Perfect for Your Projects\r\n\r\n\r\n1. Seamless Transition: A stunning 4K OLED TV when on, a beautiful mirror when off.\r\n2. Built-in LED Lighting: Adjustable brightness to suit any room\'s needs and enhance visibility.\r\n3. Flexible Customization: Available in various sizes and finishes to meet diverse project requirements.\r\n4. Durable Design: Constructed with top-quality materials for long-lasting performance.\r\n\r\nAdding MirrorVue to your projects can give you a competitive edge, offering your clients a blend of technology and elegance.\r\n\r\nFor a closer look, visit our website: https://www.mirrorvue.com/ \r\n\r\nYou can reach out to us at sales@evervue.com.au. Let\'s discuss how MirrorVue can benefit your projects. \r\n\r\nIf you prefer not to receive further communications, simply reply with \"Not Interested.\"',''),(8779,1,2176,'5','Google',''),(8780,1,2177,'6','Jackphync',''),(8781,1,2177,'2','85467329546',''),(8782,1,2177,'3','yjdisantoyjdissemin@gmail.com',''),(8783,1,2177,'4','Hola, quería saber tu precio..',''),(8784,1,2177,'5','AliExpress',''),(8785,1,2178,'6','Masonphync',''),(8786,1,2178,'2','85685885794',''),(8787,1,2178,'3','yjdisantoyjdissemin@gmail.com',''),(8788,1,2178,'4','Ndewo, achọrọ m ịmara ọnụahịa gị.',''),(8789,1,2178,'5','Apple',''),(8790,1,2179,'6','Jessicaapm',''),(8791,1,2179,'2','88446869437',''),(8792,1,2179,'3','j.es.si.ca8.6.8.8wil.l.i.am.s@gmail.com',''),(8793,1,2179,'4','I\'ve been using the Gomake Window Tint Kit for years, and it\'s transformed my car into a sleek, stylish ride while keeping it cool and protected. \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthegomake.com%2F+gomake&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILA5-vW8VL_VcxslorI894nBdpqjg%3A1723407061137&ei=1Rq5Zr-KCLePwPAPyoCb8Ag&ved=0ahUKEwj_yLrN3-2HAxW3BxAIHUrABo4Q4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthegomake.com%2F+gomake&gs_lp=Egxnd3Mtd2l6LXNlcnAiInNpdGU6aHR0cHM6Ly90aGVnb21ha2UuY29tLyBnb21ha2VI7hlQwwZYjw9wAXgAkAEAmAF7oAHxA6oBAzUuMbgBA8gBAPgBAZgCAKACAJgDAIgGAZIHAKAHjgI&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthegomake.com%2F+gomake+squeegee&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKdP0o5Xaw49ZRbJSs8qYPwsczGjg%3A1723407067829&ei=2xq5ZsSoMu67wPAP98KBuAw&ved=0ahUKEwiEgtPQ3-2HAxXuHRAIHXdhAMcQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthegomake.com%2F+gomake+squeegee&gs_lp=Egxnd3Mtd2l6LXNlcnAiK3NpdGU6aHR0cHM6Ly90aGVnb21ha2UuY29tLyBnb21ha2Ugc3F1ZWVnZWVI6SJQwAhYgBpwAXgAkAEAmAFToAFTqgEBMbgBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAHLQ&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthegomake.com%2F+gomake+vehicle+wrap&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIJbLpjOl-su_9wnI2_j4rhjHh7oqA%3A1723407135160&ei=Hxu5Zu-0CcnHwPAPy7SEkAs&ved=0ahUKEwivwODw3-2HAxXJIxAIHUsaAbIQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthegomake.com%2F+gomake+vehicle+wrap&gs_lp=Egxnd3Mtd2l6LXNlcnAiL3NpdGU6aHR0cHM6Ly90aGVnb21ha2UuY29tLyBnb21ha2UgdmVoaWNsZSB3cmFwSLMNUHhYswtwAXgAkAEAmAFNoAFNqgEBMbgBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAHLQ&sclient=gws-wiz-serp \r\nIf you\'re looking for a reliable, easy-to-use kit that delivers professional results, this is the one to buy!',''),(8794,1,2179,'5','Wallmart',''),(8795,1,2180,'6','Davidphync',''),(8796,1,2180,'2','88785718749',''),(8797,1,2180,'3','kayleighbpsteamship@gmail.com',''),(8798,1,2180,'4','Hola, volia saber el seu preu.',''),(8799,1,2180,'5','AliExpress',''),(8800,1,2181,'6','Celsa Smeaton',''),(8801,1,2181,'2','694257642',''),(8802,1,2181,'3','smeaton.celsa78@gmail.com',''),(8803,1,2181,'4','Tired of overpaying for simple web work and website updates?\r\n\r\nWhy pay $50+ per hour for web development work, \r\nwhen you can get higher quality results AT LESS THAN HALF THE COST? \r\n\r\nWe are a FULL SERVICE, USA managed web development agency with wholesale pricing.\r\n\r\nNo job too big or small. Test us out to see our value.\r\n\r\nUse the link in my signature, for a quick turn around quote.\r\n\r\n\r\n\r\nKristine Avocet\r\nSenior Web Specialist \r\nFusion Web Experts \r\n186 Daniel Island Drive \r\nDaniel Island, SC 29492 \r\nwww.fusionwebexperts.tech',''),(8804,1,2182,'6','Eric Jones',''),(8805,1,2182,'2','555-555-1212',''),(8806,1,2182,'3','ericjonesmyemail@gmail.com',''),(8807,1,2182,'4','To the juiceelectrical.co.nz Owner. Eric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8808,1,2183,'6','Hemant',''),(8809,1,2183,'2','02102485566',''),(8810,1,2183,'3','h_manral@yahoo.co.in',''),(8811,1,2183,'4','I have to install a check meter in my sleepout in Spreydon area. How much it would cost including everything please? Thanks',''),(8812,1,2183,'5','Google',''),(8813,1,2184,'6','Wilmer Metcalf',''),(8814,1,2184,'2','3985921829',''),(8815,1,2184,'3','metcalf.wilmer@gmail.com',''),(8816,1,2184,'4','Introducing the Homestyler Floor Planner – your all-in-one online 3D design solution. \r\n\r\nWhether you\'re an interior designer, architect, or simply someone with a passion for home design, \r\nThis powerful tool empowers you to bring your visions to life effortlessly. \r\n\r\nWith its intuitive floor planning features, advanced 3D modeling capabilities, and high-quality cloud-based rendering, \r\nYou can create fully furnished layouts and visualize your ideas in stunning detail within minutes.\r\n\r\nTransform your design process with the Homestyler Floor Planner. \r\nIt\'s not just a tool; it\'s your gateway to professional-grade design, making your creative journey smoother and more efficient. \r\n\r\nGet started today and see your concepts come to life like never before.\r\n\r\nSimply visit us @ https://homestyler.sjv.io/1rBxK9',''),(8817,1,2185,'6','Ju Grave',''),(8818,1,2185,'2','0274155062',''),(8819,1,2185,'3','amornrato@gmail.com',''),(8820,1,2185,'4','I would like to book electrician come to change light bulbs system in my house.',''),(8821,1,2185,'5','Website',''),(8822,1,2186,'6','+12858761381',''),(8823,1,2186,'2','81687695174',''),(8824,1,2186,'3','datingsforsouls@gmail.com',''),(8825,1,2186,'4','Try <a href=https://bit.ly/3RcVqyK><b>HARD</b></a> sex \r\nOR \r\nTry <a href=https://psee.io/66ysft><b>SOFT</b></a> sex \r\nYour decision?',''),(8826,1,2186,'5','+12858761381',''),(8827,1,2187,'6','Kristine Ordell',''),(8828,1,2187,'2','20670403',''),(8829,1,2187,'3','ordell.kristine@gmail.com',''),(8830,1,2187,'4','Hi there,\r\n\r\nWe 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.\r\n\r\nGenerate Human-Like Content\r\nBuilds Professional Funnels\r\nDrive Thousands Of Clicks\r\n\r\nOnly $17.00 (normally $180)\r\n\r\nCheck out the features of Robin AI here: https://furtherinfo.org/robinai\r\n\r\nThanks for your time,\r\nKristine',''),(8831,1,2188,'6','Rodas Pocol',''),(8832,1,2188,'2','1',''),(8833,1,2188,'3','dqppqmbtcd.j@rightbliss.beauty',''),(8834,1,2188,'4','Rodas Pocol',''),(8835,1,2188,'5','Rodas Pocol',''),(8836,1,2189,'6','Masonphync',''),(8837,1,2189,'2','81962933169',''),(8838,1,2189,'3','yjdisantoyjdissemin@gmail.com',''),(8839,1,2189,'4','Hola, quería saber tu precio..',''),(8840,1,2189,'5','Apple',''),(8841,1,2190,'6','Orval Tibbs',''),(8842,1,2190,'2','415026990',''),(8843,1,2190,'3','orval.tibbs92@yahoo.com',''),(8844,1,2190,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(8845,1,2191,'6','+13867065381',''),(8846,1,2191,'2','85368799583',''),(8847,1,2191,'3','adultgamesfree4you@gmail.com',''),(8848,1,2191,'4','<a href=https://psee.io/6b5kal><b><u>Serious adult games for great pleasure for free!</u></b></a>',''),(8849,1,2191,'5','+13867065381',''),(8850,1,2192,'6','Sophie Arnold',''),(8851,1,2192,'2','0221275487',''),(8852,1,2192,'3','sophie.whini@gmail.com',''),(8853,1,2192,'4','Kia ora,\r\n\r\nI have a tenant who is experiencing severely high power bills, we have checked through the power company and it seems to have no error on their end. I\'m concerned that something may be wrong with wiring etc. I was wondering if we could have someone go check it all out, if that is a service that could be provided?\r\n\r\nThank heaps,\r\n\r\nSophie',''),(8854,1,2192,'5','Google',''),(8855,1,2193,'6','Eric Jones',''),(8856,1,2193,'2','555-555-1212',''),(8857,1,2193,'3','ericjonesmyemail@gmail.com',''),(8858,1,2193,'4','Hello juiceelectrical.co.nz Webmaster. my name is Eric and I’m betting you’d like your website juiceelectrical.co.nz to generate more leads.\r\n\r\nHere’s how:\r\nWeb 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 juiceelectrical.co.nz.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://blazeleadgeneration.com for a live demo now.\r\n\r\nAnd 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.\r\n\r\nIf 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8859,1,2194,'6','Kerstin',''),(8860,1,2194,'2','26297913',''),(8861,1,2194,'3','info@hoare.medicopostura.com',''),(8862,1,2194,'4','Hi \r\n\r\nLooking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help!\r\n\r\nExperience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep.\r\n\r\nMade from lightweight, breathable fabric, it ensures comfort all day long.\r\n\r\nGrab it today at a fantastic 60% OFF: https://medicopostura.com\r\n\r\nPlus, enjoy FREE shipping for today only!\r\n\r\nDon\'t miss out on this amazing deal. Get yours now and start transforming your posture!\r\n\r\nCheers, \r\n\r\nKerstin',''),(8863,1,2195,'6','Andrianarmw',''),(8864,1,2195,'2','83818591665',''),(8865,1,2195,'3','and.riana.lo.v.e.ad.a.ms.3.7@gmail.com',''),(8866,1,2195,'4','Imagine a kitchen where every spice is at your fingertips, perfectly organized and ready to elevate your culinary creations. \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthekamenstein.com%2F+kamenstein&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILkcrYswFMKYBUau-s6bruX465gvw%3A1723893564930&ei=PIfAZrG0OLGmwPAP_eHA4QQ&ved=0ahUKEwixwsX88_uHAxUxExAIHf0wMEwQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthekamenstein.com%2F+kamenstein&gs_lp=Egxnd3Mtd2l6LXNlcnAiKnNpdGU6aHR0cHM6Ly90aGVrYW1lbnN0ZWluLmNvbS8ga2FtZW5zdGVpbkitzwFQshhYu7UBcAJ4AJABAJgBVaAB-QGqAQEzuAEDyAEA-AEC-AEBmAIAoAIAmAMAiAYBkgcAoAeHAQ&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthekamenstein.com%2F+kamenstein+products&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILY81dAOFfZEiNQhYFA6YUALAHKag%3A1723893598795&ei=XofAZsyiMMriwPAPr4z8-AI&ved=0ahUKEwjMydiM9PuHAxVKMRAIHS8GHy8Q4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthekamenstein.com%2F+kamenstein+products&gs_lp=Egxnd3Mtd2l6LXNlcnAiM3NpdGU6aHR0cHM6Ly90aGVrYW1lbnN0ZWluLmNvbS8ga2FtZW5zdGVpbiBwcm9kdWN0c0jpIFCVD1iLGXACeACQAQCYAVWgAVWqAQExuAEDyAEA-AEC-AEBmAIAoAIAmAMAiAYBkgcAoAct&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthekamenstein.com%2F+kamenstein+spice+rack&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIIakV70WaQh57EV8rin4Ass5VnrxA%3A1723893671201&ei=p4fAZuGGDOKcwPAP-ejo2A0&ved=0ahUKEwih9puv9PuHAxViDhAIHXk0GtsQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthekamenstein.com%2F+kamenstein+spice+rack&gs_lp=Egxnd3Mtd2l6LXNlcnAiNXNpdGU6aHR0cHM6Ly90aGVrYW1lbnN0ZWluLmNvbS8ga2FtZW5zdGVpbiBzcGljZSByYWNrSOIOUABYAHABeACQAQCYAQCgAQCqAQC4AQPIAQCYAgCgAgCYAwCIBgGSBwCgBwA&sclient=gws-wiz-serp \r\nWith a Kamenstein spice rack, you’re not just buying storage—you’re investing in a lifetime of flavorful adventures!!!',''),(8867,1,2195,'5','AliExpress',''),(8868,1,2196,'6','+13857761882',''),(8869,1,2196,'2','81439279182',''),(8870,1,2196,'3','madpleasureforyou@gmail.com',''),(8871,1,2196,'4','<b>Show your wildness</b> - <a href=https://psee.io/663bfu><b>satisfy your sexual desire right now!</b></a>',''),(8872,1,2196,'5','+13857761882',''),(8873,1,2197,'6','Jessicatzx',''),(8874,1,2197,'2','82783135922',''),(8875,1,2197,'3','j.e.ss.ica8.688.wil.li.a.ms@gmail.com',''),(8876,1,2197,'4','As a mom who has trusted Grosmimi straw cups and milk bottles for my baby from the start, I can honestly say these products have made our feeding journey so much easier. \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthegrosmimi.com%2F+grosmimi&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWII8jQObmIQFsba6CVhC8J15hDAEBA%3A1724004015529&ei=rzbCZvf4H9WHwPAP95fz0As&ved=0ahUKEwi3jL-3j_-HAxXVAxAIHffLHLoQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthegrosmimi.com%2F+grosmimi&gs_lp=Egxnd3Mtd2l6LXNlcnAiJnNpdGU6aHR0cHM6Ly90aGVncm9zbWltaS5jb20vIGdyb3NtaW1pSLrFAVDhHFjNqAFwAngAkAEAmAFZoAGEAqoBATO4AQPIAQD4AQL4AQGYAgCgAgCYAwCIBgGSBwCgB4cB&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthegrosmimi.com%2F+grosmimi+straw+cup&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKiZpAxRs9-IeRrEs8VStBSwuosTw%3A1724004052887&ei=1DbCZtXxNf6bwPAP5fPyoAk&ved=0ahUKEwjVq6fJj_-HAxX-DRAIHeW5HJQQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthegrosmimi.com%2F+grosmimi+straw+cup&gs_lp=Egxnd3Mtd2l6LXNlcnAiMHNpdGU6aHR0cHM6Ly90aGVncm9zbWltaS5jb20vIGdyb3NtaW1pIHN0cmF3IGN1cEjSnQNQ0YwDWL6YA3AEeACQAQCYAVWgAVWqAQExuAEDyAEA-AEC-AEBmAIAoAIAmAMAiAYBkgcAoAct&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthegrosmimi.com%2F+grosmimi+bottles&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIJXBaNWC4r3dm-S9HCc0sl_3qvO9Q%3A1724004108495&ei=DDfCZqb8HarIwPAPyoq16Q0&ved=0ahUKEwimsunjj_-HAxUqJBAIHUpFLd0Q4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthegrosmimi.com%2F+grosmimi+bottles&gs_lp=Egxnd3Mtd2l6LXNlcnAiLnNpdGU6aHR0cHM6Ly90aGVncm9zbWltaS5jb20vIGdyb3NtaW1pIGJvdHRsZXNIphtQwwlYtRJwAngAkAEAmAFboAFbqgEBMbgBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAHLQ&sclient=gws-wiz-serp \r\nIf you want the best for your little one, don\'t hesitate — Grosmimi is the way to go!',''),(8877,1,2197,'5','Wallmart',''),(8878,1,2198,'6','Marc Chaplin',''),(8879,1,2198,'3','digitalvsta@gmail.com',''),(8880,1,2198,'4','Connect with Global Businesses - Affordable B2B Services\r\n\r\nDear,\r\nAre you looking to expand your business network worldwide?\r\n Vista Solutions specializes in connecting businesses across any industry and location. \r\n\r\nOur professional B2B services are affordable and tailored to meet your unique needs.\r\nFor secure payments and communications, we exclusively operate through Fiverr. \r\n\r\nVisit us today at Vista Solutions on Fiverr to get started.\r\nhttps://www.fiverr.com/s/NNEKLY8\r\n\r\n If we manage to find you, we can find the right business for your business.\r\nLooking forward to connecting!\r\n\r\nBest regards,\r\nVista Solutions',''),(8881,1,2199,'6','Eric Jones',''),(8882,1,2199,'2','555-555-1212',''),(8883,1,2199,'3','ericjonesmyemail@gmail.com',''),(8884,1,2199,'4','Hi juiceelectrical.co.nz Administrator! my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8885,1,2200,'6','Jim',''),(8886,1,2200,'3','info@cyber-tester.com',''),(8887,1,2200,'4','I hope this note finds you well. In today\'s digital realm, safeguarding your organization\'s systems is more crucial than ever. At Cyber Tester, we specialize in delivering top-notch cybersecurity offerings, including expert penetration testing.\r\n\r\nTo show you all the value we can add to your organization, we\'re offering a no-cost penetration test for companies. This assessment will uncover any vulnerabilities in your systems and provide actionable recommendations to strengthen your defenses.\r\n\r\nOur professional group utilizes cutting-edge tools and methodologies to simulate real-world attacks, ensuring your network, applications, and data are protected against potential threats.\r\n\r\nTake advantage of this to improve your security posture. Schedule your free penetration test and gain peace of mind knowing your frameworks are secure.\r\n\r\nContact me via the URL below to discuss this test further or to arrange your complimentary test.\r\n\r\nhttps://holbornassets.com',''),(8888,1,2201,'6','Matthew O\'Connor',''),(8889,1,2201,'2','6764995645',''),(8890,1,2201,'3','oconnor.matthew17@outlook.com',''),(8891,1,2201,'4','Hungry for Non-Stop Fun? Power Up at 30 30 Games!\r\n\r\nAttention gamers in Chonburi! Want to tackle some puzzles, defeat epic battles, or dash to the finish line? 3030 Games is your one-stop shop for no cost online gaming fun! \r\n\r\nHere’s why you’ll enjoy 3030 Games:\r\n\r\n- Huge Collection: Immerse yourself in a endless library of amazing games – there\'s something for everyone!\r\n\r\n- Completely no cost: Game all day, every day, without cost!\r\n\r\n- Immediate Play: No installations needed, right away jump right in and begin gaming! \r\n\r\nWant to release your inner champion? Head over 30 30 Games now and power up your weekend!\r\n\r\nxx Play casual games now: https://bit.ly/3030games',''),(8892,1,2202,'6','Jackphync',''),(8893,1,2202,'2','86245857261',''),(8894,1,2202,'3','yjdisantoyjdissemin@gmail.com',''),(8895,1,2202,'4','Прывітанне, я хацеў даведацца Ваш прайс.',''),(8896,1,2202,'5','Nokia',''),(8897,1,2203,'6','Carroll Redding',''),(8898,1,2203,'2','7348273883',''),(8899,1,2203,'3','redding.carroll@gmail.com',''),(8900,1,2203,'4','How are you doing! My name is Carroll Redding. \r\n \r\nBe Charismatic! \r\n \r\nGo to the site TiaraShopEU whenever you need Women\'s Leotards or Swimwear. \r\n \r\nNow everything is discounted! \r\n \r\nFollow the link and use code \"VIP\" for an extra discount in Men\'s boxers:\r\n \r\nhttps://bit.ly/3R8jRwn \r\n \r\nBest regards, Carroll Redding',''),(8901,1,2204,'6','Ben',''),(8902,1,2204,'3','info@opencontact.click',''),(8903,1,2204,'4','I hope this email finds you well. I wanted to connect to present you an unbelievable chance to boost your business with a constant stream of top-notch leads.\r\n\r\nAs a marketing specialist with years of knowledge in the field, I understand the obstacles businesses face when it comes to finding and attracting customers. That\'s why I\'ve developed a service that provides a consistent flow of leads straight to you.\r\n\r\nHere\'s how it operates: I will supply you with a stream of 25,000 thoroughly selected leads for the matchless price of $100 for every month. You read that right; I\'m presenting this service essentially at cost because I have faith in the potential of high-quality leads to transform businesses.\r\n\r\nTo ensure that you receive the finest leads possible, we employ cutting-edge innovation, including artificial intelligence, to run targeted ads that pinpoint and involve with your perfect demographic. Over time, our system gains knowledge more about your core demographic, steadily improving the quality of the leads we supply to you.\r\n\r\nThe finest part is, you have the option to cancel your subscription at any time. We strongly believe in providing a service that brings tangible results, and if you\'re not satisfied, we don\'t want to keep you back.\r\n\r\nImagine the possibilities of having a uninterrupted influx of possible customers to connect to. Whether you\'re looking to amplify sales, extend your client base, or simply enhance brand awareness, our leads will offer you with the ideal foundation to accomplish your goals.\r\n\r\nTo get started, simply reply to this email. I would be pleased to answer any questions you may have, and assist you through the simple setup process.\r\n\r\nRemember, in today\'s competitive market, having access to high-quality leads can make all the difference. Let me help you take your business to new heights with our extraordinary lead generation service.\r\n\r\n\r\nI look forward to hearing from you and being a part of your success story!\r\n\r\n\r\nhttps://leadforest.world',''),(8904,1,2205,'6','Ravi Nyhan',''),(8905,1,2205,'2','358434811',''),(8906,1,2205,'3','nyhan.andrew@msn.com',''),(8907,1,2205,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(8908,1,2206,'6','Eric Jones',''),(8909,1,2206,'2','555-555-1212',''),(8910,1,2206,'3','ericjonesmyemail@gmail.com',''),(8911,1,2206,'4','Hi juiceelectrical.co.nz Owner! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(8912,1,2207,'6','Magda Cribbs',''),(8913,1,2207,'2','890141423',''),(8914,1,2207,'3','magda.cribbs56@gmail.com',''),(8915,1,2207,'4','Dreading those cold calls? You\'re not alone! Our expert team lives for the challenge of turning icy leads into warm opportunities. Let us supercharge your sales process while you focus on what you do best – growing your business.\r\n\r\nLearn more with our Virtual Assistant! Dial (561) 834 2926 or visit https://AiQuickCalls.com \r\n\r\nThank you, and I wish you an absolutely fantastic day. \r\n\r\nMagda Cribbs\r\nhttps://AiQuickCalls.com',''),(8916,1,2208,'6','Todd Lee',''),(8917,1,2208,'2','+1 (3037108342',''),(8918,1,2208,'3','finance@dreaminvestmentsccllc.com',''),(8919,1,2208,'4','ello,\r\n\r\nWe are interested in establishing a long-term business relationship through a joint venture partnership. Our company is willing to provide 100% of the investing capital, with terms including sharing equity as managerial dividends.\r\n\r\nYour consent and collaboration would be greatly appreciated as we aim for mutual success. Please contact us for further details.\r\n\r\nSincerely\r\nHarvey Todd Lee\r\nPhone: +1 (303) 710-8342',''),(8920,1,2209,'6','Ravi Bequette',''),(8921,1,2209,'2','403731666',''),(8922,1,2209,'3','clarence.bequette@gmail.com',''),(8923,1,2209,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(8924,1,2210,'6','Gary Charles',''),(8925,1,2210,'2','8185327032',''),(8926,1,2210,'3','garycharles@dominatingkeywords.com',''),(8927,1,2210,'4','I am not offering SEO or PPC services. This is something entirely different. Simply send us your desired keywords, and your website will instantly appear at the top of Google and Bing search results, without any Pay Per Click charges. Let me demonstrate how it works and you\'ll be pleasantly surprised by the results.',''),(8928,1,2210,'5','ad',''),(8929,1,2211,'6','Angela Mackie',''),(8930,1,2211,'2','691050400',''),(8931,1,2211,'3','info@collab.rotev.io',''),(8932,1,2211,'4','Hello,\r\n\r\nMy name is Shahar and I\'m the founder of Rotev Marketing. I\'m reaching out because Webflow could be the perfect platform for representing your brand online.\r\n\r\nWith Webflow\'s visual design tools, you can craft custom sites that tell your story and truly capture your brand\'s personality. Dynamic features like animations and interactive elements make browsing more engaging.\r\n\r\nMany growing companies are choosing Webflow for its flexibility and performance. I\'d love to show you samples of our work and discuss how we could develop an impressive and eye-catching website for your business which will help you attract more customers. I\'d be happy to give you a FREE 15-minute call at no cost to discuss your website goals and needs.\r\n\r\nReply \"Yes\" if you\'re interested in a 15 minute intro call to explore building your presence with Webflow.\r\n\r\nKind Regards,\r\nShahar Zohar\r\ninfo@collab.rotev.io',''),(8933,1,2212,'6','Lemuel Fosbrook',''),(8934,1,2212,'2','912853597',''),(8935,1,2212,'3','lemuel.fosbrook@gmail.com',''),(8936,1,2212,'4','Alpha Partners Leasing Limited, led by Piers Keywood, offers\r\nnon-collateral loans at the interest of 2% and financial instruments\r\nlike Bank Guarantees (BG) and Standby Letters of Credit (SBLC), we\r\nprovide funding for projects and business expansions,\r\n\r\nSend your response to:\r\n\r\n pierskeywood@gmail.com',''),(8937,1,2213,'6','Zoe Ennor',''),(8938,1,2213,'2','666230644',''),(8939,1,2213,'3','ennor.zoe@gmail.com',''),(8940,1,2213,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://cutt.ly/cel2C5m7\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly enhance your website\'s reach and traffic.',''),(8941,1,2214,'6','Phil Stewart',''),(8942,1,2214,'2','342-123-4456',''),(8943,1,2214,'3','noreplyhere@aol.com',''),(8944,1,2214,'4','Ever considered having your ad blasted to millions of contact forms? You\'re reading this message, so you know it works! Check out my site below for more info.\r\n\r\nhttp://feh2py.contactformmarketing.xyz',''),(8945,1,2215,'6','Tiffiny Mansell',''),(8946,1,2215,'2','5147025191',''),(8947,1,2215,'3','tiffiny.mansell@gmail.com',''),(8948,1,2215,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://cutt.ly/cel2C5m7\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This service could greatly enhance your website\'s reach and engagement.',''),(8949,1,2216,'6','Masonphync',''),(8950,1,2216,'2','86925579718',''),(8951,1,2216,'3','yjdisantoyjdissemin@gmail.com',''),(8952,1,2216,'4','Hola, volia saber el seu preu.',''),(8953,1,2216,'5','Apple',''),(8954,1,2217,'6','Constance Troiano',''),(8955,1,2217,'2','7826846373',''),(8956,1,2217,'3','troiano.constance@googlemail.com',''),(8957,1,2217,'4','Stake is where it’s at—an online casino with free cash every day, no strings attached. You’ve got to check it out! Use my link https://t.ly/socialcasino-40 to sign up',''),(8958,1,2218,'6','Jerry',''),(8959,1,2218,'2','621213258',''),(8960,1,2218,'3','info@eudy.lodrop.com',''),(8961,1,2218,'4','Hello there, \r\n\r\nI hope this email finds you well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nThe bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: http://bangeshop.com\r\n\r\nBest regards,\r\n\r\nJerry',''),(8962,1,2219,'6','Sara Lee',''),(8963,1,2219,'2','(951) 456-7890',''),(8964,1,2219,'3','ackerman.nate@gmail.com',''),(8965,1,2219,'4','Are you aware?\r\n\r\nEmbracing sustainability is not just a trend!\r\n\r\nBe part of the change and upgrade your environment with eco-friendly practices.\r\n\r\nClick this link to learn more >>> http://alturl.com/c79c2\r\n\r\nCut costs on energy bills while helping the planet.\r\n\r\nFrom energy-efficient appliances to smart technology, each effort counts.\r\n\r\nGet started today and experience the benefits!\r\n\r\nStay ahead in sustainability.',''),(8966,1,2220,'6','Davidphync',''),(8967,1,2220,'2','84649331119',''),(8968,1,2220,'3','kayleighbpsteamship@gmail.com',''),(8969,1,2220,'4','হাই, আমি আপনার মূল্য জানতে চেয়েছিলাম.',''),(8970,1,2220,'5','AliExpress',''),(8971,1,2221,'6','Julie Ferri',''),(8972,1,2221,'2','100652537',''),(8973,1,2221,'3','ferri.julie39@hotmail.com',''),(8974,1,2221,'4','4000 Lumen ANSI Epson Projector for $649\r\n\r\n-- https://bit.ly/PowerLite-1288\r\n\r\n- Epson US and Amazon is selling it at $850\r\n- 3 years warranty\r\n\r\nPresent wirelessly with ease using the Epson PowerLite 1288 Full HD 3LCD Projector, boasting 4000 Lumens. Built-in Wi-Fi and Miracast support allow for wireless projection in any meeting room. See vibrant, high-resolution images with 1080p clarity and 4000 lumens of brightness.\r\n\r\nAct fast—order now to revolutionize your presentations!\r\nAvailable for immediate delivery—order now!\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe by filling the form on: https://bit.ly/unsubscribe-pages\r\n50 Place Du Jeu De Paume, Vigneux-Sur-Seine, ILE-DE-FRANCE, US, 91270',''),(8975,1,2222,'6','Renee Weber',''),(8976,1,2222,'2','753556922',''),(8977,1,2222,'3','amazingfeeling2020@gmail.com',''),(8978,1,2222,'4','Greetings!\r\n\r\nExplore the groundbreaking power of The Genius Wave to unlock \r\nyour brain\'s maximum potential. Our innovative soundwave technology, \r\nbased on advanced neuroscience, \r\nis crafted to enhance creativity, intuition,\r\nand problem-solving skills by stimulating your Theta brainwaves. \r\nJust seven minutes a day can lead to extraordinary transformations. \r\nExperience this transformative journey at https://bit.ly/renewremember and \r\nstart redefining your mental capabilities now!\r\n\r\nTo you awakening your genius!\r\n\r\nBrain Genius\r\nhttps://bit.ly/renewremember',''),(8979,1,2223,'6','Harsh Tiwari',''),(8980,1,2223,'2','7077060205',''),(8981,1,2223,'3','Siterank2@gmail.com',''),(8982,1,2223,'4','\"Hello and Good Day!\r\n\r\nI\'m Harsh Tiwari, a Business Development Manager at a reputable online marketing company in India. I noticed that your website is not ranking well on Google and other search engines, which could be affecting your visibility to potential customers.\r\n\r\nWhile your website design is impressive, it\'s crucial to enhance its visibility on search engines to attract more traffic. Our 360° Digital Marketing Agency, backed by experienced and innovative SEO Experts, has a proven track record of helping over 1000+ businesses achieve top rankings on Google\'s first page.\r\n\r\nWe specialize in providing cost-effective and high-quality solutions to small and medium-sized companies like yours. Our tailored strategies are designed to optimize your online presence and capture the attention of your target audience.\r\n\r\nTo improve your website\'s visibility on search engines and maximize your chances of reaching potential customers, I would be happy to send you a detailed proposal, price list, and compelling case studies.\r\n\r\nLet\'s elevate your online presence to new heights!\r\n\r\nThanks,\r\nHarsh Tiwari \"',''),(8983,1,2223,'5','google',''),(8984,1,2224,'6','Fred Hodge',''),(8985,1,2224,'2','7363728491',''),(8986,1,2224,'3','fred.hodge@yahoo.com',''),(8987,1,2224,'4','Unlock your $32,220 tax credit when you partner SETC PROS, —this opportunity expires in April 2025. Secure your savings today!\r\n\r\nThe Self-Employed Tax Credit (SETC) is a refundable tax credit designed to assist self-employed individuals impacted by the COVID-19 pandemic. The SETC encompasses the Sick Leave and Family Leave Tax Credits established by the Family First Coronavirus Response Act (FFCRA).\r\n\r\n\r\n@@ Claim now: https://bit.ly/setcpros\r\n\r\n\r\n\r\nYou can unsubscribe by sending an email with subject \"Unsubscribe\" to hortzsteven@gmail.com\r\nValldammsgatan 11, Brottby, NA, Sweden, 186 30',''),(8988,1,2225,'6','Markus Lees',''),(8989,1,2225,'2','295940735',''),(8990,1,2225,'3','markus.lees@gmail.com',''),(8991,1,2225,'4','Hey there...\r\n\r\nOK, so the reason I reached out is because we are looking for partners that have cold lead lists.\r\n\r\nWe have a database reactivation software that “Wakes Up” your cold leads the sales team has given up on.\r\n\r\nThe requested callback on the case study was a whopping 20%. \r\n\r\nWe have a case study below to show you how this all works. \r\n\r\nhttps://vimeo.com/998726542\r\n\r\nThe case study is in the debt consolidation but this can work in any industry or niche. Real estate, banking, Life insurence, roofing, etc. \r\n\r\nIf your interested implementing this in your business, please reach out to me. \r\n\r\n\r\nScott Riefler\r\n\r\n+66800528082\r\nsales@pskdevelopment.com',''),(8992,1,2226,'6','SEObyAxy',''),(8993,1,2226,'2','96004527',''),(8994,1,2226,'3','seosubmitter@mail.com',''),(8995,1,2226,'4','Hi juiceelectrical.co.nz Administrator\r\n\r\nAre you ready to take your online presence to the next level? \r\n\r\nWe can help you grow your online presence and attract more customers to your business with our Top SEO Services. \r\n\r\nOur exclusive SEO offers are designed to help you achieve top rankings and attract more potential customers. \r\n\r\nHERE’S HOW WE CAN HELP:\r\n[+] Google Ranking Improvement: Enhance your website’s visibility on Google and climb the search engine results.\r\n[+] Local Ranking Optimization: Dominate local search results and attract nearby customers to your business.\r\n[+] Google Maps Ranking: Stand out on Google Maps and make it easy for customers to find you.\r\n[+] Niche Customer Targeting: Identify and reach potential customers within your specific niche.\r\n[+] High-Quality SEO Backlinks: Increase your site’s authority with premium backlinks.\r\n[+] Diverse Backlink Portfolio: Build a varied backlink profile to boost your SEO performance.\r\n[+] YouTube Ranking: Improve your video rankings and increase visibility on YouTube.\r\n[+] Web 2.0 Backlinks: Gain valuable backlinks from high-authority Web 2.0 sites.\r\n[+] Wiki Articles Backlinks: Enhance your credibility with backlinks from reputable wiki articles.\r\n[+] Web 2.0 Profiles Backlinks: Boost your SEO with profiles on high-domain authority sites.\r\n[+] Web Directories Backlinks: Increase your site’s exposure through high-quality web directories.\r\n[+] Quality Content Creation: Engage your audience with compelling content tailored to your needs.\r\n[+] Website Traffic Enhancement: Drive more traffic to your website and increase engagement.\r\n[+] Video & Animation Services: Create stunning video content to captivate your audience.\r\n\r\nSPECIAL PROMOTION ALERT: \r\nAll these services are now available at promotional prices! \r\n\r\nThis is a limited-time offer, so hurry and take advantage of these discounts before they expire. \r\n\r\nAct now to secure these unbeatable rates =>> https://t.ly/QzTnt\r\n\r\nOur services are highly rated by our clients, ensuring you get the best results possible.\r\n \r\nThanks,\r\nSEObyAxy\r\n \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\nNorway, NA, Drammen, 3041, Christian Bloms Gate 124\r\nTo stop any further communication from us, please reply to this email with subject: Unsubscribe juiceelectrical.co.nz',''),(8996,1,2227,'6','Jonathan Hayward',''),(8997,1,2227,'2','0279398868',''),(8998,1,2227,'3','mrturor@gmail.com',''),(8999,1,2227,'4','Hi I would like to book in a quote to install some new light fittings in my home.',''),(9000,1,2227,'5','I used you before. Internet search before that',''),(9001,1,2228,'6','Emil Greener',''),(9002,1,2228,'2','3792071778',''),(9003,1,2228,'3','emil.greener@gmail.com',''),(9004,1,2228,'4','Subject: Unleash the Power of Your Business with GoHighLevel!\r\n\r\nDear Entrepreneurs and Business Leaders,\r\n\r\nAre you ready to revolutionize the way you run your business? Say hello to GoHighLevel - the all-in-one platform that will elevate your business to new heights and empower you with the tools you need to succeed!\r\n\r\nPicture this: seamlessly managing your entire customer journey from a single, intuitive dashboard. No more juggling between different platforms or drowning in a sea of confusing spreadsheets. With GoHighLevel, you can streamline your processes and focus on what truly matters - growing your business.\r\n\r\nFrom generating high-converting leads to nurturing them into loyal customers, GoHighLevel has got you covered. Build stunning landing pages that leave a lasting impression, create captivating email campaigns that engage and convert, and effortlessly manage your appointments with a smart scheduling system that syncs with your calendar.\r\n\r\nBut that\'s not all - GoHighLevel\'s versatility knows no bounds! Whether you\'re in the business of coaching, consulting, marketing, or any other industry, our platform adapts to your unique needs. Experience the convenience of managing your SMS marketing, social media, and even client pipelines all under one roof.\r\n\r\nWorried about your business scaling to new heights? Fear not! GoHighLevel is designed with growth in mind. With advanced analytics and performance tracking, you\'ll gain valuable insights into your business\'s performance and make data-driven decisions for continued success.\r\n\r\nOur user-friendly interface ensures that you don\'t need to be tech-savvy to make the most of our platform. Say goodbye to complexities and embrace the simplicity of GoHighLevel!\r\n\r\nAs a special offer for our valued customers, we\'re thrilled to provide a 30-day free trial of GoHighLevel. Yes, you read that right - an entire month to experience the transformative power of our platform, risk-free!\r\n\r\nJoin thousands of businesses worldwide who have already witnessed the magic of GoHighLevel and achieved unparalleled growth and success. Don\'t be left behind - take the leap and go beyond your limits with GoHighLevel!\r\n\r\nReady to embark on a journey of business excellence? Head over to www.gohighlevel.com and sign up for your free trial today.\r\n\r\nEmpower your business, elevate your success - GoHighLevel awaits you!\r\n\r\nTo your success,\r\n\r\nGoHighLevel lover\r\n\r\n\r\ntry it from here ==>> https://rebrand.ly/14-day-trial-hl',''),(9005,1,2229,'6','Maira Pedder',''),(9006,1,2229,'2','30310573',''),(9007,1,2229,'3','maira.pedder@gmail.com',''),(9008,1,2229,'4','Hi there\r\nGetting backlinks from highly established sites is the most important thing.\r\n\r\nHaving backlinks from high DA sites but with 0 ranking keywords is bad business.\r\n\r\nSo, if you understand the need for such a strategy, here is our service:\r\nhttps://www.seostrictly.net/semrush-links/\r\n\r\n\r\nThanks\r\nStriclty Digital\r\nWhatsapp us:https://www.seostrictly.net/whatsapp-us/',''),(9009,1,2230,'6','Andrianalgp',''),(9010,1,2230,'2','87881339784',''),(9011,1,2230,'3','an.dr.i.a.n.a.l.ov.e.a.dams37@gmail.com',''),(9012,1,2230,'4','Imagine the joy of working with a yarn that feels like a dream in your hands and transforms every project into a masterpiece — Peaches and Creme is that yarn. \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+creme+yarn+website&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIJ5Tq7g2N12gQccQ3SJATYcC0twcA%3A1724529983401&ei=Pz3KZu-QGJmO7NYPmspb&ved=0ahUKEwivrMLoto6IAxUZB9sEHRrlFgAQ4dUDCBA&oq=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+creme+yarn+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiQnNpdGU6aHR0cHM6Ly9teXBlYWNoZXNhbmRjcmVtZS5jb20vIHBlYWNoZXMgYW5kIGNyZW1lIHlhcm4gd2Vic2l0ZUgAUABYAHAAeACQAQCYAQCgAQCqAQC4AQzIAQD4AQL4AQGYAgCgAgCYAwCSBwCgBwA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+creme+yarn&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILcGss-lI2uxpPnGRT1ozNnryhANA%3A1724530018543&ei=Yj3KZqryIIaTxc8P792D2QM&ved=0ahUKEwiqq6P5to6IAxWGSfEDHe_uIDsQ4dUDCBA&uact=5&oq=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+creme+yarn&gs_lp=Egxnd3Mtd2l6LXNlcnAiOnNpdGU6aHR0cHM6Ly9teXBlYWNoZXNhbmRjcmVtZS5jb20vIHBlYWNoZXMgYW5kIGNyZW1lIHlhcm5IAFAAWABwAHgAkAEAmAEAoAEAqgEAuAEDyAEA-AEC-AEBmAIAoAIAmAMAkgcAoAcA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+cream+yarn&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKr5Q7WcJQUliUPQmTY_IexaNPyiA%3A1724530078729&ei=nj3KZseWLNbOxc8P3fT3iAg&ved=0ahUKEwjH3fyVt46IAxVWZ_EDHV36HYEQ4dUDCBA&uact=5&oq=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+cream+yarn&gs_lp=Egxnd3Mtd2l6LXNlcnAiOnNpdGU6aHR0cHM6Ly9teXBlYWNoZXNhbmRjcmVtZS5jb20vIHBlYWNoZXMgYW5kIGNyZWFtIHlhcm5IqxRQAFjqEXAAeACQAQCYAZgBoAGYAaoBAzAuMbgBA8gBAPgBAfgBApgCAKACAJgDAJIHAKAHLQ&sclient=gws-wiz-serp \r\nDon’t miss out on the chance to create something truly beautiful; grab your skeins today and feel the difference it makes in every stitch!!!',''),(9013,1,2230,'5','AliExpress',''),(9014,1,2231,'6','Gus Hauslaib',''),(9015,1,2231,'2','7154934138',''),(9016,1,2231,'3','hauslaib.gus28@gmail.com',''),(9017,1,2231,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://tinyurl.com/bdhyuajv\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly amplify your website\'s reach and traffic.',''),(9018,1,2232,'6','Dominique Audet',''),(9019,1,2232,'2','555581172',''),(9020,1,2232,'3','audet.dominique@outlook.com',''),(9021,1,2232,'4','The best financial company to support your business growth is right here.\r\n\r\nWe are here to offer you the greatest option for the expansion of your company. To fulfill your needs, we offer the best possible business loan package. email me here info@financeworldwidehk.com \r\n\r\n\r\nBest Regards Laura Cha',''),(9022,1,2233,'6','Robertphync',''),(9023,1,2233,'2','84554353279',''),(9024,1,2233,'3','kayleighbpsteamship@gmail.com',''),(9025,1,2233,'4','Hola, volia saber el seu preu.',''),(9026,1,2233,'5','Nokia',''),(9027,1,2234,'6','Chihiro Chiga',''),(9028,1,2234,'2','0210636114',''),(9029,1,2234,'3','chihiro_c2@yahoo.co.jp',''),(9030,1,2234,'4','Hi there,\r\n\r\nWe believe power line buried middle of backyard from house to garage.\r\nBecause we will build self-contained sleepout in backyard we need to move power line to side of backyard.\r\nDo you do this kind job?\r\nIf so, could you give us quote?\r\nCurrently 15m from house to garage and change to 18m.\r\nOur land is 185 Gayhurst Road, Dallington, Christchurch.',''),(9031,1,2234,'5','Google',''),(9032,1,2235,'6','📉 + 1.824 BTC.NEXT - https://out.carrotquest-mail.io/r?hash=YXBwPTYzODQ0JmNvbnZlcnNhdGlvbj0xNzgyMzg3NTExMDk2NTEyMTU2JmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnRlbGVncmEucGglMkZHby10by15b3VyLXBlcnNvbmFsLWNhYmluZXQtMDgtMjUmcmFpc2Vfb25fZXJyb3I9RmFsc2Umc2lnbmF0dXJlPTM0ZDY4NzU0NTBmY2ZjNjEwMTZlM2I3Yjc5ZThhNzYxODBkZmFlNzFkODBkODQ2MTAwYzBhNDlkMzU4ZmE1NmE=?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 📉',''),(9033,1,2235,'2','925280451523',''),(9034,1,2235,'3','friedenspfeifen@omggreatfoods.com',''),(9035,1,2235,'4','c6fm5x',''),(9036,1,2235,'5','68jxu6',''),(9037,1,2236,'6','Andrianaiok',''),(9038,1,2236,'2','82163559721',''),(9039,1,2236,'3','and.r.ia.n.a.lov.ea.d.a.ms3.7@gmail.com',''),(9040,1,2236,'4','Imagine the joy of working with a yarn that feels like a dream in your hands and transforms every project into a masterpiece — Peaches and Creme is that yarn. \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+creme+yarn+website&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIJ5Tq7g2N12gQccQ3SJATYcC0twcA%3A1724529983401&ei=Pz3KZu-QGJmO7NYPmspb&ved=0ahUKEwivrMLoto6IAxUZB9sEHRrlFgAQ4dUDCBA&oq=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+creme+yarn+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiQnNpdGU6aHR0cHM6Ly9teXBlYWNoZXNhbmRjcmVtZS5jb20vIHBlYWNoZXMgYW5kIGNyZW1lIHlhcm4gd2Vic2l0ZUgAUABYAHAAeACQAQCYAQCgAQCqAQC4AQzIAQD4AQL4AQGYAgCgAgCYAwCSBwCgBwA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+creme+yarn&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILcGss-lI2uxpPnGRT1ozNnryhANA%3A1724530018543&ei=Yj3KZqryIIaTxc8P792D2QM&ved=0ahUKEwiqq6P5to6IAxWGSfEDHe_uIDsQ4dUDCBA&uact=5&oq=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+creme+yarn&gs_lp=Egxnd3Mtd2l6LXNlcnAiOnNpdGU6aHR0cHM6Ly9teXBlYWNoZXNhbmRjcmVtZS5jb20vIHBlYWNoZXMgYW5kIGNyZW1lIHlhcm5IAFAAWABwAHgAkAEAmAEAoAEAqgEAuAEDyAEA-AEC-AEBmAIAoAIAmAMAkgcAoAcA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+cream+yarn&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKr5Q7WcJQUliUPQmTY_IexaNPyiA%3A1724530078729&ei=nj3KZseWLNbOxc8P3fT3iAg&ved=0ahUKEwjH3fyVt46IAxVWZ_EDHV36HYEQ4dUDCBA&uact=5&oq=site%3Ahttps%3A%2F%2Fmypeachesandcreme.com%2F+peaches+and+cream+yarn&gs_lp=Egxnd3Mtd2l6LXNlcnAiOnNpdGU6aHR0cHM6Ly9teXBlYWNoZXNhbmRjcmVtZS5jb20vIHBlYWNoZXMgYW5kIGNyZWFtIHlhcm5IqxRQAFjqEXAAeACQAQCYAZgBoAGYAaoBAzAuMbgBA8gBAPgBAfgBApgCAKACAJgDAJIHAKAHLQ&sclient=gws-wiz-serp \r\nDon’t miss out on the chance to create something truly beautiful; grab your skeins today and feel the difference it makes in every stitch!!!',''),(9041,1,2236,'5','Apple',''),(9042,1,2237,'6','Masonphync',''),(9043,1,2237,'2','81533626927',''),(9044,1,2237,'3','yjdisantoyjdissemin@gmail.com',''),(9045,1,2237,'4','Sawubona, bengifuna ukwazi intengo yakho.',''),(9046,1,2237,'5','Wallmart',''),(9047,1,2238,'6','Jessicatas',''),(9048,1,2238,'2','85747853567',''),(9049,1,2238,'3','je.s.s.ic.a8.6.8.8.willia.m.s@gmail.com',''),(9050,1,2238,'4','I\'ve been using LIANYU Flatware Cutlery Sets for years, and they\'ve transformed my dining experience with their timeless elegance and durability \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthelianyu.com%2F+lianyu&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIIR89IIVUru2i-h73_yK-M9x_Q-Rw%3A1725047070015&ei=HiHSZqFQqr7A8A-I5YaQBg&ved=0ahUKEwih19COvZ2IAxUqHxAIHYiyAWIQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthelianyu.com%2F+lianyu&gs_lp=Egxnd3Mtd2l6LXNlcnAiInNpdGU6aHR0cHM6Ly90aGVsaWFueXUuY29tLyBsaWFueXVI3XdQS1ipYHADeACQAQCYAVWgAfgBqgEBM7gBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAHhwE&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthelianyu.com%2F+lianyu+cutlery&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKG9LofLp05gO1x7lOvGUa6WiFSKA%3A1725047115509&ei=SyHSZqrlHt6gwPAPn4ekwAM&ved=0ahUKEwjqtqmkvZ2IAxVeEBAIHZ8DCTgQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthelianyu.com%2F+lianyu+cutlery&gs_lp=Egxnd3Mtd2l6LXNlcnAiKnNpdGU6aHR0cHM6Ly90aGVsaWFueXUuY29tLyBsaWFueXUgY3V0bGVyeUj4DFDjAViDBXABeACQAQCYAVSgAaABqgEBMrgBA8gBAPgBAfgBApgCAKACAJgDAIgGAZIHAKAHWg&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=site%3Ahttps%3A%2F%2Fthelianyu.com%2F+lianyu+flatware&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILmabD7ihvY0UOnOxBtTSXX4_fA3A%3A1725047203634&ei=oyHSZqq5JuzDwPAPgJmBsAc&ved=0ahUKEwjqlqzOvZ2IAxXsIRAIHYBMAHYQ4dUDCA8&uact=5&oq=site%3Ahttps%3A%2F%2Fthelianyu.com%2F+lianyu+flatware&gs_lp=Egxnd3Mtd2l6LXNlcnAiK3NpdGU6aHR0cHM6Ly90aGVsaWFueXUuY29tLyBsaWFueXUgZmxhdHdhcmVIpgxQqQFYqQFwAXgAkAEAmAFSoAFSqgEBMbgBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAHLQ&sclient=gws-wiz-serp \r\nIf you want to elevate your table settings and enjoy meals with utensils that feel luxurious yet stand up to daily use, treat yourself to a LIANYU set - you won\'t regret it!',''),(9051,1,2238,'5','AliExpress',''),(9052,1,2239,'6','Tedphync',''),(9053,1,2239,'2','81928459574',''),(9054,1,2239,'3','kayleighbpsteamship@gmail.com',''),(9055,1,2239,'4','Salut, ech wollt Äre Präis wëssen.',''),(9056,1,2239,'5','Nokia',''),(9057,1,2240,'6','Dane Corrigan',''),(9058,1,2240,'2','3918973680',''),(9059,1,2240,'3','corrigan.dane17@outlook.com',''),(9060,1,2240,'4','Hi,\r\n\r\nWe’re wanted to introduce you to Sonic, the ultimate resource for high-quality sound effects that can elevate your audio projects to the next level.\r\n\r\nWhether you’re a content creator, filmmaker, or musician, our tool makes it easy to find and use professional sound effects without any hassle.\r\n\r\n- Access Thousands of Professional Sound Effects Instantly\r\n- Perfect for Any Project – No Audio Editing Skills Needed\r\n- Enhance Your Content and Captivate Your Audience\r\n\r\nExplore all the amazing features of Sonic here: https://furtherinfo.info/sonic\r\n\r\nKind Regards,\r\nDane',''),(9061,1,2241,'6','Masonphync',''),(9062,1,2241,'2','83262972662',''),(9063,1,2241,'3','yjdisantoyjdissemin@gmail.com',''),(9064,1,2241,'4','Hola, quería saber tu precio..',''),(9065,1,2241,'5','Nokia',''),(9066,1,2242,'6','Phil Stewart',''),(9067,1,2242,'2','342-123-4456',''),(9068,1,2242,'3','noreplyhere@aol.com',''),(9069,1,2242,'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.\r\n\r\nhttp://7qb854.contactuspagemarketing.xyz',''),(9070,1,2243,'6','Vincent Evard',''),(9071,1,2243,'2','890924582',''),(9072,1,2243,'3','contact@motor-import.com',''),(9073,1,2243,'4','Dear,\r\n\r\nI hope this message finds you well. I represent motor-import.com, a trusted and reliable partner for individuals and businesses seeking cost-effective solutions for importing both used and new cars from around the world. We specialize in offering comprehensive services, including shipping, customs clearance, and delivery, to make global car buying a hassle-free and economical experience.\r\n\r\nWhy Choose Motor-Import?\r\n\r\nCompetitive Pricing: At Motor-Import, we are committed to helping our customers save money. We understand that purchasing a car locally can often come with a hefty price tag. Our services are designed to provide a cost-effective alternative, making it possible for you to acquire your dream vehicle for less.\r\n\r\nGlobal Network: With our extensive network of contacts and partners worldwide, we can source vehicles from a variety of locations, ensuring you have access to a wide range of options. Whether you\'re interested in a specific make and model or hunting for unique vehicles, we have you covered.\r\n\r\nExpertise in Customs: Navigating the complexities of international customs regulations can be a daunting task. Our experienced team specializes in customs clearance, ensuring that your vehicle is imported legally and without any unexpected delays or costs.\r\n\r\nSecure Shipping: We prioritize the safety of your investment. Our shipping solutions are designed to protect your vehicle during transit, ensuring it arrives in the same condition it left its origin.\r\n\r\nReliable Delivery: We pride ourselves on timely and secure deliveries. You can trust us to get your car to your doorstep or preferred location promptly.\r\n\r\nVisit our website at Motor-Import Website to learn more about our services and explore the testimonials from our satisfied customers.\r\n\r\nIf you have any questions or are interested in starting the process of importing your desired vehicle, please don\'t hesitate to reach out to us at contact@motor-import.com. Our team is ready to assist you in finding the best car import solution to suit your needs and budget.\r\n\r\nSay goodbye to overpriced local car dealerships and hello to affordable and convenient global car sourcing with Motor-Import. We look forward to helping you import your dream car at a price that\'s both competitive and satisfying.\r\n\r\nBest regards,',''),(9074,1,2244,'6','NARTYTRYUT1668185NERTYTRY',''),(9075,1,2244,'2','86398973449',''),(9076,1,2244,'3','rhxeynlg@vecinomail.com',''),(9077,1,2244,'4','MEKYUJTYJ1668185MARETRYTR',''),(9078,1,2244,'5','Wallmart',''),(9079,1,2245,'6','Davidphync',''),(9080,1,2245,'2','84181451126',''),(9081,1,2245,'3','kayleighbpsteamship@gmail.com',''),(9082,1,2245,'4','Hai, saya ingin tahu harga Anda.',''),(9083,1,2245,'5','AliExpress',''),(9084,1,2246,'6','Sima Rosser',''),(9085,1,2246,'2','7840010699',''),(9086,1,2246,'3','sima.rosser@outlook.com',''),(9087,1,2246,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://tinyurl.com/bdhyuajv\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly increase your website\'s reach and traffic.',''),(9088,1,2247,'6','🔓 Reminder; TRANSACTION 1,82536 bitcoin. Receive > out.carrotquest-mail.io/r?hash=YXBwPTY0MDcyJmNvbnZlcnNhdGlvbj0xNzkzOTE4MTAyMDE5MjQ2NTkyJmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnJlZGxpbmtiaXRzLnRvcCUyRmdvJTJGeTJiNDAzJTJGMjNiNCZyYWlzZV9vbl9lcnJvcj1GYWxzZSZzaWduYXR1cmU9YzUzZjE1ZjQ1OTFlM2U3YzQyNjJlMTdlZjJlODliYjMxMzAzNDM5MjlmMDY0ZDdlOTUwZmFjYWRkYjVlYTcxNw==?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 🔓',''),(9089,1,2247,'2','655540870999',''),(9090,1,2247,'3','romnik2012@code-gmail.com',''),(9091,1,2247,'4','z34gpl',''),(9092,1,2247,'5','coaegg',''),(9093,1,2248,'6','Halina',''),(9094,1,2248,'2','625777559',''),(9095,1,2248,'3','halina@juiceelectrical.co.nz',''),(9096,1,2248,'4','New Multifunction Anti-theft Waterproof Sling Bag\r\n\r\nThe best ever SUPER Sling Bag: Drop-proof/Anti-theft/Scratch-resistant/USB Charging\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://xbags.shop\r\n\r\nAll the best, \r\n\r\nHalina',''),(9097,1,2249,'6','Masonphync',''),(9098,1,2249,'2','84778549662',''),(9099,1,2249,'3','yjdisantoyjdissemin@gmail.com',''),(9100,1,2249,'4','Ողջույն, ես ուզում էի իմանալ ձեր գինը.',''),(9101,1,2249,'5','FBI',''),(9102,1,2250,'6','Lindsay D\'Arcy',''),(9103,1,2250,'2','353928090',''),(9104,1,2250,'3','darcy.lindsay39@msn.com',''),(9105,1,2250,'4','Hi There....\r\n\r\nOK, so the reason I reached out is because we are looking for partners that have cold lead lists.\r\n\r\nWe have a database reactivation software that “Wakes Up” your cold leads the sales team has given up on.\r\n\r\nThe requested callback on the case study was a whopping 20%. \r\n\r\nWe have a case study below to show you how this all works. \r\n\r\nhttps://vimeo.com/998726542\r\n\r\nThe case study is in the debt consolidation but this can work in any industry or niche. Real estate, banking, Life insurence, roofing, etc. \r\n\r\nIf your interested implementing this in your business, please reach out to me. \r\n\r\n\r\nScott Riefler\r\n\r\n+66800528082\r\nsales@pskdevelopment.com',''),(9106,1,2251,'6','Stephany Mitchell',''),(9107,1,2251,'2','02108383776',''),(9108,1,2251,'3','patchin001@gmail.com',''),(9109,1,2251,'4','The thermostat knob on my oven seems to have become disconnected inside the body of the oven structure. The thermostat still works but not accurately',''),(9110,1,2251,'5','Used your service before',''),(9111,1,2252,'6','Meg GORDON',''),(9112,1,2252,'2','033425441',''),(9113,1,2252,'3','meg.gordon.owen@gmail.com',''),(9114,1,2252,'4','Would like a quote to install 2 LED lights that have just gone out Thanks very much Regards Meg Gordon',''),(9115,1,2252,'5','on the net and the happy customers who had used you',''),(9116,1,2253,'6','Natalie Ford',''),(9117,1,2253,'2','5125606422',''),(9118,1,2253,'3','natalie@socialbuzzzy.com',''),(9119,1,2253,'4','Hi, I\'m Natalie from Social Buzzzy here. I\'ve found a revolutionary tool for Instagram success and couldn\'t help but share it with you!\r\n\r\nSocial Growth Engine presents an amazing tool that elevates Instagram engagement. It\'s straightforward:\r\n- Just focus on creating fantastic content.\r\n- Affordable at less than $36/month.\r\n- Reliable, powerful, and perfect for Instagram.\r\n\r\nI\'ve seen amazing results, and I am confident you will too! Elevate your Instagram game today: http://get.socialbuzzzy.com/instagram_booster\r\n\r\nCheers your success,\r\nNatalie',''),(9120,1,2254,'6','Kassandra Thurber',''),(9121,1,2254,'2','529546207',''),(9122,1,2254,'3','kassandra.thurber@gmail.com',''),(9123,1,2254,'4','I noticed that your juiceelectrical.co.nz website could be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/P34L50TbTfX\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This solution could greatly amplify your website\'s reach and engagement.',''),(9124,1,2255,'6','Angelina Lawrence',''),(9125,1,2255,'2','09830152518',''),(9126,1,2255,'3','angelinalawrence73@gmail.com',''),(9127,1,2255,'4','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too.\r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search.\r\n\r\nIf you are interested then please let me know. I will send to you our Prices and Packages.\r\n\r\nNote: - If you are interested then we will send you, optimization report of your website.\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\nAngelina Lawrence\r\n\r\nSpread the love!',''),(9128,1,2255,'5','google',''),(9129,1,2256,'6','Angelina Lawrence',''),(9130,1,2256,'2','09830152518',''),(9131,1,2256,'3','angelinalawrence73@gmail.com',''),(9132,1,2256,'4','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too.\r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search.\r\n\r\nIf you are interested then please let me know. I will send to you our Prices and Packages.\r\n\r\nNote: - If you are interested then we will send you, optimization report of your website.\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\nAngelina Lawrence\r\n\r\nSpread the love!',''),(9133,1,2256,'5','GOOGLE',''),(9134,1,2257,'6','Belle Kintore',''),(9135,1,2257,'2','1178642884',''),(9136,1,2257,'3','kintore.belle@gmail.com',''),(9137,1,2257,'4','\"Unlock Endless Fun and Learning with Amazon Kids+ \r\n\r\nSafe, Exciting, and Parent-Approved!\"\r\n\r\nAmazon Kids+ offers endless fun for children ages 3-12, \r\nwith exclusive content from Disney, Marvel, Lego, and more. \r\n\r\nIt’s a safe, engaging platform where kids can learn and explore while parents enjoy peace of mind. \r\nThe easy-to-use Parent Dashboard ensures full control over the experience. \r\n\r\nFun for kids, peace for parents!\r\n\r\nVisit us on Amazon @ https://amzn.to/47t6ZsD\r\n\r\n\r\n#AmazonKidsPlus #SafeFunLearning #EndlessExploration #ParentApproved #KidsEntertainment #FamilyFriendlyFun',''),(9138,1,2258,'6','Noreen Harr',''),(9139,1,2258,'2','6762017445',''),(9140,1,2258,'3','harr.noreen@googlemail.com',''),(9141,1,2258,'4','I can provide large Claude 3.5 sonnet, GPT-4o, and Gemini-1.5-pro-exp models. You can get access to these powerful models with a $100 API for just $20!\r\n\r\n Expand your site with our incredibly affordable Claude API.\r\n\r\n Learn more and contact us: https://www.lmzh.top/ (Email: q2408808@outlook.com / Telegram: https://t.me/ninicky1)',''),(9142,1,2259,'6','Branden Pethebridge',''),(9143,1,2259,'2','351689506',''),(9144,1,2259,'3','pethebridge.branden@gmail.com',''),(9145,1,2259,'4','Experience Unmatched Hosting, Support and Solutions – Contact Us Today!\r\n\r\nJaguarPC offers top-tier web hosting services, including cloud hosting, backup solutions, and server management.\r\n With 24/7 support, free migrations, and a 30-day money-back guarantee, we are committed to providing fast, reliable, and secure hosting.\r\n\r\nFor any inquiries or assistance, reach out to us via phone, email, support ticket, or live chat. \r\nWe\'re here to ensure your hosting experience is exceptional.\r\n\r\nVisit us @ https://netdepotcom.sjv.io/21oRO7\r\n\r\n#JaguarPC #WebHosting #CloudSolutions #24x7Support #ReliableHosting #FastServers #DataBackup #FreeMigrations #HostingExcellence',''),(9146,1,2260,'6','Eric Jones',''),(9147,1,2260,'2','555-555-1212',''),(9148,1,2260,'3','ericjonesmyemail@gmail.com',''),(9149,1,2260,'4','Dear\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz Administrator.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nVisit https://rushleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nVisit https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nVisit https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe visit https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9150,1,2261,'6','Alfred Hamburg',''),(9151,1,2261,'2','022405800',''),(9152,1,2261,'3','vonhamburg@hotmail.com',''),(9153,1,2261,'4','replace bayonet socket to screw socket on hanging lamp from ceiling.\r\n\r\nThanks very much.\r\n\r\n\r\nAlfred Hamburg',''),(9154,1,2261,'5','internet',''),(9155,1,2262,'6','Edward Iliffe',''),(9156,1,2262,'2','511301708',''),(9157,1,2262,'3','iliffe.edward@gmail.com',''),(9158,1,2262,'4','Hostinger: Hosting, As It Should Be\r\n\r\nExperience web hosting at its best with Hostinger. \r\nFast, secure, and reliable, it provides everything you need to bring your ideas to life online. \r\nFrom hosting your website to securely storing files and data, manage it all in one place.\r\n\r\nTrusted by over 3 million website owners worldwide, \r\nHostinger is optimized for speed, security, and reliability, ensuring your site performs at its peak. \r\n\r\nGet started today with a hosting solution built for success!\r\n\r\nVisit Us @ https://hostinger.com?REFERRALCODE=1VYTAUTAS92\r\n\r\nHosting, As It Should Be,',''),(9159,1,2263,'6','Carole Boren',''),(9160,1,2263,'2','171629501',''),(9161,1,2263,'3','boren.carole@googlemail.com',''),(9162,1,2263,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/5XUX50ToeWX\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly enhance your website\'s reach and traffic.',''),(9163,1,2264,'6','Samira Lemberg',''),(9164,1,2264,'2','9733195338',''),(9165,1,2264,'3','lemberg.samira@outlook.com',''),(9166,1,2264,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://cutt.ly/PeTks2hj\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly increase your website\'s reach and traffic.',''),(9167,1,2265,'6','Davidphync',''),(9168,1,2265,'2','84938769964',''),(9169,1,2265,'3','kayleighbpsteamship@gmail.com',''),(9170,1,2265,'4','Xin chào, tôi muốn biết giá của bạn.',''),(9171,1,2265,'5','Nokia',''),(9172,1,2266,'6','Kevin Rodriguez',''),(9173,1,2266,'2','486331266',''),(9174,1,2266,'3','support@listsitefast.com',''),(9175,1,2266,'4','Hello Valued Business Partner,\r\n\r\nAre you looking for a cost-effective way to expand your brand’s online presence and attract more customers?\r\n\r\nAt ListSiteFast, we’re offering you the opportunity to list your business absolutely free!\r\n\r\nHere’s what you get by joining us:\r\n- High-quality backlinks to improve your search engine rankings.\r\n- Boosted visibility to relevant audiences.\r\n- Free promotion to expand your customer base.\r\n\r\nIt’s simple to get started, and best of all—it’s free! Click the link below to submit your business details today:\r\nhttps://listsitefast.com\r\n\r\nWe know this is the ideal way to take your business to the next level—and it won’t cost you a dime!\r\n\r\nIf you would prefer not to receive further emails from us, you can unsubscribe here: http://www.listsitefast.com/unsubscribe.php?d=juiceelectrical.co.nz\r\n\r\nBest regards, \r\nThe ListSiteFast Team',''),(9176,1,2267,'6','Eric Jones',''),(9177,1,2267,'2','555-555-1212',''),(9178,1,2267,'3','ericjonesmyemail@gmail.com',''),(9179,1,2267,'4','Hi juiceelectrical.co.nz Admin! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://blazeleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9180,1,2268,'6','Stephany Cooke',''),(9181,1,2268,'2','7353147415',''),(9182,1,2268,'3','stephany.cooke74@gmail.com',''),(9183,1,2268,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(9184,1,2269,'6','Judith goodwin',''),(9185,1,2269,'2','0211851948',''),(9186,1,2269,'3','gjggoodwin@gmail.com',''),(9187,1,2269,'4','Hi, you installed a dimmer switch in may in our lounge this is now not working and also a light in the kitchen that only comes on occasionally wonder if you can come and have a look and see what has gone wrong thanks Judith and Glenn 261 Rolleston Drive Rolleston.',''),(9188,1,2270,'6','Eric Jones',''),(9189,1,2270,'2','555-555-1212',''),(9190,1,2270,'3','ericjonesmyemail@gmail.com',''),(9191,1,2270,'4','Dear juiceelectrical.co.nz Admin. my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9192,1,2271,'6','Ed Frazier',''),(9193,1,2271,'2','9454130545',''),(9194,1,2271,'3','fraziered94@gmail.com',''),(9195,1,2271,'4','Hi there! \r\n\r\nIs it time for a website refresh? Our web design services are focused on creating modern, responsive designs that perform effortlessly on all devices. Whether you\'re rebranding or beginning from scratch, we\'ll help you build a site that reflects your vision and generates results.\r\n\r\nReady to refresh your online presence? Let us chat!\r\n\r\nBest,\n\nEd Frazier',''),(9196,1,2272,'6','Linnea McNamara',''),(9197,1,2272,'2','7065751284',''),(9198,1,2272,'3','linnea.mcnamara@gmail.com',''),(9199,1,2272,'4','Hi,\r\n\r\nGreat Free Softwares on https://www.europesoftwares.net/\r\n\r\nRegards,\r\nEuropeSoftwares Team',''),(9200,1,2273,'6','Roger Saldana',''),(9201,1,2273,'2','7939777061',''),(9202,1,2273,'3','roger.saldana72@msn.com',''),(9203,1,2273,'4','I see that your juiceelectrical.co.nz website may be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://cutt.ly/PeTks2hj\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This service could greatly increase your website\'s reach and engagement.',''),(9204,1,2274,'6','David',''),(9205,1,2274,'2','643839805',''),(9206,1,2274,'3','davidfrew28@gmail.com',''),(9207,1,2274,'4','Dear juiceelectrical.co.nz,\r\n\r\nNever miss a lead again! My software instantly texts you missed calls, and automates review requests to boost your Google ranking. \r\n\r\nI\'m a local SEO expert, and this is just the start of what I can do. \r\n\r\nInterested? \r\n\r\nLet\'s talk!\r\n\r\ncall +44 07821886501 and lets get you to the top of Google \r\n\r\nThanks\r\n\r\nDavid\r\n\r\nto opt-out please reply opt-out',''),(9208,1,2275,'6','Katelyn Raiden',''),(9209,1,2275,'2','4560924',''),(9210,1,2275,'3','katelynraiden@gmail.com',''),(9211,1,2275,'4','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically.\r\n\r\nWhat We Offer:\r\n\r\nGuaranteed Results: We guarantee to deliver between 700 and 1500 new subscribers each month, depending on which package you select.\r\nHigh-Quality Subscribers: Our subscribers are real people who are genuinely interested in your content.\r\nSafe and Ethical Practices: We use only ethical methods and avoid automated bots or spam.\r\n\r\nLimited-Time Trial: To give you a taste of our service, we\'re offering a short trial at no cost - as we limit the number of clients we accept per week, we only have 4 spots left for the free trial.\r\n\r\nIf you\'re interested please get back in touch soon.\r\n\r\nKind Regards,\r\nKatelyn',''),(9212,1,2276,'6','Eric Jones',''),(9213,1,2276,'2','555-555-1212',''),(9214,1,2276,'3','ericjonesmyemail@gmail.com',''),(9215,1,2276,'4','Hello juiceelectrical.co.nz Admin! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found juiceelectrical.co.nz 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.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut 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?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb 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.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen 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!\r\n\r\nThat’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. \r\n \r\nImagine 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.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://blazeleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9216,1,2277,'6','Ravi Troy',''),(9217,1,2277,'2','364284202',''),(9218,1,2277,'3','troy.minna@gmail.com',''),(9219,1,2277,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(9220,1,2278,'6','Eric Jones',''),(9221,1,2278,'2','555-555-1212',''),(9222,1,2278,'3','ericjonesmyemail@gmail.com',''),(9223,1,2278,'4','Hi juiceelectrical.co.nz Owner! Eric here with a quick thought about your website juiceelectrical.co.nz...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9224,1,2279,'6','Catherine Delvalle',''),(9225,1,2279,'2','30822692',''),(9226,1,2279,'3','delvalle.catherine@gmail.com',''),(9227,1,2279,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://cutt.ly/PeTks2hj\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This service could greatly amplify your website\'s reach and visitors.',''),(9228,1,2280,'6','Julie Crowther',''),(9229,1,2280,'2','0210450123',''),(9230,1,2280,'3','juliedcrowther@hotmail.com',''),(9231,1,2280,'4','Hi Helen, I have no hot water. I\'ve checked the fuse for the hot water cylinder & it hasn\'t tripped. I can\'t find the \"reset button\" on the cylinder. I was wondering if an electrician would be available sometime tomorrow afternoon or late afternoon Thursday.(I work nights).',''),(9232,1,2280,'5','Google',''),(9233,1,2281,'6','Julie Crowther',''),(9234,1,2281,'2','0210450123',''),(9235,1,2281,'3','juliedcrowther@hotmail.com',''),(9236,1,2281,'4','Hi Helen, I have no hot water. I\'ve checked the fuse for the hot water cylinder & it hasn\'t tripped. I can\'t find the \"reset button\" on the cylinder. I was wondering if an electrician would be available sometime tomorrow afternoon or late afternoon Thursday.(I work nights). I live in Rolleston',''),(9237,1,2281,'5','Google',''),(9238,1,2282,'6','Julie Crowther',''),(9239,1,2282,'2','0210450123',''),(9240,1,2282,'3','juliedcrowther@hotmail.com',''),(9241,1,2282,'4','Hi Helen, I have no hot water. I\'ve checked the fuse for the hot water cylinder & it hasn\'t tripped. I can\'t find the \"reset button\" on the cylinder. I was wondering if an electrician would be available sometime tomorrow afternoon or late afternoon Thursday.(I work nights). I live in Rolleston',''),(9242,1,2282,'5','Google',''),(9243,1,2283,'6','Ivan R.',''),(9244,1,2283,'2','7714544811',''),(9245,1,2283,'3','bette.halpern@gmail.com',''),(9246,1,2283,'4','Hey there, \r\n\r\nAre you interested in buying/renting Google Ads accounts with free spending ads credit limit of 10k monthly on each account ($329 daily budget & $120k a year of free ppc ads spend limit) for a very cheap price starting at $500-$1000?\r\n\r\n\r\nLet\'s connect on FB and check out my recent post: https://bit.ly/GoogleAdsAccounts \r\n\r\nWant more info: https://bit.ly/GrantAccounts \r\n\r\nIf you\'re interested or have any questions private email me at ivanr1030@gmail.com\r\n\r\nLearn more about me - https://bit.ly/Ivan-Ramirez\r\n\r\nSubscribe to my YouTube channel: https://bit.ly/YouTubeIvanRamirez\r\n\r\n\r\n\r\nThanks & Regards,\r\nIvan R.\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://bit.ly/websiteoptout',''),(9247,1,2284,'6','Olen Winfield',''),(9248,1,2284,'2','7863701503',''),(9249,1,2284,'3','digitalvsta@gmail.com',''),(9250,1,2284,'4','Exclusive B2B Lead Generation Services at Competitive Prices\r\n\r\nDear,\r\n\r\nI hope this message finds you well.\r\n\r\nWe specialize in offering exclusive B2B lead generation services tailored to help businesses like yours thrive. \r\nWith our strategic approach, you can expect high-quality leads that drive growth—all at competitive prices.\r\n\r\nWe would love to discuss how we can support your business goals with our affordable, results-driven services. \r\nPlease feel free to reach out, and let\'s explore how we can collaborate for your success.\r\n\r\nSimply Visit us on Fiverr @ https://bit.ly/3ZwIxoi\r\n\r\nLooking forward to hearing from you.\r\n\r\nBest regards,',''),(9251,1,2285,'6','Eric Jones',''),(9252,1,2285,'2','555-555-1212',''),(9253,1,2285,'3','ericjonesmyemail@gmail.com',''),(9254,1,2285,'4','Dear, Eric here with a quick thought about your website juiceelectrical.co.nz Webmaster.\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9255,1,2286,'6','WlasoffVladmsSr',''),(9256,1,2286,'2','88777818585',''),(9257,1,2286,'3','14777@loves-ltd.com',''),(9258,1,2286,'4','Приветствую, друзья! \r\n \r\nК вам обращается агентство по СЕО продвижению XRumer LLC. \r\n \r\nВаш сайт, как можно отметить, только набирает обороты. Чтобы ускорить процесс его роста, предлагаем услуги по SEO-оптимизации. Также у нас имеются доступные и качественные инструменты для SEO-специалистов. У нашей компании значительный опыт в данной области, в арсенале присутствуют успешные кейсы - если интересно, предоставим по запросу. \r\n \r\nСейчас можем предложить скидку на все услуги - 10%. \r\n \r\nСреди предложений следующее: \r\n \r\n- Супер трастовые ссылки (необходимо абсолютно всем сайтам) – от 1,5 до 5000 р \r\n \r\n- Безанкорные ссылки (2500 штук) (рекомендуется любым сайтам) – 3900 р \r\n \r\n- Топовый прогон на 110 000 сайтов (зона RU) – 2.900 рублей \r\n \r\n- 150 постов в VK о вашем сайте (поможет в рекламе) – 3.900 р \r\n \r\n- Публикации про ваш сайт на 300 форумах (очень мощная раскрутка интернет-ресурса) – 29000 р \r\n \r\n- СуперПостинг – комплексный прогон по 3 млн ресурсов (очень мощный прогон для ваших сайтов) – 39.900 р \r\n \r\n- Рассылка рекламных сообщений по сайтам через форму обратной связи – цена по договоренности, будет зависеть от объема. \r\n \r\nОбращайтесь, всегда подскажем по всем возникающим вопросам. \r\n \r\n \r\nОплата: Yoo.Money, Bitcoin, МИР, СБП, Visa, MasterCard... \r\nПринимаем USDT - Отчётность. \r\nТелега: https://t.me/exrumer \r\nSkype: Loves.Ltd \r\n \r\nТолько этот.',''),(9259,1,2286,'5','Nokia',''),(9260,1,2287,'6','Maximilian Busch',''),(9261,1,2287,'2','646343591',''),(9262,1,2287,'3','maximilian.busch@gmail.com',''),(9263,1,2287,'4','Dear Colleague\r\n\r\nHave you tried Video Marketing for your products? \r\nNo longer do you need a mega budget to generate videos.\r\nTry this powerful https://videofromtext.com software free.\r\nGenerate hundreds of videos for Twitter, Facebook, Tiktok and Snapchat.\r\nPay once, use forever.\r\n\r\nGet this Game Changer software today, you deserve it.\r\n\r\nThanks\r\n\r\nEmily Chang',''),(9264,1,2288,'6','Eric Jones',''),(9265,1,2288,'2','555-555-1212',''),(9266,1,2288,'3','ericjonesmyemail@gmail.com',''),(9267,1,2288,'4','Hi juiceelectrical.co.nz Owner!\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9268,1,2289,'6','Govidan suresh Kumar',''),(9269,1,2289,'2','02108639150',''),(9270,1,2289,'3','sk7333225@gmail.comll',''),(9271,1,2289,'4','lam see the net only',''),(9272,1,2289,'5','lam looking for net',''),(9273,1,2290,'6','Tedphync',''),(9274,1,2290,'2','81577458858',''),(9275,1,2290,'3','kayleighbpsteamship@gmail.com',''),(9276,1,2290,'4','Hi, მინდოდა ვიცოდე თქვენი ფასი.',''),(9277,1,2290,'5','AliExpress',''),(9278,1,2291,'6','Rosetta Reece',''),(9279,1,2291,'2','184040937',''),(9280,1,2291,'3','info@collab.rotev.io',''),(9281,1,2291,'4','Hi there,\r\n\r\nMy name is Shahar and I\'m the founder of Rotev Marketing. I\'m reaching out because Webflow could be the perfect platform for representing your brand online.\r\n\r\nWith Webflow\'s visual design tools, you can craft custom sites that tell your story and truly capture your brand\'s personality. Dynamic features like animations and interactive elements make browsing more engaging.\r\n\r\nMany growing companies are choosing Webflow for its flexibility and performance. I\'d love to show you samples of our work and discuss how we could develop an impressive and eye-catching website for your business which will help you attract more customers. I\'d be happy to give you a FREE 15-minute call at no cost to discuss your website goals and needs.\r\n\r\nReply \"Yes\" if you\'re interested in a 15 minute intro call to explore building your presence with Webflow.\r\n\r\nWarm Regards,\r\nShahar Zohar\r\ninfo@collab.rotev.io\r\nWhatsapp: https://wa.me/17722103292',''),(9282,1,2292,'6','David Moore',''),(9283,1,2292,'2','462707288',''),(9284,1,2292,'3','sierra.lorraine59@gmail.com',''),(9285,1,2292,'4','Hello SEO Expert,\r\n\r\nAre you struggling finding the right phrases to grow your website’s visibility?\r\n\r\nWith Keyword Researcher Pro, you can discover hidden long-tail keywords that are often overlooked by the competition, helping you own your SEO strategy.\r\n\r\nHere’s why you need Keyword Researcher Pro:\r\n\r\n Instantly discover profitable keywords using Google’s AutoComplete feature.\r\n Organize and filter keywords without hassle, leaving only the highest-converting options.\r\n Write SEO-optimized content directly within the tool’s built-in article editor.\r\n Publish content directly to your WordPress site, cutting out unnecessary steps and saving time.\r\n\r\nIt’s easy to get started, and it’s the best way to take your SEO efforts to the next level.\r\n\r\nReady to see the results?\r\nClick here to get started now: https://t.ly/4njJK\r\n\r\nIf you would prefer not to receive further emails from us, you can unsubscribe here: http://baothethao.net/unsubscribe.php?d=juiceelectrical.co.nz.\r\n\r\nBest regards,\r\nRichie Wesley\r\n9550 Mason Montgomery Rd #1085\r\nMason, OH 45040\r\nUnited States',''),(9286,1,2293,'6','Eric Jones',''),(9287,1,2293,'2','555-555-1212',''),(9288,1,2293,'3','ericjonesmyemail@gmail.com',''),(9289,1,2293,'4','Hi juiceelectrical.co.nz Admin. this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9290,1,2294,'6','Orville Maurice',''),(9291,1,2294,'2','1197854176',''),(9292,1,2294,'3','orville.maurice52@gmail.com',''),(9293,1,2294,'4','Hi fellow Internet Stormer\r\n\r\nStop wasting time creating \'unique content\'. Google\'s craporithm punishes you, and rewards those who use mechanized SEO.\r\nWrite one really good article, 1000 words long. Then use this HIGH PERFORMANCE GRAMMAR CONSCIOUS 2024-2025 ARTICLE SPINNER:\r\nhttps://usreviewers.com/spinner\r\nYou will be stunned speechless when you see the quality and uniqueness of the articles you can make. Make your one article into 100 Unique and Readable and Sensible Articles.\r\nGet on Fiverr and have those guys submit it all over the web, each linking back to your website, ideally to different pages on your website.\r\nThis is how you make PLATINUM BACKLINKS built to make last and last.\r\n\r\nYou cannot win the SEO game by throwing money and time at it. Play smart, beat Google at their own game. \r\n\r\nViel Gluck!\r\n\r\nJessi',''),(9294,1,2295,'6','Eric Jones',''),(9295,1,2295,'2','555-555-1212',''),(9296,1,2295,'3','ericjonesmyemail@gmail.com',''),(9297,1,2295,'4','Hello juiceelectrical.co.nz Owner! this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9298,1,2296,'6','Noel Schaeffer',''),(9299,1,2296,'2','31426545',''),(9300,1,2296,'3','schaeffer.noel@gmail.com',''),(9301,1,2296,'4','Expand Your Business with Our B2B Services\r\n\r\nDear,\r\n\r\nWe offer a comprehensive range of B2B services tailored to help your business grow. \r\n\r\nFrom affiliate marketing and venue/event promotion to providing indoor-outdoor entertainment for travel companies, \r\nOnline services or software to other businesses, we cover it all.\r\n\r\nOur targeted outreach connects you with the right partners, driving traffic to your business and generating valuable leads.\r\n\r\nLet’s discuss how we can support your growth.\r\n\r\nPlease contact us @ info@alliansolutions.com\r\n\r\nOr visit us On https://alliansolutions.com/\r\n\r\nBest regards,\r\n\r\nAllianSolutions.com\r\n\r\ninfo@alliansolutions.com',''),(9302,1,2297,'6','Candice Gallagher',''),(9303,1,2297,'2','9568043420',''),(9304,1,2297,'3','candice.gallagher321@gmail.com',''),(9305,1,2297,'4','Hello,\r\n\r\nUnlock the full potential of your brand\'s digital presence with our reimagined Web Design service. We go beyond the ordinary, crafting websites that blend creativity, functionality, and a touch of innovation.\r\n\r\nDigital Evolution: Join the digital evolution with a website that reflects the evolving nature of your brand. Our designs are future-ready, adapting seamlessly to the changing digital landscape.\r\n\r\nCreative Fusion: Experience the magic of creative fusion, where every design element is meticulously crafted to tell your brand\'s story in a visually captivating manner.\r\n\r\nSmart Design: Our Web Design service is not just about aesthetics; it\'s about smart design. We ensure your website is not only visually appealing but also strategically designed for optimal performance.\r\n\r\nColor Your Narrative: Infuse vibrant colors into your brand\'s narrative. Our designs are a palette of possibilities, allowing your brand to shine with a vibrant and memorable online presence.\r\n\r\nReady to reimagine your digital space? Reply to this message, and let\'s embark on a journey to redefine your brand\'s online narrative.\r\n\r\nBest,\n\nCandice Gallagher',''),(9306,1,2298,'6','Pamela Whiting',''),(9307,1,2298,'2','0277261092',''),(9308,1,2298,'3','elantiles@gmail.com',''),(9309,1,2298,'4','Hi, I see you mention portable Air cons, do you sell or install these? I am renting so dont have any other option',''),(9310,1,2298,'5','Google search',''),(9311,1,2299,'6','Diana Cruz',''),(9312,1,2299,'2','1234567890',''),(9313,1,2299,'3','dianacruz.mkt@gmail.com',''),(9314,1,2299,'4','Hello juiceelectrical.co.nz team,\r\n\r\nAre you still trying to grow your SEO (Search Engine Optimization)?\r\n\r\nWe can help you to increase your website SEO/ranking with all keywords on Google. Yahoo & Bing.\r\n\r\nIf interested, kindly provide me your name, phone number, and email.\r\n\r\nYour sincerely,\r\nDiana\r\n\r\n\r\n\r\n\r\nNote: - If you’re not Interested in our Services, send us \"opt-out\"',''),(9315,1,2300,'6','Eric Jones',''),(9316,1,2300,'2','555-555-1212',''),(9317,1,2300,'3','ericjonesmyemail@gmail.com',''),(9318,1,2300,'4','To the juiceelectrical.co.nz Owner. my name’s Eric and I just ran across your website at juiceelectrical.co.nz...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause 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.\r\n\r\nI have the solution:\r\n\r\nWeb 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.\r\n\r\nCLICK 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.\r\n\r\nPlus, 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.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK 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!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9319,1,2301,'6','Delilah Grant',''),(9320,1,2301,'2','7950790444',''),(9321,1,2301,'3','grant.delilah@gmail.com',''),(9322,1,2301,'4','Our Rockstar Team of Web Developers is faster and less expensive that your current “web guy”\r\n\r\nHow do we know? If you are paying more than $20 per hour and waiting weeks for small updates we feel your pain.\r\nWe charge $20 per hour compared to $35 -$75 per hour in the market.\r\nWe can also do flat project based pricing if that\'s your preference.\r\n\r\nNo job is too big or too small.\r\nGet a fast and friendly no obligation quote today. Your budget will thank you.\r\nUse the link in my signature below, for a quick turn around quote.\r\n\r\n\r\nWarmly,\r\n\r\nDan Setzinger\r\nSenior Web Specialist \r\nFusion Web Experts \r\n186 Daniel Island Drive \r\nDaniel Island, SC 29492 \r\nDan.Setzinger@FusionWebExpertsUsa.com\r\nhttps://www.FusionWebExpertsUSA.com',''),(9323,1,2302,'6','Phil Stewart',''),(9324,1,2302,'2','342-123-4456',''),(9325,1,2302,'3','noreplyhere@aol.com',''),(9326,1,2302,'4','Blast your ad to 500,000 contact forms every day for just $199/mo! For Details: http://x2rur6.contactformblasting.xyz',''),(9327,1,2303,'6','Jermaine',''),(9328,1,2303,'2','1959852118',''),(9329,1,2303,'3','jermaine@heinz.thawking.shop',''),(9330,1,2303,'4','Good day \r\n\r\nDefrost frozen foods in minutes safely and naturally with our THAW KING™. \r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time.\r\n\r\nBuy now: https://thawking.shop\r\n\r\nTo your success, \r\n\r\nJermaine',''),(9331,1,2304,'6','Tedphync',''),(9332,1,2304,'2','82328463845',''),(9333,1,2304,'3','kayleighbpsteamship@gmail.com',''),(9334,1,2304,'4','Hai, saya ingin tahu harga Anda.',''),(9335,1,2304,'5','AliExpress',''),(9336,1,2305,'6','Pablo Quintero',''),(9337,1,2305,'2','496034129',''),(9338,1,2305,'3','pablo.quintero@hotmail.com',''),(9339,1,2305,'4','Experience the power of advanced SEO with seogeek .io 14 days free trial! Boost your website\'s visibility and surpass your competitors with our state-of-the-art tools and analytics. Key features:\r\n\r\n- Comprehensive keyword research and analysis\r\n\r\n- Instant rank tracking for your target keywords\r\n\r\n- Detailed competitor analysis and benchmarking\r\n\r\n- On-page SEO optimization suggestions\r\n\r\n- Backlink profile analysis and monitoring\r\n\r\n- Site audit tools to identify and fix technical SEO issues\r\n\r\n- Organic Keyword report so you know how your site really ranks\r\n\r\n- Backlink report with spam score\r\n\r\n- Content generation with built-in AI for images, ads, social media posts, and more\r\n\r\nNo credit card required to start your complimentary 14 days trial\r\n\r\nSign up now and elevate your SEO game with https://bit.ly/seogeekio (seogeek .io)\r\n\r\n\r\n\r\n\r\n\r\nYou can unsubscribe by sending an email with subject \"Unsubscribe\" to hortzsteven@gmail.com\r\n49 Place Du Jeu De Paume, Vienne, RHONE-ALPES, France, 38200',''),(9340,1,2306,'6','Cody Kiesanowski',''),(9341,1,2306,'2','02102793546',''),(9342,1,2306,'3','kiesanowski.cody@gmail.com',''),(9343,1,2306,'4','Hi team,\r\nLooking at getting some new electrical socket fixtures in my home. Would love to get a quote.\r\nWhat is the process?\r\nThank you',''),(9344,1,2306,'5','Google',''),(9345,1,2307,'6','Mike Glyde',''),(9346,1,2307,'2','2096059738',''),(9347,1,2307,'3','mike.glyde@gmail.com',''),(9348,1,2307,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ln.run/kCF8b\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly increase your website\'s reach and engagement.',''),(9349,1,2308,'6','Bobby Lee',''),(9350,1,2308,'2','3156364446',''),(9351,1,2308,'3','info.bobbylee@gmail.com',''),(9352,1,2308,'4','Hi, \r\n\r\nI hope you\'re doing well.\r\n\r\nWe do all types of estimates, complete GC or single trade, we do it all. \r\n\r\nWe offer: \r\nQuantity takeoff.\r\nWorker rates.\r\n100 percent accuracy with experienced and certified estimators.\r\nCompetitive cost.\r\nCultured take-off sheets.\r\nQuick turnaround time. Discount on projects. \r\n\r\nWould you be interested in our services? We’ll gladly send a few sample estimates on your request. \r\n\r\nThank you!',''),(9353,1,2308,'5','google',''),(9354,1,2309,'6','Eric Jones',''),(9355,1,2309,'2','555-555-1212',''),(9356,1,2309,'3','ericjonesmyemail@gmail.com',''),(9357,1,2309,'4','To the, Eric here with a quick thought about your website juiceelectrical.co.nz Webmaster.\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI 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.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt 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.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9358,1,2310,'6','Oliver Kim',''),(9359,1,2310,'2','+1 (719) 403-7946',''),(9360,1,2310,'3','oliver@alfarep.com',''),(9361,1,2310,'4','Want Positive reviews because You\'re not on top, you\'re missing out. Alfa Reputation will have real, high-quality positive reviews that stick, available on platforms like Google, Yelp, Trustpilot, Airbnb, TripAdvisor, and more. Studies show that potential customers read reviews before making decisions—so why not boost your credibility and rise to the top?\r\n\r\n✔ Pay for verified, successful reviews\r\n✔ Affordable, no-risk service\r\n✔ 100% secure, with genuine reviews\r\n\r\nDon’t wait—improve your reputation!\r\n\r\nConnect with us:\r\nWebsite:https://alfarep.com/\r\nEmail or WhatsApp Us: +1 (719) 403-7946\r\nDirect WhatsApp Link: https://wa.me/qr/KRFK6LE53TDQJ1',''),(9362,1,2311,'6','🔨 You have received 1 notification # 545. Open >> out.carrotquest-mail.io/r?hash=YXBwPTY0MDcyJmNvbnZlcnNhdGlvbj0xNzkzOTE5MzEwMDQ1OTA3OTA3JmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnJlZGxpbmtiaXRzLnRvcCUyRmdvJTJGeTJiNDAzJTJGMjNiNCZyYWlzZV9vbl9lcnJvcj1GYWxzZSZzaWduYXR1cmU9MjhkY2IwZjc1MWNiMmM1ZGE2N2E3MTIxN2MxZjc2NDAyODNiNTcyNmQxZDYxYTA1ZDkwYzM4MjEwOTI1MTkzMg==?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 🔨',''),(9363,1,2311,'2','647097765609',''),(9364,1,2311,'3','amaki@couxpn.com',''),(9365,1,2311,'4','5lcl3p',''),(9366,1,2311,'5','7a6c97',''),(9367,1,2312,'6','Rosanna Katene',''),(9368,1,2312,'2','0279207895',''),(9369,1,2312,'3','ro.katene@gmail.com',''),(9370,1,2312,'4','We have two LED lights in our lounge that aren’t working. We can’t get the bulbs out but they need replacing. We are going away but wondered if someone could have a look next week, please. If that was possible.',''),(9371,1,2313,'6','📯 We send a gift from our company. Gо tо withdrаwаl =>> https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 📯',''),(9372,1,2313,'2','039623950088',''),(9373,1,2313,'3','friedenspfeifen@omggreatfoods.com',''),(9374,1,2313,'4','pvqeqg',''),(9375,1,2313,'5','8jrz1z',''),(9376,1,2314,'6','George Diaz',''),(9377,1,2314,'2','6864156703',''),(9378,1,2314,'3','charles.bell@yahoo.com',''),(9379,1,2314,'4','Hi there,\r\n\r\nLooking to improve your online presence or company without overspending? Fiverr features a variety of services—everything from graphic design to website creation, starting as low as $5!\r\n\r\nWhether you are looking for a brand identity, site improvement, advertising assistance, or something else, Fiverr matches you with talented freelancers eager to complete the task done quickly and affordably.\r\n\r\nCheck it out here: https://bit.ly/fiverr-professional-services\r\n\r\nThank you,\r\n\r\n\r\n\r\n\r\nIf you want to unsubcribe from these amazing newsletters, please fill the form at https://bit.ly/unsubscribenews',''),(9380,1,2315,'6','Joanna Riggs',''),(9381,1,2315,'2','3400483183',''),(9382,1,2315,'3','joannariggs278@gmail.com',''),(9383,1,2315,'4','Hi,\r\n\r\nI just visited juiceelectrical.co.nz and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur prices start from just $195.\r\n\r\nWe have produced over 500 videos to date and work with both non-animated and animated formats:\r\n\r\nNon-animated example:\r\nhttps://www.youtube.com/watch?v=bA2DyChM4Oc\r\n\r\nAnimated example:\r\nhttps://www.youtube.com/watch?v=JG33_MgGjfc\r\n\r\nLet me know if you\'re interested in learning more and/or have any questions.\r\n\r\nRegards,\r\nJoanna',''),(9384,1,2316,'6','Karol Hogarth',''),(9385,1,2316,'2','7860608133',''),(9386,1,2316,'3','hogarth.karol@googlemail.com',''),(9387,1,2316,'4','How are you doing! My name is Karol Hogarth. \r\n \r\nBe Expressive! \r\n \r\nGo to the site Tiara Galiano Com if you need Leggings, Lingerie, Swimwear or Socks. \r\n \r\nNow everything is discounted! \r\n \r\nFollow the link and use code \"VIP\" for an extra discount in Men\'s Briefs: \r\n \r\nhttps://bit.ly/3t0V6KJ \r\n \r\nGreetings, Karol Hogarth',''),(9388,1,2317,'6','EvgeniySherementev',''),(9389,1,2317,'2','85386921971',''),(9390,1,2317,'3','555555@loves-ltd.com',''),(9391,1,2317,'4','Онкология? Настрой на победу: Разработка Сибирских ученых позволяет усилить положительный эффект химиотерапии и лучевой терапии без осложнений и интоксикаций. \r\nПодробнее по тел/вотсап: 89139175990 \r\nhttps://telegra.ph/Borba-s-onkologiej-10-01',''),(9392,1,2317,'5','FBI',''),(9393,1,2318,'6','Tamie Inglis',''),(9394,1,2318,'2','559502068',''),(9395,1,2318,'3','tamie.inglis@yahoo.com',''),(9396,1,2318,'4','Enhancing your website\'s performance and monitoring your marketing efforts just got more straightforward! With our UTM Code Generator at SEOGEEK, you can:\r\n\r\nCraft custom tracking codes effortlessly to gain valuable insights into your digital marketing campaigns.\r\nIdentify where your traffic comes from to optimize your strategies effectively.\r\n\r\n\r\nMeasure the effectiveness of your campaigns with UTM codes, allowing for smart decisions that improve your marketing efforts.\r\n\r\nIf you\'re ready to get started, check out our resources:\r\n\r\nQuick tutorial video on using the UTM Code Generator: https://www.youtube.com/watch?v=LkZm0rtMrbM\r\nLearn more about the importance of UTM codes for your campaigns: https://bit.ly/generateutm\r\n\r\nLet us take your digital marketing to the next level!\r\n\r\n\r\n\r\n\r\n\r\nYou can unsubscribe by filling the form with your website URL at https://bit.ly/unsubus\r\nSondanella 19, Gross, Chandler , AZ, United States',''),(9397,1,2319,'6','Masonphync',''),(9398,1,2319,'2','81352913565',''),(9399,1,2319,'3','yjdisantoyjdissemin@gmail.com',''),(9400,1,2319,'4','Hola, quería saber tu precio..',''),(9401,1,2319,'5','Apple',''),(9402,1,2320,'6','Katelyn Raiden',''),(9403,1,2320,'2','2381770303',''),(9404,1,2320,'3','katelynraiden@gmail.com',''),(9405,1,2320,'4','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically.\r\n\r\n- We guarantee to gain you 700-1500+ subscribers per month.\r\n- People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\n The price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nKatelyn',''),(9406,1,2321,'6','Rose Ray',''),(9407,1,2321,'2','0275252153',''),(9408,1,2321,'3','roseray@mail.com',''),(9409,1,2321,'4','Hi I had my plumber come out as my HWC didn\'t seem to be working. It appears there is a break in the wiring from the power at the cylinder and where it goes into the main board. He checked the plug inlet and there appeared to be power there and power from the main board so his thought that there is a break somewhere. So basically I need a quote to get this wiring replaced. DSW have said they will lend me the money for this but I need a quote. Are you able to help? Thanks so much if you could get back to me. I am in King Street, Sydenham. Kind regards Rose Ray',''),(9410,1,2321,'5','DSW',''),(9411,1,2322,'6','Davidphync',''),(9412,1,2322,'2','84938219877',''),(9413,1,2322,'3','kayleighbpsteamship@gmail.com',''),(9414,1,2322,'4','Xin chào, tôi muốn biết giá của bạn.',''),(9415,1,2322,'5','Nokia',''),(9416,1,2323,'6','Herman Diggs',''),(9417,1,2323,'2','12345678',''),(9418,1,2323,'3','herman.diggs@gmail.com',''),(9419,1,2323,'4','We submit your message to millions of website contact forms:\r\n\r\nBroadcast your message to numerous of email inboxes starting at 19 usd. We\'ll deliver your message via millions website contact forms, making sure all messages reach the inbox. Generate leads, site visits, purchasers, and awareness.\r\n\r\nVisit https://bit.ly/blastcforms\r\n\r\n\r\n\r\n\r\nUnsubscribe here if you want to stop receiving these good emails: https://bit.ly/3zPICbK\r\nEsplanade 91, Wiesentheid, BY, Germany, 97353',''),(9420,1,2324,'6','Wiley Roos',''),(9421,1,2324,'2','09830152514',''),(9422,1,2324,'3','wileyroos2022@gmail.com',''),(9423,1,2324,'4','Hey there,\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too.\r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search.\r\nIf you are interested then please let me know. I will send to you our Prices and Packages\r\nNote: - If you are interested then we will send you, optimization report of your website.\r\nThank you kindly for your time and consideration,\r\nLooking forward to working with you.\r\nKindest regards,\r\nWiley Roos\r\nSpread the love!',''),(9424,1,2324,'5','google',''),(9425,1,2325,'6','Natajer',''),(9426,1,2325,'2','86228529378',''),(9427,1,2325,'3','woodthighgire1988@gmail.com',''),(9428,1,2325,'4','I am looking for sex, but do you want? Come in here https://datingsmatches-meets.top/?u=41nkd08&o=8dhpkzk',''),(9429,1,2325,'5','Google',''),(9430,1,2326,'6','Darren',''),(9431,1,2326,'2','0276427626',''),(9432,1,2326,'3','darrenswaney692@gmail.com',''),(9433,1,2326,'4','Hi ya I’m look to change out my cottage lights can u give me a cost please',''),(9434,1,2326,'5','Use to work with back in the day',''),(9435,1,2327,'6','Boris Waid',''),(9436,1,2327,'2','4169162669',''),(9437,1,2327,'3','boris.waid@gmail.com',''),(9438,1,2327,'4','Receive your free backlink analysis today!\r\n\r\nhttps://aluzzion.com/go/free-backlink-analysis-tool-for-seo\r\n\r\nExplore a comprehensive SEO backlink analysis now to strengthen your digital strategy! Consider it checking the backbone of your online presence for stability and growth. Discover the credibility your site commands, and convert your backlink profile into a roadmap for improved search engine rankings and enhanced traffic. Spot harmful links to disavow and seize opportunities for strong link-building.\r\n\r\nThis allows for multiple variations of the message while maintaining clarity and intent.\r\n\r\n\r\n\r\n\r\n\r\n\r\nYou can unsubscribe by sending an email with subject \"Unsubscribe\" to hortzsteven@gmail.com\r\n2946 Horner Ave, San Leandro, California, US',''),(9439,1,2328,'6','Chau Picot',''),(9440,1,2328,'2','12345678',''),(9441,1,2328,'3','writingfeedback@writingbybenjamin.com',''),(9442,1,2328,'4','Hey there,\r\n\r\nAre you finding it hard to make time to write articles?\r\n\r\nBring in an expert SEO writer today!\r\n\r\nAll the research is done for you and deliver high-quality SEO content perfect for higher ranking and enhance your visitor interaction.\r\n\r\nLooking for fresh content for your content strategy or content marketing strategies, take a look at our latest content offers here:\r\nhttps://bit.ly/writingbyben\r\n\r\nBen\r\nContact me directly at behinger@writingbybenjamin.com or on Skype: behinger19 with any questions.\r\n\r\n\r\n\r\nIf you don\'t want to get an email from me on this matter again, please reply back with the text: \"No, thank you\"',''),(9443,1,2329,'6','Reuben Tozer',''),(9444,1,2329,'2','3671234197',''),(9445,1,2329,'3','tozer.reuben@gmail.com',''),(9446,1,2329,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ln.run/VZn5V\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This service could greatly increase your website\'s reach and traffic.',''),(9447,1,2330,'6','Paige Abigail',''),(9448,1,2330,'2','8623772407',''),(9449,1,2330,'3','abigail.paige31@gmail.com',''),(9450,1,2330,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ln.run/_s3yp\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This opportunity could greatly enhance your website\'s reach and visitors.',''),(9451,1,2331,'6','Masonphync',''),(9452,1,2331,'2','89137879474',''),(9453,1,2331,'3','idipufazawum98@gmail.com',''),(9454,1,2331,'4','Hej, jeg ønskede at kende din pris.',''),(9455,1,2331,'5','FBI',''),(9456,1,2332,'6','Masonphync',''),(9457,1,2332,'2','88251242258',''),(9458,1,2332,'3','idipufazawum98@gmail.com',''),(9459,1,2332,'4','Aloha, makemake wau eʻike i kāu kumukūʻai.',''),(9460,1,2332,'5','Wallmart',''),(9461,1,2333,'6','alex molari',''),(9462,1,2333,'2','882192488',''),(9463,1,2333,'3','bestprivatecomunication@gmail.com',''),(9464,1,2333,'4','Hi Contact - Juice Electrical,\r\n\r\nStruggling to manage your inbox? Clean Email is here to help! With our tool, you can declutter, unsubscribe, and automate email management with ease.\r\n \r\nPlus, we guarantee your privacy.\r\n\r\nClick the link below to learn more and start your 30-day free trial: https://cleanemailr.pxf.io/c/5171776/1114174/5448\r\n\r\nTry it today and see how a clean inbox can transform your productivity!\r\n\r\nBest regards,\r\n\r\nAlex \r\n\r\nX Best world ou\r\n\r\ninfo@bestqtf.com',''),(9465,1,2334,'6','Chester Judd',''),(9466,1,2334,'2','246558984',''),(9467,1,2334,'3','chester.judd75@gmail.com',''),(9468,1,2334,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ln.run/_s3yp\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This opportunity could greatly enhance your website\'s reach and engagement.',''),(9469,1,2335,'6','Rosemary Le Fanu',''),(9470,1,2335,'2','3901739384',''),(9471,1,2335,'3','lefanu.rosemary@gmail.com',''),(9472,1,2335,'4','Hi!\r\n\r\nIt is with sad regret to inform you that LeadsBox.biz is shutting down. \r\n\r\nWe have made all our databases available to the public. \r\n\r\n25 Million Companies!\r\n527 Million People! \r\n145 Countries! \r\n\r\nCome visit us on LeadsBox.biz',''),(9473,1,2336,'6','Ziqi Yan',''),(9474,1,2336,'2','0211835685',''),(9475,1,2336,'3','yanziqi980602@gmail.com',''),(9476,1,2336,'4','Hi, I want to add some power sockets in the house, can you give me a call to discuss? Many thanks.',''),(9477,1,2336,'5','Google search',''),(9478,1,2337,'6','Davidphync',''),(9479,1,2337,'2','85177771113',''),(9480,1,2337,'3','kayleighbpsteamship@gmail.com',''),(9481,1,2337,'9','Mtskheta',''),(9482,1,2337,'4','Hola, quería saber tu precio..',''),(9483,1,2337,'5','AliExpress',''),(9484,1,2338,'6','Joe Klein',''),(9485,1,2338,'2','+65 6851 7457',''),(9486,1,2338,'3','joe@adamfortrade.com',''),(9487,1,2338,'9','Ayko cxype L',''),(9488,1,2338,'4','Hello,\r\n\r\nI wanted to quickly share some exciting news! ADAMftd, a new service from the International Trade Council, is about to launch, and pre-subscriptions are available to a limited group of test users.\r\nADAMftd is designed to simplify global trade by offering:\r\n\r\n • Global market prospecting – Discover new buyers and partners.\r\n\r\n • Company due diligence – Instantly verify business credentials.\r\n\r\n • Product regulations – Stay compliant with global rules.\r\n\r\nWe’d love your feedback before it officially launches. \r\n\r\nTake a look at adamfortrade.com and let me know what you think!\r\n\r\nBest regards,\r\n\r\nJoe',''),(9489,1,2339,'6','Oliver Kim',''),(9490,1,2339,'2','+1 (719) 403-7946',''),(9491,1,2339,'3','oliver@alfareviews.com',''),(9492,1,2339,'9','3060 N. Academy Boulevard',''),(9493,1,2339,'4','Get Posotive reviews because You\'re not on top, you\'re missing out. Alfa Reviews offer real, high-quality positive reviews that stick, available on platforms like Google, Yelp, Trustpilot, Airbnb, TripAdvisor, and more. Studies show that potential customers read reviews before making decisions—so why not boost your credibility and rise to the top?\r\n\r\n✔ Pay only for verified, successful reviews\r\n✔ Affordable, risk-free service\r\n✔ 100% legal, with genuine reviews\r\n\r\nDon’t wait—improve your reputation now!\r\n\r\nGet in Touch:\r\nEmail or WhatsApp Us: +1 (719) 403-7946\r\nDirect WhatsApp Link: https://wa.me/qr/KRFK6LE53TDQJ1',''),(9494,1,2340,'6','Rafsan Jane',''),(9495,1,2340,'2','008801601701933',''),(9496,1,2340,'3','rafsan@rafsanjane.com',''),(9497,1,2340,'9','186 Central Gaza',''),(9498,1,2340,'4','Hi\r\n\r\nI\'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/',''),(9499,1,2341,'6','Roberta Arnot',''),(9500,1,2341,'2','9287771161',''),(9501,1,2341,'3','roberta.arnot@gmail.com',''),(9502,1,2341,'9','3883 Martha Street',''),(9503,1,2341,'4','I see that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ln.run/_s3yp\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This opportunity could greatly increase your website\'s reach and visitors.',''),(9504,1,2342,'6','Noreen Ehret',''),(9505,1,2342,'3','ehret.noreen@hotmail.com',''),(9506,1,2342,'9','Pfarrgasse 32',''),(9507,1,2342,'4','Find the perfect AI tools to streamline your workflow and boost productivity.\r\n\r\n\r\n\r\n✨ https://top-ai-directory.com ✨\r\n\r\n\r\n\r\nUncover practical AI applications to optimize your processes.\r\n\r\n\r\n\r\nSincerely,\r\n\r\nFelipe Gil',''),(9508,1,2343,'6','Eric Jones',''),(9509,1,2343,'2','555-555-1212',''),(9510,1,2343,'3','ericjonesmyemail@gmail.com',''),(9511,1,2343,'9','420 Lexington Ave',''),(9512,1,2343,'4','To the juiceelectrical.co.nz Admin. this is Eric and I ran across juiceelectrical.co.nz a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy 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?\r\n\r\nHonestly, 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.\r\n\r\nHere’s an idea…\r\n \r\nHow 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…\r\n \r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt 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.\r\n \r\nThat 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.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(9513,1,2344,'6','Steve Bruerton',''),(9514,1,2344,'2','0275030208',''),(9515,1,2344,'3','steve.ngaire@xtra.co.nz',''),(9516,1,2344,'9','253 Kennedys Bush Road',''),(9517,1,2344,'4','Hi\r\nIm looking for quotes for wiring up my new stand alone garage. Connect to house, circuit breaker board, lights, outlet plugs. Electrical certificate.\r\nThanks\r\nSteve',''),(9518,1,2344,'5','google search',''),(9519,1,2345,'6','Matthew Williams',''),(9520,1,2345,'2','8364639102',''),(9521,1,2345,'3','futurosalesco@gmail.com',''),(9522,1,2345,'9','Ufnau Strasse 36',''),(9523,1,2345,'4','Hey there,\r\n\r\nImagine never having to worry about hitting API limits or paying recurring fees ever again. Sounds too good to be true? Well, let me introduce you to Zentara\'s game-changing Custom Unlimited Lifetime APIs!\r\n\r\nI’m Matthew Williams, and I’m here to tell you how our APIs can revolutionize your business. Whether you\'re a tech founder, developer, CTO, CEO, entrepreneur, or solopreneur, this is the breakthrough you’ve been waiting for.\r\n\r\nHere’s the deal:\r\n- Unlimited API calls – No more worrying about limits. Ever.\r\n- Lifetime access – Pay once, use forever.\r\n- Custom solutions – APIs tailored to your specific needs.\r\n\r\nDon’t let limits hold you back. Click here to learn more about how Zentara can fuel your growth!\r\n\r\n\r\nReady to unlock your business\'s full potential? Click the link now to get your Custom Unlimited Lifetime API and start your journey to limitless success! [Get Your API] (https://arsourceinfo.wixstudio.io/lifetime-api)\r\n\r\n\r\nTo your limitless success,\r\nMatthew Williams, President, Zentara',''),(9524,1,2346,'6','Tegan Baber',''),(9525,1,2346,'2','12345678',''),(9526,1,2346,'3','writingfeedback@writingbybenjamin.com',''),(9527,1,2346,'9','26 Glendonbrook Road',''),(9528,1,2346,'4','Hey,\r\n\r\nIs it difficult for you to make time to write articles?\r\n\r\nBring in an expert SEO writer today!\r\n\r\nI do all the research and offer professionally written SEO articles to help boost your rankings and enhance your visitor interaction.\r\n\r\nIf you need fresh articles for your blog or to enhance your content marketing, check out our current content specials here:\r\nhttps://bit.ly/benwriting\r\n\r\nBenjamin\r\nContact me directly at behinger@writingbybenjamin.com or on Skype: behinger19 with any questions.\r\n\r\n\r\n\r\nIf you don\'t want to get an email from me on this matter again, please reply back with the text: \"No, thank you\"',''),(9529,1,2347,'6','Tedphync',''),(9530,1,2347,'2','83811335539',''),(9531,1,2347,'3','axobajigufo34@gmail.com',''),(9532,1,2347,'9','City',''),(9533,1,2347,'4','Hi, ego volo scire vestri pretium.',''),(9534,1,2347,'5','AliExpress',''),(9535,1,2348,'6','Neva Minnis',''),(9536,1,2348,'2','8456255910',''),(9537,1,2348,'3','neva.minnis@msn.com',''),(9538,1,2348,'9','3997 Marshville Road',''),(9539,1,2348,'4','Download the BEST Document Scanner App for your Android Phones. https://littlescanner.com\r\nAnd here is how to use it: https://www.youtube.com/watch?v=MI7ln0ExiDI\r\nTotally free to use, remove ads with a small one time payment. Get rid of your nasty pay every month scanning up.\r\nThis is the only damn scanner App you will ever need for your damn phone.\r\n\r\nLaden Sie die BESTE Dokumentenscanner-App für Ihre Android-Telefone herunter. https://littlescanner.com\r\nUnd so verwenden Sie es: https://www.youtube.com/watch?v=MI7ln0ExiDI\r\nDie Nutzung ist völlig kostenlos. Entfernen Sie Anzeigen mit einer kleinen einmaligen Zahlung. Befreien Sie sich mit jedem monatlichen Scan von Ihrem fiesen Gehalt.\r\nDies ist die einzige verdammte Scanner-App, die Sie jemals für Ihr verdammtes Telefon brauchen werden.',''),(9540,1,2349,'6','Rafsan Jane',''),(9541,1,2349,'2','008801601701933',''),(9542,1,2349,'3','rafsan@rafsanjane.com',''),(9543,1,2349,'9','186 Central Gaza',''),(9544,1,2349,'4','Hi\r\n\r\nI\'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/',''),(9545,1,2350,'6','Masonphync',''),(9546,1,2350,'2','89644176217',''),(9547,1,2350,'3','somasesokiyo31@gmail.com',''),(9548,1,2350,'9','City',''),(9549,1,2350,'4','Hi, roeddwn i eisiau gwybod eich pris.',''),(9550,1,2350,'5','Nokia',''),(9551,1,2351,'6','Steve Burman',''),(9552,1,2351,'2','6607957016',''),(9553,1,2351,'3','no-reply@guestpostingpros.com',''),(9554,1,2351,'9','Ackerweg 14',''),(9555,1,2351,'4','Hello Entrepreneur,\r\n\r\nAre you finding it difficult to stand out in a competitive niche? Ready to conquer search results and drive more traffic to your website?\r\n\r\nAt GuestPostingPros, we’re offering an unique opportunity to enhance your SEO and improve your visibility through high-quality guest posts that provide real results.\r\n\r\nHere’s why companies love working with us:\r\n\r\n Top-notch guest posts to get you valuable backlinks and elevate your site up the search engine rankings.\r\n Access to premium websites in your niche, ensuring your brand gets seen by relevant audiences.\r\n Expert content creation that speaks directly to your audience, helping you gain more leads and customers.\r\n\r\nIt’s easy and hassle-free to get started—our guest posting packages are designed to fit any budget and give you the edge you need to outperform your competition. Click the link below to view our options and get started today:\r\n\r\nhttps://guestpostingpros.com\r\n\r\nDon’t miss out on this chance to grow your business and reach new levels in your industry!\r\n\r\nIf you would choose not to receive further emails from us, you can unsubscribe here: http://www.guestpostingpros.com/unsubscribe.php?d=juiceelectrical.co.nz\r\n\r\nBest regards,\r\nThe GuestPostingPros Team\r\nGuestPostingPros\r\n9550 Mason Montgomery Rd #1085\r\nMason, OH 45040\r\nUnited States',''),(9556,1,2352,'6','Kieran Stang',''),(9557,1,2352,'2','2912825587',''),(9558,1,2352,'3','stang.kieran@googlemail.com',''),(9559,1,2352,'9','Skallebo 2',''),(9560,1,2352,'4','\"Supercharge Marketing with AI-Driven Content Creation\"\r\n\r\nUnlock the power of words with AI! \r\n\r\nOur service helps you create compelling product descriptions, attention-grabbing titles, and captivating social media content. \r\nFrom the AIDA and PAS frameworks for high-converting copy to engaging captions and tweet threads, we\'ve got you covered. \r\n\r\nElevate your TikTok, Instagram, and Google Business Profile with perfectly crafted text that drives engagement and sales.\r\nLet AI take your marketing game to the next level!\r\n\r\nVisit Us On https://bit.ly/3YdM4a8\r\n\r\n#AIPoweredMarketing #ContentCreation #DigitalMarketing #BusinessGrowth #Ecommerce \r\n#SocialMediaMarketing #AIForBusiness #MarketingAutomation #ContentStrategy #BoostSales',''),(9561,1,2353,'6','Gale Keaney',''),(9562,1,2353,'2','410959835',''),(9563,1,2353,'3','keaney.gale@gmail.com',''),(9564,1,2353,'9','26 Quai Des Belges',''),(9565,1,2353,'4','Boost Your Business with Adaptichat\'s AI Chatbots\r\n\r\nTransform customer interactions with personalized AI chatbots built on your data. \r\nWhether from files, URLs, or your website, your bot will deliver tailored, authentic responses that align with your brand.\r\n\r\nEvolve with Ease: \r\nKeep your chatbot up-to-date with simple retraining for timely, accurate responses.\r\n\r\nDrive Sales: \r\nConvert chats into leads with built-in lead generation.\r\n\r\nGlobal Reach: \r\nCommunicate in 95+ languages, connecting with customers worldwide.\r\n\r\nData Security: \r\nYour data is yours—we never use it to train other models.\r\n\r\nCustom Branding: \r\nRemove Adaptichat’s branding to ensure a seamless, branded experience.\r\n\r\nEmpower your business with Adaptichat’s AI.\r\n\r\nSimply Visit us @ https://bit.ly/47UcNeQ\r\n\r\nKind Regards,\r\nAdaptichat\'s AI Chatbots',''),(9566,1,2354,'6','Chester Throssell',''),(9567,1,2354,'3','throssell.chester@gmail.com',''),(9568,1,2354,'9','Ybbsstrasse 11',''),(9569,1,2354,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ln.run/VZn5V\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly increase your website\'s reach and engagement.',''),(9570,1,2355,'6','Curt',''),(9571,1,2355,'2','609381560',''),(9572,1,2355,'3','info@juiceelectrical.co.nz',''),(9573,1,2355,'9','Ul. Goscinna 114',''),(9574,1,2355,'4','New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.online\r\n\r\nThank You, \r\n\r\nCurt',''),(9575,1,2356,'6','John Wiseman',''),(9576,1,2356,'2','0211041747',''),(9577,1,2356,'3','jfwiseman@gmail.com',''),(9578,1,2356,'9','7 Cahill Street, Lincoln',''),(9579,1,2356,'4','Hi\r\nI have an apartment on Bealey Ave in Christchurch which I would like to get a quote for to install a heat-pump. It\'s located at 118 Bealey Avenue and is a top (2nd) floor corner unit being 75 sqm, and has a corner balcony. \r\n\r\nThe heat-pump is more for cooling than heating as there are already wall mounted heaters. \r\n\r\nCan you give me a call to discuss?',''),(9580,1,2356,'5','Facebook',''),(9581,1,2357,'6','Rascon',''),(9582,1,2357,'2','7938770631',''),(9583,1,2357,'3','joan.rascon@yahoo.com',''),(9584,1,2357,'9','74 Netherpark Crescent',''),(9585,1,2357,'4','Hey TrafficDude here\r\n\r\nMUST CHECK\r\n\r\nI like to offer you instant automatic\r\nhands free traffic that brings you buyers\r\n\r\nYour offers gets send daily to an emaillist with \'buyer traffic\'.\r\n(people who bought before = valuable traffic)\r\n\r\nIdeal for building your emaillist and/or sell your products\r\n\r\nfind out more here:\r\n\r\nhttps://bit.ly/InstantTrafficClickGenerator\r\nhttps://bit.ly/trafficEzclix\r\nhttps://bit.ly/Trafficclickengine\r\n\r\nList building and sales on autopilot!',''),(9586,1,2358,'6','Rafsan Jane',''),(9587,1,2358,'2','008801601701933',''),(9588,1,2358,'3','rafsan@rafsanjane.com',''),(9589,1,2358,'9','186 Central Gaza',''),(9590,1,2358,'4','Hi\r\n\r\nI\'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/',''),(9591,1,2359,'6','Cortney Swint',''),(9592,1,2359,'2','3790965664',''),(9593,1,2359,'3','swint.cortney@outlook.com',''),(9594,1,2359,'9','Via Torino 76',''),(9595,1,2359,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ln.run/_s3yp\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This service could greatly increase your website\'s reach and engagement.',''),(9596,1,2360,'6','Austin Do',''),(9597,1,2360,'2','0016266576324',''),(9598,1,2360,'3','support@profitparadigm.io',''),(9599,1,2360,'9','96 Avenue De Bouvines',''),(9600,1,2360,'4','Hi man,\r\ni want to tell u about my program, u can make 10k per day\r\nif u interesting for more info send me message.\r\nif u don\'t have 20k to invest please dont send any message!\r\n\r\nmy calendly: https://profitparadigm.io/\r\nmy email: support@profitparadigm.io\r\nmy instagram: https://www.instagram.com/sauzetin\r\nmy whatsapp: +16266576324\r\nmy phone: +13233172804\r\nmy facebook: https://www.facebook.com/draustindo?mibextid=LQQJ4d\r\nmy business fb: https://www.facebook.com/profitparadigm.io\r\n\r\nhope to see u with me to make 50k per months after few months of work.',''),(9601,1,2361,'6','Erick Martin',''),(9602,1,2361,'2','3156364446',''),(9603,1,2361,'3','erickmartinoffical@gmail.com',''),(9604,1,2361,'9','45 E Mosholu Parkway N, unit#1K, Bronx, NY, 10467',''),(9605,1,2361,'4','Good Day!\r\n\r\nNeed laser-sharp accuracy for your next project?\r\n\r\nWe offer professional estimation and takeoff services, ensuring transparency and confidence from the get-go.\r\n\r\nUnique benefits:\r\n\r\n1. Expertly detailed takeoffs: Minimize surprises with meticulous material and labor breakdowns.\r\n\r\n2. Competitive, accurate estimates: Gain an edge with data-driven pricing for informed decisions.\r\n\r\n3. Faster project starts: Streamline your workflow with an efficient, timely turnaround.\r\n\r\nReady to build with confidence? Contact us today for a free quote!\r\n\r\nErick Martin\r\nProject Estimator at All-Pro Estimation LLC.\r\nEmail: erickmartinoffical@gmail.com\r\nCell: 315 636 4446\r\nEstimating in All States of USA, Canada & New Zealand',''),(9606,1,2361,'5','google',''),(9607,1,2362,'6','Rosaria Harlow',''),(9608,1,2362,'2','625289511',''),(9609,1,2362,'3','harlow.rosaria@outlook.com',''),(9610,1,2362,'9','Puntstrasse 33',''),(9611,1,2362,'4','I saw that your juiceelectrical.co.nz website may be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ln.run/VZn5V\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly increase your website\'s reach and engagement.',''),(9612,1,2363,'6','David Smith',''),(9613,1,2363,'2','0278366558',''),(9614,1,2363,'3','david.smith@freshpork.co.nz',''),(9615,1,2363,'9','5 Rotherham Drive, West Melton',''),(9616,1,2363,'4','Hi There,\r\n\r\nWe have a small solar panel / solution that operates our front gate, but the batteries don\'t seem to be holding there charge for as long as they use to...maybe that with teenage daughters, we maybe using them more often than designed... the batteries are at least 6-8 years old - so maybe not holding their charge.... long story short - we are keen for someone to come out and take a look and provide some advice / solutions. Hopefully you can help.\r\n\r\nKind Regards\r\nDavid',''),(9617,1,2363,'5','Web',''),(9618,1,2364,'6','RaymondBlalk',''),(9619,1,2364,'2','81519939612',''),(9620,1,2364,'3','raymondDilkmaida@gmail.com',''),(9621,1,2364,'9','Garhoud',''),(9622,1,2364,'4','What’s up? juiceelectrical.co.nz \r\n \r\nDid you know that it is possible to send business offer according to law? \r\nWhen such messages are sent, no personal data is used, and messages are sent to forms specifically designed to receive messages and appeals securely. Not thought of as spam, messages sent through Feedback Forms are considered important. \r\nYou have the chance to use our service without having to pay anything. \r\nWe can deliver a maximum of 50,000 messages for you. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis letter is automatically generated. \r\n \r\nContact us. \r\nTelegram - https://t.me/FeedbackFormEU \r\nSkype live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWhatsApp https://wa.me/+375259112693 \r\nWe only use chat for communication.',''),(9623,1,2364,'5','FBI',''),(9624,1,2365,'6','Tedphync',''),(9625,1,2365,'2','83592688698',''),(9626,1,2365,'3','axobajigufo34@gmail.com',''),(9627,1,2365,'9','City',''),(9628,1,2365,'4','Sveiki, es gribēju zināt savu cenu.',''),(9629,1,2365,'5','Google',''),(9630,1,2366,'6','Marc Lebrunois',''),(9631,1,2366,'2','9526749959',''),(9632,1,2366,'3','marclebrunois@gmail.com',''),(9633,1,2366,'9','1903 Orchard Street',''),(9634,1,2366,'4','Hello,\r\n\r\nI realized your website does not have a chat feature. A lot of users prefer immediate replies instead of calling or emailing. Adding a chat box can boost the customer experience, generate more leads, and help grow your business.\r\n\r\nAn AI virtual bot can even answer 24/7 for you if you\'re unavailable, making sure you won’t miss any potential customers.\r\n\r\nI can install such a professional, budget-friendly chatbox for you on your website. Please reach out if you\'re interested.\r\n\r\nKind regards,\r\nMarc',''),(9635,1,2367,'6','Joanna Riggs',''),(9636,1,2367,'2','358155719',''),(9637,1,2367,'3','joannariggs94@gmail.com',''),(9638,1,2367,'9','Kronwiesenweg 149',''),(9639,1,2367,'4','Hi,\r\n\r\nI just visited juiceelectrical.co.nz and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur prices start from just $195.\r\n\r\nWe have produced over 500 videos to date and work with both non-animated and animated formats:\r\n\r\nNon-animated example:\r\nhttps://www.youtube.com/watch?v=bA2DyChM4Oc\r\n\r\nAnimated example:\r\nhttps://www.youtube.com/watch?v=JG33_MgGjfc\r\n\r\nLet me know if you\'re interested in learning more and/or have any questions.\r\n\r\nRegards,\r\nJoanna\r\n\r\nUnsubscribe: https://removeme.live/unsubscribe.php?d=juiceelectrical.co.nz',''),(9640,1,2368,'6','Lea Dufay',''),(9641,1,2368,'2','2029629200',''),(9642,1,2368,'3','leadufay@gmail.com',''),(9643,1,2368,'9','4884 School Street',''),(9644,1,2368,'4','Hi,\r\n\r\nI’m Lea, and a member of my team can create an engaging video where they talk to the camera, representing a satisfied customer to showcase your business. We create powerful video testimonials that establish credibility and drive more sales. Our videos are optimized for sharing on social media, websites, or on any other services you use. I can provide examples to show how our videos can make your business stand out.\r\n\r\nInterested? Just reply back and I’ll handle the rest\r\n\r\nKind Regards,\r\nLea',''),(9645,1,2369,'6','Stacia Sumner',''),(9646,1,2369,'2','798207259',''),(9647,1,2369,'3','sumner.stacia@gmail.com',''),(9648,1,2369,'9','Ul. Kubackiego 112',''),(9649,1,2369,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ln.run/VZn5V\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly amplify your website\'s reach and traffic.',''),(9650,1,2370,'6','Michal Tomholt',''),(9651,1,2370,'2','500582701',''),(9652,1,2370,'3','tomholt.michal51@outlook.com',''),(9653,1,2370,'9','50 Rue Bonneterie',''),(9654,1,2370,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ln.run/VZn5V\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly amplify your website\'s reach and visitors.',''),(9655,1,2371,'6','+17456762872',''),(9656,1,2371,'2','89948568489',''),(9657,1,2371,'3','c.amsfreeatall@gmail.com',''),(9658,1,2371,'9','+17456762872',''),(9659,1,2371,'4','Come on Papi fuck my great big ass with your big cock and <a href=https://bit.ly/4eFOKm1><u>LET ME DRIP</u>!</a>',''),(9660,1,2371,'5','+17456762872',''),(9661,1,2372,'6','Frick',''),(9662,1,2372,'2','40532611',''),(9663,1,2372,'3','bestprivatecomunication@gmail.com',''),(9664,1,2372,'9','12 athri',''),(9665,1,2372,'4','Dear Contact - Juice Electrical\r\n\r\nMy name is Lucy and I am an assistent manager at X Besto World OU. Our company is specialized in providing tailor-made solutions to support the needs of businesses, with a particular focus on digital optimization and online performance improvement.\r\n\r\nI would like to take this opportunity to introduce you to SE Ranking, an essential tool for SEO professionals. Thanks to its comprehensive features, AI integration and flexible pricing policy, SE Ranking is suitable for companies of any size. Suitable for both beginners and industry experts, with the aim of remaining competitive and achieving digital marketing results.\r\n\r\nIncreasing your online presence and monitoring competitors allows you to improve visibility and increase growth opportunities. With the right digital strategy, you can reach a wider audience and increase your business.\r\n\r\nBelow you can find the link to the company to view all its features https://seranking.com/?ga=3452363&source=link\r\n\r\nBest regards,\r\nLucy Frick\r\nX Besto World Ou\r\ninfo@bestqtf.com\r\ninfo@bestqtf.org',''),(9666,1,2373,'6','📪 You got a transfer from Binance. Receive >>> https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 📪',''),(9667,1,2373,'2','800104701416',''),(9668,1,2373,'3','txahole@eewmaop.com',''),(9669,1,2373,'9','omastj',''),(9670,1,2373,'4','joqjr1',''),(9671,1,2373,'5','pywt76',''),(9672,1,2374,'6','Lottie Thompson',''),(9673,1,2374,'2','887214185',''),(9674,1,2374,'3','lottiethompson2@mail.co.uk',''),(9675,1,2374,'9','41 Henry Moss Court',''),(9676,1,2374,'4','Hi, I hope you are well.\r\n\r\nWe operate a Facebook service, which increases your number of fans/followers safely and practically.\r\n\r\nThis can be for a page, a group, or an individual profile.\r\n\r\n- 400+ followers per month.\r\n- Real people who follow your page/group/profile because they are interested in what you do (no bots/fakes)\r\n- No automated techniques, everything is safe and manual.\r\n\r\nOur price is just $60 (USD) per month, with no contract.\r\n\r\nIf you are interested, just reply back and we can discuss further.\r\n\r\nKind Regards,\r\nLottie',''),(9677,1,2375,'6','Leo Beaudoin',''),(9678,1,2375,'2','50808038',''),(9679,1,2375,'3','beaudoin.leo@outlook.com',''),(9680,1,2375,'9','Hovbanken 34',''),(9681,1,2375,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(9682,1,2376,'6','Jacob Blaber-Hunt',''),(9683,1,2376,'2','0273496441',''),(9684,1,2376,'3','jacxbhunt@gmail.com',''),(9685,1,2376,'9','89 Shepherd Avenue',''),(9686,1,2376,'4','Hello, I\'m wondering if you are on the lookout for an apprentice. I don\'t have any current experience and would be open to doing work experience to get a bit of relevant experience and to learn the ropes. I am 21, worked in a warehouse for 3 years, and very interested in becoming a sparky.\r\nCheers,\r\nJacob',''),(9687,1,2377,'6','Melisa Spaulding',''),(9688,1,2377,'2','882825376',''),(9689,1,2377,'3','melisa.spaulding38@yahoo.com',''),(9690,1,2377,'9','46 Holthouse Road',''),(9691,1,2377,'4','I can provide large Claude 3.5 sonnet, GPT-4o, and Gemini-1.5-pro-exp models. You can get access to these powerful models with a $100 API for just $20!\r\n\r\n Expand your site with our incredibly affordable Claude API.\r\n\r\n Learn more and contact us: https://www.lmzh.top/ (Email: q2408808@outlook.com / Telegram: https://t.me/ninicky1 / Whatsapp:+8617355658808)',''),(9692,1,2378,'6','Deneen Wilkins',''),(9693,1,2378,'2','9128644584',''),(9694,1,2378,'3','wilkins.deneen@gmail.com',''),(9695,1,2378,'9','Bursiljum 8',''),(9696,1,2378,'4','Hi,\r\n\r\nLooking for someone to help you in local ranking ? Your business is not coming in top of google results page . I am Local SEO expert from 5 years and now i am here to help you! With the\r\nexpertise and work drive of my team, we will get you the best results possible\r\n\r\nCheck my 5 stars Fiverr page now\r\n\r\nhttps://tinyurl.com/3fxa3xw3',''),(9697,1,2379,'6','* * * Win Free Cash Instantly: http://mxi.fr/json/upload/qsv6fj.php?fwtg80 * * * hs=ac2bc4d7fc1b93f812bdf494fc0f06ad*',''),(9698,1,2379,'2','104114056296',''),(9699,1,2379,'3','pazapz@mailbox.in.ua',''),(9700,1,2379,'9','q91lwh',''),(9701,1,2379,'4','onjqy7',''),(9702,1,2379,'5','dbtjg4',''),(9703,1,2380,'6','Keeley Kimbrell',''),(9704,1,2380,'2','651262735',''),(9705,1,2380,'3','keeley.kimbrell@gmail.com',''),(9706,1,2380,'9','Jeekelstraat 64',''),(9707,1,2380,'4','\"Discover the Ultimate AI Chatbot for Your Business—A Game-Changer You Can\'t Miss!\"\r\n\r\nTransform Your Website with a Custom AI Chatbot!\r\n\r\nReady to elevate your website experience? With a personalized AI chatbot, you can engage visitors, capture leads, \r\nAnd drive conversions all at once.\r\n\r\n Our chatbots are tailored to your brand and designed to meet your business needs\r\nWhether it’s guiding users through your products, answering questions, or collecting feedback.\r\n\r\nAvailable 24/7, our chatbots ensure you’re always there for your audience, boosting user satisfaction and conversions. \r\nSimple to embed and seamlessly integrated, they provide an interactive touchpoint for every visitor. \r\n\r\nGive your website the edge it deserves \r\n\r\nAnd connect with us today to get started!\r\n\r\nSimply visit us @ https://bit.ly/47UcNeQ\r\n\r\nBest,\r\nAdaptichat team,',''),(9708,1,2381,'6','Doyle Collier',''),(9709,1,2381,'2','178219581',''),(9710,1,2381,'3','collier.doyle@hotmail.com',''),(9711,1,2381,'9','34 Place De Miremont',''),(9712,1,2381,'4','Hey you want to Boost Your LinkedIn Advertising \r\n\r\nDear ,\r\n\r\nWith LinkedIn\'s vast network of over 1 billion members, success depends on reaching the right decision-makers. \r\nTRADExperts provides high-quality data on global executives and employees, enabling your ads to connect with those ready to act.\r\n\r\nWhy TRADExperts?\r\n\r\nAccess Quality Leads Instantly: \r\nReach 12.4 million companies and 380 million active, earning professionals worldwide. \r\nLeverage LinkedIn’s Matched Audiences to target precisely.\r\n\r\nTailored for Professionals Across Roles: From Marketing Managers to Business Owners and Analysts, \r\nOur data supports a wide range of strategic goals.\r\n\r\nGet Started Today!\r\n\r\nTransform your LinkedIn advertising in just a few clicks. \r\n\r\nFor more information visit our website https://www.checkout-ds24.com/redir/552448/mrvytas23/\r\n\r\nBest regards,',''),(9713,1,2382,'6','Binil Muthu',''),(9714,1,2382,'2','4084185597',''),(9715,1,2382,'3','cs@brownsofts.com',''),(9716,1,2382,'9','Balcones Drive',''),(9717,1,2382,'4','Hi,\r\n\r\nAt Brownsofts, we offer a range of services to help elevate your business:\r\n\r\nVideo Editing & Animation\r\nWebsite Design & Development\r\nGraphic Design\r\nSEO & Content Writing\r\nDigital Marketing\r\nAdmin Support Services\r\nEmail/Chat Customer Support\r\nWe\'d love to discuss how we can help you reach your marketing goals. Share the details of your project, and we\'ll tailor a solution just for you.\r\n\r\nBest regards,\r\nBinil Muthu\r\nCEO, Brownsofts LLC',''),(9718,1,2383,'6','Loretta Holiman',''),(9719,1,2383,'2','41419252',''),(9720,1,2383,'3','holiman.loretta@gmail.com',''),(9721,1,2383,'9','Schoyensvei 101',''),(9722,1,2383,'4','Boost Your LinkedIn Advertising with TRADExperts’ Worldwide Companies Data\r\n\r\nDear,\r\n\r\nWith LinkedIn\'s vast network of over 1 billion members, success depends on reaching the right decision-makers. \r\n\r\nTRADExperts provides high-quality data on global executives and employees, enabling your ads to connect with those ready to act.\r\n\r\nWhy TRADExperts?\r\n\r\nAccess Quality Leads Instantly: \r\nReach 12.4 million companies and 380 million active, earning professionals worldwide. \r\nLeverage LinkedIn’s Matched Audiences to target precisely.\r\n\r\nTailored for Professionals Across Roles: \r\nFrom Marketing Managers to Business Owners and Analysts, our data supports a wide range of strategic goals.\r\n\r\nGet Started Today!\r\n\r\nTransform your LinkedIn advertising in just a few clicks. \r\n\r\nFor more information, visit our website [https://www.checkout-ds24.com/redir/552448/mrvytas23/].\r\n\r\nBest regards,\r\nTRADExperts team.',''),(9723,1,2384,'6','Phil Stewart',''),(9724,1,2384,'2','342-123-4456',''),(9725,1,2384,'3','noreplyhere@aol.com',''),(9726,1,2384,'9','Schillerstrasse 75',''),(9727,1,2384,'4','Looking to attract millions of viewers to your website or video affordably?\r\n Reach out to me below if you want more details on how I make this happen.\r\n\r\nRegards,\r\nRomeo Hallen\r\nEmail: Romeo.Hallen@morebiz.my\r\nWebsite: http://jcd2vm.resultswithcontactforms.my\r\nSkype: marketingwithcontactforms',''),(9728,1,2385,'6','Tedphync',''),(9729,1,2385,'2','86143316867',''),(9730,1,2385,'3','axobajigufo34@gmail.com',''),(9731,1,2385,'9','City',''),(9732,1,2385,'4','Прывітанне, я хацеў даведацца Ваш прайс.',''),(9733,1,2385,'5','Google',''),(9734,1,2386,'6','Jamie Purdy',''),(9735,1,2386,'2','3109045717',''),(9736,1,2386,'3','purdy.jamie6@gmail.com',''),(9737,1,2386,'9','Via Delle Azalee 111',''),(9738,1,2386,'4','I see that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/QRAX50TR2rR\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly amplify your website\'s reach and engagement.',''),(9739,1,2387,'6','Ada Bacote',''),(9740,1,2387,'2','151897289',''),(9741,1,2387,'3','bacote.ada@gmail.com',''),(9742,1,2387,'9','29 Rue Du Paillle En Queue',''),(9743,1,2387,'4','\"Unlock the Future of Engagement: You Need to See What This AI Chatbot Can Do!\"\r\n\r\nEnhance Customer Experience with Adaptichat AI Chatbots\r\n\r\nCustom AI, Your Brand\'s Voice\r\nEmpower your brand with chatbots trained on your data. \r\nImport from files, URLs, or let Adaptichat scan your site for smooth integration and meaningful customer interactions.\r\n\r\nAdaptive Learning\r\nKeep responses accurate with easy retraining—Adaptichat evolves with your business.\r\n\r\nBoost Sales in Every Chat\r\nWith a built-in lead engine, every conversation becomes a sales opportunity.\r\n\r\nGlobal Reach, Local Touch\r\nCommunicate authentically in 95+ languages.\r\n\r\nData Privacy First\r\nYour data remains yours—never shared or used to train other models.\r\n\r\nConsistent Branding\r\nCustomize your chatbot for a trusted, seamless customer experience.\r\n\r\nStart Today! visit us @ [https://adaptichat.com/#aff=mrvytas23]\r\n\r\nBest Regards,\r\nAdaptichat team,',''),(9744,1,2388,'6','Edgardo Gillison',''),(9745,1,2388,'2','7006580510',''),(9746,1,2388,'3','edgardo.gillison@gmail.com',''),(9747,1,2388,'9','83 Carriers Road',''),(9748,1,2388,'4','I saw that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/QRAX50TR2rR\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly enhance your website\'s reach and traffic.',''),(9749,1,2389,'6','Gwen Keysor',''),(9750,1,2389,'2','796315993',''),(9751,1,2389,'3','keysor.gwen@gmail.com',''),(9752,1,2389,'9','Ul. Olszynka 144',''),(9753,1,2389,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/QRAX50TR2rR\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This solution could greatly enhance your website\'s reach and visitors.',''),(9754,1,2390,'6','Sara Lauer',''),(9755,1,2390,'2','+13522173320',''),(9756,1,2390,'3','hello@unlimitedclientengine.com',''),(9757,1,2390,'9','Gerbiweg 76',''),(9758,1,2390,'4','Hi, I discovered your website on Google Maps and I need to point out that its not really set up well. I think you’re missing out on a ton of leads by not using a few quick tweaks that could really help. Luckily, I put together a course that’ll get you optimized in just one and a half hours.\r\n\r\nI also observed that your page seo could use some attention. Here\'s the deal , if you grab my course on configuring Google Maps for only $27, I’ll throw in a detailed SEO report customized for your website at no extra charge. It s a perfect opportunity, you fix the maps and the SEO at the same time.\r\n\r\nWhen you get 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 2-3 days.\r\n\r\nGet the course here: www.unlimitedclientengine.com\r\n\r\nPS: 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. \r\n\r\nJP, at\r\nUnlimited Client Engine\r\n+1(352) 217-3320\r\n https://www.unlimitedclientsengine.com',''),(9759,1,2391,'6','Gareth',''),(9760,1,2391,'3','gsr14@yahoo.com',''),(9761,1,2391,'9','Burnside',''),(9762,1,2391,'4','Hi,\r\n\r\nWe\'re needing some electrical work done in our garage, essentially we need some outlets added and it might require a subpanel to be installed.\r\n\r\nJust wanting someone to come around and give us a quote please and an idea on availability. We\'re located in Burnside.\r\n\r\nThanks,\r\n\r\nGareth',''),(9763,1,2391,'5','Web search',''),(9764,1,2392,'6','Masonphync',''),(9765,1,2392,'2','89387562385',''),(9766,1,2392,'3','duqotayowud23@gmail.com',''),(9767,1,2392,'9','City',''),(9768,1,2392,'4','Salam, qiymətinizi bilmək istədim.',''),(9769,1,2392,'5','AliExpress',''),(9770,1,2393,'6','Stevie Sheean',''),(9771,1,2393,'2','12345678',''),(9772,1,2393,'3','writingfeedback@writingbybenjamin.com',''),(9773,1,2393,'9','1971 Shadowmar Drive',''),(9774,1,2393,'4','Hi there,\r\n\r\nIs it difficult for you to make time to create articles?\r\n\r\nHire an Experienced SEO Writer Today!\r\n\r\nI do all the research and provide professionally written search engine optimized content to improve your search rankings and better visitor engagement.\r\n\r\nNeed new articles for your content strategy or content marketing strategies, see our current content deals here:\r\nhttps://bit.ly/benwriting\r\n\r\nBen\r\nContact me directly at behinger@writingbybenjamin.com or on Skype: behinger19 with any questions.\r\n\r\n\r\n\r\nIf you don\'t want to get an email from me on this matter again, please reply back with the text: \"No, thank you\"',''),(9775,1,2394,'6','Isabelle Marino',''),(9776,1,2394,'2','7983824489',''),(9777,1,2394,'3','isabelle.marino@outlook.com',''),(9778,1,2394,'9','99 Seaford Road',''),(9779,1,2394,'4','Dear,\r\n\r\nDo you know that the children\'s book market is an untapped gold mine? According to recent data, it\'s a booming $4 billion industry in the US alone!\r\n\r\nDid you also know that an increasing number of parents and educators are turning to online platforms to find engaging and educational children\'s books? Over 60% of children\'s books are now purchased online!\r\n\r\nNow, here\'s the real kicker: with the brand new A.I. Children\'s Book Maker, you can easily tap into this lucrative market:\r\n\r\nVisit: https://bit.ly/4e4J18E\r\n\r\nThis innovative web app uses artificial intelligence to write and illustrate high-quality children\'s books in just minutes. No need for writing or illustrating skills. Just input your idea and let the AI bring your story to life.\r\n\r\nImagine creating a unique product for this thriving market, without the traditional overhead costs of book publishing. This could open up a significant new revenue stream for you.\r\n\r\nDon\'t miss out on this. The launch special will be ending soon:\r\n\r\nVisit: https://bit.ly/4e4J18E\r\n\r\nTry the A.I. Children\'s Book Maker today and take your entrepreneurial journey to the next level.\r\n\r\nTo your success,\r\n\r\nAlex',''),(9780,1,2395,'6','+11853766336',''),(9781,1,2395,'2','81994617244',''),(9782,1,2395,'3','d.atingsforsouls@gmail.com',''),(9783,1,2395,'9','+11853766336',''),(9784,1,2395,'4','<u>Unlish your wild nature with hot girls</u> - <a href=https://bit.ly/3BljZ7H><b>click here!</b></a>',''),(9785,1,2395,'5','+11853766336',''),(9786,1,2396,'6','Amelia Brown',''),(9787,1,2396,'2','249804656',''),(9788,1,2396,'3','ameliabrown12784@gmail.com',''),(9789,1,2396,'9','83 Round Drive',''),(9790,1,2396,'4','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nAmelia',''),(9791,1,2397,'6','Raphael Beckham',''),(9792,1,2397,'2','914004468',''),(9793,1,2397,'3','beckham.raphael@gmail.com',''),(9794,1,2397,'9','In Stierwisen 133',''),(9795,1,2397,'4','Hello! My name is Raphael Beckham. \r\n \r\nBe TOP! \r\n \r\nWalk to the site TiaraGaliano Com if you need Swimsuits, Underwear, Socks, Leggings or Women\'s Leotards. \r\n \r\nNow everything is discounted! \r\n \r\nFollow the link and use code \"VIP\" for an extra discount in Men\'s boxers:\r\n \r\nhttps://bit.ly/3R8jRwn \r\n \r\nGreetings, Raphael Beckham',''),(9796,1,2398,'6','Sima Balfour',''),(9797,1,2398,'2','431856649',''),(9798,1,2398,'3','balfour.sima@outlook.com',''),(9799,1,2398,'9','Genterstrasse 28',''),(9800,1,2398,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://cutt.ly/8eDg5TMA\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly increase your website\'s reach and visitors.',''),(9801,1,2399,'6','Thao Rankine',''),(9802,1,2399,'2','7958283302',''),(9803,1,2399,'3','thao.rankine@hotmail.com',''),(9804,1,2399,'9','82 Park Avenue',''),(9805,1,2399,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://cutt.ly/8eDg5TMA\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This service could greatly amplify your website\'s reach and engagement.',''),(9806,1,2400,'6','Bertie Dutton',''),(9807,1,2400,'2','671556377',''),(9808,1,2400,'3','dutton.bertie@yahoo.com',''),(9809,1,2400,'9','Eikenweg 146',''),(9810,1,2400,'4','This week\'s Top Apps Selections on Our Top #10 Global Android Apps\r\n\r\n#7 :\r\nA PHONE SCREEN RECORDER + PHONE CONVERSATION RECORDER APP\r\n\r\nMore information: https://tinyurl.com/phonescreenrecorder\r\n\r\nPROS: \r\n\r\n+Unlimited video recordings of phone screen\r\n+Unlimited audio recordings of phone conversations\r\n+Record camera input along with screen input makes this ideal for making tutorials\r\n+Record screenshots\r\n+No ads\r\n+No recurring subscriptions\r\n\r\nCONS:\r\nOne time payment of $1.99\r\n\r\nPlease stay tuned for our next bulletin. Hope you enjoyed our selections at #7, #8, # 9 and #10\r\nof Most Promising Global Apps.\r\n\r\nAuf Wiedersehen\r\n\r\nGlobal #10 Product Selections',''),(9811,1,2401,'6','Jestine Nicastro',''),(9812,1,2401,'2','315661337',''),(9813,1,2401,'3','jestine.nicastro@outlook.com',''),(9814,1,2401,'9','95 Rue De Geneve',''),(9815,1,2401,'4','Greetings my fellow Learn and Thrive Entrepreneurs\r\n\r\nThis week\'s spotlight book is:\r\n\r\n\"THE GOOGLE ADS COOKBOOK\" by Dave Hart\r\n\r\nhttps://tinyurl.com/learngoogads\r\n\r\nWould You Like To Be Able To Use Google Ads To Their Fullest Potential WITHOUT Having To Spend Thousands Of Dollars On Hiring Expensive Google Ads Specialists?\r\n“The Google Ads Cookbook” Will Provide You With EVERYTHING You Need To Know In Order To Properly And Successfully Market Your Products Using Google Ads!\r\nAnd The Best Part… You Don’t Need ANY Kind Of Prior Experience Or Knowledge, This Book Has Been Structured In Such A Way That ANYONE Can Fully Understand Its Lessons And How To Efficiently Apply Them, Keep Reading…\r\n\r\n• You Don’t Need To Hire A Google Ads Specialist\r\n\r\n• You Don’t Need To Waste Hundreds, Perhaps Even Thousands Of Dollars Testing Out Ads Until You Finally Get A Good One\r\n\r\n• You Don’t Need To Waste HOURS Trying To Learn How The Google Ads Platform Works\r\n\r\n• You Don’t Need To Tirelessly Surf The Internet Trying To Figure Out How To Make Your Ad Successful\r\n\r\n• You Don’t Need To Stress Yourself Any Longer, Learning Stuff That You’re Not Interested About\r\n\r\nAll you need is a carefully-crafted, step-by-step E-book that shows you EVERYTHING, and I truly mean everything there is to know about Google Ads…\r\n\r\nScreenshots you can follow along that show you how to get started, how to set things up, how to get ads running…\r\n\r\nAnd multiple resources, tips, tricks, industry secrets that will help you make sure that your ads perform well.\r\n\r\nAnd that’s exactly what you’ll find in “The Google Ads Cookbook”, everything I’ve mentioned above, PLUS MORE.\r\n\r\nOnce you go through the contents of this book, you’ll be baffled at how easy Google Ads actually are when explained properly, and when shown through live projects that leave absolutely no details out.\r\n\r\n\r\nhttps://tinyurl.com/learngoogads\r\n\r\nGet the only step by step guide for Google ads that shows all kinds of techniques and tactics.\r\n\r\nHopefully you liked our last week\'s spotlight book \"APARTMENT INVESTING\".\r\n\r\nNext week\'s spotlight book is....... stay tuned :)\r\n\r\nAmy Rausch',''),(9816,1,2402,'6','Clifford Larose',''),(9817,1,2402,'3','larose.clifford@gmail.com',''),(9818,1,2402,'9','Karntner Strasse 49',''),(9819,1,2402,'4','\"Hey, check this out! Best chatbot on the market and its free to try it !!!\r\n\r\nThe best chatbot on the market—tailored just for your website. \r\n\r\nEngage visitors, capture leads, and boost conversions effortlessly with personalized AI chatbots. \r\n\r\nTry it now!\" \r\n\r\nVisit us @ https://bit.ly/47UcNeQ\r\n\r\n#AIChatbot #BoostConversions #LeadGeneration \r\n#WebsiteEngagement #PersonalizedAI #BusinessGrowth #ChatbotMarketing',''),(9820,1,2403,'6','Karen Damron',''),(9821,1,2403,'2','7052123226',''),(9822,1,2403,'3','damron.karen@gmail.com',''),(9823,1,2403,'9','3 Rowland Rd',''),(9824,1,2403,'4','Should you STOP manifesting?\r\n\r\nLet me explain..\r\n\r\nThe root of our problems is about this one KEY brain wave..\r\n\r\nHere’s the catch:\r\n\r\nYou have this brain wave.\r\n\r\nAnd if it were activated, manifestation would work 100X faster..\r\n\r\nBut it’s dormant.\r\n\r\nAnd until now, researchers were lost..\r\n\r\nBut a brand-new trick from NASA has the entire community SHOOK up..\r\n\r\nThey say all it takes now is this “7-Second Brain Trick” to target this brain wave and activate your Superbrain..\r\n\r\nAnd once you do:\r\n\r\nRemarkable events start to take place in your life..\r\nYou notice your problems get solved for you, with little to no effort on your part..\r\nLucky things and synchronicities start to happen to you, and opportunities come your way..\r\n\r\nThis leading neuroscientist says it’s “like having a Superbrain”...\r\n\r\nYou have to see this short presentation all about it:\r\n\r\n>> THIS 7-Second At-Home Ritual Activates Your Superbrain..\r\n\r\nShort presentation: https://bit.ly/3YIpFSw\r\n\r\nThis 7-Second Brain Trick is brand-new, so it’s not on YouTube, Google or books on Amazon.\r\n\r\nAnd it has nothing to do with visualizing, journaling or even the Law of Attraction.\r\n\r\nPlus, this 7-second ritual\'s got something to do with a cashew. (Yes, a cashew.)\r\n\r\nOK, I’ve said enough!\r\n\r\nWatch this short but incredible presentation here now:\r\n\r\n>> THIS 7-Second At-Home Ritual Activates Your Superbrain..\r\n\r\nI absolutely love this.\r\n\r\nI think you and your family will love it too.',''),(9825,1,2404,'6','Renaldo Chamberlin',''),(9826,1,2404,'2','3341169165',''),(9827,1,2404,'3','chamberlin.renaldo@googlemail.com',''),(9828,1,2404,'9','Via Archimede 75',''),(9829,1,2404,'4','Neuroscientist: This “7-Second Brain Trick” Is Better Than The Law of Attraction..\r\n\r\nIt’s odd but scientifically proven…\r\n\r\nAccording to former NASA Neuroscientist Dr. Rivers, this 7-second brain trick activates \r\nyour \"Superbrain\" the very first time you try it.\r\n\r\nThe 7-Second Brain Trick works by connecting several key regions of your brain together..\r\n\r\nThat’s why my wife said, “it’s like a genie waved a magic wand and gave me a superbrain!”..\r\n\r\nIt’s working so well for her, she’s remembering things she learned 20 years ago. \r\n\r\nAnd lucky breaks are happening for her everyday now.\r\n\r\nAnyway, if you want to see how to quickly activate your Genius Wave too.. and tap into \r\na Genius-level of IQ, where great ideas just come to you and lucky things start happening \r\nto you, then all you need to do is check out this short presentation here. \r\n\r\nShort presentation: https://bit.ly/3YIpFSw',''),(9830,1,2405,'6','Kenny Strub',''),(9831,1,2405,'2','629059338',''),(9832,1,2405,'3','kenny.strub@gmail.com',''),(9833,1,2405,'9','Eeldersingel 87',''),(9834,1,2405,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/T4ag50TR2oM\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly amplify your website\'s reach and traffic.',''),(9835,1,2406,'6','Ida Melendez',''),(9836,1,2406,'2','99875846',''),(9837,1,2406,'3','melendez.ida@gmail.com',''),(9838,1,2406,'9','Solveien 232',''),(9839,1,2406,'4','Looking to convert more visitors into customers? \r\nWe target contact forms to place your message right in front of decision-makers. Reach 100M websites and turn leads into buyers, starting at just $19. \r\nBoost your marketing strategy today with assured inbox delivery.\r\n\r\n++ See it: https://bit.ly/weblastforms\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf at any point you no longer want to receive additional messages from this address, simply follow this link: https://bit.ly/remove-lists\r\nSolveien 232, Moss, NY, USA, 1533',''),(9840,1,2407,'6','Katharina Wurth',''),(9841,1,2407,'2','4456668',''),(9842,1,2407,'3','katharina.wurth@gmail.com',''),(9843,1,2407,'9','Hei?Arbraut 44',''),(9844,1,2407,'4','He, are you looking for professionally designed spreadsheet templates ?\r\n\r\nSince 2003, Vertex42® has been a trusted source for professionally designed spreadsheet templates, \r\n\r\nIdeal for business, personal, and educational needs. \r\nSpecializing in Microsoft Excel®, Google Sheets, and OpenOffice.org, \r\n\r\nWe offer powerful financial calculators for debt reduction and money management, \r\nalong with templates for resumes, letters, and business plans with integrated financial statements. \r\n\r\nNew to Excel? \r\n\r\nTry our Excel Tutorials for Beginners and jumpstart your skills!\r\n\r\nVisit us @ https://bit.ly/3AP2Ym3 \r\n\r\n#ExcelTemplates #FinancialTools #Vertex42 \r\n#GoogleSheets #Productivity #MoneyManagement #ExcelForBeginners #BusinessPlanning',''),(9845,1,2408,'6','Francisca Sasser',''),(9846,1,2408,'2','616700027',''),(9847,1,2408,'3','francisca.sasser@yahoo.com',''),(9848,1,2408,'9','Goudestein 169',''),(9849,1,2408,'4','Hi,\r\n\r\nFound a valuable resource: \r\n\r\nhttps://mychords.page.link/?link=https2F%2Fprodentim.com%2Ftext.php26shield%3D2412a6hyl5k8lnbbxcnbpoqdf0&apn=mychords.free\r\n\r\nFaithfully,\r\n\r\nFrancisca',''),(9850,1,2409,'6','Jayson O\'Sullivan',''),(9851,1,2409,'2','23717532',''),(9852,1,2409,'3','osullivan.jayson70@outlook.com',''),(9853,1,2409,'9','Fynshovedvej 56',''),(9854,1,2409,'4','Unlock Laser-Targeted Advertising Success On LinkedIn\r\n\r\nHi,\r\n\r\n\r\nI hope this message finds you well.\r\n\r\nDo you wish to supercharge your marketing strategy? \r\nDiscover the power of TRADExperts companies data on LinkedIn\'s advertising platform. \r\n\r\nUnlock laser-focused marketing to specific audiences, through LinkedIn\'s Matched Audiences targeted advertising feature.\r\n\r\nBy uploading TRADExperts\' companies data on LinkedIn\'s platform, \r\nYou will put your ads right in front of millions of professionals within your country or industry. \r\n\r\nThese are earning and spending audiences which include all the employees, \r\nDecision makers and business leaders of the companies you wish to target with your ads. \r\n\r\nWith 1.7 billion monthly visitors, LinkedIn provides the best business connections worldwide to boost brand awareness for your business, \r\nGenerate leads and drive sales.\r\n\r\nClick here to learn more on how TRADExperts\' \r\n\r\nData products can skyrocket your adverts on LinkedIn\r\n\r\nThe biggest professional networking platform: [https://bit.ly/4fvWqrM]\r\n\r\nWe can also schedule a convenient time to discuss further with a call if you wish.\r\n\r\nLooking forward to hearing from you ASAP!\r\n\r\n\r\nKind Regards,',''),(9855,1,2410,'6','Johanna Forth',''),(9856,1,2410,'2','4377682',''),(9857,1,2410,'3','forth.johanna@hotmail.com',''),(9858,1,2410,'9','?Ru?Vangur 91',''),(9859,1,2410,'4','Hey,\r\n\r\nIn the world of SEO, staying ahead of the competition is key. With Keysearch, you can access advanced tools that help you outrank your competitors and dominate the search results.\r\n\r\nHere’s how Keysearch gives you an edge:\r\n\r\nDeep Competitor Analysis: Get detailed insights into your competitors\' rankings, backlinks, and more.\r\nBacklink Checker: Discover where your competitors are getting backlinks and replicate their strategy.\r\nRank Tracking: Monitor your keyword rankings and track your website’s performance in real time.\r\nIf you’re serious about staying ahead of the competition, Keysearch is the tool you need to dominate the SEO game.\r\n\r\nReady to outrank your competitors?\r\n\r\nHere: https://bit.ly/3BOVJeB\r\n\r\n[Unlock Advanced SEO Tools Now!]\r\n\r\nTo Your Success!',''),(9860,1,2411,'6','Mia Sawtell',''),(9861,1,2411,'2','194235434',''),(9862,1,2411,'3','mia.sawtell@gmail.com',''),(9863,1,2411,'9','19 Rue De L\'epeule',''),(9864,1,2411,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(9865,1,2412,'6','+13857761882',''),(9866,1,2412,'2','86519969233',''),(9867,1,2412,'3','camsfreeatall@gmail.com',''),(9868,1,2412,'9','+13857761882',''),(9869,1,2412,'4','<b>Show your wildness</b> - <a href=https://psee.io/663bfl><b>satisfy your sexual desire right now!</b></a>',''),(9870,1,2412,'5','+13857761882',''),(9871,1,2413,'6','Jess Beliveau',''),(9872,1,2413,'2','7907185547',''),(9873,1,2413,'3','jess.beliveau@msn.com',''),(9874,1,2413,'9','5 Thompsons Lane',''),(9875,1,2413,'4','FREE MOCK-UP DESIGN BEFORE WORK \r\n\r\nPlease message me at websdesignservices2000@gmail.com\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nWe will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nPlease message me at websdesignservices2000@gmail.com\r\n\r\nThanks',''),(9876,1,2414,'6','Ernie Manns',''),(9877,1,2414,'2','688414427',''),(9878,1,2414,'3','ernie.manns74@yahoo.com',''),(9879,1,2414,'9','Paulus Potterstraat 55',''),(9880,1,2414,'4','Personalized AI Chatbots for Your Website!!!\r\n\r\nEmbed it on your website and engage better, capture leads, and skyrocket conversions\r\n\r\n With AI chatbots tailored just for your business.\r\n\r\nFor More Info.\r\n\r\nSimply Visit Us @ https://bit.ly/47UcNeQ\r\n\r\nBest Regards,',''),(9881,1,2415,'6','Claire Clark',''),(9882,1,2415,'2','02102373855',''),(9883,1,2415,'3','mowbray_claire@hotmail.com',''),(9884,1,2415,'9','24 Marlowe Place, Rolleston',''),(9885,1,2415,'4','Hi,\r\n\r\nI would like a quote please for the replacement of around 22 down lights to LED including parts and labour plus the repair of a faulty plug in the garage that services the door opener.\r\n\r\nThanks,\r\nClaire',''),(9886,1,2415,'5','google',''),(9887,1,2416,'6','Tedphync',''),(9888,1,2416,'2','86986461791',''),(9889,1,2416,'3','axobajigufo34@gmail.com',''),(9890,1,2416,'9','City',''),(9891,1,2416,'4','Hej, jeg ønskede at kende din pris.',''),(9892,1,2416,'5','Nokia',''),(9893,1,2417,'6','Arielle Bell',''),(9894,1,2417,'2','882835303',''),(9895,1,2417,'3','bell.arielle@gmail.com',''),(9896,1,2417,'9','90 Main Street',''),(9897,1,2417,'4','\"Unlock Unseen Travel Discounts – Save Big on Your Next Adventure!\"\r\n\r\nDiscover the Vacabee Membership and gain access to wholesale travel prices once reserved for businesses. \r\n\r\nSay goodbye to inflated OTA fees and hello to unforgettable, budget-friendly vacations.\r\n\r\n Start crafting lifelong memories without the extra cost. Join Vacabee and travel smarter!\r\n\r\nFor more info visit us @ https://bit.ly/46actaW\r\n\r\nBest Regards,',''),(9898,1,2418,'6','Ursula Airey',''),(9899,1,2418,'2','3882767338',''),(9900,1,2418,'3','ursula.airey@googlemail.com',''),(9901,1,2418,'9','Strada Bresciana 34',''),(9902,1,2418,'4','I noticed that your juiceelectrical.co.nz website could be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/QRAX50TR2rR\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This service could greatly increase your website\'s reach and visitors.',''),(9903,1,2419,'6','Misty Augustine',''),(9904,1,2419,'2','3036011102',''),(9905,1,2419,'3','augustine.misty@gmail.com',''),(9906,1,2419,'9','Nils Grises Strate 53',''),(9907,1,2419,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/82vQ50TR2qR\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly increase your website\'s reach and engagement.',''),(9908,1,2420,'6','Lena Maruff',''),(9909,1,2420,'3','lena.maruff@gmail.com',''),(9910,1,2420,'9','Staudgasse 58',''),(9911,1,2420,'4','\"Hey, You Must Try Fiverr Pro – Your Business Deserves It!\"\r\n\r\nJoin leading companies like Hitachi, Similarweb, Skechers, MyHeritage, Netflix, L’Oréal, and Unilever that trust Fiverr Pro \r\nTo achieve unparalleled growth and efficiency. \r\n\r\nWith Fiverr Pro, you gain access to a pool of hand-vetted, \r\nTop-tier freelancers who deliver expert services tailored to your unique business needs.\r\n\r\nWhy Choose Fiverr Pro?\r\n\r\nQuality Assurance: \r\nOnly the top 1% of talent, rigorously vetted for outstanding work.\r\n\r\nDiverse Expertise: \r\nFrom design and marketing to tech solutions, find experts in any field.\r\n\r\nGlobal Reach: \r\nCollaborate with professionals around the world to stay ahead in a competitive market.\r\n\r\nThese industry giants have harnessed the power of Fiverr to optimize their projects and streamline their operations. \r\nTake your business to new heights with Fiverr Pro—where quality meets innovation.\r\n\r\nVisit us @ https://bit.ly/4eR5kAd\r\n\r\nTransform your vision into reality with Fiverr Pro!\r\n\r\nBest,\r\nRegards,',''),(9912,1,2421,'6','Leslie Garrido',''),(9913,1,2421,'2','7956478820',''),(9914,1,2421,'3','leslie.garrido@gmail.com',''),(9915,1,2421,'9','23 Coast Rd',''),(9916,1,2421,'4','What exactly is going on with the two brawlers of the middle east, Israel and Iran?\r\n\r\nThanks to these to belligerents, the world cannot sleep peacefully!\r\n\r\nhttps://tinyurl.com/iranisraelwars\r\n\r\nhttps://www.bbc.com/news/articles/cgr0yvrx4qpo\r\n\r\nThese articles in the media analyze strange angles to this conflict, and how it is likely to evolve.\r\n\r\nAfterall all we have is this planet, and we better keep an eye on these guys!',''),(9917,1,2422,'6','Kayla Alngindabu',''),(9918,1,2422,'3','alngindabu.kayla@hotmail.com',''),(9919,1,2422,'9','Landstrasse 89',''),(9920,1,2422,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/QRAX50TR2rR\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly enhance your website\'s reach and traffic.',''),(9921,1,2423,'6','Jacob Whiteeagle',''),(9922,1,2423,'2','6057866458',''),(9923,1,2423,'3','jacobwhiteeagle@proton.me',''),(9924,1,2423,'9','Piazza Giuseppe Garibaldi 144',''),(9925,1,2423,'4','Hi friend\r\ni want to ask u if u need loan , i can give u up to 100k without any questions, fees start from 2%.\r\nu can take for long and short term, if u need please contact me \r\n\r\nMy whatsapp number: +17852192072\r\nMy phone: +16057866458\r\nMy email: jacobwhiteeagle@proton.me',''),(9926,1,2424,'6','Vvalkyie Dala',''),(9927,1,2424,'2','0017852192072',''),(9928,1,2424,'3','marketing@valkyriedalafitness.com',''),(9929,1,2424,'9','1478 Washington Avenue',''),(9930,1,2424,'4','Hi friend\r\ni want to ask u if u need loan , i can give u up to 100k without any questions, fees start from 2%.\r\nu can take for long and short term, if u need please contact me \r\n\r\nMy Whatsapp: +17852192072\r\nMy phone: +17852122012\r\nMy email: marketing@valkyriedalafitness.com',''),(9931,1,2425,'6','Gisele Hinz',''),(9932,1,2425,'2','655851807',''),(9933,1,2425,'3','hinz.gisele@gmail.com',''),(9934,1,2425,'9','Hooikamp 81',''),(9935,1,2425,'4','Hi,\r\n\r\nI’m reaching out with an exciting opportunity for you! At Freecash, you can earn rewards by completing simple tasks, surveys, and offers. We offer payouts through PayPal, Bitcoin, and more, giving you flexibility and value for your time.\r\n\r\nTo kick-start your experience, we’re offering $10 just for creating an account! Join today, and start exploring the many ways to earn real rewards.\r\n\r\nReady to give it a try? Sign up here: https://bit.ly/3YIjpZU\r\n\r\nLooking forward to seeing you on Freecash!\r\n\r\nBest,\r\nJosha M.',''),(9936,1,2426,'6','Kristi Tocket',''),(9937,1,2426,'2','0277772448',''),(9938,1,2426,'3','kristitocket@gmail.com',''),(9939,1,2426,'9','72 Huanui Lane',''),(9940,1,2426,'4','Kia ora!\r\n\r\nWe are looking to get a quote for the installation of the below security system and any additional products necessary for both app and local access to the video feed. \r\n\r\nhttps://www.pbtech.co.nz/product/CCTRLK588443/Reolink-NVS8-8MD4-8MP4K-8-Channel-NVR-Smart-Survei\r\n\r\nWe have roof/attic access which we\'ve been to there should be little issues with installation.\r\nWe\'d be looking for this to be done over the next month.\r\n\r\nThank you!',''),(9941,1,2427,'6','Kristi Tocket',''),(9942,1,2427,'2','0277772448',''),(9943,1,2427,'3','kristitocket@gmail.com',''),(9944,1,2427,'9','72 Huanui Lane',''),(9945,1,2427,'4','Kia ora!\r\n\r\nWe are looking to get a quote for the installation of the below security system and any additional products necessary for both app and local access to the video feed. \r\n\r\nhttps://www.pbtech.co.nz/product/CCTRLK588443/Reolink-NVS8-8MD4-8MP4K-8-Channel-NVR-Smart-Survei\r\n\r\nWe have roof/attic access which we\'ve been to there should be little issues with installation.\r\nWe\'d be looking for this to be done over the next month.\r\n\r\nThank you!',''),(9946,1,2428,'6','Kristi Tocket',''),(9947,1,2428,'2','0277772448',''),(9948,1,2428,'3','kristitocket@gmail.com',''),(9949,1,2428,'9','72 Huanui Lane',''),(9950,1,2428,'4','Kia ora!\r\n\r\nWe are looking to get a quote for the installation of the below security system and any additional products necessary for both app and local access to the video feed. \r\n\r\nhttps://www.pbtech.co.nz/product/CCTRLK588443/Reolink-NVS8-8MD4-8MP4K-8-Channel-NVR-Smart-Survei\r\n\r\nWe have roof/attic access which we\'ve been to there should be little issues with installation.\r\nWe\'d be looking for this to be done over the next month.\r\n\r\nThank you!',''),(9951,1,2428,'5','Google',''),(9952,1,2429,'6','Kristi Tocket',''),(9953,1,2429,'2','0277772448',''),(9954,1,2429,'3','kristitocket@gmail.com',''),(9955,1,2429,'9','72 Huanui Lane',''),(9956,1,2429,'4','Kia ora!\r\n\r\nWe are looking to get a quote for the installation of the below security system and any additional products necessary for both app and local access to the video feed. \r\n\r\nhttps://www.pbtech.co.nz/product/CCTRLK588443/Reolink-NVS8-8MD4-8MP4K-8-Channel-NVR-Smart-Survei\r\n\r\nWe have roof/attic access which we\'ve been to there should be little issues with installation.\r\nWe\'d be looking for this to be done over the next month.\r\n\r\nThank you!',''),(9957,1,2429,'5','Google',''),(9958,1,2430,'6','Kristi Tocket',''),(9959,1,2430,'2','0277772448',''),(9960,1,2430,'3','kristitocket@gmail.com',''),(9961,1,2430,'9','72 Huanui Lane',''),(9962,1,2430,'4','Kia ora!\r\n\r\nWe are looking to get a quote for the installation of the below security system and any additional products necessary for both app and local access to the video feed. \r\n\r\nhttps://www.pbtech.co.nz/product/CCTRLK588443/Reolink-NVS8-8MD4-8MP4K-8-Channel-NVR-Smart-Survei\r\n\r\nWe have roof/attic access which we\'ve been to there should be little issues with installation.\r\nWe\'d be looking for this to be done over the next month.\r\n\r\nThank you!',''),(9963,1,2430,'5','Google',''),(9964,1,2431,'6','Kristi Tocket',''),(9965,1,2431,'2','0277772448',''),(9966,1,2431,'3','kristitocket@gmail.com',''),(9967,1,2431,'9','72 Huanui Lane',''),(9968,1,2431,'4','Kia ora!\r\n\r\nWe are looking to get a quote for the installation of the below security system and any additional products necessary for both app and local access to the video feed. \r\n\r\nhttps://www.pbtech.co.nz/product/CCTRLK588443/Reolink-NVS8-8MD4-8MP4K-8-Channel-NVR-Smart-Survei\r\n\r\nWe have roof/attic access which we\'ve been to there should be little issues with installation.\r\nWe\'d be looking for this to be done over the next month.\r\n\r\nThank you!',''),(9969,1,2431,'5','Google',''),(9970,1,2432,'6','Kristi Tocket',''),(9971,1,2432,'2','0277772448',''),(9972,1,2432,'3','kristitocket@gmail.com',''),(9973,1,2432,'9','72 Huanui Lane',''),(9974,1,2432,'4','Kia ora!\r\n\r\nWe are looking to get a quote for the installation of the below security system and any additional products necessary for both app and local access to the video feed. \r\n\r\nhttps://www.pbtech.co.nz/product/CCTRLK588443/Reolink-NVS8-8MD4-8MP4K-8-Channel-NVR-Smart-Survei\r\n\r\nWe have roof/attic access which we\'ve been to there should be little issues with installation.\r\nWe\'d be looking for this to be done over the next month.\r\n\r\nThank you!',''),(9975,1,2432,'5','Google',''),(9976,1,2433,'6','Kristi Tocket',''),(9977,1,2433,'2','0277772448',''),(9978,1,2433,'3','kristitocket@gmail.com',''),(9979,1,2433,'9','72 Huanui Lane, christchurch',''),(9980,1,2433,'4','Kia ora!\r\n\r\nWe are looking to get a quote for the installation of the below security system and any additional products necessary for both app and local access to the video feed. \r\n\r\nhttps://www.pbtech.co.nz/product/CCTRLK588443/Reolink-NVS8-8MD4-8MP4K-8-Channel-NVR-Smart-Survei\r\n\r\nWe have roof/attic access which we\'ve been to there should be little issues with installation.\r\nWe\'d be looking for this to be done over the next month.\r\n\r\nThank you!',''),(9981,1,2433,'5','Google',''),(9982,1,2434,'6','Remona Vassallo',''),(9983,1,2434,'2','6045226408',''),(9984,1,2434,'3','remona.vassallo@gmail.com',''),(9985,1,2434,'9','534 Sixth Street',''),(9986,1,2434,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://cutt.ly/8eDg5TMA\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly enhance your website\'s reach and engagement.',''),(9987,1,2435,'6','Phil Stewart',''),(9988,1,2435,'2','342-123-4456',''),(9989,1,2435,'3','noreplyhere@aol.com',''),(9990,1,2435,'9','22 Castledore Road',''),(9991,1,2435,'4','Need a cost-effective way to reach millions?\r\n Feel free to contact me using the details below if you want to learn more about my approach.\r\n\r\nRegards,\r\nQuincy Rucker\r\nEmail: Quincy.Rucker@morebiz.my\r\nWebsite: http://rw12l6.advertise-with-contactforms.pro\r\nSkype: marketingwithcontactforms',''),(9992,1,2436,'6','Ruby Barlee',''),(9993,1,2436,'2','3947378653',''),(9994,1,2436,'3','barlee.ruby@gmail.com',''),(9995,1,2436,'9','Corso Garibaldi 16',''),(9996,1,2436,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/T4ag50TR2oM\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly enhance your website\'s reach and traffic.',''),(9997,1,2437,'6','Davida',''),(9998,1,2437,'3','juiceelectrical.co.nz@icloud.com',''),(9999,1,2437,'9','Wurmbrandgasse 73',''),(10000,1,2437,'4','Good Morning \r\n\r\nTrying to find the perfect gift that will genuinely captivate? Our Enchanted Shining Rose™ brings together beauty and magic in one stunning piece. With its soft glow and iridescent rose wrapped in delicate lights, it’s an item that brings warmth to any place—and any heart.\r\n\r\nGive a memorable gift. Perfect for celebrating special moments or as a way to show your appreciation.\r\n\r\nSpecial Offer: Now 50% OFF with free shipping at https://shiningrose.biz\r\n\r\nHave a great time,\r\n\r\nDavida',''),(10001,1,2438,'6','Renee Flowers',''),(10002,1,2438,'2','2672441762',''),(10003,1,2438,'3','flowers.renee@gmail.com',''),(10004,1,2438,'9','Gotzkowskystrasse 47',''),(10005,1,2438,'4','Bring your ideas to life for €1/month with Shopify\r\n\r\nThe future of business is yours to shape. \r\nSign up for a free trial and enjoy 3 months of Shopify for €1/month on select plans.\r\n\r\nShopify is a complete commerce platform that lets you start, grow, and manage a business.\r\n\r\nWith Shopify, you can:\r\n\r\nCreate and customize an online store\r\nSell in multiple places, including web, mobile, social media, online marketplaces, brick-and-mortar locations, and pop-up shops\r\nManage products, inventory, payments, and shipping\r\n\r\nShopify is completely cloud-based and hosted, which means you don\'t have to worry about upgrading or maintaining software or web servers. \r\nThis gives you the flexibility to access and run your business from almost anywhere, including your mobile device.\r\n\r\nBuild your dream business for €1/month now @ https://bit.ly/4ftgfjc\r\n\r\nBest of luck,',''),(10006,1,2439,'6','Gabriele Wagoner',''),(10007,1,2439,'2','734512387',''),(10008,1,2439,'3','gabriele.wagoner@msn.com',''),(10009,1,2439,'9','45 Jones Road',''),(10010,1,2439,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(10011,1,2440,'6','Ravi O\'Dowd',''),(10012,1,2440,'2','7953947262',''),(10013,1,2440,'3','earle.odowd@gmail.com',''),(10014,1,2440,'9','13 Greyfriars Road',''),(10015,1,2440,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(10016,1,2441,'6','Trent Banvard',''),(10017,1,2441,'2','3306897666',''),(10018,1,2441,'3','banvard.trent@outlook.com',''),(10019,1,2441,'9','3234 Wildwood Street',''),(10020,1,2441,'4','WHO GOT IT RIGHT AND WHO GOT IT WRONG! The crazy art of election predictions!\r\n\r\nhttps://www.newsweek.com/kamala-harris-donald-trump-national-polls-election-forecast-1980450\r\n\r\nhttps://nypost.com/2024/11/06/us-news/polling-nostradamus-who-bet-on-harris-realizes-he-was-wrong/\r\n\r\nhttps://dumbazz.com/politics/why-the-democrats-will-lose-the-2024-election-a-nonscientific-analysis.php\r\n\r\nhttps://www.foxnews.com/video/6364278977112\r\n\r\nWOW!!',''),(10021,1,2442,'6','Dominic Fulcher',''),(10022,1,2442,'2','7042631040',''),(10023,1,2442,'3','dominic.fulcher@gmail.com',''),(10024,1,2442,'9','Torneby 81',''),(10025,1,2442,'4','\"Hey, You Must Try Fiverr Pro – Your Business Deserves It!\"\r\n\r\nJoin leading companies like Hitachi, Similarweb, Skechers, MyHeritage, Netflix, L’Oréal, and Unilever that trust Fiverr Pro \r\nTo achieve unparalleled growth and efficiency. \r\n\r\nWith Fiverr Pro, you gain access to a pool of hand-vetted, \r\nTop-tier freelancers who deliver expert services tailored to your unique business needs.\r\n\r\nWhy Choose Fiverr Pro?\r\n\r\nQuality Assurance: \r\nOnly the top 1% of talent, rigorously vetted for outstanding work.\r\n\r\nDiverse Expertise: \r\nFrom design and marketing to tech solutions, find experts in any field.\r\n\r\nGlobal Reach: \r\nCollaborate with professionals around the world to stay ahead in a competitive market.\r\n\r\nThese industry giants have harnessed the power of Fiverr to optimize their projects and streamline their operations. \r\nTake your business to new heights with Fiverr Pro—where quality meets innovation.\r\n\r\nVisit us @ https://bit.ly/4eR5kAd\r\n\r\nTransform your vision into reality with Fiverr Pro!\r\n\r\nBest,\r\nRegards,',''),(10026,1,2443,'6','Janeen Tonkin',''),(10027,1,2443,'2','889784034',''),(10028,1,2443,'3','tonkin.janeen@googlemail.com',''),(10029,1,2443,'9','Ul. Miroslawiecka 145',''),(10030,1,2443,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/T4ag50TR2oM\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly amplify your website\'s reach and engagement.',''),(10031,1,2444,'6','Hilary Phillips',''),(10032,1,2444,'2','0212019665',''),(10033,1,2444,'3','hbfcnz@gmail.com',''),(10034,1,2444,'9','20 Wilbur Close, Rolleston',''),(10035,1,2444,'4','Hi Helen and Greg\r\n\r\nI hope you are both well. We met via Selwyn Central Community Care - I\'m the Treasurer.\r\n\r\nI have a bathroom extraction fan that is no longer doing it\'s job very well and I suspect needs to be replaced. Would someone be able to come and take a look please?\r\n\r\nThanks,\r\nHilary',''),(10036,1,2444,'5','SCCC',''),(10037,1,2445,'6','Marina Unger',''),(10038,1,2445,'2','740654578',''),(10039,1,2445,'3','c.o.n.tac.tf.lead.s@gmail.com',''),(10040,1,2445,'9','77 Davidson Street',''),(10041,1,2445,'4','Just like as you got this message, we can submit your message to millions of contact forms.\r\n\r\nNeed more brand exposure? \r\n\r\nOur contact form targeting service delivers your message directly to site admins and decision-makers, making sure you stand out! \r\n\r\nReach 100M sites with prices starting from just $19 only. \r\n\r\nLet’s get your brand the attention it deserves today!\r\n\r\n^^ Check out: https://bit.ly/cfsubmitter\r\n\r\n\r\n\r\n\r\n\r\n\r\nIn case you wish to stop getting additional correspondence from us, feel free to visit the attached link: https://bit.ly/removemysites\r\n77 Davidson Street, Wellesley Islands, NY, USA, 4871',''),(10042,1,2446,'6','Chanel Macrossan',''),(10043,1,2446,'2','7921490399',''),(10044,1,2446,'3','chanel.macrossan@msn.com',''),(10045,1,2446,'9','67 Castledore Road',''),(10046,1,2446,'4','Hi there,\r\nI’m Chanel from Monkey Digital, and I’m excited to share a fantastic opportunity for you to earn 35% commission on every order made through your affiliate links—for life!\r\n\r\nHere’s how it works:\r\n\r\n1. Quick Registration: Sign up and create your affiliate links.\r\n2. Easy Integration: Add those links to your website in just five minutes.\r\n3. Monthly Payouts: Enjoy hassle-free monthly payments directly to you.\r\n\r\nhttps://www.monkeydigital.co/join-our-affiliate-program/\r\n\r\nThink about it: every website owner needs effective search engine optimization (SEO) to thrive. This presents a significant earning potential for both you and us.\r\n\r\nDon’t miss out on this opportunity to boost your income with minimal effort!\r\n\r\nThank you,\r\nChanel Macrossan\r\nMonkey Digital\r\nContact Us on WhatsApp\r\nhttps://wa.link/md1k3j\r\nhttps://www.monkeydigital.co/join-our-affiliate-program/',''),(10047,1,2447,'6','Tedphync',''),(10048,1,2447,'2','87791287527',''),(10049,1,2447,'3','ibucezevuda439@gmail.com',''),(10050,1,2447,'9','City',''),(10051,1,2447,'4','Hi, ego volo scire vestri pretium.',''),(10052,1,2447,'5','Nokia',''),(10053,1,2448,'6','Margo Brinkley',''),(10054,1,2448,'2','8106340391',''),(10055,1,2448,'3','brinkley.margo@outlook.com',''),(10056,1,2448,'9','Busingstrasse 63',''),(10057,1,2448,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/j7ua50U3ipe\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly increase your website\'s reach and engagement.',''),(10058,1,2449,'6','Patrick Franklin',''),(10059,1,2449,'2','3178375784',''),(10060,1,2449,'3','patrick.franklin@gmail.com',''),(10061,1,2449,'9','Rua Sao Mateus 1843',''),(10062,1,2449,'4','FREE MOCK-UP DESIGN BEFORE WORK \r\n\r\nPlease message me at websdesignservices2000@gmail.com\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nWe will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nPlease message me at websdesignservices2000@gmail.com\r\n\r\nThanks',''),(10063,1,2450,'6','Rudolph Allwood',''),(10064,1,2450,'2','240096167',''),(10065,1,2450,'3','allwood.rudolph85@hotmail.com',''),(10066,1,2450,'9','95 Timms Drive',''),(10067,1,2450,'4','Struggling to create eye-catching videos for your social media? \r\n\r\nJoin InVideo and go viral!\r\n\r\nInVideo helps transform your content into stunning videos effortlessly. \r\nWhether you\'re a media company, small business, or a brand looking to boost audience engagement, \r\nInVideo is your go-to tool. \r\n\r\nPerfect for marketers, publishers, and professionals, \r\nInVideo makes video creation easy, impactful, and powerful.\r\n\r\nStart today @ https://bit.ly/3NRA6wL\r\n\r\nAnd watch your content captivate and engage like never before. \r\n\r\nBoost your business by creating engaging videos that attract leads, customers, and a larger audience.',''),(10068,1,2451,'6','🔓 You have a transfer from us. Next =>> https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 🔓',''),(10069,1,2451,'2','700407218601',''),(10070,1,2451,'3','friedenspfeifen@omggreatfoods.com',''),(10071,1,2451,'9','jmg7xg',''),(10072,1,2451,'4','o1jhs1',''),(10073,1,2451,'5','pgoaoi',''),(10074,1,2452,'6','Jonna Pritchard',''),(10075,1,2452,'2','9382688059',''),(10076,1,2452,'3','jonna.pritchard@googlemail.com',''),(10077,1,2452,'9','Esplanade 34',''),(10078,1,2452,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/b6IF50U3its\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly amplify your website\'s reach and engagement.',''),(10079,1,2453,'6','Noahphync',''),(10080,1,2453,'2','84745768985',''),(10081,1,2453,'3','ibucezevuda439@gmail.com',''),(10082,1,2453,'9','City',''),(10083,1,2453,'4','Hola, quería saber tu precio..',''),(10084,1,2453,'5','FBI',''),(10085,1,2454,'6','Lynell Begay',''),(10086,1,2454,'2','6994517324',''),(10087,1,2454,'3','begay.lynell52@yahoo.com',''),(10088,1,2454,'9','Am Reischauergrund 1',''),(10089,1,2454,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/mtnY50U3i70\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This service could greatly enhance your website\'s reach and visitors.',''),(10090,1,2455,'6','Lamont Lemon',''),(10091,1,2455,'2','469629188',''),(10092,1,2455,'3','lemon.lamont@googlemail.com',''),(10093,1,2455,'9','69 Rue Joseph Vernet',''),(10094,1,2455,'4','I see that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/mtnY50U3i70\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly amplify your website\'s reach and visitors.',''),(10095,1,2456,'6','Vicky Wang',''),(10096,1,2456,'2','0222597629',''),(10097,1,2456,'3','wwxkxmit@gmail.com',''),(10098,1,2456,'9','2/155 Yaldhurst Road, Sockburn, Christchurch',''),(10099,1,2456,'4','Hi,\r\nI just want to get a quote for some of my electrical work in the house. 1/The garage door sometimes couldn\'t close down properly, it reversed back from halfway and felt like running out the power from the engine or something. 2/ The wire of the internal switch is not connecting to the garage door. So, we can only use the remote key to do it every time. 3/ The power outlets in the bathrooms upstairs are not working. \r\n\r\nThank you. \r\nVicky',''),(10100,1,2456,'5','Google Map search',''),(10101,1,2457,'6','Jacob Whiteeagle',''),(10102,1,2457,'2','6057866458',''),(10103,1,2457,'3','jacobwhiteeagle@proton.me',''),(10104,1,2457,'9','Hornfjellveien 194',''),(10105,1,2457,'4','Hi friend\r\ni want to ask u if u need loan , i can give u up to 100k without any questions, fees start from 2%.\r\nu can take for long and short term, if u need please contact me \r\n\r\nMy whatsapp number: +17852192072\r\nMy phone: +16057866458\r\nMy email: jacobwhiteeagle@proton.me',''),(10106,1,2458,'6','Reginald Connah',''),(10107,1,2458,'2','97699824',''),(10108,1,2458,'3','reginald.connah@yahoo.com',''),(10109,1,2458,'9','Opphaugveien 12',''),(10110,1,2458,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(10111,1,2459,'6','NAEWTRER1491933NERTHRTYHR',''),(10112,1,2459,'2','85119764923',''),(10113,1,2459,'3','shirleyjackson1912@superocomail.com',''),(10114,1,2459,'9','Madagascar',''),(10115,1,2459,'4','MEKYUJTYJ1491933MAYTRYR',''),(10116,1,2459,'5','FBI',''),(10117,1,2460,'6','Eric Jones',''),(10118,1,2460,'2','555-555-1212',''),(10119,1,2460,'3','ericjonesmyemail@gmail.com',''),(10120,1,2460,'9','420 Lexington Ave',''),(10121,1,2460,'4','To the\r\n\r\nMy name’s Eric and I just found your site juiceelectrical.co.nz Owner!\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nVisit https://rushleadgeneration.com for a live demo now.\r\n\r\nWeb 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.\r\n\r\nAnd 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.\r\n\r\nVisit https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nVisit https://rushleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe visit https://rushleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(10122,1,2461,'6','Eric Jones',''),(10123,1,2461,'2','555-555-1212',''),(10124,1,2461,'3','ericjonesmyemail@gmail.com',''),(10125,1,2461,'9','420 Lexington Ave',''),(10126,1,2461,'4','Hello juiceelectrical.co.nz Webmaster.\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(10127,1,2462,'6','Eric Jones',''),(10128,1,2462,'2','555-555-1212',''),(10129,1,2462,'3','ericjonesmyemail@gmail.com',''),(10130,1,2462,'9','420 Lexington Ave',''),(10131,1,2462,'4','To the juiceelectrical.co.nz Owner.\r\n\r\nMy name’s Eric and I just came across your website - juiceelectrical.co.nz - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like juiceelectrical.co.nz will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou 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.\r\n\r\nWeb 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.\r\n \r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow 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!\r\n\r\nThat’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.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(10132,1,2463,'6','Tedphync',''),(10133,1,2463,'2','83995139863',''),(10134,1,2463,'3','axobajigufo34@gmail.com',''),(10135,1,2463,'9','City',''),(10136,1,2463,'4','Hej, jeg ønskede at kende din pris.',''),(10137,1,2463,'5','Nokia',''),(10138,1,2464,'6','Nitin Chaudhary',''),(10139,1,2464,'2','(209) 813-5119',''),(10140,1,2464,'3','seo@rankinghat.co',''),(10141,1,2464,'9','Passauer Strasse 22',''),(10142,1,2464,'4','Hello there,\r\n\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I\'ve forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your site \"www.juiceelectrical.co.nz\", though, I noticed some mistakes that you\'ve made re: search engine optimization (SEO) which may be leading to a decline in your organic SEO results.\r\n\r\nWould you like to fix it so that you can get maximum exposure/presence on Google, Bing, Yahoo and web traffic to your website?\r\n\r\nIf this is something you are interested in, then allow me to send you a No Obligation Audit Report for your review. We will fix those errors with no extra cost if you choose any one of our monthly marketing plans.\r\n\r\nHave a nice day!\r\n\r\nRegards,\r\nNitin Chaudhary | International Project Manager \r\nEmail:- sales@rankinghat.co \r\nContact Number:- +1- (209) 813-5119',''),(10143,1,2465,'6','Carmelo Holman',''),(10144,1,2465,'2','93862772',''),(10145,1,2465,'3','carmelo.holman@gmail.com',''),(10146,1,2465,'9','Roaveien 143',''),(10147,1,2465,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/j7ua50U3ipe\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly enhance your website\'s reach and engagement.',''),(10148,1,2466,'6','Maryanne Bousquet',''),(10149,1,2466,'2','685071487',''),(10150,1,2466,'3','bousquet.maryanne@outlook.com',''),(10151,1,2466,'9','A.F. Stroinkweg 139',''),(10152,1,2466,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/BkSO50U3isZ\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly amplify your website\'s reach and traffic.',''),(10153,1,2467,'6','Beryl',''),(10154,1,2467,'2','281814237',''),(10155,1,2467,'3','beryl@juiceelectrical.co.nz',''),(10156,1,2467,'9','2 Rue Charles Corbeau',''),(10157,1,2467,'4','New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.biz\r\n\r\nBest, \r\n\r\nBeryl',''),(10158,1,2468,'6','Ravi South',''),(10159,1,2468,'2','6907151348',''),(10160,1,2468,'3','south.deana@msn.com',''),(10161,1,2468,'9','Gjutaregatan 14',''),(10162,1,2468,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(10163,1,2469,'6','Lester S.',''),(10164,1,2469,'2','6765782639',''),(10165,1,2469,'3','seoforce979@gmail.com',''),(10166,1,2469,'9','Herrenstrasse 26',''),(10167,1,2469,'4','Hi,\r\n\r\nI’d love to contribute a high-quality, SEO-optimized guest post tailored to your niche to juiceelectrical.co.nz. It’s designed to engage your readers, boost site\'s ranking, and increase organic traffic. In return, I’d appreciate a backlink to my client’s site.\r\n\r\nInterested? Reply \"Y.E.S\" and I’ll share the topic details!\r\n\r\nThanks',''),(10168,1,2470,'6','Vern Trowbridge',''),(10169,1,2470,'2','624612318',''),(10170,1,2470,'3','info@rotevcolab.com',''),(10171,1,2470,'9','Rolderbrink 173',''),(10172,1,2470,'4','Hello,\r\n\r\nI focus in creating high-converting websites using Webflow, and here’s the best part: if you’re not 100% happy with the website we design for you, you won’t have to pay—no questions asked!\r\n\r\nIf you’d like to learn more or see examples of our work, just hit reply. We can chat about how a new site can help your business grow.\r\n\r\nLooking forward to hearing from you!\r\n\r\nThanks,\r\nShahar Zohar\r\ninfo@rotevcolab.com\r\n\r\n\r\n\r\nShould you don\'t want to receive messages from me in the future, kindly respond to this email with the text: “No thanks”.',''),(10173,1,2471,'6','Sammie Rembert',''),(10174,1,2471,'2','3411913327',''),(10175,1,2471,'3','sammie.rembert@gmail.com',''),(10176,1,2471,'9','Via Pasquale Scura 36',''),(10177,1,2471,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/b6IF50U3its\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly amplify your website\'s reach and engagement.',''),(10178,1,2472,'6','Lucy Frick',''),(10179,1,2472,'2','2472214052',''),(10180,1,2472,'3','bestprivatecomunication@gmail.com',''),(10181,1,2472,'9','12 athri',''),(10182,1,2472,'4','Hi there Contact - Juice Electrical\r\n\r\nmy name is Lucy from X best world ou and I wanted to introduce you to this digital product that helps, through visual psychology, to increase sales in some cases, in other cases safety at work and more, it has various outlets.\r\n\r\nDid you know that people are up to four times more likely to notice digital signage than traditional printed signs? By exploiting movement, bright colors and personalized messages in real time, digital signage transforms the shopping experience, connecting customers to the brand in a deeper and more memorable way.\r\n\r\nBelow you will find a link where with a detailed and schematic blog article you can better understand how it works on a psychological level on end users : https://www.bestqtf.org/2133552_yodeck-understanding-the-psychology-of-shoppers\r\n\r\nOr I will attach the link directly to the company that markets it where you can find the same explanations and the cost of only 8 dollars a month to use it. www.yodeck.com/?ref=zgu3ndu\r\n\r\nFrom 11 november Yodeck is offering an exclusive 20% discount on any new screen orders using code ‘GIFT20’\r\n\r\nTry to understand how it works and how it can help you increase your business, your business security and more based on your product category.\r\n\r\nWe are pleased to introduce fragrance diffusers equipped with an acoustic system, ideal for offices, stores, waiting rooms, meeting rooms, hotels, restaurants, and more.\r\n\r\nThe offer includes a discount of up to 50% on the product, along with a $50 gift card. These offers are privately reserved and include the gift card; to access them, visit the “Private Offers” page on our website (www.bestqtf.org), accessible with the password: private2024.\r\n\r\nBest regards\r\nLucy Frick\r\nX Best World Ou\r\nwww.bestqtf.org',''),(10183,1,2473,'6','Xander Riekert',''),(10184,1,2473,'2','0279295811',''),(10185,1,2473,'3','xriekert8@gmail.com',''),(10186,1,2473,'9','4 Tapanui Place, Rolleston',''),(10187,1,2473,'4','Hi,\r\n\r\nWe are looking to do some electrical work at our house in Rolleston. I saw you were Rolleston based so keen to support local.\r\n\r\nWork required:\r\nBathroom extractor fan repair/replace,\r\nHeated towel rail install,\r\nInstall power in outdoor shed,\r\nInstall outdoor plug for irrigation controller,\r\nRepair wall sockets',''),(10188,1,2473,'5','Google',''),(10189,1,2474,'6','Aretha Orellana',''),(10190,1,2474,'2','312411808',''),(10191,1,2474,'3','orellana.aretha@msn.com',''),(10192,1,2474,'9','58 Avenue Du Marechal Juin',''),(10193,1,2474,'4','Hi, if your business hasn\'t submitted your claim for the $5.54 Billion Dollar Visa/Mastercard lawsuit settlement for charging customers excess fee\'s between 2004 and 2019, you can submit your claim here before the deadline expires soon. Note: You MUST be a USA based business to be eligible. https://visasettlementclaims.org',''),(10194,1,2475,'6','Karolyn Sowerby',''),(10195,1,2475,'2','3326979516',''),(10196,1,2475,'3','karolyn.sowerby@gmail.com',''),(10197,1,2475,'9','Via Del Carmine 57',''),(10198,1,2475,'4','Hey,\r\n\r\nCheck this out—it’s worth it: \r\n\r\nhttp://www.stephanielancelotphotographe.com/lib/exe/fetch.php?cache=cache&media=https2F%2Fleanbodytonic.com26shield%3D64d8aft3jzmycxegrd39o73k0d\r\n\r\nHeartfelt regards,\r\n\r\nKarolyn',''),(10199,1,2476,'6','Jacob Whiteeagle',''),(10200,1,2476,'2','6057866458',''),(10201,1,2476,'3','jacobwhiteeagle@proton.me',''),(10202,1,2476,'9','81 Darwinia Loop',''),(10203,1,2476,'4','Hi friend\r\ni want to ask u if u need loan , i can give u up to 100k without any questions, fees start from 2%.\r\nu can take for long and short term, if u need please contact me \r\n\r\nMy whatsapp number: +17852192072\r\nMy phone: +16057866458\r\nMy email: jacobwhiteeagle@proton.me',''),(10204,1,2477,'6','Joanna Riggs',''),(10205,1,2477,'2','672145539',''),(10206,1,2477,'3','joannariggs94@gmail.com',''),(10207,1,2477,'9','Hemelrijken 177',''),(10208,1,2477,'4','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site juiceelectrical.co.nz.\r\n\r\nCheck out a couple of our existing videos here:\r\nhttps://www.youtube.com/watch?v=bA2DyChM4Oc\r\nhttps://www.youtube.com/watch?v=JG33_MgGjfc\r\n\r\nOur prices start from as little as $195 and include a professional\r\nscript and voice-over. We also provide other accents and non-English languages.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nJoanna',''),(10209,1,2478,'6','Margherita Underwood',''),(10210,1,2478,'2','7706466061',''),(10211,1,2478,'3','margherita.underwood51@gmail.com',''),(10212,1,2478,'9','4823 Lakeland Park Drive',''),(10213,1,2478,'4','I noticed that your juiceelectrical.co.nz website could be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/BkSO50U3isZ\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly enhance your website\'s reach and visitors.',''),(10214,1,2479,'6','Paulphync',''),(10215,1,2479,'2','87256892252',''),(10216,1,2479,'3','duqotayowud23@gmail.com',''),(10217,1,2479,'9','City',''),(10218,1,2479,'4','Hi, roeddwn i eisiau gwybod eich pris.',''),(10219,1,2479,'5','Wallmart',''),(10220,1,2480,'6','Katelyn Raiden',''),(10221,1,2480,'2','3463392090',''),(10222,1,2480,'3','katelynraiden@gmail.com',''),(10223,1,2480,'9','Via Santa Lucia 58',''),(10224,1,2480,'4','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nKatelyn',''),(10225,1,2481,'6','Gennie Dunlap',''),(10226,1,2481,'2','8193253550',''),(10227,1,2481,'3','dunlap.gennie@gmail.com',''),(10228,1,2481,'9','756 Rue St-Paul',''),(10229,1,2481,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/j7ua50U3ipe\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This service could greatly amplify your website\'s reach and visitors.',''),(10230,1,2482,'6','Shayna Wesley',''),(10231,1,2482,'2','3433600736',''),(10232,1,2482,'3','shayna.wesley@hotmail.com',''),(10233,1,2482,'9','Via Giotto 19',''),(10234,1,2482,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/eFzr50U3iqE\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly increase your website\'s reach and visitors.',''),(10235,1,2483,'6','Chloe Ugalde',''),(10236,1,2483,'2','97342483',''),(10237,1,2483,'3','ugalde.chloe@outlook.com',''),(10238,1,2483,'9','Rodhetteveien 167',''),(10239,1,2483,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/j7ua50U3ipe\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly increase your website\'s reach and engagement.',''),(10240,1,2484,'6','Jackson K',''),(10241,1,2484,'2','8102440753',''),(10242,1,2484,'3','addison@seconsultancies.com',''),(10243,1,2484,'9','20 Cooper Square',''),(10244,1,2484,'4','Just wanted to ask if you\'re interested in getting a new website made or need some changes to your existing one? We have a large team of experienced website designers and developers who can help you.\r\n\r\nWe work with all platforms - Wordpress, Squarespace, Wix, Weebly etc and make all types of websites - informational, e-commerce etc. Would you like to see our portfolio?',''),(10245,1,2484,'5','Google',''),(10246,1,2485,'6','Eric Jones',''),(10247,1,2485,'2','555-555-1212',''),(10248,1,2485,'3','ericjonesmyemail@gmail.com',''),(10249,1,2485,'9','420 Lexington Ave',''),(10250,1,2485,'4','Dear juiceelectrical.co.nz Administrator. Cool website!\r\n\r\nMy name’s Eric, and I just found your site - juiceelectrical.co.nz - 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.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across juiceelectrical.co.nz, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’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.\r\n\r\nNot good.\r\n\r\nHere’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.\r\n\r\nYou can –\r\n \r\nWeb 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.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nThat’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.\r\n \r\nThink 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.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(10251,1,2486,'6','Finn Colebatch',''),(10252,1,2486,'2','261635767',''),(10253,1,2486,'3','colebatch.finn20@googlemail.com',''),(10254,1,2486,'9','39 Marlin Avenue',''),(10255,1,2486,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(10256,1,2487,'6','Viola Pouncy',''),(10257,1,2487,'3','pouncy.viola@yahoo.com',''),(10258,1,2487,'9','An Der Bundesstrasse 87',''),(10259,1,2487,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/j7ua50U3ipe\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly amplify your website\'s reach and engagement.',''),(10260,1,2488,'6','Thurman Shrader',''),(10261,1,2488,'2','722735803',''),(10262,1,2488,'3','thurman.shrader@gmail.com',''),(10263,1,2488,'9','Ul. Gornoslaska 48',''),(10264,1,2488,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/XFEv50Uao9x\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly amplify your website\'s reach and visitors.',''),(10265,1,2489,'6','Gareth',''),(10266,1,2489,'2','0211121365',''),(10267,1,2489,'3','gsr14@yahoo.com',''),(10268,1,2489,'9','Burnside',''),(10269,1,2489,'4','Hi Helen,\r\n\r\nI\'m after a quote to do some electrical work in a residential garage. I need a handful of sockets installed to accommodate some higher amp machinery.\r\n\r\nIf you could get in touch to organise a time to come and have a look that would be appreciated.\r\n\r\nThanks,\r\n\r\nGareth',''),(10270,1,2489,'5','Online search',''),(10271,1,2490,'6','Gavin Walkinshaw',''),(10272,1,2490,'2','0224175549',''),(10273,1,2490,'3','gavin_walkinshaw@hotmail.com',''),(10274,1,2490,'9','33 William Nicholls Drive, Spring Grove, BELFAST 8051',''),(10275,1,2490,'4','Have some electrical faults that need attention. \r\nA light switch, a bathroom wall heater (Weiss), a LED passage light (needs replacement and a newish refrigerator ( freezer portion ok but general fridge appears non functioning)\r\nI was referred by someone who you helped recently.',''),(10276,1,2490,'5','Wayne Te Mete',''),(10277,1,2491,'6','Fannie Edmond',''),(10278,1,2491,'2','7814463214',''),(10279,1,2491,'3','fannie.edmond@yahoo.com',''),(10280,1,2491,'9','748 Romano Street',''),(10281,1,2491,'4','FREE MOCK-UP DESIGN BEFORE WORK \r\n\r\nPlease message me at websdesignservices2000@gmail.com\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nWe will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nPlease message me at websdesignservices2000@gmail.com\r\n\r\nThanks',''),(10282,1,2492,'6','Wally Ogilvy',''),(10283,1,2492,'2','7938601914',''),(10284,1,2492,'3','ogilvy.wally@gmail.com',''),(10285,1,2492,'9','84 Hampton Court Rd',''),(10286,1,2492,'4','Hi-I run Newswirejet.com a PR firm and we’re running our annual special for this blackfriday for your business’ PR needs. \r\n\r\nCheck us out www.newswirejet.com/ \r\n\r\nPromo code: BLACKFRIDAY24 for 30% off your first order.\r\n\r\n\r\nHappy holidays!\r\n\r\nDavid\r\n\r\nPS - I\'m available to meet if you have more advanced needs and want to be featured in a tier 1 like forbes, techcrunch, etc.',''),(10287,1,2493,'6','OJ james2023@gmail.com',''),(10288,1,2493,'2','149229357',''),(10289,1,2493,'3','ojjames2023@gmail.com',''),(10290,1,2493,'9','97 Place Du Jeu De Paume',''),(10291,1,2493,'4','Ultra-Realistic Human-Like Al Influencers For Instagram, YouTube And TikTok In Multiple Niches & Automatically Creates & Publish Trending Al Viral Contents Like... Dancing Reel Videos, Al Video Songs, TV Shows, Commercial Ads Etc IN LESS THAN 60 SECONDS!\r\n\r\nFor more click here :<<<<<< https://warriorplus.com/o2/a/pt8x2w0/0',''),(10292,1,2494,'6','Raymond Cuni',''),(10293,1,2494,'2','886898077',''),(10294,1,2494,'3','raymond.cuni@msn.com',''),(10295,1,2494,'9','Ul. Nakielska 1',''),(10296,1,2494,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/tLXG50UaobP\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This opportunity could greatly enhance your website\'s reach and traffic.',''),(10297,1,2495,'6','Bruce Godon',''),(10298,1,2495,'2','804-715-1479',''),(10299,1,2495,'3','info@increaseorganictraffic.com',''),(10300,1,2495,'9','Waldmuhlgasse 43',''),(10301,1,2495,'4','Hi juiceelectrical.co.nz,\r\n\r\nI would like to discuss SEO!\r\n\r\nI can assist in optimizing your website to reach the first page of Google, thereby increasing the leads and sales generated from your site.\r\n\r\nNote: I\'d be happy to discuss SEO services in greater detail with you; we can work together. Drop your best number to reach.\r\n\r\nThanks,\r\n\r\nBests Regards,\r\nBruce Godon\r\nSr SEO consultant\r\nhttps://www.increaseorganictraffic.com\r\nPh. No: 1-804-715-1479\r\n\r\nIf you don’t want me to contact you again about this, reply with “unsubscribe”',''),(10302,1,2496,'6','Matthew Williams',''),(10303,1,2496,'2','7747547753',''),(10304,1,2496,'3','futuresalesco@gmail.com',''),(10305,1,2496,'9','77 Glenurquhart Road',''),(10306,1,2496,'4','Hi there, \r\n\r\nI wanted to share something powerful with you—our revolutionary product, TrafficFuse. \r\n\r\nThis isn’t just any traffic tool. With TrafficFuse, you’ll have access to tens of thousands of visitors, views, and clicks daily to your website. 100K to 900K/month and millions of visitors a year. Here’s how it works: \r\n\r\nWe leverage your Facebook pixel to deliver red-hot buyer traffic—the kind of traffic sourced from multimillion-dollar companies’ product launches. This is proven, high-intent traffic that has already generated millions in sales and continues to do so. \r\n\r\nImagine receiving visitors who are ready to buy, credit card in hand, just like Amazon shoppers. These are customers who are actively seeking products or services like yours. If your business aligns with their interests, they’re highly likely to convert into paying customers. \r\n\r\nDoes this sound like the kind of traffic you need to scale your business?\r\n\r\nFor a limited time for our Black Friday Event and in celebration of the highly anticipated launch of our growth partnership digital platform, ZENTARA, starting TODAY we have opened the doors to TrafficFuse to you for you to get for any amount. \r\n\r\nThat’s right put any amount into the checkout link and you’ll receive tens of thousands of visitors, views, and clicks daily to your website for a monthly subscription for the amount you enter. \r\n\r\nThis is only for a limited time then we’ll be switching to a monthly subscription price point. \r\n\r\nGet locked in with your early bird access now to the fastest way to make 6 figures online!\r\n\r\nClick below to learn more and get started with TrafficFuse today: \r\n[Learn More About TrafficFuse](https://zentara.site/trafficfuse-offer) \r\n\r\nBest regards, \r\nMatthew Williams\r\nPresident\r\nZentara\r\n\r\n\r\n\r\nTo unsubscribe reply with the word “UNSUBSCRIBE” as the subject line.',''),(10307,1,2497,'6','Miaphync',''),(10308,1,2497,'2','87565857168',''),(10309,1,2497,'3','yawiviseya67@gmail.com',''),(10310,1,2497,'9','City',''),(10311,1,2497,'4','Hej, jeg ønskede at kende din pris.',''),(10312,1,2497,'5','FBI',''),(10313,1,2498,'6','OJ James',''),(10314,1,2498,'2','4661671565',''),(10315,1,2498,'3','ojjames2023@gmail.com',''),(10316,1,2498,'9','Hochstrasse 87',''),(10317,1,2498,'4','Ultra-Realistic Human-Like Al Influencers For Instagram, YouTube And TikTok In Multiple Niches & Automatically Creates & Publish Trending Al Viral Contents Like... Dancing Reel Videos, Al Video Songs, TV Shows, Commercial Ads Etc IN LESS THAN 60 SECONDS!\r\n\r\nFor more click here :<<<<<< https://warriorplus.com/o2/a/pt8x2w0/0',''),(10318,1,2499,'6','Lavada Lamson',''),(10319,1,2499,'2','3094033016',''),(10320,1,2499,'3','lavada.lamson@gmail.com',''),(10321,1,2499,'9','110 Coburn Hollow Road',''),(10322,1,2499,'4','I pray you are having a great day! Would you be interested in a savings membership, starting at just $20/month? You can save on multiple items including gas and this opportunity is available to you worldwide! Click the link below for more information. ~ Kristi Reed ~\r\nhttps://kristi.savingshighwayglobal.com/?page=membership\r\nDISCLAIMER: This is not a guarantee of savings, earnings, health, or increased credit score. All results vary.',''),(10323,1,2500,'6','Jacob Whiteeagle',''),(10324,1,2500,'2','6057866458',''),(10325,1,2500,'3','jacobwhiteeagle@proton.me',''),(10326,1,2500,'9','Traunuferstrasse 16',''),(10327,1,2500,'4','Hi friend\r\ni want to ask u if u need loan , i can give u up to 100k without any questions, fees start from 2%.\r\nu can take for long and short term, if u need please contact me \r\n\r\nMy whatsapp number: +17852192072\r\nMy phone: +16057866458\r\nMy email: jacobwhiteeagle@proton.me',''),(10328,1,2501,'6','Krystal Sligo',''),(10329,1,2501,'2','240846391',''),(10330,1,2501,'3','sligo.krystal8@outlook.com',''),(10331,1,2501,'9','42 Bathurst Road',''),(10332,1,2501,'4','Hi, The ERC (Employee Retention Tax Credit) government rebate program has re-opened and we can assist you in claiming your $26,000 refund for every W-2 employee that you paid during COVID. This is money owed to you that does not need to be paid back. This is your last chance to file. Note: You MUST be a USA based business to be eligible. Visit https://claim-erc.net now to calculate your owed amount before the deadline soon.',''),(10333,1,2502,'6','Bella Woodcock',''),(10334,1,2502,'2','9058313120',''),(10335,1,2502,'3','bella.woodcock@gmail.com',''),(10336,1,2502,'9','1983 Toy Avenue',''),(10337,1,2502,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/Zp3x50UaoaQ\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This opportunity could greatly enhance your website\'s reach and engagement.',''),(10338,1,2503,'6','Oliviaphync',''),(10339,1,2503,'2','89418712534',''),(10340,1,2503,'3','ebojajuje04@gmail.com',''),(10341,1,2503,'9','City',''),(10342,1,2503,'4','Hola, quería saber tu precio..',''),(10343,1,2503,'5','Apple',''),(10344,1,2504,'6','Penney Orme',''),(10345,1,2504,'2','753312363',''),(10346,1,2504,'3','orme.penney@gmail.com',''),(10347,1,2504,'9','6 Mcdowall Street',''),(10348,1,2504,'4','I saw that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/tLXG50UaobP\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This solution could greatly amplify your website\'s reach and visitors.',''),(10349,1,2505,'6','Christiane Bouie',''),(10350,1,2505,'2','7773973492',''),(10351,1,2505,'3','bouie.christiane@gmail.com',''),(10352,1,2505,'9','47 Long Street',''),(10353,1,2505,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/tLXG50UaobP\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly increase your website\'s reach and engagement.',''),(10354,1,2506,'6','Bruce Godon',''),(10355,1,2506,'2','804-715-1479',''),(10356,1,2506,'3','info@increaseorganictraffic.com',''),(10357,1,2506,'9','32 Rue Banaudon',''),(10358,1,2506,'4','Hi juiceelectrical.co.nz,\r\n\r\nI would like to discuss SEO!\r\n\r\nI can assist in optimizing your website to reach the first page of Google, thereby increasing the leads and sales generated from your site.\r\n\r\nNote: I\'d be happy to discuss SEO services in greater detail with you; we can work together. Drop your best number to reach.\r\n\r\nThanks,\r\n\r\nBests Regards,\r\nBruce Godon\r\nSr SEO consultant\r\nhttps://www.increaseorganictraffic.com\r\nPh. No: 1-804-715-1479\r\n\r\nIf you don’t want me to contact you again about this, reply with “unsubscribe”',''),(10359,1,2507,'6','Ravi Sabella',''),(10360,1,2507,'2','623042840',''),(10361,1,2507,'3','dave.sabella@gmail.com',''),(10362,1,2507,'9','Casa Posrclas 143',''),(10363,1,2507,'4','Hi,\r\nMy name is Alastair D. i, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS.\r\n\r\n I recently grew my client’s organic search traffi with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight.\r\n\r\nAnd we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. \r\n\r\n\r\nContact me today and get a FREE SEO AUDIT for your website\r\n\r\nClick here to start ====> http://tinyurl.com/7ejfvwut',''),(10364,1,2508,'6','Tedphync',''),(10365,1,2508,'2','83521474893',''),(10366,1,2508,'3','axobajigufo34@gmail.com',''),(10367,1,2508,'9','City',''),(10368,1,2508,'4','Hai, saya ingin tahu harga Anda.',''),(10369,1,2508,'5','Wallmart',''),(10370,1,2509,'6','Brian WRIGHT Eng.',''),(10371,1,2509,'2','7209248652',''),(10372,1,2509,'3','info@wexonex.com',''),(10373,1,2509,'9','999 18-th Street',''),(10374,1,2509,'4','You can get these dance hits at https://wexonex.com/home/17-german-ww2-dance-hits.html',''),(10375,1,2510,'6','Eric Jones',''),(10376,1,2510,'2','555-555-1212',''),(10377,1,2510,'3','ericjonesmyemail@gmail.com',''),(10378,1,2510,'9','420 Lexington Ave',''),(10379,1,2510,'4','To the juiceelectrical.co.nz Administrator. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at juiceelectrical.co.nz.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb 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.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime 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!\r\n\r\nPlus, 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.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(10380,1,2511,'6','Pearl Sheedy',''),(10381,1,2511,'2','632401636',''),(10382,1,2511,'3','pearl.sheedy50@gmail.com',''),(10383,1,2511,'9','Jan Vermeerstraat 154',''),(10384,1,2511,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/V0j150Uaobz\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly amplify your website\'s reach and traffic.',''),(10385,1,2512,'6','Sparrow Contreras',''),(10386,1,2512,'2','123456789',''),(10387,1,2512,'3','po.susai.nf.o@gmail.com',''),(10388,1,2512,'9','Strada Statale 136',''),(10389,1,2512,'4','Boost Your Venture with Shopify - Just $1/month for the first 3 months!\r\n\r\nMake your vision a reality with Shopify’s special offer: Join for a no-cost trial and get 3 months of Shopify for just $1/month on select plans. Seize this moment to transition or start your business without initial investment!\r\n\r\nWhy Shopify?\r\n\r\nShopify is a complete platform that lets you build, customize, and manage your online store effortlessly. Sell across multiple channels—via your site, social networks, or in-person.\r\n\r\nWith Shopify, you can:\r\n- Quickly create a stunning online store\r\n- Sell everywhere: online, on mobile, social, and beyond\r\n- Oversee inventory, transactions, and fulfillment from any device\r\n\r\nShopify takes care of software updates and maintenance, so you can focus on growing your business.\r\n\r\n-- Get started for $1/month: https://bit.ly/shopify-free-promo \r\n\r\nDon’t miss this chance to launch your dream business with Shopify’s incredible offer!',''),(10390,1,2513,'6','Vvalkyie Dala',''),(10391,1,2513,'2','0017852192072',''),(10392,1,2513,'3','marketing@valkyriedalafitness.com',''),(10393,1,2513,'9','Rua Antonio Rodrigues Santos 783',''),(10394,1,2513,'4','Hi friend\r\ni want to ask u if u need loan , i can give u up to 100k without any questions, fees start from 2%.\r\nu can take for long and short term, if u need please contact me \r\n\r\nMy Whatsapp: +17852192072\r\nMy phone: +17852122012\r\nMy email: marketing@valkyriedalafitness.com',''),(10395,1,2514,'6','Pablo Clouse',''),(10396,1,2514,'2','267678267',''),(10397,1,2514,'3','clouse.pablo@yahoo.com',''),(10398,1,2514,'9','58 Rue Gouin De Beauchesne',''),(10399,1,2514,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly increase your website\'s reach and visitors.',''),(10400,1,2515,'6','Rowan Manson',''),(10401,1,2515,'2','0220417046',''),(10402,1,2515,'3','rowanmanson@gmail.com',''),(10403,1,2515,'9','79 Granite Drive, Rolleston',''),(10404,1,2515,'4','Hi there, just wanting to get a 15a plug box installed for our spa pool in Rolleston. Thanks',''),(10405,1,2516,'6','Jacob Whiteeagle',''),(10406,1,2516,'2','6057866458',''),(10407,1,2516,'3','jacobwhiteeagle@proton.me',''),(10408,1,2516,'9','Untere Hauptstrasse 74',''),(10409,1,2516,'4','Hi friend\r\ni want to ask u if u need loan , i can give u up to 100k without any questions, fees start from 2%.\r\nu can take for long and short term, if u need please contact me \r\n\r\nMy whatsapp number: +17852192072\r\nMy phone: +16057866458\r\nMy email: jacobwhiteeagle@proton.me',''),(10410,1,2517,'6','Sofia',''),(10411,1,2517,'2','456436953',''),(10412,1,2517,'3','info@kemble.medicopostura.com',''),(10413,1,2517,'9','98 Rue Pierre Motte',''),(10414,1,2517,'4','Hey there \r\n\r\nLooking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help!\r\n\r\nExperience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep.\r\n\r\nMade from lightweight, breathable fabric, it ensures comfort all day long.\r\n\r\nGrab it today at a fantastic 60% OFF: https://medicopostura.com\r\n\r\nPlus, enjoy FREE shipping for today only!\r\n\r\nDon\'t miss out on this amazing deal. Get yours now and start transforming your posture!\r\n\r\nBest regards, \r\n\r\nSofia',''),(10415,1,2518,'6','Ciara Langler',''),(10416,1,2518,'2','1157225760',''),(10417,1,2518,'3','ciara.langler95@hotmail.com',''),(10418,1,2518,'9','Rua Padre Antonio Trevinho 1817',''),(10419,1,2518,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/V0j150Uaobz\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly increase your website\'s reach and traffic.',''),(10420,1,2519,'6','Christine Douglas',''),(10421,1,2519,'2','+44 7782 797674',''),(10422,1,2519,'3','hr@bp-isourcing.com',''),(10423,1,2519,'9','Mohrenstrasse 59',''),(10424,1,2519,'4','Dear [Recipient],\r\n\r\nWe invite Juiceelectrical to register as a vendor/contractor for BP\'s 2024/2025 partnership program. This opportunity is open to companies globally.\r\n\r\nIf interested, please confirm, and we will send the Vendor Questionnaire and Expression of Interest (EOI) form.\r\n\r\nYour prompt response will help expedite the process. We look forward to the possibility of collaborating.\r\n\r\nBest regards,\r\nChristine Douglas\r\nContractors Coordinator / Head of Investor Relations\r\nBritish Petroleum (BP)',''),(10425,1,2520,'6','McKee Michael',''),(10426,1,2520,'2','+1 (303) 710-8342',''),(10427,1,2520,'3','mikemckee@mhfinancellc.com',''),(10428,1,2520,'9','935 Linden Avenue',''),(10429,1,2520,'4','Hello Sales,\r\n\r\nI hope you\'re doing well.\r\n\r\nI came across a product on your website, Juiceelectrical , and I\'m interested in making order. Could you please confirm if it’s currently available? Additionally, I would appreciate it if you could send me your product catalog and pricing details.\r\n\r\nI’ll be sharing our order list and quantities shortly.\r\n\r\nThank you in advance for your assistance.\r\n\r\nBest regards,\r\nMcKee Michael',''),(10430,1,2521,'6','Abby Carlin',''),(10431,1,2521,'2','4169068570',''),(10432,1,2521,'3','carlin.abby@gmail.com',''),(10433,1,2521,'9','2365 Tycos Dr',''),(10434,1,2521,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This opportunity could greatly increase your website\'s reach and engagement.',''),(10435,1,2522,'6','Ivan R.',''),(10436,1,2522,'2','665137056',''),(10437,1,2522,'3','adam.weld@yahoo.com',''),(10438,1,2522,'9','Ul. Prusa Boleslawa 14',''),(10439,1,2522,'4','Hey there, I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. \r\n\r\nI want to ask you if you\'re interested in buying/renting Google Ads accounts with free spending ads credit limit of 10k monthly on each account ($329 daily budget & $120k a year of free ppc ads spend limit) for a very cheap price starting at $500-$1000? It works for all types of Google Ads policy niches like E-Commerce stores, affiliate marketing, dropshipping ads, lead generation, etc... in the search ads placement (website traffic or call leads). The best Google Ads placement feature to easily boost your online digital presence and business.\r\n\r\n\r\nLet\'s connect on FB and check out my recent post: https://bit.ly/GoogleAdsAccounts \r\n\r\nWant more info: https://bit.ly/GrantAccounts \r\n\r\nIf you\'re interested or have any questions private email me at ivanr1030@gmail.com\r\n\r\nLearn more about me - https://bit.ly/Ivan-Ramirez\r\n\r\nSubscribe to my YouTube channel: https://bit.ly/YouTubeIvanRamirez\r\n\r\n\r\n\r\nThanks & Regards,\r\nIvan R.\r\n\r\n\r\n\r\nIf you would like to opt-out of communication with us, visit:\r\nhttps://bit.ly/websiteoptout',''),(10440,1,2523,'6','Brian WRIGHT Eng.',''),(10441,1,2523,'2','7209248652',''),(10442,1,2523,'3','info@wexonex.com',''),(10443,1,2523,'9','999 18-th Street',''),(10444,1,2523,'4','You can get these dance hits at https://wexonex.com/home/17-german-ww2-dance-hits.html',''),(10445,1,2524,'6','Eloisa Bancks',''),(10446,1,2524,'2','102019736',''),(10447,1,2524,'3','ankebos77@gmail.com',''),(10448,1,2524,'9','4 Rue De Penthievre',''),(10449,1,2524,'4','Dear Sir,\r\n Can you send us the full details, i am interested in your service.\r\n\r\nThanks',''),(10450,1,2525,'6','Elmo Manjarrez',''),(10451,1,2525,'2','7159799416',''),(10452,1,2525,'3','manjarrez.elmo@gmail.com',''),(10453,1,2525,'9','1857 Orphan Road',''),(10454,1,2525,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/Zp3x50UaoaQ\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This opportunity could greatly amplify your website\'s reach and traffic.',''),(10455,1,2526,'6','Roman Echevarria',''),(10456,1,2526,'2','3340523393',''),(10457,1,2526,'3','echevarria.roman62@gmail.com',''),(10458,1,2526,'9','Via Giberti 140',''),(10459,1,2526,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This solution could greatly increase your website\'s reach and engagement.',''),(10460,1,2527,'6','Martin Royal',''),(10461,1,2527,'2','+1 2056327933',''),(10462,1,2527,'3','martinroyal@mhfinancellc.com',''),(10463,1,2527,'9','19 Short Road',''),(10464,1,2527,'4','Hello,\r\n\r\nI hope you\'re doing well.\r\n\r\nI’m reaching out to see if you have any upcoming projects in need of funding. We offer financing at competitive terms, with an annual return rate of 4.45%. If you’re working in a sector that could benefit from investment, we’d be happy to discuss how we can support your goals.\r\n\r\nAdditionally, we offer attractive commission opportunities for brokers or referal who connect us with project owners seeking funding.\r\n\r\nIf you’re interested in learning more or have any questions, feel free to reach out.\r\n\r\nBest regards,\r\nRoyal Martin',''),(10465,1,2528,'6','Rozella Coveny',''),(10466,1,2528,'2','4176375',''),(10467,1,2528,'3','rozella.coveny@outlook.com',''),(10468,1,2528,'9','Smaratun 90',''),(10469,1,2528,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/tLXG50UaobP\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly increase your website\'s reach and engagement.',''),(10470,1,2529,'6','Margot Blumenthal',''),(10471,1,2529,'2','697016866',''),(10472,1,2529,'3','margot.blumenthal@hotmail.com',''),(10473,1,2529,'9','Roelantstraat 161',''),(10474,1,2529,'4','I noticed that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/Zp3x50UaoaQ\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly amplify your website\'s reach and engagement.',''),(10475,1,2530,'6','Hans Dash',''),(10476,1,2530,'3','dash.hans74@hotmail.com',''),(10477,1,2530,'9','Kelsenstrasse 29',''),(10478,1,2530,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/XFEv50Uao9x\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly enhance your website\'s reach and traffic.',''),(10479,1,2531,'6','WlasoffArtspanSr',''),(10480,1,2531,'2','81931512357',''),(10481,1,2531,'3','14777@loves-ltd.com',''),(10482,1,2531,'9','Banjul',''),(10483,1,2531,'4','Рады приветствовать вас на вашем веб-сайте! \r\n \r\nК вам обращается агентство по СЕО продвижению XRumer Inc. \r\n \r\nВаш онлайн-сайт, как можно отметить, еще только начинает набирать обороты. Для того, чтобы максимально ускорить его рост, предлагаем наши услуги по внешней SEO-оптимизации. Продвижение в поисковиках – наша работа. В ассортименте представлены надежные и эффективные SEO-инструменты для специалистов. У нас большой опыт в данной области и огромное портфолио выполненных проектов - предоставим по запросу. \r\n \r\nПрямо сейчас можем предложить скидку на все услуги - 10%. \r\n \r\nУслуги нашей компании: \r\n \r\n- Раскрутка в Yandex LLC - Телеграм групп, Инстаграм, VK групп - 1,2-2500руб \r\n \r\n- Email рассылка: 10000 сообщений - 1000руб \r\n \r\n- Размещаем трастовые ссылки (требуется абсолютно всем сайтам) – от 1,5 до 5000 р \r\n \r\n- Размещение безанкорных ссылок (полезно для любых сайтов) – 3900 р \r\n \r\n- Профессиональный прогон на 110 000 сайтов в RU.зоне (очень полезно для сайтов) – 2900 рублей \r\n \r\n- Размещение 150 постов в VK про ваш сайт (поможет получить относительно дешевую рекламу) – 3.900 руб \r\n \r\n- Публикация статей о вашем сайте на 300 топовых интернет-форумах (очень мощная раскрутка интернет-ресурса) – 29.000 р \r\n \r\n- Мега Постинг – грандиозный прогон по 3 млн площадок (мегамощный пакет для ваших сайтов) – 39900 рублей \r\n \r\n- Рассылка рекламных сообщений по сайтам при помощи обратной связи – договорная стоимость, зависит от объемов. \r\n \r\nЕсли что-нибудь не понятно, в любое время обращайтесь, подскажем. \r\n \r\n \r\nОплата: Yoo.Money, Bitcoin, МИР, СБП, Visa, MasterCard... \r\nПринимаем USDT - Отчётность. \r\nTelgrm: https://t.me/exrumer \r\nSkype: Loves.Ltd \r\n \r\nТолько этот.',''),(10484,1,2531,'5','AliExpress',''),(10485,1,2532,'6','Royal Martin',''),(10486,1,2532,'2','+1(205)632-7933,',''),(10487,1,2532,'3','martinroyal@mhfinancellc.com',''),(10488,1,2532,'9','Langgatan 5',''),(10489,1,2532,'4','Hello,\r\n\r\nI hope you\'re doing well.\r\n\r\nI\'m reaching out to see if you or Juiceelectrical have any upcoming projects that could benefit from funding. We offer financing with competitive terms and an annual return of 4.45%. If you\'re involved in a sector that could use investment, I\'d be happy to discuss how we can help.\r\n\r\nWe also provide commission opportunities for brokers or referrals who connect us with project owners seeking funding.\r\n\r\nFeel free to get in touch if you\'d like more details or have any questions.\r\n\r\nBest regards,\r\nRoyal Martin',''),(10490,1,2533,'6','Alison',''),(10491,1,2533,'2','5627240882',''),(10492,1,2533,'3','info@cromer.caredogbest.com',''),(10493,1,2533,'9','3908 Kerry Way',''),(10494,1,2533,'4','Good day \r\n\r\nI 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. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nThanks and Best Regards, \r\n\r\nAlison',''),(10495,1,2534,'6','Lyda Lammon',''),(10496,1,2534,'2','6139456492',''),(10497,1,2534,'3','lyda.lammon@gmail.com',''),(10498,1,2534,'9','2842 Montreal Road',''),(10499,1,2534,'4','I saw that your juiceelectrical.co.nz website may be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/XFEv50Uao9x\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly increase your website\'s reach and visitors.',''),(10500,1,2535,'6','StephenDrure',''),(10501,1,2535,'2','87521879423',''),(10502,1,2535,'3','466852@loves-ltd.com',''),(10503,1,2535,'9','Loja',''),(10504,1,2535,'4','Hi [First Name - , \r\n \r\nI hope this email finds you well! I’m reaching out with an exciting opportunity to enhance your website’s SEO performance and engage your audience through regular, optimized content – at no cost for two weeks. \r\n \r\nWe’ve developed a WordPress plugin that automatically publishes relevant, SEO-focused news and articles to your website. With our tool, you can: \r\n \r\nGain Backlinks through continuously added, optimized content \r\n \r\nImprove SEO Rankings with a stream of fresh content automatically tailored to your keywords \r\n \r\nSave Time and Resources with fully automated publishing that integrates seamlessly into your current setup \r\n \r\nDuring our two-week trial, you’ll have unlimited access to our plugin’s features, allowing you to see firsthand the impact of automated SEO publishing. \r\n \r\nLooking forward to helping you elevate your SEO game. \r\n \r\nTrial - https://neuron.expert/hire-manager-stripe-trial/ \r\n \r\nLearn more - https://neuron.expert/content-manager/ \r\n \r\nBest regards, Dino Ko',''),(10505,1,2535,'5','AliExpress',''),(10506,1,2536,'6','Rusty Austin',''),(10507,1,2536,'2','6137741876',''),(10508,1,2536,'3','austin.rusty@googlemail.com',''),(10509,1,2536,'9','1744 Bank St',''),(10510,1,2536,'4','I see that your juiceelectrical.co.nz website may be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This service could greatly amplify your website\'s reach and engagement.',''),(10511,1,2537,'6','Brian WRIGHT Eng.',''),(10512,1,2537,'2','7209248652',''),(10513,1,2537,'3','info@wexonex.com',''),(10514,1,2537,'9','999 18-th Street',''),(10515,1,2537,'4','You can get these dance hits at https://wexonex.com/home/17-german-ww2-dance-hits.html',''),(10516,1,2538,'6','Dimaphync',''),(10517,1,2538,'2','85917482357',''),(10518,1,2538,'3','somasesokiyo31@gmail.com',''),(10519,1,2538,'9','City',''),(10520,1,2538,'4','Hi, ego volo scire vestri pretium.',''),(10521,1,2538,'5','Nokia',''),(10522,1,2539,'6','Donnie Mayne',''),(10523,1,2539,'2','49208953',''),(10524,1,2539,'3','donnie.mayne@yahoo.com',''),(10525,1,2539,'9','Naustveien 116',''),(10526,1,2539,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/XFEv50Uao9x\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly increase your website\'s reach and traffic.',''),(10527,1,2540,'6','Georgetta Emma',''),(10528,1,2540,'2','1754131286',''),(10529,1,2540,'3','georgetta.emma@gmail.com',''),(10530,1,2540,'9','Simpnas 45',''),(10531,1,2540,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/tLXG50UaobP\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly amplify your website\'s reach and traffic.',''),(10532,1,2541,'6','Rosalina Rowallan',''),(10533,1,2541,'2','61178445',''),(10534,1,2541,'3','rosalina.rowallan@hotmail.com',''),(10535,1,2541,'9','Gammelhavn 35',''),(10536,1,2541,'4','I see that your juiceelectrical.co.nz website may be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly enhance your website\'s reach and traffic.',''),(10537,1,2542,'6','Mike Conors',''),(10538,1,2542,'2','81624468369',''),(10539,1,2542,'3','mikexxxx@gmail.com',''),(10540,1,2542,'9','Willemstad',''),(10541,1,2542,'4','Hi there \r\n \r\nHaving some bunch of links pointing to juiceelectrical.co.nz could have 0 value or worse for your website, It really doesn`t matter how many backlinks you have, what matters is the amount of keywords those websites rank for. That is the most important thing. Not the fake Moz DA or ahrefs DR score. That anyone can do these days. BUT the amount of ranking keywords the sites that link to you have. Thats it. \r\n \r\nHave such links point to your website and you will ROCK ! \r\n \r\nWe are offering this special service here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nIn doubts, or need more information, chat with us: https://www.strictlydigital.net/whatsapp-us/ \r\n \r\nKind regards \r\nMike Conors\r\n \r\nstrictlydigital.net',''),(10542,1,2542,'5','Apple',''),(10543,1,2543,'6','Jeanette Yarnold',''),(10544,1,2543,'2','240014475',''),(10545,1,2543,'3','yarnold.jeanette40@msn.com',''),(10546,1,2543,'9','47 Campbells River Road',''),(10547,1,2543,'4','I saw that your juiceelectrical.co.nz website may be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/tLXG50UaobP\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly increase your website\'s reach and traffic.',''),(10548,1,2544,'6','Michael Wakehurst',''),(10549,1,2544,'2','81129237',''),(10550,1,2544,'3','wakehurst.geraldo@gmail.com',''),(10551,1,2544,'9','Borgmester Hansensvej 9',''),(10552,1,2544,'4','Hi there,\r\n\r\nI know your time is valuable, so I’ll keep this quick. I help businesses and websites adopt AI. \r\nMany business owners struggle to integrate AI into their operations, that’s why we created AI For Entrepreneurs and Smarter with AI. \r\n\r\nThese guides, normally $29 each, are now free for you.\r\n\r\nInside, you’ll learn how to boost revenue, save time, and quickly incorporate AI into your business or website.\r\n\r\nIf you are interested, you can download them here: http://aibusinessmastery.pro\r\n\r\n\r\nLooking forward to hearing how it helps!\r\n\r\nBest regards,\r\n\r\nMichael',''),(10553,1,2545,'6','Imogen McLerie',''),(10554,1,2545,'2','5533245893',''),(10555,1,2545,'3','imogen.mclerie@gmail.com',''),(10556,1,2545,'9','Leipziger Stra?E 83',''),(10557,1,2545,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly amplify your website\'s reach and visitors.',''),(10558,1,2546,'6','Mohamed Slater',''),(10559,1,2546,'2','617521023',''),(10560,1,2546,'3','mohamed.slater@hotmail.com',''),(10561,1,2546,'9','Mohe 61',''),(10562,1,2546,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(10563,1,2547,'6','Rubye Croteau',''),(10564,1,2547,'2','6093372385',''),(10565,1,2547,'3','rubye.croteau@gmail.com',''),(10566,1,2547,'9','Konstanzer Strasse 44',''),(10567,1,2547,'4','Si deseas rejuvenecer y deshacerte de las canas de forma natural, ahora hay descuentos de hasta el 56% en *Sereni Capelli*. https://serenicapelli.com\r\nEsta es tu oportunidad de eliminar las canas, la caspa y el exceso de sebo a un precio muy bajo. \r\nEstos tratamientos también detienen la caída del cabello y lo regeneran. \r\n\r\nHe investigado y he visto que millones de europeos usan estos productos. \r\nCreo que también te vendrían muy bien.',''),(10568,1,2548,'6','Ivan Smart',''),(10569,1,2548,'2','3495417',''),(10570,1,2548,'3','smartiez@xtra.co.nz',''),(10571,1,2548,'9','28a Bicknor Street Templeton',''),(10572,1,2548,'4','Mitsubishi Heat pump Annual Service.\r\n\r\nWould appreciate booking in the heat pump installed by Juice for a service.\r\nThe job is not urgent and could be done when ever it suits.\r\n\r\nKind regards\r\nIvan Smart',''),(10573,1,2548,'5','Returning customer',''),(10574,1,2549,'6','Christopher Andrew Cron',''),(10575,1,2549,'3','cron.media@hotmail.com',''),(10576,1,2549,'9','1 The Rise, Mount Pleasant, Christchurch 8081',''),(10577,1,2549,'4','Hi. \r\nI have a spa pool due to get installed. I am wanting to know if you guys do electrical work to connect a 25 amp spa. I see that I currently have a 25 Amp RCBO switch in my power box. It is labelled spa pool- put in prior to me owning the home. Any idea on the cost to connect the electricity to the spa? \r\n\r\nThanks \r\n\r\nChris',''),(10578,1,2549,'5','Internet search',''),(10579,1,2550,'6','Felicity Sauncho',''),(10580,1,2550,'2','353578007',''),(10581,1,2550,'3','felicitysauncho02@gmail.com',''),(10582,1,2550,'9','95 Walpole Avenue',''),(10583,1,2550,'4','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically.\r\n\r\n- We guarantee to gain you 700-1500+ subscribers per month.\r\n- People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\n The price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nFelicity',''),(10584,1,2551,'6','Tedphync',''),(10585,1,2551,'2','88521682432',''),(10586,1,2551,'3','ibucezevuda439@gmail.com',''),(10587,1,2551,'9','City',''),(10588,1,2551,'4','Γεια σου, ήθελα να μάθω την τιμή σας.',''),(10589,1,2551,'5','Nokia',''),(10590,1,2552,'6','Niklas Gearhart',''),(10591,1,2552,'2','6754625251',''),(10592,1,2552,'3','gearhart.niklas@msn.com',''),(10593,1,2552,'9','Brandenburgische Str 96',''),(10594,1,2552,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/XFEv50Uao9x\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly amplify your website\'s reach and engagement.',''),(10595,1,2553,'6','Kareem Skidmore',''),(10596,1,2553,'2','3280147961',''),(10597,1,2553,'3','kareem.skidmore82@gmail.com',''),(10598,1,2553,'9','Via Bologna 10',''),(10599,1,2553,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/Zp3x50UaoaQ\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly enhance your website\'s reach and engagement.',''),(10600,1,2554,'6','Kerry Marie',''),(10601,1,2554,'2','266731533',''),(10602,1,2554,'3','kerrymarie2022@gmail.com',''),(10603,1,2554,'9','Bahnhofstrasse 48',''),(10604,1,2554,'4','Steal The Exact Strategy That BIG Corporations Like Microsoft, Coco-Cola, Mercedes, McDonalds, Disney Are Exploiting To RAKE In Billions - Copy & Drive UNLIMITED Traffic To Your Website, Blogs, Offers, Affiliates Links Etc!\r\n1st-Ever A.I. App That Create 100\'s Of Stunning *Anime-Style* Videos In Minutes & FORCE YouTube, Instagram, TikTok, Facebook To Flood Them With 100,000\'s Of Visitors - Even If You Have Zero Followers, Zero Budget!\r\n\r\n\r\n\r\nClick here for more Info : https://warriorplus.com/o2/a/yv4khbt/0',''),(10605,1,2555,'6','Iva Rosman',''),(10606,1,2555,'2','663030467',''),(10607,1,2555,'3','rosman.iva@outlook.com',''),(10608,1,2555,'9','Oude Marktstraat 136',''),(10609,1,2555,'4','I see that your juiceelectrical.co.nz website may be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly amplify your website\'s reach and visitors.',''),(10610,1,2556,'6','Tedphync',''),(10611,1,2556,'2','84535239968',''),(10612,1,2556,'3','axobajigufo34@gmail.com',''),(10613,1,2556,'9','City',''),(10614,1,2556,'4','Sveiki, aš norėjau sužinoti jūsų kainą.',''),(10615,1,2556,'5','Nokia',''),(10616,1,2557,'6','Adolph Deweese',''),(10617,1,2557,'2','4607908',''),(10618,1,2557,'3','deweese.adolph@hotmail.com',''),(10619,1,2557,'9','Reykjarholi 1',''),(10620,1,2557,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/V0j150Uaobz\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly increase your website\'s reach and traffic.',''),(10621,1,2558,'6','Bea Gilliland',''),(10622,1,2558,'2','4746643',''),(10623,1,2558,'3','bea.gilliland6@gmail.com',''),(10624,1,2558,'9','Armuli 60',''),(10625,1,2558,'4','I see that your juiceelectrical.co.nz website may be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This solution could greatly amplify your website\'s reach and traffic.',''),(10626,1,2559,'6','Kerry Marie',''),(10627,1,2559,'2','4559522',''),(10628,1,2559,'3','kerrymarie2022@gmail.com',''),(10629,1,2559,'9','Armuli 34',''),(10630,1,2559,'4','1st-Ever A.I. App That Create 100\'s Of Stunning Anime-Style Videos In Minutes & FORCE YouTube, Instagram, TikTok, Facebook To Flood Them With 100,000\'s Of Visitors - Even If You Have Zero Followers, Zero Budget!\r\n\r\nSteal The Exact Strategy That BIG Corporations Like Microsoft, Coco-Cola, Mercedes, McDonalds, Disney Are Exploiting To RAKE In Billions - Copy & Drive UNLIMITED Traffic To Your Website, Blogs, Offers, Affiliates Links Etc!\r\n\r\nClick Here for more Info : https://warriorplus.com/o2/a/yv4khbt/0',''),(10631,1,2560,'6','Matthias Burt',''),(10632,1,2560,'2','3035792626',''),(10633,1,2560,'3','burt.matthias@gmail.com',''),(10634,1,2560,'9','1606 Sampson Street',''),(10635,1,2560,'4','Don\'t waste your time with ineffective advertising. Let us help you reach millions of potential customers with just one flat rate. By sending your ad text through website contact forms, your message will be read just like you\'re reading this one. Plus, there are never any per click costs.\r\n\r\n Feel free to reach out if you’d like to dive deeper into how I do this; my contact info is below.\r\n\r\nRegards,\r\nMatthias Burt\r\nEmail: Matthias.Burt@morebiz.my\r\nWebsite: http://mex4hq.form-submission-masters.ink\r\nConnect with me via Skype: https://join.skype.com/invite/nVcxdDgQnfhA',''),(10636,1,2561,'6','Roosevelt Annunziata',''),(10637,1,2561,'2','4161974',''),(10638,1,2561,'3','annunziata.roosevelt@gmail.com',''),(10639,1,2561,'9','Vesturgata 15',''),(10640,1,2561,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/tLXG50UaobP\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly amplify your website\'s reach and engagement.',''),(10641,1,2562,'6','Natajer',''),(10642,1,2562,'2','83892319561',''),(10643,1,2562,'3','woodthighgire1988@gmail.com',''),(10644,1,2562,'9','Mankon Bamenda',''),(10645,1,2562,'4','Hey, I\'m bored! My contacts: https://sikak.top/click?o=4&a=1036',''),(10646,1,2562,'5','Google',''),(10647,1,2563,'6','Mike Pearcy',''),(10648,1,2563,'2','84285666344',''),(10649,1,2563,'3','mikexxxx@gmail.com',''),(10650,1,2563,'9','Albany',''),(10651,1,2563,'4','Hi, \r\n \r\nCurious about how your website is performing? Discover its strengths and weaknesses with our Free SEO Check Tool! In just 2 minutes, you’ll get a detailed analysis of your website’s SEO health and actionable insights to help improve your rankings. \r\n \r\nTake the first step towards better performance and growth. \r\n \r\nRun Your Free SEO Check Now \r\nhttps://www.speed-seo.net/check-site-seo-score/ \r\n \r\nDon’t let overlooked SEO issues hold you back. Optimize your site today and stay ahead of the competition! \r\n \r\nBest regards, \r\n \r\n \r\nMike Pearcy\r\n \r\nSpeed SEO \r\nWhatsapp us: https://www.speed-seo.net/whatsapp-with-us/',''),(10652,1,2563,'5','Google',''),(10653,1,2564,'6','Max J',''),(10654,1,2564,'3','ffakka@pm.me',''),(10655,1,2564,'9','14 Liddington drive Rolleston',''),(10656,1,2564,'4','Hi. I was looking for a quote for:\r\n- installing 3 heatpumps in my house + upgrading my existing heatpump to wifi\r\n- adding more outlets on several rooms\r\n\r\nThanks!',''),(10657,1,2564,'5','google maps',''),(10658,1,2565,'6','Brian WRIGHT Eng.',''),(10659,1,2565,'2','7209248652',''),(10660,1,2565,'3','info@wexonex.com',''),(10661,1,2565,'9','999 18-th Street',''),(10662,1,2565,'4','Find a best mate for your marriage or a long-term relationship. Are you looking for a new love and a best mate? Do you want to know which one of the potential candidates will be the best? If interested, you will get precise and highly detailed answers to these questions in our ROMANTIC COMPATIBILITY report that we can specially prepare for you. This report will be your best resource for a romantic comparison. You can order your ROMANTIC COMPATIBILITY report at our store: https://wexonex.com',''),(10663,1,2566,'6','Bette Clarkson',''),(10664,1,2566,'2','7903449454',''),(10665,1,2566,'3','bette.clarkson@outlook.com',''),(10666,1,2566,'9','68 Temple Way',''),(10667,1,2566,'4','I noticed that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/V0j150Uaobz\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This opportunity could greatly amplify your website\'s reach and visitors.',''),(10668,1,2567,'6','Augusta Madison',''),(10669,1,2567,'2','498623402',''),(10670,1,2567,'3','augusta.madison@gmail.com',''),(10671,1,2567,'9','Dreve Des Bouleaux 461',''),(10672,1,2567,'4','I saw that your juiceelectrical.co.nz website may be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This solution could greatly enhance your website\'s reach and traffic.',''),(10673,1,2568,'6','alex Molari',''),(10674,1,2568,'2','723957560',''),(10675,1,2568,'3','bestprivatecomunication@gmail.com',''),(10676,1,2568,'9','12 athri',''),(10677,1,2568,'4','Hi Contact - Juice Electrical\r\n\r\nLooking for a reliable VPS provider? After a year with Solid SEO VPS, I can confidently say they’re exceptional. From lightning-fast support (issues resolved in under 15 minutes!) to top-tier performance and unmatched reliability, they’ve exceeded all expectations.\r\n\r\nWant to learn more? Check out my detailed review here https://www.bestqtf.org/2172323_why-solid-seo-vps-is-the-ultimate-choice-for-reliable-and-high-performance-hosting-solutions to see why their service and support stand out.\r\n\r\nNow’s the perfect time to try them—Solid SEO VPS is offering incredible Black Friday discounts!\r\n\r\nExplore the deals here: https://www.solidseovps.com/manage/aff.php?aff=649\r\n\r\nBest regards,\r\nAlex\r\nwww.bestqtf.org\r\ninfo@bestqtf.com',''),(10678,1,2569,'6','🔏 You have received 1 message # 363. Go >>> https://telegra.ph/Bitcoin-Transfer-11-27?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 🔏',''),(10679,1,2569,'2','003955413787',''),(10680,1,2569,'3','romnik2012@code-gmail.com',''),(10681,1,2569,'9','p4ow7l',''),(10682,1,2569,'4','3mjrnm',''),(10683,1,2569,'5','zhv5aq',''),(10684,1,2570,'6','Deanne Harbin',''),(10685,1,2570,'2','7735863082',''),(10686,1,2570,'3','harbin.deanne@gmail.com',''),(10687,1,2570,'9','3740 Virginia Street',''),(10688,1,2570,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/Zp3x50UaoaQ\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This service could greatly amplify your website\'s reach and engagement.',''),(10689,1,2571,'6','Maude Noack',''),(10690,1,2571,'2','782366290',''),(10691,1,2571,'3','noack.maude61@gmail.com',''),(10692,1,2571,'9','Ul. Swietego Andrzeja Boboli 42',''),(10693,1,2571,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ow.ly/Zp3x50UaoaQ\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly increase your website\'s reach and visitors.',''),(10694,1,2572,'6','Graciela Dry',''),(10695,1,2572,'3','dry.graciela@gmail.com',''),(10696,1,2572,'9','Hauptplatz 91',''),(10697,1,2572,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/Zp3x50UaoaQ\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This solution could greatly amplify your website\'s reach and traffic.',''),(10698,1,2573,'6','Heike Russo',''),(10699,1,2573,'2','48799222',''),(10700,1,2573,'3','heike.russo@msn.com',''),(10701,1,2573,'9','Solbrekken 78',''),(10702,1,2573,'4','Do you need targeted Customers emails and phone numbers , so I am here to help you check out my Fiverr 5 stares profile serving over 880 happy customers\r\n contact me here and tell me what you need ===== > https://tinyurl.com/3ckxfu2c\r\nSee you there\r\n\r\nRegards\r\nAwals',''),(10703,1,2574,'6','McKee Michael',''),(10704,1,2574,'2','+1 4052957266',''),(10705,1,2574,'3','mikemckee@mhfinancellc.com',''),(10706,1,2574,'9','145 Ryan Road',''),(10707,1,2574,'4','Dear Sales Team,\r\n\r\nI hope this message finds you well.\r\n\r\nI am interested in placing an order for a product I found on your website, Juiceelectrical. Could you please confirm its availability? Additionally, I would appreciate it if you could send me your product catalog along with pricing information.\r\n\r\nI will share the order list and quantities shortly.\r\n\r\nThank you for your assistance.\r\n\r\nBest regards,\r\nMcKee Michael\r\nPurchasing Manager',''),(10708,1,2575,'6','Mark Brown',''),(10709,1,2575,'2','4634678',''),(10710,1,2575,'3','hor.t.zs.teven@gmail.com',''),(10711,1,2575,'9','Midhraun 55',''),(10712,1,2575,'4','Discover high-performance cloud hosting at an incredible price!\r\n\r\nFor just $12.50 per month, you get:\r\n- 6x AMD Epyc CPU virtual cores\r\n- 24 GB RAM\r\n- 180 GB NVMe Disk Space\r\n- Speeds up to 5 Gbit/s Connectivity\r\n\r\nOur servers, located in Frankfurt, Germany, are designed for optimal performance and reliability. You’ll enjoy features like:\r\n- KVM/ISO options for custom ISO uploads\r\n- Effortless up/downgrade capabilities via the UI\r\n- 5 Snapshots and 5 Backup Slots included\r\n\r\nWhether you’re running apps, managing secure databases, or handling high-demand workloads, this offer delivers everything you need at a fraction of the cost.\r\nDon’t wait—servers at this price go fast! Secure yours today by visiting: https://bit.ly/serverbest\r\n\r\n\r\n\r\n\r\n\r\nShould you receive any more updates, take a moment to fill out the form at https://bit.ly/delist-us',''),(10713,1,2576,'6','Jay Beauvais',''),(10714,1,2576,'2','164275548',''),(10715,1,2576,'3','jay.beauvais@gmail.com',''),(10716,1,2576,'9','45 Rue La Boetie',''),(10717,1,2576,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/V0j150Uaobz\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This service could greatly enhance your website\'s reach and visitors.',''),(10718,1,2577,'6','Amanda Jankowski',''),(10719,1,2577,'2','2191710112',''),(10720,1,2577,'3','jankowski.amanda@gmail.com',''),(10721,1,2577,'9','Fischerinsel 7',''),(10722,1,2577,'4','Hello,\r\nI hope this message finds you well!\r\n\r\nI wanted to share an exciting resource that might align with your goals of enhancing physical spaces with standout design elements:\r\n\r\nhttps://xinxinempirestore.com/blogs/news/dining-room-light-fixtures\r\n\r\nThis blog explores innovative lighting solutions that transform dining areas into elegant and inviting spaces. \r\n\r\nThese ideas are perfect for businesses or properties looking to create a memorable impression on clients and visitors.\r\n\r\nBy focusing on lighting fixtures as a centerpiece, we help businesses:\r\n\r\n1. Elevate their interior ambiance.\r\n\r\n2. Showcase unique design features.\r\n\r\n3. Improve energy efficiency with modern solutions.\r\n\r\nIf you’re exploring ways to refresh your space, we’d love to connect and discuss how our offerings can fit your needs. \r\n\r\nFeel free to reach out or visit our website for more details.\r\n\r\nLooking forward to hearing from you!\r\n\r\nWarm regards,\r\n\r\nLeandro Manuel Guevarra\r\n\r\nXin Xin Empire Store',''),(10723,1,2578,'6','Francisco Argueta',''),(10724,1,2578,'2','09830152514',''),(10725,1,2578,'3','arguetafrancisco191@gmail.com',''),(10726,1,2578,'9','kol',''),(10727,1,2578,'4','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too.\r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search.\r\n\r\nIf you are interested then please let me know. I will send to you our Prices and Packages\r\n\r\nNote: - If you are interested then we will send you, optimization report of your website.\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\nFrancisco Argueta\r\n\r\nSpread the love!',''),(10728,1,2578,'5','google',''),(10729,1,2579,'6','Karol Sheffield',''),(10730,1,2579,'2','7653700390',''),(10731,1,2579,'3','karol.sheffield@googlemail.com',''),(10732,1,2579,'9','4571 Overlook Drive',''),(10733,1,2579,'4','I see that your juiceelectrical.co.nz website might be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ow.ly/atOP50Uaob8\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This opportunity could greatly amplify your website\'s reach and traffic.',''),(10734,1,2580,'6','Gregorio Curmi',''),(10735,1,2580,'2','89112979',''),(10736,1,2580,'3','gregorio.curmi@gmail.com',''),(10737,1,2580,'9','Kurfuerstendamm 81',''),(10738,1,2580,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ow.ly/XFEv50Uao9x\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly increase your website\'s reach and traffic.',''),(10739,1,2581,'6','Warner Costa',''),(10740,1,2581,'2','890058511',''),(10741,1,2581,'3','warner.costa@gmail.com',''),(10742,1,2581,'9','5 Carnegie Avenue',''),(10743,1,2581,'4','I see that your juiceelectrical.co.nz website could be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ln.run/VUlC1\r\n\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This service could greatly enhance your website\'s reach and traffic.',''),(10744,1,2582,'6','Max Wroe',''),(10745,1,2582,'2','711975764',''),(10746,1,2582,'3','wroe.max@yahoo.com',''),(10747,1,2582,'9','Ollenhauer Str. 17',''),(10748,1,2582,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ln.run/NsvDC\r\n\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly increase your website\'s reach and visitors.',''),(10749,1,2583,'6','Rosalind Clough',''),(10750,1,2583,'2','4576996036',''),(10751,1,2583,'3','clough.rosalind@msn.com',''),(10752,1,2583,'9','Gullerasen Vastabacksgatu 27',''),(10753,1,2583,'4','I saw that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ln.run/VUlC1\r\n\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250,000 targeted visitors per month. This opportunity could greatly increase your website\'s reach and engagement.',''),(10754,1,2584,'6','🔎 You got a gift from unknown user. Gо tо withdrаwаl =>> https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=ac2bc4d7fc1b93f812bdf494fc0f06ad& 🔎',''),(10755,1,2584,'2','044435294200',''),(10756,1,2584,'3','stevescan@24hinbox.com',''),(10757,1,2584,'9','m3iemu',''),(10758,1,2584,'4','74g0h5',''),(10759,1,2584,'5','4jdxnx',''),(10760,1,2585,'6','Isobel McGhee',''),(10761,1,2585,'2','267346523',''),(10762,1,2585,'3','isobel.mcghee@msn.com',''),(10763,1,2585,'9','14 Cofton Close',''),(10764,1,2585,'4','Discover Fiverr: Your Gateway to Creative Services & Solutions!\r\n\r\nHi,\r\n\r\nAre you looking for affordable, high-quality freelance services but don\'t know where to start? \r\nWelcome to Fiverr – the world\'s largest marketplace for freelancers offering a wide range of services.\r\n\r\nFrom graphic design, digital marketing, and content writing to programming and video editing, \r\nFiverr connects you with talented professionals from all over the globe. \r\n\r\nWhether you\'re an entrepreneur, a small business, or an individual, \r\nFiverr helps you get your projects done quickly and affordably.\r\n\r\nWhat can Fiverr solve for you?\r\n\r\nNo need to hire full-time employees\r\nGet your tasks done faster with expert freelancers\r\nAffordable solutions for any budget\r\nStart today, and watch your business grow with Fiverr.\r\n\r\nGet Started Now @ https://bit.ly/4eR5kAd\r\n\r\n\r\nBest regards,\r\nFiverr Ambassador',''),(10765,1,2586,'6','Shellie Venable',''),(10766,1,2586,'2','529018765',''),(10767,1,2586,'3','shellie.venable@yahoo.com',''),(10768,1,2586,'9','Kammelenbergstrasse 34',''),(10769,1,2586,'4','I saw that your juiceelectrical.co.nz website may be missing out on approximately 1,000 visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ln.run/PJGG7\r\n\r\nWe\'re offering a free trial that includes four thousand targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly amplify your website\'s reach and visitors.',''),(10770,1,2587,'6','Douglas Middlemiss',''),(10771,1,2587,'2','021370068',''),(10772,1,2587,'3','doug@acdtl.co.nz',''),(10773,1,2587,'9','80 Justine Drive, RD8 Christchurch',''),(10774,1,2587,'4','Hi, \r\n\r\nOur DeLongi DE 91 GW1 oven needs some work done, one of the top elements has stopped working and the rubber seal on the door is dropping down. \r\n\r\nAlso would like out outside sensor light looked at as it doesn\'t come on as well as it use too, seems to only come on when you are almost at the shed. might need adjusting? \r\n\r\nThanks,\r\n\r\nDoug,',''),(10775,1,2587,'5','have used you before',''),(10776,1,2588,'6','Tedphync',''),(10777,1,2588,'2','86134847163',''),(10778,1,2588,'3','axobajigufo34@gmail.com',''),(10779,1,2588,'9','City',''),(10780,1,2588,'4','Ciao, volevo sapere il tuo prezzo.',''),(10781,1,2588,'5','Google',''),(10782,1,2589,'6','Linda Johnstone',''),(10783,1,2589,'2','+16282153455',''),(10784,1,2589,'3','info@biggreeninvestment.com',''),(10785,1,2589,'9','3340 Peachtree Road, Suite 1010',''),(10786,1,2589,'4','Hey,\r\n\r\nARE YOU A PROJECT OWNER ??\r\n\r\nWe specialize in funding Business Loans, Construction deals, Oil and Energy, Commercial Bridge, RE Property Financing, Working capital, and Start-ups. \r\n\r\nAlso, we need reputable Brokers who have project owners seeking financing, as we do pay up-to 7% Finder\'s fee for every project funded completely. If you do have a project that you would like us to review, kindly get in touch with us.\r\n\r\nBest Regards,\r\nLinda Johnstone\r\nFunding Specialist / Originator\r\nBig Green Investments, LLC',''),(10787,1,2590,'6','NARTYTRYUT1695320NEYHRTGE',''),(10788,1,2590,'2','84187673151',''),(10789,1,2590,'3','toiallen1924@sabesmail.com',''),(10790,1,2590,'9','Madagascar',''),(10791,1,2590,'4','METRYTRH1695320MAMYJRTH',''),(10792,1,2590,'5','Wallmart',''),(10793,1,2591,'6','Blake Blake',''),(10794,1,2591,'2','5551234567',''),(10795,1,2591,'3','ariel@businesstechgenius.com',''),(10796,1,2591,'9','Via Nuova Agnano 142',''),(10797,1,2591,'4','Hey,\r\n\r\nSick of disorganized notes and missed follow-ups? With Fireflies ai, your meetings will always result in \r\nclear, actionable outcomes.\r\n\r\nHere’s what it does:\r\n\r\nRecords and transcribes meetings automatically.\r\n- Summarizes key decisions and action items.\r\n- Turns discussions into searchable and shareable records.\r\n- Get started for free and see the difference!\r\n\r\n_ Sign up for free today at: https://bit.ly/aifireflies\r\n\r\nLooking forward to your thoughts!\r\n\r\nYour sincerely,\r\nNorman\r\n\r\n\r\nIf at any point you decide not to receive further emails from this email, please fill the form at https://bit.ly/removeuslist\r\nVia Nuova Agnano 142, Hillburn, NY, USA, 71011',''),(10798,1,2592,'6','Lina Marryat',''),(10799,1,2592,'2','6597701428',''),(10800,1,2592,'3','lina.marryat@googlemail.com',''),(10801,1,2592,'9','Guentzelstrasse 45',''),(10802,1,2592,'4','Why Fiverr? - Save Time, Save Money\r\n\r\nTime is Money – Fiverr Helps You Save Both!\r\n\r\nHi,\r\n\r\nWe get it – running a business can be overwhelming, and you need solutions that help you save both time and money. \r\nThat\'s exactly where Fiverr comes in.\r\n\r\nFiverr’s key benefits:\r\n\r\nAffordable pricing: Find a wide range of services starting at just $5.\r\n\r\nFast turnaround: Most projects are completed in days, not weeks.\r\n\r\nGlobal talent pool: Hire professionals with diverse expertise, no matter your industry.\r\n\r\nWith Fiverr, you only pay for what you need, when you need it. \r\nWhether it\'s one-time tasks or ongoing projects, \r\nFiverr’s platform is designed to be efficient, scalable, and budget-friendly.\r\n\r\nStart your Fiverr journey now and discover how easy it is to get things done.\r\n\r\nStart Now @ https://bit.ly/4eR5kAd\r\n\r\nBest regards,\r\n\r\nFiverr Ambassador',''),(10803,1,2593,'6','Taj Walck',''),(10804,1,2593,'2','226978112',''),(10805,1,2593,'3','taj.walck@googlemail.com',''),(10806,1,2593,'9','Glennerstrasse 136',''),(10807,1,2593,'4','There are two stages to our service that are both included: \r\n\r\nStage 1: Content Creation\r\n\r\nWe create and post 5 times a week across each of your social platforms.\r\nOur USA-based team ensures quality, no outsourcing.\r\nWe use images and video from your website, shared drives (Google Drive/Dropbox), or stock photos if needed.\r\nReview and approve posts before scheduling, with options for feedback.\r\nCustom content tailored to your audience\'s interests, using insights you provide.\r\n\r\nStage 2: Organic Growth\r\n\r\nWe engage directly with users in your target market to boost visibility and drive engagement.\r\nGrowth is targeted through hashtags and competitor account followers.\r\n\r\nSave $100 with coupon SAVE100 and get more information here: https://ln.run/2P3lj',''),(10808,1,2594,'6','Ethan Strong',''),(10809,1,2594,'3','ethan.strong@gmail.com',''),(10810,1,2594,'9','Bayerhamerstrasse 25',''),(10811,1,2594,'4','I saw that your juiceelectrical.co.nz website could be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to boost your site\'s visibility: https://ln.run/r4mXC\r\n\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly amplify your website\'s reach and traffic.',''),(10812,1,2595,'6','Frances Bogner',''),(10813,1,2595,'2','664801129',''),(10814,1,2595,'3','bogner.frances@gmail.com',''),(10815,1,2595,'9','Westerwoud 116',''),(10816,1,2595,'4','There are two stages to our service that are both included: \r\n\r\nStage 1: Content Creation\r\n\r\nWe create and post 5 times a week across each of your social platforms.\r\nOur USA-based team ensures quality, no outsourcing.\r\nWe use images and video from your website, shared drives (Google Drive/Dropbox), or stock photos if needed.\r\nReview and approve posts before scheduling, with options for feedback.\r\nCustom content tailored to your audience\'s interests, using insights you provide.\r\n\r\nStage 2: Organic Growth\r\n\r\nWe engage directly with users in your target market to boost visibility and drive engagement.\r\nGrowth is targeted through hashtags and competitor account followers.\r\n\r\nSave $100 with coupon SAVE100 and get more information here: https://ln.run/GmB1z',''),(10817,1,2596,'6','Carol Moeller',''),(10818,1,2596,'2','589564021',''),(10819,1,2596,'3','carol.moeller@msn.com',''),(10820,1,2596,'9','60 Chemin Challet',''),(10821,1,2596,'4','Finding the Right Freelancer - Fiverr Makes it Easy\r\n\r\nFind the Perfect Freelancer for Your Project in Minutes\r\n\r\nHi,\r\n\r\nAre you unsure how to find the perfect freelancer for your project? \r\nWith Fiverr, finding the right professional is easier than ever.\r\n\r\nFiverr’s intuitive platform allows you to:\r\n\r\nBrowse freelancer portfolios and reviews\r\nFilter by skills, price, and delivery time\r\nCommunicate directly with potential freelancers to ensure a perfect fit\r\nNo more guessing games! With detailed profiles, clear pricing, and strong reviews, you can quickly find someone who understands your vision.\r\n\r\nWhy struggle with hiring the wrong people? \r\nFind your ideal freelancer today on Fiverr.\r\n\r\nExplore Fiverr Now @ https://bit.ly/4eR5kAd\r\n\r\nBest regards,\r\nFiverr Ambassador',''),(10822,1,2597,'6','McKee Michael',''),(10823,1,2597,'2','+1(205)632-7933',''),(10824,1,2597,'3','mikemckee@mhfinancellc.com',''),(10825,1,2597,'9','Short Rd',''),(10826,1,2597,'4','Hello,\r\n\r\nI hope you\'re well.\r\n\r\nI’m looking to place an order for a product I found on your website, juiceelectrical.co.nz. Could you confirm its availability and provide your product catalog with pricing details? I’ll send the order list and quantities soon.\r\n\r\nThank you for your help.\r\n\r\nBest regards,\r\nMcKee Michael\r\nPurchasing Manager',''),(10827,1,2598,'6','Brian WRIGHT Eng.',''),(10828,1,2598,'2','7209248652',''),(10829,1,2598,'3','info@wexonex.com',''),(10830,1,2598,'9','999 18-th Street',''),(10831,1,2598,'4','FUTURE FORECAST Report, specially prepared by us for you, will give you a lot of precise information about events in many areas of your life you can expect in the coming year 2025. This report can be an original gift for your loved ones as well. You can order your FUTURE FORECAST report at https://wexonex.com/home/10-future-forecast-transits.html',''),(10832,1,2599,'6','Eliza Jersey',''),(10833,1,2599,'2','219914289',''),(10834,1,2599,'3','eliza.jersey@googlemail.com',''),(10835,1,2599,'9','Kopfholzistrasse 81',''),(10836,1,2599,'4','What if your website juiceelectrical.co.nz was guaranteed a massive boost in traffic starting today? Many sites unknowingly overlook hundreds—even thousands—of potential visitors daily. Our AI-powered solution ensures you don’t fall into that category.\r\n\r\nGet started with a 4,000 visitors at no cost so you can see the results firsthand. Beyond the trial, we provide plans for up to 250,000, all targeted to fit your ideal demographic. Let’s enhance your site’s reach together. Get more information here: https://ln.run/NsvDC',''),(10837,1,2600,'6','Felipa Reimann',''),(10838,1,2600,'2','322031783',''),(10839,1,2600,'3','reimann.felipa96@gmail.com',''),(10840,1,2600,'9','47 Rue De La Pompe',''),(10841,1,2600,'4','Every day, websites like juiceelectrical.co.nz miss valuable opportunities to attract visitors. Don’t let that happen to you! Our state-of-the-art traffic system is specifically designed to bring more visibility and traffic to your site.\r\n\r\nTry it for free with 4,000 complimentary visitors delivered directly to your site. Once you test the benefits, you can scale up to receive as many as 250,000 visitors each month. Discover how easy it is to realize your website’s true potential. Get more information here: https://ln.run/r4mXC',''),(10842,1,2601,'6','Vvalkyie Dala',''),(10843,1,2601,'2','0017852192072',''),(10844,1,2601,'3','marketing@valkyriedalafitness.com',''),(10845,1,2601,'9','Rua Miguel Pereira 1531',''),(10846,1,2601,'4','Hi friend\r\ni want to ask u if u need loan , i can give u up to 100k without any questions, fees start from 2%.\r\nu can take for long and short term, if u need please contact me \r\n\r\nMy Whatsapp: +17852192072\r\nMy phone: +17852122012\r\nMy email: marketing@valkyriedalafitness.com',''),(10847,1,2602,'6','Leora Llamas',''),(10848,1,2602,'2','3305263089',''),(10849,1,2602,'3','leora.llamas@yahoo.com',''),(10850,1,2602,'9','872 Rainbow Drive',''),(10851,1,2602,'4','Hello\r\n\r\nI wanted to see if you would be open to rejuvenating your website with our no more headache website design service.\r\n \r\nHere is our offer\r\n1. We rejuvenate your business website\r\n2. We maintain your website monthly with maintenance and provide you 60 minutes every month of page updates to keep your website up to date for your business, all included.\r\n\r\nAll of this for only $49.99 a month! For real..\r\nAnd the best part is there is no setup fee! \r\n\r\nWe are doing this because we do not believe its fair for businesses to pay so much for a great website.\r\n\r\nBut this offer is only good until sunday, for the first 6 clients, so you need to redeem this offer before you miss out.\r\n \r\nClick Here to Get Started\r\nhttps://simplybuiltdigital.com/complete-website-package/\r\n\r\n\r\nTo Your Undisputed Success',''),(10852,1,2603,'6','Daniel Downs',''),(10853,1,2603,'2','03333356785',''),(10854,1,2603,'3','danieloutreach@lessperlitre.co.uk',''),(10855,1,2603,'9','O wox',''),(10856,1,2603,'4','Do you drive diesel vehicles in your business?\r\nYou\'re invited to save up to 5p per litre everytime you fill up with our new fuel card.\r\nPerfect for sole traders and businesses of any size.\r\nJoin over 1000 people already saving.\r\nDon\'t let diesel costs eat into your profits: https://www.lessperlitre.co.uk/business-fuel-cards/',''),(10857,1,2604,'6','Mike James Evans',''),(10858,1,2604,'2','84394842836',''),(10859,1,2604,'3','mikexxxx@gmail.com',''),(10860,1,2604,'9','Kaohsiung Municipality',''),(10861,1,2604,'4','Hi there, \r\n \r\nI recently took a look at juiceelectrical.co.nz and spotted some areas where we could improve your SEO rankings and overall visibility. Small changes can make a big difference! \r\n \r\nCurious? Create your own free SEO report here: https://www.hilkom-digital.com/get-report/ \r\n \r\nIf you\'re ready to take it further, our tailored SEO plans are designed to help you grow: https://www.hilkom-digital.com/cheap-seo-packages/ \r\n \r\nLet’s chat about getting juiceelectrical.co.nz the visibility it deserves. \r\nWhatsApp: https://www.hilkom-digital.com/whatsapp-us/ \r\n \r\nBest, \r\nMike James Evans\r\n \r\nHilkom Digital',''),(10862,1,2604,'5','AliExpress',''),(10863,1,2605,'6','Phillip Ryan Duddy',''),(10864,1,2605,'2','022 567 4907',''),(10865,1,2605,'3','philliprduddy@gmail.com',''),(10866,1,2605,'9','42 Gainsborough St',''),(10867,1,2605,'4','Hello I\'m currently looking for an apprenticeship and I\'ve completed both my level 2 and level 3 pre-trade course through ETCO, and would like to hear back if there\'s a position available.',''),(10868,1,2605,'5','Google',''),(10869,1,2606,'6','Sandy Haggerty',''),(10870,1,2606,'2','3312400443',''),(10871,1,2606,'3','sandy.haggerty@gmail.com',''),(10872,1,2606,'9','Piazza Cardinale Riario Sforza 138',''),(10873,1,2606,'4','What if your website juiceelectrical.co.nz could see a remarkable boost in traffic starting today? Many sites unknowingly lose hundreds—even thousands—of potential visitors daily. Our AI-powered solution helps you don’t fall into that category.\r\n\r\nGet started with a complimentary 4,000 targeted so you can test the results firsthand. Beyond the trial, we deliver plans for up to a quarter million visitors monthly, all targeted to align with your niche. Let’s expand your site’s reach together. Get more information here: https://ln.run/PJGG7',''),(10874,1,2607,'6','Tim Taotua',''),(10875,1,2607,'2','0275315120',''),(10876,1,2607,'3','timptaotua@gmail.com',''),(10877,1,2607,'9','7/214 Breezes Road, Aranui',''),(10878,1,2607,'4','How much to put in a heated towel rail?',''),(10879,1,2608,'6','Tim Taotua',''),(10880,1,2608,'2','0275315120',''),(10881,1,2608,'3','timptaotua@gmail.com',''),(10882,1,2608,'9','7/214 Breezes Road, Aranui',''),(10883,1,2608,'4','How much to put in a heated towel rail?',''),(10884,1,2609,'6','Kayla Duong',''),(10885,1,2609,'2','0225895689',''),(10886,1,2609,'3','saigonese.nz@gmail.com',''),(10887,1,2609,'9','38 Nayland street, Sumner, Christchurch',''),(10888,1,2609,'4','I am looking for getting a heatpump for our small takeaway shop in Sumner. Could you get back to me.\r\nThank you',''),(10889,1,2610,'6','Isis Biaggini',''),(10890,1,2610,'2','3366192858',''),(10891,1,2610,'3','biaggini.isis70@gmail.com',''),(10892,1,2610,'9','Via Giotto 130',''),(10893,1,2610,'4','Success Stories - See How Fiverr Helps People Like You\r\n\r\nReal People, Real Success: How Fiverr is Changing the Game\r\n\r\nHi,\r\n\r\nStill wondering if Fiverr can help you? Hear from people just like you who have found success by using Fiverr.\r\n\r\nCustomer success story:\r\n\"Before using Fiverr, I was spending hours trying to manage marketing, design, and content for my online store. \r\nNow, I have a team of expert freelancers who deliver results – fast and at a fraction of the cost of hiring full-time employees!\"\r\n– Sarah, Entrepreneur\r\n\r\nFiverr has helped thousands of people solve problems like yours. \r\nWhether you\'re looking for one-off services or ongoing projects, \r\nFiverr connects you with the talent you need to succeed.\r\n\r\nReady to join the growing list of Fiverr success stories?\r\n\r\nStart Today @ https://bit.ly/4eR5kAd\r\n\r\nBest regards,\r\nFiverr Ambassador',''),(10894,1,2611,'6','Ursula Otto',''),(10895,1,2611,'2','+13522173320',''),(10896,1,2611,'3','hello@unlimitedclientengine.com',''),(10897,1,2611,'9','Zistelweg 14',''),(10898,1,2611,'4','Hello, I found your website on Google Maps and I need to point out that its not really set up well. I think you’re not capturing a ton of leads by not using a few easy tweaks to google maps that could really help. Good news, I put together a course that’ll get you configured in just 90 minutes.\r\n\r\nI also noticed that your page seo could use some improvement. \r\n\r\nHere\'s the deal , if you buy my course on configuring Google Maps for only $27, I’ll throw in a detailed SEO report customized for your website at no extra charge. It s a great deal, you fix the maps and the SEO at the same time.\r\n\r\nWhen you get 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 a couple of days.\r\n\r\nGet the course here: https://www.unlimitedclientengine.com\r\n\r\nJP, at\r\nUnlimited Client Engine\r\nwww.unlimitedclientsengine.com',''),(10899,1,2612,'6','Harold Elrod',''),(10900,1,2612,'2','683943186',''),(10901,1,2612,'3','harold.elrod@gmail.com',''),(10902,1,2612,'9','Doornenburg 111',''),(10903,1,2612,'4','Your website, juiceelectrical.co.nz, might be reaching so many more people! On average, sites like yours lose over 1K visitors per day. That’s where our AI-powered traffic system comes in—it’s designed to drive relevant visitors straight to your site.\r\n\r\nTake the first step with a complimentary 4,000 visitors to experience the impact firsthand. Afterward, our plans deliver up to 250,000, helping your website increase its audience and engagement effortlessly. Get more information here: https://ln.run/VUlC1',''),(10904,1,2613,'6','Darryl Lopez',''),(10905,1,2613,'2','261403041',''),(10906,1,2613,'3','matjenpetik@gmail.com',''),(10907,1,2613,'9','94 Frencham Street',''),(10908,1,2613,'4','Hello,\r\n\r\nDid you know that you can SAVE 60-90% OFF\r\nduring these Black Friday and Cyber Monday\r\nweeks on millions of items?\r\n\r\n\r\nPlus, you are guaranteed to get MORE discounts\r\nduring this Xmas holiday as well.\r\n\r\nAnd this is possible, because of this amazing\r\nshopping website...that is now used by 160 \r\nmillion buyers across the world...EVERY DAY!\r\n\r\nWhat\'s more, you can find DISCOUNTS and \r\nDEALS...every day...since millions of new items \r\nare added weekly.\r\n\r\nEven better, you can take part in the \"Spin to Win\" \r\nand \"Scratch to Win\" games for NEW shoppers, \r\nwhich allows you to win prizes and get coupon \r\nspecials!\r\n\r\nSo, if you too want to join hundreds of millions of \r\nbargain buyers, and want to spend LESS MONEY on \r\nyour shopping needs, then click on the link below\r\nfor the thrilling details...\r\n\r\n https://t2m.io/hZfPCJN \r\n \r\nThank you for your time.\r\n\r\nSincerely,\r\nJohn Eyubeh\r\n\r\n\r\n\r\n----Do you have a business in the US or Canada? If so,\r\ndid you know that you can EASILY SAVE up to 25% OFF\r\non your electric and gas-EVERY MONTH? Yes you can\r\ndo this just by using our FREE revolutionary \"BIDDING\"\r\nplatform, that \"FORCES\" over 80 energy companies to\r\n\"FIGHT\" each other, in order to give you LOWER rates!\r\nSince 2014, we have helped thousands of companies to\r\nsuccessfully SLASH their energy costs by up to 25%! So,\r\nif you too want to PAY LESS for your monthly energy needs\r\nand want the thrilling details on how to do this, then just\r\nclick here: https://t2m.io/hoeHaq9',''),(10909,1,2614,'6','Brian WRIGHT Eng.',''),(10910,1,2614,'2','7209248652',''),(10911,1,2614,'3','info@wexonex.com',''),(10912,1,2614,'9','999 18-th Street',''),(10913,1,2614,'4','Are you looking for perfect and original Christmas gifts for your loved ones and friends? If so, you can get such Christmas gifts at our store: https://wexonex.com',''),(10914,1,2615,'6','Keesha Downer',''),(10915,1,2615,'2','3823571264',''),(10916,1,2615,'3','downer.keesha32@msn.com',''),(10917,1,2615,'9','Via Nizza 96',''),(10918,1,2615,'4','What if your website juiceelectrical.co.nz experienced a significant boost in traffic starting today? Many sites unknowingly overlook hundreds—even thousands—of potential visitors daily. Our AI-powered solution guarantees you don’t fall into that category.\r\n\r\nGet started with a free trial of 4,000 so you can experience the results firsthand. Beyond the trial, we deliver plans for up to a quarter million visitors monthly, all targeted to match your audience needs. Let’s grow your site’s reach together. Get more information here: https://ln.run/NsvDC',''),(10919,1,2616,'6','Doug Mabe',''),(10920,1,2616,'3','doug.mabe@gmail.com',''),(10921,1,2616,'9','Wiehtestrasse 78',''),(10922,1,2616,'4','Are you fully utilizing the potential of your juiceelectrical.co.nz website? Many sites miss out on thousands of visitors daily simply due to a lack of visibility. With our AI-driven traffic solution, we can help you reach this unrealized audience.\r\n\r\nTo prove the value, we’re offering a free trial that delivers 4,000 highly targeted visitors to your site. Once you see the results, you can scale up with packages that provide up to 250K visitors per month. Let’s amplify your website traffic and turn more visitors into opportunities. Get more information here: https://ln.run/NsvDC',''),(10923,1,2617,'6','Leopoldo Airey',''),(10924,1,2617,'2','3740140479',''),(10925,1,2617,'3','airey.leopoldo@gmail.com',''),(10926,1,2617,'9','Viale Ippocrate 62',''),(10927,1,2617,'4','Hey is this the owner of juiceelectrical.co.nz\r\n\r\nI found this youtube video that could help your electrical business get more leads\r\n\r\nCheck out the link below \r\n\r\nhttps://www.youtube.com/watch?v=LHcO0hzh1RA&t=10s\r\n\r\nIf you need help leave a comment on the video and I\'ll audit your business online for free\r\nKind regards Jay',''),(10928,1,2618,'6','Art Flair',''),(10929,1,2618,'2','393656658',''),(10930,1,2618,'3','artflair2023@gmail.com',''),(10931,1,2618,'9','89 Creedon Street',''),(10932,1,2618,'4','FREE WEBINAR TRAINING REVEALS How To Build a List Fast While Generating High Ticket Commissions At The Same Time\r\nThe funnels myself and my clients have used to generate millions of dollars online... and how to implement this into your business in as little as 27 minutes.\r\n\r\n\r\n\r\nClick Here for more Info : https://bit.ly/41xeC0a',''),(10933,1,2619,'6','Shane Goodwin',''),(10934,1,2619,'2','0220443233',''),(10935,1,2619,'3','shane_1986@live.com',''),(10936,1,2619,'9','35 elizabeth st rolleston',''),(10937,1,2619,'4','Just after getting a light fitting replaced in a bedroom',''),(10938,1,2619,'5','Used before',''),(10939,1,2620,'6','Judith Goodwin',''),(10940,1,2620,'2','0211851948',''),(10941,1,2620,'3','gjggoodwin@gmail.com',''),(10942,1,2620,'9','261 Rolleston drive',''),(10943,1,2620,'4','Hi us again, we are wanting to put another outside power source in and would like advice on where and how this would best be done cheers Judith',''),(10944,1,2621,'6','Rochell Santoro',''),(10945,1,2621,'2','48651579',''),(10946,1,2621,'3','rochell.santoro@googlemail.com',''),(10947,1,2621,'9','Solveien 233',''),(10948,1,2621,'4','How Fiverr Ensures Quality - Trusted Professionals\r\n\r\nQuality You Can Trust: Fiverr’s Vetting Process\r\n\r\nHi,\r\n\r\nOne of the biggest concerns people have when hiring freelancers is quality. At Fiverr, we take that seriously.\r\n\r\nHere’s how Fiverr ensures you get the best talent:\r\n\r\nRatings & Reviews: \r\nHonest feedback from other customers to help you make informed decisions.\r\n\r\nFiverr Pro: \r\nA curated group of top-tier professionals who are vetted for quality and experience.\r\n\r\nClear Communication:\r\nWith Fiverr\'s messaging system, you can clarify project details, timelines, and expectations.\r\n\r\nWith Fiverr, you\'re not just hiring a freelancer – you\'re building a reliable partnership.\r\n\r\nDiscover the trusted professionals waiting to help you.\r\n\r\nExplore Fiverr Now @ https://bit.ly/4eR5kAd\r\n\r\nBest regards,\r\nFiverr Ambassador',''),(10949,1,2622,'6','Magnolia Foutch',''),(10950,1,2622,'2','912929075',''),(10951,1,2622,'3','foutch.magnolia@gmail.com',''),(10952,1,2622,'9','Via Stazione 140',''),(10953,1,2622,'4','We design and post high-impact content weekly to grow your online presence. Could your social media use a boost?\r\n\r\nThere are two stages to our service that are both included: \r\n\r\nStage 1: Content Creation\r\n\r\nWe create and post 5 times a week across your social platforms.\r\nOur USA-based team ensures quality, no outsourcing.\r\nWe use images/video from your website, shared drives (Google Drive/Dropbox), or stock photos/video if needed.\r\nReview and approve posts before scheduling, with options for feedback.\r\nCustom content tailored to your audience\'s interests, using insights you provide.\r\n\r\nStage 2: Organic Growth\r\n\r\nWe engage directly with users in your target market to boost visibility and drive engagement.\r\nGrowth is targeted through hashtags and competitor account followers.\r\n\r\nSpecial Offer\r\nNormally $499/month, now just $399/month with code SAVE100. No contracts—cancel anytime.\r\n\r\nReady to grow? Let’s get started!\r\n\r\nGet more information here: https://ln.run/V2mWP',''),(10954,1,2623,'6','Joey Burnham',''),(10955,1,2623,'2','675497805',''),(10956,1,2623,'3','joey.burnham@gmail.com',''),(10957,1,2623,'9','Ul. Dekabrystow 103',''),(10958,1,2623,'4','Hello\r\nAre you tired of the annual tax scramble?\r\n\r\nI can help you to shift your focus from simply filing taxes to actively managing your taxes.\r\n\r\nWith over 20 years of experience as a financial expert, I\'ve helped countless individuals and businesses optimize their tax strategies and achieve long-term financial goals. \r\n\r\nUnlike traditional tax preparation services, I offer a comprehensive approach that goes beyond tax filing.\r\n\r\nBy partnering with me for only $97 a month, you\'ll gain:\r\n 1. Year-round Financial Guidance: Regular conversations to discuss your financial situation, identify tax reducing opportunities, and make informed decisions.\r\n 2. Expert Tax Preparation: Experienced and efficient tax filing, ensuring we maximize refunds or reduce your owed amount.\r\n 3. Peace of Mind: Knowing we aren\'t waiting until the end of the year when it is too late\r\n\r\nI believe in building long-term partnerships with my clients, based on trust, transparency, and results.\r\n \r\nClick Here to Learn More with no obligation.\r\nhttps://smashmytaxes.com/keepyourmoney\r\n\r\nTo Your Financial Abundance',''),(10959,1,2624,'6','Lynn Larios',''),(10960,1,2624,'2','93042319',''),(10961,1,2624,'3','larios.lynn@gmail.com',''),(10962,1,2624,'9','Lille Markeveien 228',''),(10963,1,2624,'4','Overcome Your Challenges with Fiverr\r\n\r\nDon’t Let These Common Challenges Hold You Back – Fiverr Has Solutions\r\n\r\nHi,\r\n\r\nRunning into common business challenges? Fiverr can help you overcome them with ease.\r\n\r\nHere’s how Fiverr solves everyday problems:\r\n\r\nLack of time for specific tasks: \r\nHire freelancers to complete projects on your timeline.\r\n\r\nLimited budget for full-time employees: \r\nPay only for the services you need, with no long-term commitments.\r\n\r\nNeed for specialized skills: \r\nFind experts across various industries without the hassle of recruitment.\r\n\r\nNo need to stress over these challenges. Fiverr gives you the tools and talent to get ahead.\r\n\r\nReady to tackle your challenges? Fiverr is here to help.\r\n\r\nStart Today @ https://bit.ly/4eR5kAd\r\n\r\nBest regards,\r\nFiverr Ambassador',''),(10964,1,2625,'6','Mike Pierre Bonnet',''),(10965,1,2625,'2','83864277116',''),(10966,1,2625,'3','mikexxxx@gmail.com',''),(10967,1,2625,'9','Willemstad',''),(10968,1,2625,'4','Hello, \r\n \r\nThis is Mike Palmer\r\nfrom Monkey Digital, \r\nI am reaching out to you like webmaster to webmaster, towards a mutual opportunity. How would you like to put our banners on your site and link back via your affiliate link towards hot selling services from our website, and earn a 35% residual income, month after month from any sales that comes in from your sites. \r\n \r\nThink about it, everyone needs SEO, this is a pretty major opportunity, We have over 12k affiliates already and our payouts are made each month, hefty payouts, last month we have reached 27280$ in payouts to our affiliates. \r\n \r\nIf interested, kindly chat with us: https://monkeydigital.co/affiliates-whatsapp/ \r\n \r\nOr sign up today: https://www.monkeydigital.co/join-our-affiliate-program/ \r\n \r\nCheers \r\nMike Pierre Bonnet\r\n \r\nmonkeydigital.co',''),(10969,1,2625,'5','AliExpress',''),(10970,1,2626,'6','Mona Charbonneau',''),(10971,1,2626,'2','612217570',''),(10972,1,2626,'3','mona.charbonneau@gmail.com',''),(10973,1,2626,'9','Rhederweg 4',''),(10974,1,2626,'4','Every day, websites like juiceelectrical.co.nz lose valuable opportunities to attract visitors. Don’t let that happen to you! Our state-of-the-art traffic system is specifically designed to boost your reach and traffic to your site.\r\n\r\nTry it for free with a free trial of 4,000 visitors delivered directly to your site. Once you test the benefits, you can scale up to receive as many as 250K visitors each month. Discover how easy it is to unlock your website’s true potential. Get more information here: https://ln.run/NsvDC',''),(10975,1,2627,'6','Lyle Sanger',''),(10976,1,2627,'2','53621700',''),(10977,1,2627,'3','lyle.sanger@googlemail.com',''),(10978,1,2627,'9','Nymarksgyden 27',''),(10979,1,2627,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately 1K visitors daily. Our AI powered traffic system is tailored to enhance your site\'s visibility: https://ln.run/r4mXC\r\n\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to 250K targeted visitors per month. This opportunity could greatly amplify your website\'s reach and engagement.',''),(10980,1,2628,'6','Mike Leon Weber',''),(10981,1,2628,'2','82994922152',''),(10982,1,2628,'3','mikexxxx@gmail.com',''),(10983,1,2628,'9','Kakamega',''),(10984,1,2628,'4','Hi there \r\nWe have a special connection with a reputable Network that gives us the possibility to offer Social Ads Country Targeted and niche traffic for just 10$ for 10000 Visits. \r\n \r\nDepending on the Country, we can send larger volumes of ads traffic. \r\n \r\nTry us today, we even use this for our SEO clients: \r\nhttps://www.monkeydigital.co/product/country-targeted-traffic/ \r\n \r\nor chat with us on Whatsapp: https://monkeydigital.co/whatsapp-us/ \r\n \r\nRegards \r\nMike Leon Weber\r\n \r\nmonkeydigital.co',''),(10985,1,2628,'5','FBI',''),(10986,1,2629,'6','Marcelo Bach',''),(10987,1,2629,'2','782803046',''),(10988,1,2629,'3','marcelo.bach@gmail.com',''),(10989,1,2629,'9','Ul. Mogilenska 23',''),(10990,1,2629,'4','I noticed that your juiceelectrical.co.nz website might be missing out on approximately a thousand visitors daily. Our AI powered traffic system is tailored to increase your site\'s visibility: https://ln.run/r4mXC\r\n\r\nWe\'re offering a free trial that includes 4,000 targeted visitors to show the potential benefits. After the trial, we can supply up to a quarter million targeted visitors per month. This solution could greatly enhance your website\'s reach and engagement.',''),(10991,1,2630,'6','Klara Clune',''),(10992,1,2630,'2','240230041',''),(10993,1,2630,'3','klara.clune@gmail.com',''),(10994,1,2630,'9','76 Chapman Avenue',''),(10995,1,2630,'4','Your website, juiceelectrical.co.nz, might be reaching so many more people! On average, sites like yours miss out on over 1K visitors per day. That’s where our AI-powered traffic system comes in—it’s designed to attract targeted users straight to your site.\r\n\r\nTake the first step with a complimentary 4,000 visitors to experience the impact firsthand. Afterward, our plans offer up to a quarter million visitors monthly, helping your website expand its audience and engagement effortlessly. Get more information here: https://ln.run/NsvDC',''),(10996,1,2631,'6','Ruth Robertson',''),(10997,1,2631,'2','+13522173320',''),(10998,1,2631,'3','hello@unlimitedclientengine.com',''),(10999,1,2631,'9','Generaal Van Der Heijdenstraat 196',''),(11000,1,2631,'4','Hey, I discovered your website on Google Maps, and I’ve got to say that it’s not really configured the way it should be. You’re probably losing a lot of leads because of this. The good news? I’ve developed a guide that will help you improve everything in just 90 minutes or less.\r\n\r\nI also noticed that your SEO could use a little love. Here’s the deal: If you grab my course on Google Maps optimization for only $27, I’ll make this promise: if you don’t get a ton of leads after implementing what you learn, I’ll continue working for free until you do.\r\n\r\nIt’s simple—grab the course, implement the strategies, and watch the leads roll in. If you don’t, I’ll keep working with you at no extra charge. You only pay the $27.\r\n\r\nPurchase the course here: https://www.unlimitedclientengine.com\r\n\r\nOnce you buy it, just reply to the confirmation email with \"I want the SEO analysis for my site: [yourwebsite.com]\" and I’ll deliver a custom SEO report within 2-3 days.\r\n\r\nLet’s get started\r\nJP,\r\nUnlimited Client Engine\r\nhttps://www.unlimitedclientengine.com',''),(11001,1,2632,'6','Gail Gwin',''),(11002,1,2632,'2','3788082362',''),(11003,1,2632,'3','gwin.gail@hotmail.com',''),(11004,1,2632,'9','Viale Delle Province 49',''),(11005,1,2632,'4','Don’t Wait – Take the First Step Toward Success with Fiverr!\r\n\r\n\r\nHi,\r\n\r\nYou’ve seen how Fiverr can help with your projects, save you time and money, and provide top-quality services. \r\nNow it’s time to take the first step and experience the difference Fiverr can make in your work.\r\n\r\nWhether you’re tackling a one-time task or need ongoing support, Fiverr is here to help you succeed.\r\n\r\nStart today, and see the results for yourself.\r\n\r\nGet Started @ https://bit.ly/4eR5kAd\r\n\r\nBest regards,\r\nFiverr Ambassador',''),(11006,1,2633,'6','Brian WRIGHT Eng.',''),(11007,1,2633,'2','7209248652',''),(11008,1,2633,'3','info@wexonex.com',''),(11009,1,2633,'9','999 18-th Street',''),(11010,1,2633,'4','FUTURE FORECAST 2025 Report, specially prepared by us for you, will give you a lot of precise information about events in many areas of your life you can expect in the coming year 2025. This report can be an original gift for your loved ones as well. You can order your FUTURE FORECAST report at https://wexonex.com/home/10-future-forecast-transits.html for our special ultra low X-mas price.',''),(11011,1,2634,'6','Lazaro Holtz',''),(11012,1,2634,'2','325168221',''),(11013,1,2634,'3','lazaro.holtz@gmail.com',''),(11014,1,2634,'9','Postfach 96',''),(11015,1,2634,'4','What if your website juiceelectrical.co.nz was guaranteed a significant boost in traffic starting today? Many sites unknowingly overlook hundreds—even thousands—of potential visitors daily. Our AI-powered solution ensures you don’t fall into that category.\r\n\r\nGet started with a free trial of 4,000 so you can test the results firsthand. Beyond the trial, we provide plans for up to 250,000, all targeted to align with your niche. Let’s enhance your site’s reach together. Get more information here: https://ow.ly/75z650Urk9X',''),(11016,1,2635,'6','Brian WRIGHT Eng.',''),(11017,1,2635,'2','7209248652',''),(11018,1,2635,'3','info@wexonex.com',''),(11019,1,2635,'9','999 18-th Street',''),(11020,1,2635,'4','FUTURE FORECAST 2025 Report, specially prepared by us for you, will give you a lot of precise information about events in many areas of your life you can expect in the coming year 2025. This report can be an original gift for your loved ones as well. You can order your FUTURE FORECAST report at https://wexonex.com/home/10-future-forecast-transits.html for our special ultra low X-mas price.',''),(11021,1,2636,'6','Javier Swinburne',''),(11022,1,2636,'2','7028653497',''),(11023,1,2636,'3','swinburne.javier@gmail.com',''),(11024,1,2636,'9','61 George Street',''),(11025,1,2636,'4','Your website, juiceelectrical.co.nz, may be reaching so many more people! On average, sites like yours miss out on over 1K visitors per day. That’s where our AI-powered traffic system makes a difference—it’s designed to bring the right audience straight to your site.\r\n\r\nTake the first step with a free trial of 4,000 visitors to see the impact firsthand. Afterward, our plans provide up to a quarter million visitors monthly, helping your website expand its audience and engagement effortlessly. Get more information here: https://ow.ly/yTFC50Urk9K',''),(11026,1,2637,'6','Bella Wang',''),(11027,1,2637,'3','bella@enerack.com',''),(11028,1,2637,'9','203A, NO.6 Huli Avenue, Huli District, Xiamen, China',''),(11029,1,2637,'4','Hello manager. \r\nThis is Bella from Enerack.\r\nEnerack provide solar PV mounting systems.We owns a factory, and have more than 15 years experienced with solid expertise design kinds of the solar mounting systems for Metal roof, Tile roof, Flat roof, and Ground mount, Carport systems etc. Completion of several large-scale solar power station projects. With a complete R& D processing and high manufacturing capacity, strictly following ISO9001 quality control system.\r\nWe want provide our 2025 product catalog to you guys.And you can also check all information on Enerack.com. Do you have any projects that require these products recently?Hope we can have the opportunity to cooperate.\r\nBest wishes.',''),(11030,1,2638,'6','Armand Kirkland',''),(11031,1,2638,'2','2603495909',''),(11032,1,2638,'3','kirkland.armand@googlemail.com',''),(11033,1,2638,'9','Stuttgarter Platz 15',''),(11034,1,2638,'4','What if your website juiceelectrical.co.nz was guaranteed a massive boost in traffic starting today? Many sites unknowingly lose hundreds—even thousands—of potential visitors daily. Our AI-powered solution helps you don’t fall into that category.\r\n\r\nGet started with a complimentary 4,000 targeted so you can see the results firsthand. Beyond the trial, we offer plans for up to a quarter million visitors monthly, all targeted to align with your niche. Let’s expand your site’s reach together. Get more information here: https://ow.ly/yTFC50Urk9K',''),(11035,1,2639,'6','Wemirref',''),(11036,1,2639,'2','85687844145',''),(11037,1,2639,'3','fgq5txhc@hotmail.com',''),(11038,1,2639,'9','Madagascar',''),(11039,1,2639,'4','Your account has been dormant for 364 days. To prevent removal and retrieve your funds, please sign in and request a payout within 24 hours. For support, connect with us on our Telegram group: https://t.me/s/attention6786742',''),(11040,1,2639,'5','FBI',''),(11041,1,2640,'6','Angelina Oconnell',''),(11042,1,2640,'2','89810004',''),(11043,1,2640,'3','oconnell.angelina@googlemail.com',''),(11044,1,2640,'9','Rosenstrasse 21',''),(11045,1,2640,'4','Transform Your Business with Fiverr for Business\r\n\r\nHi,\r\n\r\nRunning a business is no easy feat. \r\nFrom managing tight budgets to finding the right talent for critical tasks, the challenges are endless.\r\n\r\nThat’s where Fiverr for Business comes in.\r\nWith thousands of top-rated professionals at your fingertips, Fiverr makes it easier, faster, and more affordable to get work done.\r\n\r\n✅ Save time by skipping endless searches for talent.\r\n✅ Cut costs—no need to hire full-time when you can hire as needed.\r\n✅ Access experts for everything from marketing to tech development.\r\n\r\nReady to take your business to the next level?\r\n\r\nDiscover Fiverr for Business Now → https://go.fiverr.com/visit/?bta=935157&brand=fiverrmarketplace\r\n\r\nBest,\r\nFiverr Ambassador,',''),(11046,1,2641,'6','Joanna Riggs',''),(11047,1,2641,'2','9064676578',''),(11048,1,2641,'3','joannariggs94@gmail.com',''),(11049,1,2641,'9','1154 Wood Duck Drive',''),(11050,1,2641,'4','Hi,\r\n\r\nI just visited juiceelectrical.co.nz and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur prices start from just $195.\r\n\r\nLet me know if you\'re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nJoanna\r\n\r\nUnsubscribe: https://removeme.live/unsubscribe.php?d=juiceelectrical.co.nz',''),(11051,1,2642,'6','Brian WRIGHT Eng.',''),(11052,1,2642,'2','7209248652',''),(11053,1,2642,'3','info@wexonex.com',''),(11054,1,2642,'9','999 18-th Street',''),(11055,1,2642,'4','FUTURE FORECAST 2025 Report, specially prepared by us for you, will give you a lot of precise information about events in many areas of your life you can expect in the coming year 2025. This report can be an original gift for your loved ones as well. You can order your FUTURE FORECAST report at https://wexonex.com/home/10-future-forecast-transits.html for our special ultra low X-mas price.',''),(11056,1,2643,'6','Antonia Selby',''),(11057,1,2643,'2','9547495219',''),(11058,1,2643,'3','antonia.selby@gmail.com',''),(11059,1,2643,'9','4046 Everette Alley',''),(11060,1,2643,'4','Every day, websites like juiceelectrical.co.nz lose valuable opportunities to attract visitors. Don’t let that happen to you! Our cutting-edge traffic system is specifically designed to bring more visibility and traffic to your site.\r\n\r\nTry it for free with 4,000 targeted visitors delivered directly to your site. Once you experience the benefits, you can scale up to receive as many as a quarter million visitors each month. Discover how easy it is to unlock your website’s true potential. Get more information here: https://ow.ly/G5kV50Urka2',''),(11061,1,2644,'6','Art Flair',''),(11062,1,2644,'2','629243422',''),(11063,1,2644,'3','artflair2023@gmail.com',''),(11064,1,2644,'9','Lutzelfluhstrasse 63',''),(11065,1,2644,'4','Create UNLIMITED YouTube Kids Story Videos In Minutes That Attract MILLIONS Of Views, Subscribers & Commissions... WITHOUT ANY Skills Or Creativity.\r\n\r\n\r\n\r\n\r\nClick Here For More Info : https://warriorplus.com/o2/a/b9f3m3p/0',''),(11066,1,2645,'6','Alisha Guardado',''),(11067,1,2645,'2','1553197904',''),(11068,1,2645,'3','alisha.guardado88@gmail.com',''),(11069,1,2645,'9','Rua Florindo Julio 416',''),(11070,1,2645,'4','What if your website juiceelectrical.co.nz could see a significant boost in traffic starting today? Many sites unknowingly overlook hundreds—even thousands—of potential visitors daily. Our AI-powered solution guarantees you don’t fall into that category.\r\n\r\nGet started with a 4,000 visitors at no cost so you can test the results firsthand. Beyond the trial, we deliver plans for up to 250K, all targeted to fit your ideal demographic. Let’s grow your site’s reach together. Get more information here: https://ow.ly/NW5o50Urka4',''),(11071,1,2646,'6','Brian WRIGHT Eng.',''),(11072,1,2646,'2','7209248652',''),(11073,1,2646,'3','info@wexonex.com',''),(11074,1,2646,'9','999 18-th Street',''),(11075,1,2646,'4','Find a best mate for your marriage or a long-term relationship. Are you looking for a new love and a best mate? Do you want to know which one of the potential candidates will be the best? If interested, you will get precise and highly detailed answers to these questions in our ROMANTIC COMPATIBILITY report that we can specially prepare for you. This report will be your best resource for a romantic comparison. You can order your ROMANTIC COMPATIBILITY report at our store: https://wexonex.com',''),(11076,1,2647,'6','Camilla Brewer',''),(11077,1,2647,'2','684099682',''),(11078,1,2647,'3','brewer.camilla@hotmail.com',''),(11079,1,2647,'9','Wylgebeampaad 97',''),(11080,1,2647,'4','Your website, juiceelectrical.co.nz, might be reaching so many more people! On average, sites like yours lose over 1,000 visitors per day. That’s where our AI-powered traffic system comes in—it’s designed to bring the right audience straight to your site.\r\n\r\nTake the first step with a complimentary 4,000 visitors to realize the impact firsthand. Afterward, our plans provide up to 250K, helping your website increase its audience and engagement effortlessly. Get more information here: https://ow.ly/yTFC50Urk9K',''),(11081,1,2648,'6','Eric Jones',''),(11082,1,2648,'2','555-555-1212',''),(11083,1,2648,'3','ericjonesmyemail@gmail.com',''),(11084,1,2648,'9','420 Lexington Ave',''),(11085,1,2648,'4','Hello Juiceelectrical Owner,\r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with Juiceelectrical Webmaster definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo 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? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitor is a software widget that 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 Juiceelectrical.\r\n\r\nhttps://resultleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt 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.)\r\n\r\nPlus 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.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nhttps://resultleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\n\r\nPS: Web Visitor offers a complimentary 14-day trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nhttps://resultleadgeneration.com to try Web Visitor now.\r\n\r\nWe are strongly committed to protecting your privacy and providing a safe & high-quality online experience for our visitors. We understand that you care about how the information you provide to us is used and shared. We have developed a Privacy Policy to inform you of our policies about the collection, use, and disclosure of information we receive from users of our website. We operate the Website.\r\n\r\nOur Privacy Policy, along with our Terms & Conditions, governs your use of this site. By using the website, or by accepting the Terms of Use (via opt-in, checkbox, pop-up, or clicking an email link confirming the same), you agree to be bound by our Terms & Conditions and our Privacy Policy.\r\n\r\nIf you have provided any voluntarily given information, you may review and make changes to it via instructions found on the Website. To manage your receipt of marketing and non-transactional communications, you may Want to receive fewer emails, or none whatsoever? Update your email preferences.\r\n\r\nEmails related to orders are provided automatically – customers are not able to opt out of these. We will try to address any requests related to the management of personal information in a timely manner. However, it may not always be possible to fully remove or modify information in our databases if we have a valid reason to keep it for certain timeframes. If you have any questions, simply see our website to view our official policies.\r\n\r\nOur primary goal is to help you with lead generation. These emails are meant to give you advice on that topic, or to promote products that will help you have the kind of business films are written about.\r\n\r\nIf you\'d like to Want to receive fewer emails, or none whatsoever? Update your email preferences by visiting https://resultleadgeneration.com/unsubscribe.aspx?d=juiceelectrical.co.nz',''),(11086,1,2649,'6','Shauna Horvath',''),(11087,1,2649,'2','6784050199',''),(11088,1,2649,'3','shauna.horvath@msn.com',''),(11089,1,2649,'9','2052 Adonais Way',''),(11090,1,2649,'4','Did you know that your website juiceelectrical.co.nz may not be achieve maximum traffic? With our advanced AI traffic system, you could be reach thousands of additional visitors each day.\r\n\r\nWe’re offering a no-obligation complimentary 4,000 targeted visitors to demonstrate what’s possible. Once you see the difference, our scalable options deliver up to a quarter million visitors monthly. Let us help you turn missed opportunities into meaningful traffic growth. Get more information here: https://ow.ly/yTFC50Urk9K',''),(11091,1,2650,'6','Aline Wawn',''),(11092,1,2650,'2','246029891',''),(11093,1,2650,'3','aline.wawn20@gmail.com',''),(11094,1,2650,'9','12 Albacore Crescent',''),(11095,1,2650,'4','Did you know that your website juiceelectrical.co.nz could be failing to connect with its audience? With our advanced AI traffic system, you could be reach thousands of additional visitors each day.\r\n\r\nWe’re offering a no-obligation complimentary 4,000 targeted visitors to demonstrate what’s possible. Once you see the difference, our scalable options can provide up to 250,000. Let us help you realize meaningful traffic growth. Get more information here: https://ow.ly/G5kV50Urka2',''),(11096,1,2651,'6','Johnphync',''),(11097,1,2651,'2','84237652755',''),(11098,1,2651,'3','arikerer278@gmail.com',''),(11099,1,2651,'9','City',''),(11100,1,2651,'4','Ndewo, achọrọ m ịmara ọnụahịa gị.',''),(11101,1,2651,'5','AliExpress',''),(11102,1,2652,'6','Susanne Patrick',''),(11103,1,2652,'2','643706642',''),(11104,1,2652,'3','susanne.patrick@gmail.com',''),(11105,1,2652,'9','Lombokstraat 151',''),(11106,1,2652,'4','Every day, websites like juiceelectrical.co.nz lose valuable opportunities to attract visitors. Don’t let that happen to you! Our AI-driven traffic system is specifically designed to increase engagement and traffic to your site.\r\n\r\nTry it for free with 4,000 targeted visitors delivered directly to your site. Once you see the benefits, you can scale up to receive as many as 250,000 visitors each month. Discover how easy it is to unlock your website’s true potential. Get more information here: https://shorten.tv/1UwxW',''); /*!40000 ALTER TABLE `wp_gf_entry_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_entry_notes` -- DROP TABLE IF EXISTS `wp_gf_entry_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_entry_notes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `user_name` varchar(250) DEFAULT NULL, `user_id` bigint(10) DEFAULT NULL, `date_created` datetime NOT NULL, `value` longtext DEFAULT NULL, `note_type` varchar(50) DEFAULT NULL, `sub_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`), KEY `entry_user_key` (`entry_id`,`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2855 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_entry_notes` -- LOCK TABLES `wp_gf_entry_notes` WRITE; /*!40000 ALTER TABLE `wp_gf_entry_notes` DISABLE KEYS */; INSERT INTO `wp_gf_entry_notes` VALUES (1,1,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-03 00:37:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(2,1,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-03 00:37:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(3,2,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-03 00:43:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(4,2,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-03 00:43:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(5,3,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-03 01:17:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(6,3,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-03 01:17:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(7,4,'Akismet Spam Filter',0,'2023-04-03 03:08:48','This entry has been flagged as spam.','user',''),(8,5,'Akismet Spam Filter',0,'2023-04-03 07:06:35','This entry has been flagged as spam.','user',''),(9,6,'Akismet Spam Filter',0,'2023-04-03 12:25:17','This entry has been flagged as spam.','user',''),(10,7,'Akismet Spam Filter',0,'2023-04-03 13:48:03','This entry has been flagged as spam.','user',''),(11,8,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-03 18:56:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(12,8,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-03 18:56:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(13,9,'Akismet Spam Filter',0,'2023-04-04 08:16:00','This entry has been flagged as spam.','user',''),(14,10,'Akismet Spam Filter',0,'2023-04-04 14:11:56','This entry has been flagged as spam.','user',''),(15,11,'Akismet Spam Filter',0,'2023-04-04 16:37:54','This entry has been flagged as spam.','user',''),(16,12,'Akismet Spam Filter',0,'2023-04-05 06:38:54','This entry has been flagged as spam.','user',''),(17,13,'Akismet Spam Filter',0,'2023-04-05 09:27:51','This entry has been flagged as spam.','user',''),(18,14,'Akismet Spam Filter',0,'2023-04-05 10:53:54','This entry has been flagged as spam.','user',''),(19,15,'Akismet Spam Filter',0,'2023-04-05 11:36:45','This entry has been flagged as spam.','user',''),(20,16,'Akismet Spam Filter',0,'2023-04-05 16:51:48','This entry has been flagged as spam.','user',''),(21,17,'Akismet Spam Filter',0,'2023-04-05 17:52:29','This entry has been flagged as spam.','user',''),(22,18,'Akismet Spam Filter',0,'2023-04-05 20:43:47','This entry has been flagged as spam.','user',''),(23,19,'Akismet Spam Filter',0,'2023-04-05 22:18:12','This entry has been flagged as spam.','user',''),(24,20,'Akismet Spam Filter',0,'2023-04-05 22:42:01','This entry has been flagged as spam.','user',''),(25,21,'Akismet Spam Filter',0,'2023-04-05 23:41:38','This entry has been flagged as spam.','user',''),(26,22,'Akismet Spam Filter',0,'2023-04-06 02:33:40','This entry has been flagged as spam.','user',''),(27,23,'Akismet Spam Filter',0,'2023-04-06 03:18:37','This entry has been flagged as spam.','user',''),(28,24,'Akismet Spam Filter',0,'2023-04-06 07:36:06','This entry has been flagged as spam.','user',''),(29,25,'Akismet Spam Filter',0,'2023-04-06 08:18:25','This entry has been flagged as spam.','user',''),(30,26,'Akismet Spam Filter',0,'2023-04-06 17:59:07','This entry has been flagged as spam.','user',''),(31,27,'Akismet Spam Filter',0,'2023-04-06 19:22:40','This entry has been flagged as spam.','user',''),(32,28,'Akismet Spam Filter',0,'2023-04-06 22:22:54','This entry has been flagged as spam.','user',''),(33,29,'Akismet Spam Filter',0,'2023-04-06 22:31:56','This entry has been flagged as spam.','user',''),(34,30,'Akismet Spam Filter',0,'2023-04-06 22:35:18','This entry has been flagged as spam.','user',''),(35,31,'Akismet Spam Filter',0,'2023-04-06 22:51:05','This entry has been flagged as spam.','user',''),(36,32,'Akismet Spam Filter',0,'2023-04-06 23:27:50','This entry has been flagged as spam.','user',''),(37,33,'Akismet Spam Filter',0,'2023-04-07 00:53:22','This entry has been flagged as spam.','user',''),(38,34,'Akismet Spam Filter',0,'2023-04-07 01:11:34','This entry has been flagged as spam.','user',''),(39,35,'Akismet Spam Filter',0,'2023-04-07 03:27:39','This entry has been flagged as spam.','user',''),(40,36,'Akismet Spam Filter',0,'2023-04-07 05:22:47','This entry has been flagged as spam.','user',''),(41,37,'Akismet Spam Filter',0,'2023-04-07 06:40:45','This entry has been flagged as spam.','user',''),(42,38,'Akismet Spam Filter',0,'2023-04-07 06:45:27','This entry has been flagged as spam.','user',''),(43,39,'Gravity Forms',0,'2023-04-07 08:04:50','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(44,40,'Akismet Spam Filter',0,'2023-04-07 11:32:23','This entry has been flagged as spam.','user',''),(45,41,'Akismet Spam Filter',0,'2023-04-07 13:33:26','This entry has been flagged as spam.','user',''),(46,42,'Akismet Spam Filter',0,'2023-04-07 15:24:33','This entry has been flagged as spam.','user',''),(47,43,'Akismet Spam Filter',0,'2023-04-07 17:24:26','This entry has been flagged as spam.','user',''),(48,44,'Akismet Spam Filter',0,'2023-04-07 18:48:53','This entry has been flagged as spam.','user',''),(49,45,'Akismet Spam Filter',0,'2023-04-07 19:26:26','This entry has been flagged as spam.','user',''),(50,46,'Akismet Spam Filter',0,'2023-04-07 20:03:34','This entry has been flagged as spam.','user',''),(51,47,'Akismet Spam Filter',0,'2023-04-07 21:13:39','This entry has been flagged as spam.','user',''),(52,48,'Akismet Spam Filter',0,'2023-04-08 02:51:45','This entry has been flagged as spam.','user',''),(53,49,'Akismet Spam Filter',0,'2023-04-08 03:01:53','This entry has been flagged as spam.','user',''),(54,50,'Akismet Spam Filter',0,'2023-04-08 07:49:24','This entry has been flagged as spam.','user',''),(55,51,'Akismet Spam Filter',0,'2023-04-08 10:37:52','This entry has been flagged as spam.','user',''),(56,52,'Akismet Spam Filter',0,'2023-04-08 11:03:49','This entry has been flagged as spam.','user',''),(57,53,'Akismet Spam Filter',0,'2023-04-08 16:38:56','This entry has been flagged as spam.','user',''),(58,54,'Akismet Spam Filter',0,'2023-04-08 19:38:33','This entry has been flagged as spam.','user',''),(59,55,'Akismet Spam Filter',0,'2023-04-08 20:39:10','This entry has been flagged as spam.','user',''),(60,56,'Akismet Spam Filter',0,'2023-04-09 02:13:39','This entry has been flagged as spam.','user',''),(61,57,'Akismet Spam Filter',0,'2023-04-09 04:46:50','This entry has been flagged as spam.','user',''),(62,58,'Akismet Spam Filter',0,'2023-04-09 06:16:25','This entry has been flagged as spam.','user',''),(63,59,'Akismet Spam Filter',0,'2023-04-09 07:08:05','This entry has been flagged as spam.','user',''),(64,60,'Akismet Spam Filter',0,'2023-04-09 07:32:27','This entry has been flagged as spam.','user',''),(65,61,'Akismet Spam Filter',0,'2023-04-09 08:14:49','This entry has been flagged as spam.','user',''),(66,62,'Akismet Spam Filter',0,'2023-04-09 15:11:44','This entry has been flagged as spam.','user',''),(67,63,'Akismet Spam Filter',0,'2023-04-09 16:38:01','This entry has been flagged as spam.','user',''),(68,64,'Akismet Spam Filter',0,'2023-04-09 18:44:47','This entry has been flagged as spam.','user',''),(69,65,'Akismet Spam Filter',0,'2023-04-09 19:56:41','This entry has been flagged as spam.','user',''),(70,66,'Akismet Spam Filter',0,'2023-04-10 01:05:09','This entry has been flagged as spam.','user',''),(71,67,'Gravity Forms',0,'2023-04-10 12:59:21','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(72,68,'Akismet Spam Filter',0,'2023-04-10 13:17:50','This entry has been flagged as spam.','user',''),(73,69,'Gravity Forms',0,'2023-04-10 15:14:40','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(74,70,'Akismet Spam Filter',0,'2023-04-10 17:33:28','This entry has been flagged as spam.','user',''),(75,71,'Akismet Spam Filter',0,'2023-04-10 18:43:05','This entry has been flagged as spam.','user',''),(76,72,'Akismet Spam Filter',0,'2023-04-10 21:20:45','This entry has been flagged as spam.','user',''),(77,73,'Akismet Spam Filter',0,'2023-04-10 21:46:39','This entry has been flagged as spam.','user',''),(78,74,'Akismet Spam Filter',0,'2023-04-11 02:40:13','This entry has been flagged as spam.','user',''),(79,75,'Akismet Spam Filter',0,'2023-04-11 05:09:22','This entry has been flagged as spam.','user',''),(80,76,'Akismet Spam Filter',0,'2023-04-11 12:49:23','This entry has been flagged as spam.','user',''),(81,77,'Akismet Spam Filter',0,'2023-04-11 15:05:05','This entry has been flagged as spam.','user',''),(82,78,'Akismet Spam Filter',0,'2023-04-11 15:08:56','This entry has been flagged as spam.','user',''),(83,79,'Akismet Spam Filter',0,'2023-04-11 16:48:47','This entry has been flagged as spam.','user',''),(84,80,'Akismet Spam Filter',0,'2023-04-11 20:46:16','This entry has been flagged as spam.','user',''),(85,81,'Akismet Spam Filter',0,'2023-04-11 22:44:15','This entry has been flagged as spam.','user',''),(86,82,'Akismet Spam Filter',0,'2023-04-12 02:23:50','This entry has been flagged as spam.','user',''),(87,83,'Akismet Spam Filter',0,'2023-04-12 09:11:02','This entry has been flagged as spam.','user',''),(88,84,'Akismet Spam Filter',0,'2023-04-12 13:24:08','This entry has been flagged as spam.','user',''),(89,85,'Akismet Spam Filter',0,'2023-04-12 14:58:33','This entry has been flagged as spam.','user',''),(90,86,'Akismet Spam Filter',0,'2023-04-12 15:24:36','This entry has been flagged as spam.','user',''),(91,87,'Akismet Spam Filter',0,'2023-04-12 15:26:03','This entry has been flagged as spam.','user',''),(92,88,'Akismet Spam Filter',0,'2023-04-12 16:17:59','This entry has been flagged as spam.','user',''),(93,89,'Akismet Spam Filter',0,'2023-04-12 20:13:53','This entry has been flagged as spam.','user',''),(94,90,'Akismet Spam Filter',0,'2023-04-12 20:26:28','This entry has been flagged as spam.','user',''),(95,91,'Akismet Spam Filter',0,'2023-04-12 22:12:44','This entry has been flagged as spam.','user',''),(96,92,'Akismet Spam Filter',0,'2023-04-12 23:52:19','This entry has been flagged as spam.','user',''),(97,93,'Akismet Spam Filter',0,'2023-04-13 03:21:24','This entry has been flagged as spam.','user',''),(98,94,'Akismet Spam Filter',0,'2023-04-13 10:34:15','This entry has been flagged as spam.','user',''),(99,95,'Akismet Spam Filter',0,'2023-04-13 12:29:31','This entry has been flagged as spam.','user',''),(100,96,'Akismet Spam Filter',0,'2023-04-13 12:29:38','This entry has been flagged as spam.','user',''),(101,97,'Akismet Spam Filter',0,'2023-04-13 13:08:34','This entry has been flagged as spam.','user',''),(102,98,'Akismet Spam Filter',0,'2023-04-13 14:59:27','This entry has been flagged as spam.','user',''),(103,99,'Akismet Spam Filter',0,'2023-04-13 16:03:40','This entry has been flagged as spam.','user',''),(104,100,'Akismet Spam Filter',0,'2023-04-13 20:31:37','This entry has been flagged as spam.','user',''),(105,101,'Akismet Spam Filter',0,'2023-04-13 22:37:37','This entry has been flagged as spam.','user',''),(106,102,'Akismet Spam Filter',0,'2023-04-14 05:10:28','This entry has been flagged as spam.','user',''),(107,103,'Akismet Spam Filter',0,'2023-04-14 07:37:34','This entry has been flagged as spam.','user',''),(108,104,'Akismet Spam Filter',0,'2023-04-14 15:58:53','This entry has been flagged as spam.','user',''),(109,105,'Akismet Spam Filter',0,'2023-04-14 17:01:01','This entry has been flagged as spam.','user',''),(110,106,'Akismet Spam Filter',0,'2023-04-14 20:06:19','This entry has been flagged as spam.','user',''),(111,107,'Akismet Spam Filter',0,'2023-04-15 04:53:29','This entry has been flagged as spam.','user',''),(112,108,'Akismet Spam Filter',0,'2023-04-15 05:51:07','This entry has been flagged as spam.','user',''),(113,109,'Akismet Spam Filter',0,'2023-04-15 08:04:31','This entry has been flagged as spam.','user',''),(114,110,'Akismet Spam Filter',0,'2023-04-15 10:11:36','This entry has been flagged as spam.','user',''),(115,111,'Akismet Spam Filter',0,'2023-04-15 14:31:10','This entry has been flagged as spam.','user',''),(116,112,'Akismet Spam Filter',0,'2023-04-15 14:40:25','This entry has been flagged as spam.','user',''),(117,113,'Akismet Spam Filter',0,'2023-04-15 19:10:29','This entry has been flagged as spam.','user',''),(118,114,'Akismet Spam Filter',0,'2023-04-15 20:58:52','This entry has been flagged as spam.','user',''),(119,115,'Akismet Spam Filter',0,'2023-04-16 00:27:03','This entry has been flagged as spam.','user',''),(120,116,'Akismet Spam Filter',0,'2023-04-16 00:55:48','This entry has been flagged as spam.','user',''),(121,117,'Akismet Spam Filter',0,'2023-04-16 01:41:54','This entry has been flagged as spam.','user',''),(122,118,'Akismet Spam Filter',0,'2023-04-16 02:13:00','This entry has been flagged as spam.','user',''),(123,119,'Akismet Spam Filter',0,'2023-04-16 07:42:51','This entry has been flagged as spam.','user',''),(124,120,'Akismet Spam Filter',0,'2023-04-16 13:32:45','This entry has been flagged as spam.','user',''),(125,121,'Akismet Spam Filter',0,'2023-04-16 14:43:56','This entry has been flagged as spam.','user',''),(126,122,'Akismet Spam Filter',0,'2023-04-16 19:06:31','This entry has been flagged as spam.','user',''),(127,123,'Akismet Spam Filter',0,'2023-04-17 04:03:11','This entry has been flagged as spam.','user',''),(128,124,'Akismet Spam Filter',0,'2023-04-17 14:42:12','This entry has been flagged as spam.','user',''),(129,125,'Akismet Spam Filter',0,'2023-04-17 16:34:04','This entry has been flagged as spam.','user',''),(130,126,'Akismet Spam Filter',0,'2023-04-17 19:06:57','This entry has been flagged as spam.','user',''),(131,127,'Akismet Spam Filter',0,'2023-04-17 20:14:36','This entry has been flagged as spam.','user',''),(132,128,'Akismet Spam Filter',0,'2023-04-17 21:38:54','This entry has been flagged as spam.','user',''),(133,129,'Akismet Spam Filter',0,'2023-04-17 22:32:29','This entry has been flagged as spam.','user',''),(134,130,'Akismet Spam Filter',0,'2023-04-18 12:06:11','This entry has been flagged as spam.','user',''),(135,131,'Akismet Spam Filter',0,'2023-04-18 14:35:06','This entry has been flagged as spam.','user',''),(136,132,'Akismet Spam Filter',0,'2023-04-18 15:14:08','This entry has been flagged as spam.','user',''),(137,133,'Akismet Spam Filter',0,'2023-04-18 17:01:37','This entry has been flagged as spam.','user',''),(138,134,'Akismet Spam Filter',0,'2023-04-18 17:13:18','This entry has been flagged as spam.','user',''),(139,135,'Akismet Spam Filter',0,'2023-04-18 20:58:18','This entry has been flagged as spam.','user',''),(140,136,'Akismet Spam Filter',0,'2023-04-19 00:58:45','This entry has been flagged as spam.','user',''),(141,137,'Akismet Spam Filter',0,'2023-04-19 04:41:34','This entry has been flagged as spam.','user',''),(142,138,'Akismet Spam Filter',0,'2023-04-19 04:43:38','This entry has been flagged as spam.','user',''),(143,139,'Akismet Spam Filter',0,'2023-04-19 10:40:31','This entry has been flagged as spam.','user',''),(144,140,'Akismet Spam Filter',0,'2023-04-19 15:04:31','This entry has been flagged as spam.','user',''),(145,141,'Akismet Spam Filter',0,'2023-04-19 15:15:00','This entry has been flagged as spam.','user',''),(146,142,'Akismet Spam Filter',0,'2023-04-19 20:14:09','This entry has been flagged as spam.','user',''),(147,143,'Akismet Spam Filter',0,'2023-04-19 20:48:20','This entry has been flagged as spam.','user',''),(148,144,'Akismet Spam Filter',0,'2023-04-20 00:03:49','This entry has been flagged as spam.','user',''),(149,145,'Akismet Spam Filter',0,'2023-04-20 02:44:49','This entry has been flagged as spam.','user',''),(150,146,'Akismet Spam Filter',0,'2023-04-20 06:57:08','This entry has been flagged as spam.','user',''),(151,147,'Akismet Spam Filter',0,'2023-04-20 07:34:57','This entry has been flagged as spam.','user',''),(152,148,'Akismet Spam Filter',0,'2023-04-20 10:40:17','This entry has been flagged as spam.','user',''),(153,149,'Akismet Spam Filter',0,'2023-04-20 11:19:06','This entry has been flagged as spam.','user',''),(154,150,'Akismet Spam Filter',0,'2023-04-20 12:58:02','This entry has been flagged as spam.','user',''),(155,151,'Akismet Spam Filter',0,'2023-04-20 15:39:58','This entry has been flagged as spam.','user',''),(156,152,'Akismet Spam Filter',0,'2023-04-20 19:20:32','This entry has been flagged as spam.','user',''),(157,153,'Akismet Spam Filter',0,'2023-04-20 20:33:16','This entry has been flagged as spam.','user',''),(158,154,'Akismet Spam Filter',0,'2023-04-20 22:57:13','This entry has been flagged as spam.','user',''),(159,155,'Akismet Spam Filter',0,'2023-04-21 01:35:22','This entry has been flagged as spam.','user',''),(160,156,'Akismet Spam Filter',0,'2023-04-21 04:19:58','This entry has been flagged as spam.','user',''),(161,157,'Akismet Spam Filter',0,'2023-04-21 04:27:12','This entry has been flagged as spam.','user',''),(162,158,'Akismet Spam Filter',0,'2023-04-21 06:11:49','This entry has been flagged as spam.','user',''),(163,159,'Akismet Spam Filter',0,'2023-04-21 08:31:30','This entry has been flagged as spam.','user',''),(164,160,'Akismet Spam Filter',0,'2023-04-21 09:52:28','This entry has been flagged as spam.','user',''),(165,161,'Akismet Spam Filter',0,'2023-04-21 10:22:13','This entry has been flagged as spam.','user',''),(166,162,'Akismet Spam Filter',0,'2023-04-21 10:55:21','This entry has been flagged as spam.','user',''),(167,163,'Akismet Spam Filter',0,'2023-04-21 16:03:59','This entry has been flagged as spam.','user',''),(168,164,'Akismet Spam Filter',0,'2023-04-21 19:03:26','This entry has been flagged as spam.','user',''),(169,165,'Akismet Spam Filter',0,'2023-04-21 20:08:17','This entry has been flagged as spam.','user',''),(170,166,'Akismet Spam Filter',0,'2023-04-21 23:25:36','This entry has been flagged as spam.','user',''),(171,167,'Akismet Spam Filter',0,'2023-04-22 02:57:45','This entry has been flagged as spam.','user',''),(172,168,'Akismet Spam Filter',0,'2023-04-22 17:20:14','This entry has been flagged as spam.','user',''),(173,169,'Akismet Spam Filter',0,'2023-04-23 02:27:48','This entry has been flagged as spam.','user',''),(174,170,'Akismet Spam Filter',0,'2023-04-23 13:04:15','This entry has been flagged as spam.','user',''),(175,171,'Akismet Spam Filter',0,'2023-04-23 13:49:23','This entry has been flagged as spam.','user',''),(176,172,'Akismet Spam Filter',0,'2023-04-23 21:47:48','This entry has been flagged as spam.','user',''),(177,173,'Akismet Spam Filter',0,'2023-04-24 06:15:51','This entry has been flagged as spam.','user',''),(178,174,'Akismet Spam Filter',0,'2023-04-24 06:26:49','This entry has been flagged as spam.','user',''),(179,175,'Akismet Spam Filter',0,'2023-04-24 07:10:58','This entry has been flagged as spam.','user',''),(180,176,'Akismet Spam Filter',0,'2023-04-24 08:45:58','This entry has been flagged as spam.','user',''),(181,177,'Akismet Spam Filter',0,'2023-04-24 12:40:07','This entry has been flagged as spam.','user',''),(182,178,'Akismet Spam Filter',0,'2023-04-24 14:15:16','This entry has been flagged as spam.','user',''),(183,179,'Akismet Spam Filter',0,'2023-04-25 05:11:50','This entry has been flagged as spam.','user',''),(184,180,'Akismet Spam Filter',0,'2023-04-25 16:45:45','This entry has been flagged as spam.','user',''),(185,181,'Akismet Spam Filter',0,'2023-04-25 17:47:31','This entry has been flagged as spam.','user',''),(186,182,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-25 23:33:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(187,182,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-25 23:33:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(188,183,'Akismet Spam Filter',0,'2023-04-26 00:55:33','This entry has been flagged as spam.','user',''),(189,184,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-26 03:02:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(190,184,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-26 03:02:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(191,185,'Akismet Spam Filter',0,'2023-04-26 04:45:09','This entry has been flagged as spam.','user',''),(192,186,'Akismet Spam Filter',0,'2023-04-26 05:28:14','This entry has been flagged as spam.','user',''),(193,187,'Akismet Spam Filter',0,'2023-04-26 06:47:18','This entry has been flagged as spam.','user',''),(194,188,'Akismet Spam Filter',0,'2023-04-26 08:39:45','This entry has been flagged as spam.','user',''),(195,189,'Akismet Spam Filter',0,'2023-04-26 12:10:24','This entry has been flagged as spam.','user',''),(196,190,'Akismet Spam Filter',0,'2023-04-26 12:49:31','This entry has been flagged as spam.','user',''),(197,191,'Akismet Spam Filter',0,'2023-04-26 13:48:27','This entry has been flagged as spam.','user',''),(198,192,'Akismet Spam Filter',0,'2023-04-26 15:02:12','This entry has been flagged as spam.','user',''),(199,193,'Akismet Spam Filter',0,'2023-04-26 15:58:56','This entry has been flagged as spam.','user',''),(200,194,'Akismet Spam Filter',0,'2023-04-26 15:59:33','This entry has been flagged as spam.','user',''),(201,195,'Akismet Spam Filter',0,'2023-04-26 16:01:25','This entry has been flagged as spam.','user',''),(202,196,'Akismet Spam Filter',0,'2023-04-26 16:07:22','This entry has been flagged as spam.','user',''),(203,197,'Akismet Spam Filter',0,'2023-04-26 16:07:35','This entry has been flagged as spam.','user',''),(204,198,'Akismet Spam Filter',0,'2023-04-26 16:10:46','This entry has been flagged as spam.','user',''),(205,199,'Akismet Spam Filter',0,'2023-04-26 16:12:21','This entry has been flagged as spam.','user',''),(206,200,'Akismet Spam Filter',0,'2023-04-26 16:17:30','This entry has been flagged as spam.','user',''),(207,201,'Akismet Spam Filter',0,'2023-04-26 16:20:36','This entry has been flagged as spam.','user',''),(208,202,'Akismet Spam Filter',0,'2023-04-26 16:20:37','This entry has been flagged as spam.','user',''),(209,203,'Akismet Spam Filter',0,'2023-04-26 16:33:27','This entry has been flagged as spam.','user',''),(210,204,'Akismet Spam Filter',0,'2023-04-26 16:51:25','This entry has been flagged as spam.','user',''),(211,205,'Akismet Spam Filter',0,'2023-04-26 17:03:01','This entry has been flagged as spam.','user',''),(212,206,'Akismet Spam Filter',0,'2023-04-26 17:38:19','This entry has been flagged as spam.','user',''),(213,207,'Akismet Spam Filter',0,'2023-04-26 19:57:52','This entry has been flagged as spam.','user',''),(214,208,'Akismet Spam Filter',0,'2023-04-27 00:31:15','This entry has been flagged as spam.','user',''),(215,209,'Akismet Spam Filter',0,'2023-04-27 01:24:16','This entry has been flagged as spam.','user',''),(216,210,'Akismet Spam Filter',0,'2023-04-27 02:04:29','This entry has been flagged as spam.','user',''),(217,211,'Akismet Spam Filter',0,'2023-04-27 03:51:33','This entry has been flagged as spam.','user',''),(218,212,'Akismet Spam Filter',0,'2023-04-27 05:04:41','This entry has been flagged as spam.','user',''),(219,213,'Gravity Forms',0,'2023-04-27 06:51:00','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(220,214,'Akismet Spam Filter',0,'2023-04-27 07:58:34','This entry has been flagged as spam.','user',''),(221,215,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-27 08:53:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(222,215,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-27 08:53:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(223,216,'Akismet Spam Filter',0,'2023-04-27 09:08:13','This entry has been flagged as spam.','user',''),(224,217,'Akismet Spam Filter',0,'2023-04-27 09:42:40','This entry has been flagged as spam.','user',''),(225,218,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-27 13:16:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(226,218,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-27 13:16:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(227,219,'Akismet Spam Filter',0,'2023-04-27 14:52:07','This entry has been flagged as spam.','user',''),(228,220,'Akismet Spam Filter',0,'2023-04-27 15:16:45','This entry has been flagged as spam.','user',''),(229,221,'Akismet Spam Filter',0,'2023-04-27 22:28:45','This entry has been flagged as spam.','user',''),(230,222,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-28 05:10:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(231,222,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-28 05:10:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(232,223,'Akismet Spam Filter',0,'2023-04-28 07:08:19','This entry has been flagged as spam.','user',''),(233,224,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-04-28 07:25:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(234,224,'Customer Notification (ID: 605853abc2fe2)',0,'2023-04-28 07:25:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(235,225,'Akismet Spam Filter',0,'2023-04-28 09:55:47','This entry has been flagged as spam.','user',''),(236,226,'Akismet Spam Filter',0,'2023-04-28 16:21:46','This entry has been flagged as spam.','user',''),(237,227,'Akismet Spam Filter',0,'2023-04-28 17:44:28','This entry has been flagged as spam.','user',''),(238,228,'Akismet Spam Filter',0,'2023-04-28 22:07:27','This entry has been flagged as spam.','user',''),(239,229,'Akismet Spam Filter',0,'2023-04-29 01:40:28','This entry has been flagged as spam.','user',''),(240,230,'Akismet Spam Filter',0,'2023-04-29 02:25:41','This entry has been flagged as spam.','user',''),(241,231,'Akismet Spam Filter',0,'2023-04-29 18:49:58','This entry has been flagged as spam.','user',''),(242,232,'Akismet Spam Filter',0,'2023-04-29 21:51:47','This entry has been flagged as spam.','user',''),(243,233,'Akismet Spam Filter',0,'2023-04-30 01:14:22','This entry has been flagged as spam.','user',''),(244,234,'Akismet Spam Filter',0,'2023-04-30 07:17:48','This entry has been flagged as spam.','user',''),(245,235,'Akismet Spam Filter',0,'2023-04-30 09:34:10','This entry has been flagged as spam.','user',''),(246,236,'Akismet Spam Filter',0,'2023-04-30 12:06:04','This entry has been flagged as spam.','user',''),(247,237,'Akismet Spam Filter',0,'2023-04-30 14:12:59','This entry has been flagged as spam.','user',''),(248,238,'Akismet Spam Filter',0,'2023-04-30 17:25:34','This entry has been flagged as spam.','user',''),(249,239,'Akismet Spam Filter',0,'2023-04-30 17:50:42','This entry has been flagged as spam.','user',''),(250,240,'Akismet Spam Filter',0,'2023-04-30 20:39:34','This entry has been flagged as spam.','user',''),(251,241,'Gravity Forms',0,'2023-04-30 20:54:52','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(252,242,'Gravity Forms',0,'2023-04-30 22:04:59','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(253,243,'Gravity Forms',0,'2023-04-30 22:43:13','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(254,244,'Akismet Spam Filter',0,'2023-05-01 04:28:06','This entry has been flagged as spam.','user',''),(255,245,'Akismet Spam Filter',0,'2023-05-01 14:03:39','This entry has been flagged as spam.','user',''),(256,246,'Akismet Spam Filter',0,'2023-05-01 16:57:54','This entry has been flagged as spam.','user',''),(257,247,'Akismet Spam Filter',0,'2023-05-01 23:29:08','This entry has been flagged as spam.','user',''),(258,248,'Akismet Spam Filter',0,'2023-05-02 02:31:41','This entry has been flagged as spam.','user',''),(259,249,'Akismet Spam Filter',0,'2023-05-02 04:24:09','This entry has been flagged as spam.','user',''),(260,250,'Akismet Spam Filter',0,'2023-05-02 06:24:51','This entry has been flagged as spam.','user',''),(261,251,'Akismet Spam Filter',0,'2023-05-02 08:43:03','This entry has been flagged as spam.','user',''),(262,252,'Akismet Spam Filter',0,'2023-05-02 08:58:12','This entry has been flagged as spam.','user',''),(263,253,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-05-02 09:12:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(264,253,'Customer Notification (ID: 605853abc2fe2)',0,'2023-05-02 09:12:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(265,254,'Akismet Spam Filter',0,'2023-05-02 10:27:02','This entry has been flagged as spam.','user',''),(266,255,'Akismet Spam Filter',0,'2023-05-02 13:44:34','This entry has been flagged as spam.','user',''),(267,256,'Akismet Spam Filter',0,'2023-05-02 14:04:43','This entry has been flagged as spam.','user',''),(268,257,'Akismet Spam Filter',0,'2023-05-02 19:42:28','This entry has been flagged as spam.','user',''),(269,258,'Akismet Spam Filter',0,'2023-05-02 21:42:23','This entry has been flagged as spam.','user',''),(270,259,'Akismet Spam Filter',0,'2023-05-03 02:02:44','This entry has been flagged as spam.','user',''),(271,260,'Akismet Spam Filter',0,'2023-05-03 05:44:37','This entry has been flagged as spam.','user',''),(272,261,'Akismet Spam Filter',0,'2023-05-03 08:12:19','This entry has been flagged as spam.','user',''),(273,262,'Akismet Spam Filter',0,'2023-05-03 10:01:25','This entry has been flagged as spam.','user',''),(274,263,'Akismet Spam Filter',0,'2023-05-03 18:04:04','This entry has been flagged as spam.','user',''),(275,264,'Akismet Spam Filter',0,'2023-05-03 18:13:25','This entry has been flagged as spam.','user',''),(276,265,'Akismet Spam Filter',0,'2023-05-03 20:22:50','This entry has been flagged as spam.','user',''),(277,266,'Akismet Spam Filter',0,'2023-05-03 20:31:31','This entry has been flagged as spam.','user',''),(278,267,'Akismet Spam Filter',0,'2023-05-03 23:44:44','This entry has been flagged as spam.','user',''),(279,268,'Gravity Forms',0,'2023-05-04 09:21:31','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(280,269,'Akismet Spam Filter',0,'2023-05-04 10:19:51','This entry has been flagged as spam.','user',''),(281,270,'Akismet Spam Filter',0,'2023-05-04 11:00:00','This entry has been flagged as spam.','user',''),(282,271,'Akismet Spam Filter',0,'2023-05-04 13:45:59','This entry has been flagged as spam.','user',''),(283,272,'Akismet Spam Filter',0,'2023-05-04 16:22:15','This entry has been flagged as spam.','user',''),(284,273,'Akismet Spam Filter',0,'2023-05-04 19:43:10','This entry has been flagged as spam.','user',''),(285,274,'Akismet Spam Filter',0,'2023-05-04 20:15:47','This entry has been flagged as spam.','user',''),(286,275,'Akismet Spam Filter',0,'2023-05-04 20:45:37','This entry has been flagged as spam.','user',''),(287,276,'Akismet Spam Filter',0,'2023-05-04 22:49:37','This entry has been flagged as spam.','user',''),(288,277,'Akismet Spam Filter',0,'2023-05-05 07:47:42','This entry has been flagged as spam.','user',''),(289,278,'Akismet Spam Filter',0,'2023-05-05 08:53:50','This entry has been flagged as spam.','user',''),(290,279,'Akismet Spam Filter',0,'2023-05-05 12:00:18','This entry has been flagged as spam.','user',''),(291,280,'Akismet Spam Filter',0,'2023-05-05 13:38:26','This entry has been flagged as spam.','user',''),(292,281,'Akismet Spam Filter',0,'2023-05-05 15:03:22','This entry has been flagged as spam.','user',''),(293,282,'Akismet Spam Filter',0,'2023-05-05 19:27:24','This entry has been flagged as spam.','user',''),(294,283,'Akismet Spam Filter',0,'2023-05-05 21:49:52','This entry has been flagged as spam.','user',''),(295,284,'Akismet Spam Filter',0,'2023-05-05 23:31:20','This entry has been flagged as spam.','user',''),(296,285,'Akismet Spam Filter',0,'2023-05-06 02:08:45','This entry has been flagged as spam.','user',''),(297,286,'Akismet Spam Filter',0,'2023-05-06 04:21:25','This entry has been flagged as spam.','user',''),(298,287,'Akismet Spam Filter',0,'2023-05-06 04:57:23','This entry has been flagged as spam.','user',''),(299,288,'Akismet Spam Filter',0,'2023-05-06 08:34:51','This entry has been flagged as spam.','user',''),(300,289,'Akismet Spam Filter',0,'2023-05-06 15:48:44','This entry has been flagged as spam.','user',''),(301,290,'Gravity Forms',0,'2023-05-06 17:41:28','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(302,291,'Akismet Spam Filter',0,'2023-05-06 22:18:50','This entry has been flagged as spam.','user',''),(303,292,'Akismet Spam Filter',0,'2023-05-07 04:29:45','This entry has been flagged as spam.','user',''),(304,293,'Akismet Spam Filter',0,'2023-05-07 06:53:47','This entry has been flagged as spam.','user',''),(305,294,'Akismet Spam Filter',0,'2023-05-07 16:00:36','This entry has been flagged as spam.','user',''),(306,295,'Akismet Spam Filter',0,'2023-05-07 22:31:43','This entry has been flagged as spam.','user',''),(307,296,'Akismet Spam Filter',0,'2023-05-08 02:57:05','This entry has been flagged as spam.','user',''),(308,297,'Akismet Spam Filter',0,'2023-05-08 03:08:47','This entry has been flagged as spam.','user',''),(309,298,'Akismet Spam Filter',0,'2023-05-08 04:19:44','This entry has been flagged as spam.','user',''),(310,299,'Akismet Spam Filter',0,'2023-05-08 06:59:45','This entry has been flagged as spam.','user',''),(311,300,'Akismet Spam Filter',0,'2023-05-08 08:41:25','This entry has been flagged as spam.','user',''),(312,301,'Akismet Spam Filter',0,'2023-05-08 11:49:50','This entry has been flagged as spam.','user',''),(313,302,'Akismet Spam Filter',0,'2023-05-08 15:29:50','This entry has been flagged as spam.','user',''),(314,303,'Akismet Spam Filter',0,'2023-05-08 19:32:42','This entry has been flagged as spam.','user',''),(315,304,'Akismet Spam Filter',0,'2023-05-08 22:51:40','This entry has been flagged as spam.','user',''),(316,305,'Akismet Spam Filter',0,'2023-05-08 23:06:35','This entry has been flagged as spam.','user',''),(317,306,'Akismet Spam Filter',0,'2023-05-09 00:03:56','This entry has been flagged as spam.','user',''),(318,307,'Akismet Spam Filter',0,'2023-05-09 15:23:15','This entry has been flagged as spam.','user',''),(319,308,'Gravity Forms',0,'2023-05-09 16:17:31','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(320,309,'Akismet Spam Filter',0,'2023-05-09 19:52:12','This entry has been flagged as spam.','user',''),(321,310,'Akismet Spam Filter',0,'2023-05-09 23:27:26','This entry has been flagged as spam.','user',''),(322,311,'Gravity Forms',0,'2023-05-10 03:34:08','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(323,312,'Akismet Spam Filter',0,'2023-05-10 11:36:07','This entry has been flagged as spam.','user',''),(324,313,'Gravity Forms',0,'2023-05-10 11:53:39','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(325,314,'Akismet Spam Filter',0,'2023-05-10 12:23:53','This entry has been flagged as spam.','user',''),(326,315,'Akismet Spam Filter',0,'2023-05-10 20:14:55','This entry has been flagged as spam.','user',''),(327,316,'Gravity Forms',0,'2023-05-10 20:42:33','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(328,317,'Akismet Spam Filter',0,'2023-05-11 04:15:23','This entry has been flagged as spam.','user',''),(329,318,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-05-11 11:25:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(330,318,'Customer Notification (ID: 605853abc2fe2)',0,'2023-05-11 11:25:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(331,319,'Akismet Spam Filter',0,'2023-05-11 17:45:25','This entry has been flagged as spam.','user',''),(332,320,'Gravity Forms',0,'2023-05-11 19:17:29','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(333,321,'Akismet Spam Filter',0,'2023-05-11 19:56:05','This entry has been flagged as spam.','user',''),(334,322,'Akismet Spam Filter',0,'2023-05-11 20:38:45','This entry has been flagged as spam.','user',''),(335,323,'Akismet Spam Filter',0,'2023-05-11 23:42:03','This entry has been flagged as spam.','user',''),(336,324,'Akismet Spam Filter',0,'2023-05-11 23:54:59','This entry has been flagged as spam.','user',''),(337,325,'Akismet Spam Filter',0,'2023-05-12 02:16:56','This entry has been flagged as spam.','user',''),(338,326,'Akismet Spam Filter',0,'2023-05-12 03:38:53','This entry has been flagged as spam.','user',''),(339,327,'Akismet Spam Filter',0,'2023-05-12 03:40:47','This entry has been flagged as spam.','user',''),(340,328,'Akismet Spam Filter',0,'2023-05-12 05:35:01','This entry has been flagged as spam.','user',''),(341,329,'Akismet Spam Filter',0,'2023-05-12 06:16:17','This entry has been flagged as spam.','user',''),(342,330,'Gravity Forms',0,'2023-05-12 07:29:03','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(343,331,'Akismet Spam Filter',0,'2023-05-12 07:57:02','This entry has been flagged as spam.','user',''),(344,332,'Gravity Forms',0,'2023-05-12 10:34:08','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(345,333,'Akismet Spam Filter',0,'2023-05-12 10:57:32','This entry has been flagged as spam.','user',''),(346,334,'Akismet Spam Filter',0,'2023-05-12 12:51:20','This entry has been flagged as spam.','user',''),(347,335,'Akismet Spam Filter',0,'2023-05-12 16:13:53','This entry has been flagged as spam.','user',''),(348,336,'Akismet Spam Filter',0,'2023-05-12 19:13:51','This entry has been flagged as spam.','user',''),(349,337,'Akismet Spam Filter',0,'2023-05-12 22:27:11','This entry has been flagged as spam.','user',''),(350,338,'Akismet Spam Filter',0,'2023-05-13 04:51:24','This entry has been flagged as spam.','user',''),(351,339,'Akismet Spam Filter',0,'2023-05-13 06:35:23','This entry has been flagged as spam.','user',''),(352,340,'Akismet Spam Filter',0,'2023-05-13 07:29:55','This entry has been flagged as spam.','user',''),(353,341,'Akismet Spam Filter',0,'2023-05-13 08:30:50','This entry has been flagged as spam.','user',''),(354,342,'Akismet Spam Filter',0,'2023-05-13 08:54:45','This entry has been flagged as spam.','user',''),(355,343,'Akismet Spam Filter',0,'2023-05-13 10:09:30','This entry has been flagged as spam.','user',''),(356,344,'Akismet Spam Filter',0,'2023-05-13 12:47:12','This entry has been flagged as spam.','user',''),(357,345,'Akismet Spam Filter',0,'2023-05-13 14:30:10','This entry has been flagged as spam.','user',''),(358,346,'Akismet Spam Filter',0,'2023-05-13 21:25:50','This entry has been flagged as spam.','user',''),(359,347,'Akismet Spam Filter',0,'2023-05-13 22:03:25','This entry has been flagged as spam.','user',''),(360,348,'Akismet Spam Filter',0,'2023-05-14 07:15:07','This entry has been flagged as spam.','user',''),(361,349,'Akismet Spam Filter',0,'2023-05-14 14:54:21','This entry has been flagged as spam.','user',''),(362,350,'Akismet Spam Filter',0,'2023-05-14 16:21:23','This entry has been flagged as spam.','user',''),(363,351,'Akismet Spam Filter',0,'2023-05-14 20:25:36','This entry has been flagged as spam.','user',''),(364,352,'Akismet Spam Filter',0,'2023-05-14 23:34:11','This entry has been flagged as spam.','user',''),(365,353,'Akismet Spam Filter',0,'2023-05-15 00:44:54','This entry has been flagged as spam.','user',''),(366,354,'Akismet Spam Filter',0,'2023-05-15 01:23:39','This entry has been flagged as spam.','user',''),(367,355,'Akismet Spam Filter',0,'2023-05-15 08:11:27','This entry has been flagged as spam.','user',''),(368,356,'Akismet Spam Filter',0,'2023-05-15 09:14:55','This entry has been flagged as spam.','user',''),(369,357,'Akismet Spam Filter',0,'2023-05-15 10:47:13','This entry has been flagged as spam.','user',''),(370,358,'Akismet Spam Filter',0,'2023-05-15 11:22:33','This entry has been flagged as spam.','user',''),(371,359,'Akismet Spam Filter',0,'2023-05-15 11:26:40','This entry has been flagged as spam.','user',''),(372,360,'Akismet Spam Filter',0,'2023-05-15 19:05:21','This entry has been flagged as spam.','user',''),(373,361,'Akismet Spam Filter',0,'2023-05-15 20:07:19','This entry has been flagged as spam.','user',''),(374,362,'Akismet Spam Filter',0,'2023-05-15 21:19:30','This entry has been flagged as spam.','user',''),(375,363,'Akismet Spam Filter',0,'2023-05-15 21:31:58','This entry has been flagged as spam.','user',''),(376,364,'Akismet Spam Filter',0,'2023-05-16 00:50:20','This entry has been flagged as spam.','user',''),(377,365,'Akismet Spam Filter',0,'2023-05-16 00:51:40','This entry has been flagged as spam.','user',''),(378,366,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-05-16 02:38:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(379,366,'Customer Notification (ID: 605853abc2fe2)',0,'2023-05-16 02:38:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(380,367,'Akismet Spam Filter',0,'2023-05-16 08:11:17','This entry has been flagged as spam.','user',''),(381,368,'Akismet Spam Filter',0,'2023-05-16 09:38:39','This entry has been flagged as spam.','user',''),(382,369,'Akismet Spam Filter',0,'2023-05-16 18:45:13','This entry has been flagged as spam.','user',''),(383,370,'Akismet Spam Filter',0,'2023-05-16 19:50:29','This entry has been flagged as spam.','user',''),(384,371,'Akismet Spam Filter',0,'2023-05-16 20:09:27','This entry has been flagged as spam.','user',''),(385,372,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-05-16 22:40:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(386,372,'Customer Notification (ID: 605853abc2fe2)',0,'2023-05-16 22:40:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(387,373,'Akismet Spam Filter',0,'2023-05-16 23:11:23','This entry has been flagged as spam.','user',''),(388,374,'Akismet Spam Filter',0,'2023-05-17 04:38:20','This entry has been flagged as spam.','user',''),(389,375,'Akismet Spam Filter',0,'2023-05-17 08:12:40','This entry has been flagged as spam.','user',''),(390,376,'Akismet Spam Filter',0,'2023-05-17 13:09:21','This entry has been flagged as spam.','user',''),(391,377,'Akismet Spam Filter',0,'2023-05-17 18:23:14','This entry has been flagged as spam.','user',''),(392,378,'Akismet Spam Filter',0,'2023-05-17 18:36:12','This entry has been flagged as spam.','user',''),(393,379,'Akismet Spam Filter',0,'2023-05-17 19:39:45','This entry has been flagged as spam.','user',''),(394,380,'Akismet Spam Filter',0,'2023-05-17 20:04:50','This entry has been flagged as spam.','user',''),(395,381,'Akismet Spam Filter',0,'2023-05-17 22:19:25','This entry has been flagged as spam.','user',''),(396,382,'Akismet Spam Filter',0,'2023-05-18 01:13:20','This entry has been flagged as spam.','user',''),(397,383,'Akismet Spam Filter',0,'2023-05-18 02:35:33','This entry has been flagged as spam.','user',''),(398,384,'Akismet Spam Filter',0,'2023-05-18 06:08:12','This entry has been flagged as spam.','user',''),(399,385,'Akismet Spam Filter',0,'2023-05-18 22:30:24','This entry has been flagged as spam.','user',''),(400,386,'Akismet Spam Filter',0,'2023-05-19 22:49:04','This entry has been flagged as spam.','user',''),(401,387,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-05-20 07:24:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(402,387,'Customer Notification (ID: 605853abc2fe2)',0,'2023-05-20 07:24:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(403,388,'Akismet Spam Filter',0,'2023-05-21 08:38:47','This entry has been flagged as spam.','user',''),(404,389,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-05-21 11:19:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(405,389,'Customer Notification (ID: 605853abc2fe2)',0,'2023-05-21 11:19:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(406,390,'Akismet Spam Filter',0,'2023-05-21 12:31:31','This entry has been flagged as spam.','user',''),(407,391,'Akismet Spam Filter',0,'2023-05-21 19:05:46','This entry has been flagged as spam.','user',''),(408,392,'Akismet Spam Filter',0,'2023-05-21 19:36:19','This entry has been flagged as spam.','user',''),(409,393,'Akismet Spam Filter',0,'2023-05-22 02:16:51','This entry has been flagged as spam.','user',''),(410,394,'Akismet Spam Filter',0,'2023-05-22 02:19:40','This entry has been flagged as spam.','user',''),(411,395,'Akismet Spam Filter',0,'2023-05-22 14:25:33','This entry has been flagged as spam.','user',''),(412,396,'Akismet Spam Filter',0,'2023-05-22 18:03:04','This entry has been flagged as spam.','user',''),(413,397,'Akismet Spam Filter',0,'2023-05-22 19:52:46','This entry has been flagged as spam.','user',''),(414,398,'Akismet Spam Filter',0,'2023-05-22 22:35:11','This entry has been flagged as spam.','user',''),(415,399,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-05-23 01:17:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(416,399,'Customer Notification (ID: 605853abc2fe2)',0,'2023-05-23 01:17:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(417,400,'Akismet Spam Filter',0,'2023-05-23 03:45:49','This entry has been flagged as spam.','user',''),(418,401,'Akismet Spam Filter',0,'2023-05-23 05:28:49','This entry has been flagged as spam.','user',''),(419,402,'Akismet Spam Filter',0,'2023-05-23 07:09:31','This entry has been flagged as spam.','user',''),(420,403,'Akismet Spam Filter',0,'2023-05-23 20:15:53','This entry has been flagged as spam.','user',''),(421,404,'Akismet Spam Filter',0,'2023-05-24 01:13:13','This entry has been flagged as spam.','user',''),(422,405,'Akismet Spam Filter',0,'2023-05-24 02:25:42','This entry has been flagged as spam.','user',''),(423,406,'Akismet Spam Filter',0,'2023-05-24 06:56:38','This entry has been flagged as spam.','user',''),(424,407,'Akismet Spam Filter',0,'2023-05-24 08:18:46','This entry has been flagged as spam.','user',''),(425,408,'Akismet Spam Filter',0,'2023-05-24 09:37:31','This entry has been flagged as spam.','user',''),(426,409,'Akismet Spam Filter',0,'2023-05-24 13:27:34','This entry has been flagged as spam.','user',''),(427,410,'Akismet Spam Filter',0,'2023-05-24 15:22:35','This entry has been flagged as spam.','user',''),(428,411,'Akismet Spam Filter',0,'2023-05-24 19:10:18','This entry has been flagged as spam.','user',''),(429,412,'Akismet Spam Filter',0,'2023-05-25 10:26:38','This entry has been flagged as spam.','user',''),(430,413,'Akismet Spam Filter',0,'2023-05-25 16:42:33','This entry has been flagged as spam.','user',''),(431,414,'Akismet Spam Filter',0,'2023-05-25 17:41:22','This entry has been flagged as spam.','user',''),(432,415,'Akismet Spam Filter',0,'2023-05-25 18:20:29','This entry has been flagged as spam.','user',''),(433,416,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-05-25 19:48:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(434,416,'Customer Notification (ID: 605853abc2fe2)',0,'2023-05-25 19:48:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(435,417,'Akismet Spam Filter',0,'2023-05-25 22:40:26','This entry has been flagged as spam.','user',''),(436,418,'Akismet Spam Filter',0,'2023-05-25 23:41:42','This entry has been flagged as spam.','user',''),(437,419,'Akismet Spam Filter',0,'2023-05-26 11:17:33','This entry has been flagged as spam.','user',''),(438,420,'Akismet Spam Filter',0,'2023-05-26 17:08:47','This entry has been flagged as spam.','user',''),(439,421,'Akismet Spam Filter',0,'2023-05-26 18:42:58','This entry has been flagged as spam.','user',''),(440,422,'Akismet Spam Filter',0,'2023-05-26 20:48:33','This entry has been flagged as spam.','user',''),(441,423,'Akismet Spam Filter',0,'2023-05-27 02:39:30','This entry has been flagged as spam.','user',''),(442,424,'Akismet Spam Filter',0,'2023-05-27 11:07:53','This entry has been flagged as spam.','user',''),(443,425,'Akismet Spam Filter',0,'2023-05-27 12:05:56','This entry has been flagged as spam.','user',''),(444,426,'Akismet Spam Filter',0,'2023-05-27 13:54:40','This entry has been flagged as spam.','user',''),(445,427,'Akismet Spam Filter',0,'2023-05-27 15:51:20','This entry has been flagged as spam.','user',''),(446,428,'Akismet Spam Filter',0,'2023-05-27 16:38:45','This entry has been flagged as spam.','user',''),(447,429,'Akismet Spam Filter',0,'2023-05-27 19:42:49','This entry has been flagged as spam.','user',''),(448,430,'Akismet Spam Filter',0,'2023-05-27 21:53:30','This entry has been flagged as spam.','user',''),(449,431,'Akismet Spam Filter',0,'2023-05-28 00:19:20','This entry has been flagged as spam.','user',''),(450,432,'Akismet Spam Filter',0,'2023-05-28 00:48:32','This entry has been flagged as spam.','user',''),(451,433,'Akismet Spam Filter',0,'2023-05-28 07:14:25','This entry has been flagged as spam.','user',''),(452,434,'Akismet Spam Filter',0,'2023-05-28 08:44:50','This entry has been flagged as spam.','user',''),(453,435,'Akismet Spam Filter',0,'2023-05-28 08:53:15','This entry has been flagged as spam.','user',''),(454,436,'Akismet Spam Filter',0,'2023-05-28 15:42:47','This entry has been flagged as spam.','user',''),(455,437,'Akismet Spam Filter',0,'2023-05-28 17:11:08','This entry has been flagged as spam.','user',''),(456,438,'Akismet Spam Filter',0,'2023-05-28 20:55:42','This entry has been flagged as spam.','user',''),(457,439,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-05-29 00:27:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(458,439,'Customer Notification (ID: 605853abc2fe2)',0,'2023-05-29 00:27:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(459,440,'Akismet Spam Filter',0,'2023-05-29 01:43:05','This entry has been flagged as spam.','user',''),(460,441,'Gravity Forms',0,'2023-05-29 01:56:52','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(461,442,'Akismet Spam Filter',0,'2023-05-29 01:59:16','This entry has been flagged as spam.','user',''),(462,443,'Akismet Spam Filter',0,'2023-05-29 02:06:37','This entry has been flagged as spam.','user',''),(463,444,'Gravity Forms',0,'2023-05-29 02:38:10','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(464,445,'Akismet Spam Filter',0,'2023-05-29 03:51:07','This entry has been flagged as spam.','user',''),(465,446,'Akismet Spam Filter',0,'2023-05-29 10:39:54','This entry has been flagged as spam.','user',''),(466,447,'Akismet Spam Filter',0,'2023-05-29 11:15:33','This entry has been flagged as spam.','user',''),(467,448,'Akismet Spam Filter',0,'2023-05-29 19:58:26','This entry has been flagged as spam.','user',''),(468,449,'Akismet Spam Filter',0,'2023-05-29 22:28:32','This entry has been flagged as spam.','user',''),(469,450,'Akismet Spam Filter',0,'2023-05-30 00:41:01','This entry has been flagged as spam.','user',''),(470,451,'Akismet Spam Filter',0,'2023-05-30 02:33:17','This entry has been flagged as spam.','user',''),(471,452,'Akismet Spam Filter',0,'2023-05-30 08:01:58','This entry has been flagged as spam.','user',''),(472,453,'Akismet Spam Filter',0,'2023-05-30 16:10:26','This entry has been flagged as spam.','user',''),(473,454,'Akismet Spam Filter',0,'2023-05-30 21:11:57','This entry has been flagged as spam.','user',''),(474,455,'Akismet Spam Filter',0,'2023-05-31 00:43:24','This entry has been flagged as spam.','user',''),(475,456,'Akismet Spam Filter',0,'2023-05-31 07:24:23','This entry has been flagged as spam.','user',''),(476,457,'Akismet Spam Filter',0,'2023-05-31 14:04:30','This entry has been flagged as spam.','user',''),(477,458,'Akismet Spam Filter',0,'2023-05-31 17:43:48','This entry has been flagged as spam.','user',''),(478,459,'Akismet Spam Filter',0,'2023-05-31 19:41:07','This entry has been flagged as spam.','user',''),(479,460,'Akismet Spam Filter',0,'2023-05-31 23:34:37','This entry has been flagged as spam.','user',''),(480,461,'Akismet Spam Filter',0,'2023-06-01 01:55:13','This entry has been flagged as spam.','user',''),(481,462,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-06-01 10:46:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(482,462,'Customer Notification (ID: 605853abc2fe2)',0,'2023-06-01 10:46:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(483,463,'Akismet Spam Filter',0,'2023-06-01 20:57:21','This entry has been flagged as spam.','user',''),(484,464,'Akismet Spam Filter',0,'2023-06-02 04:24:19','This entry has been flagged as spam.','user',''),(485,465,'Akismet Spam Filter',0,'2023-06-02 08:18:36','This entry has been flagged as spam.','user',''),(486,466,'Akismet Spam Filter',0,'2023-06-02 09:16:31','This entry has been flagged as spam.','user',''),(487,467,'Akismet Spam Filter',0,'2023-06-02 16:42:06','This entry has been flagged as spam.','user',''),(488,468,'Akismet Spam Filter',0,'2023-06-02 21:13:02','This entry has been flagged as spam.','user',''),(489,469,'Akismet Spam Filter',0,'2023-06-03 01:51:15','This entry has been flagged as spam.','user',''),(490,470,'Akismet Spam Filter',0,'2023-06-03 12:27:08','This entry has been flagged as spam.','user',''),(491,471,'Akismet Spam Filter',0,'2023-06-03 17:15:51','This entry has been flagged as spam.','user',''),(492,472,'Akismet Spam Filter',0,'2023-06-03 21:41:21','This entry has been flagged as spam.','user',''),(493,473,'Akismet Spam Filter',0,'2023-06-03 21:54:47','This entry has been flagged as spam.','user',''),(494,474,'Akismet Spam Filter',0,'2023-06-04 03:06:35','This entry has been flagged as spam.','user',''),(495,475,'Akismet Spam Filter',0,'2023-06-04 05:14:42','This entry has been flagged as spam.','user',''),(496,476,'Akismet Spam Filter',0,'2023-06-04 11:57:30','This entry has been flagged as spam.','user',''),(497,477,'Akismet Spam Filter',0,'2023-06-04 14:50:17','This entry has been flagged as spam.','user',''),(498,478,'Akismet Spam Filter',0,'2023-06-04 19:27:03','This entry has been flagged as spam.','user',''),(499,479,'Akismet Spam Filter',0,'2023-06-04 21:39:52','This entry has been flagged as spam.','user',''),(500,480,'Akismet Spam Filter',0,'2023-06-04 23:50:53','This entry has been flagged as spam.','user',''),(501,481,'Akismet Spam Filter',0,'2023-06-05 07:52:11','This entry has been flagged as spam.','user',''),(502,482,'Akismet Spam Filter',0,'2023-06-05 11:10:06','This entry has been flagged as spam.','user',''),(503,483,'Akismet Spam Filter',0,'2023-06-05 18:08:02','This entry has been flagged as spam.','user',''),(504,484,'Akismet Spam Filter',0,'2023-06-05 20:12:55','This entry has been flagged as spam.','user',''),(505,485,'Akismet Spam Filter',0,'2023-06-06 13:44:44','This entry has been flagged as spam.','user',''),(506,486,'Akismet Spam Filter',0,'2023-06-06 20:32:28','This entry has been flagged as spam.','user',''),(507,487,'Akismet Spam Filter',0,'2023-06-06 20:57:17','This entry has been flagged as spam.','user',''),(508,488,'Akismet Spam Filter',0,'2023-06-06 23:17:50','This entry has been flagged as spam.','user',''),(509,489,'Akismet Spam Filter',0,'2023-06-07 00:06:09','This entry has been flagged as spam.','user',''),(510,490,'Akismet Spam Filter',0,'2023-06-07 00:25:05','This entry has been flagged as spam.','user',''),(511,491,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-06-07 01:16:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(512,491,'Customer Notification (ID: 605853abc2fe2)',0,'2023-06-07 01:16:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(513,492,'Akismet Spam Filter',0,'2023-06-07 09:37:55','This entry has been flagged as spam.','user',''),(514,493,'Akismet Spam Filter',0,'2023-06-07 13:33:47','This entry has been flagged as spam.','user',''),(515,494,'Akismet Spam Filter',0,'2023-06-07 19:09:54','This entry has been flagged as spam.','user',''),(516,495,'Akismet Spam Filter',0,'2023-06-08 00:22:55','This entry has been flagged as spam.','user',''),(517,496,'Akismet Spam Filter',0,'2023-06-08 10:27:35','This entry has been flagged as spam.','user',''),(518,497,'Akismet Spam Filter',0,'2023-06-08 17:04:53','This entry has been flagged as spam.','user',''),(519,498,'Akismet Spam Filter',0,'2023-06-08 17:13:59','This entry has been flagged as spam.','user',''),(520,499,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-06-08 20:30:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(521,499,'Customer Notification (ID: 605853abc2fe2)',0,'2023-06-08 20:30:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(522,500,'Akismet Spam Filter',0,'2023-06-08 21:21:46','This entry has been flagged as spam.','user',''),(523,501,'Akismet Spam Filter',0,'2023-06-08 23:50:18','This entry has been flagged as spam.','user',''),(524,502,'Akismet Spam Filter',0,'2023-06-09 11:31:29','This entry has been flagged as spam.','user',''),(525,503,'Akismet Spam Filter',0,'2023-06-09 11:45:15','This entry has been flagged as spam.','user',''),(526,504,'Akismet Spam Filter',0,'2023-06-09 17:49:20','This entry has been flagged as spam.','user',''),(527,505,'Akismet Spam Filter',0,'2023-06-09 18:55:22','This entry has been flagged as spam.','user',''),(528,506,'Gravity Forms',0,'2023-06-09 19:02:48','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(529,507,'Akismet Spam Filter',0,'2023-06-09 19:30:20','This entry has been flagged as spam.','user',''),(530,508,'Akismet Spam Filter',0,'2023-06-09 23:26:52','This entry has been flagged as spam.','user',''),(531,509,'Akismet Spam Filter',0,'2023-06-10 02:18:15','This entry has been flagged as spam.','user',''),(532,510,'Akismet Spam Filter',0,'2023-06-10 09:19:09','This entry has been flagged as spam.','user',''),(533,511,'Akismet Spam Filter',0,'2023-06-10 11:06:51','This entry has been flagged as spam.','user',''),(534,512,'Akismet Spam Filter',0,'2023-06-10 11:16:58','This entry has been flagged as spam.','user',''),(535,513,'Akismet Spam Filter',0,'2023-06-10 14:18:09','This entry has been flagged as spam.','user',''),(536,514,'Akismet Spam Filter',0,'2023-06-11 06:26:41','This entry has been flagged as spam.','user',''),(537,515,'Akismet Spam Filter',0,'2023-06-11 06:50:43','This entry has been flagged as spam.','user',''),(538,516,'Akismet Spam Filter',0,'2023-06-11 10:21:22','This entry has been flagged as spam.','user',''),(539,517,'Akismet Spam Filter',0,'2023-06-11 21:02:49','This entry has been flagged as spam.','user',''),(540,518,'Akismet Spam Filter',0,'2023-06-11 21:03:17','This entry has been flagged as spam.','user',''),(541,519,'Akismet Spam Filter',0,'2023-06-12 00:39:15','This entry has been flagged as spam.','user',''),(542,520,'Akismet Spam Filter',0,'2023-06-12 02:35:45','This entry has been flagged as spam.','user',''),(543,521,'Akismet Spam Filter',0,'2023-06-12 03:10:20','This entry has been flagged as spam.','user',''),(544,522,'Akismet Spam Filter',0,'2023-06-12 09:01:03','This entry has been flagged as spam.','user',''),(545,523,'Akismet Spam Filter',0,'2023-06-12 09:15:38','This entry has been flagged as spam.','user',''),(546,524,'Akismet Spam Filter',0,'2023-06-12 13:40:33','This entry has been flagged as spam.','user',''),(547,525,'Akismet Spam Filter',0,'2023-06-12 19:10:43','This entry has been flagged as spam.','user',''),(548,526,'Akismet Spam Filter',0,'2023-06-13 02:07:36','This entry has been flagged as spam.','user',''),(549,527,'Gravity Forms',0,'2023-06-13 02:49:14','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(550,528,'Akismet Spam Filter',0,'2023-06-13 03:43:19','This entry has been flagged as spam.','user',''),(551,529,'Akismet Spam Filter',0,'2023-06-13 11:49:00','This entry has been flagged as spam.','user',''),(552,530,'Akismet Spam Filter',0,'2023-06-13 12:03:31','This entry has been flagged as spam.','user',''),(553,531,'Akismet Spam Filter',0,'2023-06-13 16:20:37','This entry has been flagged as spam.','user',''),(554,532,'Akismet Spam Filter',0,'2023-06-13 18:27:02','This entry has been flagged as spam.','user',''),(555,533,'Akismet Spam Filter',0,'2023-06-13 19:55:09','This entry has been flagged as spam.','user',''),(556,534,'Akismet Spam Filter',0,'2023-06-13 20:57:15','This entry has been flagged as spam.','user',''),(557,535,'Akismet Spam Filter',0,'2023-06-14 05:41:42','This entry has been flagged as spam.','user',''),(558,536,'Akismet Spam Filter',0,'2023-06-14 06:16:44','This entry has been flagged as spam.','user',''),(559,537,'Akismet Spam Filter',0,'2023-06-14 06:22:08','This entry has been flagged as spam.','user',''),(560,538,'Akismet Spam Filter',0,'2023-06-14 07:26:33','This entry has been flagged as spam.','user',''),(561,539,'Akismet Spam Filter',0,'2023-06-14 08:28:52','This entry has been flagged as spam.','user',''),(562,540,'Akismet Spam Filter',0,'2023-06-14 10:57:59','This entry has been flagged as spam.','user',''),(563,541,'Akismet Spam Filter',0,'2023-06-14 13:45:06','This entry has been flagged as spam.','user',''),(564,542,'Gravity Forms',0,'2023-06-14 14:24:41','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(565,543,'Akismet Spam Filter',0,'2023-06-14 16:34:56','This entry has been flagged as spam.','user',''),(566,544,'Akismet Spam Filter',0,'2023-06-14 20:31:23','This entry has been flagged as spam.','user',''),(567,545,'Akismet Spam Filter',0,'2023-06-14 22:21:34','This entry has been flagged as spam.','user',''),(568,546,'Akismet Spam Filter',0,'2023-06-14 22:45:44','This entry has been flagged as spam.','user',''),(569,547,'Akismet Spam Filter',0,'2023-06-15 02:57:52','This entry has been flagged as spam.','user',''),(570,548,'Akismet Spam Filter',0,'2023-06-15 05:21:01','This entry has been flagged as spam.','user',''),(571,549,'Akismet Spam Filter',0,'2023-06-15 12:54:49','This entry has been flagged as spam.','user',''),(572,550,'Akismet Spam Filter',0,'2023-06-15 16:38:18','This entry has been flagged as spam.','user',''),(573,551,'Akismet Spam Filter',0,'2023-06-15 18:01:39','This entry has been flagged as spam.','user',''),(574,552,'Akismet Spam Filter',0,'2023-06-15 20:42:48','This entry has been flagged as spam.','user',''),(575,553,'Akismet Spam Filter',0,'2023-06-16 00:30:10','This entry has been flagged as spam.','user',''),(576,554,'Akismet Spam Filter',0,'2023-06-16 12:50:04','This entry has been flagged as spam.','user',''),(577,555,'Akismet Spam Filter',0,'2023-06-16 14:51:16','This entry has been flagged as spam.','user',''),(578,556,'Akismet Spam Filter',0,'2023-06-16 15:37:16','This entry has been flagged as spam.','user',''),(579,557,'Akismet Spam Filter',0,'2023-06-16 15:59:04','This entry has been flagged as spam.','user',''),(580,558,'Akismet Spam Filter',0,'2023-06-16 16:26:50','This entry has been flagged as spam.','user',''),(581,559,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-06-16 19:32:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(582,559,'Customer Notification (ID: 605853abc2fe2)',0,'2023-06-16 19:32:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(583,560,'Akismet Spam Filter',0,'2023-06-16 22:01:13','This entry has been flagged as spam.','user',''),(584,561,'Akismet Spam Filter',0,'2023-06-17 16:31:12','This entry has been flagged as spam.','user',''),(585,562,'Akismet Spam Filter',0,'2023-06-17 23:52:31','This entry has been flagged as spam.','user',''),(586,563,'Akismet Spam Filter',0,'2023-06-18 03:12:04','This entry has been flagged as spam.','user',''),(587,564,'Akismet Spam Filter',0,'2023-06-18 05:45:36','This entry has been flagged as spam.','user',''),(588,565,'Akismet Spam Filter',0,'2023-06-18 11:38:25','This entry has been flagged as spam.','user',''),(589,566,'Akismet Spam Filter',0,'2023-06-18 15:17:55','This entry has been flagged as spam.','user',''),(590,567,'Akismet Spam Filter',0,'2023-06-18 21:46:40','This entry has been flagged as spam.','user',''),(591,568,'Akismet Spam Filter',0,'2023-06-19 04:49:09','This entry has been flagged as spam.','user',''),(592,569,'Akismet Spam Filter',0,'2023-06-19 05:59:55','This entry has been flagged as spam.','user',''),(593,570,'Akismet Spam Filter',0,'2023-06-19 10:55:11','This entry has been flagged as spam.','user',''),(594,571,'Akismet Spam Filter',0,'2023-06-19 17:16:59','This entry has been flagged as spam.','user',''),(595,572,'Akismet Spam Filter',0,'2023-06-19 18:42:11','This entry has been flagged as spam.','user',''),(596,573,'Akismet Spam Filter',0,'2023-06-19 22:42:17','This entry has been flagged as spam.','user',''),(597,574,'Akismet Spam Filter',0,'2023-06-19 22:57:23','This entry has been flagged as spam.','user',''),(598,575,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-06-20 04:49:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(599,575,'Customer Notification (ID: 605853abc2fe2)',0,'2023-06-20 04:49:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(600,576,'Akismet Spam Filter',0,'2023-06-20 13:10:48','This entry has been flagged as spam.','user',''),(601,577,'Akismet Spam Filter',0,'2023-06-20 14:37:23','This entry has been flagged as spam.','user',''),(602,578,'Akismet Spam Filter',0,'2023-06-20 15:51:01','This entry has been flagged as spam.','user',''),(603,579,'Akismet Spam Filter',0,'2023-06-20 22:53:04','This entry has been flagged as spam.','user',''),(604,580,'Akismet Spam Filter',0,'2023-06-21 01:48:32','This entry has been flagged as spam.','user',''),(605,581,'Akismet Spam Filter',0,'2023-06-21 02:19:34','This entry has been flagged as spam.','user',''),(606,582,'Akismet Spam Filter',0,'2023-06-21 02:53:36','This entry has been flagged as spam.','user',''),(607,583,'Akismet Spam Filter',0,'2023-06-21 04:49:19','This entry has been flagged as spam.','user',''),(608,584,'Akismet Spam Filter',0,'2023-06-21 05:16:01','This entry has been flagged as spam.','user',''),(609,585,'Akismet Spam Filter',0,'2023-06-21 12:01:37','This entry has been flagged as spam.','user',''),(610,586,'Akismet Spam Filter',0,'2023-06-21 21:41:02','This entry has been flagged as spam.','user',''),(611,587,'Akismet Spam Filter',0,'2023-06-22 10:47:36','This entry has been flagged as spam.','user',''),(612,588,'Akismet Spam Filter',0,'2023-06-22 16:12:17','This entry has been flagged as spam.','user',''),(613,589,'Akismet Spam Filter',0,'2023-06-23 03:53:58','This entry has been flagged as spam.','user',''),(614,590,'Akismet Spam Filter',0,'2023-06-23 11:30:35','This entry has been flagged as spam.','user',''),(615,591,'Akismet Spam Filter',0,'2023-06-23 12:18:33','This entry has been flagged as spam.','user',''),(616,592,'Akismet Spam Filter',0,'2023-06-23 15:38:23','This entry has been flagged as spam.','user',''),(617,593,'Akismet Spam Filter',0,'2023-06-23 18:18:47','This entry has been flagged as spam.','user',''),(618,594,'Akismet Spam Filter',0,'2023-06-23 23:15:42','This entry has been flagged as spam.','user',''),(619,595,'Akismet Spam Filter',0,'2023-06-24 11:01:38','This entry has been flagged as spam.','user',''),(620,596,'Akismet Spam Filter',0,'2023-06-24 11:42:40','This entry has been flagged as spam.','user',''),(621,597,'Akismet Spam Filter',0,'2023-06-24 19:54:53','This entry has been flagged as spam.','user',''),(622,598,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-06-25 02:22:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(623,598,'Customer Notification (ID: 605853abc2fe2)',0,'2023-06-25 02:22:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(624,599,'Akismet Spam Filter',0,'2023-06-25 10:20:19','This entry has been flagged as spam.','user',''),(625,600,'Akismet Spam Filter',0,'2023-06-26 00:11:39','This entry has been flagged as spam.','user',''),(626,601,'Akismet Spam Filter',0,'2023-06-26 01:00:55','This entry has been flagged as spam.','user',''),(627,602,'Akismet Spam Filter',0,'2023-06-26 08:35:54','This entry has been flagged as spam.','user',''),(628,603,'Akismet Spam Filter',0,'2023-06-26 20:16:05','This entry has been flagged as spam.','user',''),(629,604,'Akismet Spam Filter',0,'2023-06-26 23:14:35','This entry has been flagged as spam.','user',''),(630,605,'Akismet Spam Filter',0,'2023-06-27 13:09:59','This entry has been flagged as spam.','user',''),(631,606,'Akismet Spam Filter',0,'2023-06-27 13:32:21','This entry has been flagged as spam.','user',''),(632,607,'Gravity Forms',0,'2023-06-27 15:29:41','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(633,608,'Gravity Forms',0,'2023-06-27 17:43:04','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(634,609,'Akismet Spam Filter',0,'2023-06-27 18:14:49','This entry has been flagged as spam.','user',''),(635,610,'Akismet Spam Filter',0,'2023-06-27 21:29:32','This entry has been flagged as spam.','user',''),(636,611,'Akismet Spam Filter',0,'2023-06-27 22:50:55','This entry has been flagged as spam.','user',''),(637,612,'Akismet Spam Filter',0,'2023-06-27 23:48:40','This entry has been flagged as spam.','user',''),(638,613,'Akismet Spam Filter',0,'2023-06-28 01:22:20','This entry has been flagged as spam.','user',''),(639,614,'Akismet Spam Filter',0,'2023-06-28 02:22:27','This entry has been flagged as spam.','user',''),(640,615,'Akismet Spam Filter',0,'2023-06-28 03:58:10','This entry has been flagged as spam.','user',''),(641,616,'Akismet Spam Filter',0,'2023-06-28 11:17:35','This entry has been flagged as spam.','user',''),(642,617,'Akismet Spam Filter',0,'2023-06-28 17:52:45','This entry has been flagged as spam.','user',''),(643,618,'Akismet Spam Filter',0,'2023-06-28 18:28:26','This entry has been flagged as spam.','user',''),(644,619,'Akismet Spam Filter',0,'2023-06-28 20:30:47','This entry has been flagged as spam.','user',''),(645,620,'Akismet Spam Filter',0,'2023-06-28 22:10:51','This entry has been flagged as spam.','user',''),(646,621,'Akismet Spam Filter',0,'2023-06-29 01:05:29','This entry has been flagged as spam.','user',''),(647,622,'Akismet Spam Filter',0,'2023-06-29 01:14:50','This entry has been flagged as spam.','user',''),(648,623,'Akismet Spam Filter',0,'2023-06-29 04:24:10','This entry has been flagged as spam.','user',''),(649,624,'Akismet Spam Filter',0,'2023-06-29 17:29:20','This entry has been flagged as spam.','user',''),(650,625,'Akismet Spam Filter',0,'2023-06-29 18:53:16','This entry has been flagged as spam.','user',''),(651,626,'Akismet Spam Filter',0,'2023-06-29 21:19:17','This entry has been flagged as spam.','user',''),(652,627,'Akismet Spam Filter',0,'2023-06-30 14:12:01','This entry has been flagged as spam.','user',''),(653,628,'Akismet Spam Filter',0,'2023-06-30 20:13:04','This entry has been flagged as spam.','user',''),(654,629,'Akismet Spam Filter',0,'2023-06-30 21:34:20','This entry has been flagged as spam.','user',''),(655,630,'Akismet Spam Filter',0,'2023-06-30 21:39:52','This entry has been flagged as spam.','user',''),(656,631,'Akismet Spam Filter',0,'2023-06-30 23:12:48','This entry has been flagged as spam.','user',''),(657,632,'Akismet Spam Filter',0,'2023-07-01 05:44:17','This entry has been flagged as spam.','user',''),(658,633,'Akismet Spam Filter',0,'2023-07-01 09:47:43','This entry has been flagged as spam.','user',''),(659,634,'Akismet Spam Filter',0,'2023-07-01 14:03:59','This entry has been flagged as spam.','user',''),(660,635,'Akismet Spam Filter',0,'2023-07-01 16:58:15','This entry has been flagged as spam.','user',''),(661,636,'Akismet Spam Filter',0,'2023-07-01 17:51:53','This entry has been flagged as spam.','user',''),(662,637,'Akismet Spam Filter',0,'2023-07-01 18:46:42','This entry has been flagged as spam.','user',''),(663,638,'Akismet Spam Filter',0,'2023-07-01 19:17:30','This entry has been flagged as spam.','user',''),(664,639,'Akismet Spam Filter',0,'2023-07-01 19:26:07','This entry has been flagged as spam.','user',''),(665,640,'Akismet Spam Filter',0,'2023-07-01 19:49:56','This entry has been flagged as spam.','user',''),(666,641,'Akismet Spam Filter',0,'2023-07-01 20:24:21','This entry has been flagged as spam.','user',''),(667,642,'Akismet Spam Filter',0,'2023-07-01 22:00:24','This entry has been flagged as spam.','user',''),(668,643,'Akismet Spam Filter',0,'2023-07-02 00:31:32','This entry has been flagged as spam.','user',''),(669,644,'Akismet Spam Filter',0,'2023-07-02 00:56:51','This entry has been flagged as spam.','user',''),(670,645,'Akismet Spam Filter',0,'2023-07-02 08:30:18','This entry has been flagged as spam.','user',''),(671,646,'Akismet Spam Filter',0,'2023-07-02 14:46:28','This entry has been flagged as spam.','user',''),(672,647,'Akismet Spam Filter',0,'2023-07-02 22:23:21','This entry has been flagged as spam.','user',''),(673,648,'Akismet Spam Filter',0,'2023-07-03 00:00:36','This entry has been flagged as spam.','user',''),(674,649,'Akismet Spam Filter',0,'2023-07-03 07:42:01','This entry has been flagged as spam.','user',''),(675,650,'Akismet Spam Filter',0,'2023-07-03 07:49:10','This entry has been flagged as spam.','user',''),(676,651,'Akismet Spam Filter',0,'2023-07-03 10:54:30','This entry has been flagged as spam.','user',''),(677,652,'Akismet Spam Filter',0,'2023-07-03 12:22:21','This entry has been flagged as spam.','user',''),(678,653,'Akismet Spam Filter',0,'2023-07-03 14:05:01','This entry has been flagged as spam.','user',''),(679,654,'Akismet Spam Filter',0,'2023-07-03 17:55:07','This entry has been flagged as spam.','user',''),(680,655,'Akismet Spam Filter',0,'2023-07-03 18:14:00','This entry has been flagged as spam.','user',''),(681,656,'Akismet Spam Filter',0,'2023-07-03 19:41:34','This entry has been flagged as spam.','user',''),(682,657,'Akismet Spam Filter',0,'2023-07-03 19:58:28','This entry has been flagged as spam.','user',''),(683,658,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-07-03 22:19:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(684,658,'Customer Notification (ID: 605853abc2fe2)',0,'2023-07-03 22:19:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(685,659,'Akismet Spam Filter',0,'2023-07-04 01:49:52','This entry has been flagged as spam.','user',''),(686,660,'Akismet Spam Filter',0,'2023-07-04 23:49:56','This entry has been flagged as spam.','user',''),(687,661,'Akismet Spam Filter',0,'2023-07-05 01:05:36','This entry has been flagged as spam.','user',''),(688,662,'Akismet Spam Filter',0,'2023-07-05 04:04:02','This entry has been flagged as spam.','user',''),(689,663,'Akismet Spam Filter',0,'2023-07-05 05:45:48','This entry has been flagged as spam.','user',''),(690,664,'Akismet Spam Filter',0,'2023-07-06 00:19:31','This entry has been flagged as spam.','user',''),(691,665,'Akismet Spam Filter',0,'2023-07-06 00:19:58','This entry has been flagged as spam.','user',''),(692,666,'Akismet Spam Filter',0,'2023-07-06 06:09:18','This entry has been flagged as spam.','user',''),(693,667,'Akismet Spam Filter',0,'2023-07-06 10:51:13','This entry has been flagged as spam.','user',''),(694,668,'Akismet Spam Filter',0,'2023-07-06 13:01:43','This entry has been flagged as spam.','user',''),(695,669,'Akismet Spam Filter',0,'2023-07-06 17:23:18','This entry has been flagged as spam.','user',''),(696,670,'Gravity Forms',0,'2023-07-07 06:54:14','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(697,671,'Akismet Spam Filter',0,'2023-07-07 08:56:20','This entry has been flagged as spam.','user',''),(698,672,'Gravity Forms',0,'2023-07-07 10:47:34','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(699,673,'Akismet Spam Filter',0,'2023-07-07 11:05:40','This entry has been flagged as spam.','user',''),(700,674,'Akismet Spam Filter',0,'2023-07-08 05:45:40','This entry has been flagged as spam.','user',''),(701,675,'Akismet Spam Filter',0,'2023-07-08 13:07:00','This entry has been flagged as spam.','user',''),(702,676,'Akismet Spam Filter',0,'2023-07-08 16:58:55','This entry has been flagged as spam.','user',''),(703,677,'Akismet Spam Filter',0,'2023-07-09 06:56:08','This entry has been flagged as spam.','user',''),(704,678,'Akismet Spam Filter',0,'2023-07-09 07:01:06','This entry has been flagged as spam.','user',''),(705,679,'Akismet Spam Filter',0,'2023-07-09 13:48:49','This entry has been flagged as spam.','user',''),(706,680,'Akismet Spam Filter',0,'2023-07-09 20:34:09','This entry has been flagged as spam.','user',''),(707,681,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-07-09 22:06:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(708,681,'Customer Notification (ID: 605853abc2fe2)',0,'2023-07-09 22:06:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(709,682,'Akismet Spam Filter',0,'2023-07-10 02:11:47','This entry has been flagged as spam.','user',''),(710,683,'Akismet Spam Filter',0,'2023-07-10 07:50:08','This entry has been flagged as spam.','user',''),(711,684,'Akismet Spam Filter',0,'2023-07-10 08:10:48','This entry has been flagged as spam.','user',''),(712,685,'Akismet Spam Filter',0,'2023-07-10 15:47:29','This entry has been flagged as spam.','user',''),(713,686,'Akismet Spam Filter',0,'2023-07-10 16:55:49','This entry has been flagged as spam.','user',''),(714,687,'Akismet Spam Filter',0,'2023-07-10 23:50:14','This entry has been flagged as spam.','user',''),(715,688,'Akismet Spam Filter',0,'2023-07-11 00:07:54','This entry has been flagged as spam.','user',''),(716,689,'Akismet Spam Filter',0,'2023-07-11 05:57:08','This entry has been flagged as spam.','user',''),(717,690,'Akismet Spam Filter',0,'2023-07-11 14:21:45','This entry has been flagged as spam.','user',''),(718,691,'Akismet Spam Filter',0,'2023-07-11 21:25:03','This entry has been flagged as spam.','user',''),(719,692,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-07-12 00:39:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(720,692,'Customer Notification (ID: 605853abc2fe2)',0,'2023-07-12 00:39:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(721,693,'Akismet Spam Filter',0,'2023-07-12 08:35:48','This entry has been flagged as spam.','user',''),(722,694,'Akismet Spam Filter',0,'2023-07-12 09:50:25','This entry has been flagged as spam.','user',''),(723,695,'Akismet Spam Filter',0,'2023-07-12 14:11:37','This entry has been flagged as spam.','user',''),(724,696,'Akismet Spam Filter',0,'2023-07-12 15:21:01','This entry has been flagged as spam.','user',''),(725,697,'Akismet Spam Filter',0,'2023-07-12 18:11:33','This entry has been flagged as spam.','user',''),(726,698,'Akismet Spam Filter',0,'2023-07-13 00:57:00','This entry has been flagged as spam.','user',''),(727,699,'Akismet Spam Filter',0,'2023-07-13 01:56:02','This entry has been flagged as spam.','user',''),(728,700,'Akismet Spam Filter',0,'2023-07-13 07:30:13','This entry has been flagged as spam.','user',''),(729,701,'Akismet Spam Filter',0,'2023-07-13 17:04:49','This entry has been flagged as spam.','user',''),(730,702,'Akismet Spam Filter',0,'2023-07-13 17:37:41','This entry has been flagged as spam.','user',''),(731,703,'Gravity Forms',0,'2023-07-13 20:21:35','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(732,704,'Akismet Spam Filter',0,'2023-07-13 20:30:54','This entry has been flagged as spam.','user',''),(733,705,'Akismet Spam Filter',0,'2023-07-13 22:01:44','This entry has been flagged as spam.','user',''),(734,706,'Akismet Spam Filter',0,'2023-07-13 22:39:33','This entry has been flagged as spam.','user',''),(735,707,'Akismet Spam Filter',0,'2023-07-14 05:15:39','This entry has been flagged as spam.','user',''),(736,708,'Akismet Spam Filter',0,'2023-07-14 09:07:57','This entry has been flagged as spam.','user',''),(737,709,'Akismet Spam Filter',0,'2023-07-14 17:42:58','This entry has been flagged as spam.','user',''),(738,710,'Akismet Spam Filter',0,'2023-07-14 21:07:19','This entry has been flagged as spam.','user',''),(739,711,'Akismet Spam Filter',0,'2023-07-15 01:10:47','This entry has been flagged as spam.','user',''),(740,712,'Akismet Spam Filter',0,'2023-07-15 07:40:21','This entry has been flagged as spam.','user',''),(741,713,'Akismet Spam Filter',0,'2023-07-15 08:48:48','This entry has been flagged as spam.','user',''),(742,714,'Akismet Spam Filter',0,'2023-07-15 17:47:32','This entry has been flagged as spam.','user',''),(743,715,'Akismet Spam Filter',0,'2023-07-15 18:36:33','This entry has been flagged as spam.','user',''),(744,716,'Akismet Spam Filter',0,'2023-07-15 20:32:07','This entry has been flagged as spam.','user',''),(745,717,'Akismet Spam Filter',0,'2023-07-15 22:21:06','This entry has been flagged as spam.','user',''),(746,718,'Akismet Spam Filter',0,'2023-07-16 09:25:09','This entry has been flagged as spam.','user',''),(747,719,'Akismet Spam Filter',0,'2023-07-16 10:55:04','This entry has been flagged as spam.','user',''),(748,720,'Akismet Spam Filter',0,'2023-07-16 14:50:09','This entry has been flagged as spam.','user',''),(749,721,'Akismet Spam Filter',0,'2023-07-16 15:58:57','This entry has been flagged as spam.','user',''),(750,722,'Akismet Spam Filter',0,'2023-07-16 18:02:17','This entry has been flagged as spam.','user',''),(751,723,'Akismet Spam Filter',0,'2023-07-16 22:19:41','This entry has been flagged as spam.','user',''),(752,724,'Akismet Spam Filter',0,'2023-07-17 04:07:27','This entry has been flagged as spam.','user',''),(753,725,'Akismet Spam Filter',0,'2023-07-17 17:06:49','This entry has been flagged as spam.','user',''),(754,726,'Akismet Spam Filter',0,'2023-07-17 18:35:48','This entry has been flagged as spam.','user',''),(755,727,'Akismet Spam Filter',0,'2023-07-17 19:08:04','This entry has been flagged as spam.','user',''),(756,728,'Gravity Forms',0,'2023-07-17 22:47:15','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(757,729,'Akismet Spam Filter',0,'2023-07-18 06:46:31','This entry has been flagged as spam.','user',''),(758,730,'Akismet Spam Filter',0,'2023-07-18 09:24:42','This entry has been flagged as spam.','user',''),(759,731,'Akismet Spam Filter',0,'2023-07-18 09:31:35','This entry has been flagged as spam.','user',''),(760,732,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-07-18 09:43:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(761,732,'Customer Notification (ID: 605853abc2fe2)',0,'2023-07-18 09:43:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(762,733,'Gravity Forms',0,'2023-07-18 12:04:21','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(763,734,'Akismet Spam Filter',0,'2023-07-18 12:16:31','This entry has been flagged as spam.','user',''),(764,735,'Akismet Spam Filter',0,'2023-07-18 13:50:09','This entry has been flagged as spam.','user',''),(765,736,'Gravity Forms',0,'2023-07-18 17:27:17','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(766,737,'Akismet Spam Filter',0,'2023-07-18 23:09:54','This entry has been flagged as spam.','user',''),(767,738,'Akismet Spam Filter',0,'2023-07-18 23:58:07','This entry has been flagged as spam.','user',''),(768,739,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-07-19 05:54:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(769,739,'Customer Notification (ID: 605853abc2fe2)',0,'2023-07-19 05:54:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(770,740,'Akismet Spam Filter',0,'2023-07-19 09:47:51','This entry has been flagged as spam.','user',''),(771,741,'Akismet Spam Filter',0,'2023-07-19 13:23:53','This entry has been flagged as spam.','user',''),(772,742,'Akismet Spam Filter',0,'2023-07-19 20:09:36','This entry has been flagged as spam.','user',''),(773,743,'Akismet Spam Filter',0,'2023-07-20 07:02:57','This entry has been flagged as spam.','user',''),(774,744,'Akismet Spam Filter',0,'2023-07-20 13:24:07','This entry has been flagged as spam.','user',''),(775,745,'Akismet Spam Filter',0,'2023-07-20 19:08:06','This entry has been flagged as spam.','user',''),(776,746,'Akismet Spam Filter',0,'2023-07-20 20:19:50','This entry has been flagged as spam.','user',''),(777,747,'Akismet Spam Filter',0,'2023-07-20 20:23:20','This entry has been flagged as spam.','user',''),(778,748,'Akismet Spam Filter',0,'2023-07-21 10:39:20','This entry has been flagged as spam.','user',''),(779,749,'Akismet Spam Filter',0,'2023-07-21 12:46:30','This entry has been flagged as spam.','user',''),(780,750,'Akismet Spam Filter',0,'2023-07-21 21:11:14','This entry has been flagged as spam.','user',''),(781,751,'Akismet Spam Filter',0,'2023-07-22 04:44:27','This entry has been flagged as spam.','user',''),(782,752,'Akismet Spam Filter',0,'2023-07-22 17:13:08','This entry has been flagged as spam.','user',''),(783,753,'Akismet Spam Filter',0,'2023-07-22 17:45:33','This entry has been flagged as spam.','user',''),(784,754,'Akismet Spam Filter',0,'2023-07-22 19:56:46','This entry has been flagged as spam.','user',''),(785,755,'Akismet Spam Filter',0,'2023-07-23 11:35:41','This entry has been flagged as spam.','user',''),(786,756,'Akismet Spam Filter',0,'2023-07-23 14:17:25','This entry has been flagged as spam.','user',''),(787,757,'Akismet Spam Filter',0,'2023-07-23 15:52:41','This entry has been flagged as spam.','user',''),(788,758,'Akismet Spam Filter',0,'2023-07-23 16:59:06','This entry has been flagged as spam.','user',''),(789,759,'Akismet Spam Filter',0,'2023-07-23 18:25:04','This entry has been flagged as spam.','user',''),(790,760,'Akismet Spam Filter',0,'2023-07-24 00:33:56','This entry has been flagged as spam.','user',''),(791,761,'Akismet Spam Filter',0,'2023-07-24 03:54:04','This entry has been flagged as spam.','user',''),(792,762,'Akismet Spam Filter',0,'2023-07-24 14:00:12','This entry has been flagged as spam.','user',''),(793,763,'Akismet Spam Filter',0,'2023-07-24 15:16:01','This entry has been flagged as spam.','user',''),(794,764,'Akismet Spam Filter',0,'2023-07-24 17:00:30','This entry has been flagged as spam.','user',''),(795,765,'Akismet Spam Filter',0,'2023-07-24 19:23:43','This entry has been flagged as spam.','user',''),(796,766,'Akismet Spam Filter',0,'2023-07-24 20:56:58','This entry has been flagged as spam.','user',''),(797,767,'Akismet Spam Filter',0,'2023-07-24 21:26:24','This entry has been flagged as spam.','user',''),(798,768,'Akismet Spam Filter',0,'2023-07-24 22:02:15','This entry has been flagged as spam.','user',''),(799,769,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-07-25 00:10:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(800,769,'Customer Notification (ID: 605853abc2fe2)',0,'2023-07-25 00:10:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(801,770,'Akismet Spam Filter',0,'2023-07-25 13:23:37','This entry has been flagged as spam.','user',''),(802,771,'Akismet Spam Filter',0,'2023-07-25 22:33:55','This entry has been flagged as spam.','user',''),(803,772,'Akismet Spam Filter',0,'2023-07-26 00:46:33','This entry has been flagged as spam.','user',''),(804,773,'Akismet Spam Filter',0,'2023-07-26 01:22:22','This entry has been flagged as spam.','user',''),(805,774,'Gravity Forms',0,'2023-07-26 03:59:27','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(806,775,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-07-26 09:42:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(807,775,'Customer Notification (ID: 605853abc2fe2)',0,'2023-07-26 09:42:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(808,776,'Akismet Spam Filter',0,'2023-07-26 10:59:53','This entry has been flagged as spam.','user',''),(809,777,'Akismet Spam Filter',0,'2023-07-26 15:35:15','This entry has been flagged as spam.','user',''),(810,778,'Akismet Spam Filter',0,'2023-07-26 23:07:39','This entry has been flagged as spam.','user',''),(811,779,'Akismet Spam Filter',0,'2023-07-27 02:50:51','This entry has been flagged as spam.','user',''),(812,780,'Akismet Spam Filter',0,'2023-07-28 00:39:34','This entry has been flagged as spam.','user',''),(813,781,'Akismet Spam Filter',0,'2023-07-28 17:38:14','This entry has been flagged as spam.','user',''),(814,782,'Akismet Spam Filter',0,'2023-07-28 18:02:38','This entry has been flagged as spam.','user',''),(815,783,'Akismet Spam Filter',0,'2023-07-28 21:08:02','This entry has been flagged as spam.','user',''),(816,784,'Akismet Spam Filter',0,'2023-07-28 22:08:20','This entry has been flagged as spam.','user',''),(817,785,'Akismet Spam Filter',0,'2023-07-29 09:54:15','This entry has been flagged as spam.','user',''),(818,786,'Gravity Forms',0,'2023-07-30 00:06:53','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(819,787,'Akismet Spam Filter',0,'2023-07-30 15:16:09','This entry has been flagged as spam.','user',''),(820,788,'Akismet Spam Filter',0,'2023-07-30 21:34:02','This entry has been flagged as spam.','user',''),(821,789,'Akismet Spam Filter',0,'2023-07-30 23:19:25','This entry has been flagged as spam.','user',''),(822,790,'Akismet Spam Filter',0,'2023-07-31 03:03:18','This entry has been flagged as spam.','user',''),(823,791,'Akismet Spam Filter',0,'2023-07-31 06:50:01','This entry has been flagged as spam.','user',''),(824,792,'Akismet Spam Filter',0,'2023-07-31 12:12:20','This entry has been flagged as spam.','user',''),(825,793,'Akismet Spam Filter',0,'2023-07-31 14:17:09','This entry has been flagged as spam.','user',''),(826,794,'Akismet Spam Filter',0,'2023-07-31 14:35:48','This entry has been flagged as spam.','user',''),(827,795,'Akismet Spam Filter',0,'2023-07-31 16:28:33','This entry has been flagged as spam.','user',''),(828,796,'Akismet Spam Filter',0,'2023-07-31 20:15:01','This entry has been flagged as spam.','user',''),(829,797,'Akismet Spam Filter',0,'2023-08-01 12:29:17','This entry has been flagged as spam.','user',''),(830,798,'Akismet Spam Filter',0,'2023-08-01 18:05:47','This entry has been flagged as spam.','user',''),(831,799,'Akismet Spam Filter',0,'2023-08-01 18:11:08','This entry has been flagged as spam.','user',''),(832,800,'Akismet Spam Filter',0,'2023-08-01 23:58:25','This entry has been flagged as spam.','user',''),(833,801,'Akismet Spam Filter',0,'2023-08-02 00:06:08','This entry has been flagged as spam.','user',''),(834,802,'Akismet Spam Filter',0,'2023-08-02 02:14:36','This entry has been flagged as spam.','user',''),(835,803,'Akismet Spam Filter',0,'2023-08-02 03:39:51','This entry has been flagged as spam.','user',''),(836,804,'Akismet Spam Filter',0,'2023-08-02 08:52:08','This entry has been flagged as spam.','user',''),(837,805,'Akismet Spam Filter',0,'2023-08-02 13:43:22','This entry has been flagged as spam.','user',''),(838,806,'Akismet Spam Filter',0,'2023-08-03 00:39:06','This entry has been flagged as spam.','user',''),(839,807,'Akismet Spam Filter',0,'2023-08-03 11:44:28','This entry has been flagged as spam.','user',''),(840,808,'Akismet Spam Filter',0,'2023-08-03 17:29:30','This entry has been flagged as spam.','user',''),(841,809,'Akismet Spam Filter',0,'2023-08-03 19:12:50','This entry has been flagged as spam.','user',''),(842,810,'Akismet Spam Filter',0,'2023-08-03 22:29:41','This entry has been flagged as spam.','user',''),(843,811,'Gravity Forms',0,'2023-08-04 04:13:35','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(844,812,'Akismet Spam Filter',0,'2023-08-04 18:58:00','This entry has been flagged as spam.','user',''),(845,813,'Akismet Spam Filter',0,'2023-08-04 22:30:31','This entry has been flagged as spam.','user',''),(846,814,'Akismet Spam Filter',0,'2023-08-05 08:21:35','This entry has been flagged as spam.','user',''),(847,815,'Akismet Spam Filter',0,'2023-08-05 09:27:39','This entry has been flagged as spam.','user',''),(848,816,'Akismet Spam Filter',0,'2023-08-05 13:38:21','This entry has been flagged as spam.','user',''),(849,817,'Akismet Spam Filter',0,'2023-08-05 21:11:54','This entry has been flagged as spam.','user',''),(850,818,'Akismet Spam Filter',0,'2023-08-06 18:43:55','This entry has been flagged as spam.','user',''),(851,819,'Akismet Spam Filter',0,'2023-08-06 19:28:39','This entry has been flagged as spam.','user',''),(852,820,'Akismet Spam Filter',0,'2023-08-06 19:34:53','This entry has been flagged as spam.','user',''),(853,821,'Akismet Spam Filter',0,'2023-08-06 20:24:11','This entry has been flagged as spam.','user',''),(854,822,'Akismet Spam Filter',0,'2023-08-06 23:53:19','This entry has been flagged as spam.','user',''),(855,823,'Akismet Spam Filter',0,'2023-08-07 00:26:19','This entry has been flagged as spam.','user',''),(856,824,'Akismet Spam Filter',0,'2023-08-07 09:15:33','This entry has been flagged as spam.','user',''),(857,825,'Akismet Spam Filter',0,'2023-08-07 09:49:16','This entry has been flagged as spam.','user',''),(858,826,'Akismet Spam Filter',0,'2023-08-07 19:01:54','This entry has been flagged as spam.','user',''),(859,827,'Akismet Spam Filter',0,'2023-08-08 00:54:41','This entry has been flagged as spam.','user',''),(860,828,'Akismet Spam Filter',0,'2023-08-08 15:55:52','This entry has been flagged as spam.','user',''),(861,829,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-08-09 01:47:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(862,829,'Customer Notification (ID: 605853abc2fe2)',0,'2023-08-09 01:47:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(863,830,'Akismet Spam Filter',0,'2023-08-09 04:08:52','This entry has been flagged as spam.','user',''),(864,831,'Akismet Spam Filter',0,'2023-08-09 06:16:06','This entry has been flagged as spam.','user',''),(865,832,'Akismet Spam Filter',0,'2023-08-09 09:39:53','This entry has been flagged as spam.','user',''),(866,833,'Akismet Spam Filter',0,'2023-08-09 12:52:54','This entry has been flagged as spam.','user',''),(867,834,'Akismet Spam Filter',0,'2023-08-09 23:30:13','This entry has been flagged as spam.','user',''),(868,835,'Akismet Spam Filter',0,'2023-08-09 23:31:23','This entry has been flagged as spam.','user',''),(869,836,'Akismet Spam Filter',0,'2023-08-10 04:29:33','This entry has been flagged as spam.','user',''),(870,837,'Akismet Spam Filter',0,'2023-08-10 05:55:15','This entry has been flagged as spam.','user',''),(871,838,'Akismet Spam Filter',0,'2023-08-10 19:31:29','This entry has been flagged as spam.','user',''),(872,839,'Akismet Spam Filter',0,'2023-08-11 00:09:18','This entry has been flagged as spam.','user',''),(873,840,'Akismet Spam Filter',0,'2023-08-11 14:59:27','This entry has been flagged as spam.','user',''),(874,841,'Akismet Spam Filter',0,'2023-08-11 20:21:06','This entry has been flagged as spam.','user',''),(875,842,'Akismet Spam Filter',0,'2023-08-12 21:31:49','This entry has been flagged as spam.','user',''),(876,843,'Gravity Forms',0,'2023-08-13 16:25:51','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(877,844,'Akismet Spam Filter',0,'2023-08-13 18:20:37','This entry has been flagged as spam.','user',''),(878,845,'Akismet Spam Filter',0,'2023-08-13 20:58:11','This entry has been flagged as spam.','user',''),(879,846,'Akismet Spam Filter',0,'2023-08-13 22:46:22','This entry has been flagged as spam.','user',''),(880,847,'Akismet Spam Filter',0,'2023-08-14 16:18:12','This entry has been flagged as spam.','user',''),(881,848,'Akismet Spam Filter',0,'2023-08-14 21:47:37','This entry has been flagged as spam.','user',''),(882,849,'Akismet Spam Filter',0,'2023-08-15 04:27:12','This entry has been flagged as spam.','user',''),(883,850,'Akismet Spam Filter',0,'2023-08-15 19:07:42','This entry has been flagged as spam.','user',''),(884,851,'Akismet Spam Filter',0,'2023-08-15 20:25:30','This entry has been flagged as spam.','user',''),(885,852,'Akismet Spam Filter',0,'2023-08-16 02:42:39','This entry has been flagged as spam.','user',''),(886,853,'Akismet Spam Filter',0,'2023-08-16 05:45:23','This entry has been flagged as spam.','user',''),(887,854,'Akismet Spam Filter',0,'2023-08-16 11:44:53','This entry has been flagged as spam.','user',''),(888,855,'Akismet Spam Filter',0,'2023-08-16 12:35:23','This entry has been flagged as spam.','user',''),(889,856,'Akismet Spam Filter',0,'2023-08-16 12:47:52','This entry has been flagged as spam.','user',''),(890,857,'Akismet Spam Filter',0,'2023-08-16 18:59:43','This entry has been flagged as spam.','user',''),(891,858,'Gravity Forms',0,'2023-08-16 23:29:25','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(892,859,'Akismet Spam Filter',0,'2023-08-17 05:54:20','This entry has been flagged as spam.','user',''),(893,860,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-08-17 08:40:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(894,860,'Customer Notification (ID: 605853abc2fe2)',0,'2023-08-17 08:40:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(895,861,'Akismet Spam Filter',0,'2023-08-17 11:49:59','This entry has been flagged as spam.','user',''),(896,862,'Akismet Spam Filter',0,'2023-08-17 14:16:44','This entry has been flagged as spam.','user',''),(897,863,'Akismet Spam Filter',0,'2023-08-17 15:24:14','This entry has been flagged as spam.','user',''),(898,864,'Akismet Spam Filter',0,'2023-08-17 15:47:14','This entry has been flagged as spam.','user',''),(899,865,'Akismet Spam Filter',0,'2023-08-18 08:52:45','This entry has been flagged as spam.','user',''),(900,866,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-08-18 10:50:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(901,866,'Customer Notification (ID: 605853abc2fe2)',0,'2023-08-18 10:50:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(902,867,'Akismet Spam Filter',0,'2023-08-18 14:07:01','This entry has been flagged as spam.','user',''),(903,868,'Akismet Spam Filter',0,'2023-08-19 00:18:34','This entry has been flagged as spam.','user',''),(904,869,'Akismet Spam Filter',0,'2023-08-19 06:12:17','This entry has been flagged as spam.','user',''),(905,870,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-08-19 09:59:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(906,870,'Customer Notification (ID: 605853abc2fe2)',0,'2023-08-19 09:59:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(907,871,'Akismet Spam Filter',0,'2023-08-19 14:49:57','This entry has been flagged as spam.','user',''),(908,872,'Akismet Spam Filter',0,'2023-08-19 19:25:31','This entry has been flagged as spam.','user',''),(909,873,'Akismet Spam Filter',0,'2023-08-20 06:59:18','This entry has been flagged as spam.','user',''),(910,874,'Gravity Forms',0,'2023-08-20 07:40:49','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(911,875,'Akismet Spam Filter',0,'2023-08-20 23:33:26','This entry has been flagged as spam.','user',''),(912,876,'Akismet Spam Filter',0,'2023-08-21 08:03:04','This entry has been flagged as spam.','user',''),(913,877,'Akismet Spam Filter',0,'2023-08-21 18:44:23','This entry has been flagged as spam.','user',''),(914,878,'Akismet Spam Filter',0,'2023-08-21 22:00:53','This entry has been flagged as spam.','user',''),(915,879,'Akismet Spam Filter',0,'2023-08-22 07:11:51','This entry has been flagged as spam.','user',''),(916,880,'Akismet Spam Filter',0,'2023-08-22 08:52:53','This entry has been flagged as spam.','user',''),(917,881,'Akismet Spam Filter',0,'2023-08-22 13:06:21','This entry has been flagged as spam.','user',''),(918,882,'Akismet Spam Filter',0,'2023-08-22 21:11:00','This entry has been flagged as spam.','user',''),(919,883,'Akismet Spam Filter',0,'2023-08-23 04:24:17','This entry has been flagged as spam.','user',''),(920,884,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-08-23 06:02:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(921,884,'Customer Notification (ID: 605853abc2fe2)',0,'2023-08-23 06:02:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(922,885,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-08-23 10:04:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(923,885,'Customer Notification (ID: 605853abc2fe2)',0,'2023-08-23 10:04:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(924,886,'Akismet Spam Filter',0,'2023-08-23 22:24:34','This entry has been flagged as spam.','user',''),(925,887,'Akismet Spam Filter',0,'2023-08-24 00:27:14','This entry has been flagged as spam.','user',''),(926,888,'Akismet Spam Filter',0,'2023-08-24 04:48:09','This entry has been flagged as spam.','user',''),(927,889,'Akismet Spam Filter',0,'2023-08-24 22:40:58','This entry has been flagged as spam.','user',''),(928,890,'Akismet Spam Filter',0,'2023-08-25 00:11:06','This entry has been flagged as spam.','user',''),(929,891,'Akismet Spam Filter',0,'2023-08-25 22:29:05','This entry has been flagged as spam.','user',''),(930,892,'Akismet Spam Filter',0,'2023-08-25 23:06:02','This entry has been flagged as spam.','user',''),(931,893,'Akismet Spam Filter',0,'2023-08-26 09:22:39','This entry has been flagged as spam.','user',''),(932,894,'Gravity Forms',0,'2023-08-26 15:18:28','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(933,895,'Gravity Forms',0,'2023-08-26 19:02:30','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(934,896,'Akismet Spam Filter',0,'2023-08-27 10:28:18','This entry has been flagged as spam.','user',''),(935,897,'Akismet Spam Filter',0,'2023-08-27 11:58:19','This entry has been flagged as spam.','user',''),(936,898,'Akismet Spam Filter',0,'2023-08-27 12:21:03','This entry has been flagged as spam.','user',''),(937,899,'Akismet Spam Filter',0,'2023-08-28 19:15:54','This entry has been flagged as spam.','user',''),(938,900,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-08-28 19:46:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(939,900,'Customer Notification (ID: 605853abc2fe2)',0,'2023-08-28 19:46:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(940,901,'Akismet Spam Filter',0,'2023-08-29 06:56:10','This entry has been flagged as spam.','user',''),(941,902,'Akismet Spam Filter',0,'2023-08-29 07:04:22','This entry has been flagged as spam.','user',''),(942,903,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-08-29 21:21:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(943,903,'Customer Notification (ID: 605853abc2fe2)',0,'2023-08-29 21:21:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(944,904,'Akismet Spam Filter',0,'2023-08-29 22:59:35','This entry has been flagged as spam.','user',''),(945,905,'Akismet Spam Filter',0,'2023-08-30 11:40:16','This entry has been flagged as spam.','user',''),(946,906,'Akismet Spam Filter',0,'2023-08-30 17:43:33','This entry has been flagged as spam.','user',''),(947,907,'Akismet Spam Filter',0,'2023-08-30 21:08:51','This entry has been flagged as spam.','user',''),(948,908,'Akismet Spam Filter',0,'2023-08-31 02:57:35','This entry has been flagged as spam.','user',''),(949,909,'Akismet Spam Filter',0,'2023-08-31 17:54:26','This entry has been flagged as spam.','user',''),(950,910,'Akismet Spam Filter',0,'2023-08-31 23:23:46','This entry has been flagged as spam.','user',''),(951,911,'Akismet Spam Filter',0,'2023-09-01 01:16:33','This entry has been flagged as spam.','user',''),(952,912,'Akismet Spam Filter',0,'2023-09-01 16:21:47','This entry has been flagged as spam.','user',''),(953,913,'Akismet Spam Filter',0,'2023-09-01 16:26:00','This entry has been flagged as spam.','user',''),(954,914,'Akismet Spam Filter',0,'2023-09-01 17:33:37','This entry has been flagged as spam.','user',''),(955,915,'Akismet Spam Filter',0,'2023-09-01 18:59:11','This entry has been flagged as spam.','user',''),(956,916,'Akismet Spam Filter',0,'2023-09-02 22:06:13','This entry has been flagged as spam.','user',''),(957,917,'Akismet Spam Filter',0,'2023-09-03 14:20:44','This entry has been flagged as spam.','user',''),(958,918,'Akismet Spam Filter',0,'2023-09-03 16:53:42','This entry has been flagged as spam.','user',''),(959,919,'Akismet Spam Filter',0,'2023-09-03 19:47:20','This entry has been flagged as spam.','user',''),(960,920,'Akismet Spam Filter',0,'2023-09-03 20:44:06','This entry has been flagged as spam.','user',''),(961,921,'Akismet Spam Filter',0,'2023-09-03 21:02:08','This entry has been flagged as spam.','user',''),(962,922,'Akismet Spam Filter',0,'2023-09-04 02:16:10','This entry has been flagged as spam.','user',''),(963,923,'Akismet Spam Filter',0,'2023-09-04 12:28:37','This entry has been flagged as spam.','user',''),(964,924,'Akismet Spam Filter',0,'2023-09-04 15:13:50','This entry has been flagged as spam.','user',''),(965,925,'Akismet Spam Filter',0,'2023-09-04 15:16:16','This entry has been flagged as spam.','user',''),(966,926,'Akismet Spam Filter',0,'2023-09-04 19:13:13','This entry has been flagged as spam.','user',''),(967,927,'Akismet Spam Filter',0,'2023-09-05 00:17:05','This entry has been flagged as spam.','user',''),(968,928,'Akismet Spam Filter',0,'2023-09-05 09:13:09','This entry has been flagged as spam.','user',''),(969,929,'Akismet Spam Filter',0,'2023-09-05 10:10:41','This entry has been flagged as spam.','user',''),(970,930,'Akismet Spam Filter',0,'2023-09-05 17:27:59','This entry has been flagged as spam.','user',''),(971,931,'Akismet Spam Filter',0,'2023-09-05 18:10:26','This entry has been flagged as spam.','user',''),(972,932,'Akismet Spam Filter',0,'2023-09-06 03:50:00','This entry has been flagged as spam.','user',''),(973,933,'Akismet Spam Filter',0,'2023-09-06 06:27:48','This entry has been flagged as spam.','user',''),(974,934,'Akismet Spam Filter',0,'2023-09-06 10:23:22','This entry has been flagged as spam.','user',''),(975,935,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-09-07 06:17:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(976,935,'Customer Notification (ID: 605853abc2fe2)',0,'2023-09-07 06:17:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(977,936,'Akismet Spam Filter',0,'2023-09-07 12:20:07','This entry has been flagged as spam.','user',''),(978,937,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-09-07 23:56:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(979,937,'Customer Notification (ID: 605853abc2fe2)',0,'2023-09-07 23:56:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(980,938,'Akismet Spam Filter',0,'2023-09-08 15:23:50','This entry has been flagged as spam.','user',''),(981,939,'Akismet Spam Filter',0,'2023-09-08 16:22:21','This entry has been flagged as spam.','user',''),(982,940,'Akismet Spam Filter',0,'2023-09-08 21:18:54','This entry has been flagged as spam.','user',''),(983,941,'Akismet Spam Filter',0,'2023-09-09 20:55:30','This entry has been flagged as spam.','user',''),(984,942,'Akismet Spam Filter',0,'2023-09-09 22:04:26','This entry has been flagged as spam.','user',''),(985,943,'Akismet Spam Filter',0,'2023-09-10 00:46:37','This entry has been flagged as spam.','user',''),(986,944,'Akismet Spam Filter',0,'2023-09-10 07:10:10','This entry has been flagged as spam.','user',''),(987,945,'Akismet Spam Filter',0,'2023-09-10 19:01:08','This entry has been flagged as spam.','user',''),(988,946,'Akismet Spam Filter',0,'2023-09-10 20:29:54','This entry has been flagged as spam.','user',''),(989,947,'Akismet Spam Filter',0,'2023-09-10 22:38:07','This entry has been flagged as spam.','user',''),(990,948,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-09-11 00:18:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(991,948,'Customer Notification (ID: 605853abc2fe2)',0,'2023-09-11 00:18:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(992,949,'Akismet Spam Filter',0,'2023-09-11 09:47:18','This entry has been flagged as spam.','user',''),(993,950,'Akismet Spam Filter',0,'2023-09-11 09:54:39','This entry has been flagged as spam.','user',''),(994,951,'Akismet Spam Filter',0,'2023-09-11 11:07:39','This entry has been flagged as spam.','user',''),(995,952,'Akismet Spam Filter',0,'2023-09-11 14:50:21','This entry has been flagged as spam.','user',''),(996,953,'Akismet Spam Filter',0,'2023-09-11 15:55:36','This entry has been flagged as spam.','user',''),(997,954,'Akismet Spam Filter',0,'2023-09-11 22:20:54','This entry has been flagged as spam.','user',''),(998,955,'Akismet Spam Filter',0,'2023-09-12 00:37:26','This entry has been flagged as spam.','user',''),(999,956,'Akismet Spam Filter',0,'2023-09-12 07:03:42','This entry has been flagged as spam.','user',''),(1000,957,'Akismet Spam Filter',0,'2023-09-12 15:41:20','This entry has been flagged as spam.','user',''),(1001,958,'Akismet Spam Filter',0,'2023-09-12 21:39:10','This entry has been flagged as spam.','user',''),(1002,959,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-09-12 21:46:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(1003,959,'Customer Notification (ID: 605853abc2fe2)',0,'2023-09-12 21:46:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(1004,960,'Akismet Spam Filter',0,'2023-09-12 21:48:41','This entry has been flagged as spam.','user',''),(1005,961,'Akismet Spam Filter',0,'2023-09-13 06:58:26','This entry has been flagged as spam.','user',''),(1006,962,'Akismet Spam Filter',0,'2023-09-13 07:22:27','This entry has been flagged as spam.','user',''),(1007,963,'Akismet Spam Filter',0,'2023-09-14 00:21:41','This entry has been flagged as spam.','user',''),(1008,964,'Akismet Spam Filter',0,'2023-09-14 01:18:25','This entry has been flagged as spam.','user',''),(1009,965,'Akismet Spam Filter',0,'2023-09-14 01:26:14','This entry has been flagged as spam.','user',''),(1010,966,'Akismet Spam Filter',0,'2023-09-14 10:33:40','This entry has been flagged as spam.','user',''),(1011,967,'Akismet Spam Filter',0,'2023-09-14 14:58:17','This entry has been flagged as spam.','user',''),(1012,968,'Akismet Spam Filter',0,'2023-09-14 19:23:53','This entry has been flagged as spam.','user',''),(1013,969,'Akismet Spam Filter',0,'2023-09-14 23:39:39','This entry has been flagged as spam.','user',''),(1014,970,'Akismet Spam Filter',0,'2023-09-15 01:25:29','This entry has been flagged as spam.','user',''),(1015,971,'Akismet Spam Filter',0,'2023-09-16 07:14:29','This entry has been flagged as spam.','user',''),(1016,972,'Akismet Spam Filter',0,'2023-09-16 21:28:43','This entry has been flagged as spam.','user',''),(1017,973,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-09-17 13:17:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1018,973,'Customer Notification (ID: 605853abc2fe2)',0,'2023-09-17 13:17:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1019,974,'Akismet Spam Filter',0,'2023-09-17 15:27:49','This entry has been flagged as spam.','user',''),(1020,975,'Akismet Spam Filter',0,'2023-09-17 22:08:23','This entry has been flagged as spam.','user',''),(1021,976,'Akismet Spam Filter',0,'2023-09-18 00:51:16','This entry has been flagged as spam.','user',''),(1022,977,'Akismet Spam Filter',0,'2023-09-18 08:16:22','This entry has been flagged as spam.','user',''),(1023,978,'Akismet Spam Filter',0,'2023-09-18 18:05:10','This entry has been flagged as spam.','user',''),(1024,979,'Akismet Spam Filter',0,'2023-09-18 18:43:53','This entry has been flagged as spam.','user',''),(1025,980,'Akismet Spam Filter',0,'2023-09-18 20:06:10','This entry has been flagged as spam.','user',''),(1026,981,'Akismet Spam Filter',0,'2023-09-19 00:24:55','This entry has been flagged as spam.','user',''),(1027,982,'Akismet Spam Filter',0,'2023-09-19 20:27:22','This entry has been flagged as spam.','user',''),(1028,983,'Gravity Forms',0,'2023-09-19 20:36:32','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(1029,984,'Akismet Spam Filter',0,'2023-09-19 22:14:01','This entry has been flagged as spam.','user',''),(1030,985,'Akismet Spam Filter',0,'2023-09-19 23:18:27','This entry has been flagged as spam.','user',''),(1031,986,'Akismet Spam Filter',0,'2023-09-20 00:56:18','This entry has been flagged as spam.','user',''),(1032,987,'Akismet Spam Filter',0,'2023-09-20 17:18:15','This entry has been flagged as spam.','user',''),(1033,988,'Akismet Spam Filter',0,'2023-09-20 17:54:36','This entry has been flagged as spam.','user',''),(1034,989,'Akismet Spam Filter',0,'2023-09-21 00:00:11','This entry has been flagged as spam.','user',''),(1035,990,'Akismet Spam Filter',0,'2023-09-21 15:08:01','This entry has been flagged as spam.','user',''),(1036,991,'Akismet Spam Filter',0,'2023-09-21 19:15:35','This entry has been flagged as spam.','user',''),(1037,992,'Akismet Spam Filter',0,'2023-09-21 21:21:23','This entry has been flagged as spam.','user',''),(1038,993,'Akismet Spam Filter',0,'2023-09-21 21:56:11','This entry has been flagged as spam.','user',''),(1039,994,'Akismet Spam Filter',0,'2023-09-22 07:40:41','This entry has been flagged as spam.','user',''),(1040,995,'Akismet Spam Filter',0,'2023-09-22 12:21:25','This entry has been flagged as spam.','user',''),(1041,996,'Akismet Spam Filter',0,'2023-09-22 14:02:26','This entry has been flagged as spam.','user',''),(1042,997,'Akismet Spam Filter',0,'2023-09-22 19:35:25','This entry has been flagged as spam.','user',''),(1043,998,'Akismet Spam Filter',0,'2023-09-22 23:00:13','This entry has been flagged as spam.','user',''),(1044,999,'Akismet Spam Filter',0,'2023-09-23 01:00:20','This entry has been flagged as spam.','user',''),(1045,1000,'Akismet Spam Filter',0,'2023-09-23 04:37:46','This entry has been flagged as spam.','user',''),(1046,1001,'Akismet Spam Filter',0,'2023-09-23 09:48:31','This entry has been flagged as spam.','user',''),(1047,1002,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-09-23 11:22:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1048,1002,'Customer Notification (ID: 605853abc2fe2)',0,'2023-09-23 11:22:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1049,1003,'Akismet Spam Filter',0,'2023-09-23 18:35:34','This entry has been flagged as spam.','user',''),(1050,1004,'Akismet Spam Filter',0,'2023-09-24 06:54:46','This entry has been flagged as spam.','user',''),(1051,1005,'Akismet Spam Filter',0,'2023-09-24 11:39:41','This entry has been flagged as spam.','user',''),(1052,1006,'Akismet Spam Filter',0,'2023-09-24 14:42:20','This entry has been flagged as spam.','user',''),(1053,1007,'Akismet Spam Filter',0,'2023-09-24 19:18:30','This entry has been flagged as spam.','user',''),(1054,1008,'Akismet Spam Filter',0,'2023-09-24 22:00:52','This entry has been flagged as spam.','user',''),(1055,1009,'Akismet Spam Filter',0,'2023-09-25 00:21:19','This entry has been flagged as spam.','user',''),(1056,1010,'Akismet Spam Filter',0,'2023-09-25 08:48:31','This entry has been flagged as spam.','user',''),(1057,1011,'Akismet Spam Filter',0,'2023-09-25 11:18:29','This entry has been flagged as spam.','user',''),(1058,1012,'Akismet Spam Filter',0,'2023-09-25 18:41:17','This entry has been flagged as spam.','user',''),(1059,1013,'Akismet Spam Filter',0,'2023-09-25 22:20:09','This entry has been flagged as spam.','user',''),(1060,1014,'Akismet Spam Filter',0,'2023-09-26 01:23:31','This entry has been flagged as spam.','user',''),(1061,1015,'Akismet Spam Filter',0,'2023-09-26 23:50:26','This entry has been flagged as spam.','user',''),(1062,1016,'Akismet Spam Filter',0,'2023-09-27 02:52:47','This entry has been flagged as spam.','user',''),(1063,1017,'Akismet Spam Filter',0,'2023-09-27 03:11:24','This entry has been flagged as spam.','user',''),(1064,1018,'Akismet Spam Filter',0,'2023-09-27 13:02:37','This entry has been flagged as spam.','user',''),(1065,1019,'Akismet Spam Filter',0,'2023-09-28 05:09:14','This entry has been flagged as spam.','user',''),(1066,1020,'Akismet Spam Filter',0,'2023-09-28 17:05:32','This entry has been flagged as spam.','user',''),(1067,1021,'Akismet Spam Filter',0,'2023-09-28 18:14:15','This entry has been flagged as spam.','user',''),(1068,1022,'Akismet Spam Filter',0,'2023-09-28 19:42:41','This entry has been flagged as spam.','user',''),(1069,1023,'Akismet Spam Filter',0,'2023-09-28 20:59:49','This entry has been flagged as spam.','user',''),(1070,1024,'Akismet Spam Filter',0,'2023-09-29 01:01:47','This entry has been flagged as spam.','user',''),(1071,1025,'Akismet Spam Filter',0,'2023-09-29 03:04:54','This entry has been flagged as spam.','user',''),(1072,1026,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-09-29 03:16:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1073,1026,'Customer Notification (ID: 605853abc2fe2)',0,'2023-09-29 03:17:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(1074,1027,'Akismet Spam Filter',0,'2023-09-29 03:41:00','This entry has been flagged as spam.','user',''),(1075,1028,'Akismet Spam Filter',0,'2023-09-29 05:48:51','This entry has been flagged as spam.','user',''),(1076,1029,'Akismet Spam Filter',0,'2023-09-29 05:52:19','This entry has been flagged as spam.','user',''),(1077,1030,'Akismet Spam Filter',0,'2023-09-29 14:23:03','This entry has been flagged as spam.','user',''),(1078,1031,'Akismet Spam Filter',0,'2023-09-30 00:57:32','This entry has been flagged as spam.','user',''),(1079,1032,'Akismet Spam Filter',0,'2023-09-30 03:45:27','This entry has been flagged as spam.','user',''),(1080,1033,'Akismet Spam Filter',0,'2023-09-30 04:30:57','This entry has been flagged as spam.','user',''),(1081,1034,'Akismet Spam Filter',0,'2023-10-01 00:17:27','This entry has been flagged as spam.','user',''),(1082,1035,'Akismet Spam Filter',0,'2023-10-01 11:17:28','This entry has been flagged as spam.','user',''),(1083,1036,'Akismet Spam Filter',0,'2023-10-01 11:20:52','This entry has been flagged as spam.','user',''),(1084,1037,'Akismet Spam Filter',0,'2023-10-01 14:25:06','This entry has been flagged as spam.','user',''),(1085,1038,'Akismet Spam Filter',0,'2023-10-01 19:35:38','This entry has been flagged as spam.','user',''),(1086,1039,'Akismet Spam Filter',0,'2023-10-01 20:44:48','This entry has been flagged as spam.','user',''),(1087,1040,'Akismet Spam Filter',0,'2023-10-01 22:31:41','This entry has been flagged as spam.','user',''),(1088,1041,'Akismet Spam Filter',0,'2023-10-02 01:50:25','This entry has been flagged as spam.','user',''),(1089,1042,'Akismet Spam Filter',0,'2023-10-02 07:16:36','This entry has been flagged as spam.','user',''),(1090,1043,'Akismet Spam Filter',0,'2023-10-02 08:47:08','This entry has been flagged as spam.','user',''),(1091,1044,'Akismet Spam Filter',0,'2023-10-02 12:47:27','This entry has been flagged as spam.','user',''),(1092,1045,'Akismet Spam Filter',0,'2023-10-02 16:52:40','This entry has been flagged as spam.','user',''),(1093,1046,'Akismet Spam Filter',0,'2023-10-03 00:05:01','This entry has been flagged as spam.','user',''),(1094,1047,'Akismet Spam Filter',0,'2023-10-03 02:22:21','This entry has been flagged as spam.','user',''),(1095,1048,'Akismet Spam Filter',0,'2023-10-03 11:16:04','This entry has been flagged as spam.','user',''),(1096,1049,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-10-03 19:20:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(1097,1049,'Customer Notification (ID: 605853abc2fe2)',0,'2023-10-03 19:20:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(1098,1050,'Akismet Spam Filter',0,'2023-10-03 19:55:32','This entry has been flagged as spam.','user',''),(1099,1051,'Akismet Spam Filter',0,'2023-10-04 02:24:06','This entry has been flagged as spam.','user',''),(1100,1052,'Akismet Spam Filter',0,'2023-10-04 04:05:59','This entry has been flagged as spam.','user',''),(1101,1053,'Akismet Spam Filter',0,'2023-10-04 05:31:55','This entry has been flagged as spam.','user',''),(1102,1054,'Akismet Spam Filter',0,'2023-10-04 09:30:34','This entry has been flagged as spam.','user',''),(1103,1055,'Akismet Spam Filter',0,'2023-10-04 14:19:55','This entry has been flagged as spam.','user',''),(1104,1056,'Akismet Spam Filter',0,'2023-10-04 17:09:05','This entry has been flagged as spam.','user',''),(1105,1057,'Akismet Spam Filter',0,'2023-10-04 17:27:18','This entry has been flagged as spam.','user',''),(1106,1058,'Akismet Spam Filter',0,'2023-10-04 21:31:49','This entry has been flagged as spam.','user',''),(1107,1059,'Akismet Spam Filter',0,'2023-10-05 01:13:22','This entry has been flagged as spam.','user',''),(1108,1060,'Akismet Spam Filter',0,'2023-10-05 05:34:52','This entry has been flagged as spam.','user',''),(1109,1061,'Akismet Spam Filter',0,'2023-10-05 10:38:53','This entry has been flagged as spam.','user',''),(1110,1062,'Akismet Spam Filter',0,'2023-10-05 18:39:22','This entry has been flagged as spam.','user',''),(1111,1063,'Akismet Spam Filter',0,'2023-10-05 19:45:25','This entry has been flagged as spam.','user',''),(1112,1064,'Akismet Spam Filter',0,'2023-10-05 23:07:31','This entry has been flagged as spam.','user',''),(1113,1065,'Akismet Spam Filter',0,'2023-10-05 23:07:42','This entry has been flagged as spam.','user',''),(1114,1066,'Akismet Spam Filter',0,'2023-10-06 03:27:13','This entry has been flagged as spam.','user',''),(1115,1067,'Akismet Spam Filter',0,'2023-10-06 17:00:45','This entry has been flagged as spam.','user',''),(1116,1068,'Akismet Spam Filter',0,'2023-10-06 18:41:02','This entry has been flagged as spam.','user',''),(1117,1069,'Akismet Spam Filter',0,'2023-10-06 19:52:52','This entry has been flagged as spam.','user',''),(1118,1070,'Akismet Spam Filter',0,'2023-10-07 08:17:20','This entry has been flagged as spam.','user',''),(1119,1071,'Akismet Spam Filter',0,'2023-10-07 12:20:08','This entry has been flagged as spam.','user',''),(1120,1072,'Akismet Spam Filter',0,'2023-10-07 14:51:30','This entry has been flagged as spam.','user',''),(1121,1073,'Akismet Spam Filter',0,'2023-10-08 06:03:57','This entry has been flagged as spam.','user',''),(1122,1074,'Akismet Spam Filter',0,'2023-10-08 12:23:35','This entry has been flagged as spam.','user',''),(1123,1075,'Akismet Spam Filter',0,'2023-10-08 22:48:34','This entry has been flagged as spam.','user',''),(1124,1076,'Akismet Spam Filter',0,'2023-10-09 04:29:25','This entry has been flagged as spam.','user',''),(1125,1077,'Akismet Spam Filter',0,'2023-10-09 06:04:43','This entry has been flagged as spam.','user',''),(1126,1078,'Akismet Spam Filter',0,'2023-10-09 08:47:27','This entry has been flagged as spam.','user',''),(1127,1079,'Akismet Spam Filter',0,'2023-10-09 14:49:55','This entry has been flagged as spam.','user',''),(1128,1080,'Akismet Spam Filter',0,'2023-10-09 16:26:54','This entry has been flagged as spam.','user',''),(1129,1081,'Akismet Spam Filter',0,'2023-10-09 22:41:18','This entry has been flagged as spam.','user',''),(1130,1082,'Akismet Spam Filter',0,'2023-10-09 23:39:07','This entry has been flagged as spam.','user',''),(1131,1083,'Akismet Spam Filter',0,'2023-10-10 09:50:57','This entry has been flagged as spam.','user',''),(1132,1084,'Akismet Spam Filter',0,'2023-10-10 10:00:40','This entry has been flagged as spam.','user',''),(1133,1085,'Akismet Spam Filter',0,'2023-10-11 09:02:15','This entry has been flagged as spam.','user',''),(1134,1086,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-10-12 07:30:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(1135,1086,'Customer Notification (ID: 605853abc2fe2)',0,'2023-10-12 07:30:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(1136,1087,'Akismet Spam Filter',0,'2023-10-12 09:46:27','This entry has been flagged as spam.','user',''),(1137,1088,'Akismet Spam Filter',0,'2023-10-14 05:39:07','This entry has been flagged as spam.','user',''),(1138,1089,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-10-14 09:59:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1139,1089,'Customer Notification (ID: 605853abc2fe2)',0,'2023-10-14 09:59:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1140,1090,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-10-15 00:54:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1141,1090,'Customer Notification (ID: 605853abc2fe2)',0,'2023-10-15 00:54:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1142,1091,'Akismet Spam Filter',0,'2023-10-15 11:12:03','This entry has been flagged as spam.','user',''),(1143,1092,'Akismet Spam Filter',0,'2023-10-15 13:34:12','This entry has been flagged as spam.','user',''),(1144,1093,'Akismet Spam Filter',0,'2023-10-15 21:40:07','This entry has been flagged as spam.','user',''),(1145,1094,'Akismet Spam Filter',0,'2023-10-15 21:46:40','This entry has been flagged as spam.','user',''),(1146,1095,'Akismet Spam Filter',0,'2023-10-16 00:36:26','This entry has been flagged as spam.','user',''),(1147,1096,'Akismet Spam Filter',0,'2023-10-16 04:15:05','This entry has been flagged as spam.','user',''),(1148,1097,'Akismet Spam Filter',0,'2023-10-16 04:59:58','This entry has been flagged as spam.','user',''),(1149,1098,'Akismet Spam Filter',0,'2023-10-16 23:40:48','This entry has been flagged as spam.','user',''),(1150,1099,'Akismet Spam Filter',0,'2023-10-17 01:31:01','This entry has been flagged as spam.','user',''),(1151,1100,'Akismet Spam Filter',0,'2023-10-17 03:20:29','This entry has been flagged as spam.','user',''),(1152,1101,'Akismet Spam Filter',0,'2023-10-17 21:35:41','This entry has been flagged as spam.','user',''),(1153,1102,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-10-18 04:41:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(1154,1102,'Customer Notification (ID: 605853abc2fe2)',0,'2023-10-18 04:41:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(1155,1103,'Akismet Spam Filter',0,'2023-10-18 05:17:15','This entry has been flagged as spam.','user',''),(1156,1104,'Akismet Spam Filter',0,'2023-10-18 07:55:53','This entry has been flagged as spam.','user',''),(1157,1105,'Akismet Spam Filter',0,'2023-10-18 13:49:01','This entry has been flagged as spam.','user',''),(1158,1106,'Akismet Spam Filter',0,'2023-10-19 07:45:38','This entry has been flagged as spam.','user',''),(1159,1107,'Akismet Spam Filter',0,'2023-10-19 18:09:55','This entry has been flagged as spam.','user',''),(1160,1108,'Akismet Spam Filter',0,'2023-10-19 20:02:52','This entry has been flagged as spam.','user',''),(1161,1109,'Akismet Spam Filter',0,'2023-10-20 02:12:53','This entry has been flagged as spam.','user',''),(1162,1110,'Akismet Spam Filter',0,'2023-10-20 04:44:35','This entry has been flagged as spam.','user',''),(1163,1111,'Akismet Spam Filter',0,'2023-10-20 09:53:28','This entry has been flagged as spam.','user',''),(1164,1112,'Akismet Spam Filter',0,'2023-10-20 20:27:07','This entry has been flagged as spam.','user',''),(1165,1113,'Akismet Spam Filter',0,'2023-10-21 00:42:29','This entry has been flagged as spam.','user',''),(1166,1114,'Akismet Spam Filter',0,'2023-10-21 03:43:41','This entry has been flagged as spam.','user',''),(1167,1115,'Akismet Spam Filter',0,'2023-10-21 05:12:06','This entry has been flagged as spam.','user',''),(1168,1116,'Akismet Spam Filter',0,'2023-10-21 11:32:06','This entry has been flagged as spam.','user',''),(1169,1117,'Akismet Spam Filter',0,'2023-10-22 00:04:09','This entry has been flagged as spam.','user',''),(1170,1118,'Akismet Spam Filter',0,'2023-10-22 00:30:45','This entry has been flagged as spam.','user',''),(1171,1119,'Akismet Spam Filter',0,'2023-10-22 02:34:51','This entry has been flagged as spam.','user',''),(1172,1120,'Akismet Spam Filter',0,'2023-10-22 04:43:23','This entry has been flagged as spam.','user',''),(1173,1121,'Akismet Spam Filter',0,'2023-10-22 16:27:21','This entry has been flagged as spam.','user',''),(1174,1122,'Akismet Spam Filter',0,'2023-10-22 20:33:26','This entry has been flagged as spam.','user',''),(1175,1123,'Akismet Spam Filter',0,'2023-10-23 07:28:30','This entry has been flagged as spam.','user',''),(1176,1124,'Akismet Spam Filter',0,'2023-10-23 08:28:44','This entry has been flagged as spam.','user',''),(1177,1125,'Akismet Spam Filter',0,'2023-10-23 21:24:13','This entry has been flagged as spam.','user',''),(1178,1126,'Akismet Spam Filter',0,'2023-10-24 06:47:20','This entry has been flagged as spam.','user',''),(1179,1127,'Akismet Spam Filter',0,'2023-10-24 08:47:28','This entry has been flagged as spam.','user',''),(1180,1128,'Akismet Spam Filter',0,'2023-10-24 16:21:34','This entry has been flagged as spam.','user',''),(1181,1129,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-10-24 22:19:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(1182,1129,'Customer Notification (ID: 605853abc2fe2)',0,'2023-10-24 22:19:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(1183,1130,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-10-25 03:05:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(1184,1130,'Customer Notification (ID: 605853abc2fe2)',0,'2023-10-25 03:05:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(1185,1131,'Akismet Spam Filter',0,'2023-10-25 09:55:12','This entry has been flagged as spam.','user',''),(1186,1132,'Akismet Spam Filter',0,'2023-10-26 01:00:40','This entry has been flagged as spam.','user',''),(1187,1133,'Akismet Spam Filter',0,'2023-10-26 04:58:39','This entry has been flagged as spam.','user',''),(1188,1134,'Akismet Spam Filter',0,'2023-10-26 09:19:26','This entry has been flagged as spam.','user',''),(1189,1135,'Akismet Spam Filter',0,'2023-10-26 10:58:50','This entry has been flagged as spam.','user',''),(1190,1136,'Akismet Spam Filter',0,'2023-10-26 23:26:02','This entry has been flagged as spam.','user',''),(1191,1137,'Akismet Spam Filter',0,'2023-10-27 02:32:44','This entry has been flagged as spam.','user',''),(1192,1138,'Akismet Spam Filter',0,'2023-10-27 07:54:03','This entry has been flagged as spam.','user',''),(1193,1139,'Akismet Spam Filter',0,'2023-10-27 08:37:31','This entry has been flagged as spam.','user',''),(1194,1140,'Akismet Spam Filter',0,'2023-10-28 17:56:27','This entry has been flagged as spam.','user',''),(1195,1141,'Akismet Spam Filter',0,'2023-10-29 03:44:43','This entry has been flagged as spam.','user',''),(1196,1142,'Akismet Spam Filter',0,'2023-10-29 14:39:36','This entry has been flagged as spam.','user',''),(1197,1143,'Akismet Spam Filter',0,'2023-10-29 21:22:49','This entry has been flagged as spam.','user',''),(1198,1144,'Akismet Spam Filter',0,'2023-10-30 02:05:37','This entry has been flagged as spam.','user',''),(1199,1145,'Akismet Spam Filter',0,'2023-10-30 04:31:00','This entry has been flagged as spam.','user',''),(1200,1146,'Akismet Spam Filter',0,'2023-10-30 12:57:40','This entry has been flagged as spam.','user',''),(1201,1147,'Akismet Spam Filter',0,'2023-10-31 02:42:37','This entry has been flagged as spam.','user',''),(1202,1148,'Akismet Spam Filter',0,'2023-10-31 06:34:02','This entry has been flagged as spam.','user',''),(1203,1149,'Akismet Spam Filter',0,'2023-10-31 06:36:17','This entry has been flagged as spam.','user',''),(1204,1150,'Akismet Spam Filter',0,'2023-10-31 17:05:35','This entry has been flagged as spam.','user',''),(1205,1151,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-10-31 21:58:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(1206,1151,'Customer Notification (ID: 605853abc2fe2)',0,'2023-10-31 21:58:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(1207,1152,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-01 00:22:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(1208,1152,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-01 00:22:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(1209,1153,'Akismet Spam Filter',0,'2023-11-01 05:52:01','This entry has been flagged as spam.','user',''),(1210,1154,'Akismet Spam Filter',0,'2023-11-01 08:03:55','This entry has been flagged as spam.','user',''),(1211,1155,'Akismet Spam Filter',0,'2023-11-01 16:17:59','This entry has been flagged as spam.','user',''),(1212,1156,'Akismet Spam Filter',0,'2023-11-01 20:03:55','This entry has been flagged as spam.','user',''),(1213,1157,'Akismet Spam Filter',0,'2023-11-01 21:20:38','This entry has been flagged as spam.','user',''),(1214,1158,'Akismet Spam Filter',0,'2023-11-02 11:38:33','This entry has been flagged as spam.','user',''),(1215,1159,'Akismet Spam Filter',0,'2023-11-03 04:21:49','This entry has been flagged as spam.','user',''),(1216,1160,'Akismet Spam Filter',0,'2023-11-03 08:29:33','This entry has been flagged as spam.','user',''),(1217,1161,'Akismet Spam Filter',0,'2023-11-03 15:29:21','This entry has been flagged as spam.','user',''),(1218,1162,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-03 23:05:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1219,1162,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-03 23:05:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(1220,1163,'Akismet Spam Filter',0,'2023-11-04 00:03:46','This entry has been flagged as spam.','user',''),(1221,1164,'Akismet Spam Filter',0,'2023-11-04 05:10:45','This entry has been flagged as spam.','user',''),(1222,1165,'Akismet Spam Filter',0,'2023-11-04 12:10:14','This entry has been flagged as spam.','user',''),(1223,1166,'Akismet Spam Filter',0,'2023-11-04 13:48:05','This entry has been flagged as spam.','user',''),(1224,1167,'Akismet Spam Filter',0,'2023-11-04 17:02:37','This entry has been flagged as spam.','user',''),(1225,1168,'Akismet Spam Filter',0,'2023-11-04 17:17:32','This entry has been flagged as spam.','user',''),(1226,1169,'Akismet Spam Filter',0,'2023-11-05 09:13:02','This entry has been flagged as spam.','user',''),(1227,1170,'Akismet Spam Filter',0,'2023-11-06 10:12:22','This entry has been flagged as spam.','user',''),(1228,1171,'Akismet Spam Filter',0,'2023-11-06 11:44:57','This entry has been flagged as spam.','user',''),(1229,1172,'Akismet Spam Filter',0,'2023-11-06 13:23:31','This entry has been flagged as spam.','user',''),(1230,1173,'Akismet Spam Filter',0,'2023-11-06 21:43:36','This entry has been flagged as spam.','user',''),(1231,1174,'Akismet Spam Filter',0,'2023-11-07 05:00:21','This entry has been flagged as spam.','user',''),(1232,1175,'Akismet Spam Filter',0,'2023-11-07 12:51:24','This entry has been flagged as spam.','user',''),(1233,1176,'Akismet Spam Filter',0,'2023-11-07 16:24:07','This entry has been flagged as spam.','user',''),(1234,1177,'Akismet Spam Filter',0,'2023-11-07 16:48:46','This entry has been flagged as spam.','user',''),(1235,1178,'Akismet Spam Filter',0,'2023-11-07 19:51:31','This entry has been flagged as spam.','user',''),(1236,1179,'Akismet Spam Filter',0,'2023-11-08 11:33:27','This entry has been flagged as spam.','user',''),(1237,1180,'Akismet Spam Filter',0,'2023-11-08 15:38:34','This entry has been flagged as spam.','user',''),(1238,1181,'Akismet Spam Filter',0,'2023-11-08 16:27:38','This entry has been flagged as spam.','user',''),(1239,1182,'Akismet Spam Filter',0,'2023-11-08 21:54:13','This entry has been flagged as spam.','user',''),(1240,1183,'Akismet Spam Filter',0,'2023-11-08 23:48:43','This entry has been flagged as spam.','user',''),(1241,1184,'Akismet Spam Filter',0,'2023-11-09 02:07:32','This entry has been flagged as spam.','user',''),(1242,1185,'Akismet Spam Filter',0,'2023-11-09 06:14:17','This entry has been flagged as spam.','user',''),(1243,1186,'Akismet Spam Filter',0,'2023-11-10 07:34:40','This entry has been flagged as spam.','user',''),(1244,1187,'Akismet Spam Filter',0,'2023-11-10 12:07:23','This entry has been flagged as spam.','user',''),(1245,1188,'Akismet Spam Filter',0,'2023-11-11 10:29:54','This entry has been flagged as spam.','user',''),(1246,1189,'Akismet Spam Filter',0,'2023-11-11 11:39:10','This entry has been flagged as spam.','user',''),(1247,1190,'Akismet Spam Filter',0,'2023-11-11 17:43:56','This entry has been flagged as spam.','user',''),(1248,1191,'Akismet Spam Filter',0,'2023-11-12 03:32:17','This entry has been flagged as spam.','user',''),(1249,1192,'Akismet Spam Filter',0,'2023-11-12 07:15:54','This entry has been flagged as spam.','user',''),(1250,1193,'Akismet Spam Filter',0,'2023-11-12 13:12:07','This entry has been flagged as spam.','user',''),(1251,1194,'Akismet Spam Filter',0,'2023-11-12 14:41:02','This entry has been flagged as spam.','user',''),(1252,1195,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-13 03:28:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(1253,1195,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-13 03:28:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(1254,1196,'Akismet Spam Filter',0,'2023-11-13 09:51:17','This entry has been flagged as spam.','user',''),(1255,1197,'Akismet Spam Filter',0,'2023-11-13 22:30:22','This entry has been flagged as spam.','user',''),(1256,1198,'Akismet Spam Filter',0,'2023-11-14 16:46:30','This entry has been flagged as spam.','user',''),(1257,1199,'Akismet Spam Filter',0,'2023-11-14 17:22:06','This entry has been flagged as spam.','user',''),(1258,1200,'Akismet Spam Filter',0,'2023-11-15 14:47:28','This entry has been flagged as spam.','user',''),(1259,1201,'Akismet Spam Filter',0,'2023-11-15 16:37:26','This entry has been flagged as spam.','user',''),(1260,1202,'Akismet Spam Filter',0,'2023-11-15 17:01:58','This entry has been flagged as spam.','user',''),(1261,1203,'Akismet Spam Filter',0,'2023-11-16 16:11:52','This entry has been flagged as spam.','user',''),(1262,1204,'Akismet Spam Filter',0,'2023-11-16 16:51:13','This entry has been flagged as spam.','user',''),(1263,1205,'Akismet Spam Filter',0,'2023-11-16 17:20:43','This entry has been flagged as spam.','user',''),(1264,1206,'Akismet Spam Filter',0,'2023-11-16 21:40:39','This entry has been flagged as spam.','user',''),(1265,1207,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-17 03:53:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(1266,1207,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-17 03:53:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(1267,1208,'Akismet Spam Filter',0,'2023-11-17 07:12:54','This entry has been flagged as spam.','user',''),(1268,1209,'Akismet Spam Filter',0,'2023-11-17 08:13:29','This entry has been flagged as spam.','user',''),(1269,1210,'Akismet Spam Filter',0,'2023-11-17 14:08:04','This entry has been flagged as spam.','user',''),(1270,1211,'Akismet Spam Filter',0,'2023-11-17 14:15:57','This entry has been flagged as spam.','user',''),(1271,1212,'Akismet Spam Filter',0,'2023-11-17 17:02:12','This entry has been flagged as spam.','user',''),(1272,1213,'Akismet Spam Filter',0,'2023-11-18 06:23:12','This entry has been flagged as spam.','user',''),(1273,1214,'Akismet Spam Filter',0,'2023-11-18 10:48:23','This entry has been flagged as spam.','user',''),(1274,1215,'Akismet Spam Filter',0,'2023-11-19 02:14:44','This entry has been flagged as spam.','user',''),(1275,1216,'Akismet Spam Filter',0,'2023-11-19 09:42:58','This entry has been flagged as spam.','user',''),(1276,1217,'Akismet Spam Filter',0,'2023-11-19 10:47:33','This entry has been flagged as spam.','user',''),(1277,1218,'Akismet Spam Filter',0,'2023-11-19 21:19:55','This entry has been flagged as spam.','user',''),(1278,1219,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-19 21:30:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(1279,1219,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-19 21:30:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(1280,1220,'Akismet Spam Filter',0,'2023-11-19 22:01:26','This entry has been flagged as spam.','user',''),(1281,1221,'Akismet Spam Filter',0,'2023-11-20 03:23:46','This entry has been flagged as spam.','user',''),(1282,1222,'Akismet Spam Filter',0,'2023-11-20 11:13:21','This entry has been flagged as spam.','user',''),(1283,1223,'Akismet Spam Filter',0,'2023-11-20 13:01:48','This entry has been flagged as spam.','user',''),(1284,1224,'Akismet Spam Filter',0,'2023-11-20 19:12:09','This entry has been flagged as spam.','user',''),(1285,1225,'Akismet Spam Filter',0,'2023-11-21 01:05:25','This entry has been flagged as spam.','user',''),(1286,1226,'Akismet Spam Filter',0,'2023-11-21 08:28:57','This entry has been flagged as spam.','user',''),(1287,1227,'Akismet Spam Filter',0,'2023-11-21 13:22:13','This entry has been flagged as spam.','user',''),(1288,1228,'Akismet Spam Filter',0,'2023-11-21 16:20:25','This entry has been flagged as spam.','user',''),(1289,1229,'Akismet Spam Filter',0,'2023-11-22 13:24:43','This entry has been flagged as spam.','user',''),(1290,1230,'Akismet Spam Filter',0,'2023-11-22 19:52:02','This entry has been flagged as spam.','user',''),(1291,1231,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-22 21:23:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1292,1231,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-22 21:24:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(1293,1232,'Akismet Spam Filter',0,'2023-11-23 17:57:23','This entry has been flagged as spam.','user',''),(1294,1233,'Akismet Spam Filter',0,'2023-11-24 08:26:17','This entry has been flagged as spam.','user',''),(1295,1234,'Akismet Spam Filter',0,'2023-11-24 10:40:14','This entry has been flagged as spam.','user',''),(1296,1235,'Akismet Spam Filter',0,'2023-11-24 11:57:12','This entry has been flagged as spam.','user',''),(1297,1236,'Akismet Spam Filter',0,'2023-11-24 14:05:17','This entry has been flagged as spam.','user',''),(1298,1237,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-25 03:12:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(1299,1237,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-25 03:12:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(1300,1238,'Akismet Spam Filter',0,'2023-11-25 03:59:26','This entry has been flagged as spam.','user',''),(1301,1239,'Akismet Spam Filter',0,'2023-11-25 05:14:29','This entry has been flagged as spam.','user',''),(1302,1240,'Akismet Spam Filter',0,'2023-11-25 07:34:46','This entry has been flagged as spam.','user',''),(1303,1241,'Akismet Spam Filter',0,'2023-11-26 03:17:59','This entry has been flagged as spam.','user',''),(1304,1242,'Akismet Spam Filter',0,'2023-11-26 07:51:07','This entry has been flagged as spam.','user',''),(1305,1243,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-26 16:49:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(1306,1243,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-26 16:49:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(1307,1244,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-27 02:24:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(1308,1244,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-27 02:24:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(1309,1245,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-11-27 06:13:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(1310,1245,'Customer Notification (ID: 605853abc2fe2)',0,'2023-11-27 06:13:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(1311,1246,'Akismet Spam Filter',0,'2023-11-27 18:42:45','This entry has been flagged as spam.','user',''),(1312,1247,'Akismet Spam Filter',0,'2023-11-28 02:54:01','This entry has been flagged as spam.','user',''),(1313,1248,'Akismet Spam Filter',0,'2023-11-28 14:25:26','This entry has been flagged as spam.','user',''),(1314,1249,'Akismet Spam Filter',0,'2023-11-29 06:04:42','This entry has been flagged as spam.','user',''),(1315,1250,'Akismet Spam Filter',0,'2023-11-30 01:25:30','This entry has been flagged as spam.','user',''),(1316,1251,'Akismet Spam Filter',0,'2023-11-30 04:45:48','This entry has been flagged as spam.','user',''),(1317,1252,'Akismet Spam Filter',0,'2023-11-30 05:33:17','This entry has been flagged as spam.','user',''),(1318,1253,'Akismet Spam Filter',0,'2023-11-30 08:11:53','This entry has been flagged as spam.','user',''),(1319,1254,'Akismet Spam Filter',0,'2023-11-30 11:23:24','This entry has been flagged as spam.','user',''),(1320,1255,'Akismet Spam Filter',0,'2023-11-30 21:19:24','This entry has been flagged as spam.','user',''),(1321,1256,'Akismet Spam Filter',0,'2023-12-01 13:41:15','This entry has been flagged as spam.','user',''),(1322,1257,'Akismet Spam Filter',0,'2023-12-01 17:31:31','This entry has been flagged as spam.','user',''),(1323,1258,'Akismet Spam Filter',0,'2023-12-01 22:41:44','This entry has been flagged as spam.','user',''),(1324,1259,'Akismet Spam Filter',0,'2023-12-02 00:32:32','This entry has been flagged as spam.','user',''),(1325,1260,'Akismet Spam Filter',0,'2023-12-02 00:56:39','This entry has been flagged as spam.','user',''),(1326,1261,'Akismet Spam Filter',0,'2023-12-02 01:41:35','This entry has been flagged as spam.','user',''),(1327,1262,'Akismet Spam Filter',0,'2023-12-02 04:41:44','This entry has been flagged as spam.','user',''),(1328,1263,'Akismet Spam Filter',0,'2023-12-02 08:47:35','This entry has been flagged as spam.','user',''),(1329,1264,'Akismet Spam Filter',0,'2023-12-02 09:57:29','This entry has been flagged as spam.','user',''),(1330,1265,'Akismet Spam Filter',0,'2023-12-02 11:42:52','This entry has been flagged as spam.','user',''),(1331,1266,'Akismet Spam Filter',0,'2023-12-02 15:04:19','This entry has been flagged as spam.','user',''),(1332,1267,'Akismet Spam Filter',0,'2023-12-02 16:33:42','This entry has been flagged as spam.','user',''),(1333,1268,'Akismet Spam Filter',0,'2023-12-02 16:49:41','This entry has been flagged as spam.','user',''),(1334,1269,'Akismet Spam Filter',0,'2023-12-03 00:24:29','This entry has been flagged as spam.','user',''),(1335,1270,'Akismet Spam Filter',0,'2023-12-03 01:32:16','This entry has been flagged as spam.','user',''),(1336,1271,'Akismet Spam Filter',0,'2023-12-03 10:41:36','This entry has been flagged as spam.','user',''),(1337,1272,'Akismet Spam Filter',0,'2023-12-03 12:17:54','This entry has been flagged as spam.','user',''),(1338,1273,'Akismet Spam Filter',0,'2023-12-03 18:22:52','This entry has been flagged as spam.','user',''),(1339,1274,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-12-03 22:08:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(1340,1274,'Customer Notification (ID: 605853abc2fe2)',0,'2023-12-03 22:08:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(1341,1275,'Akismet Spam Filter',0,'2023-12-03 22:14:18','This entry has been flagged as spam.','user',''),(1342,1276,'Akismet Spam Filter',0,'2023-12-04 02:22:55','This entry has been flagged as spam.','user',''),(1343,1277,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-12-04 02:56:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(1344,1277,'Customer Notification (ID: 605853abc2fe2)',0,'2023-12-04 02:56:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(1345,1278,'Akismet Spam Filter',0,'2023-12-04 03:12:50','This entry has been flagged as spam.','user',''),(1346,1279,'Akismet Spam Filter',0,'2023-12-04 16:46:07','This entry has been flagged as spam.','user',''),(1347,1280,'Akismet Spam Filter',0,'2023-12-04 19:50:48','This entry has been flagged as spam.','user',''),(1348,1281,'Akismet Spam Filter',0,'2023-12-04 21:02:35','This entry has been flagged as spam.','user',''),(1349,1282,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-12-05 01:17:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(1350,1282,'Customer Notification (ID: 605853abc2fe2)',0,'2023-12-05 01:17:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(1351,1283,'Akismet Spam Filter',0,'2023-12-05 05:55:41','This entry has been flagged as spam.','user',''),(1352,1284,'Akismet Spam Filter',0,'2023-12-05 15:48:35','This entry has been flagged as spam.','user',''),(1353,1285,'Akismet Spam Filter',0,'2023-12-06 16:06:49','This entry has been flagged as spam.','user',''),(1354,1286,'Akismet Spam Filter',0,'2023-12-06 18:55:17','This entry has been flagged as spam.','user',''),(1355,1287,'Akismet Spam Filter',0,'2023-12-06 19:01:04','This entry has been flagged as spam.','user',''),(1356,1288,'Akismet Spam Filter',0,'2023-12-07 17:58:06','This entry has been flagged as spam.','user',''),(1357,1289,'Akismet Spam Filter',0,'2023-12-08 16:09:36','This entry has been flagged as spam.','user',''),(1358,1290,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-12-08 23:49:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(1359,1290,'Customer Notification (ID: 605853abc2fe2)',0,'2023-12-08 23:49:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(1360,1291,'Akismet Spam Filter',0,'2023-12-09 02:18:28','This entry has been flagged as spam.','user',''),(1361,1292,'Akismet Spam Filter',0,'2023-12-09 13:48:52','This entry has been flagged as spam.','user',''),(1362,1293,'Akismet Spam Filter',0,'2023-12-10 16:19:49','This entry has been flagged as spam.','user',''),(1363,1294,'Akismet Spam Filter',0,'2023-12-10 17:50:31','This entry has been flagged as spam.','user',''),(1364,1295,'Akismet Spam Filter',0,'2023-12-10 19:40:07','This entry has been flagged as spam.','user',''),(1365,1296,'Akismet Spam Filter',0,'2023-12-10 21:52:57','This entry has been flagged as spam.','user',''),(1366,1297,'Akismet Spam Filter',0,'2023-12-10 22:05:32','This entry has been flagged as spam.','user',''),(1367,1298,'Akismet Spam Filter',0,'2023-12-11 16:56:52','This entry has been flagged as spam.','user',''),(1368,1299,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-12-11 21:25:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(1369,1299,'Customer Notification (ID: 605853abc2fe2)',0,'2023-12-11 21:25:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(1370,1300,'Akismet Spam Filter',0,'2023-12-12 01:21:22','This entry has been flagged as spam.','user',''),(1371,1301,'Akismet Spam Filter',0,'2023-12-12 19:19:01','This entry has been flagged as spam.','user',''),(1372,1302,'Akismet Spam Filter',0,'2023-12-12 22:01:43','This entry has been flagged as spam.','user',''),(1373,1303,'Akismet Spam Filter',0,'2023-12-13 03:05:23','This entry has been flagged as spam.','user',''),(1374,1304,'Akismet Spam Filter',0,'2023-12-13 03:06:27','This entry has been flagged as spam.','user',''),(1375,1305,'Akismet Spam Filter',0,'2023-12-13 06:31:27','This entry has been flagged as spam.','user',''),(1376,1306,'Akismet Spam Filter',0,'2023-12-13 10:42:24','This entry has been flagged as spam.','user',''),(1377,1307,'Akismet Spam Filter',0,'2023-12-13 16:27:29','This entry has been flagged as spam.','user',''),(1378,1308,'Akismet Spam Filter',0,'2023-12-13 18:54:27','This entry has been flagged as spam.','user',''),(1379,1309,'Akismet Spam Filter',0,'2023-12-13 20:16:51','This entry has been flagged as spam.','user',''),(1380,1310,'Akismet Spam Filter',0,'2023-12-13 20:17:21','This entry has been flagged as spam.','user',''),(1381,1311,'Akismet Spam Filter',0,'2023-12-14 03:14:46','This entry has been flagged as spam.','user',''),(1382,1312,'Akismet Spam Filter',0,'2023-12-14 18:41:51','This entry has been flagged as spam.','user',''),(1383,1313,'Akismet Spam Filter',0,'2023-12-14 19:42:38','This entry has been flagged as spam.','user',''),(1384,1314,'Akismet Spam Filter',0,'2023-12-14 20:35:23','This entry has been flagged as spam.','user',''),(1385,1315,'Akismet Spam Filter',0,'2023-12-14 20:49:50','This entry has been flagged as spam.','user',''),(1386,1316,'Akismet Spam Filter',0,'2023-12-15 03:17:23','This entry has been flagged as spam.','user',''),(1387,1317,'Akismet Spam Filter',0,'2023-12-15 16:23:42','This entry has been flagged as spam.','user',''),(1388,1318,'Akismet Spam Filter',0,'2023-12-15 22:03:01','This entry has been flagged as spam.','user',''),(1389,1319,'Akismet Spam Filter',0,'2023-12-16 04:28:02','This entry has been flagged as spam.','user',''),(1390,1320,'Akismet Spam Filter',0,'2023-12-17 00:24:37','This entry has been flagged as spam.','user',''),(1391,1321,'Akismet Spam Filter',0,'2023-12-17 00:57:53','This entry has been flagged as spam.','user',''),(1392,1322,'Akismet Spam Filter',0,'2023-12-17 01:30:55','This entry has been flagged as spam.','user',''),(1393,1323,'Akismet Spam Filter',0,'2023-12-18 00:22:03','This entry has been flagged as spam.','user',''),(1394,1324,'Akismet Spam Filter',0,'2023-12-18 00:54:13','This entry has been flagged as spam.','user',''),(1395,1325,'Akismet Spam Filter',0,'2023-12-18 00:54:16','This entry has been flagged as spam.','user',''),(1396,1326,'Akismet Spam Filter',0,'2023-12-18 00:54:24','This entry has been flagged as spam.','user',''),(1397,1327,'Akismet Spam Filter',0,'2023-12-18 00:54:26','This entry has been flagged as spam.','user',''),(1398,1328,'Akismet Spam Filter',0,'2023-12-18 03:57:30','This entry has been flagged as spam.','user',''),(1399,1329,'Akismet Spam Filter',0,'2023-12-18 10:18:26','This entry has been flagged as spam.','user',''),(1400,1330,'Akismet Spam Filter',0,'2023-12-18 19:31:38','This entry has been flagged as spam.','user',''),(1401,1331,'Akismet Spam Filter',0,'2023-12-18 22:18:14','This entry has been flagged as spam.','user',''),(1402,1332,'Akismet Spam Filter',0,'2023-12-19 02:43:01','This entry has been flagged as spam.','user',''),(1403,1333,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-12-19 09:01:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(1404,1333,'Customer Notification (ID: 605853abc2fe2)',0,'2023-12-19 09:01:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(1405,1334,'Akismet Spam Filter',0,'2023-12-19 09:23:39','This entry has been flagged as spam.','user',''),(1406,1335,'Akismet Spam Filter',0,'2023-12-21 01:06:51','This entry has been flagged as spam.','user',''),(1407,1336,'Akismet Spam Filter',0,'2023-12-21 01:06:53','This entry has been flagged as spam.','user',''),(1408,1337,'Akismet Spam Filter',0,'2023-12-21 01:07:00','This entry has been flagged as spam.','user',''),(1409,1338,'Akismet Spam Filter',0,'2023-12-21 01:07:03','This entry has been flagged as spam.','user',''),(1410,1339,'Akismet Spam Filter',0,'2023-12-21 11:08:25','This entry has been flagged as spam.','user',''),(1411,1340,'Akismet Spam Filter',0,'2023-12-22 00:39:44','This entry has been flagged as spam.','user',''),(1412,1341,'Akismet Spam Filter',0,'2023-12-22 18:26:32','This entry has been flagged as spam.','user',''),(1413,1342,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-12-22 19:47:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1414,1342,'Customer Notification (ID: 605853abc2fe2)',0,'2023-12-22 19:47:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1415,1343,'Akismet Spam Filter',0,'2023-12-22 22:18:29','This entry has been flagged as spam.','user',''),(1416,1344,'Akismet Spam Filter',0,'2023-12-23 03:52:09','This entry has been flagged as spam.','user',''),(1417,1345,'Akismet Spam Filter',0,'2023-12-23 05:57:12','This entry has been flagged as spam.','user',''),(1418,1346,'Akismet Spam Filter',0,'2023-12-23 21:34:17','This entry has been flagged as spam.','user',''),(1419,1347,'Akismet Spam Filter',0,'2023-12-23 22:39:24','This entry has been flagged as spam.','user',''),(1420,1348,'Akismet Spam Filter',0,'2023-12-24 00:31:01','This entry has been flagged as spam.','user',''),(1421,1349,'Akismet Spam Filter',0,'2023-12-24 04:47:09','This entry has been flagged as spam.','user',''),(1422,1350,'Akismet Spam Filter',0,'2023-12-24 19:31:03','This entry has been flagged as spam.','user',''),(1423,1351,'Akismet Spam Filter',0,'2023-12-25 10:56:50','This entry has been flagged as spam.','user',''),(1424,1352,'Akismet Spam Filter',0,'2023-12-25 11:41:37','This entry has been flagged as spam.','user',''),(1425,1353,'Akismet Spam Filter',0,'2023-12-25 22:40:25','This entry has been flagged as spam.','user',''),(1426,1354,'Admin Notification (ID: 5fec7645cdafe)',0,'2023-12-25 23:31:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(1427,1354,'Customer Notification (ID: 605853abc2fe2)',0,'2023-12-25 23:31:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1428,1355,'Akismet Spam Filter',0,'2023-12-26 15:15:15','This entry has been flagged as spam.','user',''),(1429,1356,'Akismet Spam Filter',0,'2023-12-26 18:20:12','This entry has been flagged as spam.','user',''),(1430,1357,'Akismet Spam Filter',0,'2023-12-27 01:23:25','This entry has been flagged as spam.','user',''),(1431,1358,'Akismet Spam Filter',0,'2023-12-27 05:45:38','This entry has been flagged as spam.','user',''),(1432,1359,'Akismet Spam Filter',0,'2023-12-27 08:02:52','This entry has been flagged as spam.','user',''),(1433,1360,'Akismet Spam Filter',0,'2023-12-27 09:09:54','This entry has been flagged as spam.','user',''),(1434,1361,'Akismet Spam Filter',0,'2023-12-27 13:03:57','This entry has been flagged as spam.','user',''),(1435,1362,'Akismet Spam Filter',0,'2023-12-28 16:03:26','This entry has been flagged as spam.','user',''),(1436,1363,'Akismet Spam Filter',0,'2023-12-28 23:11:22','This entry has been flagged as spam.','user',''),(1437,1364,'Akismet Spam Filter',0,'2023-12-29 02:56:14','This entry has been flagged as spam.','user',''),(1438,1365,'Akismet Spam Filter',0,'2023-12-29 10:00:11','This entry has been flagged as spam.','user',''),(1439,1366,'Akismet Spam Filter',0,'2023-12-29 10:49:35','This entry has been flagged as spam.','user',''),(1440,1367,'Akismet Spam Filter',0,'2023-12-30 05:44:49','This entry has been flagged as spam.','user',''),(1441,1368,'Akismet Spam Filter',0,'2023-12-30 21:58:35','This entry has been flagged as spam.','user',''),(1442,1369,'Akismet Spam Filter',0,'2023-12-30 22:17:57','This entry has been flagged as spam.','user',''),(1443,1370,'Akismet Spam Filter',0,'2024-01-01 03:31:02','This entry has been flagged as spam.','user',''),(1444,1371,'Akismet Spam Filter',0,'2024-01-01 06:03:56','This entry has been flagged as spam.','user',''),(1445,1372,'Akismet Spam Filter',0,'2024-01-01 12:54:08','This entry has been flagged as spam.','user',''),(1446,1373,'Akismet Spam Filter',0,'2024-01-01 22:20:50','This entry has been flagged as spam.','user',''),(1447,1374,'Akismet Spam Filter',0,'2024-01-02 01:53:33','This entry has been flagged as spam.','user',''),(1448,1375,'Akismet Spam Filter',0,'2024-01-02 02:06:58','This entry has been flagged as spam.','user',''),(1449,1376,'Akismet Spam Filter',0,'2024-01-02 12:07:51','This entry has been flagged as spam.','user',''),(1450,1377,'Akismet Spam Filter',0,'2024-01-03 13:15:34','This entry has been flagged as spam.','user',''),(1451,1378,'Akismet Spam Filter',0,'2024-01-03 15:39:38','This entry has been flagged as spam.','user',''),(1452,1379,'Akismet Spam Filter',0,'2024-01-03 19:47:26','This entry has been flagged as spam.','user',''),(1453,1380,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-03 20:39:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(1454,1380,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-03 20:39:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1455,1381,'Akismet Spam Filter',0,'2024-01-03 22:29:19','This entry has been flagged as spam.','user',''),(1456,1382,'Akismet Spam Filter',0,'2024-01-04 00:43:27','This entry has been flagged as spam.','user',''),(1457,1383,'Akismet Spam Filter',0,'2024-01-04 07:20:49','This entry has been flagged as spam.','user',''),(1458,1384,'Akismet Spam Filter',0,'2024-01-04 07:40:21','This entry has been flagged as spam.','user',''),(1459,1385,'Akismet Spam Filter',0,'2024-01-04 16:03:27','This entry has been flagged as spam.','user',''),(1460,1386,'Akismet Spam Filter',0,'2024-01-05 02:25:47','This entry has been flagged as spam.','user',''),(1461,1387,'Akismet Spam Filter',0,'2024-01-05 13:10:11','This entry has been flagged as spam.','user',''),(1462,1388,'Akismet Spam Filter',0,'2024-01-05 18:14:07','This entry has been flagged as spam.','user',''),(1463,1389,'Akismet Spam Filter',0,'2024-01-06 01:00:27','This entry has been flagged as spam.','user',''),(1464,1390,'Akismet Spam Filter',0,'2024-01-06 03:02:52','This entry has been flagged as spam.','user',''),(1465,1391,'Akismet Spam Filter',0,'2024-01-06 04:01:10','This entry has been flagged as spam.','user',''),(1466,1392,'Akismet Spam Filter',0,'2024-01-06 11:31:20','This entry has been flagged as spam.','user',''),(1467,1393,'Akismet Spam Filter',0,'2024-01-06 19:47:03','This entry has been flagged as spam.','user',''),(1468,1394,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-07 01:59:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(1469,1394,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-07 01:59:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(1470,1395,'Akismet Spam Filter',0,'2024-01-07 08:33:08','This entry has been flagged as spam.','user',''),(1471,1396,'Akismet Spam Filter',0,'2024-01-07 10:22:55','This entry has been flagged as spam.','user',''),(1472,1397,'Akismet Spam Filter',0,'2024-01-07 12:45:38','This entry has been flagged as spam.','user',''),(1473,1398,'Akismet Spam Filter',0,'2024-01-07 15:26:11','This entry has been flagged as spam.','user',''),(1474,1399,'Akismet Spam Filter',0,'2024-01-08 12:22:19','This entry has been flagged as spam.','user',''),(1475,1400,'Akismet Spam Filter',0,'2024-01-09 00:12:17','This entry has been flagged as spam.','user',''),(1476,1401,'Akismet Spam Filter',0,'2024-01-09 02:41:44','This entry has been flagged as spam.','user',''),(1477,1402,'Akismet Spam Filter',0,'2024-01-09 10:58:33','This entry has been flagged as spam.','user',''),(1478,1403,'Akismet Spam Filter',0,'2024-01-09 15:08:20','This entry has been flagged as spam.','user',''),(1479,1404,'Akismet Spam Filter',0,'2024-01-09 17:01:47','This entry has been flagged as spam.','user',''),(1480,1405,'Akismet Spam Filter',0,'2024-01-09 18:49:16','This entry has been flagged as spam.','user',''),(1481,1406,'Akismet Spam Filter',0,'2024-01-09 18:49:19','This entry has been flagged as spam.','user',''),(1482,1407,'Akismet Spam Filter',0,'2024-01-09 18:49:32','This entry has been flagged as spam.','user',''),(1483,1408,'Akismet Spam Filter',0,'2024-01-09 18:49:36','This entry has been flagged as spam.','user',''),(1484,1409,'Akismet Spam Filter',0,'2024-01-10 00:22:51','This entry has been flagged as spam.','user',''),(1485,1410,'Akismet Spam Filter',0,'2024-01-10 04:56:02','This entry has been flagged as spam.','user',''),(1486,1411,'Akismet Spam Filter',0,'2024-01-10 05:16:22','This entry has been flagged as spam.','user',''),(1487,1412,'Akismet Spam Filter',0,'2024-01-10 09:43:40','This entry has been flagged as spam.','user',''),(1488,1413,'Akismet Spam Filter',0,'2024-01-10 15:26:11','This entry has been flagged as spam.','user',''),(1489,1414,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-11 01:23:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(1490,1414,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-11 01:23:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(1491,1415,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-11 02:51:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(1492,1415,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-11 02:51:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(1493,1416,'Akismet Spam Filter',0,'2024-01-11 03:43:02','This entry has been flagged as spam.','user',''),(1494,1417,'Akismet Spam Filter',0,'2024-01-11 09:19:58','This entry has been flagged as spam.','user',''),(1495,1418,'Akismet Spam Filter',0,'2024-01-11 11:20:59','This entry has been flagged as spam.','user',''),(1496,1419,'Akismet Spam Filter',0,'2024-01-11 12:51:45','This entry has been flagged as spam.','user',''),(1497,1420,'Akismet Spam Filter',0,'2024-01-11 15:50:07','This entry has been flagged as spam.','user',''),(1498,1421,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-11 16:35:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(1499,1421,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-11 16:35:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(1500,1422,'Akismet Spam Filter',0,'2024-01-11 18:53:27','This entry has been flagged as spam.','user',''),(1501,1423,'Akismet Spam Filter',0,'2024-01-12 00:51:42','This entry has been flagged as spam.','user',''),(1502,1424,'Akismet Spam Filter',0,'2024-01-12 03:04:27','This entry has been flagged as spam.','user',''),(1503,1425,'Akismet Spam Filter',0,'2024-01-12 20:14:06','This entry has been flagged as spam.','user',''),(1504,1426,'Akismet Spam Filter',0,'2024-01-13 01:53:02','This entry has been flagged as spam.','user',''),(1505,1427,'Akismet Spam Filter',0,'2024-01-13 03:03:16','This entry has been flagged as spam.','user',''),(1506,1428,'Akismet Spam Filter',0,'2024-01-13 10:02:44','This entry has been flagged as spam.','user',''),(1507,1429,'Akismet Spam Filter',0,'2024-01-13 12:32:07','This entry has been flagged as spam.','user',''),(1508,1430,'Akismet Spam Filter',0,'2024-01-13 19:03:01','This entry has been flagged as spam.','user',''),(1509,1431,'Akismet Spam Filter',0,'2024-01-13 21:12:44','This entry has been flagged as spam.','user',''),(1510,1432,'Akismet Spam Filter',0,'2024-01-13 22:44:00','This entry has been flagged as spam.','user',''),(1511,1433,'Akismet Spam Filter',0,'2024-01-14 11:54:10','This entry has been flagged as spam.','user',''),(1512,1434,'Akismet Spam Filter',0,'2024-01-14 17:27:16','This entry has been flagged as spam.','user',''),(1513,1435,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-14 22:46:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(1514,1435,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-14 22:46:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(1515,1436,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-15 01:32:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(1516,1436,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-15 01:32:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(1517,1437,'Akismet Spam Filter',0,'2024-01-15 08:06:47','This entry has been flagged as spam.','user',''),(1518,1438,'Akismet Spam Filter',0,'2024-01-15 13:59:57','This entry has been flagged as spam.','user',''),(1519,1439,'Akismet Spam Filter',0,'2024-01-15 19:42:12','This entry has been flagged as spam.','user',''),(1520,1440,'Akismet Spam Filter',0,'2024-01-16 05:15:27','This entry has been flagged as spam.','user',''),(1521,1441,'Akismet Spam Filter',0,'2024-01-16 11:39:55','This entry has been flagged as spam.','user',''),(1522,1442,'Akismet Spam Filter',0,'2024-01-16 13:39:12','This entry has been flagged as spam.','user',''),(1523,1443,'Akismet Spam Filter',0,'2024-01-16 17:05:11','This entry has been flagged as spam.','user',''),(1524,1444,'Akismet Spam Filter',0,'2024-01-16 17:37:39','This entry has been flagged as spam.','user',''),(1525,1445,'Akismet Spam Filter',0,'2024-01-17 00:59:38','This entry has been flagged as spam.','user',''),(1526,1446,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-17 05:19:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1527,1446,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-17 05:19:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(1528,1447,'Akismet Spam Filter',0,'2024-01-17 05:32:20','This entry has been flagged as spam.','user',''),(1529,1448,'Akismet Spam Filter',0,'2024-01-17 10:34:05','This entry has been flagged as spam.','user',''),(1530,1449,'Akismet Spam Filter',0,'2024-01-17 16:06:54','This entry has been flagged as spam.','user',''),(1531,1450,'Akismet Spam Filter',0,'2024-01-17 19:28:44','This entry has been flagged as spam.','user',''),(1532,1451,'Akismet Spam Filter',0,'2024-01-17 20:05:28','This entry has been flagged as spam.','user',''),(1533,1452,'Akismet Spam Filter',0,'2024-01-18 01:29:08','This entry has been flagged as spam.','user',''),(1534,1453,'Akismet Spam Filter',0,'2024-01-18 02:32:13','This entry has been flagged as spam.','user',''),(1535,1454,'Akismet Spam Filter',0,'2024-01-18 09:57:43','This entry has been flagged as spam.','user',''),(1536,1455,'Akismet Spam Filter',0,'2024-01-19 00:08:37','This entry has been flagged as spam.','user',''),(1537,1456,'Akismet Spam Filter',0,'2024-01-19 06:37:51','This entry has been flagged as spam.','user',''),(1538,1457,'Akismet Spam Filter',0,'2024-01-19 06:37:56','This entry has been flagged as spam.','user',''),(1539,1458,'Akismet Spam Filter',0,'2024-01-19 06:38:19','This entry has been flagged as spam.','user',''),(1540,1459,'Akismet Spam Filter',0,'2024-01-19 06:38:24','This entry has been flagged as spam.','user',''),(1541,1460,'Akismet Spam Filter',0,'2024-01-19 21:39:41','This entry has been flagged as spam.','user',''),(1542,1461,'Akismet Spam Filter',0,'2024-01-20 14:11:14','This entry has been flagged as spam.','user',''),(1543,1462,'Akismet Spam Filter',0,'2024-01-21 02:06:33','This entry has been flagged as spam.','user',''),(1544,1463,'Akismet Spam Filter',0,'2024-01-21 08:09:32','This entry has been flagged as spam.','user',''),(1545,1464,'Akismet Spam Filter',0,'2024-01-21 08:15:10','This entry has been flagged as spam.','user',''),(1546,1465,'Akismet Spam Filter',0,'2024-01-21 14:45:43','This entry has been flagged as spam.','user',''),(1547,1466,'Akismet Spam Filter',0,'2024-01-21 20:36:03','This entry has been flagged as spam.','user',''),(1548,1467,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-22 06:04:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(1549,1467,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-22 06:04:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(1550,1468,'Akismet Spam Filter',0,'2024-01-22 06:55:19','This entry has been flagged as spam.','user',''),(1551,1469,'Akismet Spam Filter',0,'2024-01-22 15:17:22','This entry has been flagged as spam.','user',''),(1552,1470,'Akismet Spam Filter',0,'2024-01-22 15:17:25','This entry has been flagged as spam.','user',''),(1553,1471,'Akismet Spam Filter',0,'2024-01-22 15:17:39','This entry has been flagged as spam.','user',''),(1554,1472,'Akismet Spam Filter',0,'2024-01-22 15:17:43','This entry has been flagged as spam.','user',''),(1555,1473,'Akismet Spam Filter',0,'2024-01-22 16:12:48','This entry has been flagged as spam.','user',''),(1556,1474,'Akismet Spam Filter',0,'2024-01-22 16:58:13','This entry has been flagged as spam.','user',''),(1557,1475,'Akismet Spam Filter',0,'2024-01-22 21:35:13','This entry has been flagged as spam.','user',''),(1558,1476,'Akismet Spam Filter',0,'2024-01-23 01:09:36','This entry has been flagged as spam.','user',''),(1559,1477,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-23 03:02:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(1560,1477,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-23 03:02:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1561,1478,'Akismet Spam Filter',0,'2024-01-23 03:56:40','This entry has been flagged as spam.','user',''),(1562,1479,'Akismet Spam Filter',0,'2024-01-23 03:59:28','This entry has been flagged as spam.','user',''),(1563,1480,'Akismet Spam Filter',0,'2024-01-23 04:03:11','This entry has been flagged as spam.','user',''),(1564,1481,'Akismet Spam Filter',0,'2024-01-23 05:47:28','This entry has been flagged as spam.','user',''),(1565,1482,'Akismet Spam Filter',0,'2024-01-23 10:22:09','This entry has been flagged as spam.','user',''),(1566,1483,'Akismet Spam Filter',0,'2024-01-23 15:58:48','This entry has been flagged as spam.','user',''),(1567,1484,'Akismet Spam Filter',0,'2024-01-23 19:21:13','This entry has been flagged as spam.','user',''),(1568,1485,'Akismet Spam Filter',0,'2024-01-24 00:25:27','This entry has been flagged as spam.','user',''),(1569,1486,'Akismet Spam Filter',0,'2024-01-24 10:34:04','This entry has been flagged as spam.','user',''),(1570,1487,'Akismet Spam Filter',0,'2024-01-24 16:07:05','This entry has been flagged as spam.','user',''),(1571,1488,'Akismet Spam Filter',0,'2024-01-25 03:58:55','This entry has been flagged as spam.','user',''),(1572,1489,'Akismet Spam Filter',0,'2024-01-25 06:48:57','This entry has been flagged as spam.','user',''),(1573,1490,'Akismet Spam Filter',0,'2024-01-25 08:38:40','This entry has been flagged as spam.','user',''),(1574,1491,'Akismet Spam Filter',0,'2024-01-25 09:44:14','This entry has been flagged as spam.','user',''),(1575,1492,'Akismet Spam Filter',0,'2024-01-25 16:05:14','This entry has been flagged as spam.','user',''),(1576,1493,'Akismet Spam Filter',0,'2024-01-25 19:50:51','This entry has been flagged as spam.','user',''),(1577,1494,'Akismet Spam Filter',0,'2024-01-26 01:36:57','This entry has been flagged as spam.','user',''),(1578,1495,'Akismet Spam Filter',0,'2024-01-26 16:17:26','This entry has been flagged as spam.','user',''),(1579,1496,'Akismet Spam Filter',0,'2024-01-27 09:42:41','This entry has been flagged as spam.','user',''),(1580,1497,'Akismet Spam Filter',0,'2024-01-27 11:02:48','This entry has been flagged as spam.','user',''),(1581,1498,'Akismet Spam Filter',0,'2024-01-27 17:05:01','This entry has been flagged as spam.','user',''),(1582,1499,'Akismet Spam Filter',0,'2024-01-28 07:44:03','This entry has been flagged as spam.','user',''),(1583,1500,'Akismet Spam Filter',0,'2024-01-28 17:26:02','This entry has been flagged as spam.','user',''),(1584,1501,'Akismet Spam Filter',0,'2024-01-28 18:49:21','This entry has been flagged as spam.','user',''),(1585,1502,'Akismet Spam Filter',0,'2024-01-29 09:00:57','This entry has been flagged as spam.','user',''),(1586,1503,'Akismet Spam Filter',0,'2024-01-29 14:26:29','This entry has been flagged as spam.','user',''),(1587,1504,'Akismet Spam Filter',0,'2024-01-29 17:58:44','This entry has been flagged as spam.','user',''),(1588,1505,'Akismet Spam Filter',0,'2024-01-29 23:56:22','This entry has been flagged as spam.','user',''),(1589,1506,'Akismet Spam Filter',0,'2024-01-30 00:19:24','This entry has been flagged as spam.','user',''),(1590,1507,'Akismet Spam Filter',0,'2024-01-30 02:40:45','This entry has been flagged as spam.','user',''),(1591,1508,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-30 12:42:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1592,1508,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-30 12:42:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(1593,1509,'Akismet Spam Filter',0,'2024-01-30 16:41:13','This entry has been flagged as spam.','user',''),(1594,1510,'Akismet Spam Filter',0,'2024-01-30 17:33:10','This entry has been flagged as spam.','user',''),(1595,1511,'Akismet Spam Filter',0,'2024-01-30 18:31:09','This entry has been flagged as spam.','user',''),(1596,1512,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-30 19:45:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1597,1512,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-30 19:45:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1598,1513,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-01-30 22:42:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(1599,1513,'Customer Notification (ID: 605853abc2fe2)',0,'2024-01-30 22:42:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(1600,1514,'Akismet Spam Filter',0,'2024-01-31 08:10:27','This entry has been flagged as spam.','user',''),(1601,1515,'Akismet Spam Filter',0,'2024-01-31 11:39:19','This entry has been flagged as spam.','user',''),(1602,1516,'Akismet Spam Filter',0,'2024-01-31 13:38:13','This entry has been flagged as spam.','user',''),(1603,1517,'Akismet Spam Filter',0,'2024-02-01 01:03:18','This entry has been flagged as spam.','user',''),(1604,1518,'Akismet Spam Filter',0,'2024-02-01 04:58:59','This entry has been flagged as spam.','user',''),(1605,1519,'Akismet Spam Filter',0,'2024-02-01 06:05:46','This entry has been flagged as spam.','user',''),(1606,1520,'Akismet Spam Filter',0,'2024-02-01 06:45:00','This entry has been flagged as spam.','user',''),(1607,1521,'Akismet Spam Filter',0,'2024-02-01 09:10:06','This entry has been flagged as spam.','user',''),(1608,1522,'Akismet Spam Filter',0,'2024-02-01 13:02:33','This entry has been flagged as spam.','user',''),(1609,1523,'Akismet Spam Filter',0,'2024-02-02 05:17:42','This entry has been flagged as spam.','user',''),(1610,1524,'Akismet Spam Filter',0,'2024-02-02 07:06:36','This entry has been flagged as spam.','user',''),(1611,1525,'Akismet Spam Filter',0,'2024-02-02 11:21:36','This entry has been flagged as spam.','user',''),(1612,1526,'Akismet Spam Filter',0,'2024-02-02 14:38:19','This entry has been flagged as spam.','user',''),(1613,1527,'Akismet Spam Filter',0,'2024-02-02 23:03:22','This entry has been flagged as spam.','user',''),(1614,1528,'Akismet Spam Filter',0,'2024-02-03 05:47:47','This entry has been flagged as spam.','user',''),(1615,1529,'Akismet Spam Filter',0,'2024-02-03 07:57:58','This entry has been flagged as spam.','user',''),(1616,1530,'Akismet Spam Filter',0,'2024-02-03 08:30:38','This entry has been flagged as spam.','user',''),(1617,1531,'Akismet Spam Filter',0,'2024-02-04 22:52:15','This entry has been flagged as spam.','user',''),(1618,1532,'Akismet Spam Filter',0,'2024-02-05 02:54:55','This entry has been flagged as spam.','user',''),(1619,1533,'Akismet Spam Filter',0,'2024-02-05 06:32:00','This entry has been flagged as spam.','user',''),(1620,1534,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-05 06:39:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(1621,1534,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-05 06:39:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1622,1535,'Akismet Spam Filter',0,'2024-02-05 12:44:44','This entry has been flagged as spam.','user',''),(1623,1536,'Akismet Spam Filter',0,'2024-02-05 12:53:46','This entry has been flagged as spam.','user',''),(1624,1537,'Akismet Spam Filter',0,'2024-02-05 16:36:26','This entry has been flagged as spam.','user',''),(1625,1538,'Akismet Spam Filter',0,'2024-02-05 19:47:46','This entry has been flagged as spam.','user',''),(1626,1539,'Akismet Spam Filter',0,'2024-02-06 07:00:22','This entry has been flagged as spam.','user',''),(1627,1540,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-07 01:28:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(1628,1540,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-07 01:28:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(1629,1541,'Akismet Spam Filter',0,'2024-02-07 13:13:51','This entry has been flagged as spam.','user',''),(1630,1542,'Akismet Spam Filter',0,'2024-02-07 13:43:19','This entry has been flagged as spam.','user',''),(1631,1543,'Akismet Spam Filter',0,'2024-02-07 18:48:05','This entry has been flagged as spam.','user',''),(1632,1544,'Akismet Spam Filter',0,'2024-02-07 19:16:24','This entry has been flagged as spam.','user',''),(1633,1545,'Akismet Spam Filter',0,'2024-02-08 00:33:04','This entry has been flagged as spam.','user',''),(1634,1546,'Akismet Spam Filter',0,'2024-02-08 03:45:27','This entry has been flagged as spam.','user',''),(1635,1547,'Akismet Spam Filter',0,'2024-02-08 04:25:49','This entry has been flagged as spam.','user',''),(1636,1548,'Akismet Spam Filter',0,'2024-02-08 13:08:15','This entry has been flagged as spam.','user',''),(1637,1549,'Akismet Spam Filter',0,'2024-02-09 03:36:22','This entry has been flagged as spam.','user',''),(1638,1550,'Akismet Spam Filter',0,'2024-02-09 04:34:14','This entry has been flagged as spam.','user',''),(1639,1551,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-09 04:39:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(1640,1551,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-09 04:39:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(1641,1552,'Akismet Spam Filter',0,'2024-02-09 06:26:28','This entry has been flagged as spam.','user',''),(1642,1553,'Akismet Spam Filter',0,'2024-02-09 14:28:34','This entry has been flagged as spam.','user',''),(1643,1554,'Akismet Spam Filter',0,'2024-02-09 15:07:44','This entry has been flagged as spam.','user',''),(1644,1555,'Akismet Spam Filter',0,'2024-02-09 15:37:23','This entry has been flagged as spam.','user',''),(1645,1556,'Akismet Spam Filter',0,'2024-02-09 15:39:36','This entry has been flagged as spam.','user',''),(1646,1557,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-09 21:28:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(1647,1557,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-09 21:28:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(1648,1558,'Akismet Spam Filter',0,'2024-02-10 06:24:37','This entry has been flagged as spam.','user',''),(1649,1559,'Akismet Spam Filter',0,'2024-02-10 09:23:52','This entry has been flagged as spam.','user',''),(1650,1560,'Akismet Spam Filter',0,'2024-02-10 10:16:24','This entry has been flagged as spam.','user',''),(1651,1561,'Akismet Spam Filter',0,'2024-02-10 13:22:01','This entry has been flagged as spam.','user',''),(1652,1562,'Akismet Spam Filter',0,'2024-02-10 17:12:33','This entry has been flagged as spam.','user',''),(1653,1563,'Akismet Spam Filter',0,'2024-02-11 00:03:57','This entry has been flagged as spam.','user',''),(1654,1564,'Akismet Spam Filter',0,'2024-02-11 09:49:51','This entry has been flagged as spam.','user',''),(1655,1565,'Akismet Spam Filter',0,'2024-02-11 10:22:50','This entry has been flagged as spam.','user',''),(1656,1566,'Akismet Spam Filter',0,'2024-02-11 22:43:56','This entry has been flagged as spam.','user',''),(1657,1567,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-12 01:03:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(1658,1567,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-12 01:03:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(1659,1568,'Akismet Spam Filter',0,'2024-02-12 14:12:25','This entry has been flagged as spam.','user',''),(1660,1569,'Akismet Spam Filter',0,'2024-02-13 04:32:52','This entry has been flagged as spam.','user',''),(1661,1570,'Akismet Spam Filter',0,'2024-02-13 06:16:13','This entry has been flagged as spam.','user',''),(1662,1571,'Akismet Spam Filter',0,'2024-02-13 12:47:04','This entry has been flagged as spam.','user',''),(1663,1572,'Akismet Spam Filter',0,'2024-02-13 14:10:17','This entry has been flagged as spam.','user',''),(1664,1573,'Akismet Spam Filter',0,'2024-02-13 14:24:53','This entry has been flagged as spam.','user',''),(1665,1574,'Akismet Spam Filter',0,'2024-02-13 20:28:50','This entry has been flagged as spam.','user',''),(1666,1575,'Akismet Spam Filter',0,'2024-02-13 22:42:53','This entry has been flagged as spam.','user',''),(1667,1576,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-14 01:43:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(1668,1576,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-14 01:43:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(1669,1577,'Akismet Spam Filter',0,'2024-02-14 16:00:19','This entry has been flagged as spam.','user',''),(1670,1578,'Akismet Spam Filter',0,'2024-02-14 19:29:53','This entry has been flagged as spam.','user',''),(1671,1579,'Akismet Spam Filter',0,'2024-02-14 20:13:33','This entry has been flagged as spam.','user',''),(1672,1580,'Akismet Spam Filter',0,'2024-02-15 03:21:33','This entry has been flagged as spam.','user',''),(1673,1581,'Akismet Spam Filter',0,'2024-02-15 17:25:50','This entry has been flagged as spam.','user',''),(1674,1582,'Akismet Spam Filter',0,'2024-02-15 21:26:37','This entry has been flagged as spam.','user',''),(1675,1583,'Akismet Spam Filter',0,'2024-02-16 00:40:48','This entry has been flagged as spam.','user',''),(1676,1584,'Akismet Spam Filter',0,'2024-02-16 09:57:38','This entry has been flagged as spam.','user',''),(1677,1585,'Akismet Spam Filter',0,'2024-02-16 12:48:11','This entry has been flagged as spam.','user',''),(1678,1586,'Akismet Spam Filter',0,'2024-02-16 19:09:32','This entry has been flagged as spam.','user',''),(1679,1587,'Akismet Spam Filter',0,'2024-02-16 21:31:35','This entry has been flagged as spam.','user',''),(1680,1588,'Akismet Spam Filter',0,'2024-02-16 21:41:15','This entry has been flagged as spam.','user',''),(1681,1589,'Akismet Spam Filter',0,'2024-02-17 00:11:37','This entry has been flagged as spam.','user',''),(1682,1590,'Akismet Spam Filter',0,'2024-02-17 03:35:18','This entry has been flagged as spam.','user',''),(1683,1591,'Akismet Spam Filter',0,'2024-02-17 04:27:31','This entry has been flagged as spam.','user',''),(1684,1592,'Akismet Spam Filter',0,'2024-02-17 12:30:26','This entry has been flagged as spam.','user',''),(1685,1593,'Akismet Spam Filter',0,'2024-02-17 16:12:10','This entry has been flagged as spam.','user',''),(1686,1594,'Akismet Spam Filter',0,'2024-02-17 18:01:17','This entry has been flagged as spam.','user',''),(1687,1595,'Akismet Spam Filter',0,'2024-02-17 22:24:39','This entry has been flagged as spam.','user',''),(1688,1596,'Akismet Spam Filter',0,'2024-02-17 23:17:15','This entry has been flagged as spam.','user',''),(1689,1597,'Akismet Spam Filter',0,'2024-02-18 21:35:55','This entry has been flagged as spam.','user',''),(1690,1598,'Akismet Spam Filter',0,'2024-02-19 04:21:59','This entry has been flagged as spam.','user',''),(1691,1599,'Akismet Spam Filter',0,'2024-02-19 12:18:10','This entry has been flagged as spam.','user',''),(1692,1600,'Akismet Spam Filter',0,'2024-02-19 12:48:15','This entry has been flagged as spam.','user',''),(1693,1601,'Akismet Spam Filter',0,'2024-02-19 13:09:05','This entry has been flagged as spam.','user',''),(1694,1602,'Akismet Spam Filter',0,'2024-02-19 13:18:21','This entry has been flagged as spam.','user',''),(1695,1603,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-19 20:30:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(1696,1603,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-19 20:30:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(1697,1604,'Akismet Spam Filter',0,'2024-02-19 21:12:41','This entry has been flagged as spam.','user',''),(1698,1605,'Akismet Spam Filter',0,'2024-02-19 21:28:00','This entry has been flagged as spam.','user',''),(1699,1606,'Akismet Spam Filter',0,'2024-02-19 23:18:05','This entry has been flagged as spam.','user',''),(1700,1607,'Akismet Spam Filter',0,'2024-02-20 00:07:22','This entry has been flagged as spam.','user',''),(1701,1608,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-20 06:27:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1702,1608,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-20 06:27:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1703,1609,'Akismet Spam Filter',0,'2024-02-21 07:08:36','This entry has been flagged as spam.','user',''),(1704,1610,'Akismet Spam Filter',0,'2024-02-21 10:14:54','This entry has been flagged as spam.','user',''),(1705,1611,'Akismet Spam Filter',0,'2024-02-21 12:59:00','This entry has been flagged as spam.','user',''),(1706,1612,'Akismet Spam Filter',0,'2024-02-21 13:38:34','This entry has been flagged as spam.','user',''),(1707,1613,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-21 14:54:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(1708,1613,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-21 14:54:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1709,1614,'Akismet Spam Filter',0,'2024-02-21 21:06:55','This entry has been flagged as spam.','user',''),(1710,1615,'Akismet Spam Filter',0,'2024-02-21 22:46:48','This entry has been flagged as spam.','user',''),(1711,1616,'Akismet Spam Filter',0,'2024-02-21 23:17:21','This entry has been flagged as spam.','user',''),(1712,1617,'Akismet Spam Filter',0,'2024-02-22 04:52:14','This entry has been flagged as spam.','user',''),(1713,1618,'Akismet Spam Filter',0,'2024-02-22 14:30:50','This entry has been flagged as spam.','user',''),(1714,1619,'Akismet Spam Filter',0,'2024-02-23 05:55:21','This entry has been flagged as spam.','user',''),(1715,1620,'Akismet Spam Filter',0,'2024-02-23 11:43:10','This entry has been flagged as spam.','user',''),(1716,1621,'Akismet Spam Filter',0,'2024-02-23 17:43:53','This entry has been flagged as spam.','user',''),(1717,1622,'Akismet Spam Filter',0,'2024-02-23 18:02:00','This entry has been flagged as spam.','user',''),(1718,1623,'Akismet Spam Filter',0,'2024-02-23 21:37:49','This entry has been flagged as spam.','user',''),(1719,1624,'Akismet Spam Filter',0,'2024-02-24 01:24:23','This entry has been flagged as spam.','user',''),(1720,1625,'Akismet Spam Filter',0,'2024-02-24 02:50:23','This entry has been flagged as spam.','user',''),(1721,1626,'Akismet Spam Filter',0,'2024-02-24 07:49:21','This entry has been flagged as spam.','user',''),(1722,1627,'Akismet Spam Filter',0,'2024-02-24 08:42:56','This entry has been flagged as spam.','user',''),(1723,1628,'Akismet Spam Filter',0,'2024-02-24 11:07:01','This entry has been flagged as spam.','user',''),(1724,1629,'Akismet Spam Filter',0,'2024-02-24 15:12:57','This entry has been flagged as spam.','user',''),(1725,1630,'Akismet Spam Filter',0,'2024-02-24 21:46:35','This entry has been flagged as spam.','user',''),(1726,1631,'Akismet Spam Filter',0,'2024-02-24 22:55:50','This entry has been flagged as spam.','user',''),(1727,1632,'Akismet Spam Filter',0,'2024-02-25 03:46:11','This entry has been flagged as spam.','user',''),(1728,1633,'Akismet Spam Filter',0,'2024-02-25 07:04:17','This entry has been flagged as spam.','user',''),(1729,1634,'Akismet Spam Filter',0,'2024-02-25 07:58:15','This entry has been flagged as spam.','user',''),(1730,1635,'Akismet Spam Filter',0,'2024-02-25 16:20:40','This entry has been flagged as spam.','user',''),(1731,1636,'Akismet Spam Filter',0,'2024-02-25 20:34:07','This entry has been flagged as spam.','user',''),(1732,1637,'Akismet Spam Filter',0,'2024-02-25 23:30:59','This entry has been flagged as spam.','user',''),(1733,1638,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-26 00:11:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1734,1638,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-26 00:11:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1735,1639,'Akismet Spam Filter',0,'2024-02-26 00:40:32','This entry has been flagged as spam.','user',''),(1736,1640,'Akismet Spam Filter',0,'2024-02-26 04:55:21','This entry has been flagged as spam.','user',''),(1737,1641,'Akismet Spam Filter',0,'2024-02-26 05:22:27','This entry has been flagged as spam.','user',''),(1738,1642,'Akismet Spam Filter',0,'2024-02-26 22:47:36','This entry has been flagged as spam.','user',''),(1739,1643,'Akismet Spam Filter',0,'2024-02-27 05:56:34','This entry has been flagged as spam.','user',''),(1740,1644,'Akismet Spam Filter',0,'2024-02-27 13:14:10','This entry has been flagged as spam.','user',''),(1741,1645,'Akismet Spam Filter',0,'2024-02-27 14:34:51','This entry has been flagged as spam.','user',''),(1742,1646,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-27 17:26:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(1743,1646,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-27 17:26:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(1744,1647,'Akismet Spam Filter',0,'2024-02-27 23:21:07','This entry has been flagged as spam.','user',''),(1745,1648,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-02-28 00:33:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(1746,1648,'Customer Notification (ID: 605853abc2fe2)',0,'2024-02-28 00:33:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(1747,1649,'Akismet Spam Filter',0,'2024-02-28 09:46:44','This entry has been flagged as spam.','user',''),(1748,1650,'Akismet Spam Filter',0,'2024-02-28 14:49:19','This entry has been flagged as spam.','user',''),(1749,1651,'Akismet Spam Filter',0,'2024-02-28 19:09:10','This entry has been flagged as spam.','user',''),(1750,1652,'Akismet Spam Filter',0,'2024-02-28 19:12:23','This entry has been flagged as spam.','user',''),(1751,1653,'Akismet Spam Filter',0,'2024-02-29 00:21:33','This entry has been flagged as spam.','user',''),(1752,1654,'Akismet Spam Filter',0,'2024-02-29 02:03:55','This entry has been flagged as spam.','user',''),(1753,1655,'Akismet Spam Filter',0,'2024-02-29 02:48:35','This entry has been flagged as spam.','user',''),(1754,1656,'Akismet Spam Filter',0,'2024-02-29 05:20:08','This entry has been flagged as spam.','user',''),(1755,1657,'Akismet Spam Filter',0,'2024-02-29 20:34:55','This entry has been flagged as spam.','user',''),(1756,1658,'Akismet Spam Filter',0,'2024-02-29 22:18:58','This entry has been flagged as spam.','user',''),(1757,1659,'Akismet Spam Filter',0,'2024-03-01 02:24:06','This entry has been flagged as spam.','user',''),(1758,1660,'Akismet Spam Filter',0,'2024-03-01 03:39:56','This entry has been flagged as spam.','user',''),(1759,1661,'Akismet Spam Filter',0,'2024-03-01 07:40:26','This entry has been flagged as spam.','user',''),(1760,1662,'Akismet Spam Filter',0,'2024-03-01 10:25:07','This entry has been flagged as spam.','user',''),(1761,1663,'Akismet Spam Filter',0,'2024-03-01 14:55:55','This entry has been flagged as spam.','user',''),(1762,1664,'Akismet Spam Filter',0,'2024-03-01 17:44:55','This entry has been flagged as spam.','user',''),(1763,1665,'Akismet Spam Filter',0,'2024-03-01 19:29:26','This entry has been flagged as spam.','user',''),(1764,1666,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-02 04:42:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(1765,1666,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-02 04:42:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(1766,1667,'Akismet Spam Filter',0,'2024-03-02 07:57:44','This entry has been flagged as spam.','user',''),(1767,1668,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-02 09:17:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1768,1668,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-02 09:17:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(1769,1669,'Akismet Spam Filter',0,'2024-03-02 12:51:33','This entry has been flagged as spam.','user',''),(1770,1670,'Akismet Spam Filter',0,'2024-03-02 20:10:34','This entry has been flagged as spam.','user',''),(1771,1671,'Akismet Spam Filter',0,'2024-03-03 01:30:17','This entry has been flagged as spam.','user',''),(1772,1672,'Akismet Spam Filter',0,'2024-03-03 03:31:33','This entry has been flagged as spam.','user',''),(1773,1673,'Akismet Spam Filter',0,'2024-03-03 03:38:40','This entry has been flagged as spam.','user',''),(1774,1674,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-03 06:39:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(1775,1674,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-03 06:39:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(1776,1675,'Akismet Spam Filter',0,'2024-03-03 08:24:58','This entry has been flagged as spam.','user',''),(1777,1676,'Akismet Spam Filter',0,'2024-03-03 08:30:39','This entry has been flagged as spam.','user',''),(1778,1677,'Akismet Spam Filter',0,'2024-03-03 08:32:25','This entry has been flagged as spam.','user',''),(1779,1678,'Akismet Spam Filter',0,'2024-03-03 12:16:13','This entry has been flagged as spam.','user',''),(1780,1679,'Akismet Spam Filter',0,'2024-03-03 21:33:32','This entry has been flagged as spam.','user',''),(1781,1680,'Akismet Spam Filter',0,'2024-03-04 03:08:45','This entry has been flagged as spam.','user',''),(1782,1681,'Akismet Spam Filter',0,'2024-03-04 09:37:46','This entry has been flagged as spam.','user',''),(1783,1682,'Akismet Spam Filter',0,'2024-03-04 11:35:41','This entry has been flagged as spam.','user',''),(1784,1683,'Akismet Spam Filter',0,'2024-03-04 19:29:52','This entry has been flagged as spam.','user',''),(1785,1684,'Akismet Spam Filter',0,'2024-03-04 20:44:07','This entry has been flagged as spam.','user',''),(1786,1685,'Akismet Spam Filter',0,'2024-03-04 21:04:13','This entry has been flagged as spam.','user',''),(1787,1686,'Akismet Spam Filter',0,'2024-03-05 01:49:54','This entry has been flagged as spam.','user',''),(1788,1687,'Akismet Spam Filter',0,'2024-03-05 04:24:39','This entry has been flagged as spam.','user',''),(1789,1688,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-05 06:18:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(1790,1688,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-05 06:18:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(1791,1689,'Akismet Spam Filter',0,'2024-03-05 07:36:45','This entry has been flagged as spam.','user',''),(1792,1690,'Akismet Spam Filter',0,'2024-03-05 13:21:22','This entry has been flagged as spam.','user',''),(1793,1691,'Akismet Spam Filter',0,'2024-03-05 18:15:23','This entry has been flagged as spam.','user',''),(1794,1692,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-05 18:58:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(1795,1692,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-05 18:58:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(1796,1693,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-05 21:14:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1797,1693,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-05 21:14:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1798,1694,'Akismet Spam Filter',0,'2024-03-05 22:19:20','This entry has been flagged as spam.','user',''),(1799,1695,'Akismet Spam Filter',0,'2024-03-06 06:32:51','This entry has been flagged as spam.','user',''),(1800,1696,'Akismet Spam Filter',0,'2024-03-06 18:05:28','This entry has been flagged as spam.','user',''),(1801,1697,'Akismet Spam Filter',0,'2024-03-07 02:07:32','This entry has been flagged as spam.','user',''),(1802,1698,'Akismet Spam Filter',0,'2024-03-07 07:02:44','This entry has been flagged as spam.','user',''),(1803,1699,'Akismet Spam Filter',0,'2024-03-07 08:44:33','This entry has been flagged as spam.','user',''),(1804,1700,'Akismet Spam Filter',0,'2024-03-07 18:00:27','This entry has been flagged as spam.','user',''),(1805,1701,'Akismet Spam Filter',0,'2024-03-08 09:38:09','This entry has been flagged as spam.','user',''),(1806,1702,'Akismet Spam Filter',0,'2024-03-08 10:16:14','This entry has been flagged as spam.','user',''),(1807,1703,'Akismet Spam Filter',0,'2024-03-08 11:32:33','This entry has been flagged as spam.','user',''),(1808,1704,'Akismet Spam Filter',0,'2024-03-08 18:34:22','This entry has been flagged as spam.','user',''),(1809,1705,'Akismet Spam Filter',0,'2024-03-08 20:37:52','This entry has been flagged as spam.','user',''),(1810,1706,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-09 07:36:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1811,1706,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-09 07:36:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(1812,1707,'Akismet Spam Filter',0,'2024-03-09 09:27:19','This entry has been flagged as spam.','user',''),(1813,1708,'Akismet Spam Filter',0,'2024-03-09 15:42:57','This entry has been flagged as spam.','user',''),(1814,1709,'Akismet Spam Filter',0,'2024-03-09 19:13:58','This entry has been flagged as spam.','user',''),(1815,1710,'Akismet Spam Filter',0,'2024-03-10 14:24:35','This entry has been flagged as spam.','user',''),(1816,1711,'Akismet Spam Filter',0,'2024-03-10 14:32:42','This entry has been flagged as spam.','user',''),(1817,1712,'Akismet Spam Filter',0,'2024-03-10 17:06:19','This entry has been flagged as spam.','user',''),(1818,1713,'Akismet Spam Filter',0,'2024-03-11 14:46:48','This entry has been flagged as spam.','user',''),(1819,1714,'Akismet Spam Filter',0,'2024-03-11 15:52:34','This entry has been flagged as spam.','user',''),(1820,1715,'Akismet Spam Filter',0,'2024-03-11 19:27:17','This entry has been flagged as spam.','user',''),(1821,1716,'Akismet Spam Filter',0,'2024-03-12 04:07:41','This entry has been flagged as spam.','user',''),(1822,1717,'Akismet Spam Filter',0,'2024-03-12 10:21:16','This entry has been flagged as spam.','user',''),(1823,1718,'Akismet Spam Filter',0,'2024-03-12 13:50:14','This entry has been flagged as spam.','user',''),(1824,1719,'Akismet Spam Filter',0,'2024-03-12 14:25:31','This entry has been flagged as spam.','user',''),(1825,1720,'Akismet Spam Filter',0,'2024-03-13 04:20:47','This entry has been flagged as spam.','user',''),(1826,1721,'Akismet Spam Filter',0,'2024-03-13 11:20:44','This entry has been flagged as spam.','user',''),(1827,1722,'Akismet Spam Filter',0,'2024-03-13 17:07:38','This entry has been flagged as spam.','user',''),(1828,1723,'Akismet Spam Filter',0,'2024-03-13 18:09:55','This entry has been flagged as spam.','user',''),(1829,1724,'Akismet Spam Filter',0,'2024-03-13 19:18:24','This entry has been flagged as spam.','user',''),(1830,1725,'Akismet Spam Filter',0,'2024-03-13 19:42:10','This entry has been flagged as spam.','user',''),(1831,1726,'Akismet Spam Filter',0,'2024-03-13 23:21:08','This entry has been flagged as spam.','user',''),(1832,1727,'Akismet Spam Filter',0,'2024-03-14 06:49:28','This entry has been flagged as spam.','user',''),(1833,1728,'Akismet Spam Filter',0,'2024-03-15 08:47:56','This entry has been flagged as spam.','user',''),(1834,1729,'Akismet Spam Filter',0,'2024-03-15 15:45:39','This entry has been flagged as spam.','user',''),(1835,1730,'Akismet Spam Filter',0,'2024-03-15 15:57:36','This entry has been flagged as spam.','user',''),(1836,1731,'Akismet Spam Filter',0,'2024-03-15 20:54:49','This entry has been flagged as spam.','user',''),(1837,1732,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-16 06:42:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(1838,1732,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-16 06:42:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(1839,1733,'Akismet Spam Filter',0,'2024-03-16 18:18:10','This entry has been flagged as spam.','user',''),(1840,1734,'Akismet Spam Filter',0,'2024-03-17 00:26:37','This entry has been flagged as spam.','user',''),(1841,1735,'Akismet Spam Filter',0,'2024-03-17 21:08:13','This entry has been flagged as spam.','user',''),(1842,1736,'Akismet Spam Filter',0,'2024-03-17 22:27:04','This entry has been flagged as spam.','user',''),(1843,1737,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-17 22:48:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(1844,1737,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-17 22:48:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(1845,1738,'Akismet Spam Filter',0,'2024-03-18 06:54:29','This entry has been flagged as spam.','user',''),(1846,1739,'Akismet Spam Filter',0,'2024-03-18 09:06:30','This entry has been flagged as spam.','user',''),(1847,1740,'Akismet Spam Filter',0,'2024-03-18 14:40:58','This entry has been flagged as spam.','user',''),(1848,1741,'Akismet Spam Filter',0,'2024-03-18 15:06:23','This entry has been flagged as spam.','user',''),(1849,1742,'Akismet Spam Filter',0,'2024-03-18 17:12:04','This entry has been flagged as spam.','user',''),(1850,1743,'Akismet Spam Filter',0,'2024-03-19 04:21:34','This entry has been flagged as spam.','user',''),(1851,1744,'Akismet Spam Filter',0,'2024-03-19 05:04:33','This entry has been flagged as spam.','user',''),(1852,1745,'Akismet Spam Filter',0,'2024-03-19 09:44:54','This entry has been flagged as spam.','user',''),(1853,1746,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-03-19 10:16:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1854,1746,'Customer Notification (ID: 605853abc2fe2)',0,'2024-03-19 10:16:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1855,1747,'Akismet Spam Filter',0,'2024-03-19 14:38:52','This entry has been flagged as spam.','user',''),(1856,1748,'Akismet Spam Filter',0,'2024-03-19 20:51:12','This entry has been flagged as spam.','user',''),(1857,1749,'Akismet Spam Filter',0,'2024-03-19 22:16:19','This entry has been flagged as spam.','user',''),(1858,1750,'Akismet Spam Filter',0,'2024-03-20 01:12:22','This entry has been flagged as spam.','user',''),(1859,1751,'Akismet Spam Filter',0,'2024-03-21 04:11:10','This entry has been flagged as spam.','user',''),(1860,1752,'Akismet Spam Filter',0,'2024-03-21 06:34:30','This entry has been flagged as spam.','user',''),(1861,1753,'Akismet Spam Filter',0,'2024-03-21 15:46:11','This entry has been flagged as spam.','user',''),(1862,1754,'Akismet Spam Filter',0,'2024-03-21 23:47:41','This entry has been flagged as spam.','user',''),(1863,1755,'Akismet Spam Filter',0,'2024-03-22 02:56:04','This entry has been flagged as spam.','user',''),(1864,1756,'Akismet Spam Filter',0,'2024-03-22 15:23:52','This entry has been flagged as spam.','user',''),(1865,1757,'Akismet Spam Filter',0,'2024-03-22 22:00:55','This entry has been flagged as spam.','user',''),(1866,1758,'Akismet Spam Filter',0,'2024-03-23 06:30:00','This entry has been flagged as spam.','user',''),(1867,1759,'Akismet Spam Filter',0,'2024-03-23 11:29:54','This entry has been flagged as spam.','user',''),(1868,1760,'Akismet Spam Filter',0,'2024-03-23 12:39:46','This entry has been flagged as spam.','user',''),(1869,1761,'Akismet Spam Filter',0,'2024-03-23 20:06:00','This entry has been flagged as spam.','user',''),(1870,1762,'Akismet Spam Filter',0,'2024-03-24 02:16:15','This entry has been flagged as spam.','user',''),(1871,1763,'Akismet Spam Filter',0,'2024-03-24 07:55:44','This entry has been flagged as spam.','user',''),(1872,1764,'Akismet Spam Filter',0,'2024-03-24 15:05:27','This entry has been flagged as spam.','user',''),(1873,1765,'Akismet Spam Filter',0,'2024-03-24 17:15:11','This entry has been flagged as spam.','user',''),(1874,1766,'Akismet Spam Filter',0,'2024-03-24 20:14:32','This entry has been flagged as spam.','user',''),(1875,1767,'Akismet Spam Filter',0,'2024-03-25 07:42:15','This entry has been flagged as spam.','user',''),(1876,1768,'Akismet Spam Filter',0,'2024-03-25 12:51:00','This entry has been flagged as spam.','user',''),(1877,1769,'Akismet Spam Filter',0,'2024-03-26 07:41:33','This entry has been flagged as spam.','user',''),(1878,1770,'Akismet Spam Filter',0,'2024-03-26 20:08:08','This entry has been flagged as spam.','user',''),(1879,1771,'Akismet Spam Filter',0,'2024-03-26 22:31:30','This entry has been flagged as spam.','user',''),(1880,1772,'Akismet Spam Filter',0,'2024-03-27 05:43:55','This entry has been flagged as spam.','user',''),(1881,1773,'Akismet Spam Filter',0,'2024-03-27 20:49:59','This entry has been flagged as spam.','user',''),(1882,1774,'Akismet Spam Filter',0,'2024-03-27 23:06:49','This entry has been flagged as spam.','user',''),(1883,1775,'Akismet Spam Filter',0,'2024-03-28 05:50:21','This entry has been flagged as spam.','user',''),(1884,1776,'Akismet Spam Filter',0,'2024-03-28 07:10:52','This entry has been flagged as spam.','user',''),(1885,1777,'Akismet Spam Filter',0,'2024-03-28 12:01:48','This entry has been flagged as spam.','user',''),(1886,1778,'Akismet Spam Filter',0,'2024-03-28 17:36:45','This entry has been flagged as spam.','user',''),(1887,1779,'Akismet Spam Filter',0,'2024-03-29 09:43:59','This entry has been flagged as spam.','user',''),(1888,1780,'Akismet Spam Filter',0,'2024-03-29 17:08:42','This entry has been flagged as spam.','user',''),(1889,1781,'Akismet Spam Filter',0,'2024-03-29 20:56:51','This entry has been flagged as spam.','user',''),(1890,1782,'Akismet Spam Filter',0,'2024-03-30 04:27:23','This entry has been flagged as spam.','user',''),(1891,1783,'Akismet Spam Filter',0,'2024-03-30 06:15:54','This entry has been flagged as spam.','user',''),(1892,1784,'Akismet Spam Filter',0,'2024-03-30 07:43:17','This entry has been flagged as spam.','user',''),(1893,1785,'Akismet Spam Filter',0,'2024-03-31 05:59:56','This entry has been flagged as spam.','user',''),(1894,1786,'Akismet Spam Filter',0,'2024-03-31 06:19:53','This entry has been flagged as spam.','user',''),(1895,1787,'Akismet Spam Filter',0,'2024-03-31 10:06:03','This entry has been flagged as spam.','user',''),(1896,1788,'Akismet Spam Filter',0,'2024-03-31 18:02:48','This entry has been flagged as spam.','user',''),(1897,1789,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-04-01 01:48:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(1898,1789,'Customer Notification (ID: 605853abc2fe2)',0,'2024-04-01 01:48:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(1899,1790,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-04-03 03:24:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1900,1790,'Customer Notification (ID: 605853abc2fe2)',0,'2024-04-03 03:24:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1901,1791,'Akismet Spam Filter',0,'2024-04-03 08:40:51','This entry has been flagged as spam.','user',''),(1902,1792,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-04-03 21:42:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(1903,1792,'Customer Notification (ID: 605853abc2fe2)',0,'2024-04-03 21:42:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(1904,1793,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-04-03 22:00:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1905,1793,'Customer Notification (ID: 605853abc2fe2)',0,'2024-04-03 22:00:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(1906,1794,'Akismet Spam Filter',0,'2024-04-04 22:37:38','This entry has been flagged as spam.','user',''),(1907,1795,'Akismet Spam Filter',0,'2024-04-05 00:54:03','This entry has been flagged as spam.','user',''),(1908,1796,'Akismet Spam Filter',0,'2024-04-05 01:05:06','This entry has been flagged as spam.','user',''),(1909,1797,'Akismet Spam Filter',0,'2024-04-05 10:51:44','This entry has been flagged as spam.','user',''),(1910,1798,'Akismet Spam Filter',0,'2024-04-05 14:23:29','This entry has been flagged as spam.','user',''),(1911,1799,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-04-06 08:20:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1912,1799,'Customer Notification (ID: 605853abc2fe2)',0,'2024-04-06 08:21:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(1913,1800,'Akismet Spam Filter',0,'2024-04-07 04:03:40','This entry has been flagged as spam.','user',''),(1914,1801,'Akismet Spam Filter',0,'2024-04-08 17:39:11','This entry has been flagged as spam.','user',''),(1915,1802,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-04-09 09:21:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(1916,1802,'Customer Notification (ID: 605853abc2fe2)',0,'2024-04-09 09:21:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(1917,1803,'Akismet Spam Filter',0,'2024-04-09 15:59:53','This entry has been flagged as spam.','user',''),(1918,1804,'Akismet Spam Filter',0,'2024-04-10 08:44:42','This entry has been flagged as spam.','user',''),(1919,1805,'Akismet Spam Filter',0,'2024-04-10 16:02:34','This entry has been flagged as spam.','user',''),(1920,1806,'Akismet Spam Filter',0,'2024-04-10 17:35:47','This entry has been flagged as spam.','user',''),(1921,1807,'Akismet Spam Filter',0,'2024-04-10 18:40:21','This entry has been flagged as spam.','user',''),(1922,1808,'Akismet Spam Filter',0,'2024-04-10 22:00:52','This entry has been flagged as spam.','user',''),(1923,1809,'Akismet Spam Filter',0,'2024-04-11 03:04:53','This entry has been flagged as spam.','user',''),(1924,1810,'Akismet Spam Filter',0,'2024-04-11 05:00:43','This entry has been flagged as spam.','user',''),(1925,1811,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-04-11 05:50:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(1926,1811,'Customer Notification (ID: 605853abc2fe2)',0,'2024-04-11 05:50:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(1927,1812,'Akismet Spam Filter',0,'2024-04-11 06:19:11','This entry has been flagged as spam.','user',''),(1928,1813,'Akismet Spam Filter',0,'2024-04-11 11:29:55','This entry has been flagged as spam.','user',''),(1929,1814,'Akismet Spam Filter',0,'2024-04-11 20:55:42','This entry has been flagged as spam.','user',''),(1930,1815,'Akismet Spam Filter',0,'2024-04-13 04:00:36','This entry has been flagged as spam.','user',''),(1931,1816,'Akismet Spam Filter',0,'2024-04-13 04:26:29','This entry has been flagged as spam.','user',''),(1932,1817,'Akismet Spam Filter',0,'2024-04-13 20:18:07','This entry has been flagged as spam.','user',''),(1933,1818,'Akismet Spam Filter',0,'2024-04-14 02:20:25','This entry has been flagged as spam.','user',''),(1934,1819,'Akismet Spam Filter',0,'2024-04-14 12:19:43','This entry has been flagged as spam.','user',''),(1935,1820,'Akismet Spam Filter',0,'2024-04-14 13:23:53','This entry has been flagged as spam.','user',''),(1936,1821,'Akismet Spam Filter',0,'2024-04-14 20:50:18','This entry has been flagged as spam.','user',''),(1937,1822,'Akismet Spam Filter',0,'2024-04-15 01:31:54','This entry has been flagged as spam.','user',''),(1938,1823,'Akismet Spam Filter',0,'2024-04-15 23:44:51','This entry has been flagged as spam.','user',''),(1939,1824,'Akismet Spam Filter',0,'2024-04-16 04:57:05','This entry has been flagged as spam.','user',''),(1940,1825,'Akismet Spam Filter',0,'2024-04-16 11:47:18','This entry has been flagged as spam.','user',''),(1941,1826,'Akismet Spam Filter',0,'2024-04-16 20:17:45','This entry has been flagged as spam.','user',''),(1942,1827,'Akismet Spam Filter',0,'2024-04-16 22:29:08','This entry has been flagged as spam.','user',''),(1943,1828,'Akismet Spam Filter',0,'2024-04-17 03:19:07','This entry has been flagged as spam.','user',''),(1944,1829,'Akismet Spam Filter',0,'2024-04-17 12:06:51','This entry has been flagged as spam.','user',''),(1945,1830,'Akismet Spam Filter',0,'2024-04-17 12:13:47','This entry has been flagged as spam.','user',''),(1946,1831,'Akismet Spam Filter',0,'2024-04-17 15:33:49','This entry has been flagged as spam.','user',''),(1947,1832,'Akismet Spam Filter',0,'2024-04-18 04:54:18','This entry has been flagged as spam.','user',''),(1948,1833,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-04-18 05:41:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(1949,1833,'Customer Notification (ID: 605853abc2fe2)',0,'2024-04-18 05:41:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(1950,1834,'Akismet Spam Filter',0,'2024-04-19 03:55:27','This entry has been flagged as spam.','user',''),(1951,1835,'Akismet Spam Filter',0,'2024-05-13 13:24:21','This entry has been flagged as spam.','user',''),(1952,1836,'Akismet Spam Filter',0,'2024-05-13 17:39:03','This entry has been flagged as spam.','user',''),(1953,1837,'Akismet Spam Filter',0,'2024-05-13 19:50:09','This entry has been flagged as spam.','user',''),(1954,1838,'Akismet Spam Filter',0,'2024-05-14 00:07:05','This entry has been flagged as spam.','user',''),(1955,1839,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-14 00:38:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(1956,1839,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-14 00:38:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(1957,1840,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-14 05:23:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1958,1840,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-14 05:23:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1959,1841,'Akismet Spam Filter',0,'2024-05-14 06:14:22','This entry has been flagged as spam.','user',''),(1960,1842,'Akismet Spam Filter',0,'2024-05-14 06:59:46','This entry has been flagged as spam.','user',''),(1961,1843,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-14 09:10:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1962,1843,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-14 09:10:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1963,1844,'Akismet Spam Filter',0,'2024-05-14 19:51:44','This entry has been flagged as spam.','user',''),(1964,1845,'Akismet Spam Filter',0,'2024-05-14 20:09:21','This entry has been flagged as spam.','user',''),(1965,1846,'Akismet Spam Filter',0,'2024-05-16 03:37:29','This entry has been flagged as spam.','user',''),(1966,1847,'Akismet Spam Filter',0,'2024-05-16 06:32:09','This entry has been flagged as spam.','user',''),(1967,1848,'Akismet Spam Filter',0,'2024-05-16 07:15:14','This entry has been flagged as spam.','user',''),(1968,1849,'Akismet Spam Filter',0,'2024-05-17 09:38:25','This entry has been flagged as spam.','user',''),(1969,1850,'Akismet Spam Filter',0,'2024-05-17 13:58:11','This entry has been flagged as spam.','user',''),(1970,1851,'Akismet Spam Filter',0,'2024-05-18 11:06:19','This entry has been flagged as spam.','user',''),(1971,1852,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-18 11:26:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(1972,1852,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-18 11:26:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(1973,1853,'Akismet Spam Filter',0,'2024-05-18 17:39:54','This entry has been flagged as spam.','user',''),(1974,1854,'Akismet Spam Filter',0,'2024-05-19 06:05:10','This entry has been flagged as spam.','user',''),(1975,1855,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-20 03:21:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1976,1855,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-20 03:22:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(1977,1856,'Akismet Spam Filter',0,'2024-05-20 08:32:40','This entry has been flagged as spam.','user',''),(1978,1857,'Akismet Spam Filter',0,'2024-05-20 11:29:22','This entry has been flagged as spam.','user',''),(1979,1858,'Akismet Spam Filter',0,'2024-05-20 16:53:40','This entry has been flagged as spam.','user',''),(1980,1859,'Akismet Spam Filter',0,'2024-05-20 17:25:50','This entry has been flagged as spam.','user',''),(1981,1860,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-21 01:32:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(1982,1860,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-21 01:32:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(1983,1861,'Akismet Spam Filter',0,'2024-05-21 07:33:47','This entry has been flagged as spam.','user',''),(1984,1862,'Akismet Spam Filter',0,'2024-05-21 12:01:49','This entry has been flagged as spam.','user',''),(1985,1863,'Akismet Spam Filter',0,'2024-05-22 03:46:52','This entry has been flagged as spam.','user',''),(1986,1864,'Akismet Spam Filter',0,'2024-05-22 05:56:23','This entry has been flagged as spam.','user',''),(1987,1865,'Akismet Spam Filter',0,'2024-05-22 15:21:31','This entry has been flagged as spam.','user',''),(1988,1866,'Akismet Spam Filter',0,'2024-05-22 19:28:35','This entry has been flagged as spam.','user',''),(1989,1867,'Akismet Spam Filter',0,'2024-05-23 02:09:42','This entry has been flagged as spam.','user',''),(1990,1868,'Akismet Spam Filter',0,'2024-05-23 23:06:11','This entry has been flagged as spam.','user',''),(1991,1869,'Akismet Spam Filter',0,'2024-05-24 12:52:14','This entry has been flagged as spam.','user',''),(1992,1870,'Akismet Spam Filter',0,'2024-05-24 16:58:55','This entry has been flagged as spam.','user',''),(1993,1871,'Akismet Spam Filter',0,'2024-05-24 17:18:40','This entry has been flagged as spam.','user',''),(1994,1872,'Akismet Spam Filter',0,'2024-05-25 03:13:19','This entry has been flagged as spam.','user',''),(1995,1873,'Akismet Spam Filter',0,'2024-05-25 04:24:50','This entry has been flagged as spam.','user',''),(1996,1874,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-25 21:23:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1997,1874,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-25 21:23:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1998,1875,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-25 21:23:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(1999,1875,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-25 21:23:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(2000,1876,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-25 21:23:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(2001,1876,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-25 21:23:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(2002,1877,'Akismet Spam Filter',0,'2024-05-25 21:24:26','This entry has been flagged as spam.','user',''),(2003,1878,'Akismet Spam Filter',0,'2024-05-26 05:17:17','This entry has been flagged as spam.','user',''),(2004,1879,'Akismet Spam Filter',0,'2024-05-26 15:58:02','This entry has been flagged as spam.','user',''),(2005,1880,'Akismet Spam Filter',0,'2024-05-27 02:42:00','This entry has been flagged as spam.','user',''),(2006,1881,'Akismet Spam Filter',0,'2024-05-27 02:57:34','This entry has been flagged as spam.','user',''),(2007,1882,'Akismet Spam Filter',0,'2024-05-27 11:08:21','This entry has been flagged as spam.','user',''),(2008,1883,'Akismet Spam Filter',0,'2024-05-27 12:52:34','This entry has been flagged as spam.','user',''),(2009,1884,'Akismet Spam Filter',0,'2024-05-28 01:43:30','This entry has been flagged as spam.','user',''),(2010,1885,'Akismet Spam Filter',0,'2024-05-29 00:07:22','This entry has been flagged as spam.','user',''),(2011,1886,'Akismet Spam Filter',0,'2024-05-29 01:48:04','This entry has been flagged as spam.','user',''),(2012,1887,'Akismet Spam Filter',0,'2024-05-29 02:52:24','This entry has been flagged as spam.','user',''),(2013,1888,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-05-29 04:34:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(2014,1888,'Customer Notification (ID: 605853abc2fe2)',0,'2024-05-29 04:34:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(2015,1889,'Akismet Spam Filter',0,'2024-05-30 10:49:38','This entry has been flagged as spam.','user',''),(2016,1890,'Akismet Spam Filter',0,'2024-05-30 16:27:20','This entry has been flagged as spam.','user',''),(2017,1891,'Akismet Spam Filter',0,'2024-05-30 18:02:15','This entry has been flagged as spam.','user',''),(2018,1892,'Akismet Spam Filter',0,'2024-05-31 01:42:09','This entry has been flagged as spam.','user',''),(2019,1893,'Akismet Spam Filter',0,'2024-05-31 03:46:46','This entry has been flagged as spam.','user',''),(2020,1894,'Akismet Spam Filter',0,'2024-05-31 22:25:34','This entry has been flagged as spam.','user',''),(2021,1895,'Akismet Spam Filter',0,'2024-06-01 09:14:08','This entry has been flagged as spam.','user',''),(2022,1896,'Akismet Spam Filter',0,'2024-06-01 22:01:20','This entry has been flagged as spam.','user',''),(2023,1897,'Akismet Spam Filter',0,'2024-06-02 12:06:27','This entry has been flagged as spam.','user',''),(2024,1898,'Akismet Spam Filter',0,'2024-06-02 13:33:06','This entry has been flagged as spam.','user',''),(2025,1899,'Akismet Spam Filter',0,'2024-06-02 17:10:54','This entry has been flagged as spam.','user',''),(2026,1900,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-02 23:38:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(2027,1900,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-02 23:38:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(2028,1901,'Akismet Spam Filter',0,'2024-06-03 09:49:35','This entry has been flagged as spam.','user',''),(2029,1902,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-04 04:41:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(2030,1902,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-04 04:41:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(2031,1903,'Akismet Spam Filter',0,'2024-06-04 06:19:21','This entry has been flagged as spam.','user',''),(2032,1904,'Akismet Spam Filter',0,'2024-06-04 07:18:11','This entry has been flagged as spam.','user',''),(2033,1905,'Akismet Spam Filter',0,'2024-06-04 07:50:34','This entry has been flagged as spam.','user',''),(2034,1906,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-04 08:39:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(2035,1906,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-04 08:39:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(2036,1907,'Akismet Spam Filter',0,'2024-06-04 21:29:45','This entry has been flagged as spam.','user',''),(2037,1908,'Akismet Spam Filter',0,'2024-06-05 01:21:54','This entry has been flagged as spam.','user',''),(2038,1909,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-05 01:58:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(2039,1909,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-05 01:58:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(2040,1910,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-05 01:59:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(2041,1910,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-05 01:59:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(2042,1911,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-05 02:40:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(2043,1911,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-05 02:40:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(2044,1912,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-05 02:40:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(2045,1912,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-05 02:40:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(2046,1913,'Akismet Spam Filter',0,'2024-06-05 09:54:20','This entry has been flagged as spam.','user',''),(2047,1914,'Akismet Spam Filter',0,'2024-06-06 10:14:34','This entry has been flagged as spam.','user',''),(2048,1915,'Akismet Spam Filter',0,'2024-06-06 10:51:11','This entry has been flagged as spam.','user',''),(2049,1916,'Akismet Spam Filter',0,'2024-06-06 19:05:50','This entry has been flagged as spam.','user',''),(2050,1917,'Akismet Spam Filter',0,'2024-06-06 20:58:23','This entry has been flagged as spam.','user',''),(2051,1918,'Akismet Spam Filter',0,'2024-06-07 05:38:49','This entry has been flagged as spam.','user',''),(2052,1919,'Akismet Spam Filter',0,'2024-06-07 09:42:47','This entry has been flagged as spam.','user',''),(2053,1920,'Akismet Spam Filter',0,'2024-06-07 17:24:44','This entry has been flagged as spam.','user',''),(2054,1921,'Akismet Spam Filter',0,'2024-06-08 14:34:11','This entry has been flagged as spam.','user',''),(2055,1922,'Akismet Spam Filter',0,'2024-06-08 17:31:00','This entry has been flagged as spam.','user',''),(2056,1923,'Akismet Spam Filter',0,'2024-06-09 07:35:35','This entry has been flagged as spam.','user',''),(2057,1924,'Akismet Spam Filter',0,'2024-06-09 10:39:06','This entry has been flagged as spam.','user',''),(2058,1925,'Akismet Spam Filter',0,'2024-06-09 13:23:35','This entry has been flagged as spam.','user',''),(2059,1926,'Akismet Spam Filter',0,'2024-06-09 13:44:09','This entry has been flagged as spam.','user',''),(2060,1927,'Akismet Spam Filter',0,'2024-06-09 14:27:21','This entry has been flagged as spam.','user',''),(2061,1928,'Akismet Spam Filter',0,'2024-06-09 22:16:03','This entry has been flagged as spam.','user',''),(2062,1929,'Akismet Spam Filter',0,'2024-06-09 23:00:12','This entry has been flagged as spam.','user',''),(2063,1930,'Akismet Spam Filter',0,'2024-06-10 03:41:54','This entry has been flagged as spam.','user',''),(2064,1931,'Akismet Spam Filter',0,'2024-06-10 04:30:10','This entry has been flagged as spam.','user',''),(2065,1932,'Akismet Spam Filter',0,'2024-06-10 12:52:58','This entry has been flagged as spam.','user',''),(2066,1933,'Akismet Spam Filter',0,'2024-06-10 16:35:39','This entry has been flagged as spam.','user',''),(2067,1934,'Akismet Spam Filter',0,'2024-06-11 01:40:35','This entry has been flagged as spam.','user',''),(2068,1935,'Akismet Spam Filter',0,'2024-06-12 04:32:48','This entry has been flagged as spam.','user',''),(2069,1936,'Akismet Spam Filter',0,'2024-06-12 04:51:46','This entry has been flagged as spam.','user',''),(2070,1937,'Akismet Spam Filter',0,'2024-06-12 06:57:13','This entry has been flagged as spam.','user',''),(2071,1938,'Akismet Spam Filter',0,'2024-06-12 09:53:57','This entry has been flagged as spam.','user',''),(2072,1939,'Akismet Spam Filter',0,'2024-06-12 10:18:26','This entry has been flagged as spam.','user',''),(2073,1940,'Akismet Spam Filter',0,'2024-06-12 13:22:28','This entry has been flagged as spam.','user',''),(2074,1941,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-12 17:49:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(2075,1941,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-12 17:49:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(2076,1942,'Akismet Spam Filter',0,'2024-06-13 00:59:39','This entry has been flagged as spam.','user',''),(2077,1943,'Akismet Spam Filter',0,'2024-06-13 09:43:55','This entry has been flagged as spam.','user',''),(2078,1944,'Akismet Spam Filter',0,'2024-06-13 13:45:32','This entry has been flagged as spam.','user',''),(2079,1945,'Akismet Spam Filter',0,'2024-06-13 17:55:16','This entry has been flagged as spam.','user',''),(2080,1946,'Akismet Spam Filter',0,'2024-06-14 18:50:37','This entry has been flagged as spam.','user',''),(2081,1947,'Akismet Spam Filter',0,'2024-06-15 01:09:07','This entry has been flagged as spam.','user',''),(2082,1948,'Akismet Spam Filter',0,'2024-06-15 05:58:15','This entry has been flagged as spam.','user',''),(2083,1949,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-15 19:02:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(2084,1949,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-15 19:02:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(2085,1950,'Akismet Spam Filter',0,'2024-06-16 05:49:00','This entry has been flagged as spam.','user',''),(2086,1951,'Akismet Spam Filter',0,'2024-06-16 21:16:40','This entry has been flagged as spam.','user',''),(2087,1952,'Akismet Spam Filter',0,'2024-06-17 00:17:13','This entry has been flagged as spam.','user',''),(2088,1953,'Akismet Spam Filter',0,'2024-06-17 04:00:45','This entry has been flagged as spam.','user',''),(2089,1954,'Akismet Spam Filter',0,'2024-06-17 09:45:46','This entry has been flagged as spam.','user',''),(2090,1955,'Akismet Spam Filter',0,'2024-06-17 22:40:32','This entry has been flagged as spam.','user',''),(2091,1956,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-18 00:40:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(2092,1956,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-18 00:40:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(2093,1957,'Akismet Spam Filter',0,'2024-06-18 15:24:17','This entry has been flagged as spam.','user',''),(2094,1958,'Akismet Spam Filter',0,'2024-06-18 15:44:55','This entry has been flagged as spam.','user',''),(2095,1959,'Akismet Spam Filter',0,'2024-06-18 18:40:56','This entry has been flagged as spam.','user',''),(2096,1960,'Akismet Spam Filter',0,'2024-06-19 17:32:58','This entry has been flagged as spam.','user',''),(2097,1961,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-19 22:38:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(2098,1961,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-19 22:38:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(2099,1962,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-20 04:05:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(2100,1962,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-20 04:05:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(2101,1963,'Akismet Spam Filter',0,'2024-06-20 06:10:33','This entry has been flagged as spam.','user',''),(2102,1964,'Akismet Spam Filter',0,'2024-06-21 06:32:23','This entry has been flagged as spam.','user',''),(2103,1965,'Akismet Spam Filter',0,'2024-06-21 14:09:02','This entry has been flagged as spam.','user',''),(2104,1966,'Akismet Spam Filter',0,'2024-06-21 14:26:46','This entry has been flagged as spam.','user',''),(2105,1967,'Akismet Spam Filter',0,'2024-06-22 14:06:23','This entry has been flagged as spam.','user',''),(2106,1968,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-23 10:22:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(2107,1968,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-23 10:22:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(2108,1969,'Akismet Spam Filter',0,'2024-06-23 11:58:00','This entry has been flagged as spam.','user',''),(2109,1970,'Akismet Spam Filter',0,'2024-06-23 19:45:58','This entry has been flagged as spam.','user',''),(2110,1971,'Akismet Spam Filter',0,'2024-06-23 21:24:30','This entry has been flagged as spam.','user',''),(2111,1972,'Akismet Spam Filter',0,'2024-06-23 22:08:31','This entry has been flagged as spam.','user',''),(2112,1973,'Akismet Spam Filter',0,'2024-06-23 22:39:10','This entry has been flagged as spam.','user',''),(2113,1974,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-24 01:37:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(2114,1974,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-24 01:37:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(2115,1975,'Akismet Spam Filter',0,'2024-06-24 02:21:34','This entry has been flagged as spam.','user',''),(2116,1976,'Akismet Spam Filter',0,'2024-06-25 15:50:21','This entry has been flagged as spam.','user',''),(2117,1977,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-25 23:01:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(2118,1977,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-25 23:01:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(2119,1978,'Akismet Spam Filter',0,'2024-06-26 06:49:34','This entry has been flagged as spam.','user',''),(2120,1979,'Akismet Spam Filter',0,'2024-06-26 08:57:33','This entry has been flagged as spam.','user',''),(2121,1980,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-06-26 21:37:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(2122,1980,'Customer Notification (ID: 605853abc2fe2)',0,'2024-06-26 21:37:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(2123,1981,'Akismet Spam Filter',0,'2024-06-27 00:59:55','This entry has been flagged as spam.','user',''),(2124,1982,'Akismet Spam Filter',0,'2024-06-27 18:53:09','This entry has been flagged as spam.','user',''),(2125,1983,'Akismet Spam Filter',0,'2024-06-28 10:34:19','This entry has been flagged as spam.','user',''),(2126,1984,'Akismet Spam Filter',0,'2024-06-28 12:30:39','This entry has been flagged as spam.','user',''),(2127,1985,'Akismet Spam Filter',0,'2024-06-28 17:43:27','This entry has been flagged as spam.','user',''),(2128,1986,'Akismet Spam Filter',0,'2024-06-28 22:45:25','This entry has been flagged as spam.','user',''),(2129,1987,'Akismet Spam Filter',0,'2024-06-30 01:35:24','This entry has been flagged as spam.','user',''),(2130,1988,'Akismet Spam Filter',0,'2024-06-30 09:58:52','This entry has been flagged as spam.','user',''),(2131,1989,'Akismet Spam Filter',0,'2024-06-30 12:59:15','This entry has been flagged as spam.','user',''),(2132,1990,'Akismet Spam Filter',0,'2024-06-30 19:57:35','This entry has been flagged as spam.','user',''),(2133,1991,'Akismet Spam Filter',0,'2024-07-01 08:30:41','This entry has been flagged as spam.','user',''),(2134,1992,'Akismet Spam Filter',0,'2024-07-01 16:26:10','This entry has been flagged as spam.','user',''),(2135,1993,'Akismet Spam Filter',0,'2024-07-01 18:59:58','This entry has been flagged as spam.','user',''),(2136,1994,'Akismet Spam Filter',0,'2024-07-01 19:12:16','This entry has been flagged as spam.','user',''),(2137,1995,'Akismet Spam Filter',0,'2024-07-01 19:13:05','This entry has been flagged as spam.','user',''),(2138,1996,'Akismet Spam Filter',0,'2024-07-01 20:16:27','This entry has been flagged as spam.','user',''),(2139,1997,'Akismet Spam Filter',0,'2024-07-02 00:48:43','This entry has been flagged as spam.','user',''),(2140,1998,'Akismet Spam Filter',0,'2024-07-02 05:13:48','This entry has been flagged as spam.','user',''),(2141,1999,'Akismet Spam Filter',0,'2024-07-02 12:28:29','This entry has been flagged as spam.','user',''),(2142,2000,'Akismet Spam Filter',0,'2024-07-02 18:47:24','This entry has been flagged as spam.','user',''),(2143,2001,'Akismet Spam Filter',0,'2024-07-03 07:21:47','This entry has been flagged as spam.','user',''),(2144,2002,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-07-04 04:17:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(2145,2002,'Customer Notification (ID: 605853abc2fe2)',0,'2024-07-04 04:17:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(2146,2003,'Akismet Spam Filter',0,'2024-07-04 04:21:46','This entry has been flagged as spam.','user',''),(2147,2004,'Akismet Spam Filter',0,'2024-07-04 06:45:01','This entry has been flagged as spam.','user',''),(2148,2005,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-07-04 22:36:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(2149,2005,'Customer Notification (ID: 605853abc2fe2)',0,'2024-07-04 22:36:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(2150,2006,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-07-05 01:52:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(2151,2006,'Customer Notification (ID: 605853abc2fe2)',0,'2024-07-05 01:52:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(2152,2007,'Akismet Spam Filter',0,'2024-07-05 05:39:48','This entry has been flagged as spam.','user',''),(2153,2008,'Akismet Spam Filter',0,'2024-07-06 04:15:57','This entry has been flagged as spam.','user',''),(2154,2009,'Akismet Spam Filter',0,'2024-07-06 23:51:41','This entry has been flagged as spam.','user',''),(2155,2010,'Akismet Spam Filter',0,'2024-07-07 01:40:07','This entry has been flagged as spam.','user',''),(2156,2011,'Akismet Spam Filter',0,'2024-07-07 01:50:21','This entry has been flagged as spam.','user',''),(2157,2012,'Akismet Spam Filter',0,'2024-07-07 06:32:12','This entry has been flagged as spam.','user',''),(2158,2013,'Akismet Spam Filter',0,'2024-07-07 11:22:10','This entry has been flagged as spam.','user',''),(2159,2014,'Akismet Spam Filter',0,'2024-07-07 16:57:49','This entry has been flagged as spam.','user',''),(2160,2015,'Akismet Spam Filter',0,'2024-07-07 19:32:21','This entry has been flagged as spam.','user',''),(2161,2016,'Akismet Spam Filter',0,'2024-07-08 01:59:24','This entry has been flagged as spam.','user',''),(2162,2017,'Akismet Spam Filter',0,'2024-07-08 09:29:52','This entry has been flagged as spam.','user',''),(2163,2018,'Akismet Spam Filter',0,'2024-07-08 18:44:44','This entry has been flagged as spam.','user',''),(2164,2019,'Akismet Spam Filter',0,'2024-07-09 03:44:04','This entry has been flagged as spam.','user',''),(2165,2020,'Akismet Spam Filter',0,'2024-07-09 12:49:55','This entry has been flagged as spam.','user',''),(2166,2021,'Akismet Spam Filter',0,'2024-07-09 14:41:15','This entry has been flagged as spam.','user',''),(2167,2022,'Akismet Spam Filter',0,'2024-07-09 19:43:03','This entry has been flagged as spam.','user',''),(2168,2023,'Akismet Spam Filter',0,'2024-07-09 23:49:21','This entry has been flagged as spam.','user',''),(2169,2024,'Akismet Spam Filter',0,'2024-07-10 07:13:52','This entry has been flagged as spam.','user',''),(2170,2025,'Akismet Spam Filter',0,'2024-07-10 15:36:09','This entry has been flagged as spam.','user',''),(2171,2026,'Akismet Spam Filter',0,'2024-07-10 20:40:55','This entry has been flagged as spam.','user',''),(2172,2027,'Akismet Spam Filter',0,'2024-07-11 05:40:36','This entry has been flagged as spam.','user',''),(2173,2028,'Akismet Spam Filter',0,'2024-07-11 05:46:41','This entry has been flagged as spam.','user',''),(2174,2029,'Akismet Spam Filter',0,'2024-07-11 07:14:40','This entry has been flagged as spam.','user',''),(2175,2030,'Akismet Spam Filter',0,'2024-07-11 08:13:44','This entry has been flagged as spam.','user',''),(2176,2031,'Akismet Spam Filter',0,'2024-07-11 08:38:49','This entry has been flagged as spam.','user',''),(2177,2032,'Akismet Spam Filter',0,'2024-07-11 09:52:13','This entry has been flagged as spam.','user',''),(2178,2033,'Akismet Spam Filter',0,'2024-07-11 14:22:48','This entry has been flagged as spam.','user',''),(2179,2034,'Akismet Spam Filter',0,'2024-07-11 17:09:16','This entry has been flagged as spam.','user',''),(2180,2035,'Akismet Spam Filter',0,'2024-07-11 21:10:30','This entry has been flagged as spam.','user',''),(2181,2036,'Akismet Spam Filter',0,'2024-07-12 01:37:26','This entry has been flagged as spam.','user',''),(2182,2037,'Akismet Spam Filter',0,'2024-07-12 03:25:21','This entry has been flagged as spam.','user',''),(2183,2038,'Akismet Spam Filter',0,'2024-07-12 06:22:44','This entry has been flagged as spam.','user',''),(2184,2039,'Akismet Spam Filter',0,'2024-07-12 06:38:08','This entry has been flagged as spam.','user',''),(2185,2040,'Akismet Spam Filter',0,'2024-07-12 12:18:10','This entry has been flagged as spam.','user',''),(2186,2041,'Akismet Spam Filter',0,'2024-07-12 14:07:24','This entry has been flagged as spam.','user',''),(2187,2042,'Akismet Spam Filter',0,'2024-07-12 16:21:41','This entry has been flagged as spam.','user',''),(2188,2043,'Akismet Spam Filter',0,'2024-07-12 18:41:25','This entry has been flagged as spam.','user',''),(2189,2044,'Akismet Spam Filter',0,'2024-07-12 22:02:55','This entry has been flagged as spam.','user',''),(2190,2045,'Akismet Spam Filter',0,'2024-07-13 00:50:59','This entry has been flagged as spam.','user',''),(2191,2046,'Akismet Spam Filter',0,'2024-07-13 00:51:09','This entry has been flagged as spam.','user',''),(2192,2047,'Akismet Spam Filter',0,'2024-07-13 01:07:34','This entry has been flagged as spam.','user',''),(2193,2048,'Akismet Spam Filter',0,'2024-07-13 01:44:35','This entry has been flagged as spam.','user',''),(2194,2049,'Akismet Spam Filter',0,'2024-07-13 14:46:39','This entry has been flagged as spam.','user',''),(2195,2050,'Akismet Spam Filter',0,'2024-07-13 18:31:43','This entry has been flagged as spam.','user',''),(2196,2051,'Akismet Spam Filter',0,'2024-07-13 21:14:14','This entry has been flagged as spam.','user',''),(2197,2052,'Akismet Spam Filter',0,'2024-07-14 01:35:04','This entry has been flagged as spam.','user',''),(2198,2053,'Akismet Spam Filter',0,'2024-07-14 05:24:06','This entry has been flagged as spam.','user',''),(2199,2054,'Akismet Spam Filter',0,'2024-07-14 12:40:10','This entry has been flagged as spam.','user',''),(2200,2055,'Akismet Spam Filter',0,'2024-07-14 18:26:11','This entry has been flagged as spam.','user',''),(2201,2056,'Akismet Spam Filter',0,'2024-07-15 01:14:45','This entry has been flagged as spam.','user',''),(2202,2057,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-07-15 08:10:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(2203,2057,'Customer Notification (ID: 605853abc2fe2)',0,'2024-07-15 08:10:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(2204,2058,'Akismet Spam Filter',0,'2024-07-15 11:24:28','This entry has been flagged as spam.','user',''),(2205,2059,'Akismet Spam Filter',0,'2024-07-16 11:46:29','This entry has been flagged as spam.','user',''),(2206,2060,'Akismet Spam Filter',0,'2024-07-17 01:49:27','This entry has been flagged as spam.','user',''),(2207,2061,'Akismet Spam Filter',0,'2024-07-17 09:55:39','This entry has been flagged as spam.','user',''),(2208,2062,'Akismet Spam Filter',0,'2024-07-17 13:33:16','This entry has been flagged as spam.','user',''),(2209,2063,'Akismet Spam Filter',0,'2024-07-17 13:40:06','This entry has been flagged as spam.','user',''),(2210,2064,'Akismet Spam Filter',0,'2024-07-17 21:08:46','This entry has been flagged as spam.','user',''),(2211,2065,'Akismet Spam Filter',0,'2024-07-17 21:26:46','This entry has been flagged as spam.','user',''),(2212,2066,'Akismet Spam Filter',0,'2024-07-18 18:03:08','This entry has been flagged as spam.','user',''),(2213,2067,'Akismet Spam Filter',0,'2024-07-18 20:03:08','This entry has been flagged as spam.','user',''),(2214,2068,'Akismet Spam Filter',0,'2024-07-19 01:35:12','This entry has been flagged as spam.','user',''),(2215,2069,'Akismet Spam Filter',0,'2024-07-19 04:37:25','This entry has been flagged as spam.','user',''),(2216,2070,'Akismet Spam Filter',0,'2024-07-19 08:30:58','This entry has been flagged as spam.','user',''),(2217,2071,'Akismet Spam Filter',0,'2024-07-19 11:45:50','This entry has been flagged as spam.','user',''),(2218,2072,'Akismet Spam Filter',0,'2024-07-19 13:11:04','This entry has been flagged as spam.','user',''),(2219,2073,'Akismet Spam Filter',0,'2024-07-19 14:31:03','This entry has been flagged as spam.','user',''),(2220,2074,'Akismet Spam Filter',0,'2024-07-20 11:12:20','This entry has been flagged as spam.','user',''),(2221,2075,'Akismet Spam Filter',0,'2024-07-20 12:13:07','This entry has been flagged as spam.','user',''),(2222,2076,'Akismet Spam Filter',0,'2024-07-20 12:36:57','This entry has been flagged as spam.','user',''),(2223,2077,'Akismet Spam Filter',0,'2024-07-21 20:00:20','This entry has been flagged as spam.','user',''),(2224,2078,'Akismet Spam Filter',0,'2024-07-21 20:28:47','This entry has been flagged as spam.','user',''),(2225,2079,'Akismet Spam Filter',0,'2024-07-21 20:30:59','This entry has been flagged as spam.','user',''),(2226,2080,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-07-21 21:32:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(2227,2080,'Customer Notification (ID: 605853abc2fe2)',0,'2024-07-21 21:32:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(2228,2081,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-07-22 03:24:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(2229,2081,'Customer Notification (ID: 605853abc2fe2)',0,'2024-07-22 03:24:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(2230,2082,'Akismet Spam Filter',0,'2024-07-22 10:38:03','This entry has been flagged as spam.','user',''),(2231,2083,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-07-22 20:58:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(2232,2083,'Customer Notification (ID: 605853abc2fe2)',0,'2024-07-22 20:58:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(2233,2084,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-07-23 00:58:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(2234,2084,'Customer Notification (ID: 605853abc2fe2)',0,'2024-07-23 00:58:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(2235,2085,'Akismet Spam Filter',0,'2024-07-23 14:55:48','This entry has been flagged as spam.','user',''),(2236,2086,'Akismet Spam Filter',0,'2024-07-23 14:58:01','This entry has been flagged as spam.','user',''),(2237,2087,'Akismet Spam Filter',0,'2024-07-23 19:04:24','This entry has been flagged as spam.','user',''),(2238,2088,'Akismet Spam Filter',0,'2024-07-23 20:22:51','This entry has been flagged as spam.','user',''),(2239,2089,'Akismet Spam Filter',0,'2024-07-24 12:18:52','This entry has been flagged as spam.','user',''),(2240,2090,'Akismet Spam Filter',0,'2024-07-24 19:21:21','This entry has been flagged as spam.','user',''),(2241,2091,'Akismet Spam Filter',0,'2024-07-25 00:18:02','This entry has been flagged as spam.','user',''),(2242,2092,'Akismet Spam Filter',0,'2024-07-25 02:28:51','This entry has been flagged as spam.','user',''),(2243,2093,'Akismet Spam Filter',0,'2024-07-25 03:53:29','This entry has been flagged as spam.','user',''),(2244,2094,'Akismet Spam Filter',0,'2024-07-25 18:54:06','This entry has been flagged as spam.','user',''),(2245,2095,'Akismet Spam Filter',0,'2024-07-27 04:46:00','This entry has been flagged as spam.','user',''),(2246,2096,'Akismet Spam Filter',0,'2024-07-27 14:38:37','This entry has been flagged as spam.','user',''),(2247,2097,'Akismet Spam Filter',0,'2024-07-27 18:02:12','This entry has been flagged as spam.','user',''),(2248,2098,'Akismet Spam Filter',0,'2024-07-28 02:03:40','This entry has been flagged as spam.','user',''),(2249,2099,'Akismet Spam Filter',0,'2024-07-28 08:08:03','This entry has been flagged as spam.','user',''),(2250,2100,'Akismet Spam Filter',0,'2024-07-28 08:49:30','This entry has been flagged as spam.','user',''),(2251,2101,'Akismet Spam Filter',0,'2024-07-28 12:44:44','This entry has been flagged as spam.','user',''),(2252,2102,'Akismet Spam Filter',0,'2024-07-28 15:43:37','This entry has been flagged as spam.','user',''),(2253,2103,'Akismet Spam Filter',0,'2024-07-28 21:17:33','This entry has been flagged as spam.','user',''),(2254,2104,'Akismet Spam Filter',0,'2024-07-29 00:40:10','This entry has been flagged as spam.','user',''),(2255,2105,'Akismet Spam Filter',0,'2024-07-29 04:33:20','This entry has been flagged as spam.','user',''),(2256,2106,'Akismet Spam Filter',0,'2024-07-29 12:30:07','This entry has been flagged as spam.','user',''),(2257,2107,'Akismet Spam Filter',0,'2024-07-29 18:55:28','This entry has been flagged as spam.','user',''),(2258,2108,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-07-29 23:39:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(2259,2108,'Customer Notification (ID: 605853abc2fe2)',0,'2024-07-29 23:39:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(2260,2109,'Akismet Spam Filter',0,'2024-07-30 04:16:54','This entry has been flagged as spam.','user',''),(2261,2110,'Akismet Spam Filter',0,'2024-07-30 23:19:14','This entry has been flagged as spam.','user',''),(2262,2111,'Akismet Spam Filter',0,'2024-07-30 23:39:16','This entry has been flagged as spam.','user',''),(2263,2112,'Akismet Spam Filter',0,'2024-07-31 10:36:16','This entry has been flagged as spam.','user',''),(2264,2113,'Akismet Spam Filter',0,'2024-07-31 12:00:55','This entry has been flagged as spam.','user',''),(2265,2114,'Akismet Spam Filter',0,'2024-07-31 17:43:12','This entry has been flagged as spam.','user',''),(2266,2115,'Akismet Spam Filter',0,'2024-07-31 18:27:19','This entry has been flagged as spam.','user',''),(2267,2116,'Akismet Spam Filter',0,'2024-07-31 20:11:35','This entry has been flagged as spam.','user',''),(2268,2117,'Akismet Spam Filter',0,'2024-07-31 20:41:05','This entry has been flagged as spam.','user',''),(2269,2118,'Akismet Spam Filter',0,'2024-08-01 04:18:32','This entry has been flagged as spam.','user',''),(2270,2119,'Akismet Spam Filter',0,'2024-08-01 06:21:25','This entry has been flagged as spam.','user',''),(2271,2120,'Akismet Spam Filter',0,'2024-08-01 08:28:52','This entry has been flagged as spam.','user',''),(2272,2121,'Akismet Spam Filter',0,'2024-08-01 09:25:32','This entry has been flagged as spam.','user',''),(2273,2122,'Akismet Spam Filter',0,'2024-08-01 18:41:48','This entry has been flagged as spam.','user',''),(2274,2123,'Akismet Spam Filter',0,'2024-08-01 22:20:17','This entry has been flagged as spam.','user',''),(2275,2124,'Akismet Spam Filter',0,'2024-08-02 22:03:53','This entry has been flagged as spam.','user',''),(2276,2125,'Akismet Spam Filter',0,'2024-08-02 23:48:35','This entry has been flagged as spam.','user',''),(2277,2126,'Akismet Spam Filter',0,'2024-08-02 23:54:47','This entry has been flagged as spam.','user',''),(2278,2127,'Akismet Spam Filter',0,'2024-08-03 00:11:31','This entry has been flagged as spam.','user',''),(2279,2128,'Akismet Spam Filter',0,'2024-08-03 01:06:25','This entry has been flagged as spam.','user',''),(2280,2129,'Akismet Spam Filter',0,'2024-08-03 01:40:45','This entry has been flagged as spam.','user',''),(2281,2130,'Akismet Spam Filter',0,'2024-08-04 05:32:44','This entry has been flagged as spam.','user',''),(2282,2131,'Akismet Spam Filter',0,'2024-08-04 19:33:46','This entry has been flagged as spam.','user',''),(2283,2132,'Akismet Spam Filter',0,'2024-08-04 21:24:53','This entry has been flagged as spam.','user',''),(2284,2133,'Akismet Spam Filter',0,'2024-08-05 02:47:14','This entry has been flagged as spam.','user',''),(2285,2134,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-08-05 16:11:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(2286,2134,'Customer Notification (ID: 605853abc2fe2)',0,'2024-08-05 16:11:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(2287,2135,'Akismet Spam Filter',0,'2024-08-05 17:25:15','This entry has been flagged as spam.','user',''),(2288,2136,'Akismet Spam Filter',0,'2024-08-05 19:34:12','This entry has been flagged as spam.','user',''),(2289,2137,'Akismet Spam Filter',0,'2024-08-05 22:15:03','This entry has been flagged as spam.','user',''),(2290,2138,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-08-06 03:04:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(2291,2138,'Customer Notification (ID: 605853abc2fe2)',0,'2024-08-06 03:04:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(2292,2139,'Akismet Spam Filter',0,'2024-08-06 04:23:43','This entry has been flagged as spam.','user',''),(2293,2140,'Akismet Spam Filter',0,'2024-08-06 04:26:47','This entry has been flagged as spam.','user',''),(2294,2141,'Akismet Spam Filter',0,'2024-08-06 06:12:26','This entry has been flagged as spam.','user',''),(2295,2142,'Akismet Spam Filter',0,'2024-08-06 16:53:13','This entry has been flagged as spam.','user',''),(2296,2143,'Akismet Spam Filter',0,'2024-08-07 06:39:24','This entry has been flagged as spam.','user',''),(2297,2144,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-08-07 10:41:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(2298,2144,'Customer Notification (ID: 605853abc2fe2)',0,'2024-08-07 10:41:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(2299,2145,'Akismet Spam Filter',0,'2024-08-07 15:57:01','This entry has been flagged as spam.','user',''),(2300,2146,'Akismet Spam Filter',0,'2024-08-08 05:20:01','This entry has been flagged as spam.','user',''),(2301,2147,'Akismet Spam Filter',0,'2024-08-08 05:33:16','This entry has been flagged as spam.','user',''),(2302,2148,'Akismet Spam Filter',0,'2024-08-08 13:07:49','This entry has been flagged as spam.','user',''),(2303,2149,'Akismet Spam Filter',0,'2024-08-08 13:12:13','This entry has been flagged as spam.','user',''),(2304,2150,'Akismet Spam Filter',0,'2024-08-08 16:51:58','This entry has been flagged as spam.','user',''),(2305,2151,'Akismet Spam Filter',0,'2024-08-08 20:07:30','This entry has been flagged as spam.','user',''),(2306,2152,'Akismet Spam Filter',0,'2024-08-08 22:31:55','This entry has been flagged as spam.','user',''),(2307,2153,'Akismet Spam Filter',0,'2024-08-09 12:59:56','This entry has been flagged as spam.','user',''),(2308,2154,'Akismet Spam Filter',0,'2024-08-09 16:56:59','This entry has been flagged as spam.','user',''),(2309,2155,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-08-09 20:22:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(2310,2155,'Customer Notification (ID: 605853abc2fe2)',0,'2024-08-09 20:22:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(2311,2156,'Akismet Spam Filter',0,'2024-08-09 22:03:13','This entry has been flagged as spam.','user',''),(2312,2157,'Akismet Spam Filter',0,'2024-08-10 00:00:05','This entry has been flagged as spam.','user',''),(2313,2158,'Akismet Spam Filter',0,'2024-08-10 00:18:32','This entry has been flagged as spam.','user',''),(2314,2159,'Akismet Spam Filter',0,'2024-08-10 03:46:04','This entry has been flagged as spam.','user',''),(2315,2160,'Akismet Spam Filter',0,'2024-08-10 03:59:49','This entry has been flagged as spam.','user',''),(2316,2161,'Akismet Spam Filter',0,'2024-08-10 06:10:21','This entry has been flagged as spam.','user',''),(2317,2162,'Akismet Spam Filter',0,'2024-08-11 00:28:56','This entry has been flagged as spam.','user',''),(2318,2163,'Akismet Spam Filter',0,'2024-08-11 13:59:25','This entry has been flagged as spam.','user',''),(2319,2164,'Akismet Spam Filter',0,'2024-08-12 02:23:08','This entry has been flagged as spam.','user',''),(2320,2165,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-08-12 10:48:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(2321,2165,'Customer Notification (ID: 605853abc2fe2)',0,'2024-08-12 10:48:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(2322,2166,'Akismet Spam Filter',0,'2024-08-13 03:42:28','This entry has been flagged as spam.','user',''),(2323,2167,'Akismet Spam Filter',0,'2024-08-13 03:46:44','This entry has been flagged as spam.','user',''),(2324,2168,'Akismet Spam Filter',0,'2024-08-13 06:47:34','This entry has been flagged as spam.','user',''),(2325,2169,'Akismet Spam Filter',0,'2024-08-13 19:35:29','This entry has been flagged as spam.','user',''),(2326,2170,'Akismet Spam Filter',0,'2024-08-14 17:11:01','This entry has been flagged as spam.','user',''),(2327,2171,'Akismet Spam Filter',0,'2024-08-14 23:32:04','This entry has been flagged as spam.','user',''),(2328,2172,'Akismet Spam Filter',0,'2024-08-15 04:41:21','This entry has been flagged as spam.','user',''),(2329,2173,'Akismet Spam Filter',0,'2024-08-15 20:56:38','This entry has been flagged as spam.','user',''),(2330,2174,'Akismet Spam Filter',0,'2024-08-15 22:47:15','This entry has been flagged as spam.','user',''),(2331,2175,'Akismet Spam Filter',0,'2024-08-15 23:05:59','This entry has been flagged as spam.','user',''),(2332,2176,'Akismet Spam Filter',0,'2024-08-16 03:11:33','This entry has been flagged as spam.','user',''),(2333,2177,'Akismet Spam Filter',0,'2024-08-16 10:40:00','This entry has been flagged as spam.','user',''),(2334,2178,'Akismet Spam Filter',0,'2024-08-17 03:18:29','This entry has been flagged as spam.','user',''),(2335,2179,'Akismet Spam Filter',0,'2024-08-17 08:47:08','This entry has been flagged as spam.','user',''),(2336,2180,'Akismet Spam Filter',0,'2024-08-18 13:50:21','This entry has been flagged as spam.','user',''),(2337,2181,'Akismet Spam Filter',0,'2024-08-18 22:18:25','This entry has been flagged as spam.','user',''),(2338,2182,'Akismet Spam Filter',0,'2024-08-19 00:13:38','This entry has been flagged as spam.','user',''),(2339,2183,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-08-19 02:58:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(2340,2183,'Customer Notification (ID: 605853abc2fe2)',0,'2024-08-19 02:58:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(2341,2184,'Akismet Spam Filter',0,'2024-08-19 04:36:14','This entry has been flagged as spam.','user',''),(2342,2185,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-08-19 21:43:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(2343,2185,'Customer Notification (ID: 605853abc2fe2)',0,'2024-08-19 21:43:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(2344,2186,'Akismet Spam Filter',0,'2024-08-19 22:59:09','This entry has been flagged as spam.','user',''),(2345,2187,'Akismet Spam Filter',0,'2024-08-20 18:53:48','This entry has been flagged as spam.','user',''),(2346,2188,'Akismet Spam Filter',0,'2024-08-20 21:35:59','This entry has been flagged as spam.','user',''),(2347,2189,'Akismet Spam Filter',0,'2024-08-20 22:37:39','This entry has been flagged as spam.','user',''),(2348,2190,'Akismet Spam Filter',0,'2024-08-20 23:27:59','This entry has been flagged as spam.','user',''),(2349,2191,'Akismet Spam Filter',0,'2024-08-21 14:27:10','This entry has been flagged as spam.','user',''),(2350,2192,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-08-21 22:22:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(2351,2192,'Customer Notification (ID: 605853abc2fe2)',0,'2024-08-21 22:22:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(2352,2193,'Akismet Spam Filter',0,'2024-08-22 06:17:36','This entry has been flagged as spam.','user',''),(2353,2194,'Akismet Spam Filter',0,'2024-08-23 08:42:18','This entry has been flagged as spam.','user',''),(2354,2195,'Akismet Spam Filter',0,'2024-08-23 15:05:12','This entry has been flagged as spam.','user',''),(2355,2196,'Akismet Spam Filter',0,'2024-08-24 03:04:51','This entry has been flagged as spam.','user',''),(2356,2197,'Akismet Spam Filter',0,'2024-08-24 03:04:56','This entry has been flagged as spam.','user',''),(2357,2198,'Akismet Spam Filter',0,'2024-08-24 19:26:47','This entry has been flagged as spam.','user',''),(2358,2199,'Akismet Spam Filter',0,'2024-08-25 01:22:29','This entry has been flagged as spam.','user',''),(2359,2200,'Akismet Spam Filter',0,'2024-08-25 07:42:27','This entry has been flagged as spam.','user',''),(2360,2201,'Akismet Spam Filter',0,'2024-08-25 23:16:02','This entry has been flagged as spam.','user',''),(2361,2202,'Akismet Spam Filter',0,'2024-08-26 06:33:02','This entry has been flagged as spam.','user',''),(2362,2203,'Akismet Spam Filter',0,'2024-08-26 16:22:34','This entry has been flagged as spam.','user',''),(2363,2204,'Akismet Spam Filter',0,'2024-08-26 16:48:49','This entry has been flagged as spam.','user',''),(2364,2205,'Akismet Spam Filter',0,'2024-08-27 00:36:52','This entry has been flagged as spam.','user',''),(2365,2206,'Akismet Spam Filter',0,'2024-08-27 21:03:45','This entry has been flagged as spam.','user',''),(2366,2207,'Akismet Spam Filter',0,'2024-08-28 10:54:24','This entry has been flagged as spam.','user',''),(2367,2208,'Akismet Spam Filter',0,'2024-08-29 01:22:19','This entry has been flagged as spam.','user',''),(2368,2209,'Akismet Spam Filter',0,'2024-08-29 12:26:04','This entry has been flagged as spam.','user',''),(2369,2210,'Akismet Spam Filter',0,'2024-08-29 19:14:02','This entry has been flagged as spam.','user',''),(2370,2211,'Akismet Spam Filter',0,'2024-08-30 00:27:59','This entry has been flagged as spam.','user',''),(2371,2212,'Akismet Spam Filter',0,'2024-08-30 05:42:20','This entry has been flagged as spam.','user',''),(2372,2213,'Akismet Spam Filter',0,'2024-08-30 19:53:38','This entry has been flagged as spam.','user',''),(2373,2214,'Akismet Spam Filter',0,'2024-08-31 03:15:30','This entry has been flagged as spam.','user',''),(2374,2215,'Akismet Spam Filter',0,'2024-08-31 13:46:02','This entry has been flagged as spam.','user',''),(2375,2216,'Akismet Spam Filter',0,'2024-09-01 01:43:48','This entry has been flagged as spam.','user',''),(2376,2217,'Akismet Spam Filter',0,'2024-09-01 12:59:23','This entry has been flagged as spam.','user',''),(2377,2218,'Akismet Spam Filter',0,'2024-09-01 21:16:17','This entry has been flagged as spam.','user',''),(2378,2219,'Akismet Spam Filter',0,'2024-09-01 22:52:09','This entry has been flagged as spam.','user',''),(2379,2220,'Akismet Spam Filter',0,'2024-09-02 01:42:46','This entry has been flagged as spam.','user',''),(2380,2221,'Akismet Spam Filter',0,'2024-09-02 23:30:38','This entry has been flagged as spam.','user',''),(2381,2222,'Akismet Spam Filter',0,'2024-09-03 07:16:48','This entry has been flagged as spam.','user',''),(2382,2223,'Akismet Spam Filter',0,'2024-09-03 08:06:18','This entry has been flagged as spam.','user',''),(2383,2224,'Akismet Spam Filter',0,'2024-09-03 08:17:45','This entry has been flagged as spam.','user',''),(2384,2225,'Akismet Spam Filter',0,'2024-09-03 08:30:10','This entry has been flagged as spam.','user',''),(2385,2226,'Akismet Spam Filter',0,'2024-09-04 09:56:34','This entry has been flagged as spam.','user',''),(2386,2227,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-04 22:03:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(2387,2227,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-04 22:03:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(2388,2228,'Akismet Spam Filter',0,'2024-09-04 23:11:11','This entry has been flagged as spam.','user',''),(2389,2229,'Akismet Spam Filter',0,'2024-09-06 17:51:15','This entry has been flagged as spam.','user',''),(2390,2230,'Akismet Spam Filter',0,'2024-09-06 19:47:23','This entry has been flagged as spam.','user',''),(2391,2231,'Akismet Spam Filter',0,'2024-09-06 21:56:05','This entry has been flagged as spam.','user',''),(2392,2232,'Akismet Spam Filter',0,'2024-09-06 22:03:23','This entry has been flagged as spam.','user',''),(2393,2233,'Akismet Spam Filter',0,'2024-09-07 04:00:05','This entry has been flagged as spam.','user',''),(2394,2234,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-08 06:43:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(2395,2234,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-08 06:43:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(2396,2235,'Akismet Spam Filter',0,'2024-09-08 17:05:47','This entry has been flagged as spam.','user',''),(2397,2236,'Akismet Spam Filter',0,'2024-09-09 00:24:50','This entry has been flagged as spam.','user',''),(2398,2237,'Akismet Spam Filter',0,'2024-09-09 05:28:57','This entry has been flagged as spam.','user',''),(2399,2238,'Akismet Spam Filter',0,'2024-09-09 05:56:43','This entry has been flagged as spam.','user',''),(2400,2239,'Akismet Spam Filter',0,'2024-09-10 07:46:13','This entry has been flagged as spam.','user',''),(2401,2240,'Akismet Spam Filter',0,'2024-09-10 14:09:03','This entry has been flagged as spam.','user',''),(2402,2241,'Akismet Spam Filter',0,'2024-09-10 14:29:56','This entry has been flagged as spam.','user',''),(2403,2242,'Akismet Spam Filter',0,'2024-09-11 04:17:12','This entry has been flagged as spam.','user',''),(2404,2243,'Akismet Spam Filter',0,'2024-09-11 13:28:50','This entry has been flagged as spam.','user',''),(2405,2244,'Akismet Spam Filter',0,'2024-09-12 06:01:32','This entry has been flagged as spam.','user',''),(2406,2245,'Akismet Spam Filter',0,'2024-09-12 06:48:57','This entry has been flagged as spam.','user',''),(2407,2246,'Akismet Spam Filter',0,'2024-09-12 17:42:21','This entry has been flagged as spam.','user',''),(2408,2247,'Akismet Spam Filter',0,'2024-09-12 18:10:37','This entry has been flagged as spam.','user',''),(2409,2248,'Akismet Spam Filter',0,'2024-09-12 23:20:11','This entry has been flagged as spam.','user',''),(2410,2249,'Akismet Spam Filter',0,'2024-09-13 00:23:33','This entry has been flagged as spam.','user',''),(2411,2250,'Akismet Spam Filter',0,'2024-09-13 02:09:36','This entry has been flagged as spam.','user',''),(2412,2251,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-13 04:44:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(2413,2251,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-13 04:44:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(2414,2252,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-13 04:53:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(2415,2252,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-13 04:54:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(2416,2253,'Akismet Spam Filter',0,'2024-09-13 15:30:19','This entry has been flagged as spam.','user',''),(2417,2254,'Akismet Spam Filter',0,'2024-09-14 03:21:01','This entry has been flagged as spam.','user',''),(2418,2255,'Akismet Spam Filter',0,'2024-09-14 05:59:56','This entry has been flagged as spam.','user',''),(2419,2256,'Akismet Spam Filter',0,'2024-09-14 07:05:03','This entry has been flagged as spam.','user',''),(2420,2257,'Akismet Spam Filter',0,'2024-09-14 17:21:32','This entry has been flagged as spam.','user',''),(2421,2258,'Akismet Spam Filter',0,'2024-09-15 17:01:41','This entry has been flagged as spam.','user',''),(2422,2259,'Akismet Spam Filter',0,'2024-09-16 00:22:51','This entry has been flagged as spam.','user',''),(2423,2260,'Akismet Spam Filter',0,'2024-09-16 04:56:39','This entry has been flagged as spam.','user',''),(2424,2261,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-17 09:21:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(2425,2261,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-17 09:21:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(2426,2262,'Akismet Spam Filter',0,'2024-09-17 13:15:49','This entry has been flagged as spam.','user',''),(2427,2263,'Akismet Spam Filter',0,'2024-09-17 19:06:11','This entry has been flagged as spam.','user',''),(2428,2264,'Akismet Spam Filter',0,'2024-09-18 05:31:21','This entry has been flagged as spam.','user',''),(2429,2265,'Akismet Spam Filter',0,'2024-09-18 07:25:30','This entry has been flagged as spam.','user',''),(2430,2266,'Akismet Spam Filter',0,'2024-09-18 22:22:31','This entry has been flagged as spam.','user',''),(2431,2267,'Akismet Spam Filter',0,'2024-09-19 04:55:43','This entry has been flagged as spam.','user',''),(2432,2268,'Akismet Spam Filter',0,'2024-09-19 06:57:16','This entry has been flagged as spam.','user',''),(2433,2269,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-19 08:09:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(2434,2269,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-19 08:09:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(2435,2270,'Akismet Spam Filter',0,'2024-09-19 22:41:43','This entry has been flagged as spam.','user',''),(2436,2271,'Akismet Spam Filter',0,'2024-09-20 04:29:36','This entry has been flagged as spam.','user',''),(2437,2272,'Akismet Spam Filter',0,'2024-09-20 11:24:51','This entry has been flagged as spam.','user',''),(2438,2273,'Akismet Spam Filter',0,'2024-09-20 22:49:06','This entry has been flagged as spam.','user',''),(2439,2274,'Akismet Spam Filter',0,'2024-09-21 11:15:11','This entry has been flagged as spam.','user',''),(2440,2275,'Akismet Spam Filter',0,'2024-09-22 17:45:34','This entry has been flagged as spam.','user',''),(2441,2276,'Akismet Spam Filter',0,'2024-09-23 05:56:53','This entry has been flagged as spam.','user',''),(2442,2277,'Akismet Spam Filter',0,'2024-09-23 10:47:06','This entry has been flagged as spam.','user',''),(2443,2278,'Akismet Spam Filter',0,'2024-09-23 16:20:56','This entry has been flagged as spam.','user',''),(2444,2279,'Akismet Spam Filter',0,'2024-09-23 21:44:13','This entry has been flagged as spam.','user',''),(2445,2280,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-24 00:42:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(2446,2280,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-24 00:42:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(2447,2281,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-24 00:45:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(2448,2281,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-24 00:45:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(2449,2282,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-24 00:45:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(2450,2282,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-24 00:45:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(2451,2283,'Akismet Spam Filter',0,'2024-09-24 03:40:37','This entry has been flagged as spam.','user',''),(2452,2284,'Akismet Spam Filter',0,'2024-09-24 04:05:37','This entry has been flagged as spam.','user',''),(2453,2285,'Akismet Spam Filter',0,'2024-09-24 05:00:41','This entry has been flagged as spam.','user',''),(2454,2286,'Akismet Spam Filter',0,'2024-09-24 05:45:32','This entry has been flagged as spam.','user',''),(2455,2287,'Akismet Spam Filter',0,'2024-09-24 06:41:56','This entry has been flagged as spam.','user',''),(2456,2288,'Akismet Spam Filter',0,'2024-09-24 11:15:18','This entry has been flagged as spam.','user',''),(2457,2289,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-25 03:27:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(2458,2289,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-25 03:27:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(2459,2290,'Akismet Spam Filter',0,'2024-09-25 11:14:29','This entry has been flagged as spam.','user',''),(2460,2291,'Akismet Spam Filter',0,'2024-09-25 16:34:21','This entry has been flagged as spam.','user',''),(2461,2292,'Akismet Spam Filter',0,'2024-09-25 19:43:29','This entry has been flagged as spam.','user',''),(2462,2293,'Akismet Spam Filter',0,'2024-09-26 05:31:58','This entry has been flagged as spam.','user',''),(2463,2294,'Akismet Spam Filter',0,'2024-09-26 06:27:26','This entry has been flagged as spam.','user',''),(2464,2295,'Akismet Spam Filter',0,'2024-09-26 07:36:21','This entry has been flagged as spam.','user',''),(2465,2296,'Akismet Spam Filter',0,'2024-09-26 08:57:19','This entry has been flagged as spam.','user',''),(2466,2297,'Akismet Spam Filter',0,'2024-09-26 11:46:31','This entry has been flagged as spam.','user',''),(2467,2298,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-26 23:06:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(2468,2298,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-26 23:06:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(2469,2299,'Akismet Spam Filter',0,'2024-09-27 05:04:49','This entry has been flagged as spam.','user',''),(2470,2300,'Akismet Spam Filter',0,'2024-09-27 08:20:49','This entry has been flagged as spam.','user',''),(2471,2301,'Akismet Spam Filter',0,'2024-09-27 10:13:57','This entry has been flagged as spam.','user',''),(2472,2302,'Akismet Spam Filter',0,'2024-09-27 20:12:45','This entry has been flagged as spam.','user',''),(2473,2303,'Akismet Spam Filter',0,'2024-09-29 02:52:32','This entry has been flagged as spam.','user',''),(2474,2304,'Akismet Spam Filter',0,'2024-09-29 08:07:41','This entry has been flagged as spam.','user',''),(2475,2305,'Akismet Spam Filter',0,'2024-09-30 00:43:48','This entry has been flagged as spam.','user',''),(2476,2306,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-09-30 07:56:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(2477,2306,'Customer Notification (ID: 605853abc2fe2)',0,'2024-09-30 07:56:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(2478,2307,'Akismet Spam Filter',0,'2024-09-30 12:19:45','This entry has been flagged as spam.','user',''),(2479,2308,'Akismet Spam Filter',0,'2024-09-30 19:14:19','This entry has been flagged as spam.','user',''),(2480,2309,'Akismet Spam Filter',0,'2024-10-01 06:42:23','This entry has been flagged as spam.','user',''),(2481,2310,'Akismet Spam Filter',0,'2024-10-02 01:32:57','This entry has been flagged as spam.','user',''),(2482,2311,'Akismet Spam Filter',0,'2024-10-02 07:43:05','This entry has been flagged as spam.','user',''),(2483,2312,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-10-02 07:56:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(2484,2312,'Customer Notification (ID: 605853abc2fe2)',0,'2024-10-02 07:56:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(2485,2313,'Akismet Spam Filter',0,'2024-10-02 09:12:18','This entry has been flagged as spam.','user',''),(2486,2314,'Akismet Spam Filter',0,'2024-10-02 15:15:40','This entry has been flagged as spam.','user',''),(2487,2315,'Akismet Spam Filter',0,'2024-10-03 02:28:07','This entry has been flagged as spam.','user',''),(2488,2316,'Akismet Spam Filter',0,'2024-10-03 05:11:15','This entry has been flagged as spam.','user',''),(2489,2317,'Akismet Spam Filter',0,'2024-10-03 07:02:30','This entry has been flagged as spam.','user',''),(2490,2318,'Akismet Spam Filter',0,'2024-10-03 09:49:25','This entry has been flagged as spam.','user',''),(2491,2319,'Akismet Spam Filter',0,'2024-10-03 11:39:16','This entry has been flagged as spam.','user',''),(2492,2320,'Akismet Spam Filter',0,'2024-10-03 22:12:13','This entry has been flagged as spam.','user',''),(2493,2321,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-10-04 00:32:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(2494,2321,'Customer Notification (ID: 605853abc2fe2)',0,'2024-10-04 00:32:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(2495,2322,'Akismet Spam Filter',0,'2024-10-04 00:44:24','This entry has been flagged as spam.','user',''),(2496,2323,'Akismet Spam Filter',0,'2024-10-04 01:42:15','This entry has been flagged as spam.','user',''),(2497,2324,'Akismet Spam Filter',0,'2024-10-04 05:26:11','This entry has been flagged as spam.','user',''),(2498,2325,'Akismet Spam Filter',0,'2024-10-04 12:25:12','This entry has been flagged as spam.','user',''),(2499,2326,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-10-04 18:34:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(2500,2326,'Customer Notification (ID: 605853abc2fe2)',0,'2024-10-04 18:34:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(2501,2327,'Akismet Spam Filter',0,'2024-10-05 10:20:36','This entry has been flagged as spam.','user',''),(2502,2328,'Akismet Spam Filter',0,'2024-10-06 00:40:33','This entry has been flagged as spam.','user',''),(2503,2329,'Akismet Spam Filter',0,'2024-10-06 06:57:46','This entry has been flagged as spam.','user',''),(2504,2330,'Akismet Spam Filter',0,'2024-10-07 02:44:47','This entry has been flagged as spam.','user',''),(2505,2331,'Akismet Spam Filter',0,'2024-10-07 02:57:14','This entry has been flagged as spam.','user',''),(2506,2332,'Akismet Spam Filter',0,'2024-10-07 07:34:33','This entry has been flagged as spam.','user',''),(2507,2333,'Akismet Spam Filter',0,'2024-10-08 05:47:58','This entry has been flagged as spam.','user',''),(2508,2334,'Akismet Spam Filter',0,'2024-10-08 06:41:58','This entry has been flagged as spam.','user',''),(2509,2335,'Akismet Spam Filter',0,'2024-10-08 21:08:41','This entry has been flagged as spam.','user',''),(2510,2336,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-10-08 22:34:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(2511,2336,'Customer Notification (ID: 605853abc2fe2)',0,'2024-10-08 22:34:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(2512,2337,'Akismet Spam Filter',0,'2024-10-09 09:14:38','This entry has been flagged as spam.','user',''),(2513,2338,'Akismet Spam Filter',0,'2024-10-09 15:38:59','This entry has been flagged as spam.','user',''),(2514,2339,'Akismet Spam Filter',0,'2024-10-09 20:44:38','This entry has been flagged as spam.','user',''),(2515,2340,'Akismet Spam Filter',0,'2024-10-10 16:34:52','This entry has been flagged as spam.','user',''),(2516,2341,'Akismet Spam Filter',0,'2024-10-10 21:27:33','This entry has been flagged as spam.','user',''),(2517,2342,'Akismet Spam Filter',0,'2024-10-10 21:45:58','This entry has been flagged as spam.','user',''),(2518,2343,'Akismet Spam Filter',0,'2024-10-10 22:20:08','This entry has been flagged as spam.','user',''),(2519,2344,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-10-11 05:56:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(2520,2344,'Customer Notification (ID: 605853abc2fe2)',0,'2024-10-11 05:56:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(2521,2345,'Akismet Spam Filter',0,'2024-10-11 18:32:58','This entry has been flagged as spam.','user',''),(2522,2346,'Akismet Spam Filter',0,'2024-10-11 22:18:06','This entry has been flagged as spam.','user',''),(2523,2347,'Akismet Spam Filter',0,'2024-10-12 00:44:14','This entry has been flagged as spam.','user',''),(2524,2348,'Akismet Spam Filter',0,'2024-10-12 10:29:49','This entry has been flagged as spam.','user',''),(2525,2349,'Akismet Spam Filter',0,'2024-10-12 18:21:18','This entry has been flagged as spam.','user',''),(2526,2350,'Akismet Spam Filter',0,'2024-10-13 14:34:20','This entry has been flagged as spam.','user',''),(2527,2351,'Akismet Spam Filter',0,'2024-10-13 20:18:50','This entry has been flagged as spam.','user',''),(2528,2352,'Akismet Spam Filter',0,'2024-10-13 20:22:34','This entry has been flagged as spam.','user',''),(2529,2353,'Akismet Spam Filter',0,'2024-10-13 20:51:08','This entry has been flagged as spam.','user',''),(2530,2354,'Akismet Spam Filter',0,'2024-10-14 04:25:21','This entry has been flagged as spam.','user',''),(2531,2355,'Akismet Spam Filter',0,'2024-10-14 04:55:29','This entry has been flagged as spam.','user',''),(2532,2356,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-10-14 06:16:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(2533,2356,'Customer Notification (ID: 605853abc2fe2)',0,'2024-10-14 06:16:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(2534,2357,'Akismet Spam Filter',0,'2024-10-14 11:43:37','This entry has been flagged as spam.','user',''),(2535,2358,'Akismet Spam Filter',0,'2024-10-15 01:52:03','This entry has been flagged as spam.','user',''),(2536,2359,'Akismet Spam Filter',0,'2024-10-15 15:51:51','This entry has been flagged as spam.','user',''),(2537,2360,'Akismet Spam Filter',0,'2024-10-15 19:05:29','This entry has been flagged as spam.','user',''),(2538,2361,'Akismet Spam Filter',0,'2024-10-15 22:29:31','This entry has been flagged as spam.','user',''),(2539,2362,'Akismet Spam Filter',0,'2024-10-16 01:32:46','This entry has been flagged as spam.','user',''),(2540,2363,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-10-16 01:56:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(2541,2363,'Customer Notification (ID: 605853abc2fe2)',0,'2024-10-16 01:56:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(2542,2364,'Akismet Spam Filter',0,'2024-10-16 02:18:51','This entry has been flagged as spam.','user',''),(2543,2365,'Akismet Spam Filter',0,'2024-10-16 04:46:11','This entry has been flagged as spam.','user',''),(2544,2366,'Akismet Spam Filter',0,'2024-10-17 00:02:32','This entry has been flagged as spam.','user',''),(2545,2367,'Akismet Spam Filter',0,'2024-10-17 02:31:51','This entry has been flagged as spam.','user',''),(2546,2368,'Akismet Spam Filter',0,'2024-10-17 19:05:16','This entry has been flagged as spam.','user',''),(2547,2369,'Akismet Spam Filter',0,'2024-10-17 20:07:02','This entry has been flagged as spam.','user',''),(2548,2370,'Akismet Spam Filter',0,'2024-10-17 23:58:22','This entry has been flagged as spam.','user',''),(2549,2371,'Akismet Spam Filter',0,'2024-10-18 15:14:59','This entry has been flagged as spam.','user',''),(2550,2372,'Akismet Spam Filter',0,'2024-10-19 06:00:22','This entry has been flagged as spam.','user',''),(2551,2373,'Akismet Spam Filter',0,'2024-10-19 11:29:21','This entry has been flagged as spam.','user',''),(2552,2374,'Akismet Spam Filter',0,'2024-10-20 00:49:46','This entry has been flagged as spam.','user',''),(2553,2375,'Akismet Spam Filter',0,'2024-10-20 18:51:54','This entry has been flagged as spam.','user',''),(2554,2376,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-10-21 02:43:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(2555,2376,'Customer Notification (ID: 605853abc2fe2)',0,'2024-10-21 02:43:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(2556,2377,'Akismet Spam Filter',0,'2024-10-22 13:34:11','This entry has been flagged as spam.','user',''),(2557,2378,'Akismet Spam Filter',0,'2024-10-24 07:55:04','This entry has been flagged as spam.','user',''),(2558,2379,'Akismet Spam Filter',0,'2024-10-24 15:20:43','This entry has been flagged as spam.','user',''),(2559,2380,'Akismet Spam Filter',0,'2024-10-25 13:59:37','This entry has been flagged as spam.','user',''),(2560,2381,'Akismet Spam Filter',0,'2024-10-25 18:41:10','This entry has been flagged as spam.','user',''),(2561,2382,'Akismet Spam Filter',0,'2024-10-26 10:03:58','This entry has been flagged as spam.','user',''),(2562,2383,'Akismet Spam Filter',0,'2024-10-27 01:01:32','This entry has been flagged as spam.','user',''),(2563,2384,'Akismet Spam Filter',0,'2024-10-27 02:41:54','This entry has been flagged as spam.','user',''),(2564,2385,'Akismet Spam Filter',0,'2024-10-27 05:03:08','This entry has been flagged as spam.','user',''),(2565,2386,'Akismet Spam Filter',0,'2024-10-27 09:12:06','This entry has been flagged as spam.','user',''),(2566,2387,'Akismet Spam Filter',0,'2024-10-27 13:10:44','This entry has been flagged as spam.','user',''),(2567,2388,'Akismet Spam Filter',0,'2024-10-27 13:35:58','This entry has been flagged as spam.','user',''),(2568,2389,'Akismet Spam Filter',0,'2024-10-27 23:29:08','This entry has been flagged as spam.','user',''),(2569,2390,'Akismet Spam Filter',0,'2024-10-28 10:08:40','This entry has been flagged as spam.','user',''),(2570,2391,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-10-28 22:35:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(2571,2391,'Customer Notification (ID: 605853abc2fe2)',0,'2024-10-28 22:35:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(2572,2392,'Akismet Spam Filter',0,'2024-10-28 23:27:00','This entry has been flagged as spam.','user',''),(2573,2393,'Akismet Spam Filter',0,'2024-10-28 23:53:32','This entry has been flagged as spam.','user',''),(2574,2394,'Akismet Spam Filter',0,'2024-10-29 04:34:20','This entry has been flagged as spam.','user',''),(2575,2395,'Akismet Spam Filter',0,'2024-10-29 15:56:30','This entry has been flagged as spam.','user',''),(2576,2396,'Akismet Spam Filter',0,'2024-10-29 18:16:03','This entry has been flagged as spam.','user',''),(2577,2397,'Akismet Spam Filter',0,'2024-10-29 21:47:41','This entry has been flagged as spam.','user',''),(2578,2398,'Akismet Spam Filter',0,'2024-10-29 23:12:01','This entry has been flagged as spam.','user',''),(2579,2399,'Akismet Spam Filter',0,'2024-10-30 02:30:55','This entry has been flagged as spam.','user',''),(2580,2400,'Akismet Spam Filter',0,'2024-10-30 08:35:46','This entry has been flagged as spam.','user',''),(2581,2401,'Akismet Spam Filter',0,'2024-10-30 12:21:16','This entry has been flagged as spam.','user',''),(2582,2402,'Akismet Spam Filter',0,'2024-10-30 16:50:32','This entry has been flagged as spam.','user',''),(2583,2403,'Akismet Spam Filter',0,'2024-10-31 08:52:42','This entry has been flagged as spam.','user',''),(2584,2404,'Akismet Spam Filter',0,'2024-10-31 15:01:23','This entry has been flagged as spam.','user',''),(2585,2405,'Akismet Spam Filter',0,'2024-11-01 09:45:29','This entry has been flagged as spam.','user',''),(2586,2406,'Akismet Spam Filter',0,'2024-11-01 15:41:23','This entry has been flagged as spam.','user',''),(2587,2407,'Akismet Spam Filter',0,'2024-11-01 23:10:06','This entry has been flagged as spam.','user',''),(2588,2408,'Akismet Spam Filter',0,'2024-11-02 11:47:32','This entry has been flagged as spam.','user',''),(2589,2409,'Akismet Spam Filter',0,'2024-11-02 11:56:47','This entry has been flagged as spam.','user',''),(2590,2410,'Akismet Spam Filter',0,'2024-11-02 21:34:13','This entry has been flagged as spam.','user',''),(2591,2411,'Akismet Spam Filter',0,'2024-11-03 05:43:45','This entry has been flagged as spam.','user',''),(2592,2412,'Akismet Spam Filter',0,'2024-11-03 06:01:21','This entry has been flagged as spam.','user',''),(2593,2413,'Akismet Spam Filter',0,'2024-11-03 21:06:58','This entry has been flagged as spam.','user',''),(2594,2414,'Akismet Spam Filter',0,'2024-11-03 22:17:12','This entry has been flagged as spam.','user',''),(2595,2415,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-04 08:11:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(2596,2415,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-04 08:11:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(2597,2416,'Akismet Spam Filter',0,'2024-11-04 09:42:40','This entry has been flagged as spam.','user',''),(2598,2417,'Akismet Spam Filter',0,'2024-11-04 14:04:43','This entry has been flagged as spam.','user',''),(2599,2418,'Akismet Spam Filter',0,'2024-11-04 14:15:01','This entry has been flagged as spam.','user',''),(2600,2419,'Akismet Spam Filter',0,'2024-11-04 18:03:46','This entry has been flagged as spam.','user',''),(2601,2420,'Akismet Spam Filter',0,'2024-11-04 21:40:44','This entry has been flagged as spam.','user',''),(2602,2421,'Akismet Spam Filter',0,'2024-11-05 11:07:46','This entry has been flagged as spam.','user',''),(2603,2422,'Akismet Spam Filter',0,'2024-11-05 12:11:42','This entry has been flagged as spam.','user',''),(2604,2423,'Akismet Spam Filter',0,'2024-11-05 19:18:28','This entry has been flagged as spam.','user',''),(2605,2424,'Akismet Spam Filter',0,'2024-11-05 19:23:31','This entry has been flagged as spam.','user',''),(2606,2425,'Akismet Spam Filter',0,'2024-11-05 19:42:02','This entry has been flagged as spam.','user',''),(2607,2426,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-05 23:50:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(2608,2426,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-05 23:50:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(2609,2427,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-05 23:50:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(2610,2427,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-05 23:50:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(2611,2428,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-05 23:50:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(2612,2428,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-05 23:50:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(2613,2429,'Akismet Spam Filter',0,'2024-11-05 23:50:21','This entry has been flagged as spam.','user',''),(2614,2430,'Akismet Spam Filter',0,'2024-11-05 23:50:22','This entry has been flagged as spam.','user',''),(2615,2431,'Akismet Spam Filter',0,'2024-11-05 23:50:22','This entry has been flagged as spam.','user',''),(2616,2432,'Akismet Spam Filter',0,'2024-11-05 23:50:22','This entry has been flagged as spam.','user',''),(2617,2433,'Akismet Spam Filter',0,'2024-11-05 23:50:38','This entry has been flagged as spam.','user',''),(2618,2434,'Akismet Spam Filter',0,'2024-11-06 03:39:47','This entry has been flagged as spam.','user',''),(2619,2435,'Akismet Spam Filter',0,'2024-11-06 04:28:10','This entry has been flagged as spam.','user',''),(2620,2436,'Akismet Spam Filter',0,'2024-11-06 12:18:40','This entry has been flagged as spam.','user',''),(2621,2437,'Akismet Spam Filter',0,'2024-11-06 16:21:32','This entry has been flagged as spam.','user',''),(2622,2438,'Akismet Spam Filter',0,'2024-11-07 01:49:03','This entry has been flagged as spam.','user',''),(2623,2439,'Akismet Spam Filter',0,'2024-11-07 06:11:39','This entry has been flagged as spam.','user',''),(2624,2440,'Akismet Spam Filter',0,'2024-11-07 06:48:20','This entry has been flagged as spam.','user',''),(2625,2441,'Akismet Spam Filter',0,'2024-11-07 14:12:30','This entry has been flagged as spam.','user',''),(2626,2442,'Akismet Spam Filter',0,'2024-11-07 16:20:26','This entry has been flagged as spam.','user',''),(2627,2443,'Akismet Spam Filter',0,'2024-11-07 18:57:30','This entry has been flagged as spam.','user',''),(2628,2444,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-07 21:08:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(2629,2444,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-07 21:08:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(2630,2445,'Akismet Spam Filter',0,'2024-11-07 22:19:46','This entry has been flagged as spam.','user',''),(2631,2446,'Akismet Spam Filter',0,'2024-11-07 23:33:48','This entry has been flagged as spam.','user',''),(2632,2447,'Akismet Spam Filter',0,'2024-11-08 01:35:58','This entry has been flagged as spam.','user',''),(2633,2448,'Akismet Spam Filter',0,'2024-11-08 20:00:09','This entry has been flagged as spam.','user',''),(2634,2449,'Akismet Spam Filter',0,'2024-11-08 20:29:10','This entry has been flagged as spam.','user',''),(2635,2450,'Akismet Spam Filter',0,'2024-11-08 23:12:19','This entry has been flagged as spam.','user',''),(2636,2451,'Akismet Spam Filter',0,'2024-11-08 23:51:22','This entry has been flagged as spam.','user',''),(2637,2452,'Akismet Spam Filter',0,'2024-11-09 16:32:30','This entry has been flagged as spam.','user',''),(2638,2453,'Akismet Spam Filter',0,'2024-11-11 00:32:00','This entry has been flagged as spam.','user',''),(2639,2454,'Akismet Spam Filter',0,'2024-11-11 04:28:09','This entry has been flagged as spam.','user',''),(2640,2455,'Akismet Spam Filter',0,'2024-11-11 06:38:54','This entry has been flagged as spam.','user',''),(2641,2456,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-11 22:44:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(2642,2456,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-11 22:44:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(2643,2457,'Akismet Spam Filter',0,'2024-11-12 03:15:04','This entry has been flagged as spam.','user',''),(2644,2458,'Akismet Spam Filter',0,'2024-11-12 06:37:23','This entry has been flagged as spam.','user',''),(2645,2459,'Akismet Spam Filter',0,'2024-11-12 16:49:30','This entry has been flagged as spam.','user',''),(2646,2460,'Akismet Spam Filter',0,'2024-11-12 17:08:49','This entry has been flagged as spam.','user',''),(2647,2461,'Akismet Spam Filter',0,'2024-11-12 17:24:32','This entry has been flagged as spam.','user',''),(2648,2462,'Akismet Spam Filter',0,'2024-11-12 19:10:24','This entry has been flagged as spam.','user',''),(2649,2463,'Akismet Spam Filter',0,'2024-11-13 07:21:17','This entry has been flagged as spam.','user',''),(2650,2464,'Akismet Spam Filter',0,'2024-11-13 09:33:33','This entry has been flagged as spam.','user',''),(2651,2465,'Akismet Spam Filter',0,'2024-11-13 14:37:33','This entry has been flagged as spam.','user',''),(2652,2466,'Akismet Spam Filter',0,'2024-11-13 20:30:24','This entry has been flagged as spam.','user',''),(2653,2467,'Akismet Spam Filter',0,'2024-11-14 01:16:58','This entry has been flagged as spam.','user',''),(2654,2468,'Akismet Spam Filter',0,'2024-11-14 04:01:26','This entry has been flagged as spam.','user',''),(2655,2469,'Akismet Spam Filter',0,'2024-11-14 05:11:43','This entry has been flagged as spam.','user',''),(2656,2470,'Akismet Spam Filter',0,'2024-11-14 06:36:04','This entry has been flagged as spam.','user',''),(2657,2471,'Akismet Spam Filter',0,'2024-11-14 08:28:52','This entry has been flagged as spam.','user',''),(2658,2472,'Akismet Spam Filter',0,'2024-11-14 20:35:51','This entry has been flagged as spam.','user',''),(2659,2473,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-15 01:03:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(2660,2473,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-15 01:03:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(2661,2474,'Akismet Spam Filter',0,'2024-11-15 07:18:39','This entry has been flagged as spam.','user',''),(2662,2475,'Akismet Spam Filter',0,'2024-11-15 07:58:44','This entry has been flagged as spam.','user',''),(2663,2476,'Akismet Spam Filter',0,'2024-11-16 07:52:54','This entry has been flagged as spam.','user',''),(2664,2477,'Akismet Spam Filter',0,'2024-11-16 13:29:05','This entry has been flagged as spam.','user',''),(2665,2478,'Akismet Spam Filter',0,'2024-11-16 21:45:26','This entry has been flagged as spam.','user',''),(2666,2479,'Akismet Spam Filter',0,'2024-11-18 07:01:39','This entry has been flagged as spam.','user',''),(2667,2480,'Akismet Spam Filter',0,'2024-11-18 07:19:59','This entry has been flagged as spam.','user',''),(2668,2481,'Akismet Spam Filter',0,'2024-11-18 09:58:26','This entry has been flagged as spam.','user',''),(2669,2482,'Akismet Spam Filter',0,'2024-11-18 14:31:40','This entry has been flagged as spam.','user',''),(2670,2483,'Akismet Spam Filter',0,'2024-11-19 04:09:12','This entry has been flagged as spam.','user',''),(2671,2484,'Akismet Spam Filter',0,'2024-11-19 10:29:35','This entry has been flagged as spam.','user',''),(2672,2485,'Akismet Spam Filter',0,'2024-11-19 16:28:55','This entry has been flagged as spam.','user',''),(2673,2486,'Akismet Spam Filter',0,'2024-11-20 00:46:59','This entry has been flagged as spam.','user',''),(2674,2487,'Akismet Spam Filter',0,'2024-11-20 03:05:01','This entry has been flagged as spam.','user',''),(2675,2488,'Akismet Spam Filter',0,'2024-11-20 19:22:51','This entry has been flagged as spam.','user',''),(2676,2489,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-20 21:28:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(2677,2489,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-20 21:28:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(2678,2490,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-20 23:23:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(2679,2490,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-20 23:23:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(2680,2491,'Akismet Spam Filter',0,'2024-11-21 02:21:47','This entry has been flagged as spam.','user',''),(2681,2492,'Akismet Spam Filter',0,'2024-11-21 02:34:57','This entry has been flagged as spam.','user',''),(2682,2493,'Akismet Spam Filter',0,'2024-11-21 03:29:32','This entry has been flagged as spam.','user',''),(2683,2494,'Akismet Spam Filter',0,'2024-11-21 04:06:50','This entry has been flagged as spam.','user',''),(2684,2495,'Akismet Spam Filter',0,'2024-11-21 06:37:19','This entry has been flagged as spam.','user',''),(2685,2496,'Akismet Spam Filter',0,'2024-11-21 10:48:39','This entry has been flagged as spam.','user',''),(2686,2497,'Akismet Spam Filter',0,'2024-11-21 15:14:38','This entry has been flagged as spam.','user',''),(2687,2498,'Akismet Spam Filter',0,'2024-11-21 15:22:32','This entry has been flagged as spam.','user',''),(2688,2499,'Akismet Spam Filter',0,'2024-11-21 16:23:59','This entry has been flagged as spam.','user',''),(2689,2500,'Akismet Spam Filter',0,'2024-11-21 18:47:16','This entry has been flagged as spam.','user',''),(2690,2501,'Akismet Spam Filter',0,'2024-11-21 20:15:33','This entry has been flagged as spam.','user',''),(2691,2502,'Akismet Spam Filter',0,'2024-11-21 21:24:34','This entry has been flagged as spam.','user',''),(2692,2503,'Akismet Spam Filter',0,'2024-11-22 16:45:53','This entry has been flagged as spam.','user',''),(2693,2504,'Akismet Spam Filter',0,'2024-11-22 20:22:06','This entry has been flagged as spam.','user',''),(2694,2505,'Akismet Spam Filter',0,'2024-11-23 04:52:58','This entry has been flagged as spam.','user',''),(2695,2506,'Akismet Spam Filter',0,'2024-11-23 05:11:53','This entry has been flagged as spam.','user',''),(2696,2507,'Akismet Spam Filter',0,'2024-11-23 06:59:54','This entry has been flagged as spam.','user',''),(2697,2508,'Akismet Spam Filter',0,'2024-11-23 09:42:55','This entry has been flagged as spam.','user',''),(2698,2509,'Akismet Spam Filter',0,'2024-11-23 13:42:46','This entry has been flagged as spam.','user',''),(2699,2510,'Akismet Spam Filter',0,'2024-11-23 15:49:23','This entry has been flagged as spam.','user',''),(2700,2511,'Akismet Spam Filter',0,'2024-11-23 19:16:32','This entry has been flagged as spam.','user',''),(2701,2512,'Akismet Spam Filter',0,'2024-11-23 23:23:16','This entry has been flagged as spam.','user',''),(2702,2513,'Akismet Spam Filter',0,'2024-11-25 02:04:05','This entry has been flagged as spam.','user',''),(2703,2514,'Akismet Spam Filter',0,'2024-11-25 04:42:54','This entry has been flagged as spam.','user',''),(2704,2515,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-11-25 05:22:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(2705,2515,'Customer Notification (ID: 605853abc2fe2)',0,'2024-11-25 05:22:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(2706,2516,'Akismet Spam Filter',0,'2024-11-25 11:02:25','This entry has been flagged as spam.','user',''),(2707,2517,'Akismet Spam Filter',0,'2024-11-25 17:41:34','This entry has been flagged as spam.','user',''),(2708,2518,'Akismet Spam Filter',0,'2024-11-25 20:45:57','This entry has been flagged as spam.','user',''),(2709,2519,'Akismet Spam Filter',0,'2024-11-25 23:02:56','This entry has been flagged as spam.','user',''),(2710,2520,'Akismet Spam Filter',0,'2024-11-26 02:21:50','This entry has been flagged as spam.','user',''),(2711,2521,'Akismet Spam Filter',0,'2024-11-26 03:08:20','This entry has been flagged as spam.','user',''),(2712,2522,'Akismet Spam Filter',0,'2024-11-26 12:21:59','This entry has been flagged as spam.','user',''),(2713,2523,'Akismet Spam Filter',0,'2024-11-26 18:47:10','This entry has been flagged as spam.','user',''),(2714,2524,'Akismet Spam Filter',0,'2024-11-26 20:09:50','This entry has been flagged as spam.','user',''),(2715,2525,'Akismet Spam Filter',0,'2024-11-26 20:21:54','This entry has been flagged as spam.','user',''),(2716,2526,'Akismet Spam Filter',0,'2024-11-26 21:38:32','This entry has been flagged as spam.','user',''),(2717,2527,'Akismet Spam Filter',0,'2024-11-27 06:19:31','This entry has been flagged as spam.','user',''),(2718,2528,'Akismet Spam Filter',0,'2024-11-27 07:31:46','This entry has been flagged as spam.','user',''),(2719,2529,'Akismet Spam Filter',0,'2024-11-27 23:36:55','This entry has been flagged as spam.','user',''),(2720,2530,'Akismet Spam Filter',0,'2024-11-28 06:18:51','This entry has been flagged as spam.','user',''),(2721,2531,'Akismet Spam Filter',0,'2024-11-28 06:46:48','This entry has been flagged as spam.','user',''),(2722,2532,'Akismet Spam Filter',0,'2024-11-28 16:41:19','This entry has been flagged as spam.','user',''),(2723,2533,'Akismet Spam Filter',0,'2024-11-28 19:53:32','This entry has been flagged as spam.','user',''),(2724,2534,'Akismet Spam Filter',0,'2024-11-28 19:58:35','This entry has been flagged as spam.','user',''),(2725,2535,'Akismet Spam Filter',0,'2024-11-28 21:37:30','This entry has been flagged as spam.','user',''),(2726,2536,'Akismet Spam Filter',0,'2024-11-28 22:07:46','This entry has been flagged as spam.','user',''),(2727,2537,'Akismet Spam Filter',0,'2024-11-29 00:06:07','This entry has been flagged as spam.','user',''),(2728,2538,'Akismet Spam Filter',0,'2024-11-29 15:11:12','This entry has been flagged as spam.','user',''),(2729,2539,'Akismet Spam Filter',0,'2024-11-29 22:27:25','This entry has been flagged as spam.','user',''),(2730,2540,'Akismet Spam Filter',0,'2024-11-30 03:51:23','This entry has been flagged as spam.','user',''),(2731,2541,'Akismet Spam Filter',0,'2024-11-30 07:34:01','This entry has been flagged as spam.','user',''),(2732,2542,'Akismet Spam Filter',0,'2024-11-30 13:47:14','This entry has been flagged as spam.','user',''),(2733,2543,'Akismet Spam Filter',0,'2024-11-30 19:01:20','This entry has been flagged as spam.','user',''),(2734,2544,'Akismet Spam Filter',0,'2024-11-30 20:17:15','This entry has been flagged as spam.','user',''),(2735,2545,'Akismet Spam Filter',0,'2024-11-30 20:22:14','This entry has been flagged as spam.','user',''),(2736,2546,'Akismet Spam Filter',0,'2024-11-30 21:51:58','This entry has been flagged as spam.','user',''),(2737,2547,'Akismet Spam Filter',0,'2024-12-01 09:03:50','This entry has been flagged as spam.','user',''),(2738,2548,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-01 19:41:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(2739,2548,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-01 19:41:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(2740,2549,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-01 23:58:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(2741,2549,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-01 23:58:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(2742,2550,'Akismet Spam Filter',0,'2024-12-02 00:21:51','This entry has been flagged as spam.','user',''),(2743,2551,'Akismet Spam Filter',0,'2024-12-02 02:09:54','This entry has been flagged as spam.','user',''),(2744,2552,'Akismet Spam Filter',0,'2024-12-02 04:53:26','This entry has been flagged as spam.','user',''),(2745,2553,'Akismet Spam Filter',0,'2024-12-02 06:44:25','This entry has been flagged as spam.','user',''),(2746,2554,'Akismet Spam Filter',0,'2024-12-02 08:44:25','This entry has been flagged as spam.','user',''),(2747,2555,'Akismet Spam Filter',0,'2024-12-02 10:20:07','This entry has been flagged as spam.','user',''),(2748,2556,'Akismet Spam Filter',0,'2024-12-02 20:29:36','This entry has been flagged as spam.','user',''),(2749,2557,'Akismet Spam Filter',0,'2024-12-02 21:23:28','This entry has been flagged as spam.','user',''),(2750,2558,'Akismet Spam Filter',0,'2024-12-03 00:41:09','This entry has been flagged as spam.','user',''),(2751,2559,'Akismet Spam Filter',0,'2024-12-03 03:01:31','This entry has been flagged as spam.','user',''),(2752,2560,'Akismet Spam Filter',0,'2024-12-03 09:37:37','This entry has been flagged as spam.','user',''),(2753,2561,'Akismet Spam Filter',0,'2024-12-03 12:11:45','This entry has been flagged as spam.','user',''),(2754,2562,'Akismet Spam Filter',0,'2024-12-03 12:33:13','This entry has been flagged as spam.','user',''),(2755,2563,'Akismet Spam Filter',0,'2024-12-04 00:08:58','This entry has been flagged as spam.','user',''),(2756,2564,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-04 01:59:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(2757,2564,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-04 01:59:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(2758,2565,'Akismet Spam Filter',0,'2024-12-04 04:17:43','This entry has been flagged as spam.','user',''),(2759,2566,'Akismet Spam Filter',0,'2024-12-04 08:04:04','This entry has been flagged as spam.','user',''),(2760,2567,'Akismet Spam Filter',0,'2024-12-04 10:32:29','This entry has been flagged as spam.','user',''),(2761,2568,'Akismet Spam Filter',0,'2024-12-04 11:07:48','This entry has been flagged as spam.','user',''),(2762,2569,'Akismet Spam Filter',0,'2024-12-04 12:28:31','This entry has been flagged as spam.','user',''),(2763,2570,'Akismet Spam Filter',0,'2024-12-05 01:09:49','This entry has been flagged as spam.','user',''),(2764,2571,'Akismet Spam Filter',0,'2024-12-05 07:50:43','This entry has been flagged as spam.','user',''),(2765,2572,'Akismet Spam Filter',0,'2024-12-05 19:01:26','This entry has been flagged as spam.','user',''),(2766,2573,'Akismet Spam Filter',0,'2024-12-06 01:43:48','This entry has been flagged as spam.','user',''),(2767,2574,'Akismet Spam Filter',0,'2024-12-06 01:58:59','This entry has been flagged as spam.','user',''),(2768,2575,'Akismet Spam Filter',0,'2024-12-06 07:57:56','This entry has been flagged as spam.','user',''),(2769,2576,'Akismet Spam Filter',0,'2024-12-06 18:09:42','This entry has been flagged as spam.','user',''),(2770,2577,'Akismet Spam Filter',0,'2024-12-06 22:08:42','This entry has been flagged as spam.','user',''),(2771,2578,'Akismet Spam Filter',0,'2024-12-07 07:28:48','This entry has been flagged as spam.','user',''),(2772,2579,'Akismet Spam Filter',0,'2024-12-07 08:28:15','This entry has been flagged as spam.','user',''),(2773,2580,'Akismet Spam Filter',0,'2024-12-07 11:39:30','This entry has been flagged as spam.','user',''),(2774,2581,'Akismet Spam Filter',0,'2024-12-07 22:45:02','This entry has been flagged as spam.','user',''),(2775,2582,'Akismet Spam Filter',0,'2024-12-07 23:38:56','This entry has been flagged as spam.','user',''),(2776,2583,'Akismet Spam Filter',0,'2024-12-08 07:06:12','This entry has been flagged as spam.','user',''),(2777,2584,'Akismet Spam Filter',0,'2024-12-08 09:19:14','This entry has been flagged as spam.','user',''),(2778,2585,'Akismet Spam Filter',0,'2024-12-08 21:13:48','This entry has been flagged as spam.','user',''),(2779,2586,'Akismet Spam Filter',0,'2024-12-09 03:55:23','This entry has been flagged as spam.','user',''),(2780,2587,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-09 05:59:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(2781,2587,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-09 05:59:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(2782,2588,'Akismet Spam Filter',0,'2024-12-09 09:51:08','This entry has been flagged as spam.','user',''),(2783,2589,'Akismet Spam Filter',0,'2024-12-09 15:17:08','This entry has been flagged as spam.','user',''),(2784,2590,'Akismet Spam Filter',0,'2024-12-09 17:56:29','This entry has been flagged as spam.','user',''),(2785,2591,'Akismet Spam Filter',0,'2024-12-09 20:09:55','This entry has been flagged as spam.','user',''),(2786,2592,'Akismet Spam Filter',0,'2024-12-09 22:46:26','This entry has been flagged as spam.','user',''),(2787,2593,'Akismet Spam Filter',0,'2024-12-10 01:42:51','This entry has been flagged as spam.','user',''),(2788,2594,'Akismet Spam Filter',0,'2024-12-10 08:27:50','This entry has been flagged as spam.','user',''),(2789,2595,'Akismet Spam Filter',0,'2024-12-10 19:00:41','This entry has been flagged as spam.','user',''),(2790,2596,'Akismet Spam Filter',0,'2024-12-11 00:58:48','This entry has been flagged as spam.','user',''),(2791,2597,'Akismet Spam Filter',0,'2024-12-11 03:20:12','This entry has been flagged as spam.','user',''),(2792,2598,'Akismet Spam Filter',0,'2024-12-11 05:30:20','This entry has been flagged as spam.','user',''),(2793,2599,'Akismet Spam Filter',0,'2024-12-11 07:10:06','This entry has been flagged as spam.','user',''),(2794,2600,'Akismet Spam Filter',0,'2024-12-11 11:35:41','This entry has been flagged as spam.','user',''),(2795,2601,'Akismet Spam Filter',0,'2024-12-11 12:55:36','This entry has been flagged as spam.','user',''),(2796,2602,'Akismet Spam Filter',0,'2024-12-11 13:44:48','This entry has been flagged as spam.','user',''),(2797,2603,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-11 14:50:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(2798,2603,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-11 14:50:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(2799,2604,'Akismet Spam Filter',0,'2024-12-11 15:06:02','This entry has been flagged as spam.','user',''),(2800,2605,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-11 22:47:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(2801,2605,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-11 22:47:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(2802,2606,'Akismet Spam Filter',0,'2024-12-11 23:28:46','This entry has been flagged as spam.','user',''),(2803,2607,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-12 00:08:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(2804,2607,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-12 00:08:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(2805,2608,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-12 00:08:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(2806,2608,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-12 00:08:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(2807,2609,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-12 00:24:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(2808,2609,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-12 00:24:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(2809,2610,'Akismet Spam Filter',0,'2024-12-12 01:15:04','This entry has been flagged as spam.','user',''),(2810,2611,'Akismet Spam Filter',0,'2024-12-12 07:56:32','This entry has been flagged as spam.','user',''),(2811,2612,'Akismet Spam Filter',0,'2024-12-12 09:09:08','This entry has been flagged as spam.','user',''),(2812,2613,'Akismet Spam Filter',0,'2024-12-12 17:51:03','This entry has been flagged as spam.','user',''),(2813,2614,'Akismet Spam Filter',0,'2024-12-12 18:36:29','This entry has been flagged as spam.','user',''),(2814,2615,'Akismet Spam Filter',0,'2024-12-12 22:22:51','This entry has been flagged as spam.','user',''),(2815,2616,'Akismet Spam Filter',0,'2024-12-12 23:31:35','This entry has been flagged as spam.','user',''),(2816,2617,'Akismet Spam Filter',0,'2024-12-13 00:51:58','This entry has been flagged as spam.','user',''),(2817,2618,'Akismet Spam Filter',0,'2024-12-13 01:40:27','This entry has been flagged as spam.','user',''),(2818,2619,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-13 02:13:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(2819,2619,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-13 02:13:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(2820,2620,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-13 02:31:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(2821,2620,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-13 02:31:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(2822,2621,'Akismet Spam Filter',0,'2024-12-13 04:27:05','This entry has been flagged as spam.','user',''),(2823,2622,'Akismet Spam Filter',0,'2024-12-13 17:18:30','This entry has been flagged as spam.','user',''),(2824,2623,'Akismet Spam Filter',0,'2024-12-14 01:10:58','This entry has been flagged as spam.','user',''),(2825,2624,'Akismet Spam Filter',0,'2024-12-14 06:20:44','This entry has been flagged as spam.','user',''),(2826,2625,'Akismet Spam Filter',0,'2024-12-14 16:07:26','This entry has been flagged as spam.','user',''),(2827,2626,'Akismet Spam Filter',0,'2024-12-14 16:49:56','This entry has been flagged as spam.','user',''),(2828,2627,'Akismet Spam Filter',0,'2024-12-14 16:52:25','This entry has been flagged as spam.','user',''),(2829,2628,'Akismet Spam Filter',0,'2024-12-14 23:31:22','This entry has been flagged as spam.','user',''),(2830,2629,'Akismet Spam Filter',0,'2024-12-15 00:58:03','This entry has been flagged as spam.','user',''),(2831,2630,'Akismet Spam Filter',0,'2024-12-15 02:19:58','This entry has been flagged as spam.','user',''),(2832,2631,'Akismet Spam Filter',0,'2024-12-15 05:25:12','This entry has been flagged as spam.','user',''),(2833,2632,'Akismet Spam Filter',0,'2024-12-15 07:06:45','This entry has been flagged as spam.','user',''),(2834,2633,'Akismet Spam Filter',0,'2024-12-15 08:12:47','This entry has been flagged as spam.','user',''),(2835,2634,'Akismet Spam Filter',0,'2024-12-15 17:18:51','This entry has been flagged as spam.','user',''),(2836,2635,'Akismet Spam Filter',0,'2024-12-16 04:17:41','This entry has been flagged as spam.','user',''),(2837,2636,'Akismet Spam Filter',0,'2024-12-16 07:46:34','This entry has been flagged as spam.','user',''),(2838,2637,'Admin Notification (ID: 5fec7645cdafe)',0,'2024-12-16 08:42:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(2839,2637,'Customer Notification (ID: 605853abc2fe2)',0,'2024-12-16 08:42:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(2840,2638,'Akismet Spam Filter',0,'2024-12-16 17:48:25','This entry has been flagged as spam.','user',''),(2841,2639,'Akismet Spam Filter',0,'2024-12-16 18:17:38','This entry has been flagged as spam.','user',''),(2842,2640,'Akismet Spam Filter',0,'2024-12-16 18:19:23','This entry has been flagged as spam.','user',''),(2843,2641,'Akismet Spam Filter',0,'2024-12-16 23:22:56','This entry has been flagged as spam.','user',''),(2844,2642,'Akismet Spam Filter',0,'2024-12-17 00:18:28','This entry has been flagged as spam.','user',''),(2845,2643,'Akismet Spam Filter',0,'2024-12-17 07:30:20','This entry has been flagged as spam.','user',''),(2846,2644,'Akismet Spam Filter',0,'2024-12-17 12:50:36','This entry has been flagged as spam.','user',''),(2847,2645,'Akismet Spam Filter',0,'2024-12-17 21:38:55','This entry has been flagged as spam.','user',''),(2848,2646,'Akismet Spam Filter',0,'2024-12-18 01:44:34','This entry has been flagged as spam.','user',''),(2849,2647,'Akismet Spam Filter',0,'2024-12-18 05:33:29','This entry has been flagged as spam.','user',''),(2850,2648,'Akismet Spam Filter',0,'2024-12-18 12:20:46','This entry has been flagged as spam.','user',''),(2851,2649,'Akismet Spam Filter',0,'2024-12-18 16:03:32','This entry has been flagged as spam.','user',''),(2852,2650,'Akismet Spam Filter',0,'2024-12-18 17:52:38','This entry has been flagged as spam.','user',''),(2853,2651,'Akismet Spam Filter',0,'2024-12-18 18:47:56','This entry has been flagged as spam.','user',''),(2854,2652,'Akismet Spam Filter',0,'2024-12-18 22:31:30','This entry has been flagged as spam.','user',''); /*!40000 ALTER TABLE `wp_gf_entry_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_form` -- DROP TABLE IF EXISTS `wp_gf_form`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_form` ( `id` mediumint(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(150) NOT NULL, `date_created` datetime NOT NULL, `date_updated` datetime DEFAULT NULL, `is_active` tinyint(10) NOT NULL DEFAULT 1, `is_trash` tinyint(10) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_form` -- LOCK TABLES `wp_gf_form` WRITE; /*!40000 ALTER TABLE `wp_gf_form` DISABLE KEYS */; INSERT INTO `wp_gf_form` VALUES (1,'Contact Form - Juice Electrical','2020-12-30 12:44:53',NULL,1,0); /*!40000 ALTER TABLE `wp_gf_form` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_form_meta` -- DROP TABLE IF EXISTS `wp_gf_form_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_form_meta` ( `form_id` mediumint(10) unsigned NOT NULL, `display_meta` longtext DEFAULT NULL, `entries_grid_meta` longtext DEFAULT NULL, `confirmations` longtext DEFAULT NULL, `notifications` longtext DEFAULT NULL, PRIMARY KEY (`form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_form_meta` -- LOCK TABLES `wp_gf_form_meta` WRITE; /*!40000 ALTER TABLE `wp_gf_form_meta` DISABLE KEYS */; INSERT INTO `wp_gf_form_meta` VALUES (1,'{\"title\":\"Contact Form - Juice Electrical\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12},\"fields\":[{\"type\":\"text\",\"id\":6,\"label\":\"Full Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"text\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"displayOnly\":\"\",\"layoutGroupId\":\"a6b71c0d\"},{\"type\":\"phone\",\"id\":2,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"international\",\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"phone\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"layoutGroupId\":\"348bccf6\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"email\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"emailConfirmEnabled\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"layoutGroupId\":\"1af22f30\"},{\"type\":\"text\",\"id\":9,\"formId\":1,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"text\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enablePasswordInput\":\"\",\"enableEnhancedUI\":0,\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\"},{\"type\":\"textarea\",\"id\":4,\"label\":\"Message\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"textarea\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"layoutGroupId\":\"0582673a\"},{\"type\":\"text\",\"id\":5,\"label\":\"How did you hear about us?\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"text\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"layoutGroupId\":\"a4f8e1dd\"}],\"version\":\"2.8.18\",\"id\":1,\"nextFieldId\":10,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"requiredIndicator\":\"asterisk\",\"customRequiredIndicator\":\"(Required)\",\"saveButtonText\":\"Save and Continue Later\",\"honeypotAction\":\"abort\",\"markupVersion\":1,\"validationSummary\":false,\"deprecated\":\"\",\"saveEnabled\":\"\"}','a:4:{i:0;s:1:\"6\";i:1;s:1:\"3\";i:2;s:1:\"4\";i:3;s:12:\"date_created\";}','{\"5fec7645cddeb\":{\"id\":\"5fec7645cddeb\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5fec7645cdafe\":{\"isActive\":true,\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"helen@juiceelectrical.co.nz\",\"toType\":\"email\",\"cc\":\"\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"helen@juiceelectrical.co.nz\",\"fromName\":\"\",\"replyTo\":\"{Email:3}\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false,\"enableAttachments\":false,\"id\":\"5fec7645cdafe\",\"toEmail\":\"helen@juiceelectrical.co.nz\",\"toField\":\"\",\"notification_conditional_logic_object\":\"\",\"notification_conditional_logic\":\"0\"},\"605853abc2fe2\":{\"isActive\":true,\"name\":\"Customer Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"3\",\"toType\":\"field\",\"cc\":\"\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"helen@juiceelectrical.co.nz\",\"fromName\":\"\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false,\"enableAttachments\":false,\"id\":\"605853abc2fe2\",\"toEmail\":\"\",\"toField\":\"3\",\"notification_conditional_logic_object\":\"\",\"notification_conditional_logic\":\"0\"}}'); /*!40000 ALTER TABLE `wp_gf_form_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_form_revisions` -- DROP TABLE IF EXISTS `wp_gf_form_revisions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_form_revisions` ( `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `form_id` mediumint(10) unsigned NOT NULL, `display_meta` longtext DEFAULT NULL, `date_created` datetime NOT NULL, PRIMARY KEY (`id`), KEY `date_created` (`date_created`), KEY `form_id` (`form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_form_revisions` -- LOCK TABLES `wp_gf_form_revisions` WRITE; /*!40000 ALTER TABLE `wp_gf_form_revisions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_gf_form_revisions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_form_view` -- DROP TABLE IF EXISTS `wp_gf_form_view`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_form_view` ( `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `form_id` mediumint(10) unsigned NOT NULL, `date_created` datetime NOT NULL, `ip` char(15) DEFAULT NULL, `count` mediumint(10) unsigned NOT NULL DEFAULT 1, PRIMARY KEY (`id`), KEY `date_created` (`date_created`), KEY `form_id` (`form_id`) ) ENGINE=InnoDB AUTO_INCREMENT=543 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_form_view` -- LOCK TABLES `wp_gf_form_view` WRITE; /*!40000 ALTER TABLE `wp_gf_form_view` DISABLE KEYS */; INSERT INTO `wp_gf_form_view` VALUES (1,1,'2020-12-31 08:12:40','',355),(2,1,'2021-01-01 08:19:40','',1352),(3,1,'2021-01-02 13:08:23','',113),(4,1,'2021-01-04 11:43:18','',37),(5,1,'2021-01-08 04:54:47','',6),(6,1,'2021-01-12 08:20:14','',2),(7,1,'2021-02-05 10:45:32','',6),(8,1,'2021-02-19 23:29:34','',2),(9,1,'2022-05-01 05:58:27','',1),(10,1,'2023-02-10 01:02:23','',6),(11,1,'2023-02-12 22:14:42','',8),(12,1,'2023-02-27 04:00:15','',2),(13,1,'2023-03-01 04:08:35','',6),(14,1,'2023-03-06 23:44:04','',4),(15,1,'2023-03-08 07:56:56','',6),(16,1,'2023-03-09 23:32:23','',2),(17,1,'2023-03-13 05:48:31','',3),(18,1,'2023-03-19 22:55:28','',2),(19,1,'2023-03-22 04:02:53','',4),(20,1,'2023-03-23 23:02:43','',2),(21,1,'2023-03-27 22:33:32','',52),(22,1,'2023-03-29 03:30:30','',14),(23,1,'2023-03-30 05:17:13','',8),(24,1,'2023-04-02 01:30:42','',8),(25,1,'2023-04-03 03:08:41','',1),(26,1,'2023-04-04 03:28:48','',1),(27,1,'2023-04-05 04:12:47','',1),(28,1,'2023-04-06 04:35:11','',1),(29,1,'2023-04-07 04:40:52','',2),(30,1,'2023-04-08 05:53:43','',1),(31,1,'2023-04-09 06:16:20','',1),(32,1,'2023-04-10 07:03:06','',1),(33,1,'2023-04-11 08:40:50','',1),(34,1,'2023-04-12 09:10:53','',1),(35,1,'2023-04-13 10:08:12','',2),(36,1,'2023-04-14 11:04:40','',1),(37,1,'2023-04-15 14:31:05','',2),(38,1,'2023-04-16 14:43:52','',1),(39,1,'2023-04-17 15:49:48','',1),(40,1,'2023-04-18 16:29:25','',3),(41,1,'2023-04-20 00:02:59','',1),(42,1,'2023-04-21 00:45:26','',2),(43,1,'2023-04-22 02:57:39','',1),(44,1,'2023-04-23 03:49:19','',1),(45,1,'2023-04-24 05:11:22','',1),(46,1,'2023-04-25 05:11:46','',1),(47,1,'2023-04-26 05:27:42','',1),(48,1,'2023-04-27 06:50:58','',1),(49,1,'2023-04-28 07:08:17','',1),(50,1,'2023-04-29 13:03:39','',1),(51,1,'2023-04-30 13:12:27','',1),(52,1,'2023-05-01 14:03:35','',2),(53,1,'2023-05-02 14:04:40','',2),(54,1,'2023-05-03 15:37:41','',2),(55,1,'2023-05-05 08:53:47','',1),(56,1,'2023-05-06 11:57:10','',1),(57,1,'2023-05-07 16:00:33','',1),(58,1,'2023-05-08 19:32:39','',1),(59,1,'2023-05-09 19:52:01','',2),(60,1,'2023-05-11 05:45:37','',1),(61,1,'2023-05-12 06:10:46','',1),(62,1,'2023-05-13 06:35:21','',2),(63,1,'2023-05-14 07:15:01','',1),(64,1,'2023-05-15 08:11:25','',1),(65,1,'2023-05-16 09:38:36','',1),(66,1,'2023-05-17 11:49:47','',2),(67,1,'2023-05-19 04:47:37','',4),(68,1,'2023-05-20 06:52:19','',1),(69,1,'2023-05-21 08:07:46','',1),(70,1,'2023-05-22 14:25:29','',1),(71,1,'2023-05-23 16:23:29','',1),(72,1,'2023-05-24 19:10:15','',2),(73,1,'2023-05-26 07:23:33','',1),(74,1,'2023-05-27 07:28:56','',1),(75,1,'2023-05-28 08:44:45','',2),(76,1,'2023-05-29 08:51:45','',1),(77,1,'2023-05-30 13:52:43','',3),(78,1,'2023-06-01 01:55:08','',2),(79,1,'2023-06-02 02:04:43','',2),(80,1,'2023-06-03 08:49:06','',1),(81,1,'2023-06-04 11:09:52','',1),(82,1,'2023-06-05 11:09:58','',1),(83,1,'2023-06-06 13:44:38','',1),(84,1,'2023-06-07 18:09:08','',1),(85,1,'2023-06-08 20:26:32','',1),(86,1,'2023-06-09 23:07:34','',1),(87,1,'2023-06-11 01:12:03','',1),(88,1,'2023-06-12 02:35:37','',1),(89,1,'2023-06-13 02:49:10','',1),(90,1,'2023-06-14 05:41:38','',2),(91,1,'2023-06-15 09:15:12','',1),(92,1,'2023-06-16 09:58:04','',1),(93,1,'2023-06-17 15:46:19','',1),(94,1,'2023-06-18 21:46:36','',1),(95,1,'2023-06-19 21:56:55','',1),(96,1,'2023-06-20 22:05:17','',1),(97,1,'2023-06-21 22:18:29','',1),(98,1,'2023-06-22 22:49:58','',2),(99,1,'2023-06-24 05:32:43','',1),(100,1,'2023-06-25 08:23:21','',1),(101,1,'2023-06-26 08:35:51','',1),(102,1,'2023-06-27 13:09:53','',1),(103,1,'2023-06-28 16:47:08','',1),(104,1,'2023-06-29 17:29:17','',5),(105,1,'2023-06-30 20:13:00','',2),(106,1,'2023-07-01 20:24:15','',1),(107,1,'2023-07-02 22:09:50','',1),(108,1,'2023-07-03 22:17:01','',1),(109,1,'2023-07-04 23:49:53','',1),(110,1,'2023-07-06 00:19:29','',1),(111,1,'2023-07-07 01:47:30','',1),(112,1,'2023-07-08 02:14:21','',1),(113,1,'2023-07-09 03:13:27','',1),(114,1,'2023-07-10 03:36:07','',2),(115,1,'2023-07-11 04:25:03','',2),(116,1,'2023-07-12 08:35:38','',2),(117,1,'2023-07-14 08:52:44','',1),(118,1,'2023-07-15 09:28:32','',1),(119,1,'2023-07-16 09:28:45','',4),(120,1,'2023-07-17 16:19:32','',1),(121,1,'2023-07-18 17:27:05','',2),(122,1,'2023-07-20 01:59:26','',1),(123,1,'2023-07-21 02:12:27','',4),(124,1,'2023-07-22 04:44:20','',1),(125,1,'2023-07-23 07:37:18','',5),(126,1,'2023-07-24 08:44:42','',1),(127,1,'2023-07-25 08:50:22','',1),(128,1,'2023-07-26 09:38:56','',1),(129,1,'2023-07-27 19:50:01','',6),(130,1,'2023-07-29 06:52:28','',1),(131,1,'2023-07-30 15:16:05','',1),(132,1,'2023-07-31 15:27:35','',1),(133,1,'2023-08-01 18:05:40','',1),(134,1,'2023-08-02 22:28:55','',2),(135,1,'2023-08-03 22:29:35','',1),(136,1,'2023-08-04 22:30:25','',1),(137,1,'2023-08-06 01:12:36','',2),(138,1,'2023-08-07 01:31:07','',1),(139,1,'2023-08-08 01:43:53','',1),(140,1,'2023-08-09 01:44:21','',1),(141,1,'2023-08-10 02:41:14','',2),(142,1,'2023-08-11 03:55:44','',2),(143,1,'2023-08-13 00:57:55','',1),(144,1,'2023-08-14 01:06:49','',2),(145,1,'2023-08-15 01:37:16','',2),(146,1,'2023-08-17 03:32:00','',3),(147,1,'2023-08-19 00:49:59','',1),(148,1,'2023-08-20 02:59:41','',1),(149,1,'2023-08-21 03:15:27','',2),(150,1,'2023-08-23 00:55:43','',1),(151,1,'2023-08-24 03:48:37','',5),(152,1,'2023-08-26 05:57:01','',2),(153,1,'2023-08-28 00:44:06','',3),(154,1,'2023-08-29 03:57:16','',3),(155,1,'2023-08-30 06:46:36','',2),(156,1,'2023-09-01 01:16:30','',1),(157,1,'2023-09-02 03:35:30','',1),(158,1,'2023-09-03 05:39:12','',2),(159,1,'2023-09-05 03:37:57','',6),(160,1,'2023-09-07 03:51:04','',4),(161,1,'2023-09-09 02:54:08','',1),(162,1,'2023-09-10 06:28:46','',2),(163,1,'2023-09-11 15:55:35','',2),(164,1,'2023-09-13 01:21:20','',2),(165,1,'2023-09-15 01:25:23','',2),(166,1,'2023-09-17 03:24:23','',4),(167,1,'2023-09-18 20:28:19','',4),(168,1,'2023-09-19 22:13:58','',4),(169,1,'2023-09-21 03:03:26','',2),(170,1,'2023-09-23 00:47:04','',5),(171,1,'2023-09-24 03:17:12','',2),(172,1,'2023-09-25 03:42:21','',3),(173,1,'2023-09-27 01:57:49','',2),(174,1,'2023-09-29 01:01:44','',1),(175,1,'2023-09-30 03:45:24','',2),(176,1,'2023-10-02 01:50:21','',2),(177,1,'2023-10-04 00:59:57','',3),(178,1,'2023-10-05 01:13:19','',3),(179,1,'2023-10-06 01:21:57','',2),(180,1,'2023-10-07 08:17:16','',3),(181,1,'2023-10-09 01:49:44','',5),(182,1,'2023-10-10 02:25:41','',4),(183,1,'2023-10-11 23:38:10','',6),(184,1,'2023-10-13 03:47:13','',2),(185,1,'2023-10-14 05:39:04','',2),(186,1,'2023-10-16 00:55:19','',4),(187,1,'2023-10-17 01:30:58','',3),(188,1,'2023-10-18 03:16:06','',3),(189,1,'2023-10-19 05:01:43','',1),(190,1,'2023-10-20 05:54:34','',1),(191,1,'2023-10-21 06:21:28','',1),(192,1,'2023-10-22 10:31:53','',1),(193,1,'2023-10-23 11:18:37','',1),(194,1,'2023-10-24 16:21:30','',1),(195,1,'2023-10-25 17:54:59','',1),(196,1,'2023-10-26 18:12:50','',1),(197,1,'2023-10-28 00:41:12','',2),(198,1,'2023-10-29 07:50:55','',3),(199,1,'2023-10-30 08:32:25','',1),(200,1,'2023-10-31 12:07:49','',1),(201,1,'2023-11-01 13:05:29','',3),(202,1,'2023-11-02 17:39:46','',1),(203,1,'2023-11-03 17:51:45','',1),(204,1,'2023-11-04 17:59:34','',2),(205,1,'2023-11-05 18:46:52','',2),(206,1,'2023-11-06 21:43:33','',1),(207,1,'2023-11-08 00:29:35','',3),(208,1,'2023-11-09 00:42:54','',1),(209,1,'2023-11-10 01:53:53','',1),(210,1,'2023-11-11 04:37:22','',1),(211,1,'2023-11-12 07:15:48','',1),(212,1,'2023-11-13 08:06:18','',1),(213,1,'2023-11-14 09:05:46','',1),(214,1,'2023-11-15 09:40:12','',1),(215,1,'2023-11-16 12:45:44','',1),(216,1,'2023-11-17 13:16:38','',2),(217,1,'2023-11-19 08:42:19','',1),(218,1,'2023-11-20 09:37:59','',7),(219,1,'2023-11-22 02:32:34','',1),(220,1,'2023-11-23 07:27:07','',1),(221,1,'2023-11-24 07:59:47','',1),(222,1,'2023-11-25 08:28:25','',1),(223,1,'2023-11-26 12:16:41','',1),(224,1,'2023-11-27 14:51:19','',1),(225,1,'2023-11-28 18:09:47','',4),(226,1,'2023-11-29 18:16:54','',2),(227,1,'2023-12-01 05:19:22','',1),(228,1,'2023-12-02 07:11:32','',1),(229,1,'2023-12-03 07:16:22','',1),(230,1,'2023-12-04 10:17:44','',4),(231,1,'2023-12-06 04:55:15','',1),(232,1,'2023-12-07 07:12:21','',2),(233,1,'2023-12-09 07:11:43','',1),(234,1,'2023-12-10 07:43:45','',1),(235,1,'2023-12-11 09:30:53','',1),(236,1,'2023-12-12 10:49:59','',1),(237,1,'2023-12-13 14:25:18','',1),(238,1,'2023-12-14 15:29:42','',1),(239,1,'2023-12-15 16:23:36','',1),(240,1,'2023-12-16 19:18:30','',1),(241,1,'2023-12-17 19:47:21','',4),(242,1,'2023-12-18 22:18:10','',1),(243,1,'2023-12-19 23:36:33','',1),(244,1,'2023-12-21 01:06:48','',3),(245,1,'2023-12-22 02:10:12','',1),(246,1,'2023-12-23 03:52:03','',1),(247,1,'2023-12-24 04:46:51','',1),(248,1,'2023-12-25 07:27:20','',1),(249,1,'2023-12-26 09:56:40','',1),(250,1,'2023-12-27 11:00:07','',1),(251,1,'2023-12-28 14:01:55','',1),(252,1,'2023-12-29 14:56:05','',1),(253,1,'2023-12-30 19:34:56','',1),(254,1,'2023-12-31 22:43:30','',1),(255,1,'2024-01-02 01:27:39','',1),(256,1,'2024-01-03 03:34:17','',1),(257,1,'2024-01-04 05:06:06','',1),(258,1,'2024-01-05 06:22:59','',1),(259,1,'2024-01-06 07:48:15','',2),(260,1,'2024-01-07 08:32:59','',1),(261,1,'2024-01-08 09:06:42','',1),(262,1,'2024-01-09 09:58:22','',3),(263,1,'2024-01-10 10:02:48','',3),(264,1,'2024-01-11 11:00:16','',2),(265,1,'2024-01-12 12:09:28','',1),(266,1,'2024-01-13 12:32:04','',1),(267,1,'2024-01-14 15:13:35','',1),(268,1,'2024-01-15 16:23:57','',3),(269,1,'2024-01-16 22:51:50','',3),(270,1,'2024-01-18 09:31:41','',9),(271,1,'2024-01-19 12:27:14','',2),(272,1,'2024-01-20 13:18:55','',1),(273,1,'2024-01-21 13:40:59','',2),(274,1,'2024-01-22 13:44:20','',4),(275,1,'2024-01-23 15:58:45','',2),(276,1,'2024-01-24 16:07:03','',2),(277,1,'2024-01-25 19:50:47','',1),(278,1,'2024-01-26 22:38:07','',1),(279,1,'2024-01-28 00:14:45','',3),(280,1,'2024-01-29 01:34:47','',7),(281,1,'2024-01-30 01:47:27','',2),(282,1,'2024-01-31 02:58:15','',9),(283,1,'2024-02-01 06:05:41','',1),(284,1,'2024-02-02 06:26:12','',1),(285,1,'2024-02-03 07:13:15','',1),(286,1,'2024-02-04 12:19:25','',1),(287,1,'2024-02-05 12:44:40','',1),(288,1,'2024-02-06 13:24:29','',1),(289,1,'2024-02-07 13:43:16','',1),(290,1,'2024-02-08 14:37:38','',4),(291,1,'2024-02-10 06:24:34','',1),(292,1,'2024-02-11 09:49:49','',4),(293,1,'2024-02-12 09:58:03','',1),(294,1,'2024-02-13 12:46:59','',1),(295,1,'2024-02-14 16:00:16','',1),(296,1,'2024-02-15 17:25:47','',2),(297,1,'2024-02-16 17:53:01','',1),(298,1,'2024-02-17 18:01:14','',2),(299,1,'2024-02-18 19:55:11','',3),(300,1,'2024-02-20 06:11:10','',1),(301,1,'2024-02-21 07:08:32','',5),(302,1,'2024-02-22 23:59:26','',3),(303,1,'2024-02-24 05:40:52','',2),(304,1,'2024-02-25 05:56:17','',1),(305,1,'2024-02-26 08:04:36','',1),(306,1,'2024-02-27 09:41:01','',2),(307,1,'2024-02-28 09:46:41','',3),(308,1,'2024-02-29 21:49:48','',3),(309,1,'2024-03-02 07:57:40','',1),(310,1,'2024-03-03 08:24:54','',3),(311,1,'2024-03-04 09:15:35','',4),(312,1,'2024-03-05 21:01:11','',7),(313,1,'2024-03-07 00:54:42','',7),(314,1,'2024-03-08 09:38:05','',4),(315,1,'2024-03-09 12:48:24','',7),(316,1,'2024-03-10 17:06:15','',7),(317,1,'2024-03-11 20:38:02','',5),(318,1,'2024-03-13 01:31:17','',6),(319,1,'2024-03-14 06:49:24','',7),(320,1,'2024-03-15 10:18:45','',5),(321,1,'2024-03-16 11:22:45','',5),(322,1,'2024-03-17 15:47:10','',4),(323,1,'2024-03-18 20:09:49','',5),(324,1,'2024-03-19 23:55:26','',4),(325,1,'2024-03-21 04:29:20','',3),(326,1,'2024-03-22 04:57:39','',4),(327,1,'2024-03-23 06:29:56','',4),(328,1,'2024-03-24 07:55:41','',6),(329,1,'2024-03-25 10:48:51','',9),(330,1,'2024-03-26 15:46:08','',4),(331,1,'2024-03-27 19:10:07','',8),(332,1,'2024-03-29 00:56:46','',4),(333,1,'2024-03-30 04:27:20','',3),(334,1,'2024-03-31 05:59:52','',3),(335,1,'2024-04-01 07:10:10','',7),(336,1,'2024-04-02 12:56:52','',4),(337,1,'2024-04-03 17:59:10','',7),(338,1,'2024-04-05 00:53:58','',4),(339,1,'2024-04-06 04:08:40','',6),(340,1,'2024-04-07 08:47:17','',4),(341,1,'2024-04-08 09:06:28','',7),(342,1,'2024-04-09 14:42:10','',11),(343,1,'2024-04-10 19:56:18','',4),(344,1,'2024-04-11 20:55:33','',5),(345,1,'2024-04-13 01:58:44','',6),(346,1,'2024-04-14 02:20:21','',7),(347,1,'2024-04-15 02:43:21','',7),(348,1,'2024-04-16 04:51:58','',5),(349,1,'2024-04-17 07:31:12','',6),(350,1,'2024-04-18 10:08:01','',11),(351,1,'2024-05-13 09:32:39','',5),(352,1,'2024-05-14 11:27:55','',4),(353,1,'2024-05-15 17:25:35','',4),(354,1,'2024-05-16 20:05:23','',5),(355,1,'2024-05-17 22:17:37','',4),(356,1,'2024-05-19 01:41:13','',22),(357,1,'2024-05-20 01:51:31','',6),(358,1,'2024-05-21 07:33:43','',4),(359,1,'2024-05-22 11:34:49','',5),(360,1,'2024-05-23 20:30:55','',4),(361,1,'2024-05-25 00:08:48','',3),(362,1,'2024-05-26 01:16:10','',6),(363,1,'2024-05-27 02:41:37','',4),(364,1,'2024-05-28 04:05:27','',4),(365,1,'2024-05-29 07:55:36','',6),(366,1,'2024-05-30 09:06:29','',5),(367,1,'2024-05-31 10:59:14','',4),(368,1,'2024-06-01 16:13:23','',5),(369,1,'2024-06-02 18:59:35','',4),(370,1,'2024-06-03 21:52:35','',5),(371,1,'2024-06-05 02:32:22','',6),(372,1,'2024-06-06 06:12:56','',4),(373,1,'2024-06-07 09:42:41','',4),(374,1,'2024-06-08 14:34:08','',5),(375,1,'2024-06-09 18:47:57','',7),(376,1,'2024-06-10 19:20:46','',4),(377,1,'2024-06-11 19:42:42','',7),(378,1,'2024-06-13 00:59:32','',6),(379,1,'2024-06-14 02:55:04','',4),(380,1,'2024-06-15 05:16:48','',4),(381,1,'2024-06-16 07:42:24','',5),(382,1,'2024-06-17 08:48:38','',5),(383,1,'2024-06-18 13:13:45','',4),(384,1,'2024-06-19 14:18:28','',6),(385,1,'2024-06-20 15:54:00','',6),(386,1,'2024-06-21 19:34:42','',6),(387,1,'2024-06-22 19:46:59','',4),(388,1,'2024-06-23 22:08:27','',5),(389,1,'2024-06-25 02:39:07','',12),(390,1,'2024-06-26 07:23:53','',4),(391,1,'2024-06-27 11:06:48','',4),(392,1,'2024-06-28 14:24:58','',4),(393,1,'2024-06-29 21:53:27','',4),(394,1,'2024-07-01 03:13:39','',5),(395,1,'2024-07-02 06:07:23','',5),(396,1,'2024-07-03 07:21:44','',5),(397,1,'2024-07-04 09:19:57','',4),(398,1,'2024-07-05 11:28:50','',4),(399,1,'2024-07-06 19:28:55','',4),(400,1,'2024-07-07 21:23:05','',5),(401,1,'2024-07-09 00:24:29','',6),(402,1,'2024-07-10 07:13:49','',5),(403,1,'2024-07-11 08:12:48','',5),(404,1,'2024-07-12 12:18:07','',4),(405,1,'2024-07-13 13:11:08','',5),(406,1,'2024-07-14 18:25:56','',5),(407,1,'2024-07-15 22:00:21','',4),(408,1,'2024-07-17 01:49:08','',4),(409,1,'2024-07-18 06:34:21','',6),(410,1,'2024-07-19 11:45:41','',5),(411,1,'2024-07-20 16:19:05','',4),(412,1,'2024-07-21 18:14:36','',5),(413,1,'2024-07-23 00:57:22','',5),(414,1,'2024-07-24 05:26:39','',4),(415,1,'2024-07-25 06:11:38','',4),(416,1,'2024-07-26 12:44:21','',3),(417,1,'2024-07-27 14:38:33','',5),(418,1,'2024-07-28 20:22:32','',4),(419,1,'2024-07-30 00:06:38','',4),(420,1,'2024-07-31 01:20:59','',5),(421,1,'2024-08-01 06:21:22','',5),(422,1,'2024-08-02 06:25:19','',4),(423,1,'2024-08-03 11:55:44','',3),(424,1,'2024-08-04 12:21:07','',4),(425,1,'2024-08-05 16:05:26','',4),(426,1,'2024-08-06 16:53:07','',5),(427,1,'2024-08-07 21:46:30','',4),(428,1,'2024-08-08 22:31:50','',6),(429,1,'2024-08-10 03:46:00','',5),(430,1,'2024-08-11 08:50:53','',5),(431,1,'2024-08-12 09:33:34','',6),(432,1,'2024-08-13 12:28:42','',5),(433,1,'2024-08-14 17:10:58','',5),(434,1,'2024-08-15 20:56:27','',5),(435,1,'2024-08-17 00:56:14','',4),(436,1,'2024-08-18 07:51:18','',6),(437,1,'2024-08-19 18:28:44','',4),(438,1,'2024-08-20 18:53:45','',4),(439,1,'2024-08-21 23:48:03','',4),(440,1,'2024-08-23 04:41:51','',5),(441,1,'2024-08-24 10:27:58','',4),(442,1,'2024-08-25 14:06:14','',4),(443,1,'2024-08-26 16:22:30','',5),(444,1,'2024-08-27 21:03:39','',4),(445,1,'2024-08-29 01:22:16','',5),(446,1,'2024-08-30 04:33:13','',4),(447,1,'2024-08-31 13:21:27','',4),(448,1,'2024-09-01 13:31:32','',4),(449,1,'2024-09-02 20:56:12','',5),(450,1,'2024-09-03 20:56:17','',3),(451,1,'2024-09-04 21:24:05','',4),(452,1,'2024-09-05 22:36:53','',3),(453,1,'2024-09-07 02:15:38','',2),(454,1,'2024-09-08 03:35:38','',4),(455,1,'2024-09-09 04:45:52','',4),(456,1,'2024-09-10 06:57:47','',5),(457,1,'2024-09-11 12:13:48','',4),(458,1,'2024-09-12 17:42:17','',5),(459,1,'2024-09-13 21:10:09','',4),(460,1,'2024-09-14 22:13:10','',3),(461,1,'2024-09-15 22:20:27','',5),(462,1,'2024-09-17 06:57:39','',5),(463,1,'2024-09-18 10:55:25','',4),(464,1,'2024-09-19 13:39:35','',4),(465,1,'2024-09-20 21:18:13','',5),(466,1,'2024-09-22 09:50:21','',4),(467,1,'2024-09-23 10:46:59','',5),(468,1,'2024-09-24 18:07:21','',5),(469,1,'2024-09-25 21:47:05','',5),(470,1,'2024-09-27 02:26:55','',5),(471,1,'2024-09-28 03:38:54','',5),(472,1,'2024-09-29 05:58:26','',4),(473,1,'2024-09-30 07:54:13','',4),(474,1,'2024-10-01 13:12:27','',6),(475,1,'2024-10-02 21:57:15','',4),(476,1,'2024-10-04 02:41:06','',5),(477,1,'2024-10-05 05:02:57','',5),(478,1,'2024-10-06 10:03:36','',4),(479,1,'2024-10-07 18:15:48','',4),(480,1,'2024-10-08 20:48:34','',5),(481,1,'2024-10-10 05:14:57','',7),(482,1,'2024-10-11 11:11:09','',5),(483,1,'2024-10-12 17:16:41','',3),(484,1,'2024-10-13 20:18:42','',5),(485,1,'2024-10-14 21:30:44','',4),(486,1,'2024-10-15 22:29:11','',4),(487,1,'2024-10-17 00:02:25','',4),(488,1,'2024-10-18 03:32:33','',4),(489,1,'2024-10-19 08:18:54','',3),(490,1,'2024-10-20 08:40:33','',5),(491,1,'2024-10-21 10:55:38','',4),(492,1,'2024-10-22 12:55:25','',5),(493,1,'2024-10-23 17:15:56','',5),(494,1,'2024-10-24 18:04:18','',4),(495,1,'2024-10-25 18:41:05','',4),(496,1,'2024-10-26 23:18:29','',4),(497,1,'2024-10-28 00:33:02','',5),(498,1,'2024-10-29 03:57:19','',6),(499,1,'2024-10-30 05:25:21','',10),(500,1,'2024-10-31 09:48:01','',4),(501,1,'2024-11-01 14:49:49','',7),(502,1,'2024-11-02 17:35:40','',8),(503,1,'2024-11-03 17:38:09','',5),(504,1,'2024-11-04 21:40:33','',4),(505,1,'2024-11-05 23:42:42','',4),(506,1,'2024-11-07 03:37:31','',6),(507,1,'2024-11-08 08:39:55','',4),(508,1,'2024-11-09 12:29:41','',3),(509,1,'2024-11-10 22:52:35','',5),(510,1,'2024-11-12 02:16:08','',4),(511,1,'2024-11-13 04:46:25','',5),(512,1,'2024-11-14 08:42:20','',5),(513,1,'2024-11-15 09:15:23','',4),(514,1,'2024-11-16 11:51:26','',4),(515,1,'2024-11-17 16:18:03','',8),(516,1,'2024-11-18 20:18:45','',5),(517,1,'2024-11-20 00:16:21','',4),(518,1,'2024-11-21 05:52:42','',5),(519,1,'2024-11-22 08:38:26','',6),(520,1,'2024-11-23 13:42:43','',3),(521,1,'2024-11-24 14:01:01','',4),(522,1,'2024-11-25 17:41:28','',4),(523,1,'2024-11-26 18:47:00','',4),(524,1,'2024-11-27 21:05:18','',4),(525,1,'2024-11-29 00:29:07','',5),(526,1,'2024-11-30 03:51:19','',4),(527,1,'2024-12-01 06:47:28','',5),(528,1,'2024-12-02 11:47:13','',4),(529,1,'2024-12-03 12:33:09','',4),(530,1,'2024-12-04 14:04:02','',4),(531,1,'2024-12-05 14:50:16','',4),(532,1,'2024-12-06 15:53:04','',4),(533,1,'2024-12-07 22:44:49','',6),(534,1,'2024-12-09 03:55:18','',6),(535,1,'2024-12-10 08:06:05','',5),(536,1,'2024-12-11 12:55:23','',6),(537,1,'2024-12-12 17:50:55','',5),(538,1,'2024-12-13 18:28:36','',4),(539,1,'2024-12-14 20:05:04','',4),(540,1,'2024-12-15 22:37:25','',4),(541,1,'2024-12-16 22:53:21','',4),(542,1,'2024-12-18 05:33:25','',3); /*!40000 ALTER TABLE `wp_gf_form_view` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_rest_api_keys` -- DROP TABLE IF EXISTS `wp_gf_rest_api_keys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_rest_api_keys` ( `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL, `description` varchar(200) DEFAULT NULL, `permissions` varchar(10) NOT NULL, `consumer_key` char(64) NOT NULL, `consumer_secret` char(43) NOT NULL, `nonces` longtext DEFAULT NULL, `truncated_key` char(7) NOT NULL, `last_access` datetime DEFAULT NULL, PRIMARY KEY (`key_id`), KEY `consumer_key` (`consumer_key`), KEY `consumer_secret` (`consumer_secret`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_rest_api_keys` -- LOCK TABLES `wp_gf_rest_api_keys` WRITE; /*!40000 ALTER TABLE `wp_gf_rest_api_keys` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_gf_rest_api_keys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) 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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) 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=InnoDB AUTO_INCREMENT=82390 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','https://juiceelectrical.co.nz','yes'),(2,'home','https://juiceelectrical.co.nz','yes'),(3,'blogname','Juice Electrical','yes'),(4,'blogdescription','Fresh! Everyday','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','chic@pinnacleandco.nz','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','','yes'),(12,'posts_per_rss','12','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','','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','12','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','','yes'),(27,'moderation_notify','','yes'),(28,'permalink_structure','/blog/%postname%/','yes'),(29,'rewrite_rules','a:112:{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:52:\"blog/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:40:\"blog/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:49:\"blog/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:44:\"blog/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:25:\"blog/tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:37:\"blog/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:19:\"blog/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:50:\"blog/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:45:\"blog/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:26:\"blog/type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:38:\"blog/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:20:\"blog/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:34:\"envira/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"envira/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"envira/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"envira/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"envira/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"envira/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"envira/([^/]+)/embed/?$\";s:39:\"index.php?envira=$matches[1]&embed=true\";s:27:\"envira/([^/]+)/trackback/?$\";s:33:\"index.php?envira=$matches[1]&tb=1\";s:35:\"envira/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?envira=$matches[1]&paged=$matches[2]\";s:42:\"envira/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?envira=$matches[1]&cpage=$matches[2]\";s:31:\"envira/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?envira=$matches[1]&page=$matches[2]\";s:23:\"envira/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"envira/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"envira/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"envira/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"envira/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"envira/[^/]+/([^/]+)/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:38:\"index.php?&page_id=1&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:52:\"blog/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:40:\"blog/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:74:\"blog/([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:69:\"blog/([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:50:\"blog/([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:62:\"blog/([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:44:\"blog/([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:61:\"blog/([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:56:\"blog/([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:37:\"blog/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:49:\"blog/([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:31:\"blog/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:48:\"blog/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:43:\"blog/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:24:\"blog/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:36:\"blog/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:18:\"blog/([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:32:\"blog/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"blog/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"blog/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blog/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blog/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"blog/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"blog/([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:25:\"blog/([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:45:\"blog/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:40:\"blog/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:33:\"blog/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:40:\"blog/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:29:\"blog/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:21:\"blog/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"blog/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"blog/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"blog/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"blog/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"blog/[^/]+/([^/]+)/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:11:{i:0;s:29:\"gravityforms/gravityforms.php\";i:1;s:34:\"advanced-custom-fields-pro/acf.php\";i:2;s:19:\"akismet/akismet.php\";i:3;s:33:\"envira-gallery/envira-gallery.php\";i:4;s:13:\"soil/soil.php\";i:5;s:23:\"wordfence/wordfence.php\";i:6;s:24:\"wordpress-seo/wp-seo.php\";i:7;s:48:\"wp-live-chat-software-for-wordpress/livechat.php\";i:8;s:39:\"wp-migrate-db-pro/wp-migrate-db-pro.php\";i:9;s:27:\"wp-optimize/wp-optimize.php\";i:10;s:61:\"wp-reviews-plugin-for-google/wp-reviews-plugin-for-google.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','pinnclonesmalltest/resources','yes'),(41,'stylesheet','pinnclonesmalltest/resources','yes'),(42,'comment_registration','1','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'),(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'),(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','','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','','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:1:{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:4:{s:33:\"envira-gallery/envira-gallery.php\";s:25:\"Envira_Gallery::uninstall\";s:27:\"wp-optimize/wp-optimize.php\";a:2:{i:0;s:13:\"WPO_Uninstall\";i:1;s:7:\"actions\";}s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";s:48:\"wp-live-chat-software-for-wordpress/livechat.php\";s:46:\"LiveChat\\LiveChatAdmin::uninstall_hook_handler\";}','no'),(80,'timezone_string','Pacific/Auckland','yes'),(81,'page_for_posts','4','yes'),(82,'page_on_front','1','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','514','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','0','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1737866584','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'initial_db_version','48748','yes'),(96,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:80:{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:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:27:\"edit_other_envira_galleries\";b:1;s:28:\"edit_others_envira_galleries\";b:1;s:24:\"publish_envira_galleries\";b:1;s:29:\"read_private_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:31:\"delete_private_envira_galleries\";b:1;s:33:\"delete_published_envira_galleries\";b:1;s:30:\"delete_others_envira_galleries\";b:1;s:29:\"edit_private_envira_galleries\";b:1;s:31:\"edit_published_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:51:{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:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:27:\"edit_other_envira_galleries\";b:1;s:28:\"edit_others_envira_galleries\";b:1;s:24:\"publish_envira_galleries\";b:1;s:29:\"read_private_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:31:\"delete_private_envira_galleries\";b:1;s:33:\"delete_published_envira_galleries\";b:1;s:30:\"delete_others_envira_galleries\";b:1;s:29:\"edit_private_envira_galleries\";b:1;s:31:\"edit_published_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:19:{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:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:24:\"publish_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:33:\"delete_published_envira_galleries\";b:1;s:31:\"edit_published_envira_galleries\";b:1;s:23:\"create_envira_galleries\";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:3:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:19:\"read_envira_gallery\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:40:{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:31:\"delete_private_envira_galleries\";b:1;s:30:\"delete_others_envira_galleries\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:38:{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:31:\"delete_private_envira_galleries\";b:1;s:30:\"delete_others_envira_galleries\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(97,'fresh_site','0','off'),(98,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";a:0:{}s:14:\"sidebar-footer\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:26:{i:1734564281;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1734564313;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1734566102;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:1734568009;a:1:{s:19:\"wpo_purge_old_cache\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:19:\"wpo_purge_old_cache\";s:4:\"args\";a:0:{}s:8:\"interval\";i:18000;}}}i:1734569101;a:1:{s:26:\"wpo_minify_purge_old_cache\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1734569102;a:1:{s:29:\"wpo_smush_clear_backup_images\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1734569110;a:2:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1734569137;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:1734574332;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:1734574334;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:1734574878;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:1734578998;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"9737332b08b1e7a52a86444b7ed0369e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1734578998;}}}}i:1734605702;a:2:{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:1734615212;a:1:{s:26:\"envira_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1734619355;a:1:{s:24:\"akismet_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;}}}i:1734629066;a:1:{s:26:\"wordfence_daily_autoUpdate\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1734629081;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1734648902;a:2:{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:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1734648959;a:1:{s:17:\"gravityforms_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1734715296;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:1734838198;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"a92fa1e9eb9608fcc5f456dd2b534c3a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1734838198;}}}}i:1734917149;a:1:{s:27:\"acf_update_site_health_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1734957903;a:1:{s:21:\"wpo_weekly_cron_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1734995243;a:1:{s:20:\"wpo_prune_cache_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1735260551;a:1:{s:28:\"wpo_smush_clear_failed_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"wpo_monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','on'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'recovery_keys','a:0:{}','off'),(127,'rg_gforms_key','49c0c5fcaa9a830e20ea0aa5b8abeded','yes'),(129,'gf_db_version','2.9.1','off'),(130,'rg_form_version','2.9.1','no'),(131,'gform_enable_background_updates','1','yes'),(133,'rg_gforms_message','<!--GFM-->','yes'),(134,'widget_gform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(135,'gravityformsaddon_gravityformswebapi_version','1.0','yes'),(136,'gravityformsaddon_gravityformscli_version','1.4','yes'),(137,'recently_activated','a:0:{}','off'),(144,'theme_mods_twentytwenty','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1599531138;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'),(158,'acf_version','6.3.11','yes'),(171,'current_theme','Pinnacle&Co. 2','yes'),(172,'theme_mods_pinnclonesmalltest/resources','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:18:\"primary_navigation\";i:2;s:17:\"footer_navigation\";i:3;}s:18:\"custom_css_post_id\";i:630;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1710116819;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";a:0:{}s:14:\"sidebar-footer\";a:0:{}}}s:11:\"custom_logo\";i:513;}','yes'),(174,'theme_switched','','yes'),(181,'finished_updating_comment_type','1','yes'),(193,'gf_previous_db_version','2.9.0','yes'),(194,'gf_upgrade_lock','','yes'),(195,'gform_sticky_admin_messages','a:0:{}','yes'),(207,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:2:{i:0;i:2;i:1;i:3;}}','off'),(227,'category_children','a:0:{}','yes'),(228,'auto_update_core_dev','enabled','yes'),(229,'auto_update_core_minor','enabled','yes'),(230,'auto_update_core_major','enabled','no'),(231,'db_upgraded','','on'),(255,'WPLANG','','yes'),(256,'new_admin_email','chic@pinnacleandco.nz','yes'),(267,'rg_gforms_disable_css','1','yes'),(268,'gform_enable_noconflict','1','yes'),(269,'rg_gforms_enable_akismet','1','yes'),(270,'rg_gforms_captcha_public_key','','yes'),(271,'rg_gforms_captcha_private_key','','yes'),(272,'rg_gforms_captcha_type','checkbox','yes'),(273,'rg_gforms_currency','NZD','yes'),(569,'recovery_mode_email_last_sent','1609826173','yes'),(679,'theme_mods_twentytwentyone','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:6:\"footer\";i:3;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1613983515;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}}}s:18:\"custom_css_post_id\";i:-1;}','no'),(2154,'auto_update_plugins','a:10:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:33:\"envira-gallery/envira-gallery.php\";i:2;s:19:\"akismet/akismet.php\";i:3;s:29:\"gravityforms/gravityforms.php\";i:4;s:39:\"wp-migrate-db-pro/wp-migrate-db-pro.php\";i:5;s:23:\"wordfence/wordfence.php\";i:6;s:27:\"wp-optimize/wp-optimize.php\";i:7;s:24:\"wordpress-seo/wp-seo.php\";i:8;s:48:\"wp-live-chat-software-for-wordpress/livechat.php\";i:9;s:61:\"wp-reviews-plugin-for-google/wp-reviews-plugin-for-google.php\";}','no'),(2163,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"chic@pinnacleandco.nz\";s:7:\"version\";s:5:\"6.7.1\";s:9:\"timestamp\";i:1732210485;}','off'),(2289,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2292,'https_detection_errors','a:0:{}','off'),(2305,'gf_rest_api_db_version','2.9.1','yes'),(2318,'wp_force_deactivated_plugins','a:0:{}','off'),(2441,'wp_migrate_addon_schema','1','yes'),(2454,'user_count','1','no'),(2461,'acf_pro_license','YToyOntzOjM6ImtleSI7czo3MjoiYjNKa1pYSmZhV1E5TmpVMU5UVjhkSGx3WlQxa1pYWmxiRzl3WlhKOFpHRjBaVDB5TURFMUxURXdMVEF5SURBd09qTTRPalV5IjtzOjM6InVybCI7czoyOToiaHR0cHM6Ly9qdWljZWVsZWN0cmljYWwuY28ubnoiO30=','yes'),(2629,'site_logo','513','yes'),(2809,'wpmdb_usage','a:2:{s:6:\"action\";s:4:\"push\";s:4:\"time\";i:1675979636;}','no'),(2810,'blog_public','1','yes'),(2811,'upload_path','','yes'),(2812,'upload_url_path','','yes'),(2813,'wpmdb_migration_options','a:17:{s:17:\"current_migration\";a:34:{s:9:\"connected\";b:1;s:6:\"intent\";s:4:\"push\";s:13:\"tables_option\";s:3:\"all\";s:15:\"tables_selected\";a:21:{i:0;s:14:\"wp_commentmeta\";i:1;s:11:\"wp_comments\";i:2;s:23:\"wp_gf_draft_submissions\";i:3;s:11:\"wp_gf_entry\";i:4;s:16:\"wp_gf_entry_meta\";i:5;s:17:\"wp_gf_entry_notes\";i:6;s:10:\"wp_gf_form\";i:7;s:15:\"wp_gf_form_meta\";i:8;s:20:\"wp_gf_form_revisions\";i:9;s:15:\"wp_gf_form_view\";i:10;s:19:\"wp_gf_rest_api_keys\";i:11;s:8:\"wp_links\";i:12;s:10:\"wp_options\";i:13;s:11:\"wp_postmeta\";i:14;s:8:\"wp_posts\";i:15;s:21:\"wp_term_relationships\";i:16;s:16:\"wp_term_taxonomy\";i:17;s:11:\"wp_termmeta\";i:18;s:8:\"wp_terms\";i:19;s:11:\"wp_usermeta\";i:20;s:8:\"wp_users\";}s:13:\"backup_option\";s:4:\"none\";s:22:\"backup_tables_selected\";a:0:{}s:17:\"post_types_option\";s:3:\"all\";s:19:\"post_types_selected\";a:0:{}s:25:\"advanced_options_selected\";a:2:{i:0;s:13:\"replace_guids\";i:1;s:18:\"exclude_transients\";}s:12:\"profile_name\";s:43:\"Push to devjuiceelectrical.pinnacleandco.nz\";s:25:\"selected_existing_profile\";N;s:12:\"profile_type\";N;s:6:\"status\";s:0:\"\";s:6:\"stages\";a:3:{i:0;s:6:\"tables\";i:1;s:11:\"media_files\";i:2;s:12:\"plugin_files\";}s:13:\"current_stage\";s:18:\"initiate_migration\";s:15:\"stages_complete\";a:0:{}s:7:\"running\";b:1;s:17:\"migration_enabled\";b:1;s:12:\"migration_id\";s:36:\"e1b2b5b0-afd5-43fd-a6d5-d796b8d95982\";s:13:\"source_prefix\";s:3:\"wp_\";s:18:\"destination_prefix\";s:3:\"wp_\";s:7:\"preview\";b:0;s:19:\"selectedComboOption\";s:7:\"preview\";s:13:\"twoMultisites\";b:0;s:11:\"localSource\";b:1;s:15:\"databaseEnabled\";b:1;s:18:\"currentPayloadSize\";i:0;s:21:\"currentMaxPayloadSize\";N;s:20:\"fileTransferRequests\";i:0;s:18:\"payloadSizeHistory\";a:0:{}s:17:\"fileTransferStats\";a:0:{}s:29:\"forceHighPerformanceTransfers\";b:1;s:15:\"fseDumpFilename\";N;s:30:\"highPerformanceTransfersStatus\";b:0;}s:14:\"search_replace\";a:5:{s:23:\"standard_search_replace\";a:2:{s:6:\"domain\";a:3:{s:6:\"search\";s:25:\"//juiceelectricalnew.test\";s:7:\"replace\";s:37:\"//devjuiceelectrical.pinnacleandco.nz\";s:7:\"enabled\";b:1;}s:4:\"path\";a:3:{s:6:\"search\";s:55:\"/Users/design3/_Development/Projects/juiceelectricalnew\";s:7:\"replace\";s:46:\"/var/www/vhosts/juiceelectrical.co.nz/httpdocs\";s:7:\"enabled\";b:1;}}s:24:\"standard_options_enabled\";a:2:{i:0;s:6:\"domain\";i:1;s:4:\"path\";}s:23:\"standard_search_visible\";b:1;s:21:\"custom_search_replace\";a:1:{i:0;a:8:{s:11:\"replace_old\";s:0:\"\";s:11:\"replace_new\";s:0:\"\";s:5:\"focus\";b:0;s:5:\"regex\";b:0;s:12:\"isValidRegex\";N;s:23:\"replace_old_placeholder\";N;s:23:\"replace_new_placeholder\";N;s:2:\"id\";s:36:\"fd69aa65-95d9-465d-b5ff-ea47b6d26a5a\";}}s:27:\"custom_search_domain_locked\";b:0;}s:15:\"connection_info\";s:70:\"https://juiceelectrical.co.nz\nlOc1LGGtlyWqSfUkodQuK/T0AuBC441TAbIJeIP5\";s:6:\"action\";s:4:\"push\";s:13:\"select_tables\";a:21:{i:0;s:14:\"wp_commentmeta\";i:1;s:11:\"wp_comments\";i:2;s:23:\"wp_gf_draft_submissions\";i:3;s:11:\"wp_gf_entry\";i:4;s:16:\"wp_gf_entry_meta\";i:5;s:17:\"wp_gf_entry_notes\";i:6;s:10:\"wp_gf_form\";i:7;s:15:\"wp_gf_form_meta\";i:8;s:20:\"wp_gf_form_revisions\";i:9;s:15:\"wp_gf_form_view\";i:10;s:19:\"wp_gf_rest_api_keys\";i:11;s:8:\"wp_links\";i:12;s:10:\"wp_options\";i:13;s:11:\"wp_postmeta\";i:14;s:8:\"wp_posts\";i:15;s:21:\"wp_term_relationships\";i:16;s:16:\"wp_term_taxonomy\";i:17;s:11:\"wp_termmeta\";i:18;s:8:\"wp_terms\";i:19;s:11:\"wp_usermeta\";i:20;s:8:\"wp_users\";}s:20:\"table_migrate_option\";s:3:\"all\";s:13:\"create_backup\";i:0;s:13:\"backup_option\";s:4:\"none\";s:13:\"select_backup\";a:0:{}s:17:\"select_post_types\";a:0:{}s:22:\"exclude_post_revisions\";s:1:\"0\";s:13:\"replace_guids\";s:1:\"1\";s:25:\"compatibility_older_mysql\";s:1:\"0\";s:18:\"exclude_transients\";s:1:\"1\";s:12:\"exclude_spam\";s:1:\"0\";s:19:\"keep_active_plugins\";s:1:\"0\";s:9:\"gzip_file\";s:1:\"0\";}','no'),(2814,'wpmdb_migration_state','a:4:{s:6:\"action\";s:19:\"wpmdb_process_chunk\";s:5:\"table\";s:8:\"wp_users\";s:13:\"chunk_gzipped\";d:1;s:3:\"sig\";s:28:\"30wQllJt2ciVwTFcLF8WrQdgaqs=\";}','no'),(2815,'wpmdb_recent_migrations','','no'),(2816,'wpmdb_remote_migration_state','a:24:{s:6:\"action\";s:31:\"wpmdb_remote_finalize_migration\";s:6:\"intent\";s:4:\"pull\";s:9:\"form_data\";s:3404:\"eyJjdXJyZW50X21pZ3JhdGlvbiI6eyJjb25uZWN0ZWQiOnRydWUsImludGVudCI6InB1c2giLCJ0YWJsZXNfb3B0aW9uIjoiYWxsIiwidGFibGVzX3NlbGVjdGVkIjpbIndwX2NvbW1lbnRtZXRhIiwid3BfY29tbWVudHMiLCJ3cF9nZl9kcmFmdF9zdWJtaXNzaW9ucyIsIndwX2dmX2VudHJ5Iiwid3BfZ2ZfZW50cnlfbWV0YSIsIndwX2dmX2VudHJ5X25vdGVzIiwid3BfZ2ZfZm9ybSIsIndwX2dmX2Zvcm1fbWV0YSIsIndwX2dmX2Zvcm1fcmV2aXNpb25zIiwid3BfZ2ZfZm9ybV92aWV3Iiwid3BfZ2ZfcmVzdF9hcGlfa2V5cyIsIndwX2xpbmtzIiwid3Bfb3B0aW9ucyIsIndwX3Bvc3RtZXRhIiwid3BfcG9zdHMiLCJ3cF90ZXJtX3JlbGF0aW9uc2hpcHMiLCJ3cF90ZXJtX3RheG9ub215Iiwid3BfdGVybW1ldGEiLCJ3cF90ZXJtcyIsIndwX3VzZXJtZXRhIiwid3BfdXNlcnMiXSwiYmFja3VwX29wdGlvbiI6Im5vbmUiLCJiYWNrdXBfdGFibGVzX3NlbGVjdGVkIjpbXSwicG9zdF90eXBlc19vcHRpb24iOiJhbGwiLCJwb3N0X3R5cGVzX3NlbGVjdGVkIjpbXSwiYWR2YW5jZWRfb3B0aW9uc19zZWxlY3RlZCI6WyJyZXBsYWNlX2d1aWRzIiwiZXhjbHVkZV90cmFuc2llbnRzIl0sInByb2ZpbGVfbmFtZSI6IlB1c2ggdG8gZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnoiLCJzZWxlY3RlZF9leGlzdGluZ19wcm9maWxlIjpudWxsLCJwcm9maWxlX3R5cGUiOm51bGwsInN0YXR1cyI6IiIsInN0YWdlcyI6WyJ0YWJsZXMiLCJtZWRpYV9maWxlcyIsInBsdWdpbl9maWxlcyJdLCJjdXJyZW50X3N0YWdlIjoibWlncmF0ZSIsInN0YWdlc19jb21wbGV0ZSI6W10sInJ1bm5pbmciOnRydWUsIm1pZ3JhdGlvbl9lbmFibGVkIjp0cnVlLCJtaWdyYXRpb25faWQiOiJlMWIyYjViMC1hZmQ1LTQzZmQtYTZkNS1kNzk2YjhkOTU5ODIiLCJzb3VyY2VfcHJlZml4Ijoid3BfIiwiZGVzdGluYXRpb25fcHJlZml4Ijoid3BfIiwicHJldmlldyI6ZmFsc2UsInNlbGVjdGVkQ29tYm9PcHRpb24iOiJwcmV2aWV3IiwidHdvTXVsdGlzaXRlcyI6ZmFsc2UsImxvY2FsU291cmNlIjp0cnVlLCJkYXRhYmFzZUVuYWJsZWQiOnRydWUsImN1cnJlbnRQYXlsb2FkU2l6ZSI6MCwiY3VycmVudE1heFBheWxvYWRTaXplIjpudWxsLCJmaWxlVHJhbnNmZXJSZXF1ZXN0cyI6MCwicGF5bG9hZFNpemVIaXN0b3J5IjpbXSwiZmlsZVRyYW5zZmVyU3RhdHMiOltdLCJmb3JjZUhpZ2hQZXJmb3JtYW5jZVRyYW5zZmVycyI6dHJ1ZSwiZnNlRHVtcEZpbGVuYW1lIjpudWxsLCJoaWdoUGVyZm9ybWFuY2VUcmFuc2ZlcnNTdGF0dXMiOmZhbHNlfSwic2VhcmNoX3JlcGxhY2UiOnsic3RhbmRhcmRfc2VhcmNoX3JlcGxhY2UiOnsiZG9tYWluIjp7InNlYXJjaCI6Ii8vanVpY2VlbGVjdHJpY2FsbmV3LnRlc3QiLCJyZXBsYWNlIjoiLy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5ueiIsImVuYWJsZWQiOnRydWV9LCJwYXRoIjp7InNlYXJjaCI6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXciLCJyZXBsYWNlIjoiL3Zhci93d3cvdmhvc3RzL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56L2h0dHBkb2NzIiwiZW5hYmxlZCI6dHJ1ZX19LCJzdGFuZGFyZF9vcHRpb25zX2VuYWJsZWQiOlsiZG9tYWluIiwicGF0aCJdLCJzdGFuZGFyZF9zZWFyY2hfdmlzaWJsZSI6dHJ1ZSwiY3VzdG9tX3NlYXJjaF9yZXBsYWNlIjpbeyJyZXBsYWNlX29sZCI6IiIsInJlcGxhY2VfbmV3IjoiIiwiZm9jdXMiOmZhbHNlLCJyZWdleCI6ZmFsc2UsImlzVmFsaWRSZWdleCI6bnVsbCwicmVwbGFjZV9vbGRfcGxhY2Vob2xkZXIiOm51bGwsInJlcGxhY2VfbmV3X3BsYWNlaG9sZGVyIjpudWxsLCJpZCI6ImZkNjlhYTY1LTk1ZDktNDY1ZC1iNWZmLWVhNDdiNmQyNmE1YSJ9XSwiY3VzdG9tX3NlYXJjaF9kb21haW5fbG9ja2VkIjpmYWxzZX0sImNvbm5lY3Rpb25faW5mbyI6eyJjb25uZWN0aW9uX3N0YXRlIjp7InZhbHVlIjoiaHR0cHM6Ly9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uelxubE9jMUxHR3RseVdxU2ZVa29kUXVLL1QwQXVCQzQ0MVRBYklKZUlQNSIsInVybCI6Imh0dHBzOi8vZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnoiLCJrZXkiOiJsT2MxTEdHdGx5V3FTZlVrb2RRdUsvVDBBdUJDNDQxVEFiSUplSVA1In0sInN0YXR1cyI6eyJhdXRoX2Zvcm0iOnsidXNlcm5hbWUiOiIiLCJwYXNzd29yZCI6IiJ9LCJzaG93X2F1dGhfZm9ybSI6ZmFsc2UsImNvbm5lY3RpbmciOmZhbHNlLCJlcnJvciI6ZmFsc2UsImVycm9yX21zZyI6IiIsImJ1dHRvbl9zdGF0dXMiOiJoaWRkZW4iLCJzc2xfbm90aWNlIjpmYWxzZSwicGFzdGVkIjpmYWxzZSwiY29weV90b19yZW1vdGUiOmZhbHNlLCJwcmVmaXhfbWlzbWF0Y2giOmZhbHNlLCJtaXhlZF9jYXNlX3RhYmxlX25hbWVfd2FybmluZyI6ZmFsc2UsInNob3dfbXN0X3dhcm5pbmciOmZhbHNlLCJ1cGRhdGVfcGx1Z2luX29uX3JlbW90ZSI6ZmFsc2UsInJldHJ5X292ZXJfaHR0cCI6ZmFsc2V9fX0=\";s:12:\"site_details\";s:15776:\"YToyOntzOjU6ImxvY2FsIjthOjI0OntzOjEyOiJpc19tdWx0aXNpdGUiO3M6NToiZmFsc2UiO3M6ODoic2l0ZV91cmwiO3M6MzE6Imh0dHBzOi8vanVpY2VlbGVjdHJpY2FsbmV3LnRlc3QiO3M6ODoiaG9tZV91cmwiO3M6MzE6Imh0dHBzOi8vanVpY2VlbGVjdHJpY2FsbmV3LnRlc3QiO3M6NjoicHJlZml4IjtzOjM6IndwXyI7czoxNToidXBsb2Fkc19iYXNldXJsIjtzOjUxOiJodHRwczovL2p1aWNlZWxlY3RyaWNhbG5ldy50ZXN0L3dwLWNvbnRlbnQvdXBsb2Fkcy8iO3M6NzoidXBsb2FkcyI7YTo2OntzOjQ6InBhdGgiO3M6ODI6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvd3AtY29udGVudC91cGxvYWRzLzIwMjMvMDIiO3M6MzoidXJsIjtzOjU4OiJodHRwczovL2p1aWNlZWxlY3RyaWNhbG5ldy50ZXN0L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIzLzAyIjtzOjY6InN1YmRpciI7czo4OiIvMjAyMy8wMiI7czo3OiJiYXNlZGlyIjtzOjc0OiIvVXNlcnMvZGVzaWduMy9fRGV2ZWxvcG1lbnQvUHJvamVjdHMvanVpY2VlbGVjdHJpY2FsbmV3L3dwLWNvbnRlbnQvdXBsb2FkcyI7czo3OiJiYXNldXJsIjtzOjUwOiJodHRwczovL2p1aWNlZWxlY3RyaWNhbG5ldy50ZXN0L3dwLWNvbnRlbnQvdXBsb2FkcyI7czo1OiJlcnJvciI7YjowO31zOjExOiJ1cGxvYWRzX2RpciI7czozMzoid3AtY29udGVudC91cGxvYWRzL3dwLW1pZ3JhdGUtZGIvIjtzOjg6InN1YnNpdGVzIjthOjA6e31zOjEzOiJzdWJzaXRlc19pbmZvIjthOjA6e31zOjIwOiJpc19zdWJkb21haW5faW5zdGFsbCI7czo1OiJmYWxzZSI7czoyNjoiaGlnaF9wZXJmb3JtYW5jZV90cmFuc2ZlcnMiO2I6MDtzOjI5OiJ0aGVvcmV0aWNhbFRyYW5zZmVyQm90dGxlbmVjayI7aTo1MzY2MjA5MTI7czoxMToiY29udGVudF9kaXIiO3M6NjY6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvd3AtY29udGVudCI7czoxOToidHJhbnNmZXJfYm90dGxlbmVjayI7aTo1MzY2MjA5MTI7czoxNjoibWF4X3JlcXVlc3Rfc2l6ZSI7aToxMDQ4NTc2O3M6NjoicGhwX29zIjtzOjY6IkRhcndpbiI7czo3OiJwbHVnaW5zIjthOjM6e3M6MzQ6ImFkdmFuY2VkLWN1c3RvbS1maWVsZHMtcHJvL2FjZi5waHAiO2E6MTp7aTowO2E6NDp7czo0OiJuYW1lIjtzOjI2OiJBZHZhbmNlZCBDdXN0b20gRmllbGRzIFBSTyI7czo2OiJhY3RpdmUiO2I6MTtzOjQ6InBhdGgiO3M6MTAxOiIvVXNlcnMvZGVzaWduMy9fRGV2ZWxvcG1lbnQvUHJvamVjdHMvanVpY2VlbGVjdHJpY2FsbmV3L3dwLWNvbnRlbnQvcGx1Z2lucy9hZHZhbmNlZC1jdXN0b20tZmllbGRzLXBybyI7czo3OiJ2ZXJzaW9uIjtzOjU6IjYuMC43Ijt9fXM6MTM6InNvaWwvc29pbC5waHAiO2E6MTp7aTowO2E6NDp7czo0OiJuYW1lIjtzOjQ6IlNvaWwiO3M6NjoiYWN0aXZlIjtiOjE7czo0OiJwYXRoIjtzOjc5OiIvVXNlcnMvZGVzaWduMy9fRGV2ZWxvcG1lbnQvUHJvamVjdHMvanVpY2VlbGVjdHJpY2FsbmV3L3dwLWNvbnRlbnQvcGx1Z2lucy9zb2lsIjtzOjc6InZlcnNpb24iO3M6NToiNC4xLjEiO319czozOToid3AtbWlncmF0ZS1kYi1wcm8vd3AtbWlncmF0ZS1kYi1wcm8ucGhwIjthOjE6e2k6MDthOjQ6e3M6NDoibmFtZSI7czoxMDoiV1AgTWlncmF0ZSI7czo2OiJhY3RpdmUiO2I6MTtzOjQ6InBhdGgiO3M6OTI6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvd3AtY29udGVudC9wbHVnaW5zL3dwLW1pZ3JhdGUtZGItcHJvIjtzOjc6InZlcnNpb24iO3M6NToiMi42LjAiO319fXM6MTI6InBsdWdpbnNfcGF0aCI7czo3NDoiL1VzZXJzL2Rlc2lnbjMvX0RldmVsb3BtZW50L1Byb2plY3RzL2p1aWNlZWxlY3RyaWNhbG5ldy93cC1jb250ZW50L3BsdWdpbnMiO3M6OToibXVwbHVnaW5zIjthOjA6e31zOjE0OiJtdXBsdWdpbnNfcGF0aCI7czo3NzoiL1VzZXJzL2Rlc2lnbjMvX0RldmVsb3BtZW50L1Byb2plY3RzL2p1aWNlZWxlY3RyaWNhbG5ldy93cC1jb250ZW50L211LXBsdWdpbnMiO3M6NjoidGhlbWVzIjthOjE6e3M6Mjg6InBpbm5jbG9uZXNtYWxsdGVzdC9yZXNvdXJjZXMiO2E6MTp7aTowO2E6NDp7czo0OiJuYW1lIjtzOjE0OiJQaW5uYWNsZSZDby4gMiI7czo2OiJhY3RpdmUiO2I6MTtzOjc6InZlcnNpb24iO3M6NToiMS4wLjAiO3M6NDoicGF0aCI7czoxMDI6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvd3AtY29udGVudC90aGVtZXMvcGlubmNsb25lc21hbGx0ZXN0L3Jlc291cmNlcyI7fX19czoxMToidGhlbWVzX3BhdGgiO3M6NzQ6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvd3AtY29udGVudC90aGVtZXMvIjtzOjY6Im90aGVycyI7YTowOnt9czo0OiJjb3JlIjthOjE5OntzOjk6ImluZGV4LnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6OToiaW5kZXgucGhwIjtzOjQ6InBhdGgiO3M6NjY6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvL2luZGV4LnBocCI7fX1zOjExOiJsaWNlbnNlLnR4dCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTE6ImxpY2Vuc2UudHh0IjtzOjQ6InBhdGgiO3M6Njg6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvL2xpY2Vuc2UudHh0Ijt9fXM6MTE6InJlYWRtZS5odG1sIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxMToicmVhZG1lLmh0bWwiO3M6NDoicGF0aCI7czo2ODoiL1VzZXJzL2Rlc2lnbjMvX0RldmVsb3BtZW50L1Byb2plY3RzL2p1aWNlZWxlY3RyaWNhbG5ldy8vcmVhZG1lLmh0bWwiO319czoxNToid3AtYWN0aXZhdGUucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxNToid3AtYWN0aXZhdGUucGhwIjtzOjQ6InBhdGgiO3M6NzI6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvL3dwLWFjdGl2YXRlLnBocCI7fX1zOjg6IndwLWFkbWluIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czo4OiJ3cC1hZG1pbiI7czo0OiJwYXRoIjtzOjY1OiIvVXNlcnMvZGVzaWduMy9fRGV2ZWxvcG1lbnQvUHJvamVjdHMvanVpY2VlbGVjdHJpY2FsbmV3Ly93cC1hZG1pbiI7fX1zOjE4OiJ3cC1ibG9nLWhlYWRlci5waHAiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjE4OiJ3cC1ibG9nLWhlYWRlci5waHAiO3M6NDoicGF0aCI7czo3NToiL1VzZXJzL2Rlc2lnbjMvX0RldmVsb3BtZW50L1Byb2plY3RzL2p1aWNlZWxlY3RyaWNhbG5ldy8vd3AtYmxvZy1oZWFkZXIucGhwIjt9fXM6MjA6IndwLWNvbW1lbnRzLXBvc3QucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoyMDoid3AtY29tbWVudHMtcG9zdC5waHAiO3M6NDoicGF0aCI7czo3NzoiL1VzZXJzL2Rlc2lnbjMvX0RldmVsb3BtZW50L1Byb2plY3RzL2p1aWNlZWxlY3RyaWNhbG5ldy8vd3AtY29tbWVudHMtcG9zdC5waHAiO319czoyMDoid3AtY29uZmlnLXNhbXBsZS5waHAiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjIwOiJ3cC1jb25maWctc2FtcGxlLnBocCI7czo0OiJwYXRoIjtzOjc3OiIvVXNlcnMvZGVzaWduMy9fRGV2ZWxvcG1lbnQvUHJvamVjdHMvanVpY2VlbGVjdHJpY2FsbmV3Ly93cC1jb25maWctc2FtcGxlLnBocCI7fX1zOjEzOiJ3cC1jb25maWcucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxMzoid3AtY29uZmlnLnBocCI7czo0OiJwYXRoIjtzOjcwOiIvVXNlcnMvZGVzaWduMy9fRGV2ZWxvcG1lbnQvUHJvamVjdHMvanVpY2VlbGVjdHJpY2FsbmV3Ly93cC1jb25maWcucGhwIjt9fXM6MTE6IndwLWNyb24ucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxMToid3AtY3Jvbi5waHAiO3M6NDoicGF0aCI7czo2ODoiL1VzZXJzL2Rlc2lnbjMvX0RldmVsb3BtZW50L1Byb2plY3RzL2p1aWNlZWxlY3RyaWNhbG5ldy8vd3AtY3Jvbi5waHAiO319czoxMToid3AtaW5jbHVkZXMiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjExOiJ3cC1pbmNsdWRlcyI7czo0OiJwYXRoIjtzOjY4OiIvVXNlcnMvZGVzaWduMy9fRGV2ZWxvcG1lbnQvUHJvamVjdHMvanVpY2VlbGVjdHJpY2FsbmV3Ly93cC1pbmNsdWRlcyI7fX1zOjE3OiJ3cC1saW5rcy1vcG1sLnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTc6IndwLWxpbmtzLW9wbWwucGhwIjtzOjQ6InBhdGgiO3M6NzQ6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvL3dwLWxpbmtzLW9wbWwucGhwIjt9fXM6MTE6IndwLWxvYWQucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxMToid3AtbG9hZC5waHAiO3M6NDoicGF0aCI7czo2ODoiL1VzZXJzL2Rlc2lnbjMvX0RldmVsb3BtZW50L1Byb2plY3RzL2p1aWNlZWxlY3RyaWNhbG5ldy8vd3AtbG9hZC5waHAiO319czoxMjoid3AtbG9naW4ucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxMjoid3AtbG9naW4ucGhwIjtzOjQ6InBhdGgiO3M6Njk6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvL3dwLWxvZ2luLnBocCI7fX1zOjExOiJ3cC1tYWlsLnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTE6IndwLW1haWwucGhwIjtzOjQ6InBhdGgiO3M6Njg6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvL3dwLW1haWwucGhwIjt9fXM6MTU6IndwLXNldHRpbmdzLnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTU6IndwLXNldHRpbmdzLnBocCI7czo0OiJwYXRoIjtzOjcyOiIvVXNlcnMvZGVzaWduMy9fRGV2ZWxvcG1lbnQvUHJvamVjdHMvanVpY2VlbGVjdHJpY2FsbmV3Ly93cC1zZXR0aW5ncy5waHAiO319czoxMzoid3Atc2lnbnVwLnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTM6IndwLXNpZ251cC5waHAiO3M6NDoicGF0aCI7czo3MDoiL1VzZXJzL2Rlc2lnbjMvX0RldmVsb3BtZW50L1Byb2plY3RzL2p1aWNlZWxlY3RyaWNhbG5ldy8vd3Atc2lnbnVwLnBocCI7fX1zOjE2OiJ3cC10cmFja2JhY2sucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxNjoid3AtdHJhY2tiYWNrLnBocCI7czo0OiJwYXRoIjtzOjczOiIvVXNlcnMvZGVzaWduMy9fRGV2ZWxvcG1lbnQvUHJvamVjdHMvanVpY2VlbGVjdHJpY2FsbmV3Ly93cC10cmFja2JhY2sucGhwIjt9fXM6MTA6InhtbHJwYy5waHAiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjEwOiJ4bWxycGMucGhwIjtzOjQ6InBhdGgiO3M6Njc6Ii9Vc2Vycy9kZXNpZ24zL19EZXZlbG9wbWVudC9Qcm9qZWN0cy9qdWljZWVsZWN0cmljYWxuZXcvL3htbHJwYy5waHAiO319fX1zOjY6InJlbW90ZSI7YToyNDp7czoxMjoiaXNfbXVsdGlzaXRlIjtzOjU6ImZhbHNlIjtzOjg6InNpdGVfdXJsIjtzOjQzOiJodHRwczovL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56IjtzOjg6ImhvbWVfdXJsIjtzOjQzOiJodHRwczovL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56IjtzOjY6InByZWZpeCI7czozOiJ3cF8iO3M6MTU6InVwbG9hZHNfYmFzZXVybCI7czo2MzoiaHR0cHM6Ly9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei93cC1jb250ZW50L3VwbG9hZHMvIjtzOjc6InVwbG9hZHMiO2E6Njp7czo0OiJwYXRoIjtzOjg3OiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3Mvd3AtY29udGVudC91cGxvYWRzLzIwMjMvMDIiO3M6MzoidXJsIjtzOjcwOiJodHRwczovL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIzLzAyIjtzOjY6InN1YmRpciI7czo4OiIvMjAyMy8wMiI7czo3OiJiYXNlZGlyIjtzOjc5OiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3Mvd3AtY29udGVudC91cGxvYWRzIjtzOjc6ImJhc2V1cmwiO3M6NjI6Imh0dHBzOi8vZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovd3AtY29udGVudC91cGxvYWRzIjtzOjU6ImVycm9yIjtiOjA7fXM6MTE6InVwbG9hZHNfZGlyIjtzOjMzOiJ3cC1jb250ZW50L3VwbG9hZHMvd3AtbWlncmF0ZS1kYi8iO3M6ODoic3Vic2l0ZXMiO2E6MDp7fXM6MTM6InN1YnNpdGVzX2luZm8iO2E6MDp7fXM6MjA6ImlzX3N1YmRvbWFpbl9pbnN0YWxsIjtzOjU6ImZhbHNlIjtzOjI2OiJoaWdoX3BlcmZvcm1hbmNlX3RyYW5zZmVycyI7YjowO3M6Mjk6InRoZW9yZXRpY2FsVHJhbnNmZXJCb3R0bGVuZWNrIjtpOjE4NDcxNTI7czoxMToiY29udGVudF9kaXIiO3M6NzE6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy93cC1jb250ZW50IjtzOjE5OiJ0cmFuc2Zlcl9ib3R0bGVuZWNrIjtpOjE4NDcxNTI7czoxNjoibWF4X3JlcXVlc3Rfc2l6ZSI7aToxMDQ4NTc2O3M6NjoicGhwX29zIjtzOjU6IkxpbnV4IjtzOjc6InBsdWdpbnMiO2E6Mzp7czoxOToiYWtpc21ldC9ha2lzbWV0LnBocCI7YToxOntpOjA7YTo0OntzOjQ6Im5hbWUiO3M6MTc6IkFraXNtZXQgQW50aS1TcGFtIjtzOjY6ImFjdGl2ZSI7YjowO3M6NDoicGF0aCI7czo4NzoiL3Zhci93d3cvdmhvc3RzL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56L2h0dHBkb2NzL3dwLWNvbnRlbnQvcGx1Z2lucy9ha2lzbWV0IjtzOjc6InZlcnNpb24iO3M6NToiNS4wLjEiO319czo5OiJoZWxsby5waHAiO2E6MTp7aTowO2E6NDp7czo0OiJuYW1lIjtzOjExOiJIZWxsbyBEb2xseSI7czo2OiJhY3RpdmUiO2I6MDtzOjQ6InBhdGgiO3M6ODk6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy93cC1jb250ZW50L3BsdWdpbnMvaGVsbG8ucGhwIjtzOjc6InZlcnNpb24iO3M6NToiMS43LjIiO319czozOToid3AtbWlncmF0ZS1kYi1wcm8vd3AtbWlncmF0ZS1kYi1wcm8ucGhwIjthOjE6e2k6MDthOjQ6e3M6NDoibmFtZSI7czoxMDoiV1AgTWlncmF0ZSI7czo2OiJhY3RpdmUiO2I6MTtzOjQ6InBhdGgiO3M6OTc6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy93cC1jb250ZW50L3BsdWdpbnMvd3AtbWlncmF0ZS1kYi1wcm8iO3M6NzoidmVyc2lvbiI7czo1OiIyLjYuMCI7fX19czoxMjoicGx1Z2luc19wYXRoIjtzOjc5OiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3Mvd3AtY29udGVudC9wbHVnaW5zIjtzOjk6Im11cGx1Z2lucyI7YTowOnt9czoxNDoibXVwbHVnaW5zX3BhdGgiO3M6ODI6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy93cC1jb250ZW50L211LXBsdWdpbnMiO3M6NjoidGhlbWVzIjthOjQ6e3M6Mjg6InBpbm5jbG9uZXNtYWxsdGVzdC9yZXNvdXJjZXMiO2E6MTp7aTowO2E6NDp7czo0OiJuYW1lIjtzOjE0OiJQaW5uYWNsZSZDby4gMiI7czo2OiJhY3RpdmUiO2I6MTtzOjc6InZlcnNpb24iO3M6NToiMS4wLjAiO3M6NDoicGF0aCI7czoxMDc6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy93cC1jb250ZW50L3RoZW1lcy9waW5uY2xvbmVzbWFsbHRlc3QvcmVzb3VyY2VzIjt9fXM6MTU6InR3ZW50eXR3ZW50eW9uZSI7YToxOntpOjA7YTo0OntzOjQ6Im5hbWUiO3M6MTc6IlR3ZW50eSBUd2VudHktT25lIjtzOjY6ImFjdGl2ZSI7YjowO3M6NzoidmVyc2lvbiI7czozOiIxLjciO3M6NDoicGF0aCI7czo5NDoiL3Zhci93d3cvdmhvc3RzL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56L2h0dHBkb2NzL3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eXR3ZW50eW9uZSI7fX1zOjE3OiJ0d2VudHl0d2VudHl0aHJlZSI7YToxOntpOjA7YTo0OntzOjQ6Im5hbWUiO3M6MTk6IlR3ZW50eSBUd2VudHktVGhyZWUiO3M6NjoiYWN0aXZlIjtiOjA7czo3OiJ2ZXJzaW9uIjtzOjM6IjEuMCI7czo0OiJwYXRoIjtzOjk2OiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3Mvd3AtY29udGVudC90aGVtZXMvdHdlbnR5dHdlbnR5dGhyZWUiO319czoxNToidHdlbnR5dHdlbnR5dHdvIjthOjE6e2k6MDthOjQ6e3M6NDoibmFtZSI7czoxNzoiVHdlbnR5IFR3ZW50eS1Ud28iO3M6NjoiYWN0aXZlIjtiOjA7czo3OiJ2ZXJzaW9uIjtzOjM6IjEuMyI7czo0OiJwYXRoIjtzOjk0OiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3Mvd3AtY29udGVudC90aGVtZXMvdHdlbnR5dHdlbnR5dHdvIjt9fX1zOjExOiJ0aGVtZXNfcGF0aCI7czo3OToiL3Zhci93d3cvdmhvc3RzL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56L2h0dHBkb2NzL3dwLWNvbnRlbnQvdGhlbWVzLyI7czo2OiJvdGhlcnMiO2E6MDp7fXM6NDoiY29yZSI7YToxOTp7czo5OiJpbmRleC5waHAiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjk6ImluZGV4LnBocCI7czo0OiJwYXRoIjtzOjcxOiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3MvL2luZGV4LnBocCI7fX1zOjExOiJsaWNlbnNlLnR4dCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTE6ImxpY2Vuc2UudHh0IjtzOjQ6InBhdGgiO3M6NzM6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy8vbGljZW5zZS50eHQiO319czoxMToicmVhZG1lLmh0bWwiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjExOiJyZWFkbWUuaHRtbCI7czo0OiJwYXRoIjtzOjczOiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3MvL3JlYWRtZS5odG1sIjt9fXM6MTU6IndwLWFjdGl2YXRlLnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTU6IndwLWFjdGl2YXRlLnBocCI7czo0OiJwYXRoIjtzOjc3OiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3MvL3dwLWFjdGl2YXRlLnBocCI7fX1zOjg6IndwLWFkbWluIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czo4OiJ3cC1hZG1pbiI7czo0OiJwYXRoIjtzOjcwOiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3MvL3dwLWFkbWluIjt9fXM6MTg6IndwLWJsb2ctaGVhZGVyLnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTg6IndwLWJsb2ctaGVhZGVyLnBocCI7czo0OiJwYXRoIjtzOjgwOiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3MvL3dwLWJsb2ctaGVhZGVyLnBocCI7fX1zOjIwOiJ3cC1jb21tZW50cy1wb3N0LnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MjA6IndwLWNvbW1lbnRzLXBvc3QucGhwIjtzOjQ6InBhdGgiO3M6ODI6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy8vd3AtY29tbWVudHMtcG9zdC5waHAiO319czoyMDoid3AtY29uZmlnLXNhbXBsZS5waHAiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjIwOiJ3cC1jb25maWctc2FtcGxlLnBocCI7czo0OiJwYXRoIjtzOjgyOiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3MvL3dwLWNvbmZpZy1zYW1wbGUucGhwIjt9fXM6MTM6IndwLWNvbmZpZy5waHAiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjEzOiJ3cC1jb25maWcucGhwIjtzOjQ6InBhdGgiO3M6NzU6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy8vd3AtY29uZmlnLnBocCI7fX1zOjExOiJ3cC1jcm9uLnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTE6IndwLWNyb24ucGhwIjtzOjQ6InBhdGgiO3M6NzM6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy8vd3AtY3Jvbi5waHAiO319czoxMToid3AtaW5jbHVkZXMiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjExOiJ3cC1pbmNsdWRlcyI7czo0OiJwYXRoIjtzOjczOiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3MvL3dwLWluY2x1ZGVzIjt9fXM6MTc6IndwLWxpbmtzLW9wbWwucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxNzoid3AtbGlua3Mtb3BtbC5waHAiO3M6NDoicGF0aCI7czo3OToiL3Zhci93d3cvdmhvc3RzL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56L2h0dHBkb2NzLy93cC1saW5rcy1vcG1sLnBocCI7fX1zOjExOiJ3cC1sb2FkLnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTE6IndwLWxvYWQucGhwIjtzOjQ6InBhdGgiO3M6NzM6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy8vd3AtbG9hZC5waHAiO319czoxMjoid3AtbG9naW4ucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxMjoid3AtbG9naW4ucGhwIjtzOjQ6InBhdGgiO3M6NzQ6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy8vd3AtbG9naW4ucGhwIjt9fXM6MTE6IndwLW1haWwucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxMToid3AtbWFpbC5waHAiO3M6NDoicGF0aCI7czo3MzoiL3Zhci93d3cvdmhvc3RzL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56L2h0dHBkb2NzLy93cC1tYWlsLnBocCI7fX1zOjE1OiJ3cC1zZXR0aW5ncy5waHAiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjE1OiJ3cC1zZXR0aW5ncy5waHAiO3M6NDoicGF0aCI7czo3NzoiL3Zhci93d3cvdmhvc3RzL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56L2h0dHBkb2NzLy93cC1zZXR0aW5ncy5waHAiO319czoxMzoid3Atc2lnbnVwLnBocCI7YToxOntpOjA7YToyOntzOjQ6Im5hbWUiO3M6MTM6IndwLXNpZ251cC5waHAiO3M6NDoicGF0aCI7czo3NToiL3Zhci93d3cvdmhvc3RzL2Rldmp1aWNlZWxlY3RyaWNhbC5waW5uYWNsZWFuZGNvLm56L2h0dHBkb2NzLy93cC1zaWdudXAucGhwIjt9fXM6MTY6IndwLXRyYWNrYmFjay5waHAiO2E6MTp7aTowO2E6Mjp7czo0OiJuYW1lIjtzOjE2OiJ3cC10cmFja2JhY2sucGhwIjtzOjQ6InBhdGgiO3M6Nzg6Ii92YXIvd3d3L3Zob3N0cy9kZXZqdWljZWVsZWN0cmljYWwucGlubmFjbGVhbmRjby5uei9odHRwZG9jcy8vd3AtdHJhY2tiYWNrLnBocCI7fX1zOjEwOiJ4bWxycGMucGhwIjthOjE6e2k6MDthOjI6e3M6NDoibmFtZSI7czoxMDoieG1scnBjLnBocCI7czo0OiJwYXRoIjtzOjcyOiIvdmFyL3d3dy92aG9zdHMvZGV2anVpY2VlbGVjdHJpY2FsLnBpbm5hY2xlYW5kY28ubnovaHR0cGRvY3MvL3htbHJwYy5waHAiO319fX19\";s:3:\"sig\";s:28:\"ypBebB4usDD0XNe9Qkf2AFi+UtY=\";s:10:\"db_version\";s:7:\"10.6.10\";s:8:\"site_url\";s:29:\"https://juiceelectrical.co.nz\";s:5:\"stage\";s:7:\"plugins\";s:15:\"remote_state_id\";s:36:\"e1b2b5b0-afd5-43fd-a6d5-d796b8d95982\";s:13:\"theme_folders\";a:1:{i:0;s:102:\"/Users/design3/_Development/Projects/juiceelectricalnew/wp-content/themes/pinnclonesmalltest/resources\";}s:14:\"plugin_folders\";a:2:{i:0;s:101:\"/Users/design3/_Development/Projects/juiceelectricalnew/wp-content/plugins/advanced-custom-fields-pro\";i:1;s:79:\"/Users/design3/_Development/Projects/juiceelectricalnew/wp-content/plugins/soil\";}s:16:\"muplugin_folders\";a:0:{}s:13:\"other_folders\";a:0:{}s:13:\"themes_option\";s:3:\"all\";s:14:\"plugins_option\";s:3:\"all\";s:16:\"muplugins_option\";s:8:\"selected\";s:13:\"others_option\";s:8:\"selected\";s:7:\"folders\";a:2:{i:0;s:101:\"/Users/design3/_Development/Projects/juiceelectricalnew/wp-content/plugins/advanced-custom-fields-pro\";i:1;s:79:\"/Users/design3/_Development/Projects/juiceelectricalnew/wp-content/plugins/soil\";}s:3:\"url\";s:29:\"https://juiceelectrical.co.nz\";s:11:\"temp_prefix\";s:5:\"_mig_\";s:6:\"tables\";s:303:\"wp_commentmeta,wp_comments,wp_gf_draft_submissions,wp_gf_entry,wp_gf_entry_meta,wp_gf_entry_notes,wp_gf_form,wp_gf_form_meta,wp_gf_form_revisions,wp_gf_form_view,wp_gf_rest_api_keys,wp_links,wp_options,wp_postmeta,wp_posts,wp_term_relationships,wp_term_taxonomy,wp_termmeta,wp_terms,wp_usermeta,wp_users\";s:6:\"prefix\";s:3:\"wp_\";s:4:\"type\";s:4:\"push\";s:8:\"location\";s:31:\"https://juiceelectricalnew.test\";}','no'),(2817,'wpmdb_saved_profiles','','no'),(2818,'wpmdb_schema_version','3.6','no'),(2819,'wpmdb_settings','a:15:{s:3:\"key\";s:40:\"lOc1LGGtlyWqSfUkodQuK/T0AuBC441TAbIJeIP5\";s:10:\"allow_pull\";b:1;s:10:\"allow_push\";b:1;s:8:\"profiles\";a:0:{}s:10:\"verify_ssl\";b:0;s:17:\"whitelist_plugins\";a:0:{}s:11:\"max_request\";i:1048576;s:22:\"delay_between_requests\";i:0;s:18:\"prog_tables_hidden\";b:1;s:21:\"pause_before_finalize\";b:0;s:14:\"allow_tracking\";N;s:26:\"high_performance_transfers\";b:0;s:18:\"compatibility_mode\";b:1;s:28:\"compatibility_plugin_version\";s:3:\"1.3\";s:7:\"licence\";s:36:\"832c35d2-8fab-4145-9214-141555bff263\";}','no'),(2820,'_site_transient_wpmdb_disabled_legacy_addons','1','no'),(2823,'_site_transient_wpmdb_available_addons','a:4:{s:29:\"wp-migrate-db-pro-media-files\";i:2351;s:21:\"wp-migrate-db-pro-cli\";i:3948;s:33:\"wp-migrate-db-pro-multisite-tools\";i:7999;s:36:\"wp-migrate-db-pro-theme-plugin-files\";i:36287;}','no'),(2829,'_site_transient_wpmdb_available_addons_per_user_2','a:4:{s:29:\"wp-migrate-db-pro-media-files\";i:2351;s:21:\"wp-migrate-db-pro-cli\";i:3948;s:33:\"wp-migrate-db-pro-multisite-tools\";i:7999;s:36:\"wp-migrate-db-pro-theme-plugin-files\";i:36287;}','no'),(2922,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":3,\"critical\":1}','yes'),(2990,'envira_gallery','a:5:{s:3:\"key\";s:32:\"45d452655ee5858da4e5477bcb004249\";s:4:\"type\";s:6:\"agency\";s:10:\"is_expired\";b:0;s:11:\"is_disabled\";b:0;s:10:\"is_invalid\";b:0;}','yes'),(2991,'envira_version','1.10.0','off'),(2992,'envira_display_welcome','true','yes'),(2993,'widget_envira-gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2994,'widget_envira-gallery-random-images','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2995,'envira_gallery_116','1','yes'),(2996,'envira_gallery_121','1','yes'),(2997,'envira_can_beta','','yes'),(2998,'envira_gallery_license_updates','1734272626','yes'),(2999,'eg_7d05107dc69699723356e45bd8a0673d','a:2:{s:7:\"timeout\";i:1734109508;s:5:\"value\";s:1412:\"{\"new_version\":\"1.10.0\",\"package\":\"https:\\/\\/enviragallery.s3.us-east-2.amazonaws.com\\/plugins\\/envira-gallery\\/envira-gallery.zip?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIVBSMFW42TBGGRPA%2F20241213%2Fus-east-2%2Fs3%2Faws4_request&X-Amz-Date=20241213T020513Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Signature=0777db3efa4381c1cb4b447c3d7856bcf2403ea9e0b41a66df4aef6f32428320\",\"slug\":\"envira-gallery\",\"last_update\":1734055513,\"name\":\"Envira Gallery\",\"version\":\"1.10.0\",\"author\":\"<a href=\\\"https:\\/\\/enviragallery.com\\\">Envira Gallery Team<\\/a>\",\"author_profile\":\"<a href=\\\"https:\\/\\/profiles.wordpress.org\\/enviragallery\\\">https:\\/\\/profiles.wordpress.org\\/enviragallery<\\/a>\",\"requires\":\"5.5.0\",\"requires_php\":\"7.0\",\"tested\":\"6.6.2\",\"last_updated\":\"2024-10-30\",\"homepage\":\"https:\\/\\/enviragallery.com\\/\",\"changelog\":\"<p>Check the latest changelog <a href=\\\"https:\\/\\/enviragallery.com\\/changelog\\\">here<\\/a><\\/p>\",\"download_link\":\"https:\\/\\/enviragallery.s3.us-east-2.amazonaws.com\\/plugins\\/envira-gallery\\/envira-gallery.zip?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIVBSMFW42TBGGRPA%2F20241213%2Fus-east-2%2Fs3%2Faws4_request&X-Amz-Date=20241213T020513Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Signature=0777db3efa4381c1cb4b447c3d7856bcf2403ea9e0b41a66df4aef6f32428320\",\"is_beta\":false}\";}','off'),(3001,'envira_gallery_media_position','after','yes'),(3002,'envira_gallery_image_delete','','yes'),(3003,'envira_gallery_media_delete','','yes'),(3004,'envira_gallery_loader_color','#000000','yes'),(3005,'envira_gallery_beta_enabled','0','yes'),(3007,'envira_rest_token','57c830859feb874d34d31a657daffaefbe9e365e8d59d2b3c372770d1b9a22a0','yes'),(3176,'_site_transient_t15s-registry-gforms','O:8:\"stdClass\":2:{s:8:\"projects\";a:58:{s:26:\"gravityformsactivecampaign\";a:1:{s:12:\"translations\";a:31:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2024-03-20T12:45:10+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:17+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:31+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-15T08:11:04+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2024-09-12T11:30:21+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:19+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:31:49+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:31:50+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:31:54+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:05+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:31:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:31:48+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:27+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:31:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-03-27T13:41:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:16+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-03-25T15:23:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-14T17:35:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:11+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:32:10+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-03-24T15:29:26+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:32:12+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:50+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:32:14+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:56+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-03-31T16:22:35+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:32:16+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-03-21T10:42:11+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:32:33+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsaweber\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-20T12:44:54+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-20T07:18:01+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-10-30T15:13:06+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-08-16T11:26:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-08-16T11:26:50+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-08-16T11:26:50+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-10-30T12:14:04+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-10-30T16:20:49+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-14T09:02:25+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-07T11:36:51+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-16T18:15:15+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-28T21:16:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-02T21:50:14+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-01T13:16:12+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-01T14:16:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-14T16:42:10+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-03T18:33:28+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-18T20:48:50+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-09T01:23:53+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformsagilecrm\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-20T12:49:54+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-20T07:16:01+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-09-12T11:34:05+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:20+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2022-06-27T08:36:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2022-06-27T08:36:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2022-06-27T08:36:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2021-09-13T08:58:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T16:56:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T16:56:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T16:56:37+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T16:56:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-03-14T17:37:39+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T08:00:37+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T08:00:40+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2021-09-27T21:55:07+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T08:00:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T16:56:26+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T08:00:49+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T08:00:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T08:00:54+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:24:\"gravityformsauthorizenet\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2024-03-20T12:51:36+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-12-28T11:16:35+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2024-09-12T11:38:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-29T15:48:18+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:05:17+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:04:01+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-02T20:29:58+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-21T11:50:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:21+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:39+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:45+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-14T17:38:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2021-09-13T20:54:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:32+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:53:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:49+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:53+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-11-05T09:28:49+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-11-09T01:30:51+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsbatchbook\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2024-03-20T12:53:19+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:51:40+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-03T10:14:25+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:20+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:36+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:24+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-01-22T16:00:21+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:48+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:40:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:41+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:32+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-10-21T18:08:50+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:59+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-09T01:26:27+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsbreeze\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-07T08:30:40+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-17T12:14:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-12T11:41:04+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-17T15:02:19+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-19T07:39:08+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T16:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-26T10:44:04+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-17T20:44:55+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-10-03T06:54:00+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-10T10:15:26+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-06T20:34:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-11T23:22:00+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-15T19:07:46+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-24T12:54:13+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-22T19:39:29+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-10T21:39:26+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-15T19:07:16+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:27:\"gravityformscampaignmonitor\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2024-03-20T12:55:02+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-11-20T07:21:00+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2020-10-27T15:32:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2020-10-21T13:33:21+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:00:34+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2020-10-27T15:32:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:00:57+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:01:03+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-03-14T17:42:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:01:15+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:01:17+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2020-12-17T15:54:37+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2020-11-04T16:34:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:00:45+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:01:27+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:01:29+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-11-09T01:34:51+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformscampfire\";a:1:{s:12:\"translations\";a:24:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2024-03-20T12:55:41+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:39+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:41+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:51+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:34+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2022-06-27T09:53:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-02T20:33:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-18T11:26:09+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-01-22T16:22:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:47+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-14T17:44:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-02T20:33:59+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:55+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:44:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-13T09:15:04+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-11-09T01:41:12+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformscapsulecrm\";a:1:{s:12:\"translations\";a:25:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2024-03-20T12:57:44+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:26+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-11-20T07:22:07+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:32+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:20+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2022-06-27T08:52:42+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2022-06-27T08:52:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2021-05-25T20:59:21+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:02:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:14+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:16+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2024-03-02T12:48:47+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:34+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:37+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-06-15T19:59:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:46+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:42+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:52+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:03+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2021-06-05T06:33:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:49+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-11-09T01:46:15+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:26:\"gravityformschainedselects\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2024-03-26T11:38:44+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-04-14T18:06:58+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-11-20T07:22:44+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:04:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-10-27T15:57:33+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T16:39:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T16:39:05+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-10-27T15:56:33+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T16:40:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-12-17T14:50:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2021-09-13T21:00:54+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-12-17T15:03:03+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-12-17T15:55:04+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T16:40:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:04:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-10-21T17:43:40+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-10-27T15:55:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-11-10T01:29:52+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:23:\"gravityformscleverreach\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2024-03-20T13:19:05+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-11-20T07:23:40+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2024-09-12T11:44:23+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2022-06-27T08:54:38+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2022-06-27T08:54:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:28+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:32+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:34+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:36+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-03-14T17:45:38+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-12-17T15:03:13+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-12-17T15:55:14+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:06:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-10-21T17:59:57+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:06:10+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-11-09T01:49:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformscoupons\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-07T08:34:02+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:14+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-09T08:13:35+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-12T11:19:25+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2023-03-02T20:27:34+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-23T12:54:05+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-19T07:06:06+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:06:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-26T10:45:48+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-17T20:46:41+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-10-03T06:52:33+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2023-11-03T10:13:14+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-10T11:39:03+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-17T16:16:41+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-08T00:13:14+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-15T19:18:47+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-24T12:53:59+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-22T19:37:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-17T09:13:57+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-15T19:18:11+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsdropbox\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2024-03-20T13:21:40+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-23T14:29:18+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2024-09-12T11:49:45+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2022-06-27T08:56:15+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-01-06T17:07:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-10-30T12:54:26+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-10-30T16:21:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2022-06-27T08:56:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-14T09:01:08+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-07T11:37:53+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-16T18:06:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:15+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-28T21:04:03+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2024-03-21T23:01:31+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-01T13:16:30+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-01T14:24:24+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-14T16:46:22+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-03T18:33:39+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-01T14:27:30+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.2.0\";s:7:\"updated\";s:25:\"2023-11-28T01:11:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformsemma\";a:1:{s:12:\"translations\";a:30:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2024-03-20T13:23:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-04-14T12:05:12+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:09:41+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:39:07+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-20T07:25:43+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2024-09-12T11:52:10+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:08:58+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:38:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T08:57:24+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:08:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-26T16:08:20+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-09-25T12:09:30+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-10-17T13:24:31+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:09:05+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:09:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:13+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-04-11T09:52:51+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-03-14T17:48:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:14+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-28T21:11:55+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:09:26+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T08:57:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:09:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:08:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:09:35+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:09:37+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-25T20:37:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsfreshbooks\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2024-03-20T13:24:54+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:29+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-02-20T14:36:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-10-21T11:51:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:52+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:11+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:19+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-03-14T17:49:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-09-14T09:32:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-12-17T15:53:03+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:39+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:59+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-02-08T11:26:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-11-29T02:21:29+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:23:\"gravityformsgetresponse\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2024-03-20T13:25:36+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-11-23T14:30:46+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2024-09-12T11:55:20+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2022-06-27T08:58:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2022-06-27T08:58:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:13+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:16+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-11-04T17:34:56+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:18+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-11-04T17:34:11+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-03-14T17:49:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:39+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:41+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:42+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-11-04T17:35:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2021-02-08T11:28:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:52+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-11-25T20:48:13+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformshelpscout\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2024-03-20T13:26:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-11-24T07:42:04+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-11T17:38:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:40+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:42+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:19+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T16:20:17+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:08+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-11-05T09:45:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:27+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:50:31+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-11-28T21:10:33+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:48+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:03:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-20T06:44:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:15+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-11-04T18:39:39+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:13:00+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-11-29T02:37:34+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformshighrise\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2024-03-20T13:28:49+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:59:10+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-03T10:14:26+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:45+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-03T10:13:20+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:21+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:25+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:27+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-07-17T13:47:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:18+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:33+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:51:12+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:52+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:54+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:56+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2021-08-02T17:30:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:14:05+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-19T23:28:15+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformshipchat\";a:1:{s:12:\"translations\";a:25:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2024-03-20T13:29:15+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:44+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2022-06-27T10:00:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:25+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:00+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:04+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-03-02T20:33:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-21T13:28:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:57+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:55+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-21T12:24:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-01-25T07:46:44+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:18+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-03-14T17:51:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:23+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:57+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:32+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:06+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-08-02T17:31:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-13T09:22:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-11-19T23:25:08+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsmadmimi\";a:1:{s:12:\"translations\";a:34:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-20T13:31:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:17+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:32+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:07+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:20+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:06+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2020-10-21T11:52:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-09-25T12:09:30+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:110:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:27+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:52+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:13+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:30+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-03-14T17:52:56+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:15+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2021-10-02T10:46:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:11+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2020-12-17T15:55:55+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:47+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:16+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:53+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2021-08-02T17:35:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:24+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-09T01:39:35+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsmailchimp\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2024-03-20T13:32:12+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-11-24T12:41:33+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:15+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2022-06-27T08:43:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-03-02T20:28:02+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2021-10-25T16:35:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:39+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2021-10-17T13:48:34+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:05+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-02-04T16:58:16+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-11-03T10:13:13+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-11-28T21:13:27+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:19+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2021-10-25T23:02:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:25+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:47+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:29+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-11-25T20:33:22+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:26:\"gravityformspartialentries\";a:1:{s:12:\"translations\";a:26:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-11-23T11:07:56+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-04-14T17:10:56+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-27T10:03:45+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-11-26T19:03:02+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:21+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-29T15:47:04+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-21T13:19:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:17:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-09-25T12:09:31+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-10-17T13:38:00+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:05+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-12-17T14:50:15+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2021-09-14T09:48:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-12-17T15:55:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:17:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2021-08-02T17:40:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-11-05T09:27:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-11-25T20:27:12+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:29:\"gravityformspaypalpaymentspro\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2024-03-20T13:33:43+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-12-28T11:16:35+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-11-26T19:04:21+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:48+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-03-02T20:27:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-03-24T14:22:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:07:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:10+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-03-14T17:54:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-14T09:52:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:29+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-12-17T14:13:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:10:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-29T18:02:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-11-25T20:24:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformspaypal\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2024-03-20T15:01:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:51+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T10:05:05+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-03-02T20:27:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-10-21T11:52:44+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:19:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:13+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:15+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-03-14T17:54:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-14T09:52:14+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-12-17T15:54:54+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:03+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-29T18:06:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:46+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-12-01T23:37:46+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformspaypalpro\";a:1:{s:12:\"translations\";a:30:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2024-03-23T14:15:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-04-15T14:48:04+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-12-28T11:11:03+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-12-28T11:16:36+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:54+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:59:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:02+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:18+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-03-24T11:58:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:58+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-30T13:48:05+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-09-25T12:58:34+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-10-17T13:40:59+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:41:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-01-27T16:56:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:29+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-14T17:55:20+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2019-12-10T13:19:22+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-09-14T09:53:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:53:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:57:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:26+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-11-04T18:47:08+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:42:28+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-12-01T23:55:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:17:\"gravityformspolls\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2024-03-20T15:15:58+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-11-27T04:51:47+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-11-05T15:15:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:10+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:12+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:20+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-03-02T20:51:24+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-10-21T13:43:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-11-05T15:13:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-11-05T15:17:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-03-14T17:55:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-09-14T09:55:19+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-12-17T14:20:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-12-17T14:19:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-11-05T15:18:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-11-04T18:52:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-06-29T08:29:29+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-12-02T00:08:37+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformspostmark\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-24T12:00:03+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-27T04:54:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-24T11:44:53+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-25T21:03:26+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-31T19:40:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-03-29T18:54:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-22T09:30:48+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-26T12:48:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-06-04T08:26:03+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-09-14T09:55:49+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-31T04:01:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-04-11T21:20:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-20T16:53:54+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-06-01T17:59:01+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-06-05T06:35:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-26T23:45:38+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-25T20:16:29+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformsquiz\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-07T08:40:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-17T12:15:00+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-06T18:20:38+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-07-10T08:01:14+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-07-10T08:01:15+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-07-10T08:01:15+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-07-10T08:01:12+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-17T15:15:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-19T07:49:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-07-10T08:01:13+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-26T10:46:55+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-07-10T08:01:23+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-10-02T06:51:05+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-10T10:06:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-06T19:10:38+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-11T23:20:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-15T19:21:44+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-24T12:53:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-22T19:36:46+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-17T09:14:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.0\";s:7:\"updated\";s:25:\"2024-09-15T19:21:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformssignature\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-11-24T14:35:15+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-02-20T14:32:41+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2022-06-27T10:11:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-11-26T19:06:02+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-05T10:00:55+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2021-08-12T08:00:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:38+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-04T11:55:12+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:40+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:44+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-11-28T20:58:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-12T14:45:18+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-11T15:48:10+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-15T00:44:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-20T18:21:48+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-25T07:10:36+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-03-06T09:12:09+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.6.0\";s:7:\"updated\";s:25:\"2023-12-02T03:06:14+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:17:\"gravityformsslack\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2024-03-20T14:40:31+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-04-14T18:11:09+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-26T19:05:26+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-05T09:57:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:26:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-04T11:54:33+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-20T13:44:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:26:48+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-05T09:29:59+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-14T13:29:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-23T05:05:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-28T21:12:11+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-12T14:43:50+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-06-15T20:04:46+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-15T00:45:58+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-20T18:21:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-25T06:00:54+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-06T09:11:19+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-12-02T03:13:43+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsstripe\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-07T08:53:41+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-13T09:25:52+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-04T08:12:28+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-06-12T13:40:42+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-06-12T13:40:48+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-06-12T13:40:48+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-06-12T13:40:49+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-07T09:39:29+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-04T11:43:28+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-06-12T13:40:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-04T17:16:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-06-22T08:53:13+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-24T04:40:07+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-09-10T11:42:13+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-23T16:11:11+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-19T21:39:11+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-09T14:28:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-15T21:56:41+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-04-02T20:11:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-17T22:50:24+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-05-09T14:27:54+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformssurvey\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-20T15:11:13+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-04-14T18:14:00+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:15+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-20T05:58:48+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-15T15:32:19+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:57:55+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-19T08:50:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-28T10:17:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-09-25T12:51:08+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-10-17T13:14:03+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2020-11-06T13:17:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-04-01T11:10:01+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2023-11-03T10:12:15+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-19T16:32:17+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-04-01T05:03:07+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-18T10:41:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-21T23:00:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-31T22:09:46+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-20T22:24:23+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-25T10:52:40+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-04-02T20:12:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-20T18:41:25+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.0.1\";s:7:\"updated\";s:25:\"2024-03-20T22:24:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformstrello\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2024-03-20T15:12:01+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-30T07:18:27+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:23+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:29:56+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:00+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:29:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:06+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-03-14T17:57:49+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:25+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:28+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:30+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:34+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:29:53+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2021-09-29T17:59:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2021-09-16T16:50:37+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.1.0\";s:7:\"updated\";s:25:\"2023-11-28T01:13:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformstwilio\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2024-03-20T15:12:35+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-11-30T07:19:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2020-11-06T13:29:03+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-01-05T16:46:39+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2022-06-27T09:02:55+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:31:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-11-09T11:06:24+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:31:12+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2020-11-06T13:26:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2020-11-06T13:26:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-03-14T17:58:48+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:31:31+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:31:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2020-12-17T15:07:56+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2020-11-06T13:28:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2020-11-06T13:28:39+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:31:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:31:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:25:\"2023-12-02T00:16:34+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:28:\"gravityformsuserregistration\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-20T15:16:06+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:56+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-20T05:59:51+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-15T15:33:06+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:16:33+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:16:36+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2023-03-02T20:28:46+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-18T14:20:22+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-29T13:44:16+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2021-03-29T19:18:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-04-01T11:05:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-19T16:39:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-04-01T05:01:47+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-18T10:42:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-05-25T13:55:18+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-31T22:09:51+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-22T15:06:20+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-25T10:54:41+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-04-02T20:11:49+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-20T18:41:32+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:25:\"2024-03-22T15:06:43+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformszapier\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-11-25T12:05:36+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-12-01T08:22:02+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:43+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2022-06-27T09:18:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2022-06-27T09:18:32+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2022-06-27T09:18:39+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2021-07-23T08:59:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:07+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:26+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-03-14T18:00:03+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:47+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2021-07-19T11:08:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:52+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:15+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2021-06-06T19:46:51+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2021-07-21T22:08:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.3.0\";s:7:\"updated\";s:25:\"2023-12-02T00:13:24+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformszohocrm\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2024-03-20T15:20:10+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-12-01T08:25:10+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2022-06-27T09:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:34:25+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:06+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:34:31+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:06+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:07+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-11-28T21:02:35+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:07+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:07+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:06+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:06+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-05-04T08:14:06+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.3.0\";s:7:\"updated\";s:25:\"2023-11-10T02:08:34+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformsicontact\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2024-03-20T15:20:49+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-24T07:42:33+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-05T12:40:54+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:35:34+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-10-21T13:33:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-05T12:39:50+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:35:40+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:35:43+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:35:49+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-03-14T17:52:22+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:36:01+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:36:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-12-17T14:06:18+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-05T12:40:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:35:31+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2021-08-02T17:34:13+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T17:36:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-29T02:55:25+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:24:\"gravityformsemailoctopus\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-20T15:21:42+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-11-24T07:36:17+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2020-06-23T13:15:59+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:36:53+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2020-10-21T15:28:15+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:36:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2020-06-23T13:15:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2020-06-23T13:15:56+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:37:07+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-03-14T17:47:59+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:17+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:37:20+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:37:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2020-06-23T13:16:02+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2020-06-23T13:16:03+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:36:50+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:37:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-01-06T17:37:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2023-11-25T20:41:02+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsmailgun\";a:1:{s:12:\"translations\";a:24:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-07T08:52:25+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-12-28T11:11:02+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T10:02:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-13T09:22:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-04T08:15:20+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-12-28T11:14:06+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T10:01:47+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-12-28T11:13:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-03-02T20:46:07+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-06T12:42:42+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-04T11:37:35+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:38:07+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-04T17:13:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-15T07:35:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-24T06:29:14+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-06T09:42:12+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-23T16:10:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-19T21:36:35+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-09T14:20:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-15T21:52:07+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-22T17:42:52+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-17T22:15:18+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-09T14:20:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformssendgrid\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-24T14:25:24+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-23T19:14:16+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-26T19:07:24+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:05:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:27:36+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-10-21T13:18:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:06:48+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-26T16:08:21+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:110:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-07-04T20:05:08+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-06-28T10:45:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:16+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-05-23T18:18:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:07:21+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:12+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2021-09-14T09:57:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-12-17T14:33:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-12-17T14:32:57+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:06:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-04T22:55:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:05:23+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-05-15T07:53:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-09T01:37:59+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformssquare\";a:1:{s:12:\"translations\";a:19:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-10T11:21:52+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-17T12:04:13+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-10T18:16:17+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:13:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:13:16+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-11T16:54:19+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-10T12:08:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:13:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-15T05:42:12+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-22T08:51:47+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-24T03:07:11+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-10T11:41:12+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-11T14:02:08+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-19T22:31:16+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-22T20:43:03+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-27T10:54:22+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-04-02T20:10:53+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-10T14:25:52+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-06-22T20:43:16+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformshubspot\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2024-03-20T15:34:55+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-11-24T12:35:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2024-09-12T12:00:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2022-06-27T09:00:32+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-11-09T10:59:10+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-20T14:30:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-01-06T17:41:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-05T15:02:53+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-15T15:57:06+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-18T06:09:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-11-28T21:19:11+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-22T18:52:51+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-05T17:03:26+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-10T17:12:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-16T22:26:43+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-06-30T06:42:49+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-11T14:43:07+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-11-29T02:47:06+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformsppcp\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-07T09:20:27+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-17T12:17:01+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-06T18:19:19+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-17T15:12:22+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-19T07:44:20+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-02T08:18:52+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-26T10:55:49+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-17T20:50:36+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-10-03T06:50:43+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-10T10:04:48+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-06T19:10:56+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-11T23:25:03+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-15T19:50:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-24T12:55:20+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-22T19:38:57+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-17T10:02:22+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-15T19:48:31+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsmollie\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-10T13:18:23+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-20T06:56:42+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-10T18:05:54+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:55+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T09:03:03+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-11T16:53:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-10-28T20:14:02+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-01T09:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-15T05:48:03+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-22T08:42:11+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-24T04:38:24+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-10T14:25:55+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-11T13:55:56+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-06-15T20:15:16+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-22T20:59:36+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-27T10:54:16+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-26T11:40:50+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-10T14:27:41+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2024-06-22T20:58:37+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityforms2checkout\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-07T09:21:59+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2022-06-23T19:16:18+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-09T08:12:21+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-12T11:25:01+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2022-06-23T19:15:48+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-02-19T14:45:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-03-02T20:27:36+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-06T07:37:45+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-19T07:25:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-02-02T19:49:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-26T10:49:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-17T20:36:52+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-10-03T06:54:19+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-10T10:06:30+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-17T16:15:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-08T00:10:36+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-15T19:46:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-24T12:52:01+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-22T19:40:10+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-17T09:10:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-15T19:45:49+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:32:\"gravityformsadvancedpostcreation\";a:1:{s:12:\"translations\";a:28:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-03-27T13:42:28+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-04-14T18:10:48+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:46:19+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-11-16T07:53:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:41+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:40+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-10-21T11:23:19+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:45:25+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:45:42+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-05-29T10:50:56+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-11-03T10:12:24+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-05-29T10:50:39+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-02-17T09:54:26+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:46:01+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-06-01T20:44:34+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-06-07T14:59:25+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-11-03T10:13:50+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-11-03T10:14:19+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-11-03T10:11:57+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:45:33+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:46:15+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-11-09T01:21:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformswebhooks\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2024-03-27T13:48:23+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-02-20T14:35:46+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-30T07:33:37+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-19T17:04:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-23T08:19:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:46:31+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:46:51+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-22T12:47:49+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-28T15:41:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-14T17:59:52+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:47:11+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-22T20:34:31+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-31T18:10:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-19T13:24:55+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:46:41+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-08-02T17:40:38+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:47:24+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-27T01:22:44+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformspipe\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-03-27T13:44:42+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-11-27T04:50:33+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-10-26T07:37:52+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-10-20T16:25:47+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-11-03T14:29:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-11-01T10:02:06+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-10-25T15:56:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-11-02T07:32:59+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-14T17:55:39+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-11-28T21:11:31+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-11-10T22:09:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:48:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-10-29T05:59:20+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-11-04T22:40:13+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:08:58+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-10-26T10:13:02+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-12-01T23:59:47+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:27:\"gravityformsconstantcontact\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2024-05-07T08:20:57+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:11:18+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:14:28+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-16T07:57:41+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2024-09-12T11:46:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:20+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:12:06+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T11:36:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:43+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:11:27+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:00+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-25T15:55:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:12:17+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:07+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-14T17:46:28+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:13:13+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:20+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-29T05:29:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:51+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-23T18:56:46+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:39+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-09T01:53:49+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:12:\"gravityforms\";a:1:{s:12:\"translations\";a:31:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-15T10:39:08+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2023-04-15T14:49:49+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-08T15:24:10+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-09T11:59:29+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2023-01-26T08:32:36+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-25T08:40:03+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-13T18:19:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-09T11:35:56+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-08T14:43:19+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-08T14:43:20+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-08T17:18:14+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-08T14:43:00+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-15T16:15:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-19T10:00:41+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2023-04-05T08:33:44+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2023-09-25T13:01:31+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2023-10-18T07:25:44+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-08T17:19:01+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-16T14:38:14+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-08T17:24:55+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-20T19:47:37+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-12-01T18:51:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2023-11-03T10:13:13+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-12-12T20:47:29+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-12-03T15:57:09+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-26T11:04:49+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-09T11:48:09+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-25T10:29:56+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-28T19:47:58+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-29T19:34:43+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:7:\"2.9.0.1\";s:7:\"updated\";s:25:\"2024-11-24T20:07:10+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsrecaptcha\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2024-03-27T13:44:57+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:54:35+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-27T04:58:47+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2024-09-12T11:09:39+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2021-08-12T07:58:23+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:54:21+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-10-30T12:55:12+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-10-30T16:22:05+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2021-06-02T13:26:50+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-14T08:59:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-07T11:38:28+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-16T18:01:12+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-28T20:59:34+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2024-03-21T23:02:32+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-01T13:19:10+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-01T14:17:54+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-14T16:43:20+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T20:29:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-01T14:26:52+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-12-02T03:03:43+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsmoderation\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-09T10:27:56+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-17T12:03:59+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-06T18:16:20+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-17T15:04:55+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-19T07:06:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-26T10:47:32+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-17T20:47:30+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-10-02T06:52:18+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-10T10:16:14+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-06T20:22:02+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-11T23:25:32+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-15T19:26:55+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-24T12:53:20+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-22T19:40:34+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-10T21:43:07+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-09-15T19:26:41+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:23:\"gravityformsgeolocation\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-02-23T15:42:07+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-20T05:48:38+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-15T15:46:27+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-18T14:03:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-28T10:20:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-04-01T11:12:52+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-19T16:31:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-04-01T06:09:41+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-18T10:45:34+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-21T23:02:09+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-31T00:08:17+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-22T15:55:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-25T10:54:05+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-04-02T20:07:13+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-18T20:50:19+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2024-03-22T15:55:38+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:31:\"gravityformsconversationalforms\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-09T10:30:04+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-09T08:14:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-06T18:14:22+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-05-03T08:43:40+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-23T12:50:51+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-19T07:05:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-05-03T08:43:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-26T10:39:25+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-17T20:46:11+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-10-03T06:51:46+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-10T11:39:42+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-17T16:16:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-08T00:11:41+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-15T21:52:57+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-24T12:54:32+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-22T19:39:55+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-17T09:13:03+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2024-09-15T21:52:23+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsconvertkit\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2024-05-06T16:21:38+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-23T14:27:10+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-03T21:32:01+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-12-29T12:07:16+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-13T12:43:50+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-14T09:48:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-07T11:34:34+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-16T18:13:54+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-28T21:28:37+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-09T15:58:36+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-12T10:12:19+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-09T01:06:21+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-14T16:48:45+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-12T18:43:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-08T20:46:22+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2023-11-09T01:12:15+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:11:\"gravitysmtp\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-10T09:42:23+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:82:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-17T12:36:36+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-06T18:47:51+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-23T14:36:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-19T07:41:12+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-26T23:30:26+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-17T21:17:07+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-10-02T06:48:22+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:82:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-10T11:37:58+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-06T19:03:03+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-11T23:38:23+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-15T20:22:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-24T13:10:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-22T19:53:06+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-17T10:38:08+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2024-09-15T21:50:04+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:82:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsakismet\";a:1:{s:12:\"translations\";a:30:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-09T08:57:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T16:10:43+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T15:43:04+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"cs\";a:7:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T16:14:50+00:00\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-cs_CZ.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"cs\";i:1;s:3:\"ces\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-13T09:10:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T18:50:14+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:41:44+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:44:15+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:45:19+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:41:21+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-13T09:32:38+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-21T08:45:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"el\";a:7:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T16:14:11+00:00\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-el.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"el\";i:1;s:3:\"ell\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:41:28+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-08T12:27:32+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:41:34+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-15T07:17:28+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-24T04:38:07+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"fa\";a:7:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T16:08:07+00:00\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-fa_IR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fa\";i:1;s:3:\"fas\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-08T10:26:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-23T15:53:18+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-21T10:01:11+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T15:42:58+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-09T14:18:02+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T15:42:59+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T15:42:48+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-15T21:54:18+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-22T17:38:12+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-17T22:12:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-09T14:30:18+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}}s:13:\"_last_checked\";i:1734520066;}','off'),(4241,'wp_calendar_block_has_published_posts','1','yes'),(5103,'trustindex-google-active','1','yes'),(5105,'trustindex-core-shortcode-inited','12.4.7','off'),(5353,'_site_transient_timeout_g_url_details_response_eaaf7bf8581756b59d39d89c756f9d21','1679971124','no'),(5720,'action_scheduler_hybrid_store_demarkation','1179','yes'),(5721,'schema-ActionScheduler_StoreSchema','6.0.1680482035','yes'),(5722,'schema-ActionScheduler_LoggerSchema','3.0.1680482035','yes'),(5732,'gform_email_count','404','yes'),(5733,'auto_update_themes','a:1:{i:2;s:15:\"twentytwentytwo\";}','no'),(5761,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5762,'akismet_strictness','0','yes'),(5763,'akismet_show_user_comments_approved','0','yes'),(5764,'akismet_comment_form_privacy_notice','hide','yes'),(5765,'wordpress_api_key','28859fbe6ab4','yes'),(5766,'akismet_spam_count','12307','yes'),(5775,'wordfence_ls_version','1.1.12','yes'),(5776,'wfls_last_role_change','1717698303','no'),(5777,'wordfence_version','8.0.1','yes'),(5778,'wordfence_case','1','yes'),(5779,'wordfence_installed','1','yes'),(5780,'wordfenceActivated','1','yes'),(5781,'wf_plugin_act_error','','yes'),(5790,'wp-optimize-installed-for','1680482701','yes'),(5792,'wp-optimize-schedule','false','yes'),(5793,'wp-optimize-last-optimized','Never','yes'),(5794,'wp-optimize-schedule-type','wpo_weekly','yes'),(5795,'wp-optimize-retention-enabled','false','yes'),(5796,'wp-optimize-retention-period','2','yes'),(5797,'wp-optimize-enable-admin-menu','false','yes'),(5798,'wp-optimize-total-cleaned','0','yes'),(5799,'wp-optimize-auto','a:8:{s:6:\"drafts\";s:4:\"true\";s:8:\"optimize\";s:5:\"false\";s:9:\"revisions\";s:4:\"true\";s:5:\"spams\";s:4:\"true\";s:9:\"transient\";s:5:\"false\";s:5:\"trash\";s:4:\"true\";s:10:\"unapproved\";s:5:\"false\";s:8:\"usermeta\";s:5:\"false\";}','yes'),(5800,'wp-optimize-settings','a:14:{s:11:\"user-drafts\";s:4:\"true\";s:16:\"user-commentmeta\";s:5:\"false\";s:13:\"user-optimize\";s:4:\"true\";s:15:\"user-orphandata\";s:5:\"false\";s:14:\"user-pingbacks\";s:5:\"false\";s:13:\"user-postmeta\";s:5:\"false\";s:14:\"user-revisions\";s:4:\"true\";s:10:\"user-spams\";s:4:\"true\";s:15:\"user-trackbacks\";s:5:\"false\";s:14:\"user-transient\";s:5:\"false\";s:10:\"user-trash\";s:4:\"true\";s:15:\"user-unapproved\";s:4:\"true\";s:13:\"user-usermeta\";s:5:\"false\";s:13:\"last_saved_in\";s:5:\"3.8.0\";}','yes'),(5801,'wpo_minify_config','a:57:{s:5:\"debug\";b:0;s:19:\"enabled_css_preload\";b:0;s:18:\"enabled_js_preload\";b:0;s:11:\"hpreconnect\";s:0:\"\";s:8:\"hpreload\";s:0:\"\";s:7:\"loadcss\";b:0;s:10:\"remove_css\";b:0;s:17:\"critical_path_css\";s:0:\"\";s:31:\"critical_path_css_is_front_page\";s:0:\"\";s:30:\"preserve_settings_on_uninstall\";b:1;s:22:\"disable_when_logged_in\";b:0;s:16:\"default_protocol\";s:7:\"dynamic\";s:17:\"html_minification\";b:1;s:16:\"clean_header_one\";b:0;s:13:\"emoji_removal\";b:1;s:18:\"merge_google_fonts\";b:1;s:19:\"enable_display_swap\";b:1;s:18:\"remove_googlefonts\";b:0;s:31:\"disable_google_fonts_processing\";b:0;s:13:\"gfonts_method\";s:7:\"inherit\";s:15:\"fawesome_method\";s:7:\"inherit\";s:10:\"enable_css\";b:1;s:23:\"enable_css_minification\";b:1;s:21:\"enable_merging_of_css\";b:1;s:23:\"remove_print_mediatypes\";b:0;s:10:\"inline_css\";b:0;s:9:\"enable_js\";b:1;s:22:\"enable_js_minification\";b:1;s:20:\"enable_merging_of_js\";b:1;s:15:\"enable_defer_js\";s:10:\"individual\";s:13:\"defer_js_type\";s:5:\"defer\";s:12:\"defer_jquery\";b:1;s:18:\"enable_js_trycatch\";b:0;s:19:\"exclude_defer_login\";b:1;s:7:\"cdn_url\";s:0:\"\";s:9:\"cdn_force\";b:0;s:9:\"async_css\";s:0:\"\";s:8:\"async_js\";s:0:\"\";s:24:\"disable_css_inline_merge\";b:1;s:6:\"ualist\";a:5:{i:0;s:9:\"Googlebot\";i:1;s:17:\"Chrome-Lighthouse\";i:2;s:8:\"GTmetrix\";i:3;s:14:\"HeadlessChrome\";i:4;s:7:\"Pingdom\";}s:32:\"exclude_js_from_page_speed_tools\";b:0;s:33:\"exclude_css_from_page_speed_tools\";b:0;s:9:\"blacklist\";a:0:{}s:11:\"ignore_list\";a:0:{}s:10:\"exclude_js\";s:0:\"\";s:11:\"exclude_css\";s:0:\"\";s:23:\"edit_default_exclutions\";b:0;s:18:\"merge_allowed_urls\";s:0:\"\";s:7:\"enabled\";b:1;s:17:\"last-cache-update\";i:1734114517;s:14:\"plugin_version\";s:5:\"0.0.0\";s:14:\"cache_lifespan\";i:30;s:25:\"merge_inline_extra_css_js\";b:1;s:16:\"enable_analytics\";b:0;s:16:\"analytics_method\";s:6:\"gtagv4\";s:11:\"tracking_id\";s:0:\"\";s:19:\"include_ui_elements\";b:1;}','yes'),(5802,'updraft_task_manager_dbversion','1.1','yes'),(5803,'wp-optimize-compression_server','resmushit','yes'),(5804,'wp-optimize-image_quality','90','yes'),(5805,'wp-optimize-back_up_original','1','yes'),(5806,'wp-optimize-back_up_delete_after','1','yes'),(5807,'wp-optimize-back_up_delete_after_days','50','yes'),(5808,'wpo_update_version','3.8.0','yes'),(5809,'wp-optimize-webp_conversion_test','1','yes'),(5810,'wp-optimize-webp_converters','a:2:{i:0;s:14:\"graphicsmagick\";i:1;s:2:\"gd\";}','yes'),(5812,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"24.1\";}','yes'),(5813,'wpseo','a:105:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";s:5:\"false\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:0;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"24.1\";s:16:\"previous_version\";s:4:\"24.0\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";s:10:\"1680482710\";s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:17:\"/blog/%postname%/\";s:8:\"home_url\";s:29:\"https://juiceelectrical.co.nz\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:3:{i:0;s:18:\"siteRepresentation\";i:1;s:14:\"socialProfiles\";i:2;s:19:\"personalPreferences\";}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";s:10:\"1680482712\";s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"envira\";}s:28:\"last_known_public_taxonomies\";a:3:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1734055479;s:35:\"wpseo_total_unindexed_general_items\";i:1734055479;s:31:\"wpseo_unindexed_post_link_count\";i:1734055479;s:31:\"wpseo_unindexed_term_link_count\";i:1734055479;s:27:\"wpseo_total_unindexed_posts\";i:1733877004;s:27:\"wpseo_total_unindexed_terms\";i:1733877004;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','yes'),(5814,'wpseo_titles','a:140:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:81:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/juiceelectrical-logo.png\";s:12:\"company_name\";s:0:\"\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";i:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:15:\"org-description\";s:0:\"\";s:9:\"org-email\";s:0:\"\";s:9:\"org-phone\";s:0:\"\";s:14:\"org-legal-name\";s:0:\"\";s:17:\"org-founding-date\";s:0:\"\";s:20:\"org-number-employees\";s:0:\"\";s:10:\"org-vat-id\";s:0:\"\";s:10:\"org-tax-id\";s:0:\"\";s:7:\"org-iso\";s:0:\"\";s:8:\"org-duns\";s:0:\"\";s:11:\"org-leicode\";s:0:\"\";s:9:\"org-naics\";s:0:\"\";s:10:\"title-post\";s:64:\"%%title%% %%sep%% %%sitename%% %%sep%% Christchurch Electricians\";s:13:\"metadesc-post\";s:11:\"%%excerpt%%\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:63:\"%%page%% %%sep%% %%sitename%% %%sep%% Christchurch Electricians\";s:13:\"metadesc-page\";s:11:\"%%excerpt%%\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:12:\"title-envira\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:15:\"metadesc-envira\";s:11:\"%%excerpt%%\";s:14:\"noindex-envira\";b:0;s:25:\"display-metabox-pt-envira\";b:1;s:25:\"post_types-envira-maintax\";i:0;s:23:\"schema-page-type-envira\";s:7:\"WebPage\";s:26:\"schema-article-type-envira\";s:4:\"None\";s:19:\"social-title-envira\";s:9:\"%%title%%\";s:25:\"social-description-envira\";s:0:\"\";s:23:\"social-image-url-envira\";s:0:\"\";s:22:\"social-image-id-envira\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:513;s:17:\"company_logo_meta\";a:10:{s:5:\"width\";i:2550;s:6:\"height\";i:1175;s:8:\"filesize\";i:73468;s:3:\"url\";s:81:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/juiceelectrical-logo.png\";s:4:\"path\";s:98:\"/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/2023/02/juiceelectrical-logo.png\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:513;s:3:\"alt\";s:21:\"Juice Electrical Logo\";s:6:\"pixels\";i:2996250;s:4:\"type\";s:9:\"image/png\";}s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(5815,'wpseo_social','a:20:{s:13:\"facebook_site\";s:51:\"https://www.facebook.com/www.juiceelectrical.co.nz/\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}s:12:\"mastodon_url\";s:0:\"\";}','yes'),(5816,'wpo_cache_config','a:29:{s:19:\"enable_page_caching\";b:1;s:23:\"page_cache_length_value\";i:5;s:22:\"page_cache_length_unit\";s:5:\"hours\";s:17:\"page_cache_length\";i:18000;s:32:\"cache_exception_conditional_tags\";a:1:{i:0;s:0:\"\";}s:20:\"cache_exception_urls\";a:1:{i:0;s:0:\"\";}s:23:\"cache_exception_cookies\";a:1:{i:0;s:0:\"\";}s:30:\"cache_exception_browser_agents\";a:1:{i:0;s:0:\"\";}s:22:\"enable_sitemap_preload\";b:0;s:23:\"enable_schedule_preload\";s:1:\"0\";s:21:\"preload_schedule_type\";s:22:\"wpo_use_cache_lifespan\";s:21:\"enable_mobile_caching\";s:1:\"0\";s:19:\"enable_user_caching\";s:1:\"0\";s:8:\"site_url\";s:30:\"https://juiceelectrical.co.nz/\";s:24:\"enable_cache_per_country\";b:0;s:27:\"enable_cache_aelia_currency\";b:0;s:19:\"permalink_structure\";s:17:\"/blog/%postname%/\";s:7:\"uploads\";s:65:\"/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads\";s:10:\"gmt_offset\";d:13;s:15:\"timezone_string\";s:16:\"Pacific/Auckland\";s:11:\"date_format\";s:6:\"F j, Y\";s:11:\"time_format\";s:5:\"g:i a\";s:15:\"use_webp_images\";b:0;s:28:\"auto_preload_purged_contents\";b:0;s:20:\"enable_browser_cache\";s:5:\"false\";s:25:\"browser_cache_expire_days\";s:2:\"28\";s:26:\"browser_cache_expire_hours\";s:1:\"0\";s:17:\"wpo_cache_cookies\";a:0:{}s:25:\"wpo_cache_query_variables\";a:0:{}}','yes'),(5849,'rg_gforms_enable_html5','0','yes'),(5850,'rg_gforms_dataCollection','0','yes'),(5852,'gform_version_info','a:12:{s:12:\"is_valid_key\";b:1;s:6:\"reason\";s:0:\"\";s:7:\"version\";s:5:\"2.9.1\";s:3:\"url\";s:171:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2F%2BoTP4WL0KCG4%2FJHgTv9nxCgIDI%3D\";s:15:\"expiration_time\";i:1766854800;s:9:\"offerings\";a:69:{s:12:\"gravityforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.9.1\";s:14:\"version_latest\";s:7:\"2.9.1.1\";s:3:\"url\";s:171:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2F%2BoTP4WL0KCG4%2FJHgTv9nxCgIDI%3D\";s:10:\"url_latest\";s:171:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=pzpipCY6ZV%2B%2FO6kWuVLxbJOKrIk%3D\";}s:21:\"gravityforms2checkout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=gclYDZI7bEuygh0yRv%2FAX7xN68M%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=gclYDZI7bEuygh0yRv%2FAX7xN68M%3D\";}s:26:\"gravityformsactivecampaign\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=8xp5wo2SrpqeUgpxwrZe6ZHhlCs%3D\";s:10:\"url_latest\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=8xp5wo2SrpqeUgpxwrZe6ZHhlCs%3D\";}s:32:\"gravityformsadvancedpostcreation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:208:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PnW%2B%2BtrwuuoQ9krdMDlQwfFvm6o%3D\";s:10:\"url_latest\";s:208:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PnW%2B%2BtrwuuoQ9krdMDlQwfFvm6o%3D\";}s:20:\"gravityformsagilecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=x38%2FJT4NpzCMNYevng%2BmLYGq0QU%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=x38%2FJT4NpzCMNYevng%2BmLYGq0QU%3D\";}s:19:\"gravityformsakismet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:5:\"1.0.1\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=E%2B4te2OnjR%2BNqJPcArwlqG2rSM0%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=hHuRrDFg68y1y8QAufGgoXh6D%2B4%3D\";}s:24:\"gravityformsauthorizenet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";s:3:\"url\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Ce5rrhTyU77M%2F20wppf0SjzLVhU%3D\";s:10:\"url_latest\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Ce5rrhTyU77M%2F20wppf0SjzLVhU%3D\";}s:18:\"gravityformsaweber\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.0.0\";s:14:\"version_latest\";s:5:\"4.0.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UuObmGe7dkTQwvI%2BaApH9irZDFY%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UuObmGe7dkTQwvI%2BaApH9irZDFY%3D\";}s:21:\"gravityformsbatchbook\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=kRMiZzJJEFemLqXFyErQhlfxLJw%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=kRMiZzJJEFemLqXFyErQhlfxLJw%3D\";}s:18:\"gravityformsbreeze\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=FmKXQQi93z2LUxrt%2FdakjeX3Wr4%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=FmKXQQi93z2LUxrt%2FdakjeX3Wr4%3D\";}s:27:\"gravityformscampaignmonitor\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.0.0\";s:14:\"version_latest\";s:5:\"4.0.0\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=5GOWGz%2BTmTmLZBfe5cgDW0vnDOU%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=5GOWGz%2BTmTmLZBfe5cgDW0vnDOU%3D\";}s:20:\"gravityformscampfire\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=61MzkZi9Qn5tbC06Gu6V7gJPC4w%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.2.2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Zg42dPaHM0t5QvxtL5d6y7MEmEI%3D\";}s:22:\"gravityformscapsulecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=sAXd8mz0L3MUgOtbA%2FZxsjaD1DE%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=sAXd8mz0L3MUgOtbA%2FZxsjaD1DE%3D\";}s:26:\"gravityformschainedselects\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=DTohxTu2wsvssPgZoAyC1q0otms%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=DTohxTu2wsvssPgZoAyC1q0otms%3D\";}s:23:\"gravityformscleverreach\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=B2OVdrZhVmKn0H9i40LDQ9Y%2Fy74%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=B2OVdrZhVmKn0H9i40LDQ9Y%2Fy74%3D\";}s:15:\"gravityformscli\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/cli/gravityformscli_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=40Q7KuISMn%2BOCscndAukDSrK7Yw%3D\";}s:27:\"gravityformsconstantcontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=bFkpAN%2FDCxL4Lpsm5IqzCpxoL6g%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=bFkpAN%2FDCxL4Lpsm5IqzCpxoL6g%3D\";}s:31:\"gravityformsconversationalforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.1\";s:3:\"url\";s:212:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=hI8mQ%2B%2FG8e%2BCKeHb9n%2FjOjEI%2Btg%3D\";s:10:\"url_latest\";s:202:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=hRyalETz6bNCvhgRTElAZrS6TZw%3D\";}s:22:\"gravityformsconvertkit\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/convertkit/gravityformsconvertkit_1.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=LL8JzdusLmv6usZ%2BibNd8k8Lt3U%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/convertkit/gravityformsconvertkit_1.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=LL8JzdusLmv6usZ%2BibNd8k8Lt3U%3D\";}s:19:\"gravityformscoupons\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.4.0\";s:14:\"version_latest\";s:5:\"3.4.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=pK%2B0XEr1%2FoTEokNgoF%2FpP2STX1Y%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=pK%2B0XEr1%2FoTEokNgoF%2FpP2STX1Y%3D\";}s:17:\"gravityformsdebug\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/debug/gravityformsdebug_1.0.beta12.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=FQ1vfXWZAtF%2BGuCL%2FAG8%2FtRrEFw%3D\";}s:19:\"gravityformsdropbox\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.2.0\";s:14:\"version_latest\";s:5:\"3.2.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=ddQVuee27no7Bv0y46AXkaXf3Tw%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=ddQVuee27no7Bv0y46AXkaXf3Tw%3D\";}s:24:\"gravityformsemailoctopus\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.3.0\";s:14:\"version_latest\";s:5:\"1.3.0\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Nbx978V%2BXh9h1ZlxUIhHltCENw0%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Nbx978V%2BXh9h1ZlxUIhHltCENw0%3D\";}s:16:\"gravityformsemma\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Lu0tq6DR6pr7qP5o2Qpbfl7Tpf4%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Lu0tq6DR6pr7qP5o2Qpbfl7Tpf4%3D\";}s:22:\"gravityformsfreshbooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=tfNOLR%2BQvjMHgEg3Nje38GBfpvM%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=tfNOLR%2BQvjMHgEg3Nje38GBfpvM%3D\";}s:23:\"gravityformsgeolocation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Ee6w6xRAMS398NlGJwyVrg79JM8%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Ee6w6xRAMS398NlGJwyVrg79JM8%3D\";}s:23:\"gravityformsgetresponse\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.8.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=eIL2%2BDO%2BbJbAdh6wTj1BlQLdVbQ%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.8.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=eIL2%2BDO%2BbJbAdh6wTj1BlQLdVbQ%3D\";}s:27:\"gravityformsgoogleanalytics\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=p4OnFXhj%2F11yzFxuhG8ShftrNTU%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=p4OnFXhj%2F11yzFxuhG8ShftrNTU%3D\";}s:21:\"gravityformsgutenberg\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";s:3:\"url\";s:187:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=LuM6DXOpG37M0tSKQ6oKlMt9RsI%3D\";s:10:\"url_latest\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=O5unfX%2FXiXMyu3pN6ci96rEMZcA%3D\";}s:21:\"gravityformshelpscout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2BZ6Bb7CesM65LC%2BYkOI%2BerrY3cs%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2BZ6Bb7CesM65LC%2BYkOI%2BerrY3cs%3D\";}s:20:\"gravityformshighrise\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=MVOzYBNeLMDZdzxfCyL73J54I0M%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=MVOzYBNeLMDZdzxfCyL73J54I0M%3D\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=n3VfYOLiNfK8tHo5f33jgGFPiH4%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=n3VfYOLiNfK8tHo5f33jgGFPiH4%3D\";}s:20:\"gravityformsicontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=sCe9fwmjrqLUH%2FgpKB8mlov%2FwWE%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=sCe9fwmjrqLUH%2FgpKB8mlov%2FwWE%3D\";}s:19:\"gravityformslogging\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=N3P1ZJRKMaBt40p6jDAQDmbZjcs%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=RTUhltKr5EsvB4i7zeWi1RiwzA8%3D\";}s:19:\"gravityformsmadmimi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=WUu%2Far0AlXKhS9hGZmJhFvBgl%2Fw%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=WUu%2Far0AlXKhS9hGZmJhFvBgl%2Fw%3D\";}s:21:\"gravityformsmailchimp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.6.0\";s:14:\"version_latest\";s:5:\"5.6.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=W4ZfCbfTXqAPed%2BL5vrAQMcpkg8%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=W4ZfCbfTXqAPed%2BL5vrAQMcpkg8%3D\";}s:22:\"gravityformsmailerlite\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/mailerlite/gravityformsmailerlite_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=kereF6euYE%2BQzLEvwG4SAiu937A%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/mailerlite/gravityformsmailerlite_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=kereF6euYE%2BQzLEvwG4SAiu937A%3D\";}s:19:\"gravityformsmailgun\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=iHxm%2BSzo7W0m5O5Gb5D1YhMT%2BPc%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=iHxm%2BSzo7W0m5O5Gb5D1YhMT%2BPc%3D\";}s:22:\"gravityformsmoderation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.2.0\";s:14:\"version_latest\";s:5:\"1.2.1\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=DG6rGJPx74gly6tLaR2U7Zrze%2B0%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=5tqxPr6Sh3ygw%2FHvPetZYs8%2BMk4%3D\";}s:18:\"gravityformsmollie\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=et3v2iZ40x85Bkf9D5rMSHvYBLs%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=et3v2iZ40x85Bkf9D5rMSHvYBLs%3D\";}s:26:\"gravityformspartialentries\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PyJxCF2DQ6bcqobqn51VRvk7x1Y%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PyJxCF2DQ6bcqobqn51VRvk7x1Y%3D\";}s:18:\"gravityformspaypal\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=uX9Zv1rA9pn1Rm98z0cek82fbMc%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=uX9Zv1rA9pn1Rm98z0cek82fbMc%3D\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:0:\"\";}s:29:\"gravityformspaypalpaymentspro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";s:3:\"url\";s:200:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=3gu9jo1afG0VuEJFcKqH%2FE%2FUCCo%3D\";s:10:\"url_latest\";s:200:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=3gu9jo1afG0VuEJFcKqH%2FE%2FUCCo%3D\";}s:21:\"gravityformspaypalpro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=cq6I4N9y1QRVpxEry9pTCt4U8qs%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.4.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Sup7SNuyXNRpc34BIEixBrT5be8%3D\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=bs2SmwDPXHrgrByqp%2BRUziSgY5I%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=bs2SmwDPXHrgrByqp%2BRUziSgY5I%3D\";}s:17:\"gravityformspolls\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.3.0\";s:14:\"version_latest\";s:5:\"4.3.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Z2fMACUGMS7xoCfbWl%2BwWx0HYHg%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Z2fMACUGMS7xoCfbWl%2BwWx0HYHg%3D\";}s:20:\"gravityformspostmark\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PJ6o0GUeG5ZCka0E88J0OgwF6vc%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PJ6o0GUeG5ZCka0E88J0OgwF6vc%3D\";}s:16:\"gravityformsppcp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.7.0\";s:14:\"version_latest\";s:5:\"3.7.2\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_3.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=h%2FM01eh2Yys7LEZ3YE72hd70cak%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_3.7.2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=EMma9xPRYzLQs9zqVKW%2BYKEhfeY%3D\";}s:16:\"gravityformsquiz\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.2.0\";s:14:\"version_latest\";s:5:\"4.2.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=dUNz1GlzGveu4gkeFho1VVo%2FHxE%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=elPH4D3KZU6kl2zrT%2FQyAfwSgOk%3D\";}s:21:\"gravityformsrecaptcha\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=wPofE5Lb6Afz%2B%2Bhf06DIXwksHs8%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=wPofE5Lb6Afz%2B%2Bhf06DIXwksHs8%3D\";}s:19:\"gravityformsrestapi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";s:3:\"url\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Vf9WGTiGp%2BMQSqSrTCAQ8Ya10Tw%3D\";s:10:\"url_latest\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Vf9WGTiGp%2BMQSqSrTCAQ8Ya10Tw%3D\";}s:22:\"gravityformssalesforce\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/salesforce/gravityformssalesforce_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UuRKhGAxdmksEIYhb2ESCc3TEAo%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/salesforce/gravityformssalesforce_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UuRKhGAxdmksEIYhb2ESCc3TEAo%3D\";}s:20:\"gravityformssendgrid\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=fSJH4nb2hZ9GDx5%2FMwKETLWmRoE%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=fSJH4nb2hZ9GDx5%2FMwKETLWmRoE%3D\";}s:21:\"gravityformssignature\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.6.0\";s:14:\"version_latest\";s:5:\"4.6.1\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UMw1TJ9D0ZUXoIPD14PYl1QL8Io%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.6.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=r2hpCBmWnSXuPF6krapx3Dk4CQc%3D\";}s:17:\"gravityformsslack\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=t3BioF%2Fxil3Iw4LMtAlsgeYI%2FVY%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=t3BioF%2Fxil3Iw4LMtAlsgeYI%2FVY%3D\";}s:18:\"gravityformssquare\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=6wua2feOMJwOFwVJVeqXZVs6ERQ%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=6wua2feOMJwOFwVJVeqXZVs6ERQ%3D\";}s:18:\"gravityformsstripe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.9.0\";s:14:\"version_latest\";s:5:\"5.9.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_5.9.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2F%2FAGh0NHy9bCTuPj8vfCPQU7Hfs%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_5.9.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2F%2FAGh0NHy9bCTuPj8vfCPQU7Hfs%3D\";}s:18:\"gravityformssurvey\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.1.0\";s:14:\"version_latest\";s:5:\"4.1.1\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_4.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=yCQYkJaHu%2FSsPnJoy8BhhqnP9XY%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_4.1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=gIXZ3SxaU1cQdyBTycnIVLau3JI%3D\";}s:18:\"gravityformstrello\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=1CUhtdzwkptQzDBIR5PSb2NBJyM%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=1CUhtdzwkptQzDBIR5PSb2NBJyM%3D\";}s:21:\"gravityformsturnstile\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.3.0\";s:14:\"version_latest\";s:5:\"1.3.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/turnstile/gravityformsturnstile_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2FvNzbvGFlXOZP08ip9TPchfBNAk%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/turnstile/gravityformsturnstile_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2FvNzbvGFlXOZP08ip9TPchfBNAk%3D\";}s:18:\"gravityformstwilio\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.0.0\";s:14:\"version_latest\";s:5:\"3.0.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_3.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=d1dumnsLIGdKtSUk%2BQLzS%2B2yN5A%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_3.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=d1dumnsLIGdKtSUk%2BQLzS%2B2yN5A%3D\";}s:28:\"gravityformsuserregistration\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.3.0\";s:14:\"version_latest\";s:5:\"5.3.2\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=2mVvKSbxGN4k9eZ0lUWxlcEyieY%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.3.2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=DLXshoCgD9MS5owKeltVb7FYRqs%3D\";}s:20:\"gravityformswebhooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=q%2F9Bz09uy0eQ3fe0eSK77YANOVY%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=q%2F9Bz09uy0eQ3fe0eSK77YANOVY%3D\";}s:18:\"gravityformszapier\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.3.0\";s:14:\"version_latest\";s:5:\"4.3.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=i2nk2GWKu11IKAxBqnH4HkEqEU0%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=i2nk2GWKu11IKAxBqnH4HkEqEU0%3D\";}s:19:\"gravityformszohocrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=1hS8kANeGxEYrYe6oPZVmKG1ZQ0%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=1hS8kANeGxEYrYe6oPZVmKG1ZQ0%3D\";}s:11:\"gravitysmtp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:165:\"https://s3.amazonaws.com/gravitysmtp/releases/gravitysmtp_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=xZ2t4RqgtyGC6oBW%2Bs14kH2OmuU%3D\";s:10:\"url_latest\";s:165:\"https://s3.amazonaws.com/gravitysmtp/releases/gravitysmtp_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=xZ2t4RqgtyGC6oBW%2Bs14kH2OmuU%3D\";}}s:9:\"is_active\";s:1:\"1\";s:12:\"product_code\";s:5:\"GFDEV\";s:12:\"date_created\";s:19:\"2013-10-29 22:58:34\";s:14:\"version_latest\";s:7:\"2.9.1.1\";s:10:\"url_latest\";s:171:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=pzpipCY6ZV%2B%2FO6kWuVLxbJOKrIk%3D\";s:9:\"timestamp\";i:1734520065;}','off'),(5879,'updraft_lock_wpo_page_cache_preloader_creating_tasks','0','no'),(5880,'updraft_lock_wpo_minify_preloader_creating_tasks','0','no'),(5883,'wp-optimize-corrupted-tables-count','0','yes'),(5886,'wp-optimize-enable-auto-backup','false','yes'),(5888,'wp-optimize-lossy_compression','1','yes'),(5889,'wp-optimize-autosmush','1','yes'),(5890,'wp-optimize-show_smush_metabox','show','yes'),(5891,'Re_Smush_It_Task','1680483329','yes'),(5893,'wp-optimize-completed_task_count','115','yes'),(5894,'wp-optimize-total_bytes_saved','22948666','yes'),(5895,'wp-optimize-total_percent_saved','17.59','yes'),(5965,'wordfence_syncAttackDataAttempts','0','off'),(5966,'wordfence_syncingAttackData','0','off'),(5967,'wordfence_lastSyncAttackData','1734456880','off'),(6301,'livechat_platform','wordpress','yes'),(6302,'livechat_public_key','-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApUBv5P4jFQq95b5AmSNd\nbIMw1mIQ/OjxVTYdfr7UjrAL9NLpOjA8pz8N7Qi8rkGnGsoV6Gon8IRR+kZkc4+I\nGamdJ2xO1tgatwSKzIATabuXJnsDKQM6hAMgQjtHzTnae2PSVFe/N2l+4Bvjwrrs\nKcPOD1ZkkkQ/ewicWfmDlNgg69JraTgo13Tak3V62IWRceKUqskEwaer1jN3K/n1\nDlsuNq3ZvpH4by7STpEDjzVyUGDxOmweXoUNJQZhg9bX7iMTt3DUBcsPqx/voEbB\niSyA4TL4T25UKbhyWpY5ANoRCF2wn9Qaa0CFJoIo4IA6WxF7LlXPDCbqAzUL3IFG\n4wIDAQAB\n-----END PUBLIC KEY-----\n','yes'),(6321,'livechat_widget_url','https://connect.livechatinc.com/api/v1/script/1f21a42d-45fd-4491-bc0e-60bda9b319fb/widget.js?lcv=c2d6ef8b-eaa3-47aa-8dd3-6c921511f41c','yes'),(6322,'livechat_user_2_token','eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdG9yZVVVSUQiOiIxZjIxYTQyZC00NWZkLTQ0OTEtYmMwZS02MGJkYTliMzE5ZmIiLCJ1c2VyVVVJRCI6IjJkOWVlMGY3LWYzN2EtNDA3OS1iN2UwLWYxYTA2OGExYzg5MSIsImFwaVJlZ2lvbiI6InVzIiwiYXBpVmVyc2lvbiI6InYxIiwiZXhwIjoxNzEyMjIwOTg1fQ.VvKi1NzgFF1J_CO2iSXMZTRhu-kBJCnNFJ5eyKK6aWHlxoopSQK3ECM7V3F1n8wDqQGajJDSo9vxTv0C-vQlGC82Qm0GqXzupC8SkZa_vzw-ddCItdyKaqmOi3HeWGD362xjQRgFpevEoDLbMqW9rM8TlnjKcsdLQxru_7oVuqEsaeBmVtFkAT01_-PPlUKd6jRWAxpTxbXsqao7lN2NA_XxvWv8QZSV7rRJgbA8p2S84a8ie1gXBXpLEEhbMuJx0sO8758xbbSLjGm-3bt31EPoBYMaEBtapT3yGUcMgYLdDcRb0oPzd1QwFtqhUU8MlkKlZRswvu37slF2tdglBg','yes'),(6323,'livechat_authorized_users','2','yes'),(6324,'livechat_store_token','eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdG9yZVVVSUQiOiIxZjIxYTQyZC00NWZkLTQ0OTEtYmMwZS02MGJkYTliMzE5ZmIiLCJhcGlSZWdpb24iOiJ1cyIsImFwaVZlcnNpb24iOiJ2MSIsImV4cCI6MTcxMjIyMDk4NX0.Rn-t5tvzBgnYGR_gUVcXOUSO390MV0RmZXmPYLYjRH1W-wI50IQVCn2er7zidQkZfhN_tLypCDb7d6IVGDa2ZtuchyC3wzMstkhZa8RmwnFqBsHgg6RH_Vt4prV8FHixiQUpCVcgo4GpSRUBinV0e50KbeJTBmWAvxm64QvB8oLTJNYGeFM5DcvEp6IwlOdzGbjSNWN6yS4TSNIoDNSnK7qqwcWAKHP95q1MZ9d6qdT_gOUNB9k56CtFuE2sZKjdgnXx7u8i8uLvE5pMdIw7tWFi8HArlHvEKHFvVBE8FZClY4DXwWZWiS3aNeG6Vchyj6q5zb4drSzNU3uZvjefPA','yes'),(6325,'livechat_synchronized','1','yes'),(6439,'trustindex-google-page-details','a:6:{s:2:\"id\";s:27:\"ChIJUzRNqswcMm0RpvAFuhF-cRk\";s:4:\"name\";s:29:\"Juice Electrical Christchurch\";s:7:\"address\";s:0:\"\";s:10:\"avatar_url\";s:104:\"https://lh3.googleusercontent.com/-cRnSV-s8prE/AAAAAAAAAAI/AAAAAAAAAAA/4mOclagbce8/s160-c-k-mo/photo.jpg\";s:13:\"rating_number\";i:43;s:12:\"rating_score\";d:5;}','no'),(6440,'trustindex-google-lang','en','no'),(6441,'trustindex-google-style-id','36','no'),(6442,'trustindex-google-scss-set','light-minimal','no'),(6443,'trustindex-google-css-content','@charset \"UTF-8\";\n@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:400;font-display:swap;src:local(\"Open Sans Regular\"), local(\"OpenSans-Regular\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/cyrillic-ext.woff2\") format(\"woff2\");unicode-range:U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:400;font-display:swap;src:local(\"Open Sans Regular\"), local(\"OpenSans-Regular\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/cyrillic.woff2\") format(\"woff2\");unicode-range:U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:400;font-display:swap;src:local(\"Open Sans Regular\"), local(\"OpenSans-Regular\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/greek-ext.woff2\") format(\"woff2\");unicode-range:U+1F00-1FFF}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:400;font-display:swap;src:local(\"Open Sans Regular\"), local(\"OpenSans-Regular\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/greek.woff2\") format(\"woff2\");unicode-range:U+0370-03FF}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:400;font-display:swap;src:local(\"Open Sans Regular\"), local(\"OpenSans-Regular\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/vietnamese.woff2\") format(\"woff2\");unicode-range:U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:400;font-display:swap;src:local(\"Open Sans Regular\"), local(\"OpenSans-Regular\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/latin-ext.woff2\") format(\"woff2\");unicode-range:U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:400;font-display:swap;src:local(\"Open Sans Regular\"), local(\"OpenSans-Regular\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/latin.woff2\") format(\"woff2\");unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:700;font-display:swap;src:local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/cyrillic-ext2.woff2\") format(\"woff2\");unicode-range:U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:700;font-display:swap;src:local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/cyrillic2.woff2\") format(\"woff2\");unicode-range:U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:700;font-display:swap;src:local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/greek-ext2.woff2\") format(\"woff2\");unicode-range:U+1F00-1FFF}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:700;font-display:swap;src:local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/greek2.woff2\") format(\"woff2\");unicode-range:U+0370-03FF}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:700;font-display:swap;src:local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/vietnamese2.woff2\") format(\"woff2\");unicode-range:U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:700;font-display:swap;src:local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/latin-ext2.woff2\") format(\"woff2\");unicode-range:U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF}@font-face{font-family:\"Trustindex Open Sans\";font-style:normal;font-weight:700;font-display:swap;src:local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"), url(\"https://cdn.trustindex.io/assets/fonts/opensans/latin2.woff2\") format(\"woff2\");unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}.ti-amp-iframe-body{background:#ffffff}.ti-widget.ti-goog{width:100%;display:block;overflow:hidden;text-align:left;direction:ltr;box-sizing:border-box}.ti-widget.ti-goog font{pointer-events:none}.ti-widget.ti-goog script{display:none !important}.ti-widget.ti-goog img{box-shadow:unset !important}.ti-widget.ti-goog *,.ti-widget.ti-goog *:after{box-sizing:border-box}.ti-widget.ti-goog *:before,.ti-widget.ti-goog *:after{-webkit-box-ordinal-group:1 !important;content:unset}.ti-widget.ti-goog:before{display:none !important}.ti-widget.ti-goog img{padding:0 !important;margin:0 !important;min-width:initial !important;max-width:initial !important}.ti-widget.ti-goog a{text-decoration:underline !important;color:inherit}.ti-widget.ti-goog a.ti-header{text-decoration:none !important}.ti-widget.ti-goog a[href=\"#\"]:not(.ti-show-original-text),.ti-widget.ti-goog a:not([href]){text-decoration:none !important;pointer-events:none}.ti-widget.ti-goog .ti-widget-container,.ti-widget.ti-goog .ti-widget-container *{font-family:\"Trustindex Open Sans\";font-size:14px;line-height:1.4em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.ti-widget.ti-goog strong,.ti-widget.ti-goog strong *{font-weight:bold}.ti-widget.ti-goog .ti-widget-container{display:block;color:#000000;margin-bottom:15px}.ti-widget.ti-goog .ti-widget-container .ti-name{font-weight:bold;font-size:14px;overflow:hidden;padding-right:25px;white-space:nowrap;text-overflow:ellipsis;color:#000000;margin-bottom:2px}.ti-widget.ti-goog .ti-widget-container .ti-name a{text-decoration:none !important;font-size:inherit}.ti-widget.ti-goog .ti-widget-container .ti-name a:hover{text-decoration:underline !important}.ti-widget.ti-goog .ti-widget-container .ti-date{color:#000000;opacity:0.5;font-size:11.2px !important}.ti-widget.ti-goog .ti-profile-img{margin:0 15px 0 0 !important}.ti-widget.ti-goog .ti-profile-img img{width:40px !important;height:40px !important;display:block;border-radius:30px;object-fit:cover;object-position:top}.ti-widget.ti-goog .ti-profile-img .ti-profile-img-sprite{display:inline-block;float:left;background:white;background-repeat:no-repeat;width:40px;height:40px;border-radius:30px}.ti-widget.ti-goog .ti-profile-details{-webkit-box-flex:1;-ms-flex:1;flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-align:left;margin:0 !important;display:flex;flex-direction:column;justify-content:center}.ti-widget.ti-goog .ti-stars{margin-top:3px;white-space:nowrap;display:block}.ti-widget.ti-goog .ti-star{width:17px !important;height:17px !important;margin-right:1px !important;vertical-align:unset;display:inline-block !important}.ti-widget.ti-goog img.ti-star{background:none !important}.ti-widget.ti-goog .ti-footer{margin-top:15px;padding-top:0px;text-align:center;line-height:1.45em}.ti-widget.ti-goog .ti-footer .ti-name{color:#000000;font-size:15px;margin-bottom:5px;overflow:hidden;text-overflow:ellipsis}.ti-widget.ti-goog .ti-footer .ti-stars{margin-bottom:3px;margin-top:0px;line-height:0}.ti-widget.ti-goog .ti-footer .ti-profile-details{padding-top:4px}.ti-widget.ti-goog .ti-footer .ti-inner{padding-bottom:10px}.ti-widget.ti-goog .ti-footer-filter-text{font-size:15px !important;color:#000000;margin-bottom:0 !important;padding:0 15px;text-align:left;margin:15px 0}.ti-widget.ti-goog .ti-footer-filter-text:empty{margin:0 !important}.ti-widget.ti-goog .ti-disclaimer{visibility:hidden;opacity:0;padding:10px;position:absolute;bottom:100%;width:100%;min-width:220px;max-width:585px;background:white;border:1px solid #000;border-radius:4px;font-size:14px;font-weight:normal;margin-bottom:15px;text-align:left;z-index:2147483647;color:#000000 !important;transition:all 0.3s;transition-delay:0.35s;right:unset ;left:50% ;transform:translateX(-50%) }.ti-widget.ti-goog .ti-disclaimer:after{left:0 ;right:0 }.ti-widget.ti-goog .ti-disclaimer a{font-size:inherit}.ti-widget.ti-goog .ti-disclaimer:after{position:absolute;content:\"\";bottom:-10px;margin:0 auto;width:0;border:10px solid transparent;border-bottom-width:0;border-top-color:#000}.ti-widget.ti-goog .ti-disclaimer.ti-bottom{bottom:unset;margin-bottom:unset;top:100%;margin-top:15px}.ti-widget.ti-goog .ti-disclaimer.ti-bottom:after{bottom:unset;top:-10px;border:10px solid transparent;border-top-width:0;border-bottom-color:#000}.ti-widget.ti-goog .ti-disclaimer:hover{visibility:visible;opacity:1}.ti-widget.ti-goog .ti-verified-by{display:inline-block}.ti-widget.ti-goog .ti-verified-by .ti-info-icon{display:inline-block;background-size:contain;width:13px;height:13px;position:relative;top:2px;-webkit-mask-image:url(\"https://cdn.trustindex.io/assets/icon/ti-info-light.svg\");mask-image:url(\"https://cdn.trustindex.io/assets/icon/ti-info-light.svg\");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;background-color:#000000}.ti-widget.ti-goog .ti-verified-by-row{display:block;text-align:right;margin-bottom:0 !important;font-size:13px;color:#000000;margin:12px 0}.ti-widget.ti-goog .ti-verified-by-row>.ti-inner{display:inline-block;position:relative;padding:2px 8px;font-size:13px;font-weight:bold;padding:3px 8px}.ti-widget.ti-goog .ti-verified-by-row .ti-info-icon{-webkit-mask-image:url(\"https://cdn.trustindex.io/assets/icon/ti-info-regular.svg\");mask-image:url(\"https://cdn.trustindex.io/assets/icon/ti-info-regular.svg\")}.ti-widget.ti-goog .ti-verified-by-row .ti-trustindex-icon{display:inline-block;width:15px;height:15px;vertical-align:unset;position:relative;top:2px;background-image:url(\"https://cdn.trustindex.io/assets/platform/Trustindex/icon.svg\");margin-left:4px;margin-right:3px}.ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer{width:350px !important;left:unset ;transform:unset ;right:0 }.ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer:after{left:unset ;right:15px }.ti-widget.ti-goog .ti-verified-by-row[data-style=\"1\"]>.ti-inner{background-color:#157351;color:white}.ti-widget.ti-goog .ti-verified-by-row[data-style=\"1\"] .ti-info-icon{background-color:white}.ti-widget.ti-goog .ti-verified-by-row[data-style=\"2\"]>.ti-inner{background-color:#D6F3E6;color:black}.ti-widget.ti-goog .ti-verified-by-row[data-style=\"2\"] .ti-info-icon{background-color:black}.ti-widget.ti-goog .ti-verified-by:hover+.ti-disclaimer,.ti-widget.ti-goog .ti-verified-by .ti-inner:hover .ti-disclaimer{visibility:visible;transition-delay:0.1ms;opacity:1}.ti-widget.ti-goog .ti-footer-filter-text+.ti-verified-by-row{margin-top:-20px !important}.ti-widget.ti-goog .ti-footer+.ti-verified-by-row{text-align:center}.ti-widget.ti-goog .ti-footer+.ti-verified-by-row .ti-disclaimer{right:unset ;left:50% ;transform:translateX(-50%) }.ti-widget.ti-goog .ti-footer+.ti-verified-by-row .ti-disclaimer:after{left:0 ;right:0 }@media (max-width:479px){.ti-widget.ti-goog .ti-verified-by-row{text-align:center !important}.ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer{right:unset ;left:50% ;transform:translateX(-50%) }.ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer:after{left:0 ;right:0 }.ti-widget.ti-goog .ti-footer-filter-text+.ti-verified-by-row{margin-top:12px !important}}@media (min-width:1024px){.ti-widget.ti-goog .ti-verified-by-row{margin:12px 28px}}@media (max-width:479px){.ti-widget.ti-goog .ti-footer-filter-text{text-align:center !important}}@media (min-width:1024px){.ti-widget.ti-goog .ti-footer-filter-text{margin:12px 28px}}.ti-widget.ti-goog .star-lg .ti-star{width:30px !important;height:30px !important}.ti-widget.ti-goog .ti-d-none{display:none !important}.ti-widget.ti-goog .ti-rating-text,.ti-widget.ti-goog .ti-rating-text strong:not(.ti-rating-large),.ti-widget.ti-goog .ti-rating-text strong a,.ti-widget.ti-goog .ti-rating-text strong span,.ti-widget.ti-goog .ti-rating-text span strong,.ti-widget.ti-goog .ti-rating-text span,.ti-widget.ti-goog .ti-footer,.ti-widget.ti-goog .ti-footer strong:not(.ti-rating-large),.ti-widget.ti-goog .ti-footer span,.ti-widget.ti-goog .ti-footer strong a{font-size:0px;color:#000000}.ti-widget.ti-goog .ti-large-logo{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:0 !important}.ti-widget.ti-goog .ti-large-logo .ti-v-center{-ms-flex-item-align:center !important;align-self:center !important;text-align:center;-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.ti-widget.ti-goog .ti-large-logo img{margin:auto !important;display:block !important;position:relative;width:150px !important;height:32px !important}.ti-widget.ti-goog .nowrap{white-space:nowrap;display:inline-block;margin:0 2px}.ti-widget.ti-goog .nowrap:first-of-type{margin-left:0}.ti-widget.ti-goog .nowrap:last-of-type{margin-right:0}.ti-widget.ti-goog .ti-reviews-container-wrapper .ti-inner>.ti-stars,.ti-widget.ti-goog .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars{margin-bottom:8px;margin-top:15px;text-align:left}.ti-widget.ti-goog .ti-reviews-container-wrapper{overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;margin:0 -8px;padding-top:5px}.ti-disable-animation.ti-widget.ti-goog .ti-reviews-container-wrapper{padding-top:0 !important}@media (min-width:1024px){.ti-widget.ti-goog .ti-reviews-container-wrapper{margin:0 20px !important}}.ti-widget.ti-goog .ti-col-1 .ti-review-item{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ti-widget.ti-goog .ti-col-2 .ti-review-item{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ti-widget.ti-goog .ti-col-3 .ti-review-item{-ms-flex:0 0 33.333%;flex:0 0 33.333%;max-width:33.333%}.ti-widget.ti-goog .ti-col-4 .ti-review-item{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ti-widget.ti-goog .ti-col-5 .ti-review-item{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.ti-widget.ti-goog .ti-col-6 .ti-review-item{-ms-flex:0 0 16.666%;flex:0 0 16.666%;max-width:16.666%}.ti-widget.ti-goog .ti-col-7 .ti-review-item{-ms-flex:0 0 14.286%;flex:0 0 14.286%;max-width:14.286%}.ti-widget.ti-goog .ti-col-8 .ti-review-item{-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.ti-widget.ti-goog .ti-col-9 .ti-review-item{-ms-flex:0 0 11.111%;flex:0 0 11.111%;max-width:11.111%}.ti-widget.ti-goog .ti-col-10 .ti-review-item{-ms-flex:0 0 10%;flex:0 0 10%;max-width:10%}.ti-widget.ti-goog .ti-reviews-container{position:relative;display:block;touch-action:pan-y}.ti-widget.ti-goog .ti-read-more{display:block;padding:5px 0 0;text-align:left}.ti-widget.ti-goog .ti-read-more span{display:inline-block;font-weight:400;white-space:nowrap;font-size:13.5px;color:#000000;opacity:0.5;text-decoration:none !important;transition:color 300ms ease-out;cursor:pointer}.ti-widget.ti-goog .ti-read-more span:hover{opacity:1;text-decoration:underline !important}.ti-widget.ti-goog .ti-review-item{padding:0 8px;transition:transform 300ms ease-out}.ti-widget.ti-goog .ti-review-item .ti-inner{border-radius:4px}.ti-widget.ti-goog .ti-review-item>.ti-inner{border-style:solid !important;border-color:#f4f4f4 !important;background:#f4f4f4 !important;border-radius:4px !important;padding:20px !important;margin:0 !important;display:block;position:relative}.ti-widget.ti-goog .ti-review-item .ti-polarity-icon{position:relative;text-indent:3px;display:inline-block;width:15px !important;height:15px !important;vertical-align:unset}.ti-widget.ti-goog .ti-review-item .ti-recommendation .ti-recommendation-icon{position:relative;margin:0 5px !important;margin-bottom:-3px !important;text-indent:3px;display:inline-block;width:15px !important;height:15px !important;vertical-align:unset}.ti-widget.ti-goog .ti-review-item .ti-recommendation .ti-recommendation-icon:first-child{margin-left:0 !important}.ti-widget.ti-goog .ti-review-item .ti-recommendation .ti-recommendation-title{font-weight:700;font-size:13px !important;opacity:0.8;position:relative;top:-1px}.ti-widget.ti-goog .ti-review-item .ti-recommendation+.ti-dummy-stars{display:none}.ti-widget.ti-goog .ti-review-item .ti-stars{height:17px}.ti-widget.ti-goog .ti-review-item .ti-review-image{width:80px;height:80px;border-radius:4px;margin-left:12px;margin-bottom:4px;margin-top:2px;position:relative;cursor:pointer;overflow:hidden}.ti-widget.ti-goog .ti-review-item .ti-review-image img{position:absolute;object-fit:cover;width:100% !important;height:100% !important;max-width:100% !important;max-height:100% !important;border-radius:inherit;border:0;left:0;top:0;transition:all 0.3s ease-in-out;pointer-events:none}.ti-widget.ti-goog .ti-review-item .ti-review-image .ti-more-image-count{position:absolute;width:100%;height:100%;left:0;top:0;display:flex;align-items:center;justify-content:center;color:white;background-color:rgba(0, 0, 0, 0.4);font-size:18px;border-radius:inherit;opacity:0;pointer-events:none;transition:all 0.2s ease-in-out;font-weight:bold;transform:scale(0.85);z-index:2}.ti-widget.ti-goog .ti-review-item .ti-review-image:hover img{transform:scale(1.1)}.ti-widget.ti-goog .ti-review-item .ti-review-image:hover.ti-has-more-image .ti-more-image-count{opacity:1;transform:scale(1)}.ti-widget.ti-goog .ti-review-item .ti-review-image-container{display:flex;flex-wrap:nowrap;margin:0 -4px;margin-top:15px;max-height:100px;transition:all 500ms ease-in-out}.ti-widget.ti-goog .ti-review-item .ti-review-image-container .ti-review-image{float:unset !important;margin:0 !important;width:25%;height:unset;flex:0 0 auto;padding:0 4px}.ti-widget.ti-goog .ti-review-item .ti-review-image-container .ti-review-image .ti-review-image-inner{display:block;position:relative;width:100%;height:0;padding-bottom:100%;border-radius:inherit;overflow:hidden;pointer-events:none}.ti-widget.ti-goog .ti-review-item .ti-review-image-container .ti-review-image.ti-has-more-image .ti-more-image-count{opacity:1;transform:scale(1)}.ti-widget.ti-goog .ti-review-item.ti-hidden-review .ti-review-image-container{max-height:0;margin-top:0;transition-delay:500ms}.ti-widget.ti-goog .ti-review-content{display:-webkit-box;-webkit-box-orient:vertical;line-height:21.75px;height:87px;font-size:15px;text-align:left;transition:height 0.5s;font-style:normal;-webkit-line-clamp:4;overflow:hidden;padding-right:0}.ti-widget.ti-goog .ti-review-content .ti-review-image{float:right}.ti-widget.ti-goog .ti-review-content.ti-empty-text .ti-review-image{float:unset !important;margin:unset !important;display:inline-block !important}.ti-text-align-right.ti-widget.ti-goog .ti-review-content .ti-review-image{float:left;margin-left:unset;margin-right:12px}.ti-ios-fallback.ti-widget.ti-goog .ti-review-content{display:block}.ti-widget.ti-goog .ti-review-content .ti-show-original-text{font-size:inherit !important}.ti-review-text-mode-scroll.ti-widget.ti-goog .ti-review-content{-webkit-line-clamp:inherit;overflow:auto;overflow-x:hidden;padding-right:10px}.ti-text-align-right.ti-widget.ti-goog .ti-review-content{text-align:right !important}.ti-text-align-center.ti-widget.ti-goog .ti-review-content{text-align:center !important}.ti-text-align-justify.ti-widget.ti-goog .ti-review-content{text-align:justify !important}.ti-widget.ti-goog .ti-review-content .ti-stars{margin-bottom:5px}.ti-widget.ti-goog .ti-review-content strong{font-size:inherit;color:inherit;font-weight:normal !important}.ti-widget.ti-goog .ti-review-content .ti-reply-by-owner-title{font-weight:bold !important}.ti-widget.ti-goog .ti-review-content .ti-reply-by-owner-title:before{content:\"↪ \"}.ti-widget.ti-goog .ti-review-header{display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;position:relative}.ti-widget.ti-goog .ti-highlight{padding:1px 2px;margin:0;box-decoration-break:clone;-webkit-box-decoration-break:clone;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px;background-color:transparent !important;background-image:linear-gradient(#fbe049, #fbe049);background-size:100% 19px;background-position:bottom;background-repeat:no-repeat;color:#000 !important;font-size:inherit !important}@media (min-width:480px){.ti-widget.ti-goog .ti-review-item:hover{-webkit-transform:translate(0, -5px);-ms-transform:translate(0, -5px);transform:translate(0, -5px)}}.ti-widget.ti-goog .ti-ai-summary-item{color:#000000}.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content{-webkit-line-clamp:5;margin-top:16.25px;height:110.75px !important}.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content .ti-summary-list{margin-bottom:0;padding-left:0;list-style:none;font-size:inherit}.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content .ti-summary-list li{list-style:inherit;margin-bottom:0;padding-left:20px;position:relative;font-size:inherit}.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content .ti-summary-list li:last-child{margin-bottom:0}.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content .ti-summary-list li:before{display:block;content:\"\";width:10px;height:5px;border-left:solid 2px #000000;border-bottom:solid 2px #000000;transform:rotate(-45deg);position:absolute;left:0;top:7.5px}.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-img{margin-right:13px !important}.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img){display:inline-block;vertical-align:middle;border:2px solid #f4f4f4}.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img):not(:first-child){margin-left:-12px !important}.ti-widget.ti-goog .ti-ai-summary-item>.ti-inner{background:#f4f4f4 !important}.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img){border-color:#f4f4f4}.ti-widget.ti-goog .ti-ai-summary-item .ti-name,.ti-widget.ti-goog .ti-ai-summary-item .ti-date,.ti-widget.ti-goog .ti-ai-summary-item .ti-read-more span{color:#000000}.ti-widget.ti-goog .ti-ten-rating-score{display:inline-block;font-weight:bold;font-size:15px;color:#000000;margin-left:7px;height:100%;line-height:17px;vertical-align:top}.ti-widget.ti-goog .ti-platform-icon{width:20px !important;height:20px !important;position:absolute;top:0;right:0}.ti-widget.ti-goog.ti-custom-stars [class*=\"source-\"] .ti-star.e,.ti-widget.ti-goog.ti-custom-stars [class*=\"source-\"] .ti-star.f{background-image:none}.ti-widget.ti-goog.ti-custom-stars .ti-star{-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-image:url(https://cdn.trustindex.io/assets/platform/Trustindex/star/s.svg);-webkit-mask-image:url(https://cdn.trustindex.io/assets/platform/Trustindex/star/s.svg)}.ti-widget.ti-goog.ti-custom-stars .ti-star:not(.e):not(.h){background:#f6bb06}.ti-widget.ti-goog.ti-custom-stars .ti-star.h{background:#f6bb06;background:-webkit-linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important;background:linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important}.ti-widget.ti-goog.ti-custom-stars .ti-star.e{background:#ccc !important}.ti-widget.ti-goog[data-language=\"ar\"] .ti-name,.ti-widget.ti-goog[data-language=\"ar\"] .ti-date,.ti-widget.ti-goog[data-language=\"ar\"] .ti-profile-details .ti-text,.ti-widget.ti-goog[data-language=\"ar\"] .ti-review-content,.ti-widget.ti-goog[data-language=\"ar\"] .ti-review-text,.ti-widget.ti-goog[data-language=\"ar\"] .ti-read-more,.ti-widget.ti-goog[data-language=\"ar\"] .ti-footer,.ti-widget.ti-goog[data-language=\"ar\"] .ti-rating-text,.ti-widget.ti-goog[data-language=\"ar\"] .ti-footer-filter-text,.ti-widget.ti-goog[data-language=\"ar\"] .ti-header-write-btn,.ti-widget.ti-goog[data-language=\"ar\"] .ti-widget-header .ti-tab-item[data-source=\"all\"] .ti-item-label,.ti-widget.ti-goog[data-language=\"ar\"] .ti-header-rating-text,.ti-widget.ti-goog[data-language=\"ar\"] .ti-rating-name,.ti-widget.ti-goog[data-language=\"ar\"] .ti-header .ti-text,.ti-widget.ti-goog[data-language=\"ar\"] .ti-load-more-reviews-button,.ti-widget.ti-goog[data-language=\"he\"] .ti-name,.ti-widget.ti-goog[data-language=\"he\"] .ti-date,.ti-widget.ti-goog[data-language=\"he\"] .ti-profile-details .ti-text,.ti-widget.ti-goog[data-language=\"he\"] .ti-review-content,.ti-widget.ti-goog[data-language=\"he\"] .ti-review-text,.ti-widget.ti-goog[data-language=\"he\"] .ti-read-more,.ti-widget.ti-goog[data-language=\"he\"] .ti-footer,.ti-widget.ti-goog[data-language=\"he\"] .ti-rating-text,.ti-widget.ti-goog[data-language=\"he\"] .ti-footer-filter-text,.ti-widget.ti-goog[data-language=\"he\"] .ti-header-write-btn,.ti-widget.ti-goog[data-language=\"he\"] .ti-widget-header .ti-tab-item[data-source=\"all\"] .ti-item-label,.ti-widget.ti-goog[data-language=\"he\"] .ti-header-rating-text,.ti-widget.ti-goog[data-language=\"he\"] .ti-rating-name,.ti-widget.ti-goog[data-language=\"he\"] .ti-header .ti-text,.ti-widget.ti-goog[data-language=\"he\"] .ti-load-more-reviews-button,.ti-widget.ti-goog[data-language=\"fa\"] .ti-name,.ti-widget.ti-goog[data-language=\"fa\"] .ti-date,.ti-widget.ti-goog[data-language=\"fa\"] .ti-profile-details .ti-text,.ti-widget.ti-goog[data-language=\"fa\"] .ti-review-content,.ti-widget.ti-goog[data-language=\"fa\"] .ti-review-text,.ti-widget.ti-goog[data-language=\"fa\"] .ti-read-more,.ti-widget.ti-goog[data-language=\"fa\"] .ti-footer,.ti-widget.ti-goog[data-language=\"fa\"] .ti-rating-text,.ti-widget.ti-goog[data-language=\"fa\"] .ti-footer-filter-text,.ti-widget.ti-goog[data-language=\"fa\"] .ti-header-write-btn,.ti-widget.ti-goog[data-language=\"fa\"] .ti-widget-header .ti-tab-item[data-source=\"all\"] .ti-item-label,.ti-widget.ti-goog[data-language=\"fa\"] .ti-header-rating-text,.ti-widget.ti-goog[data-language=\"fa\"] .ti-rating-name,.ti-widget.ti-goog[data-language=\"fa\"] .ti-header .ti-text,.ti-widget.ti-goog[data-language=\"fa\"] .ti-load-more-reviews-button{direction:rtl}.ti-widget.ti-goog[data-language=\"ar\"] .ti-stars,.ti-widget.ti-goog[data-language=\"ar\"] .ti-footer .ti-row,.ti-widget.ti-goog[data-language=\"he\"] .ti-stars,.ti-widget.ti-goog[data-language=\"he\"] .ti-footer .ti-row,.ti-widget.ti-goog[data-language=\"fa\"] .ti-stars,.ti-widget.ti-goog[data-language=\"fa\"] .ti-footer .ti-row{direction:ltr}.ti-widget.ti-goog ::-webkit-scrollbar{width:4px;border-radius:3px}.ti-widget.ti-goog ::-webkit-scrollbar-track{background:rgba(85, 85, 85, 0.1)}.ti-widget.ti-goog ::-webkit-scrollbar-thumb{background:rgba(85, 85, 85, 0.6)}.ti-widget.ti-goog ::-webkit-scrollbar-thumb:hover{background:#555}.ti-widget.ti-goog.ti-disable-nav .ti-controls{display:none !important}.ti-widget.ti-goog.ti-disable-nav .ti-footer-filter-text{margin:15px 0}.ti-widget.ti-goog.ti-disable-nav .ti-widget-header{margin-left:8px !important;margin-right:8px !important}.ti-widget.ti-goog.ti-disable-nav .ti-reviews-container-wrapper{margin:0 !important}.ti-widget.ti-goog.ti-review-text-mode-scroll .ti-read-more,.ti-widget.ti-goog.ti-review-text-mode-truncated .ti-read-more{display:none !important}.ti-widget.ti-goog.ti-disable-font .ti-widget-container,.ti-widget.ti-goog.ti-disable-font .ti-widget-container *,.ti-widget.ti-goog.ti-disable-font .ti-enable-widget{font-family:inherit !important}.ti-widget.ti-goog.ti-disable-animation .ti-review-item:hover,.ti-widget.ti-goog.ti-disable-animation .ti-header:hover,.ti-widget.ti-goog.ti-disable-animation .ti-footer:hover{-webkit-transform:none !important;-ms-transform:none !important;transform:none !important}.ti-widget.ti-goog.ti-disable-animation .ti-widget-container{margin-top:5px}.ti-widget.ti-goog.ti-text-align-right .ti-reviews-container-wrapper .ti-inner>.ti-stars,.ti-widget.ti-goog.ti-text-align-right .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars,.ti-widget.ti-goog.ti-text-align-right .ti-reviews-container-wrapper .ti-read-more{text-align:right !important}.ti-widget.ti-goog.ti-text-align-center .ti-reviews-container-wrapper .ti-inner>.ti-stars,.ti-widget.ti-goog.ti-text-align-center .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars,.ti-widget.ti-goog.ti-text-align-center .ti-reviews-container-wrapper .ti-read-more{text-align:center !important}.ti-widget.ti-goog.ti-text-align-justify .ti-reviews-container-wrapper .ti-inner>.ti-stars,.ti-widget.ti-goog.ti-text-align-justify .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars,.ti-widget.ti-goog.ti-text-align-justify .ti-reviews-container-wrapper .ti-read-more{text-align:justify !important}.ti-widget.ti-goog.ti-content-align-left .ti-review-header .ti-profile-details,.ti-widget.ti-goog.ti-content-align-left .ti-stars,.ti-widget.ti-goog.ti-content-align-left .ti-review-content,.ti-widget.ti-goog.ti-content-align-left .ti-read-more{text-align:left !important}.ti-widget.ti-goog.ti-content-align-right .ti-review-header .ti-profile-details,.ti-widget.ti-goog.ti-content-align-right .ti-stars,.ti-widget.ti-goog.ti-content-align-right .ti-review-content,.ti-widget.ti-goog.ti-content-align-right .ti-read-more{text-align:right !important}.ti-widget.ti-goog.ti-content-align-justify .ti-review-header .ti-profile-details,.ti-widget.ti-goog.ti-content-align-justify .ti-stars,.ti-widget.ti-goog.ti-content-align-justify .ti-review-content,.ti-widget.ti-goog.ti-content-align-justify .ti-read-more{text-align:justify !important}.ti-widget.ti-goog.ti-content-align-right .ti-review-header .ti-profile-img{align-self:end}.ti-widget.ti-goog.ti-content-align-right .ti-review-header:after{right:unset;left:0}.ti-widget.ti-goog.ti-content-align-right:not(.ti-no-profile-img) .ti-review-header:after{left:initial;right:0}.ti-widget.ti-goog.ti-content-align-center .ti-review-header .ti-profile-img{align-self:center}.ti-widget.ti-goog.ti-content-align-center:not(.ti-no-profile-img) .ti-review-header:after{right:inherit;left:calc(50% + 32px - 27px)}.ti-widget.ti-goog.ti-text-align-right .ti-verified-tooltip,.ti-widget.ti-goog.ti-content-align-right .ti-verified-tooltip{left:unset;right:0;margin-left:0;margin-right:25px}.ti-widget.ti-goog.ti-text-align-right .ti-verified-tooltip:before,.ti-widget.ti-goog.ti-content-align-right .ti-verified-tooltip:before{border-width:5px 0 5px 5px;border-color:transparent transparent transparent #6f6f6f;left:unset;right:-5px}.ti-widget.ti-goog.ti-text-align-right:hover .ti-verified-tooltip,.ti-widget.ti-goog.ti-content-align-right:hover .ti-verified-tooltip{margin-left:0;margin-right:20px}.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text,.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text strong:not(.ti-rating-large),.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text strong a,.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text strong span,.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text span strong,.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text span,.ti-widget.ti-goog.ti-show-rating-text .ti-footer,.ti-widget.ti-goog.ti-show-rating-text .ti-footer strong:not(.ti-rating-large),.ti-widget.ti-goog.ti-show-rating-text .ti-footer span,.ti-widget.ti-goog.ti-show-rating-text .ti-footer strong a{font-size:14px !important}.ti-verified-review{display:inline-block;background:url(\"https://cdn.trustindex.io/assets/icon/ti-verified.svg\");background-size:contain;width:15px;height:15px;margin:0 !important;margin-left:7px !important;position:relative;z-index:2}.ti-verified-review:only-child{margin-left:0 !important}.ti-verified-review.ti-color-green{background:url(\"https://cdn.trustindex.io/assets/icon/ti-verified-green.svg\")}.ti-verified-review .ti-verified-tooltip{color:#fff !important;background-color:#555555 !important;text-align:left;padding:0 10px;border-radius:4px;font-size:12px !important;line-height:22px !important;font-weight:500;display:inline-block;position:absolute;left:0;top:-4px;white-space:nowrap;z-index:1;opacity:0;margin-left:35px;visibility:hidden;transition:opacity 0.3s ease-in-out, margin 0.3s ease-in-out}.ti-verified-review .ti-verified-tooltip:before{width:0;height:0;border-style:solid;border-width:5px 5px 5px 0;border-color:transparent #555555 transparent transparent;content:\"\" !important;position:absolute;left:-5px;top:50%;margin-top:-5px}.ti-verified-review:hover .ti-verified-tooltip{opacity:1;margin-left:23px;visibility:visible}.ti-verified-review .ti-verified-tooltip{left:unset;right:0;margin-left:0;margin-right:25px}.ti-verified-review .ti-verified-tooltip:before{border-width:5px 0 5px 5px;border-color:transparent transparent transparent #6f6f6f;left:unset;right:-5px}.ti-verified-review:hover .ti-verified-tooltip{margin-left:0;margin-right:20px}.ti-verified-review.ti-verified-platform .ti-verified-tooltip{width:175px;max-width:250px;white-space:normal;line-height:1.4 !important;padding:4px 8px;padding-bottom:6px}.ti-verified-review.ti-verified-platform .ti-verified-tooltip:before{top:12px}.ti-recommendation+.ti-verified-review{top:2px}.ti-ten-rating-score+.ti-verified-review{top:-1px}.ti-widget .source-Trustpilot.ti-tab-item:before,.ti-widget .source-Trustpilot.ti-write-btn-dropdown-item:before,.ti-widget .source-Trustpilot .ti-review-header:after,.ti-widget .source-Trustpilot .ti-inner:after,.ti-widget .source-Trustpilot .ti-review-content:after,.ti-widget .source-Trustpilot .ti-platform-icon:after,.ti-widget .source-Trustpilot .ti-icon,.ti-widget .source-Trustpilot .ti-platform,.ti-widget .source-Trustpilot .ti-inner .col-left,.ti-widget .source-Trustpilot .ti-large-logo,.ti-widget .source-Trustpilot .ti-enable-widget:before,.ti-lightbox .source-Trustpilot.ti-tab-item:before,.ti-lightbox .source-Trustpilot.ti-write-btn-dropdown-item:before,.ti-lightbox .source-Trustpilot .ti-review-header:after,.ti-lightbox .source-Trustpilot .ti-inner:after,.ti-lightbox .source-Trustpilot .ti-review-content:after,.ti-lightbox .source-Trustpilot .ti-platform-icon:after,.ti-lightbox .source-Trustpilot .ti-icon,.ti-lightbox .source-Trustpilot .ti-platform,.ti-lightbox .source-Trustpilot .ti-inner .col-left,.ti-lightbox .source-Trustpilot .ti-large-logo,.ti-lightbox .source-Trustpilot .ti-enable-widget:before{display:none !important}.ti-widget .source-Trustpilot .ti-enable-widget,.ti-lightbox .source-Trustpilot .ti-enable-widget{padding-left:8px !important}.ti-widget .source-Trustpilot .ti-enable-widget:before,.ti-lightbox .source-Trustpilot .ti-enable-widget:before{display:none !important}.ti-widget .source-Trustpilot.disable-widget,.ti-lightbox .source-Trustpilot.disable-widget{top:4px !important;right:4px !important}.ti-widget.ti-goog{overflow:visible !important}.ti-widget.ti-goog .ti-review-item>.ti-inner,.ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button{border-top-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;border-right-width:0px !important;background-color:rgba(244, 244, 244, 0) !important;backdrop-filter:blur(0px)}.ti-image-loading,.ti-review-item .ti-review-image{background-image:url(\"https://cdn.trustindex.io/assets/img/loading_dots.gif\");background-repeat:no-repeat;background-position:50% 50%;background-size:50px}.ti-image-loading.ti-image-loading img,.ti-review-item .ti-review-image.ti-image-loading img{opacity:0 !important}.ti-widget-lightbox{text-align:left !important;z-index:9999999;height:100%;position:fixed;left:0;right:0;bottom:0;top:0;max-width:100%;width:100%;transition:all 300ms ease-out;background-color:rgba(0, 0, 0, 0.6);display:flex;color:#333;align-items:center !important;justify-content:center;flex-wrap:wrap;user-select:none;opacity:0}.ti-widget-lightbox img{padding:0 !important;margin:0 !important;min-width:initial !important;max-width:initial !important}.ti-widget-lightbox .ti-widget-lightbox-inner{max-height:calc(100vh - 160px);height:100%;max-width:1200px;width:95%}@media (max-width:1160px){.ti-widget-lightbox .ti-widget-lightbox-inner{max-height:100%;height:100%;width:100%}}.ti-widget-lightbox.ti-widget-lightbox-appeared{opacity:1}.ti-widget-lightbox .ti-widget-lightbox-close{position:absolute;top:15px;right:15px;width:40px;height:40px;z-index:1;border-radius:50px;cursor:pointer;display:flex;justify-content:center;align-items:center}@media (max-width:1160px) and (orientation:landscape){.ti-widget-lightbox .ti-widget-lightbox-close{right:315px}}@media (max-width:1160px){.ti-widget-lightbox .ti-widget-lightbox-close{background-color:rgba(0, 0, 0, 0.5)}}.ti-widget-lightbox .ti-widget-lightbox-close:active,.ti-widget-lightbox .ti-widget-lightbox-close:hover{background-color:rgba(255, 255, 255, 0.2)}.ti-widget-lightbox .ti-widget-lightbox-close:before,.ti-widget-lightbox .ti-widget-lightbox-close:after{width:60%;height:3px;background-color:#fff;position:absolute;content:\"\";transform:rotate(45deg)}.ti-widget-lightbox .ti-widget-lightbox-close:after{transform:rotate(-45deg)}.ti-widget-lightbox .ti-widget-card{overflow:hidden;border-radius:4px;height:100%;border:none;position:relative}@media (max-width:1160px){.ti-widget-lightbox .ti-widget-card{border-radius:0}}.ti-widget-lightbox .ti-card-body{background-color:#fff;position:relative;height:400px;flex-direction:row;border-radius:4px;display:flex;flex-direction:row;justify-content:flex-start;color:#000000;height:100%}@media (max-width:1160px){.ti-widget-lightbox .ti-card-body{border-radius:0}}@media (max-width:767px) and (orientation:portrait){.ti-widget-lightbox .ti-card-body{flex-direction:column;width:100%;height:100%;border-radius:0}}.ti-widget-lightbox .ti-card-body .ti-card-media{flex:1 1 auto;align-items:center;display:flex;height:100%;justify-content:center;width:100%;position:relative;background-color:#000000;overflow:hidden;padding-bottom:0px}@media (max-width:767px) and (orientation:portrait){.ti-widget-lightbox .ti-card-body .ti-card-media{flex:0 0 60%;width:100%}}.ti-widget-lightbox .ti-card-body .ti-card-media img{width:100% !important;height:100% !important;max-width:100% !important;max-height:100% !important;object-fit:contain;position:absolute;display:block;border-radius:inherit;opacity:1;transition:opacity 300ms ease-in-out}.ti-widget-lightbox .ti-card-body .ti-card-media .ti-nav-arrow{max-width:100%;margin-left:0px;left:inherit;top:50%;margin-top:-10px;visibility:visible;opacity:1}.ti-widget-lightbox .ti-card-body .ti-review-content{flex:0 0 auto;height:100%;width:300px;overflow:hidden;padding:0px;display:flex;flex-direction:column;font-size:15px;color:#000000}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-review-header{position:relative;z-index:unset;padding:20px;display:flex;align-items:center;color:#000}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-review-header .ti-platform-icon{width:20px !important;height:20px !important;position:absolute;right:16px;top:16px}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-review-header .ti-profile-img{margin:0;margin-right:10px}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-review-header .ti-profile-img img{width:40px !important;height:40px !important;display:block;border-radius:30px;object-fit:cover;object-position:top}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-review-header .ti-profile-img .ti-profile-img-sprite{display:inline-block;float:left;background:white;background-repeat:no-repeat;width:40px;height:40px;border-radius:30px}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-review-header .ti-profile-details{-webkit-box-flex:1;-ms-flex:1;flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-align:left;margin:0;display:flex;flex-direction:column;justify-content:center}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-review-header .ti-profile-details .ti-name{font-weight:bold;font-size:inherit;overflow:hidden;padding-right:25px;white-space:nowrap;text-overflow:ellipsis;color:#000000;margin-bottom:2px}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-review-header .ti-profile-details .ti-date{color:#000000;opacity:0.5;font-size:12px}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-stars{margin:0 20px;white-space:nowrap;display:block;line-height:0}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-stars .ti-star{width:17px !important;height:17px !important;display:inline-block;margin-right:1px !important;background-size:contain;background-repeat:no-repeat;vertical-align:unset}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-stars .ti-star:before,.ti-widget-lightbox .ti-card-body .ti-review-content .ti-stars .ti-star:after{content:none !important}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-stars .ti-ten-rating-score{display:inline-block;font-weight:bold;font-size:15px;color:#000000;margin-left:7px;height:100%;line-height:17px;vertical-align:top}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-stars .ti-verified-review .ti-verified-tooltip{max-width:150px !important}.ti-widget-lightbox .ti-card-body .ti-review-content .ti-review-text{flex:0 1 100%;font-size:inherit;padding:20px;padding-top:0;margin-top:10px;display:block;overflow-x:hidden;overflow:auto;color:#000000}@media (max-width:767px) and (orientation:portrait){.ti-widget-lightbox .ti-card-body .ti-review-content{flex:0 0 40%;width:100%}}.ti-widget-lightbox .ti-nav-arrow{position:absolute;height:0px;top:50%;z-index:2;display:flex;flex-wrap:wrap;flex:0 0 100%;width:100%;transition:all 0.2s ease-in-out}.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev,.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next{display:flex;align-items:center;border-radius:50%;background-color:rgba(255, 255, 255, 0.7);box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.1);width:40px;height:40px;cursor:pointer}.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev:hover,.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next:hover{background-color:white}.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev:active,.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next:active{transform:scale(0.95);background-color:white}.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev:before,.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next:before{width:25%;height:25%;display:block;content:\"\";transform-origin:center center;margin:auto;position:relative;border-top:solid 3px #000;border-left:solid 3px #000;box-sizing:content-box}.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next{margin-left:auto;margin-right:15px}.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next:before{transform:rotate(135deg);left:-5%}.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev{margin-left:15px}.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev:before{transform:rotate(-45deg);left:5%}.ti-widget.ti-goog .ti-reviews-container-wrapper{padding-top:52px;padding-bottom:8px}.ti-widget.ti-goog.ti-no-profile-img .ti-reviews-container-wrapper{padding-top:8px}.ti-widget.ti-goog .ti-review-header{flex-wrap:wrap;flex-direction:column}.ti-widget.ti-goog .ti-review-header .ti-profile-img{margin:0 !important;margin-top:-52px !important;margin-bottom:15px !important;align-self:center}.ti-widget.ti-goog .ti-review-header .ti-profile-img img{width:64px !important;height:64px !important;border-radius:32px}.ti-widget.ti-goog .ti-review-header .ti-profile-details{text-align:center;width:100%}.ti-widget.ti-goog .ti-review-header .ti-profile-details .ti-name{padding-right:0px}.ti-widget.ti-goog .ti-profile-img .ti-profile-img-sprite{width:64px !important;height:64px !important;border-radius:32px}.ti-widget.ti-goog:not(.ti-no-profile-img) .ti-review-header .ti-platform-icon{top:-15px;right:inherit;left:calc(50% + 32px - 27px);background-color:#ffffff;border-radius:50%;overflow:hidden;width:26px !important;height:26px !important;border:solid 2px #ffffff}.ti-widget.ti-goog .ti-stars{margin-bottom:10px !important;text-align:center !important}.ti-widget.ti-goog .ti-stars .ti-star{width:18px !important;height:18px !important}.ti-widget.ti-goog .ti-stars .ti-verified-review{top:-1px;position:relative}.ti-widget.ti-goog .ti-review-content,.ti-widget.ti-goog .ti-read-more{text-align:center}.ti-widget.ti-goog .ti-review-item .ti-review-image-container{justify-content:center}.ti-widget.ti-goog .ti-footer-filter-text{text-align:center}.ti-widget.ti-goog .ti-ai-summary-item .ti-review-header:after{display:none}.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content{margin-top:20.5px}.ti-widget.ti-goog .ti-controls{display:none;margin-top:-12px;width:100%;position:absolute;height:0px;z-index:1;top:50%}.ti-widget.ti-goog .ti-controls .ti-next,.ti-widget.ti-goog .ti-controls .ti-prev{position:absolute;display:inline-block;width:20px;height:30px;padding-top:20px;padding-bottom:20px;display:block;opacity:1;-webkit-transition:all 200ms ease-out;-moz-transition:all 200ms ease-out;-o-transition:all 200ms ease-out;transition:all 200ms ease-out}.ti-widget.ti-goog .ti-controls .ti-next:hover,.ti-widget.ti-goog .ti-controls .ti-prev:hover{cursor:pointer;-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)}.ti-widget.ti-goog .ti-controls .ti-next:before,.ti-widget.ti-goog .ti-controls .ti-prev:before{content:\"\";background:#cccccc;width:17px;height:3px;display:block;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:2px;position:absolute}.ti-widget.ti-goog .ti-controls .ti-next:after,.ti-widget.ti-goog .ti-controls .ti-prev:after{content:\"\";background:#cccccc;width:17px;height:3px;display:block;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:2px;position:absolute}.ti-widget.ti-goog .ti-controls .ti-next{right:2px}.ti-widget.ti-goog .ti-controls .ti-next:after{top:18px;right:0px}.ti-widget.ti-goog .ti-controls .ti-next:before{top:8px;right:0px}.ti-widget.ti-goog .ti-controls .ti-prev{left:2px}.ti-widget.ti-goog .ti-controls .ti-prev:after{top:8px;left:0px}.ti-widget.ti-goog .ti-controls .ti-prev:before{top:18px;left:0px}@media (min-width:1024px){.ti-widget.ti-goog .ti-controls{display:block}}@media (max-width:479px){.ti-widget.ti-goog .ti-controls{top:calc(50% - 19px)}}.ti-widget.ti-goog .ti-controls-line{display:none;margin:20px auto;width:150px;height:3px;border-radius:3px;background:rgba(204, 204, 204, 0.35);position:relative;overflow:hidden}.ti-widget.ti-goog .ti-controls-line .dot{position:absolute;left:0;top:0;display:inline-block;width:25px;padding-left:4px;padding-right:4px;height:100%;border-radius:3px;background:#cccccc;transition:width 0.2s, left 0.2s}@media (max-width:479px){.ti-widget.ti-goog .ti-controls-line{display:block !important}}.ti-widget.ti-goog .ti-reviews-container .ti-controls{top:calc(50% + 16px)}@media (max-width:479px){.ti-widget.ti-goog .ti-reviews-container .ti-controls{top:calc(50% - 19px + 20px)}}','off'),(6445,'trustindex-google-filter','a:2:{s:5:\"stars\";a:2:{i:0;i:4;i:1;i:5;}s:12:\"only-ratings\";b:0;}','no'),(6446,'trustindex-google-review-text-mode','scroll','no'),(6447,'trustindex-google-widget-setted-up','1','no'),(6448,'trustindex-google-verified-icon','0','no'),(6449,'trustindex-google-enable-animation','0','no'),(6450,'trustindex-google-show-arrows','1','no'),(6451,'trustindex-google-show-reviewers-photo','1','no'),(6452,'trustindex-google-no-rating-text','0','no'),(6453,'trustindex-google-disable-font','1','no'),(6454,'trustindex-google-show-logos','1','no'),(6455,'trustindex-google-show-stars','1','no'),(8460,'wp-optimize-install-or-update-notice-version','1.1','yes'),(9728,'wp-optimize-dismiss_dash_notice_until','1747285886','yes'),(15450,'wp-optimize-dismiss_review_notice','1736128465','yes'),(19111,'wp-optimize-failed_task_count','4','yes'),(19819,'wp-optimize-redirection_possible','false','yes'),(21166,'gf_telemetry_data','a:2:{s:8:\"snapshot\";O:64:\"Gravity_Forms\\Gravity_Forms\\Telemetry\\GF_Telemetry_Snapshot_Data\":3:{s:4:\"data\";a:31:{s:3:\"key\";s:32:\"49c0c5fcaa9a830e20ea0aa5b8abeded\";s:10:\"wp_version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"8.1.31\";s:13:\"mysql_version\";s:7:\"10.3.39\";s:7:\"plugins\";a:11:{i:0;a:4:{s:4:\"name\";s:26:\"Advanced Custom Fields PRO\";s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:7:\"version\";s:6:\"6.3.11\";s:9:\"is_active\";b:1;}i:1;a:4:{s:4:\"name\";s:34:\"Akismet Anti-spam: Spam Protection\";s:4:\"slug\";s:7:\"akismet\";s:7:\"version\";s:5:\"5.3.5\";s:9:\"is_active\";b:1;}i:2;a:4:{s:4:\"name\";s:14:\"Envira Gallery\";s:4:\"slug\";s:14:\"envira-gallery\";s:7:\"version\";s:6:\"1.10.0\";s:9:\"is_active\";b:1;}i:3;a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:12:\"gravityforms\";s:7:\"version\";s:5:\"2.9.0\";s:9:\"is_active\";b:1;}i:4;a:4:{s:4:\"name\";s:8:\"LiveChat\";s:4:\"slug\";s:35:\"wp-live-chat-software-for-wordpress\";s:7:\"version\";s:6:\"4.5.23\";s:9:\"is_active\";b:1;}i:5;a:4:{s:4:\"name\";s:4:\"Soil\";s:4:\"slug\";s:4:\"soil\";s:7:\"version\";s:5:\"4.1.1\";s:9:\"is_active\";b:1;}i:6;a:4:{s:4:\"name\";s:26:\"Widgets for Google Reviews\";s:4:\"slug\";s:28:\"wp-reviews-plugin-for-google\";s:7:\"version\";s:6:\"12.4.7\";s:9:\"is_active\";b:1;}i:7;a:4:{s:4:\"name\";s:18:\"Wordfence Security\";s:4:\"slug\";s:9:\"wordfence\";s:7:\"version\";s:5:\"8.0.1\";s:9:\"is_active\";b:1;}i:8;a:4:{s:4:\"name\";s:36:\"WP-Optimize - Clean, Compress, Cache\";s:4:\"slug\";s:11:\"wp-optimize\";s:7:\"version\";s:5:\"3.8.0\";s:9:\"is_active\";b:1;}i:9;a:4:{s:4:\"name\";s:10:\"WP Migrate\";s:4:\"slug\";s:17:\"wp-migrate-db-pro\";s:7:\"version\";s:5:\"2.7.0\";s:9:\"is_active\";b:1;}i:10;a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:7:\"version\";s:4:\"24.0\";s:9:\"is_active\";b:1;}}s:10:\"theme_name\";s:18:\"Pinnacle&Co. 2\";s:9:\"theme_uri\";s:22:\"https://roots.io/sage/\";s:13:\"theme_version\";s:5:\"1.0.0\";s:12:\"theme_author\";s:16:\"Pinnacle&Co.\";s:16:\"theme_author_uri\";s:24:\"https://pinnacleandco.nz\";s:12:\"is_multisite\";b:0;s:11:\"total_forms\";i:1;s:13:\"total_entries\";s:3:\"199\";s:11:\"emails_sent\";s:3:\"398\";s:9:\"api_calls\";i:0;s:16:\"entry_meta_count\";i:10918;s:19:\"entry_details_count\";i:10918;s:17:\"entry_notes_count\";i:2814;s:4:\"lang\";s:5:\"en_US\";s:2:\"db\";s:7:\"MariaDB\";s:10:\"autoUpdate\";i:1;s:8:\"currency\";s:3:\"NZD\";s:14:\"dataCollection\";i:0;s:5:\"email\";b:0;s:9:\"formTypes\";s:0:\"\";s:14:\"formTypesOther\";b:0;s:11:\"hideLicense\";i:0;s:12:\"organization\";b:0;s:17:\"organizationOther\";b:0;s:8:\"services\";s:0:\"\";s:13:\"servicesOther\";b:0;}s:3:\"key\";s:8:\"snapshot\";s:15:\"data_collection\";s:1:\"0\";}s:6:\"events\";a:0:{}}','off'),(21671,'trustindex-subscription-id','5da67406g','yes'),(23620,'wp-optimize-dismiss_season','1763524838','yes'),(25615,'trustindex-google-notifications','a:3:{s:7:\"rate-us\";a:1:{s:6:\"hidden\";b:1;}s:19:\"not-using-no-widget\";a:1:{s:6:\"active\";b:0;}s:25:\"review-download-available\";a:2:{s:6:\"active\";b:0;s:8:\"do-check\";b:0;}}','no'),(26123,'wp-optimize-old_redirection_possible','false','yes'),(27140,'gf_last_telemetry_run','1734044170','yes'),(28256,'wp_attachment_pages_enabled','1','yes'),(29318,'acf_pro_license_status','a:11:{s:6:\"status\";s:6:\"active\";s:7:\"created\";i:0;s:6:\"expiry\";i:0;s:4:\"name\";s:9:\"Developer\";s:8:\"lifetime\";b:1;s:8:\"refunded\";b:0;s:17:\"view_licenses_url\";s:62:\"https://www.advancedcustomfields.com/my-account/view-licenses/\";s:23:\"manage_subscription_url\";s:0:\"\";s:9:\"error_msg\";s:0:\"\";s:10:\"next_check\";i:1734622665;s:16:\"legacy_multisite\";b:1;}','on'),(29672,'wp-optimize-dismiss_notice','1741043600','yes'),(32718,'wp-optimize-dismiss_page_notice_until','1728268939','yes'),(40365,'theme_mods_mint','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:18:\"primary_navigation\";i:3;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1709687104;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";a:0:{}s:14:\"sidebar-footer\";a:0:{}}}}','no'),(40963,'theme_mods_twentytwentyfour','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1710116846;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:0:{}}}}','no'),(40965,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.4.3\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(44033,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','no'),(44087,'envira_permissions_create','s:65:\"a:3:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";}\";','yes'),(44088,'envira_permissions_edit','s:65:\"a:3:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";}\";','yes'),(44089,'envira_permissions_delete','s:65:\"a:3:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";}\";','yes'),(44090,'envira_permissions_edit_others','s:48:\"a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}\";','yes'),(44091,'envira_permissions_default','yes','yes'),(45821,'wp-optimize-is_gzip_compression_enabled','brotli','yes'),(48633,'acf_site_health','{\"version\":\"6.3.11\",\"plugin_type\":\"PRO\",\"update_source\":\"ACF Direct\",\"activated\":true,\"activated_url\":\"https:\\/\\/juiceelectrical.co.nz\",\"license_type\":\"Developer\",\"license_status\":\"active\",\"subscription_expires\":\"\",\"wp_version\":\"6.7.1\",\"mysql_version\":\"10.3.39-MariaDB-cll-lve\",\"is_multisite\":false,\"active_theme\":{\"name\":\"Pinnacle&Co. 2\",\"version\":\"1.0.0\",\"theme_uri\":\"https:\\/\\/roots.io\\/sage\\/\",\"stylesheet\":false},\"active_plugins\":{\"advanced-custom-fields-pro\\/acf.php\":{\"name\":\"Advanced Custom Fields PRO\",\"version\":\"6.3.11\",\"plugin_uri\":\"https:\\/\\/www.advancedcustomfields.com\"},\"akismet\\/akismet.php\":{\"name\":\"Akismet Anti-spam: Spam Protection\",\"version\":\"5.3.5\",\"plugin_uri\":\"https:\\/\\/akismet.com\\/\"},\"envira-gallery\\/envira-gallery.php\":{\"name\":\"Envira Gallery\",\"version\":\"1.10.0\",\"plugin_uri\":\"http:\\/\\/enviragallery.com\"},\"gravityforms\\/gravityforms.php\":{\"name\":\"Gravity Forms\",\"version\":\"2.9.1\",\"plugin_uri\":\"https:\\/\\/gravityforms.com\"},\"wp-live-chat-software-for-wordpress\\/livechat.php\":{\"name\":\"LiveChat\",\"version\":\"4.5.23\",\"plugin_uri\":\"https:\\/\\/www.livechat.com\\/marketplace\\/apps\\/wordpress\\/\"},\"soil\\/soil.php\":{\"name\":\"Soil\",\"version\":\"4.1.1\",\"plugin_uri\":\"https:\\/\\/roots.io\\/plugins\\/soil\\/\"},\"wp-reviews-plugin-for-google\\/wp-reviews-plugin-for-google.php\":{\"name\":\"Widgets for Google Reviews\",\"version\":\"12.4.7\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-reviews-plugin-for-google\\/\"},\"wordfence\\/wordfence.php\":{\"name\":\"Wordfence Security\",\"version\":\"8.0.1\",\"plugin_uri\":\"https:\\/\\/www.wordfence.com\\/\"},\"wp-optimize\\/wp-optimize.php\":{\"name\":\"WP-Optimize - Clean, Compress, Cache\",\"version\":\"3.8.0\",\"plugin_uri\":\"https:\\/\\/getwpo.com\"},\"wp-migrate-db-pro\\/wp-migrate-db-pro.php\":{\"name\":\"WP Migrate\",\"version\":\"2.7.0\",\"plugin_uri\":\"https:\\/\\/deliciousbrains.com\\/wp-migrate-db-pro\\/\"},\"wordpress-seo\\/wp-seo.php\":{\"name\":\"Yoast SEO\",\"version\":\"24.0\",\"plugin_uri\":\"https:\\/\\/yoa.st\\/1uj\"}},\"ui_field_groups\":\"2\",\"php_field_groups\":\"0\",\"json_field_groups\":\"0\",\"rest_field_groups\":\"0\",\"number_of_fields_by_type\":{\"text\":2,\"link\":1,\"repeater\":1},\"number_of_third_party_fields_by_type\":[],\"post_types_enabled\":true,\"ui_post_types\":\"4\",\"json_post_types\":\"0\",\"ui_taxonomies\":\"3\",\"json_taxonomies\":\"0\",\"ui_options_pages_enabled\":true,\"ui_options_pages\":\"0\",\"json_options_pages\":\"0\",\"php_options_pages\":\"0\",\"rest_api_format\":\"light\",\"registered_acf_blocks\":\"0\",\"blocks_per_api_version\":[],\"blocks_per_acf_block_version\":[],\"blocks_using_post_meta\":\"0\",\"preload_blocks\":true,\"admin_ui_enabled\":true,\"field_type-modal_enabled\":true,\"field_settings_tabs_enabled\":false,\"shortcode_enabled\":true,\"registered_acf_forms\":\"0\",\"json_save_paths\":1,\"json_load_paths\":1,\"last_updated\":1734312400}','off'),(48638,'envira_usage_tracking_config','{\"day\":4,\"hour\":13,\"minute\":33,\"second\":32,\"offset\":394412,\"initsend\":1719495212}','yes'),(49648,'envira_usage_tracking_last_checkin','1734010670','yes'),(52993,'trustindex-google-cdn-version-control','a:4:{s:8:\"feed-css\";s:3:\"1.0\";s:10:\"widget-css\";s:3:\"3.3\";s:11:\"widget-html\";s:3:\"2.3\";s:13:\"last-saved-at\";i:1733936682;}','off'),(52994,'trustindex-google-version-control','a:3:{s:10:\"widget-css\";s:3:\"3.3\";s:20:\"update-version-check\";s:6:\"12.4.7\";s:11:\"widget-html\";s:3:\"1.1\";}','off'),(75424,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"10353742d7b7917c675044afe978fa5e\";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'),(75478,'can_compress_scripts','1','on'),(76856,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1734562562;s:7:\"checked\";a:3:{s:4:\"mint\";s:5:\"1.0.0\";s:28:\"pinnclonesmalltest/resources\";s:5:\"1.0.0\";s:15:\"twentytwentytwo\";s:3:\"1.9\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{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:12:\"translations\";a:0:{}}','off'),(76866,'_transient_gf_updated','2.9','on'),(77031,'_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:1734542474;s:15:\"version_checked\";s:5:\"6.7.1\";s:12:\"translations\";a:0:{}}','off'),(80542,'updraft_lock_load-url-task','0','no'),(81308,'envira_notifications','a:5:{s:6:\"update\";i:1734055504;s:4:\"feed\";a:1:{i:0;a:8:{s:5:\"title\";s:29:\"This is is a pro notification\";s:7:\"content\";s:19:\"This is one content\";s:4:\"type\";a:1:{i:0;s:3:\"pro\";}s:2:\"id\";i:33;s:4:\"btns\";a:1:{s:4:\"main\";a:2:{s:3:\"url\";s:18:\"https://google.com\";s:4:\"text\";s:8:\"Go here!\";}}s:4:\"icon\";s:4:\"gear\";s:5:\"start\";s:19:\"2024-09-11 00:00:00\";s:3:\"end\";s:19:\"2025-09-14 00:00:00\";}}s:7:\"timeout\";i:1734109504;s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','off'),(81501,'_transient_GFCache_84eee91138306eba25ba7ef340e7410c','a:1:{s:17:\"gravityforms_cron\";a:3:{i:0;i:1734562562;i:1;i:1734476459;i:2;i:1734389958;}}','on'),(82126,'_transient_timeout_rg_gforms_license','1734606466','off'),(82127,'_transient_rg_gforms_license','a:19:{s:15:\"license_key_md5\";s:32:\"49c0c5fcaa9a830e20ea0aa5b8abeded\";s:12:\"date_created\";s:19:\"2013-10-29 22:58:34\";s:12:\"date_expires\";s:19:\"2025-12-27 17:00:00\";s:12:\"renewal_date\";s:19:\"2025-11-27 17:00:00\";s:9:\"is_active\";s:1:\"1\";s:24:\"is_subscription_canceled\";s:1:\"0\";s:12:\"product_code\";s:5:\"GFDEV\";s:12:\"product_name\";s:31:\"Gravity Forms Developer License\";s:18:\"is_near_expiration\";b:0;s:14:\"days_to_expire\";i:374;s:10:\"is_expired\";b:0;s:8:\"is_valid\";b:1;s:22:\"is_past_renewal_period\";b:0;s:9:\"is_legacy\";b:1;s:12:\"is_perpetual\";b:0;s:9:\"max_sites\";s:9:\"unlimited\";s:12:\"active_sites\";i:161;s:15:\"remaining_seats\";s:9:\"unlimited\";s:20:\"is_multisite_allowed\";b:1;}','off'),(82261,'_transient_timeout__eg_cache_all','1734585910','off'),(82262,'_transient__eg_cache_all','a:1:{i:751;a:3:{s:2:\"id\";i:751;s:6:\"config\";a:86:{s:4:\"type\";s:7:\"default\";s:6:\"layout\";s:4:\"grid\";s:7:\"columns\";s:1:\"3\";s:13:\"gallery_theme\";s:4:\"base\";s:17:\"justified_margins\";i:20;s:18:\"justified_last_row\";s:9:\"nojustify\";s:12:\"lazy_loading\";i:1;s:18:\"lazy_loading_delay\";i:500;s:6:\"gutter\";i:20;s:6:\"margin\";i:20;s:10:\"image_size\";s:7:\"default\";s:11:\"square_size\";i:300;s:10:\"crop_width\";i:600;s:11:\"crop_height\";i:600;s:4:\"crop\";i:1;s:13:\"crop_position\";s:1:\"c\";s:17:\"additional_copy_0\";i:0;s:21:\"additional_copy_title\";i:0;s:23:\"additional_copy_caption\";i:0;s:29:\"additional_copy_title_caption\";i:0;s:24:\"additional_copy_0_mobile\";i:0;s:28:\"additional_copy_title_mobile\";i:0;s:30:\"additional_copy_caption_mobile\";i:0;s:36:\"additional_copy_title_caption_mobile\";i:0;s:28:\"gallery_column_title_caption\";s:1:\"0\";s:35:\"gallery_column_title_caption_mobile\";s:1:\"0\";s:27:\"additional_copy_automatic_0\";i:0;s:31:\"additional_copy_automatic_title\";i:0;s:33:\"additional_copy_automatic_caption\";i:0;s:39:\"additional_copy_automatic_title_caption\";i:0;s:34:\"additional_copy_automatic_0_mobile\";i:0;s:38:\"additional_copy_automatic_title_mobile\";i:0;s:40:\"additional_copy_automatic_caption_mobile\";i:0;s:46:\"additional_copy_automatic_title_caption_mobile\";i:0;s:31:\"gallery_automatic_title_caption\";s:1:\"0\";s:38:\"gallery_automatic_title_caption_mobile\";s:1:\"0\";s:20:\"justified_row_height\";i:150;s:20:\"description_position\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:6:\"random\";s:1:\"0\";s:10:\"sort_order\";s:1:\"0\";s:17:\"sorting_direction\";s:3:\"ASC\";s:18:\"image_sizes_random\";a:0:{}s:7:\"isotope\";b:0;s:16:\"lightbox_enabled\";i:1;s:20:\"gallery_link_enabled\";i:1;s:14:\"lightbox_theme\";s:9:\"base_dark\";s:19:\"lightbox_image_size\";s:7:\"default\";s:13:\"title_display\";s:5:\"float\";s:22:\"lightbox_title_caption\";s:1:\"0\";s:6:\"arrows\";i:1;s:15:\"arrows_position\";s:6:\"inside\";s:7:\"toolbar\";i:0;s:13:\"toolbar_title\";i:0;s:16:\"toolbar_position\";s:3:\"top\";s:4:\"loop\";i:0;s:26:\"lightbox_open_close_effect\";s:4:\"fade\";s:6:\"effect\";s:4:\"fade\";s:9:\"supersize\";i:0;s:17:\"thumbnails_toggle\";i:0;s:15:\"thumbnails_hide\";i:0;s:13:\"image_counter\";i:0;s:10:\"thumbnails\";i:0;s:16:\"thumbnails_width\";i:75;s:17:\"thumbnails_height\";i:50;s:19:\"thumbnails_position\";s:6:\"bottom\";s:22:\"thumbnails_custom_size\";i:0;s:6:\"mobile\";i:1;s:12:\"mobile_width\";i:320;s:13:\"mobile_height\";i:240;s:15:\"mobile_lightbox\";i:1;s:27:\"mobile_gallery_link_enabled\";i:0;s:13:\"mobile_arrows\";i:1;s:14:\"mobile_toolbar\";i:1;s:17:\"mobile_thumbnails\";i:0;s:22:\"mobile_touchwipe_close\";i:0;s:23:\"mobile_thumbnails_width\";i:75;s:24:\"mobile_thumbnails_height\";i:50;s:27:\"mobile_justified_row_height\";i:80;s:8:\"keyboard\";b:1;s:19:\"standalone_template\";s:0:\"\";s:7:\"classes\";a:1:{i:0;s:0:\"\";}s:3:\"rtl\";i:0;s:4:\"slug\";s:3:\"751\";s:5:\"title\";s:11:\"Residential\";s:21:\"lightbox_html_caption\";i:0;}s:7:\"gallery\";a:5:{i:722;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/building-electric-maintenance-electrician.jpg\";s:5:\"title\";s:41:\"building-electric-maintenance-electrician\";s:4:\"link\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/building-electric-maintenance-electrician.jpg\";s:3:\"alt\";s:41:\"building-electric-maintenance-electrician\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}i:725;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/shutterstock_1421309849-scaled-1200x900-1.jpg\";s:5:\"title\";s:58:\"Young,Woman,Adjusts,The,Temperature,Of,The,Air,Conditioner\";s:4:\"link\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/shutterstock_1421309849-scaled-1200x900-1.jpg\";s:3:\"alt\";s:58:\"Young,Woman,Adjusts,The,Temperature,Of,The,Air,Conditioner\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}i:724;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/LED-Lighting.jpg\";s:5:\"title\";s:12:\"LED-Lighting\";s:4:\"link\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/LED-Lighting.jpg\";s:3:\"alt\";s:12:\"LED-Lighting\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}i:723;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1.jpg\";s:5:\"title\";s:15:\"Home automation\";s:4:\"link\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1.jpg\";s:3:\"alt\";s:15:\"Home automation\";s:7:\"caption\";s:48:\"Fictive application controlling the modern house\";s:5:\"thumb\";s:0:\"\";}i:726;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:69:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/4-scaled.jpg\";s:5:\"title\";s:17:\"Lighting for home\";s:4:\"link\";s:69:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/4-scaled.jpg\";s:3:\"alt\";s:17:\"Lighting for home\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}}}}','off'),(82271,'_transient_timeout__eg_cache_751','1734590556','off'),(82272,'_transient__eg_cache_751','a:3:{s:2:\"id\";i:751;s:6:\"config\";a:86:{s:4:\"type\";s:7:\"default\";s:6:\"layout\";s:4:\"grid\";s:7:\"columns\";s:1:\"3\";s:13:\"gallery_theme\";s:4:\"base\";s:17:\"justified_margins\";i:20;s:18:\"justified_last_row\";s:9:\"nojustify\";s:12:\"lazy_loading\";i:1;s:18:\"lazy_loading_delay\";i:500;s:6:\"gutter\";i:20;s:6:\"margin\";i:20;s:10:\"image_size\";s:7:\"default\";s:11:\"square_size\";i:300;s:10:\"crop_width\";i:600;s:11:\"crop_height\";i:600;s:4:\"crop\";i:1;s:13:\"crop_position\";s:1:\"c\";s:17:\"additional_copy_0\";i:0;s:21:\"additional_copy_title\";i:0;s:23:\"additional_copy_caption\";i:0;s:29:\"additional_copy_title_caption\";i:0;s:24:\"additional_copy_0_mobile\";i:0;s:28:\"additional_copy_title_mobile\";i:0;s:30:\"additional_copy_caption_mobile\";i:0;s:36:\"additional_copy_title_caption_mobile\";i:0;s:28:\"gallery_column_title_caption\";s:1:\"0\";s:35:\"gallery_column_title_caption_mobile\";s:1:\"0\";s:27:\"additional_copy_automatic_0\";i:0;s:31:\"additional_copy_automatic_title\";i:0;s:33:\"additional_copy_automatic_caption\";i:0;s:39:\"additional_copy_automatic_title_caption\";i:0;s:34:\"additional_copy_automatic_0_mobile\";i:0;s:38:\"additional_copy_automatic_title_mobile\";i:0;s:40:\"additional_copy_automatic_caption_mobile\";i:0;s:46:\"additional_copy_automatic_title_caption_mobile\";i:0;s:31:\"gallery_automatic_title_caption\";s:1:\"0\";s:38:\"gallery_automatic_title_caption_mobile\";s:1:\"0\";s:20:\"justified_row_height\";i:150;s:20:\"description_position\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:6:\"random\";s:1:\"0\";s:10:\"sort_order\";s:1:\"0\";s:17:\"sorting_direction\";s:3:\"ASC\";s:18:\"image_sizes_random\";a:0:{}s:7:\"isotope\";b:0;s:16:\"lightbox_enabled\";i:1;s:20:\"gallery_link_enabled\";i:1;s:14:\"lightbox_theme\";s:9:\"base_dark\";s:19:\"lightbox_image_size\";s:7:\"default\";s:13:\"title_display\";s:5:\"float\";s:22:\"lightbox_title_caption\";s:1:\"0\";s:6:\"arrows\";i:1;s:15:\"arrows_position\";s:6:\"inside\";s:7:\"toolbar\";i:0;s:13:\"toolbar_title\";i:0;s:16:\"toolbar_position\";s:3:\"top\";s:4:\"loop\";i:0;s:26:\"lightbox_open_close_effect\";s:4:\"fade\";s:6:\"effect\";s:4:\"fade\";s:9:\"supersize\";i:0;s:17:\"thumbnails_toggle\";i:0;s:15:\"thumbnails_hide\";i:0;s:13:\"image_counter\";i:0;s:10:\"thumbnails\";i:0;s:16:\"thumbnails_width\";i:75;s:17:\"thumbnails_height\";i:50;s:19:\"thumbnails_position\";s:6:\"bottom\";s:22:\"thumbnails_custom_size\";i:0;s:6:\"mobile\";i:1;s:12:\"mobile_width\";i:320;s:13:\"mobile_height\";i:240;s:15:\"mobile_lightbox\";i:1;s:27:\"mobile_gallery_link_enabled\";i:0;s:13:\"mobile_arrows\";i:1;s:14:\"mobile_toolbar\";i:1;s:17:\"mobile_thumbnails\";i:0;s:22:\"mobile_touchwipe_close\";i:0;s:23:\"mobile_thumbnails_width\";i:75;s:24:\"mobile_thumbnails_height\";i:50;s:27:\"mobile_justified_row_height\";i:80;s:8:\"keyboard\";b:1;s:19:\"standalone_template\";s:0:\"\";s:7:\"classes\";a:1:{i:0;s:0:\"\";}s:3:\"rtl\";i:0;s:4:\"slug\";s:3:\"751\";s:5:\"title\";s:0:\"\";s:21:\"lightbox_html_caption\";i:0;}s:7:\"gallery\";a:5:{i:722;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/building-electric-maintenance-electrician.jpg\";s:5:\"title\";s:41:\"building-electric-maintenance-electrician\";s:4:\"link\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/building-electric-maintenance-electrician.jpg\";s:3:\"alt\";s:41:\"building-electric-maintenance-electrician\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}i:725;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/shutterstock_1421309849-scaled-1200x900-1.jpg\";s:5:\"title\";s:58:\"Young,Woman,Adjusts,The,Temperature,Of,The,Air,Conditioner\";s:4:\"link\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/shutterstock_1421309849-scaled-1200x900-1.jpg\";s:3:\"alt\";s:58:\"Young,Woman,Adjusts,The,Temperature,Of,The,Air,Conditioner\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}i:724;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/LED-Lighting.jpg\";s:5:\"title\";s:12:\"LED-Lighting\";s:4:\"link\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/LED-Lighting.jpg\";s:3:\"alt\";s:12:\"LED-Lighting\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}i:723;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1.jpg\";s:5:\"title\";s:15:\"Home automation\";s:4:\"link\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1.jpg\";s:3:\"alt\";s:15:\"Home automation\";s:7:\"caption\";s:48:\"Fictive application controlling the modern house\";s:5:\"thumb\";s:0:\"\";}i:726;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:69:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/4-scaled.jpg\";s:5:\"title\";s:17:\"Lighting for home\";s:4:\"link\";s:69:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/4-scaled.jpg\";s:3:\"alt\";s:17:\"Lighting for home\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}}}','off'),(82299,'_transient_timeout_GFCache_cea23237d5a6401d383588a92ef06783','1734606465','off'),(82300,'_transient_GFCache_cea23237d5a6401d383588a92ef06783','a:69:{s:12:\"gravityforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.9.1\";s:14:\"version_latest\";s:7:\"2.9.1.1\";s:3:\"url\";s:171:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2F%2BoTP4WL0KCG4%2FJHgTv9nxCgIDI%3D\";s:10:\"url_latest\";s:171:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=pzpipCY6ZV%2B%2FO6kWuVLxbJOKrIk%3D\";}s:21:\"gravityforms2checkout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=gclYDZI7bEuygh0yRv%2FAX7xN68M%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=gclYDZI7bEuygh0yRv%2FAX7xN68M%3D\";}s:26:\"gravityformsactivecampaign\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=8xp5wo2SrpqeUgpxwrZe6ZHhlCs%3D\";s:10:\"url_latest\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=8xp5wo2SrpqeUgpxwrZe6ZHhlCs%3D\";}s:32:\"gravityformsadvancedpostcreation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:208:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PnW%2B%2BtrwuuoQ9krdMDlQwfFvm6o%3D\";s:10:\"url_latest\";s:208:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PnW%2B%2BtrwuuoQ9krdMDlQwfFvm6o%3D\";}s:20:\"gravityformsagilecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=x38%2FJT4NpzCMNYevng%2BmLYGq0QU%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=x38%2FJT4NpzCMNYevng%2BmLYGq0QU%3D\";}s:19:\"gravityformsakismet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:5:\"1.0.1\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=E%2B4te2OnjR%2BNqJPcArwlqG2rSM0%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=hHuRrDFg68y1y8QAufGgoXh6D%2B4%3D\";}s:24:\"gravityformsauthorizenet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";s:3:\"url\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Ce5rrhTyU77M%2F20wppf0SjzLVhU%3D\";s:10:\"url_latest\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Ce5rrhTyU77M%2F20wppf0SjzLVhU%3D\";}s:18:\"gravityformsaweber\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.0.0\";s:14:\"version_latest\";s:5:\"4.0.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UuObmGe7dkTQwvI%2BaApH9irZDFY%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UuObmGe7dkTQwvI%2BaApH9irZDFY%3D\";}s:21:\"gravityformsbatchbook\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=kRMiZzJJEFemLqXFyErQhlfxLJw%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=kRMiZzJJEFemLqXFyErQhlfxLJw%3D\";}s:18:\"gravityformsbreeze\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=FmKXQQi93z2LUxrt%2FdakjeX3Wr4%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=FmKXQQi93z2LUxrt%2FdakjeX3Wr4%3D\";}s:27:\"gravityformscampaignmonitor\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.0.0\";s:14:\"version_latest\";s:5:\"4.0.0\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=5GOWGz%2BTmTmLZBfe5cgDW0vnDOU%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=5GOWGz%2BTmTmLZBfe5cgDW0vnDOU%3D\";}s:20:\"gravityformscampfire\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=61MzkZi9Qn5tbC06Gu6V7gJPC4w%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.2.2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Zg42dPaHM0t5QvxtL5d6y7MEmEI%3D\";}s:22:\"gravityformscapsulecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=sAXd8mz0L3MUgOtbA%2FZxsjaD1DE%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=sAXd8mz0L3MUgOtbA%2FZxsjaD1DE%3D\";}s:26:\"gravityformschainedselects\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=DTohxTu2wsvssPgZoAyC1q0otms%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=DTohxTu2wsvssPgZoAyC1q0otms%3D\";}s:23:\"gravityformscleverreach\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=B2OVdrZhVmKn0H9i40LDQ9Y%2Fy74%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=B2OVdrZhVmKn0H9i40LDQ9Y%2Fy74%3D\";}s:15:\"gravityformscli\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/cli/gravityformscli_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=40Q7KuISMn%2BOCscndAukDSrK7Yw%3D\";}s:27:\"gravityformsconstantcontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=bFkpAN%2FDCxL4Lpsm5IqzCpxoL6g%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=bFkpAN%2FDCxL4Lpsm5IqzCpxoL6g%3D\";}s:31:\"gravityformsconversationalforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.1\";s:3:\"url\";s:212:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=hI8mQ%2B%2FG8e%2BCKeHb9n%2FjOjEI%2Btg%3D\";s:10:\"url_latest\";s:202:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=hRyalETz6bNCvhgRTElAZrS6TZw%3D\";}s:22:\"gravityformsconvertkit\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/convertkit/gravityformsconvertkit_1.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=LL8JzdusLmv6usZ%2BibNd8k8Lt3U%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/convertkit/gravityformsconvertkit_1.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=LL8JzdusLmv6usZ%2BibNd8k8Lt3U%3D\";}s:19:\"gravityformscoupons\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.4.0\";s:14:\"version_latest\";s:5:\"3.4.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=pK%2B0XEr1%2FoTEokNgoF%2FpP2STX1Y%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=pK%2B0XEr1%2FoTEokNgoF%2FpP2STX1Y%3D\";}s:17:\"gravityformsdebug\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/debug/gravityformsdebug_1.0.beta12.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=FQ1vfXWZAtF%2BGuCL%2FAG8%2FtRrEFw%3D\";}s:19:\"gravityformsdropbox\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.2.0\";s:14:\"version_latest\";s:5:\"3.2.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=ddQVuee27no7Bv0y46AXkaXf3Tw%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=ddQVuee27no7Bv0y46AXkaXf3Tw%3D\";}s:24:\"gravityformsemailoctopus\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.3.0\";s:14:\"version_latest\";s:5:\"1.3.0\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Nbx978V%2BXh9h1ZlxUIhHltCENw0%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Nbx978V%2BXh9h1ZlxUIhHltCENw0%3D\";}s:16:\"gravityformsemma\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Lu0tq6DR6pr7qP5o2Qpbfl7Tpf4%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Lu0tq6DR6pr7qP5o2Qpbfl7Tpf4%3D\";}s:22:\"gravityformsfreshbooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=tfNOLR%2BQvjMHgEg3Nje38GBfpvM%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=tfNOLR%2BQvjMHgEg3Nje38GBfpvM%3D\";}s:23:\"gravityformsgeolocation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Ee6w6xRAMS398NlGJwyVrg79JM8%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Ee6w6xRAMS398NlGJwyVrg79JM8%3D\";}s:23:\"gravityformsgetresponse\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.8.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=eIL2%2BDO%2BbJbAdh6wTj1BlQLdVbQ%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.8.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=eIL2%2BDO%2BbJbAdh6wTj1BlQLdVbQ%3D\";}s:27:\"gravityformsgoogleanalytics\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=p4OnFXhj%2F11yzFxuhG8ShftrNTU%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=p4OnFXhj%2F11yzFxuhG8ShftrNTU%3D\";}s:21:\"gravityformsgutenberg\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";s:3:\"url\";s:187:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=LuM6DXOpG37M0tSKQ6oKlMt9RsI%3D\";s:10:\"url_latest\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=O5unfX%2FXiXMyu3pN6ci96rEMZcA%3D\";}s:21:\"gravityformshelpscout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2BZ6Bb7CesM65LC%2BYkOI%2BerrY3cs%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2BZ6Bb7CesM65LC%2BYkOI%2BerrY3cs%3D\";}s:20:\"gravityformshighrise\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=MVOzYBNeLMDZdzxfCyL73J54I0M%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=MVOzYBNeLMDZdzxfCyL73J54I0M%3D\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=n3VfYOLiNfK8tHo5f33jgGFPiH4%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=n3VfYOLiNfK8tHo5f33jgGFPiH4%3D\";}s:20:\"gravityformsicontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=sCe9fwmjrqLUH%2FgpKB8mlov%2FwWE%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=sCe9fwmjrqLUH%2FgpKB8mlov%2FwWE%3D\";}s:19:\"gravityformslogging\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=N3P1ZJRKMaBt40p6jDAQDmbZjcs%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=RTUhltKr5EsvB4i7zeWi1RiwzA8%3D\";}s:19:\"gravityformsmadmimi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=WUu%2Far0AlXKhS9hGZmJhFvBgl%2Fw%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=WUu%2Far0AlXKhS9hGZmJhFvBgl%2Fw%3D\";}s:21:\"gravityformsmailchimp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.6.0\";s:14:\"version_latest\";s:5:\"5.6.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=W4ZfCbfTXqAPed%2BL5vrAQMcpkg8%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=W4ZfCbfTXqAPed%2BL5vrAQMcpkg8%3D\";}s:22:\"gravityformsmailerlite\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/mailerlite/gravityformsmailerlite_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=kereF6euYE%2BQzLEvwG4SAiu937A%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/mailerlite/gravityformsmailerlite_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=kereF6euYE%2BQzLEvwG4SAiu937A%3D\";}s:19:\"gravityformsmailgun\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=iHxm%2BSzo7W0m5O5Gb5D1YhMT%2BPc%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=iHxm%2BSzo7W0m5O5Gb5D1YhMT%2BPc%3D\";}s:22:\"gravityformsmoderation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.2.0\";s:14:\"version_latest\";s:5:\"1.2.1\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=DG6rGJPx74gly6tLaR2U7Zrze%2B0%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=5tqxPr6Sh3ygw%2FHvPetZYs8%2BMk4%3D\";}s:18:\"gravityformsmollie\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=et3v2iZ40x85Bkf9D5rMSHvYBLs%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=et3v2iZ40x85Bkf9D5rMSHvYBLs%3D\";}s:26:\"gravityformspartialentries\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PyJxCF2DQ6bcqobqn51VRvk7x1Y%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PyJxCF2DQ6bcqobqn51VRvk7x1Y%3D\";}s:18:\"gravityformspaypal\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=uX9Zv1rA9pn1Rm98z0cek82fbMc%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=uX9Zv1rA9pn1Rm98z0cek82fbMc%3D\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:0:\"\";}s:29:\"gravityformspaypalpaymentspro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";s:3:\"url\";s:200:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=3gu9jo1afG0VuEJFcKqH%2FE%2FUCCo%3D\";s:10:\"url_latest\";s:200:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=3gu9jo1afG0VuEJFcKqH%2FE%2FUCCo%3D\";}s:21:\"gravityformspaypalpro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=cq6I4N9y1QRVpxEry9pTCt4U8qs%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.4.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Sup7SNuyXNRpc34BIEixBrT5be8%3D\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=bs2SmwDPXHrgrByqp%2BRUziSgY5I%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=bs2SmwDPXHrgrByqp%2BRUziSgY5I%3D\";}s:17:\"gravityformspolls\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.3.0\";s:14:\"version_latest\";s:5:\"4.3.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Z2fMACUGMS7xoCfbWl%2BwWx0HYHg%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Z2fMACUGMS7xoCfbWl%2BwWx0HYHg%3D\";}s:20:\"gravityformspostmark\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PJ6o0GUeG5ZCka0E88J0OgwF6vc%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=PJ6o0GUeG5ZCka0E88J0OgwF6vc%3D\";}s:16:\"gravityformsppcp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.7.0\";s:14:\"version_latest\";s:5:\"3.7.2\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_3.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=h%2FM01eh2Yys7LEZ3YE72hd70cak%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_3.7.2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=EMma9xPRYzLQs9zqVKW%2BYKEhfeY%3D\";}s:16:\"gravityformsquiz\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.2.0\";s:14:\"version_latest\";s:5:\"4.2.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=dUNz1GlzGveu4gkeFho1VVo%2FHxE%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=elPH4D3KZU6kl2zrT%2FQyAfwSgOk%3D\";}s:21:\"gravityformsrecaptcha\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=wPofE5Lb6Afz%2B%2Bhf06DIXwksHs8%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=wPofE5Lb6Afz%2B%2Bhf06DIXwksHs8%3D\";}s:19:\"gravityformsrestapi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";s:3:\"url\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Vf9WGTiGp%2BMQSqSrTCAQ8Ya10Tw%3D\";s:10:\"url_latest\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=Vf9WGTiGp%2BMQSqSrTCAQ8Ya10Tw%3D\";}s:22:\"gravityformssalesforce\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/salesforce/gravityformssalesforce_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UuRKhGAxdmksEIYhb2ESCc3TEAo%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/salesforce/gravityformssalesforce_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UuRKhGAxdmksEIYhb2ESCc3TEAo%3D\";}s:20:\"gravityformssendgrid\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=fSJH4nb2hZ9GDx5%2FMwKETLWmRoE%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=fSJH4nb2hZ9GDx5%2FMwKETLWmRoE%3D\";}s:21:\"gravityformssignature\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.6.0\";s:14:\"version_latest\";s:5:\"4.6.1\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=UMw1TJ9D0ZUXoIPD14PYl1QL8Io%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.6.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=r2hpCBmWnSXuPF6krapx3Dk4CQc%3D\";}s:17:\"gravityformsslack\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=t3BioF%2Fxil3Iw4LMtAlsgeYI%2FVY%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=t3BioF%2Fxil3Iw4LMtAlsgeYI%2FVY%3D\";}s:18:\"gravityformssquare\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=6wua2feOMJwOFwVJVeqXZVs6ERQ%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=6wua2feOMJwOFwVJVeqXZVs6ERQ%3D\";}s:18:\"gravityformsstripe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.9.0\";s:14:\"version_latest\";s:5:\"5.9.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_5.9.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2F%2FAGh0NHy9bCTuPj8vfCPQU7Hfs%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_5.9.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2F%2FAGh0NHy9bCTuPj8vfCPQU7Hfs%3D\";}s:18:\"gravityformssurvey\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.1.0\";s:14:\"version_latest\";s:5:\"4.1.1\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_4.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=yCQYkJaHu%2FSsPnJoy8BhhqnP9XY%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_4.1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=gIXZ3SxaU1cQdyBTycnIVLau3JI%3D\";}s:18:\"gravityformstrello\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=1CUhtdzwkptQzDBIR5PSb2NBJyM%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=1CUhtdzwkptQzDBIR5PSb2NBJyM%3D\";}s:21:\"gravityformsturnstile\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.3.0\";s:14:\"version_latest\";s:5:\"1.3.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/turnstile/gravityformsturnstile_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2FvNzbvGFlXOZP08ip9TPchfBNAk%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/turnstile/gravityformsturnstile_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=%2FvNzbvGFlXOZP08ip9TPchfBNAk%3D\";}s:18:\"gravityformstwilio\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.0.0\";s:14:\"version_latest\";s:5:\"3.0.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_3.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=d1dumnsLIGdKtSUk%2BQLzS%2B2yN5A%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_3.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=d1dumnsLIGdKtSUk%2BQLzS%2B2yN5A%3D\";}s:28:\"gravityformsuserregistration\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.3.0\";s:14:\"version_latest\";s:5:\"5.3.2\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=2mVvKSbxGN4k9eZ0lUWxlcEyieY%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.3.2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=DLXshoCgD9MS5owKeltVb7FYRqs%3D\";}s:20:\"gravityformswebhooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=q%2F9Bz09uy0eQ3fe0eSK77YANOVY%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=q%2F9Bz09uy0eQ3fe0eSK77YANOVY%3D\";}s:18:\"gravityformszapier\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.3.0\";s:14:\"version_latest\";s:5:\"4.3.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=i2nk2GWKu11IKAxBqnH4HkEqEU0%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=i2nk2GWKu11IKAxBqnH4HkEqEU0%3D\";}s:19:\"gravityformszohocrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=1hS8kANeGxEYrYe6oPZVmKG1ZQ0%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=1hS8kANeGxEYrYe6oPZVmKG1ZQ0%3D\";}s:11:\"gravitysmtp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:165:\"https://s3.amazonaws.com/gravitysmtp/releases/gravitysmtp_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=xZ2t4RqgtyGC6oBW%2Bs14kH2OmuU%3D\";s:10:\"url_latest\";s:165:\"https://s3.amazonaws.com/gravitysmtp/releases/gravitysmtp_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1734692866&Signature=xZ2t4RqgtyGC6oBW%2Bs14kH2OmuU%3D\";}}','off'),(82301,'_transient_timeout_GFCache_260e6f7cf6c53a27797a98ec34fb5d5c','1734606466','off'),(82302,'_transient_GFCache_260e6f7cf6c53a27797a98ec34fb5d5c','s:916:\"O:59:\"Gravity_Forms\\Gravity_Forms\\License\\GF_License_API_Response\":5:{s:4:\"data\";a:1:{i:0;a:19:{s:15:\"license_key_md5\";s:32:\"49c0c5fcaa9a830e20ea0aa5b8abeded\";s:12:\"date_created\";s:19:\"2013-10-29 22:58:34\";s:12:\"date_expires\";s:19:\"2025-12-27 17:00:00\";s:12:\"renewal_date\";s:19:\"2025-11-27 17:00:00\";s:9:\"is_active\";s:1:\"1\";s:24:\"is_subscription_canceled\";s:1:\"0\";s:12:\"product_code\";s:5:\"GFDEV\";s:12:\"product_name\";s:31:\"Gravity Forms Developer License\";s:18:\"is_near_expiration\";b:0;s:14:\"days_to_expire\";i:374;s:10:\"is_expired\";b:0;s:8:\"is_valid\";b:1;s:22:\"is_past_renewal_period\";b:0;s:9:\"is_legacy\";b:1;s:12:\"is_perpetual\";b:0;s:9:\"max_sites\";s:9:\"unlimited\";s:12:\"active_sites\";i:161;s:15:\"remaining_seats\";s:9:\"unlimited\";s:20:\"is_multisite_allowed\";b:1;}}s:6:\"errors\";a:0:{}s:6:\"status\";s:9:\"valid_key\";s:4:\"meta\";a:0:{}s:5:\"strat\";O:63:\"Gravity_Forms\\Gravity_Forms\\Transients\\GF_WP_Transient_Strategy\":0:{}}\";','off'),(82303,'_transient_timeout_acf_plugin_updates','1734692866','off'),(82304,'_transient_acf_plugin_updates','a:5:{s:7:\"plugins\";a:0:{}s:9:\"no_update\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:12:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:6:\"6.3.11\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.7.1\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://connect.advancedcustomfields.com/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://connect.advancedcustomfields.com/assets/banner-772x250.jpg\";s:4:\"high\";s:67:\"https://connect.advancedcustomfields.com/assets/banner-1544x500.jpg\";}s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"release_date\";s:8:\"20241112\";s:6:\"reason\";s:10:\"up_to_date\";}}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:6:\"6.3.11\";}}','off'),(82314,'_site_transient_timeout_available_translations','1734535781','off'),(82315,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.9/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-01 09:05:28\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.5/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.26/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-23 13:50:30\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-11 11:12:13\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-22 12:21:36\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-07-23 09:49:04\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-22 10:31:12\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-16 06:04:26\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-27 07:13:28\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-05 18:08:14\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.7.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-05 03:49:05\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-05 03:48:30\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.7.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-05 18:11:40\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-22 01:55:00\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-14 20:17:10\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-12 00:03:39\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-08 19:43:34\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-15 22:47:35\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-04 17:25:09\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-19 14:30:41\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-10-16 21:04:12\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-09 22:28:42\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-05 20:01:59\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-13 18:11:04\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:6:\"5.8.10\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.8.10/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.16/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.21\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.21/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-21 04:23:19\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-20 15:25:26\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-21 17:51:13\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-06 09:50:37\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-12 10:52:31\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-06-20 17:15:28\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-06 09:18:04\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-22 05:44:18\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-28 10:44:04\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-12 22:29:22\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.6/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-05 13:21:22\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-12 11:31:44\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.33\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.33/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-02-25 08:05:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-11 08:43:38\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-01 12:06:55\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-17 07:41:08\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-14 12:17:50\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-24 14:00:08\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-08 06:38:31\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-07-18 02:49:24\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.21\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.21/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-16 17:32:57\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-21 02:38:23\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-16 23:30:19\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7.1/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-23 15:58:26\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7.1/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-13 13:11:03\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-02 13:58:02\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.9/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-10-05 15:57:37\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-20 17:22:06\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-02 06:24:36\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.15\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.15/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.38\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.38/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-03 18:10:34\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-08-30 11:32:23\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-01 09:55:23\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.7.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-18 09:10:43\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-03 12:23:03\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-09 16:56:23\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.34\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.34/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-21 13:50:09\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-22 09:42:36\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.7.1/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-25 10:54:59\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-04 18:34:07\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-20 15:32:31\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.16/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-13 04:29:01\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-21 09:44:08\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.6.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-08-30 07:14:35\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-26 10:25:18\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-09-20 22:15:56\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-21 05:08:10\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-12 13:48:13\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.38\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.38/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:6:\"5.8.10\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.10/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.25/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-12-06 13:44:46\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-18 17:37:18\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-03-06 18:52:07\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.16/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-20 13:04:32\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.1/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-21 08:38:08\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.7.1\";s:7:\"updated\";s:19:\"2024-11-24 10:26:45\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','off'),(82316,'_transient_timeout_wflginfl_00000000000000000000ffff3b676c93','1734539386','off'),(82317,'_transient_wflginfl_00000000000000000000ffff3b676c93','1','off'),(82337,'_transient_timeout_acf_pro_validating_license','1734537164','off'),(82338,'_transient_acf_pro_validating_license','1','off'),(82339,'_site_transient_timeout_wpmdb_upgrade_data','1734579467','off'),(82340,'_site_transient_wpmdb_upgrade_data','a:5:{s:17:\"wp-migrate-db-pro\";a:4:{s:7:\"version\";s:5:\"2.7.0\";s:6:\"tested\";s:3:\"6.7\";s:8:\"icon_url\";s:60:\"https://deliciousbrains.com/assets/images/icons/mdb/icon.svg\";s:12:\"requires_php\";s:3:\"5.6\";}s:29:\"wp-migrate-db-pro-media-files\";a:4:{s:7:\"version\";s:5:\"2.1.0\";s:6:\"tested\";s:3:\"5.8\";s:8:\"icon_url\";s:60:\"https://deliciousbrains.com/assets/images/icons/mdb/icon.svg\";s:12:\"requires_php\";s:3:\"5.6\";}s:21:\"wp-migrate-db-pro-cli\";a:4:{s:7:\"version\";s:5:\"1.6.0\";s:6:\"tested\";s:3:\"5.8\";s:8:\"icon_url\";s:60:\"https://deliciousbrains.com/assets/images/icons/mdb/icon.svg\";s:12:\"requires_php\";s:3:\"5.6\";}s:33:\"wp-migrate-db-pro-multisite-tools\";a:4:{s:7:\"version\";s:5:\"1.4.1\";s:6:\"tested\";s:3:\"5.8\";s:8:\"icon_url\";s:60:\"https://deliciousbrains.com/assets/images/icons/mdb/icon.svg\";s:12:\"requires_php\";s:3:\"5.6\";}s:36:\"wp-migrate-db-pro-theme-plugin-files\";a:4:{s:7:\"version\";s:5:\"1.2.0\";s:6:\"tested\";s:3:\"5.8\";s:8:\"icon_url\";s:60:\"https://deliciousbrains.com/assets/images/icons/mdb/icon.svg\";s:12:\"requires_php\";s:3:\"5.6\";}}','off'),(82353,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1734562560;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{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:48:\"wp-live-chat-software-for-wordpress/livechat.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/wp-live-chat-software-for-wordpress\";s:4:\"slug\";s:35:\"wp-live-chat-software-for-wordpress\";s:6:\"plugin\";s:48:\"wp-live-chat-software-for-wordpress/livechat.php\";s:11:\"new_version\";s:6:\"4.5.23\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/wp-live-chat-software-for-wordpress/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/wp-live-chat-software-for-wordpress.4.5.23.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/wp-live-chat-software-for-wordpress/assets/icon-256x256.png?rev=3023632\";s:2:\"1x\";s:88:\"https://ps.w.org/wp-live-chat-software-for-wordpress/assets/icon-128x128.png?rev=3023632\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/wp-live-chat-software-for-wordpress/assets/banner-1544x500.png?rev=2659126\";s:2:\"1x\";s:90:\"https://ps.w.org/wp-live-chat-software-for-wordpress/assets/banner-772x250.png?rev=2659126\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:61:\"wp-reviews-plugin-for-google/wp-reviews-plugin-for-google.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:42:\"w.org/plugins/wp-reviews-plugin-for-google\";s:4:\"slug\";s:28:\"wp-reviews-plugin-for-google\";s:6:\"plugin\";s:61:\"wp-reviews-plugin-for-google/wp-reviews-plugin-for-google.php\";s:11:\"new_version\";s:6:\"12.4.7\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/wp-reviews-plugin-for-google/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.4.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/wp-reviews-plugin-for-google/assets/icon-256x256.png?rev=2721569\";s:2:\"1x\";s:81:\"https://ps.w.org/wp-reviews-plugin-for-google/assets/icon-128x128.png?rev=2721569\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/wp-reviews-plugin-for-google/assets/banner-1544x500.png?rev=3029963\";s:2:\"1x\";s:83:\"https://ps.w.org/wp-reviews-plugin-for-google/assets/banner-772x250.png?rev=3029963\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:5:\"8.0.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wordfence.8.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:27:\"wp-optimize/wp-optimize.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-optimize\";s:4:\"slug\";s:11:\"wp-optimize\";s:6:\"plugin\";s:27:\"wp-optimize/wp-optimize.php\";s:11:\"new_version\";s:5:\"3.8.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-optimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-optimize.3.8.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-256x256.png?rev=1552899\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-128x128.png?rev=1552899\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-optimize/assets/banner-1544x500.png?rev=2125385\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-optimize/assets/banner-772x250.png?rev=2125385\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"24.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.24.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3112542\";s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3112542\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.5\";}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":12:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:6:\"6.3.11\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.7.1\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://connect.advancedcustomfields.com/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://connect.advancedcustomfields.com/assets/banner-772x250.jpg\";s:4:\"high\";s:67:\"https://connect.advancedcustomfields.com/assets/banner-1544x500.jpg\";}s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"release_date\";s:8:\"20241112\";s:6:\"reason\";s:10:\"up_to_date\";}}}','off'),(82385,'_site_transient_timeout_wp_theme_files_patterns-ce681f5c1ea7c418ea53abcd47c64a2e','1734564159','off'),(82386,'_site_transient_wp_theme_files_patterns-ce681f5c1ea7c418ea53abcd47c64a2e','a:2:{s:7:\"version\";s:5:\"1.0.0\";s:8:\"patterns\";a:0:{}}','off'),(82388,'_site_transient_timeout_theme_roots','1734564361','off'),(82389,'_site_transient_theme_roots','a:4:{s:4:\"mint\";s:7:\"/themes\";s:28:\"pinnclonesmalltest/resources\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','off'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3825 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,5,'_menu_item_type','post_type'),(2,5,'_menu_item_menu_item_parent','0'),(3,5,'_menu_item_object_id','1'),(4,5,'_menu_item_object','page'),(5,5,'_menu_item_target',''),(6,5,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7,5,'_menu_item_xfn',''),(8,5,'_menu_item_url',''),(82,14,'_edit_lock','1685589075:2'),(97,3,'_edit_lock','1678160682:2'),(100,14,'_wp_old_slug','post-0'),(106,14,'_wp_old_slug','post-1-2'),(107,4,'_edit_lock','1709679263:2'),(108,4,'_edit_last','2'),(114,1,'_edit_lock','1733876989:2'),(134,3,'_wp_page_template',''),(143,14,'_wp_old_slug','post-1'),(156,2,'_edit_last','2'),(157,2,'_edit_lock','1723763233:2'),(158,485,'_edit_lock','1679960090:2'),(175,489,'_edit_lock','1724027996:2'),(176,490,'_edit_lock','1725224645:2'),(177,491,'_edit_lock','1724027761:2'),(178,492,'_edit_lock','1724027562:2'),(244,507,'_edit_lock','1681948602:2'),(261,5,'_wp_old_date','2020-09-08'),(266,513,'_wp_attached_file','2023/02/juiceelectrical-logo.png'),(267,513,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:1175;s:4:\"file\";s:32:\"2023/02/juiceelectrical-logo.png\";s:8:\"filesize\";i:73468;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"juiceelectrical-logo-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12069;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"juiceelectrical-logo-1024x472.png\";s:5:\"width\";i:1024;s:6:\"height\";i:472;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"juiceelectrical-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7938;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"juiceelectrical-logo-768x354.png\";s:5:\"width\";i:768;s:6:\"height\";i:354;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71539;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"juiceelectrical-logo-1536x708.png\";s:5:\"width\";i:1536;s:6:\"height\";i:708;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227743;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"juiceelectrical-logo-2048x944.png\";s:5:\"width\";i:2048;s:6:\"height\";i:944;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:513340;}}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:{}}}'),(268,514,'_wp_attached_file','2023/02/cropped-juiceelectrical-logo.png'),(269,514,'_wp_attachment_context','site-icon'),(270,514,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:40:\"2023/02/cropped-juiceelectrical-logo.png\";s:8:\"filesize\";i:51942;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"cropped-juiceelectrical-logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21194;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"cropped-juiceelectrical-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7215;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:40:\"cropped-juiceelectrical-logo-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16599;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:40:\"cropped-juiceelectrical-logo-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9931;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:40:\"cropped-juiceelectrical-logo-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9118;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:38:\"cropped-juiceelectrical-logo-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1084;}}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:{}}}'),(299,672,'_edit_last','2'),(300,672,'_edit_lock','1675982981:2'),(301,2,'banner_title','Get the juice About Us'),(302,2,'_banner_title','field_63e578d5b6dca'),(303,2,'page_banner_button',''),(304,2,'_page_banner_button','field_63e578e8b6dcb'),(309,485,'_edit_last','2'),(310,485,'banner_title','We\'ve Got This!'),(311,485,'_banner_title','field_63e578d5b6dca'),(312,485,'page_banner_button',''),(313,485,'_page_banner_button','field_63e578e8b6dcb'),(322,4,'banner_title','Blogs and News'),(323,4,'_banner_title','field_63e578d5b6dca'),(324,4,'page_banner_button',''),(325,4,'_page_banner_button','field_63e578e8b6dcb'),(330,679,'_edit_lock','1712191143:2'),(347,679,'_edit_last','2'),(348,679,'banner_title',''),(349,679,'_banner_title','field_63e578d5b6dca'),(350,679,'page_banner_button',''),(351,679,'_page_banner_button','field_63e578e8b6dcb'),(356,683,'_edit_lock','1724028024:2'),(374,683,'_edit_last','2'),(375,683,'banner_title','EV & PHEV Chargers'),(376,683,'_banner_title','field_63e578d5b6dca'),(377,683,'page_banner_button',''),(378,683,'_page_banner_button','field_63e578e8b6dcb'),(408,691,'_edit_lock','1687221245:2'),(425,691,'_edit_last','2'),(426,691,'banner_title',''),(427,691,'_banner_title','field_63e578d5b6dca'),(428,691,'page_banner_button',''),(429,691,'_page_banner_button','field_63e578e8b6dcb'),(434,695,'_edit_lock','1724027951:2'),(451,695,'_edit_last','2'),(452,695,'banner_title',''),(453,695,'_banner_title','field_63e578d5b6dca'),(454,695,'page_banner_button',''),(455,695,'_page_banner_button','field_63e578e8b6dcb'),(460,699,'_edit_lock','1687221248:2'),(477,699,'_edit_last','2'),(478,699,'banner_title',''),(479,699,'_banner_title','field_63e578d5b6dca'),(480,699,'page_banner_button',''),(481,699,'_page_banner_button','field_63e578e8b6dcb'),(493,5,'_wp_old_date','2023-01-30'),(531,722,'_wp_attached_file','2023/02/building-electric-maintenance-electrician.jpg'),(532,722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1068;s:6:\"height\";i:712;s:4:\"file\";s:53:\"2023/02/building-electric-maintenance-electrician.jpg\";s:8:\"filesize\";i:192124;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"building-electric-maintenance-electrician-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24706;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"building-electric-maintenance-electrician-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"building-electric-maintenance-electrician-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11821;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"building-electric-maintenance-electrician-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107235;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:10:{i:0;s:7:\"75x50_c\";i:1;s:9:\"150x100_c\";i:2;s:9:\"320x240_c\";i:3;s:9:\"640x480_c\";i:4;s:10:\"1280x960_c\";i:5;s:11:\"2048x2048_c\";i:6;s:9:\"600x600_c\";i:7;s:9:\"300x300_c\";i:8;s:10:\"1536x600_c\";i:9;s:11:\"1200x1200_c\";}}}'),(533,723,'_wp_attached_file','2023/02/smart-home-1.jpg'),(534,723,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2173;s:6:\"height\";i:1380;s:4:\"file\";s:24:\"2023/02/smart-home-1.jpg\";s:8:\"filesize\";i:144628;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"smart-home-1-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24484;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"smart-home-1-1024x650.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67177;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"smart-home-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19904;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"smart-home-1-768x488.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:488;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49730;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"smart-home-1-1536x975.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:975;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107078;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:26:\"smart-home-1-2048x1301.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1301;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154084;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:48:\"Fictive application controlling the modern house\";s:17:\"created_timestamp\";s:10:\"1469638714\";s:9:\"copyright\";s:7:\"narvikk\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:15:\"Home automation\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:16:{i:0;s:13:\"Visual Screen\";i:1;s:12:\"Touch Screen\";i:2;s:14:\"Remote Control\";i:3;s:7:\"Control\";i:4;s:6:\"Modern\";i:5;s:10:\"Technology\";i:6;s:7:\"Indoors\";i:7;s:10:\"Human Hand\";i:8;s:16:\"Domestic Kitchen\";i:9;s:9:\"Apartment\";i:10;s:5:\"House\";i:11;s:13:\"Home Interior\";i:12;s:17:\"Computer Software\";i:13;s:20:\"Application Software\";i:14;s:15:\"Home Automation\";i:15;s:7:\"Kitchen\";}s:14:\"resized_images\";a:10:{i:0;s:7:\"75x50_c\";i:1;s:9:\"150x100_c\";i:2;s:9:\"320x240_c\";i:3;s:9:\"640x480_c\";i:4;s:11:\"2048x2048_c\";i:5;s:10:\"1280x960_c\";i:6;s:9:\"600x600_c\";i:7;s:9:\"300x300_c\";i:8;s:10:\"1536x600_c\";i:9;s:11:\"1200x1200_c\";}}}'),(535,724,'_wp_attached_file','2023/02/LED-Lighting.jpg'),(536,724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1965;s:6:\"height\";i:1526;s:4:\"file\";s:24:\"2023/02/LED-Lighting.jpg\";s:8:\"filesize\";i:327968;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"LED-Lighting-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13670;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"LED-Lighting-1024x795.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66389;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"LED-Lighting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6808;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"LED-Lighting-768x596.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:596;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45118;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"LED-Lighting-1536x1193.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1193;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117934;}}s:10:\"image_meta\";a:13:{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:7:\"DKsamco\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:10:{i:0;s:7:\"75x50_c\";i:1;s:9:\"150x100_c\";i:2;s:9:\"320x240_c\";i:3;s:9:\"640x480_c\";i:4;s:11:\"2048x2048_c\";i:5;s:10:\"1280x960_c\";i:6;s:9:\"600x600_c\";i:7;s:9:\"300x300_c\";i:8;s:10:\"1536x600_c\";i:9;s:11:\"1200x1200_c\";}}}'),(537,725,'_wp_attached_file','2023/02/shutterstock_1421309849-scaled-1200x900-1.jpg'),(538,725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2023/02/shutterstock_1421309849-scaled-1200x900-1.jpg\";s:8:\"filesize\";i:98940;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"shutterstock_1421309849-scaled-1200x900-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16145;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"shutterstock_1421309849-scaled-1200x900-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76453;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"shutterstock_1421309849-scaled-1200x900-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9994;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"shutterstock_1421309849-scaled-1200x900-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50552;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:73:\"Copyright (c) 2019 goffkein.pro/Shutterstock. No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"Young,Woman,Adjusts,The,Temperature,Of,The,Air,Conditioner,Using\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:403:\"vent,conditioner,remote,purifier,fan,split,white,air conditioner,blow,energy,heater,equipment,breeze,blowing,condition,plastic,warm,system,conditioning,person,cooling,fixed,compressor,heat,appliance,woman,air conditioning,ventilation,cold,air,hot,house,summer,interior,ventilator,electronic,temperature,power,cool,electric,consumption,control,electricity,climate,technology,comfort,room,home,cooler,wall\";}s:14:\"resized_images\";a:10:{i:0;s:7:\"75x50_c\";i:1;s:9:\"150x100_c\";i:2;s:9:\"320x240_c\";i:3;s:9:\"640x480_c\";i:4;s:11:\"2048x2048_c\";i:5;s:10:\"1280x960_c\";i:6;s:9:\"600x600_c\";i:7;s:9:\"300x300_c\";i:8;s:10:\"1536x600_c\";i:9;s:11:\"1200x1200_c\";}}}'),(539,726,'_wp_attached_file','2023/02/4-scaled.jpg'),(540,726,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1104;s:4:\"file\";s:20:\"2023/02/4-scaled.jpg\";s:8:\"filesize\";i:397507;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"4-300x129.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19190;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"4-1024x442.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14555;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"4-768x331.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59591;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:14:\"4-1536x662.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:662;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175574;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:14:\"4-2048x883.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:883;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280963;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:5:\"4.jpg\";}'),(625,722,'_eg_has_gallery','a:1:{i:0;i:751;}'),(626,726,'_eg_has_gallery','a:1:{i:0;i:751;}'),(627,725,'_eg_has_gallery','a:1:{i:0;i:751;}'),(628,724,'_eg_has_gallery','a:1:{i:0;i:751;}'),(629,723,'_eg_has_gallery','a:1:{i:0;i:751;}'),(632,751,'_eg_in_gallery','a:7:{i:0;i:722;i:1;i:726;i:2;i:725;i:3;i:724;i:4;i:723;i:5;i:643;i:6;i:570;}'),(633,751,'_eg_gallery_data','a:3:{s:2:\"id\";i:751;s:6:\"config\";a:86:{s:4:\"type\";s:7:\"default\";s:6:\"layout\";s:4:\"grid\";s:7:\"columns\";s:1:\"3\";s:13:\"gallery_theme\";s:4:\"base\";s:17:\"justified_margins\";i:20;s:18:\"justified_last_row\";s:9:\"nojustify\";s:12:\"lazy_loading\";i:1;s:18:\"lazy_loading_delay\";i:500;s:6:\"gutter\";i:20;s:6:\"margin\";i:20;s:10:\"image_size\";s:7:\"default\";s:11:\"square_size\";i:300;s:10:\"crop_width\";i:600;s:11:\"crop_height\";i:600;s:4:\"crop\";i:1;s:13:\"crop_position\";s:1:\"c\";s:17:\"additional_copy_0\";i:0;s:21:\"additional_copy_title\";i:0;s:23:\"additional_copy_caption\";i:0;s:29:\"additional_copy_title_caption\";i:0;s:24:\"additional_copy_0_mobile\";i:0;s:28:\"additional_copy_title_mobile\";i:0;s:30:\"additional_copy_caption_mobile\";i:0;s:36:\"additional_copy_title_caption_mobile\";i:0;s:28:\"gallery_column_title_caption\";s:1:\"0\";s:35:\"gallery_column_title_caption_mobile\";s:1:\"0\";s:27:\"additional_copy_automatic_0\";i:0;s:31:\"additional_copy_automatic_title\";i:0;s:33:\"additional_copy_automatic_caption\";i:0;s:39:\"additional_copy_automatic_title_caption\";i:0;s:34:\"additional_copy_automatic_0_mobile\";i:0;s:38:\"additional_copy_automatic_title_mobile\";i:0;s:40:\"additional_copy_automatic_caption_mobile\";i:0;s:46:\"additional_copy_automatic_title_caption_mobile\";i:0;s:31:\"gallery_automatic_title_caption\";s:1:\"0\";s:38:\"gallery_automatic_title_caption_mobile\";s:1:\"0\";s:20:\"justified_row_height\";i:150;s:20:\"description_position\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:6:\"random\";s:1:\"0\";s:10:\"sort_order\";s:1:\"0\";s:17:\"sorting_direction\";s:3:\"ASC\";s:18:\"image_sizes_random\";a:0:{}s:7:\"isotope\";b:0;s:16:\"lightbox_enabled\";i:1;s:20:\"gallery_link_enabled\";i:1;s:14:\"lightbox_theme\";s:9:\"base_dark\";s:19:\"lightbox_image_size\";s:7:\"default\";s:13:\"title_display\";s:5:\"float\";s:22:\"lightbox_title_caption\";s:1:\"0\";s:6:\"arrows\";i:1;s:15:\"arrows_position\";s:6:\"inside\";s:7:\"toolbar\";i:0;s:13:\"toolbar_title\";i:0;s:16:\"toolbar_position\";s:3:\"top\";s:4:\"loop\";i:0;s:26:\"lightbox_open_close_effect\";s:4:\"fade\";s:6:\"effect\";s:4:\"fade\";s:9:\"supersize\";i:0;s:17:\"thumbnails_toggle\";i:0;s:15:\"thumbnails_hide\";i:0;s:13:\"image_counter\";i:0;s:10:\"thumbnails\";i:0;s:16:\"thumbnails_width\";i:75;s:17:\"thumbnails_height\";i:50;s:19:\"thumbnails_position\";s:6:\"bottom\";s:22:\"thumbnails_custom_size\";i:0;s:6:\"mobile\";i:1;s:12:\"mobile_width\";i:320;s:13:\"mobile_height\";i:240;s:15:\"mobile_lightbox\";i:1;s:27:\"mobile_gallery_link_enabled\";i:0;s:13:\"mobile_arrows\";i:1;s:14:\"mobile_toolbar\";i:1;s:17:\"mobile_thumbnails\";i:0;s:22:\"mobile_touchwipe_close\";i:0;s:23:\"mobile_thumbnails_width\";i:75;s:24:\"mobile_thumbnails_height\";i:50;s:27:\"mobile_justified_row_height\";i:80;s:8:\"keyboard\";b:1;s:19:\"standalone_template\";s:0:\"\";s:7:\"classes\";a:1:{i:0;s:0:\"\";}s:3:\"rtl\";i:0;s:4:\"slug\";s:3:\"751\";s:5:\"title\";s:0:\"\";s:21:\"lightbox_html_caption\";i:0;}s:7:\"gallery\";a:5:{i:722;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/building-electric-maintenance-electrician.jpg\";s:5:\"title\";s:41:\"building-electric-maintenance-electrician\";s:4:\"link\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/building-electric-maintenance-electrician.jpg\";s:3:\"alt\";s:41:\"building-electric-maintenance-electrician\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}i:725;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/shutterstock_1421309849-scaled-1200x900-1.jpg\";s:5:\"title\";s:58:\"Young,Woman,Adjusts,The,Temperature,Of,The,Air,Conditioner\";s:4:\"link\";s:102:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/shutterstock_1421309849-scaled-1200x900-1.jpg\";s:3:\"alt\";s:58:\"Young,Woman,Adjusts,The,Temperature,Of,The,Air,Conditioner\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}i:724;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/LED-Lighting.jpg\";s:5:\"title\";s:12:\"LED-Lighting\";s:4:\"link\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/LED-Lighting.jpg\";s:3:\"alt\";s:12:\"LED-Lighting\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}i:723;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1.jpg\";s:5:\"title\";s:15:\"Home automation\";s:4:\"link\";s:73:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1.jpg\";s:3:\"alt\";s:15:\"Home automation\";s:7:\"caption\";s:48:\"Fictive application controlling the modern house\";s:5:\"thumb\";s:0:\"\";}i:726;a:7:{s:6:\"status\";s:6:\"active\";s:3:\"src\";s:69:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/4-scaled.jpg\";s:5:\"title\";s:17:\"Lighting for home\";s:4:\"link\";s:69:\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/4-scaled.jpg\";s:3:\"alt\";s:17:\"Lighting for home\";s:7:\"caption\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}}}'),(634,751,'_edit_last','2'),(635,751,'_eg_just_published','1'),(636,751,'_eg_version','1.9.7.1'),(637,751,'_edit_lock','1695160549:2'),(642,751,'_eg_in_posts','a:5:{i:679;i:679;i:683;i:683;i:691;i:691;i:695;i:695;i:699;i:699;}'),(663,3,'_edit_last','2'),(664,3,'banner_title',''),(665,3,'_banner_title','field_63e578d5b6dca'),(666,3,'page_banner_button',''),(667,3,'_page_banner_button','field_63e578e8b6dcb'),(672,507,'_edit_last','2'),(673,507,'banner_title','Experience is the difference!'),(674,507,'_banner_title','field_63e578d5b6dca'),(675,507,'page_banner_button',''),(676,507,'_page_banner_button','field_63e578e8b6dcb'),(685,489,'_edit_last','2'),(686,489,'banner_title',''),(687,489,'_banner_title','field_63e578d5b6dca'),(688,489,'page_banner_button',''),(689,489,'_page_banner_button','field_63e578e8b6dcb'),(694,492,'_edit_last','2'),(695,492,'banner_title',''),(696,492,'_banner_title','field_63e578d5b6dca'),(697,492,'page_banner_button',''),(698,492,'_page_banner_button','field_63e578e8b6dcb'),(703,491,'_edit_last','2'),(704,491,'banner_title',''),(705,491,'_banner_title','field_63e578d5b6dca'),(706,491,'page_banner_button',''),(707,491,'_page_banner_button','field_63e578e8b6dcb'),(712,490,'_edit_last','2'),(713,490,'banner_title',''),(714,490,'_banner_title','field_63e578d5b6dca'),(715,490,'page_banner_button',''),(716,490,'_page_banner_button','field_63e578e8b6dcb'),(721,514,'_oembed_56bcdb0e5470b6a9aeb4aa886303d00f','{{unknown}}'),(722,1,'_edit_last','2'),(723,1,'banner_title',''),(724,1,'_banner_title','field_63e578d5b6dca'),(725,1,'page_banner_button',''),(726,1,'_page_banner_button','field_63e578e8b6dcb'),(747,776,'_edit_lock','1727643612:2'),(764,776,'_edit_last','2'),(765,776,'banner_title',''),(766,776,'_banner_title','field_63e578d5b6dca'),(767,776,'page_banner_button',''),(768,776,'_page_banner_button','field_63e578e8b6dcb'),(773,5,'_wp_old_date','2023-02-10'),(825,791,'_edit_last','2'),(826,791,'_edit_lock','1676330576:2'),(827,485,'services_header',''),(828,485,'_services_header','field_63eac629b112c'),(829,485,'service_buttons_0_service_buttons_image',''),(830,485,'_service_buttons_0_service_buttons_image','field_63eac65eb112e'),(831,485,'service_buttons_0_service_buttons_link',''),(832,485,'_service_buttons_0_service_buttons_link','field_63eac67eb112f'),(833,485,'service_buttons_1_service_buttons_image',''),(834,485,'_service_buttons_1_service_buttons_image','field_63eac65eb112e'),(835,485,'service_buttons_1_service_buttons_link',''),(836,485,'_service_buttons_1_service_buttons_link','field_63eac67eb112f'),(837,485,'service_buttons_2_service_buttons_image',''),(838,485,'_service_buttons_2_service_buttons_image','field_63eac65eb112e'),(839,485,'service_buttons_2_service_buttons_link',''),(840,485,'_service_buttons_2_service_buttons_link','field_63eac67eb112f'),(853,485,'service_buttons','3'),(854,485,'_service_buttons','field_63eac645b112d'),(1131,870,'_wp_attached_file','2023/03/MSZ-AP50.webp'),(1132,870,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:21:\"2023/03/MSZ-AP50.webp\";s:8:\"filesize\";i:20872;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"MSZ-AP50-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3796;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"MSZ-AP50-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1388;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"MSZ-AP50-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16896;}}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:{}}}'),(1133,871,'_wp_attached_file','2023/03/MSZ-AP60-80-1.webp'),(1134,871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2023/03/MSZ-AP60-80-1.webp\";s:8:\"filesize\";i:52056;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"MSZ-AP60-80-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7830;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MSZ-AP60-80-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2790;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"MSZ-AP60-80-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35494;}}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:{}}}'),(1135,872,'_wp_attached_file','2023/03/mitsubishi-electric-heatpump-EF-Series-black.webp'),(1136,872,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:898;s:4:\"file\";s:57:\"2023/03/mitsubishi-electric-heatpump-EF-Series-black.webp\";s:8:\"filesize\";i:32006;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"mitsubishi-electric-heatpump-EF-Series-black-300x269.webp\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"mitsubishi-electric-heatpump-EF-Series-black-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1798;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"mitsubishi-electric-heatpump-EF-Series-black-768x690.webp\";s:5:\"width\";i:768;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21266;}}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:{}}}'),(1193,891,'_wp_attached_file','2023/03/apollo-tilt-1.webp'),(1194,891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:624;s:4:\"file\";s:26:\"2023/03/apollo-tilt-1.webp\";s:8:\"filesize\";i:25534;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"apollo-tilt-1-300x297.webp\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10120;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"apollo-tilt-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3952;}}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:{}}}'),(1195,892,'_wp_attached_file','2023/03/apollo-2.webp'),(1196,892,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:624;s:4:\"file\";s:21:\"2023/03/apollo-2.webp\";s:8:\"filesize\";i:15362;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"apollo-2-300x297.webp\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6626;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"apollo-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2948;}}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:{}}}'),(1197,893,'_wp_attached_file','2023/03/apollo-mini.webp'),(1198,893,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:24:\"2023/03/apollo-mini.webp\";s:8:\"filesize\";i:5488;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"apollo-mini-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"apollo-mini-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1700;}}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:{}}}'),(1199,895,'_wp_attached_file','2023/03/avira-panel-1.webp'),(1200,895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:26:\"2023/03/avira-panel-1.webp\";s:8:\"filesize\";i:5112;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"avira-panel-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1720;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"avira-panel-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:866;}}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:{}}}'),(1201,896,'_wp_attached_file','2023/03/revolution-flood.webp'),(1202,896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:29:\"2023/03/revolution-flood.webp\";s:8:\"filesize\";i:35816;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"revolution-flood-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15720;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"revolution-flood-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5328;}}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:{}}}'),(1203,897,'_wp_attached_file','2023/03/athena-batten.webp'),(1204,897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:26:\"2023/03/athena-batten.webp\";s:8:\"filesize\";i:8842;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"athena-batten-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5248;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"athena-batten-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2202;}}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:{}}}'),(1205,898,'_wp_attached_file','2023/03/apollo-xl.webp'),(1206,898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:22:\"2023/03/apollo-xl.webp\";s:8:\"filesize\";i:8684;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"apollo-xl-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5008;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"apollo-xl-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2202;}}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:{}}}'),(1355,5,'_wp_old_date','2023-02-14'),(1403,972,'_wp_attached_file','2020/09/2400x1600-aire-acondicionado.jpg.img_.1600.16376627-9900000000079e3c.jpg'),(1404,972,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:80:\"2020/09/2400x1600-aire-acondicionado.jpg.img_.1600.16376627-9900000000079e3c.jpg\";s:8:\"filesize\";i:24977;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:80:\"2400x1600-aire-acondicionado.jpg.img_.1600.16376627-9900000000079e3c-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5525;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:80:\"2400x1600-aire-acondicionado.jpg.img_.1600.16376627-9900000000079e3c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3079;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:80:\"2400x1600-aire-acondicionado.jpg.img_.1600.16376627-9900000000079e3c-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21156;}}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:{}}}'),(1405,974,'_wp_attached_file','2020/09/InfiniteEnergyCromwellClientDelivery00123058430092-9900000000079e3c.jpg'),(1406,974,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:505;s:4:\"file\";s:79:\"2020/09/InfiniteEnergyCromwellClientDelivery00123058430092-9900000000079e3c.jpg\";s:8:\"filesize\";i:99281;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:79:\"InfiniteEnergyCromwellClientDelivery00123058430092-9900000000079e3c-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:79:\"InfiniteEnergyCromwellClientDelivery00123058430092-9900000000079e3c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10176;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:79:\"InfiniteEnergyCromwellClientDelivery00123058430092-9900000000079e3c-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78971;}}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:{}}}'),(1407,975,'_wp_attached_file','2020/09/IELOGO_Horizontal-9900000000079e3c.jpg'),(1408,975,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:147;s:4:\"file\";s:46:\"2020/09/IELOGO_Horizontal-9900000000079e3c.jpg\";s:8:\"filesize\";i:18691;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"IELOGO_Horizontal-9900000000079e3c-300x49.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:49;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8758;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"IELOGO_Horizontal-9900000000079e3c-150x147.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8036;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"IELOGO_Horizontal-9900000000079e3c-768x125.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15729;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1409,976,'_wp_attached_file','2020/09/dcbel-uBKg9f0aUrY-unsplash-3abdf3138289ac0a.jpg'),(1410,976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:468;s:4:\"file\";s:55:\"2020/09/dcbel-uBKg9f0aUrY-unsplash-3abdf3138289ac0a.jpg\";s:8:\"filesize\";i:83410;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"dcbel-uBKg9f0aUrY-unsplash-3abdf3138289ac0a-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18952;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"dcbel-uBKg9f0aUrY-unsplash-3abdf3138289ac0a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13769;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"dcbel-uBKg9f0aUrY-unsplash-3abdf3138289ac0a-768x399.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1413,14,'_thumbnail_id','1052'),(1426,14,'_edit_last','2'),(1429,14,'_wp_old_slug','example-post-1'),(1593,1016,'_menu_item_type','post_type'),(1594,1016,'_menu_item_menu_item_parent','1018'),(1595,1016,'_menu_item_object_id','691'),(1596,1016,'_menu_item_object','page'),(1597,1016,'_menu_item_target',''),(1598,1016,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1599,1016,'_menu_item_xfn',''),(1600,1016,'_menu_item_url',''),(1602,1017,'_menu_item_type','post_type'),(1603,1017,'_menu_item_menu_item_parent','1018'),(1604,1017,'_menu_item_object_id','679'),(1605,1017,'_menu_item_object','page'),(1606,1017,'_menu_item_target',''),(1607,1017,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1608,1017,'_menu_item_xfn',''),(1609,1017,'_menu_item_url',''),(1611,1018,'_menu_item_type','post_type'),(1612,1018,'_menu_item_menu_item_parent','0'),(1613,1018,'_menu_item_object_id','485'),(1614,1018,'_menu_item_object','page'),(1615,1018,'_menu_item_target',''),(1616,1018,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1617,1018,'_menu_item_xfn',''),(1618,1018,'_menu_item_url',''),(1629,1020,'_menu_item_type','post_type'),(1630,1020,'_menu_item_menu_item_parent','1018'),(1631,1020,'_menu_item_object_id','699'),(1632,1020,'_menu_item_object','page'),(1633,1020,'_menu_item_target',''),(1634,1020,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1635,1020,'_menu_item_xfn',''),(1636,1020,'_menu_item_url',''),(1638,1021,'_menu_item_type','post_type'),(1639,1021,'_menu_item_menu_item_parent','0'),(1640,1021,'_menu_item_object_id','3'),(1641,1021,'_menu_item_object','page'),(1642,1021,'_menu_item_target',''),(1643,1021,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1644,1021,'_menu_item_xfn',''),(1645,1021,'_menu_item_url',''),(1656,1023,'_menu_item_type','post_type'),(1657,1023,'_menu_item_menu_item_parent','0'),(1658,1023,'_menu_item_object_id','695'),(1659,1023,'_menu_item_object','page'),(1660,1023,'_menu_item_target',''),(1661,1023,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1662,1023,'_menu_item_xfn',''),(1663,1023,'_menu_item_url',''),(1665,1024,'_menu_item_type','post_type'),(1666,1024,'_menu_item_menu_item_parent','1023'),(1667,1024,'_menu_item_object_id','683'),(1668,1024,'_menu_item_object','page'),(1669,1024,'_menu_item_target',''),(1670,1024,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1671,1024,'_menu_item_xfn',''),(1672,1024,'_menu_item_url',''),(1674,1025,'_menu_item_type','post_type'),(1675,1025,'_menu_item_menu_item_parent','1018'),(1676,1025,'_menu_item_object_id','492'),(1677,1025,'_menu_item_object','page'),(1678,1025,'_menu_item_target',''),(1679,1025,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1680,1025,'_menu_item_xfn',''),(1681,1025,'_menu_item_url',''),(1683,1026,'_menu_item_type','post_type'),(1684,1026,'_menu_item_menu_item_parent','0'),(1685,1026,'_menu_item_object_id','491'),(1686,1026,'_menu_item_object','page'),(1687,1026,'_menu_item_target',''),(1688,1026,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1689,1026,'_menu_item_xfn',''),(1690,1026,'_menu_item_url',''),(1692,1027,'_menu_item_type','post_type'),(1693,1027,'_menu_item_menu_item_parent','0'),(1694,1027,'_menu_item_object_id','490'),(1695,1027,'_menu_item_object','page'),(1696,1027,'_menu_item_target',''),(1697,1027,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1698,1027,'_menu_item_xfn',''),(1699,1027,'_menu_item_url',''),(1701,1028,'_menu_item_type','post_type'),(1702,1028,'_menu_item_menu_item_parent','0'),(1703,1028,'_menu_item_object_id','489'),(1704,1028,'_menu_item_object','page'),(1705,1028,'_menu_item_target',''),(1706,1028,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1707,1028,'_menu_item_xfn',''),(1708,1028,'_menu_item_url',''),(1711,1018,'_wp_old_date','2023-03-08'),(1712,1017,'_wp_old_date','2023-03-08'),(1713,1016,'_wp_old_date','2023-03-08'),(1714,1020,'_wp_old_date','2023-03-08'),(1715,1027,'_wp_old_date','2023-03-08'),(1717,1023,'_wp_old_date','2023-03-08'),(1718,1024,'_wp_old_date','2023-03-08'),(1719,1028,'_wp_old_date','2023-03-08'),(1720,1026,'_wp_old_date','2023-03-08'),(1721,1025,'_wp_old_date','2023-03-08'),(1722,1021,'_wp_old_date','2023-03-08'),(1723,5,'_wp_old_date','2023-03-08'),(1748,1018,'_wp_old_date','2023-03-23'),(1749,1017,'_wp_old_date','2023-03-23'),(1750,1016,'_wp_old_date','2023-03-23'),(1751,1020,'_wp_old_date','2023-03-23'),(1752,1025,'_wp_old_date','2023-03-23'),(1753,1027,'_wp_old_date','2023-03-23'),(1755,1028,'_wp_old_date','2023-03-23'),(1756,1023,'_wp_old_date','2023-03-23'),(1757,1026,'_wp_old_date','2023-03-23'),(1758,1024,'_wp_old_date','2023-03-23'),(1759,1021,'_wp_old_date','2023-03-23'),(1760,5,'_wp_old_date','2023-03-23'),(1851,1045,'_wp_attached_file','2023/03/Web-52-scaled.jpg'),(1852,1045,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1244;s:4:\"file\";s:25:\"2023/03/Web-52-scaled.jpg\";s:8:\"filesize\";i:286775;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Web-52-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6770;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"Web-52-1024x498.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55252;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Web-52-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3448;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Web-52-768x373.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32969;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"Web-52-1536x747.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:747;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113612;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:19:\"Web-52-2048x996.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:996;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191398;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"Web-52.jpg\";}'),(1853,1046,'_wp_attached_file','2023/03/Infinite-Energy-Cromwell-Client-Delivery-001-scaled.jpg'),(1854,1046,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1438;s:4:\"file\";s:63:\"2023/03/Infinite-Energy-Cromwell-Client-Delivery-001-scaled.jpg\";s:8:\"filesize\";i:577498;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Infinite-Energy-Cromwell-Client-Delivery-001-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14005;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Infinite-Energy-Cromwell-Client-Delivery-001-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120920;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Infinite-Energy-Cromwell-Client-Delivery-001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6750;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"Infinite-Energy-Cromwell-Client-Delivery-001-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72999;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"Infinite-Energy-Cromwell-Client-Delivery-001-1536x863.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:863;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243650;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:58:\"Infinite-Energy-Cromwell-Client-Delivery-001-2048x1151.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:398284;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"Infinite-Energy-Cromwell-Client-Delivery-001.jpg\";}'),(1869,1052,'_wp_attached_file','2023/03/ef-lifestyle-2020-green-room-white-11.10.08-am.jpg'),(1870,1052,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1453;s:4:\"file\";s:58:\"2023/03/ef-lifestyle-2020-green-room-white-11.10.08-am.jpg\";s:8:\"filesize\";i:353921;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"ef-lifestyle-2020-green-room-white-11.10.08-am-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11467;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"ef-lifestyle-2020-green-room-white-11.10.08-am-1024x744.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"ef-lifestyle-2020-green-room-white-11.10.08-am-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4278;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"ef-lifestyle-2020-green-room-white-11.10.08-am-768x558.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:558;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58363;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"ef-lifestyle-2020-green-room-white-11.10.08-am-1536x1116.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1116;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222851;}}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:{}}}'),(1871,1053,'_wp_attached_file','2023/03/office-lighting-10.48.07-am.jpg'),(1872,1053,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2252;s:6:\"height\";i:1500;s:4:\"file\";s:39:\"2023/03/office-lighting-10.48.07-am.jpg\";s:8:\"filesize\";i:340105;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"office-lighting-10.48.07-am-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11416;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"office-lighting-10.48.07-am-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88502;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"office-lighting-10.48.07-am-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5086;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"office-lighting-10.48.07-am-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53009;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"office-lighting-10.48.07-am-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180576;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"office-lighting-10.48.07-am-2048x1364.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1364;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:299025;}}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:{}}}'),(1895,1057,'_wp_attached_file','2023/03/electricians-rolleston.jpg'),(1896,1057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:34:\"2023/03/electricians-rolleston.jpg\";s:8:\"filesize\";i:92709;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"electricians-rolleston-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"electricians-rolleston-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5266;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"electricians-rolleston-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57881;}}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:{}}}'),(1909,1061,'_wp_attached_file','2023/03/Guys-Vans-Aug-2022-web.jpg'),(1910,1061,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1125;s:4:\"file\";s:34:\"2023/03/Guys-Vans-Aug-2022-web.jpg\";s:8:\"filesize\";i:473514;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Guys-Vans-Aug-2022-web-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21123;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Guys-Vans-Aug-2022-web-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225877;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Guys-Vans-Aug-2022-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7721;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Guys-Vans-Aug-2022-web-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128176;}}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:{}}}'),(1923,1066,'_wp_attached_file','2023/03/Vans-Aug-2022-scaled.jpg'),(1924,1066,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1437;s:4:\"file\";s:32:\"2023/03/Vans-Aug-2022-scaled.jpg\";s:8:\"filesize\";i:1025400;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Vans-Aug-2022-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17668;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Vans-Aug-2022-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186992;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Vans-Aug-2022-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8642;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Vans-Aug-2022-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106522;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"Vans-Aug-2022-1536x862.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:862;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:412147;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"Vans-Aug-2022-2048x1150.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:700660;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"Vans-Aug-2022.jpg\";}'),(1945,1074,'_wp_attached_file','2023/03/ledlighting.jpg'),(1946,1074,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2360;s:6:\"height\";i:1575;s:4:\"file\";s:23:\"2023/03/ledlighting.jpg\";s:8:\"filesize\";i:261656;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"ledlighting-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8819;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"ledlighting-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63432;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"ledlighting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3885;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"ledlighting-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39050;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"ledlighting-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129450;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"ledlighting-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215767;}}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:{}}}'),(1979,1085,'_wp_attached_file','2023/03/electric_car_charging1.jpg'),(1980,1085,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:620;s:4:\"file\";s:34:\"2023/03/electric_car_charging1.jpg\";s:8:\"filesize\";i:73228;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"electric_car_charging1-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12050;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"electric_car_charging1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6084;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"electric_car_charging1-768x476.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58857;}}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:{}}}'),(2027,1101,'_wp_attached_file','2020/09/AP25_Blue_Bedroom_cmyk-11.10.08-am.jpg'),(2028,1101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:46:\"2020/09/AP25_Blue_Bedroom_cmyk-11.10.08-am.jpg\";s:8:\"filesize\";i:241374;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"AP25_Blue_Bedroom_cmyk-11.10.08-am-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10137;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"AP25_Blue_Bedroom_cmyk-11.10.08-am-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76729;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"AP25_Blue_Bedroom_cmyk-11.10.08-am-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4747;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"AP25_Blue_Bedroom_cmyk-11.10.08-am-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46223;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"AP25_Blue_Bedroom_cmyk-11.10.08-am-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154529;}}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:{}}}'),(2031,1103,'_edit_lock','1679962912:2'),(2036,1106,'_edit_lock','1679963068:2'),(2039,1103,'_thumbnail_id','976'),(2070,1106,'_thumbnail_id','1045'),(2084,1121,'_edit_lock','1683152338:2'),(2087,1121,'_thumbnail_id','1146'),(2094,1127,'_wp_attached_file','2023/03/ezgif-4-52710f407d.jpg'),(2095,1127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:774;s:6:\"height\";i:516;s:4:\"file\";s:30:\"2023/03/ezgif-4-52710f407d.jpg\";s:8:\"filesize\";i:37138;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"ezgif-4-52710f407d-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8865;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ezgif-4-52710f407d-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4219;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"ezgif-4-52710f407d-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37270;}}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:{}}}'),(2112,1139,'_wp_attached_file','2023/03/ClipsalAtHome-Iconic-Future-proof.jpg'),(2113,1139,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:875;s:6:\"height\";i:700;s:4:\"file\";s:45:\"2023/03/ClipsalAtHome-Iconic-Future-proof.jpg\";s:8:\"filesize\";i:82096;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"ClipsalAtHome-Iconic-Future-proof-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10421;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"ClipsalAtHome-Iconic-Future-proof-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4973;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"ClipsalAtHome-Iconic-Future-proof-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37312;}}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:{}}}'),(2114,1141,'_wp_attached_file','2023/03/ezgif-4-97cb52d981.jpg'),(2115,1141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:576;s:6:\"height\";i:473;s:4:\"file\";s:30:\"2023/03/ezgif-4-97cb52d981.jpg\";s:8:\"filesize\";i:36644;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"ezgif-4-97cb52d981-300x246.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10729;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ezgif-4-97cb52d981-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4789;}}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:{}}}'),(2126,1146,'_wp_attached_file','2023/03/man-using-smart-home-tablet-scaled.jpg'),(2127,1146,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:46:\"2023/03/man-using-smart-home-tablet-scaled.jpg\";s:8:\"filesize\";i:286966;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"man-using-smart-home-tablet-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9969;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"man-using-smart-home-tablet-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62012;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"man-using-smart-home-tablet-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4943;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"man-using-smart-home-tablet-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39352;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"man-using-smart-home-tablet-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119460;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"man-using-smart-home-tablet-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196427;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:31:\"man-using-smart-home-tablet.jpg\";}'),(2128,1147,'_wp_attached_file','2023/03/close-up-hand-holding-remote-scaled.jpg'),(2129,1147,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1704;s:4:\"file\";s:47:\"2023/03/close-up-hand-holding-remote-scaled.jpg\";s:8:\"filesize\";i:159174;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"close-up-hand-holding-remote-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4837;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"close-up-hand-holding-remote-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"close-up-hand-holding-remote-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2454;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"close-up-hand-holding-remote-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17172;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"close-up-hand-holding-remote-1536x1022.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1022;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56339;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"close-up-hand-holding-remote-2048x1363.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102020;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:32:\"close-up-hand-holding-remote.jpg\";}'),(2130,1148,'_wp_attached_file','2023/03/woman-pressing-smart-home-automation-panel-monitor.jpg'),(2131,1148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:62:\"2023/03/woman-pressing-smart-home-automation-panel-monitor.jpg\";s:8:\"filesize\";i:200378;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"woman-pressing-smart-home-automation-panel-monitor-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7705;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"woman-pressing-smart-home-automation-panel-monitor-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64320;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"woman-pressing-smart-home-automation-panel-monitor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3304;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"woman-pressing-smart-home-automation-panel-monitor-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38676;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:64:\"woman-pressing-smart-home-automation-panel-monitor-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132440;}}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:{}}}'),(2136,1150,'_wp_attached_file','2023/03/possessed-photography-znCLdh5-Srk-unsplash-1-scaled.jpg'),(2137,1150,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1877;s:4:\"file\";s:63:\"2023/03/possessed-photography-znCLdh5-Srk-unsplash-1-scaled.jpg\";s:8:\"filesize\";i:297434;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"possessed-photography-znCLdh5-Srk-unsplash-1-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10143;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"possessed-photography-znCLdh5-Srk-unsplash-1-1024x751.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:751;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"possessed-photography-znCLdh5-Srk-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4672;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"possessed-photography-znCLdh5-Srk-unsplash-1-768x563.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39533;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"possessed-photography-znCLdh5-Srk-unsplash-1-1536x1126.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1126;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118665;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:58:\"possessed-photography-znCLdh5-Srk-unsplash-1-2048x1501.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1501;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196155;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"possessed-photography-znCLdh5-Srk-unsplash-1.jpg\";}'),(2142,1152,'_wp_attached_file','2023/03/juice-electrical-2nd-attempt-007-scaled.jpg'),(2143,1152,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:51:\"2023/03/juice-electrical-2nd-attempt-007-scaled.jpg\";s:8:\"filesize\";i:551512;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"juice-electrical-2nd-attempt-007-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17448;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"juice-electrical-2nd-attempt-007-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"juice-electrical-2nd-attempt-007-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7849;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"juice-electrical-2nd-attempt-007-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79012;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"juice-electrical-2nd-attempt-007-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:242661;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:46:\"juice-electrical-2nd-attempt-007-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:387590;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:36:\"juice-electrical-2nd-attempt-007.jpg\";}'),(2148,1154,'_wp_attached_file','2023/03/modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard.jpg'),(2149,1154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:990;s:6:\"height\";i:660;s:4:\"file\";s:84:\"2023/03/modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard.jpg\";s:8:\"filesize\";i:89610;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:84:\"modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:84:\"modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6975;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:84:\"modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68750;}}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:{}}}'),(2154,1157,'_wp_attached_file','2023/03/Screenshot-2023-03-30-at-12.58.27-pm.png'),(2155,1157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2854;s:6:\"height\";i:868;s:4:\"file\";s:48:\"2023/03/Screenshot-2023-03-30-at-12.58.27-pm.png\";s:8:\"filesize\";i:1086053;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-03-30-at-12.58.27-pm-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50175;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Screenshot-2023-03-30-at-12.58.27-pm-1024x311.png\";s:5:\"width\";i:1024;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:450595;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Screenshot-2023-03-30-at-12.58.27-pm-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37785;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Screenshot-2023-03-30-at-12.58.27-pm-768x234.png\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:273276;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"Screenshot-2023-03-30-at-12.58.27-pm-1536x467.png\";s:5:\"width\";i:1536;s:6:\"height\";i:467;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:944976;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:49:\"Screenshot-2023-03-30-at-12.58.27-pm-2048x623.png\";s:5:\"width\";i:2048;s:6:\"height\";i:623;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1656654;}}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:{}}}'),(2164,1160,'_wp_attached_file','2023/03/handshake.jpg'),(2165,1160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1350;s:4:\"file\";s:21:\"2023/03/handshake.jpg\";s:8:\"filesize\";i:674624;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"handshake-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17776;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"handshake-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117736;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"handshake-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7952;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"handshake-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74033;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"handshake-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235465;}}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:{}}}'),(2170,1162,'_wp_attached_file','2023/03/Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010.jpg'),(2171,1162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:75:\"2023/03/Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010.jpg\";s:8:\"filesize\";i:266141;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:75:\"Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11421;}s:5:\"large\";a:5:{s:4:\"file\";s:76:\"Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98715;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:75:\"Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5412;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:75:\"Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58314;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:76:\"Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202757;}}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:{}}}'),(2180,1166,'_wp_attached_file','2023/03/Energy-Audit-iStock-1003476164.jpg'),(2181,1166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:801;s:4:\"file\";s:42:\"2023/03/Energy-Audit-iStock-1003476164.jpg\";s:8:\"filesize\";i:127289;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Energy-Audit-iStock-1003476164-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23543;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"Energy-Audit-iStock-1003476164-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115175;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Energy-Audit-iStock-1003476164-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16671;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Energy-Audit-iStock-1003476164-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74816;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:99:\"couple turning on air conditioner during the summer heat while sitting on sofa with book and laptop\";s:17:\"created_timestamp\";s:10:\"1530700766\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:99:\"couple turning on air conditioner during the summer heat while sitting on sofa with book and laptop\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:32:\"digital device,using,summer heat\";}}}'),(2182,1167,'_wp_attached_file','2023/03/MSZ-GE35VAD-Wall-Mounted-Air-Conditioners-Home.jpg'),(2183,1167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:754;s:6:\"height\";i:340;s:4:\"file\";s:58:\"2023/03/MSZ-GE35VAD-Wall-Mounted-Air-Conditioners-Home.jpg\";s:8:\"filesize\";i:33697;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"MSZ-GE35VAD-Wall-Mounted-Air-Conditioners-Home-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8488;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"MSZ-GE35VAD-Wall-Mounted-Air-Conditioners-Home-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5201;}}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:{}}}'),(2188,1169,'_wp_attached_file','2023/03/iStock-519620696_800x533.jpg'),(2189,1169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:36:\"2023/03/iStock-519620696_800x533.jpg\";s:8:\"filesize\";i:83119;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"iStock-519620696_800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"iStock-519620696_800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8498;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"iStock-519620696_800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34705;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:32:\"Air conditioner blowing cold air\";s:17:\"created_timestamp\";s:10:\"1416052976\";s:9:\"copyright\";s:6:\"y_seki\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:32:\"Air conditioner blowing cold air\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"Humidifier,Air Duct,Split - Croatia,Ventilator,Shampoo,Blowing,C\";}}}'),(2198,1173,'_wp_attached_file','2023/03/warehouse-lights.jpg'),(2199,1173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1700;s:4:\"file\";s:28:\"2023/03/warehouse-lights.jpg\";s:8:\"filesize\";i:690982;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"warehouse-lights-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16191;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"warehouse-lights-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154025;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"warehouse-lights-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6484;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"warehouse-lights-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91836;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"warehouse-lights-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:313869;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"warehouse-lights-2048x1360.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:496563;}}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:{}}}'),(2222,513,'smush-complete','1'),(2223,513,'smush-marked','1'),(2224,513,'smush-info','This image is marked as already compressed by another tool.'),(2225,514,'smush-complete','1'),(2226,514,'smush-marked','1'),(2227,514,'smush-info','This image is marked as already compressed by another tool.'),(2228,722,'smush-complete','1'),(2229,722,'smush-marked','1'),(2230,722,'smush-info','This image is marked as already compressed by another tool.'),(2231,723,'smush-complete','1'),(2232,723,'smush-marked','1'),(2233,723,'smush-info','This image is marked as already compressed by another tool.'),(2234,724,'smush-complete','1'),(2235,724,'smush-marked','1'),(2236,724,'smush-info','This image is marked as already compressed by another tool.'),(2237,725,'smush-complete','1'),(2238,725,'smush-marked','1'),(2239,725,'smush-info','This image is marked as already compressed by another tool.'),(2240,726,'smush-complete','1'),(2241,726,'smush-marked','1'),(2242,726,'smush-info','This image is marked as already compressed by another tool.'),(2243,972,'smush-complete','1'),(2244,972,'smush-marked','1'),(2245,972,'smush-info','This image is marked as already compressed by another tool.'),(2246,974,'smush-complete','1'),(2247,974,'smush-marked','1'),(2248,974,'smush-info','This image is marked as already compressed by another tool.'),(2249,975,'smush-complete','1'),(2250,975,'smush-marked','1'),(2251,975,'smush-info','This image is marked as already compressed by another tool.'),(2252,976,'smush-complete','1'),(2253,976,'smush-marked','1'),(2254,976,'smush-info','This image is marked as already compressed by another tool.'),(2255,1045,'smush-complete','1'),(2256,1045,'smush-marked','1'),(2257,1045,'smush-info','The file was compressed from 280.05 KB to 247.90 KB saving 11.48 percent using WP-Optimize'),(2258,1046,'smush-complete','1'),(2259,1046,'smush-marked','1'),(2260,1046,'smush-info','The file was compressed from 563.96 KB to 497.15 KB saving 11.85 percent using WP-Optimize'),(2261,1052,'smush-complete','1'),(2262,1052,'smush-marked','1'),(2263,1052,'smush-info','The file was compressed from 345.63 KB to 319.61 KB saving 7.53 percent using WP-Optimize'),(2264,1053,'smush-complete','1'),(2265,1053,'smush-marked','1'),(2266,1053,'smush-info','The file was compressed from 332.13 KB to 315.94 KB saving 4.88 percent using WP-Optimize'),(2267,1057,'smush-complete','1'),(2268,1057,'smush-marked','1'),(2269,1057,'smush-info','The file was compressed from 90.54 KB to 82.53 KB saving 8.85 percent using WP-Optimize'),(2270,1061,'smush-complete','1'),(2271,1061,'smush-marked','1'),(2272,1061,'smush-info','The file was compressed from 462.42 KB to 412.02 KB saving 10.9 percent using WP-Optimize'),(2273,1066,'smush-complete','1'),(2274,1066,'smush-marked','1'),(2275,1066,'smush-info','The file was compressed from 1,001.37 KB to 853.53 KB saving 14.76 percent using WP-Optimize'),(2276,1074,'smush-complete','1'),(2277,1074,'smush-marked','1'),(2278,1074,'smush-info','The file was compressed from 255.52 KB to 249.34 KB saving 2.42 percent using WP-Optimize'),(2279,1085,'smush-complete','1'),(2280,1085,'smush-marked','1'),(2281,1085,'smush-info','The file was compressed from 71.51 KB to 71.51 KB saving 0 percent using WP-Optimize'),(2282,1101,'smush-complete','1'),(2283,1101,'smush-marked','1'),(2284,1101,'smush-info','The file was compressed from 235.72 KB to 216.07 KB saving 8.33 percent using WP-Optimize'),(2285,1127,'smush-complete','1'),(2286,1127,'smush-marked','1'),(2287,1127,'smush-info','The file was compressed from 36.27 KB to 34.30 KB saving 5.43 percent using WP-Optimize'),(2288,1139,'smush-complete','1'),(2289,1139,'smush-marked','1'),(2290,1139,'smush-info','The file was compressed from 80.17 KB to 33.43 KB saving 58.3 percent using WP-Optimize'),(2291,1141,'smush-complete','1'),(2292,1141,'smush-marked','1'),(2293,1141,'smush-info','The file was compressed from 35.79 KB to 28.56 KB saving 20.19 percent using WP-Optimize'),(2294,1146,'smush-complete','1'),(2295,1146,'smush-marked','1'),(2296,1146,'smush-info','The file was compressed from 280.24 KB to 251.54 KB saving 10.24 percent using WP-Optimize'),(2297,1147,'smush-complete','1'),(2298,1147,'smush-marked','1'),(2299,1147,'smush-info','The file was compressed from 155.44 KB to 147.51 KB saving 5.1 percent using WP-Optimize'),(2300,1148,'smush-complete','1'),(2301,1148,'smush-marked','1'),(2302,1148,'smush-info','The file was compressed from 195.68 KB to 178.02 KB saving 9.02 percent using WP-Optimize'),(2303,1150,'smush-complete','1'),(2304,1150,'smush-marked','1'),(2305,1150,'smush-info','The file was compressed from 290.46 KB to 259.00 KB saving 10.83 percent using WP-Optimize'),(2306,1152,'smush-complete','1'),(2307,1152,'smush-marked','1'),(2308,1152,'smush-info','The file was compressed from 538.59 KB to 475.79 KB saving 11.66 percent using WP-Optimize'),(2309,1154,'smush-complete','1'),(2310,1154,'smush-marked','1'),(2311,1154,'smush-info','The file was compressed from 87.51 KB to 87.51 KB saving 0 percent using WP-Optimize'),(2312,1157,'smush-complete','1'),(2313,1157,'smush-marked','1'),(2314,1157,'smush-info','The file was compressed from 1.04 MB to 1.04 MB saving 0 percent using WP-Optimize'),(2315,1160,'smush-complete','1'),(2316,1160,'smush-marked','1'),(2317,1160,'smush-info','The file was compressed from 658.81 KB to 239.82 KB saving 63.6 percent using WP-Optimize'),(2318,1162,'smush-complete','1'),(2319,1162,'smush-marked','1'),(2320,1162,'smush-info','The file was compressed from 259.90 KB to 215.28 KB saving 17.17 percent using WP-Optimize'),(2321,1166,'smush-complete','1'),(2322,1166,'smush-marked','1'),(2323,1166,'smush-info','The file was compressed from 124.31 KB to 109.46 KB saving 11.95 percent using WP-Optimize'),(2324,1167,'smush-complete','1'),(2325,1167,'smush-marked','1'),(2326,1167,'smush-info','The file was compressed from 32.91 KB to 24.55 KB saving 25.39 percent using WP-Optimize'),(2327,1169,'smush-complete','1'),(2328,1169,'smush-marked','1'),(2329,1169,'smush-info','The file was compressed from 81.17 KB to 31.74 KB saving 60.9 percent using WP-Optimize'),(2330,1173,'smush-complete','1'),(2331,1173,'smush-marked','1'),(2332,1173,'smush-info','The file was compressed from 674.79 KB to 648.41 KB saving 3.91 percent using WP-Optimize'),(2333,1045,'original-file','2023/03/Web-52-scaled-updraft-pre-smush-original.jpg'),(2334,1045,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:286775;s:12:\"smushed-size\";i:253854;s:15:\"savings-percent\";d:11.48;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:286775;s:10:\"compressed\";i:253854;}s:6:\"medium\";a:2:{s:8:\"original\";i:6770;s:10:\"compressed\";i:6076;}s:5:\"large\";a:2:{s:8:\"original\";i:55252;s:10:\"compressed\";i:48861;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:3448;s:10:\"compressed\";i:3124;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:32969;s:10:\"compressed\";i:29342;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:113612;s:10:\"compressed\";i:100607;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:191398;s:10:\"compressed\";i:169245;}}}'),(2335,1046,'original-file','2023/03/Infinite-Energy-Cromwell-Client-Delivery-001-scaled-updraft-pre-smush-original.jpg'),(2336,1046,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:577498;s:12:\"smushed-size\";i:509078;s:15:\"savings-percent\";d:11.85;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:577498;s:10:\"compressed\";i:509078;}s:6:\"medium\";a:2:{s:8:\"original\";i:14005;s:10:\"compressed\";i:12588;}s:5:\"large\";a:2:{s:8:\"original\";i:120920;s:10:\"compressed\";i:106595;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6750;s:10:\"compressed\";i:6142;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:72999;s:10:\"compressed\";i:64366;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:243650;s:10:\"compressed\";i:214929;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:398284;s:10:\"compressed\";i:351330;}}}'),(2337,1052,'original-file','2023/03/ef-lifestyle-2020-green-room-white-11.10.08-am-updraft-pre-smush-original.jpg'),(2338,1052,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:353921;s:12:\"smushed-size\";i:327283;s:15:\"savings-percent\";d:7.53;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:353921;s:10:\"compressed\";i:327283;}s:6:\"medium\";a:2:{s:8:\"original\";i:11467;s:10:\"compressed\";i:10332;}s:5:\"large\";a:2:{s:8:\"original\";i:101520;s:10:\"compressed\";i:89401;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4278;s:10:\"compressed\";i:3895;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:58363;s:10:\"compressed\";i:51791;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:222851;s:10:\"compressed\";i:195208;}}}'),(2339,1053,'original-file','2023/03/office-lighting-10.48.07-am-updraft-pre-smush-original.jpg'),(2340,1053,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:340105;s:12:\"smushed-size\";i:323521;s:15:\"savings-percent\";d:4.88;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:340105;s:10:\"compressed\";i:323521;}s:6:\"medium\";a:2:{s:8:\"original\";i:11416;s:10:\"compressed\";i:10338;}s:5:\"large\";a:2:{s:8:\"original\";i:88502;s:10:\"compressed\";i:78996;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5086;s:10:\"compressed\";i:4639;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:53009;s:10:\"compressed\";i:47483;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:180576;s:10:\"compressed\";i:161543;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:299025;s:10:\"compressed\";i:267203;}}}'),(2341,1057,'original-file','2023/03/electricians-rolleston-updraft-pre-smush-original.jpg'),(2342,1057,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:92709;s:12:\"smushed-size\";i:84507;s:15:\"savings-percent\";d:8.85;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:92709;s:10:\"compressed\";i:84507;}s:6:\"medium\";a:2:{s:8:\"original\";i:12513;s:10:\"compressed\";i:11259;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5266;s:10:\"compressed\";i:4775;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:57881;s:10:\"compressed\";i:50939;}}}'),(2343,1061,'original-file','2023/03/Guys-Vans-Aug-2022-web-updraft-pre-smush-original.jpg'),(2344,1061,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:473514;s:12:\"smushed-size\";i:421908;s:15:\"savings-percent\";d:10.9;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:473514;s:10:\"compressed\";i:421908;}s:6:\"medium\";a:2:{s:8:\"original\";i:21123;s:10:\"compressed\";i:18068;}s:5:\"large\";a:2:{s:8:\"original\";i:225877;s:10:\"compressed\";i:191905;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:7721;s:10:\"compressed\";i:6963;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:128176;s:10:\"compressed\";i:108759;}}}'),(2345,1066,'original-file','2023/03/Vans-Aug-2022-scaled-updraft-pre-smush-original.jpg'),(2346,1066,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:1025400;s:12:\"smushed-size\";i:874014;s:15:\"savings-percent\";d:14.76;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:1025400;s:10:\"compressed\";i:874014;}s:6:\"medium\";a:2:{s:8:\"original\";i:17668;s:10:\"compressed\";i:15135;}s:5:\"large\";a:2:{s:8:\"original\";i:186992;s:10:\"compressed\";i:157544;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:8642;s:10:\"compressed\";i:7818;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:106522;s:10:\"compressed\";i:89828;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:412147;s:10:\"compressed\";i:347206;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:700660;s:10:\"compressed\";i:593348;}}}'),(2347,1074,'original-file','2023/03/ledlighting-updraft-pre-smush-original.jpg'),(2348,1074,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:261656;s:12:\"smushed-size\";i:255329;s:15:\"savings-percent\";d:2.42;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:261656;s:10:\"compressed\";i:255329;}s:6:\"medium\";a:2:{s:8:\"original\";i:8819;s:10:\"compressed\";i:8093;}s:5:\"large\";a:2:{s:8:\"original\";i:63432;s:10:\"compressed\";i:58147;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:3885;s:10:\"compressed\";i:3565;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:39050;s:10:\"compressed\";i:35686;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:129450;s:10:\"compressed\";i:119371;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:215767;s:10:\"compressed\";i:198434;}}}'),(2349,1085,'original-file','2023/03/electric_car_charging1-updraft-pre-smush-original.jpg'),(2350,1085,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:73228;s:12:\"smushed-size\";i:73228;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:73228;s:10:\"compressed\";i:73228;}s:6:\"medium\";a:2:{s:8:\"original\";i:12050;s:10:\"compressed\";i:10748;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6084;s:10:\"compressed\";i:5480;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:58857;s:10:\"compressed\";i:51585;}}}'),(2351,1101,'original-file','2020/09/AP25_Blue_Bedroom_cmyk-11.10.08-am-updraft-pre-smush-original.jpg'),(2352,1101,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:241374;s:12:\"smushed-size\";i:221259;s:15:\"savings-percent\";d:8.33;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:241374;s:10:\"compressed\";i:221259;}s:6:\"medium\";a:2:{s:8:\"original\";i:10137;s:10:\"compressed\";i:9182;}s:5:\"large\";a:2:{s:8:\"original\";i:76729;s:10:\"compressed\";i:68199;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4747;s:10:\"compressed\";i:4305;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:46223;s:10:\"compressed\";i:41223;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:154529;s:10:\"compressed\";i:137483;}}}'),(2353,1127,'original-file','2023/03/ezgif-4-52710f407d-updraft-pre-smush-original.jpg'),(2354,1127,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:37138;s:12:\"smushed-size\";i:35120;s:15:\"savings-percent\";d:5.43;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:37138;s:10:\"compressed\";i:35120;}s:6:\"medium\";a:2:{s:8:\"original\";i:8865;s:10:\"compressed\";i:8074;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4219;s:10:\"compressed\";i:3834;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:37270;s:10:\"compressed\";i:34200;}}}'),(2355,1139,'original-file','2023/03/ClipsalAtHome-Iconic-Future-proof-updraft-pre-smush-original.jpg'),(2356,1139,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:82096;s:12:\"smushed-size\";i:34235;s:15:\"savings-percent\";d:58.3;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:82096;s:10:\"compressed\";i:34235;}s:6:\"medium\";a:2:{s:8:\"original\";i:10421;s:10:\"compressed\";i:8449;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4973;s:10:\"compressed\";i:4140;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:37312;s:10:\"compressed\";i:29168;}}}'),(2357,1141,'original-file','2023/03/ezgif-4-97cb52d981-updraft-pre-smush-original.jpg'),(2358,1141,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:36644;s:12:\"smushed-size\";i:29246;s:15:\"savings-percent\";d:20.19;s:10:\"sizes-info\";a:3:{s:4:\"full\";a:2:{s:8:\"original\";i:36644;s:10:\"compressed\";i:29246;}s:6:\"medium\";a:2:{s:8:\"original\";i:10729;s:10:\"compressed\";i:9548;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4789;s:10:\"compressed\";i:4326;}}}'),(2359,1146,'original-file','2023/03/man-using-smart-home-tablet-scaled-updraft-pre-smush-original.jpg'),(2360,1146,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:286966;s:12:\"smushed-size\";i:257581;s:15:\"savings-percent\";d:10.24;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:286966;s:10:\"compressed\";i:257581;}s:6:\"medium\";a:2:{s:8:\"original\";i:9969;s:10:\"compressed\";i:9055;}s:5:\"large\";a:2:{s:8:\"original\";i:62012;s:10:\"compressed\";i:55463;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4943;s:10:\"compressed\";i:4492;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:39352;s:10:\"compressed\";i:35291;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:119460;s:10:\"compressed\";i:106775;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:196427;s:10:\"compressed\";i:175793;}}}'),(2361,1147,'original-file','2023/03/close-up-hand-holding-remote-scaled-updraft-pre-smush-original.jpg'),(2362,1147,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:159174;s:12:\"smushed-size\";i:151050;s:15:\"savings-percent\";d:5.1;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:159174;s:10:\"compressed\";i:151050;}s:6:\"medium\";a:2:{s:8:\"original\";i:4837;s:10:\"compressed\";i:4422;}s:5:\"large\";a:2:{s:8:\"original\";i:27374;s:10:\"compressed\";i:25944;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:2454;s:10:\"compressed\";i:2248;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:17172;s:10:\"compressed\";i:16310;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:56339;s:10:\"compressed\";i:53327;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:102020;s:10:\"compressed\";i:97098;}}}'),(2363,1148,'original-file','2023/03/woman-pressing-smart-home-automation-panel-monitor-updraft-pre-smush-original.jpg'),(2364,1148,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:200378;s:12:\"smushed-size\";i:182294;s:15:\"savings-percent\";d:9.02;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:200378;s:10:\"compressed\";i:182294;}s:6:\"medium\";a:2:{s:8:\"original\";i:7705;s:10:\"compressed\";i:7035;}s:5:\"large\";a:2:{s:8:\"original\";i:64320;s:10:\"compressed\";i:56689;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:3304;s:10:\"compressed\";i:3008;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:38676;s:10:\"compressed\";i:34379;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:132440;s:10:\"compressed\";i:115375;}}}'),(2365,1150,'original-file','2023/03/possessed-photography-znCLdh5-Srk-unsplash-1-scaled-updraft-pre-smush-original.jpg'),(2366,1150,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:297434;s:12:\"smushed-size\";i:265221;s:15:\"savings-percent\";d:10.83;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:297434;s:10:\"compressed\";i:265221;}s:6:\"medium\";a:2:{s:8:\"original\";i:10143;s:10:\"compressed\";i:9157;}s:5:\"large\";a:2:{s:8:\"original\";i:61333;s:10:\"compressed\";i:55219;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4672;s:10:\"compressed\";i:4242;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:39533;s:10:\"compressed\";i:35566;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:118665;s:10:\"compressed\";i:106328;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:196155;s:10:\"compressed\";i:175218;}}}'),(2367,1152,'original-file','2023/03/juice-electrical-2nd-attempt-007-scaled-updraft-pre-smush-original.jpg'),(2368,1152,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:551512;s:12:\"smushed-size\";i:487205;s:15:\"savings-percent\";d:11.66;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:551512;s:10:\"compressed\";i:487205;}s:6:\"medium\";a:2:{s:8:\"original\";i:17448;s:10:\"compressed\";i:15230;}s:5:\"large\";a:2:{s:8:\"original\";i:127069;s:10:\"compressed\";i:111051;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:7849;s:10:\"compressed\";i:7056;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:79012;s:10:\"compressed\";i:68963;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:242661;s:10:\"compressed\";i:213384;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:387590;s:10:\"compressed\";i:341392;}}}'),(2369,1154,'original-file','2023/03/modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard-updraft-pre-smush-original.jpg'),(2370,1154,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:89610;s:12:\"smushed-size\";i:89610;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:89610;s:10:\"compressed\";i:89610;}s:6:\"medium\";a:2:{s:8:\"original\";i:15171;s:10:\"compressed\";i:13357;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6975;s:10:\"compressed\";i:6285;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:68750;s:10:\"compressed\";i:60537;}}}'),(2371,1157,'original-file','2023/03/Screenshot-2023-03-30-at-12.58.27-pm-updraft-pre-smush-original.png'),(2372,1157,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:1086053;s:12:\"smushed-size\";i:1086053;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:1086053;s:10:\"compressed\";i:1086053;}s:6:\"medium\";a:2:{s:8:\"original\";i:50175;s:10:\"compressed\";i:21734;}s:5:\"large\";a:2:{s:8:\"original\";i:450595;s:10:\"compressed\";i:196064;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:37785;s:10:\"compressed\";i:17192;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:273276;s:10:\"compressed\";i:117014;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:944976;s:10:\"compressed\";i:403846;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:1656654;s:10:\"compressed\";i:685311;}}}'),(2373,1160,'original-file','2023/03/handshake-updraft-pre-smush-original.jpg'),(2374,1160,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:674624;s:12:\"smushed-size\";i:245576;s:15:\"savings-percent\";d:63.6;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:674624;s:10:\"compressed\";i:245576;}s:6:\"medium\";a:2:{s:8:\"original\";i:17776;s:10:\"compressed\";i:13081;}s:5:\"large\";a:2:{s:8:\"original\";i:117736;s:10:\"compressed\";i:85775;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:7952;s:10:\"compressed\";i:6032;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:74033;s:10:\"compressed\";i:53556;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:235465;s:10:\"compressed\";i:174019;}}}'),(2375,1162,'original-file','2023/03/Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010-updraft-pre-smush-original.jpg'),(2376,1162,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:266141;s:12:\"smushed-size\";i:220450;s:15:\"savings-percent\";d:17.17;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:266141;s:10:\"compressed\";i:220450;}s:6:\"medium\";a:2:{s:8:\"original\";i:11421;s:10:\"compressed\";i:10243;}s:5:\"large\";a:2:{s:8:\"original\";i:98715;s:10:\"compressed\";i:86537;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5412;s:10:\"compressed\";i:4907;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:58314;s:10:\"compressed\";i:51196;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:202757;s:10:\"compressed\";i:178289;}}}'),(2377,1166,'original-file','2023/03/Energy-Audit-iStock-1003476164-updraft-pre-smush-original.jpg'),(2378,1166,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:127289;s:12:\"smushed-size\";i:112084;s:15:\"savings-percent\";d:11.95;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:127289;s:10:\"compressed\";i:112084;}s:6:\"medium\";a:2:{s:8:\"original\";i:23543;s:10:\"compressed\";i:20330;}s:5:\"large\";a:2:{s:8:\"original\";i:115175;s:10:\"compressed\";i:89117;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:16671;s:10:\"compressed\";i:15358;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:74816;s:10:\"compressed\";i:58704;}}}'),(2379,1167,'original-file','2023/03/MSZ-GE35VAD-Wall-Mounted-Air-Conditioners-Home-updraft-pre-smush-original.jpg'),(2380,1167,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:33697;s:12:\"smushed-size\";i:25140;s:15:\"savings-percent\";d:25.39;s:10:\"sizes-info\";a:3:{s:4:\"full\";a:2:{s:8:\"original\";i:33697;s:10:\"compressed\";i:25140;}s:6:\"medium\";a:2:{s:8:\"original\";i:8488;s:10:\"compressed\";i:6756;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5201;s:10:\"compressed\";i:4293;}}}'),(2381,1169,'original-file','2023/03/iStock-519620696_800x533-updraft-pre-smush-original.jpg'),(2382,1169,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:83119;s:12:\"smushed-size\";i:32498;s:15:\"savings-percent\";d:60.9;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:83119;s:10:\"compressed\";i:32498;}s:6:\"medium\";a:2:{s:8:\"original\";i:11931;s:10:\"compressed\";i:10997;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:8498;s:10:\"compressed\";i:7939;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:34705;s:10:\"compressed\";i:29750;}}}'),(2383,1173,'original-file','2023/03/warehouse-lights-updraft-pre-smush-original.jpg'),(2384,1173,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:690982;s:12:\"smushed-size\";i:663973;s:15:\"savings-percent\";d:3.91;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:690982;s:10:\"compressed\";i:663973;}s:6:\"medium\";a:2:{s:8:\"original\";i:16191;s:10:\"compressed\";i:14172;}s:5:\"large\";a:2:{s:8:\"original\";i:154025;s:10:\"compressed\";i:133876;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6484;s:10:\"compressed\";i:5880;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:91836;s:10:\"compressed\";i:79805;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:313869;s:10:\"compressed\";i:274057;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:496563;s:10:\"compressed\";i:435424;}}}'),(2391,491,'_yoast_wpseo_content_score','60'),(2392,491,'_yoast_wpseo_estimated-reading-time-minutes','5'),(2393,491,'_yoast_wpseo_wordproof_timestamp',''),(2398,1195,'_edit_lock','1725331548:2'),(2399,1196,'_wp_attached_file','2023/05/Apollo-2.png'),(2400,1196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1015;s:6:\"height\";i:490;s:4:\"file\";s:20:\"2023/05/Apollo-2.png\";s:8:\"filesize\";i:91600;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Apollo-2-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16593;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Apollo-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13954;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Apollo-2-768x371.png\";s:5:\"width\";i:768;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64376;}}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:{}}}'),(2401,1197,'_wp_attached_file','2023/05/Apollo-Mini-2.png'),(2402,1197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:763;s:6:\"height\";i:520;s:4:\"file\";s:25:\"2023/05/Apollo-Mini-2.png\";s:8:\"filesize\";i:96921;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Apollo-Mini-2-300x204.png\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Apollo-Mini-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12950;}}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:{}}}'),(2403,1198,'_wp_attached_file','2023/05/Iris-Tilt-2.png'),(2404,1198,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:821;s:4:\"file\";s:23:\"2023/05/Iris-Tilt-2.png\";s:8:\"filesize\";i:172455;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Iris-Tilt-2-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24116;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Iris-Tilt-2-1024x701.png\";s:5:\"width\";i:1024;s:6:\"height\";i:701;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138281;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Iris-Tilt-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14336;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Iris-Tilt-2-768x525.png\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90948;}}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:{}}}'),(2405,1199,'_wp_attached_file','2023/05/Iris-Tilt-2A.png'),(2406,1199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:752;s:4:\"file\";s:24:\"2023/05/Iris-Tilt-2A.png\";s:8:\"filesize\";i:193686;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Iris-Tilt-2A-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28791;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Iris-Tilt-2A-1024x700.png\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:186440;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Iris-Tilt-2A-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14786;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Iris-Tilt-2A-768x525.png\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119023;}}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:{}}}'),(2407,1196,'original-file','2023/05/Apollo-2-updraft-pre-smush-original.png'),(2408,1196,'smush-complete','1'),(2409,1196,'smush-info','The file was compressed from 89.45 KB to 42.16 KB saving 52.87 percent using WP-Optimize'),(2410,1196,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:91600;s:12:\"smushed-size\";i:43171;s:15:\"savings-percent\";d:52.87;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:91600;s:10:\"compressed\";i:43171;}s:6:\"medium\";a:2:{s:8:\"original\";i:16593;s:10:\"compressed\";i:8040;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:13954;s:10:\"compressed\";i:7536;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:64376;s:10:\"compressed\";i:29056;}}}'),(2411,1197,'original-file','2023/05/Apollo-Mini-2-updraft-pre-smush-original.png'),(2412,1197,'smush-complete','1'),(2413,1197,'smush-info','The file was compressed from 94.65 KB to 43.82 KB saving 53.7 percent using WP-Optimize'),(2414,1197,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:96921;s:12:\"smushed-size\";i:44875;s:15:\"savings-percent\";d:53.7;s:10:\"sizes-info\";a:3:{s:4:\"full\";a:2:{s:8:\"original\";i:96921;s:10:\"compressed\";i:44875;}s:6:\"medium\";a:2:{s:8:\"original\";i:26463;s:10:\"compressed\";i:11875;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:12950;s:10:\"compressed\";i:6362;}}}'),(2415,1198,'original-file','2023/05/Iris-Tilt-2-updraft-pre-smush-original.png'),(2416,1198,'smush-complete','1'),(2417,1198,'smush-info','The file was compressed from 168.41 KB to 87.54 KB saving 48.02 percent using WP-Optimize'),(2418,1198,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:172455;s:12:\"smushed-size\";i:89636;s:15:\"savings-percent\";d:48.02;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:172455;s:10:\"compressed\";i:89636;}s:6:\"medium\";a:2:{s:8:\"original\";i:24116;s:10:\"compressed\";i:12631;}s:5:\"large\";a:2:{s:8:\"original\";i:138281;s:10:\"compressed\";i:69449;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:14336;s:10:\"compressed\";i:8321;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:90948;s:10:\"compressed\";i:46433;}}}'),(2419,1199,'original-file','2023/05/Iris-Tilt-2A-updraft-pre-smush-original.png'),(2420,1199,'smush-complete','1'),(2421,1199,'smush-info','The file was compressed from 189.15 KB to 97.23 KB saving 48.6 percent using WP-Optimize'),(2422,1199,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:193686;s:12:\"smushed-size\";i:99561;s:15:\"savings-percent\";d:48.6;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:193686;s:10:\"compressed\";i:99561;}s:6:\"medium\";a:2:{s:8:\"original\";i:28791;s:10:\"compressed\";i:12910;}s:5:\"large\";a:2:{s:8:\"original\";i:186440;s:10:\"compressed\";i:86283;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:14786;s:10:\"compressed\";i:7260;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:119023;s:10:\"compressed\";i:53000;}}}'),(2423,1200,'_wp_attached_file','2023/05/juice.webp'),(2424,1200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:18:\"2023/05/juice.webp\";s:8:\"filesize\";i:95262;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"juice-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14858;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"juice-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5934;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"juice-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:67556;}}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:{}}}'),(2427,1195,'_edit_last','2'),(2430,1195,'_yoast_wpseo_primary_category','1'),(2431,1195,'_yoast_wpseo_content_score','90'),(2432,1195,'_yoast_wpseo_estimated-reading-time-minutes','4'),(2433,1195,'_yoast_wpseo_wordproof_timestamp',''),(2470,1229,'_wp_attached_file','2023/05/JuiceElec_May_FB_Banner-scaled.jpg'),(2471,1229,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:950;s:4:\"file\";s:42:\"2023/05/JuiceElec_May_FB_Banner-scaled.jpg\";s:8:\"filesize\";i:122396;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"JuiceElec_May_FB_Banner-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19037;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"JuiceElec_May_FB_Banner-1024x380.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45531;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"JuiceElec_May_FB_Banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19544;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"JuiceElec_May_FB_Banner-768x285.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35222;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"JuiceElec_May_FB_Banner-1536x570.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68407;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"JuiceElec_May_FB_Banner-2048x760.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93498;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"JuiceElec_May_FB_Banner.jpg\";}'),(2474,1195,'_wp_old_date','2023-05-04'),(2475,1195,'_thumbnail_id','1231'),(2476,1231,'_wp_attached_file','2023/05/bannerled-site-scaled.jpg'),(2477,1231,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:950;s:4:\"file\";s:33:\"2023/05/bannerled-site-scaled.jpg\";s:8:\"filesize\";i:85808;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"bannerled-site-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16064;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"bannerled-site-1024x380.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32035;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"bannerled-site-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17071;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"bannerled-site-768x285.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25665;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"bannerled-site-1536x570.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47349;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"bannerled-site-2048x760.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65120;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"bannerled-site.jpg\";}'),(2480,1195,'_wp_old_slug','a-juicy-led-lights-offer'),(2481,1229,'original-file','2023/05/JuiceElec_May_FB_Banner-scaled-updraft-pre-smush-original.jpg'),(2482,1229,'smush-complete','1'),(2483,1229,'smush-info','The file was compressed from 119.53 KB to 82.72 KB saving 30.8 percent using WP-Optimize'),(2484,1229,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:122396;s:12:\"smushed-size\";i:84703;s:15:\"savings-percent\";d:30.8;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:122396;s:10:\"compressed\";i:84703;}s:6:\"medium\";a:2:{s:8:\"original\";i:19037;s:10:\"compressed\";i:17546;}s:5:\"large\";a:2:{s:8:\"original\";i:45531;s:10:\"compressed\";i:34216;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:19544;s:10:\"compressed\";i:17968;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:35222;s:10:\"compressed\";i:27702;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:68407;s:10:\"compressed\";i:49457;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:93498;s:10:\"compressed\";i:65953;}}}'),(2485,1231,'original-file','2023/05/bannerled-site-scaled-updraft-pre-smush-original.jpg'),(2486,1231,'smush-complete','1'),(2487,1231,'smush-info','The file was compressed from 83.80 KB to 60.64 KB saving 27.63 percent using WP-Optimize'),(2488,1231,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:85808;s:12:\"smushed-size\";i:62096;s:15:\"savings-percent\";d:27.63;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:85808;s:10:\"compressed\";i:62096;}s:6:\"medium\";a:2:{s:8:\"original\";i:16064;s:10:\"compressed\";i:15236;}s:5:\"large\";a:2:{s:8:\"original\";i:32035;s:10:\"compressed\";i:26067;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:17071;s:10:\"compressed\";i:16061;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:25665;s:10:\"compressed\";i:21733;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:47349;s:10:\"compressed\";i:36396;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:65120;s:10:\"compressed\";i:48268;}}}'),(2497,14,'_yoast_wpseo_primary_category','1'),(2498,14,'_yoast_wpseo_content_score','60'),(2499,14,'_yoast_wpseo_estimated-reading-time-minutes','2'),(2500,14,'_yoast_wpseo_wordproof_timestamp',''),(2509,490,'_yoast_wpseo_content_score','60'),(2510,490,'_yoast_wpseo_estimated-reading-time-minutes','5'),(2511,490,'_yoast_wpseo_wordproof_timestamp',''),(2516,1,'_yoast_wpseo_title','%%sitename%% %%sep%% Christchurch Electricians'),(2517,1,'_yoast_wpseo_metadesc','Master Christchurch Electricians - Juice Electrical are residential, industrial and commercial electricians who over-deliver on quality and service.'),(2518,1,'_yoast_wpseo_content_score','30'),(2519,1,'_yoast_wpseo_estimated-reading-time-minutes','5'),(2520,1,'_yoast_wpseo_wordproof_timestamp',''),(2521,1,'_thumbnail_id','1152'),(2522,1,'_yoast_wpseo_opengraph-image','https://juiceelectrical.co.nz/wp-content/uploads/2023/05/bannerled-site-1024x380.jpg'),(2523,1,'_yoast_wpseo_opengraph-image-id','1231'),(2524,1241,'_edit_lock','1701730127:2'),(2525,1242,'_wp_attached_file','2023/06/CondensationBlog1.jpg'),(2526,1242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:824;s:4:\"file\";s:29:\"2023/06/CondensationBlog1.jpg\";s:8:\"filesize\";i:248023;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"CondensationBlog1-300x124.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8302;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"CondensationBlog1-1024x422.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76621;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"CondensationBlog1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5367;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"CondensationBlog1-768x316.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44325;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"CondensationBlog1-1536x633.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159594;}}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:{}}}'),(2527,1243,'_wp_attached_file','2023/06/CondensationBlog2.jpg'),(2528,1243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:492;s:4:\"file\";s:29:\"2023/06/CondensationBlog2.jpg\";s:8:\"filesize\";i:38117;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"CondensationBlog2-300x144.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5984;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"CondensationBlog2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3654;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"CondensationBlog2-768x369.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25411;}}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:{}}}'),(2529,1244,'_wp_attached_file','2023/06/CondensationBlog3.jpg'),(2530,1244,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1708;s:6:\"height\";i:750;s:4:\"file\";s:29:\"2023/06/CondensationBlog3.jpg\";s:8:\"filesize\";i:72308;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"CondensationBlog3-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5864;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"CondensationBlog3-1024x450.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43508;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"CondensationBlog3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2719;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"CondensationBlog3-768x337.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27100;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"CondensationBlog3-1536x674.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:674;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82600;}}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:{}}}'),(2531,1245,'_wp_attached_file','2023/06/CondensationBlog4.jpg'),(2532,1245,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1319;s:4:\"file\";s:29:\"2023/06/CondensationBlog4.jpg\";s:8:\"filesize\";i:684617;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"CondensationBlog4-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14483;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"CondensationBlog4-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"CondensationBlog4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5615;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"CondensationBlog4-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105832;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"CondensationBlog4-1536x1013.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1013;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:414725;}}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:{}}}'),(2533,1241,'_thumbnail_id','1245'),(2534,1241,'_edit_last','2'),(2535,1241,'_yoast_wpseo_primary_category','1'),(2536,1241,'_yoast_wpseo_content_score','60'),(2537,1241,'_yoast_wpseo_estimated-reading-time-minutes','3'),(2538,1241,'_yoast_wpseo_wordproof_timestamp',''),(2539,1242,'original-file','2023/06/CondensationBlog1-updraft-pre-smush-original.jpg'),(2540,1242,'smush-complete','1'),(2541,1242,'smush-info','The file was compressed from 242.21 KB to 224.94 KB saving 7.13 percent using WP-Optimize'),(2542,1242,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:248023;s:12:\"smushed-size\";i:230340;s:15:\"savings-percent\";d:7.13;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:248023;s:10:\"compressed\";i:230340;}s:6:\"medium\";a:2:{s:8:\"original\";i:8302;s:10:\"compressed\";i:7512;}s:5:\"large\";a:2:{s:8:\"original\";i:76621;s:10:\"compressed\";i:67851;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5367;s:10:\"compressed\";i:4886;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:44325;s:10:\"compressed\";i:39266;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:159594;s:10:\"compressed\";i:141864;}}}'),(2543,1243,'original-file','2023/06/CondensationBlog2-updraft-pre-smush-original.jpg'),(2544,1243,'smush-complete','1'),(2545,1243,'smush-info','The file was compressed from 37.22 KB to 33.70 KB saving 9.46 percent using WP-Optimize'),(2546,1243,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:38117;s:12:\"smushed-size\";i:34513;s:15:\"savings-percent\";d:9.46;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:38117;s:10:\"compressed\";i:34513;}s:6:\"medium\";a:2:{s:8:\"original\";i:5984;s:10:\"compressed\";i:5439;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:3654;s:10:\"compressed\";i:3340;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:25411;s:10:\"compressed\";i:23259;}}}'),(2547,1244,'original-file','2023/06/CondensationBlog3-updraft-pre-smush-original.jpg'),(2548,1244,'smush-complete','1'),(2549,1244,'smush-info','The file was compressed from 70.61 KB to 67.07 KB saving 5.02 percent using WP-Optimize'),(2550,1244,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:72308;s:12:\"smushed-size\";i:68680;s:15:\"savings-percent\";d:5.02;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:72308;s:10:\"compressed\";i:68680;}s:6:\"medium\";a:2:{s:8:\"original\";i:5864;s:10:\"compressed\";i:5270;}s:5:\"large\";a:2:{s:8:\"original\";i:43508;s:10:\"compressed\";i:38761;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:2719;s:10:\"compressed\";i:2450;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:27100;s:10:\"compressed\";i:24179;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:82600;s:10:\"compressed\";i:73456;}}}'),(2551,1245,'original-file','2023/06/CondensationBlog4-updraft-pre-smush-original.jpg'),(2552,1245,'smush-complete','1'),(2553,1245,'smush-info','The file was compressed from 668.57 KB to 585.68 KB saving 12.4 percent using WP-Optimize'),(2554,1245,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:684617;s:12:\"smushed-size\";i:599738;s:15:\"savings-percent\";d:12.4;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:684617;s:10:\"compressed\";i:599738;}s:6:\"medium\";a:2:{s:8:\"original\";i:14483;s:10:\"compressed\";i:12524;}s:5:\"large\";a:2:{s:8:\"original\";i:191075;s:10:\"compressed\";i:160766;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5615;s:10:\"compressed\";i:5071;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:105832;s:10:\"compressed\";i:89346;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:414725;s:10:\"compressed\";i:350254;}}}'),(2558,1231,'_wp_attachment_image_alt','residential electrical services'),(2559,1200,'_wp_attachment_image_alt','Juice Electrical LED Lighting'),(2560,1199,'_wp_attachment_image_alt','Iris Tilt 2A'),(2561,1198,'_wp_attachment_image_alt','Iris Tilt 2'),(2562,1197,'_wp_attachment_image_alt','Apollo-Mini-2'),(2563,1196,'_wp_attachment_image_alt','Apollo-2'),(2564,1173,'_wp_attachment_image_alt','warehouse industrial electrician christchurch'),(2565,1169,'_wp_attachment_image_alt','heat pump christchurch electrician'),(2566,1167,'_wp_attachment_image_alt','heat pump christchurch electrician'),(2567,1166,'_wp_attachment_image_alt','air conditioner christchurch electrician'),(2568,1162,'_wp_attachment_image_alt','living room led lighting electrician christchurch'),(2569,1160,'_wp_attachment_image_alt','residential electrician christchurch'),(2570,1157,'_wp_attachment_image_alt','Warehouse industrial lighting electrician christchurch'),(2571,1154,'_wp_attachment_image_alt','residential led lighting electrician christchurch'),(2572,1152,'_wp_attachment_image_alt','Juice Electrical Van and Greg'),(2573,1150,'_wp_attachment_image_alt','home ev/phev wall charger electrician christchurch'),(2574,1148,'_wp_attachment_image_alt','home automation electrician christchurch'),(2575,1147,'_wp_attachment_image_alt','home automation electrician christchurch'),(2576,1146,'_wp_attachment_image_alt','home automation electrician christchurch'),(2577,1139,'_wp_attachment_image_alt','Home Automation Socket'),(2578,1127,'_wp_attachment_image_alt','Home Automation switches'),(2579,1101,'_wp_attachment_image_alt','Heatpump in bedroom residential electrician christchurch'),(2580,1085,'_wp_attachment_image_alt','ev phev charger electrician christchurch'),(2581,1074,'_wp_attachment_image_alt','LED Lighting in Home electrician christchurch'),(2582,1066,'_wp_attachment_image_alt','local electrician christchurch'),(2583,1061,'_wp_attachment_image_alt','local electrician christchurch'),(2584,1057,'_wp_attachment_image_alt','local electrician christchurch'),(2585,1053,'_wp_attachment_image_alt','office electrician christchurch'),(2586,1052,'_wp_attachment_image_alt','heat pump installation electrician christchurch'),(2587,1046,'_wp_attachment_image_alt','Infinite Energy Cromwell'),(2588,1045,'_wp_attachment_image_alt','electrician christchurch solar power'),(2589,976,'_wp_attachment_image_alt','ev phev charger installation christchurch'),(2590,975,'_wp_attachment_image_alt','infinite Energy logo'),(2591,974,'_wp_attachment_image_alt','solar power electrician christchurch'),(2592,972,'_wp_attachment_image_alt','air conditioner installation electrician christchurch'),(2593,898,'_wp_attachment_image_alt','apollo-xl'),(2594,897,'_wp_attachment_image_alt','athena-batten'),(2595,896,'_wp_attachment_image_alt','revolution-flood'),(2596,895,'_wp_attachment_image_alt','avira-panel-1'),(2597,893,'_wp_attachment_image_alt','apollo-mini'),(2598,892,'_wp_attachment_image_alt','apollo-2'),(2599,891,'_wp_attachment_image_alt','apollo-tilt-1'),(2600,872,'_wp_attachment_image_alt','mitsubishi-electric-heatpump-EF-Series-black'),(2601,871,'_wp_attachment_image_alt','MSZ-AP60-80-1'),(2602,870,'_wp_attachment_image_alt','MSZ-AP50'),(2603,726,'_wp_attachment_image_alt','residential led lighting services electrician christchurch'),(2604,725,'_wp_attachment_image_alt','air conditioner heat pump services electrician christchurch'),(2605,724,'_wp_attachment_image_alt','residential led lighting services electrician christchurch'),(2606,723,'_wp_attachment_image_alt','Home automation services electrician christchurch'),(2607,722,'_wp_attachment_image_alt','electrician maintenance christchurch'),(2608,514,'_wp_attachment_image_alt','Juice Electrical Logo'),(2609,513,'_wp_attachment_image_alt','Juice Electrical Logo'),(2626,2,'_yoast_wpseo_content_score','60'),(2627,2,'_yoast_wpseo_estimated-reading-time-minutes','2'),(2628,2,'_yoast_wpseo_wordproof_timestamp',''),(2633,679,'_yoast_wpseo_content_score','90'),(2634,679,'_yoast_wpseo_estimated-reading-time-minutes','2'),(2635,679,'_yoast_wpseo_wordproof_timestamp',''),(2640,691,'_yoast_wpseo_content_score','90'),(2641,691,'_yoast_wpseo_estimated-reading-time-minutes','2'),(2642,691,'_yoast_wpseo_wordproof_timestamp',''),(2647,699,'_yoast_wpseo_content_score','90'),(2648,699,'_yoast_wpseo_estimated-reading-time-minutes','2'),(2649,699,'_yoast_wpseo_wordproof_timestamp',''),(2658,776,'_yoast_wpseo_content_score','90'),(2659,776,'_yoast_wpseo_estimated-reading-time-minutes','2'),(2660,776,'_yoast_wpseo_wordproof_timestamp',''),(2665,695,'_yoast_wpseo_content_score','30'),(2666,695,'_yoast_wpseo_estimated-reading-time-minutes','3'),(2667,695,'_yoast_wpseo_wordproof_timestamp',''),(2672,489,'_yoast_wpseo_content_score','30'),(2673,489,'_yoast_wpseo_estimated-reading-time-minutes','3'),(2674,489,'_yoast_wpseo_wordproof_timestamp',''),(2679,492,'_yoast_wpseo_content_score','30'),(2680,492,'_yoast_wpseo_estimated-reading-time-minutes','3'),(2681,492,'_yoast_wpseo_wordproof_timestamp',''),(2690,683,'_yoast_wpseo_content_score','60'),(2691,683,'_yoast_wpseo_estimated-reading-time-minutes','2'),(2692,683,'_yoast_wpseo_wordproof_timestamp',''),(2693,751,'_yoast_wpseo_estimated-reading-time-minutes','0'),(2694,751,'_yoast_wpseo_wordproof_timestamp',''),(2695,1245,'_wp_attachment_image_alt','condensation electrician home service christchurch'),(2696,1244,'_wp_attachment_image_alt','condensation electrician home service christchurch'),(2697,1243,'_wp_attachment_image_alt','condensation electrician home service christchurch'),(2698,1242,'_wp_attachment_image_alt','condensation electrician home service christchurch'),(2699,1229,'_wp_attachment_image_alt','residential electrical services'),(2700,1141,'_wp_attachment_image_alt','smart automation pips wi fi switches'),(2701,1268,'_edit_lock','1699304144:2'),(2705,1268,'_edit_last','2'),(2706,1268,'_yoast_wpseo_primary_category','1'),(2707,1268,'_yoast_wpseo_content_score','90'),(2708,1268,'_yoast_wpseo_estimated-reading-time-minutes','3'),(2709,1268,'_yoast_wpseo_wordproof_timestamp',''),(2710,1271,'_wp_attached_file','2023/08/FB-Banner-image.jpg'),(2711,1271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:27:\"2023/08/FB-Banner-image.jpg\";s:8:\"filesize\";i:345062;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"FB-Banner-image-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13167;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"FB-Banner-image-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94531;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"FB-Banner-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4292;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"FB-Banner-image-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58296;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"FB-Banner-image-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203411;}}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:{}}}'),(2712,1268,'_thumbnail_id','1271'),(2713,1272,'_wp_attached_file','2023/08/LED-Lighting-Electrician-Christchurch1.jpeg'),(2714,1272,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1280;s:4:\"file\";s:51:\"2023/08/LED-Lighting-Electrician-Christchurch1.jpeg\";s:8:\"filesize\";i:528333;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"LED-Lighting-Electrician-Christchurch1-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11172;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"LED-Lighting-Electrician-Christchurch1-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105449;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"LED-Lighting-Electrician-Christchurch1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6077;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"LED-Lighting-Electrician-Christchurch1-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62635;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"LED-Lighting-Electrician-Christchurch1-1536x768.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219838;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:53:\"LED-Lighting-Electrician-Christchurch1-2048x1024.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:359078;}}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:{}}}'),(2715,1273,'_wp_attached_file','2023/08/LED-Lighting-Electrician-Christchurch2.jpg'),(2716,1273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1996;s:6:\"height\";i:1331;s:4:\"file\";s:50:\"2023/08/LED-Lighting-Electrician-Christchurch2.jpg\";s:8:\"filesize\";i:507841;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"LED-Lighting-Electrician-Christchurch2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15792;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"LED-Lighting-Electrician-Christchurch2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"LED-Lighting-Electrician-Christchurch2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6625;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"LED-Lighting-Electrician-Christchurch2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85859;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"LED-Lighting-Electrician-Christchurch2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:310396;}}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:{}}}'),(2717,1274,'_wp_attached_file','2023/08/LED-Lighting-Electrician-Christchurch3.jpg'),(2718,1274,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1965;s:6:\"height\";i:1526;s:4:\"file\";s:50:\"2023/08/LED-Lighting-Electrician-Christchurch3.jpg\";s:8:\"filesize\";i:116395;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"LED-Lighting-Electrician-Christchurch3-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10274;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"LED-Lighting-Electrician-Christchurch3-1024x795.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52532;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"LED-Lighting-Electrician-Christchurch3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4924;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"LED-Lighting-Electrician-Christchurch3-768x596.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:596;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35589;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"LED-Lighting-Electrician-Christchurch3-1536x1193.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1193;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92729;}}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:{}}}'),(2719,1275,'_wp_attached_file','2023/08/LED-Lighting-Electrician-Christchurch4.jpg'),(2720,1275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:50:\"2023/08/LED-Lighting-Electrician-Christchurch4.jpg\";s:8:\"filesize\";i:130953;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"LED-Lighting-Electrician-Christchurch4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28871;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"LED-Lighting-Electrician-Christchurch4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8318;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"LED-Lighting-Electrician-Christchurch4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140742;}}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:{}}}'),(2723,1271,'original-file','2023/08/FB-Banner-image-updraft-pre-smush-original.jpg'),(2724,1271,'smush-complete','1'),(2725,1271,'smush-info','The file was compressed from 336.97 KB to 306.11 KB saving 9.16 percent using WP-Optimize'),(2726,1271,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:345062;s:12:\"smushed-size\";i:313458;s:15:\"savings-percent\";d:9.16;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:345062;s:10:\"compressed\";i:313458;}s:6:\"medium\";a:2:{s:8:\"original\";i:13167;s:10:\"compressed\";i:11460;}s:5:\"large\";a:2:{s:8:\"original\";i:94531;s:10:\"compressed\";i:80875;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4292;s:10:\"compressed\";i:3818;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:58296;s:10:\"compressed\";i:49977;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:203411;s:10:\"compressed\";i:173773;}}}'),(2727,1272,'smush-info','The file was compressed from 515.95 KB to 515.95 KB saving 0 percent using WP-Optimize'),(2728,1272,'smush-complete','1'),(2729,1272,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:528333;s:12:\"smushed-size\";i:528333;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:6:{s:6:\"medium\";a:2:{s:8:\"original\";i:11172;s:10:\"compressed\";i:9967;}s:5:\"large\";a:2:{s:8:\"original\";i:105449;s:10:\"compressed\";i:92312;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6077;s:10:\"compressed\";i:5516;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:62635;s:10:\"compressed\";i:54693;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:219838;s:10:\"compressed\";i:192377;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:359078;s:10:\"compressed\";i:314785;}}}'),(2730,1273,'original-file','2023/08/LED-Lighting-Electrician-Christchurch2-updraft-pre-smush-original.jpg'),(2731,1273,'smush-complete','1'),(2732,1273,'smush-info','The file was compressed from 495.94 KB to 460.07 KB saving 7.23 percent using WP-Optimize'),(2733,1273,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:507841;s:12:\"smushed-size\";i:471107;s:15:\"savings-percent\";d:7.23;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:507841;s:10:\"compressed\";i:471107;}s:6:\"medium\";a:2:{s:8:\"original\";i:15792;s:10:\"compressed\";i:13875;}s:5:\"large\";a:2:{s:8:\"original\";i:147202;s:10:\"compressed\";i:128192;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6625;s:10:\"compressed\";i:5955;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:85859;s:10:\"compressed\";i:74895;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:310396;s:10:\"compressed\";i:271573;}}}'),(2734,1274,'original-file','2023/08/LED-Lighting-Electrician-Christchurch3-updraft-pre-smush-original.jpg'),(2735,1274,'smush-complete','1'),(2736,1274,'smush-info','The file was compressed from 113.67 KB to 107.40 KB saving 5.51 percent using WP-Optimize'),(2737,1274,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:116395;s:12:\"smushed-size\";i:109978;s:15:\"savings-percent\";d:5.51;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:116395;s:10:\"compressed\";i:109978;}s:6:\"medium\";a:2:{s:8:\"original\";i:10274;s:10:\"compressed\";i:9488;}s:5:\"large\";a:2:{s:8:\"original\";i:52532;s:10:\"compressed\";i:48583;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4924;s:10:\"compressed\";i:4490;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:35589;s:10:\"compressed\";i:32880;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:92729;s:10:\"compressed\";i:85311;}}}'),(2738,1275,'original-file','2023/08/LED-Lighting-Electrician-Christchurch4-updraft-pre-smush-original.jpg'),(2739,1275,'smush-complete','1'),(2740,1275,'smush-info','The file was compressed from 127.88 KB to 127.88 KB saving 0 percent using WP-Optimize'),(2741,1275,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:130953;s:12:\"smushed-size\";i:130953;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:130953;s:10:\"compressed\";i:130953;}s:6:\"medium\";a:2:{s:8:\"original\";i:28871;s:10:\"compressed\";i:25185;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:8318;s:10:\"compressed\";i:7588;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:140742;s:10:\"compressed\";i:123660;}}}'),(2749,1283,'_edit_lock','1699304123:2'),(2750,1283,'_edit_last','2'),(2751,1283,'_yoast_wpseo_primary_category','1'),(2752,1283,'_yoast_wpseo_estimated-reading-time-minutes','3'),(2753,1283,'_yoast_wpseo_wordproof_timestamp',''),(2754,1285,'_wp_attached_file','2023/10/Blog-Banner-scaled.jpg'),(2755,1285,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:853;s:4:\"file\";s:30:\"2023/10/Blog-Banner-scaled.jpg\";s:8:\"filesize\";i:161815;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Blog-Banner-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16338;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Blog-Banner-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49146;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Blog-Banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15376;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Blog-Banner-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35057;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"Blog-Banner-1536x512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81476;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"Blog-Banner-2048x683.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121243;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"Blog-Banner.jpg\";}'),(2756,1286,'_wp_attached_file','2023/10/Google_3.jpg'),(2757,1286,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:20:\"2023/10/Google_3.jpg\";s:8:\"filesize\";i:436513;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Google_3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31352;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"Google_3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Google_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20633;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Google_3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75255;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2758,1287,'_wp_attached_file','2023/10/Google_3-edited.jpg'),(2759,1287,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:27:\"2023/10/Google_3-edited.jpg\";s:8:\"filesize\";i:124041;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Google_3-edited-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28896;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Google_3-edited-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Google_3-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20435;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Google_3-edited-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66511;}}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\";i:1;s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1286\";s:4:\"file\";s:20:\"2023/10/Google_3.jpg\";}}'),(2760,1288,'_wp_attached_file','2023/10/Google_3-edited-1.jpg'),(2761,1288,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1280;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2023/10/Google_3-edited-1.jpg\";s:8:\"filesize\";i:111444;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Google_3-edited-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27006;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Google_3-edited-1-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81603;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Google_3-edited-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20248;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Google_3-edited-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60058;}}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\";i:1;s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1287\";s:4:\"file\";s:27:\"2023/10/Google_3-edited.jpg\";}}'),(2762,1290,'_wp_attached_file','2023/10/Home-Automation-Banner.jpg'),(2763,1290,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1356;s:6:\"height\";i:668;s:4:\"file\";s:34:\"2023/10/Home-Automation-Banner.jpg\";s:8:\"filesize\";i:375373;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Home-Automation-Banner-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21369;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Home-Automation-Banner-1024x504.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80133;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Home-Automation-Banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15873;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Home-Automation-Banner-768x378.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56001;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2764,1285,'original-file','2023/10/Blog-Banner-scaled-updraft-pre-smush-original.jpg'),(2765,1285,'smush-complete','1'),(2766,1285,'smush-info','The file was compressed from 158.02 KB to 109.78 KB, saving 30.53 percent, using WP-Optimize'),(2767,1285,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:161815;s:12:\"smushed-size\";i:112413;s:15:\"savings-percent\";d:30.53;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:161815;s:10:\"compressed\";i:112413;}s:6:\"medium\";a:2:{s:8:\"original\";i:16338;s:10:\"compressed\";i:14544;}s:5:\"large\";a:2:{s:8:\"original\";i:49146;s:10:\"compressed\";i:36987;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:15376;s:10:\"compressed\";i:13971;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:35057;s:10:\"compressed\";i:27307;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:81476;s:10:\"compressed\";i:58462;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:121243;s:10:\"compressed\";i:85575;}}}'),(2768,1291,'_wp_attached_file','2023/10/shelly25-1-2000x2000-1.jpeg'),(2769,1291,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:35:\"2023/10/shelly25-1-2000x2000-1.jpeg\";s:8:\"filesize\";i:350163;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shelly25-1-2000x2000-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15285;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"shelly25-1-2000x2000-1-1024x1024.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shelly25-1-2000x2000-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5554;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shelly25-1-2000x2000-1-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61087;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"shelly25-1-2000x2000-1-1536x1536.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174530;}}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:{}}}'),(2770,1286,'original-file','2023/10/Google_3-updraft-pre-smush-original.jpg'),(2771,1286,'smush-complete','1'),(2772,1286,'smush-info','The file was compressed from 426.28 KB to 95.70 KB, saving 77.55 percent, using WP-Optimize'),(2773,1286,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:436513;s:12:\"smushed-size\";i:97994;s:15:\"savings-percent\";d:77.55;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:436513;s:10:\"compressed\";i:97994;}s:6:\"medium\";a:2:{s:8:\"original\";i:31352;s:10:\"compressed\";i:25983;}s:5:\"large\";a:2:{s:8:\"original\";i:103800;s:10:\"compressed\";i:74628;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:20633;s:10:\"compressed\";i:18829;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:75255;s:10:\"compressed\";i:55569;}}}'),(2774,1287,'original-file','2023/10/Google_3-edited-updraft-pre-smush-original.jpg'),(2775,1287,'smush-complete','1'),(2776,1287,'smush-info','The file was compressed from 121.13 KB to 89.31 KB, saving 26.27 percent, using WP-Optimize'),(2777,1287,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:124041;s:12:\"smushed-size\";i:91451;s:15:\"savings-percent\";d:26.27;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:124041;s:10:\"compressed\";i:91451;}s:6:\"medium\";a:2:{s:8:\"original\";i:28896;s:10:\"compressed\";i:24381;}s:5:\"large\";a:2:{s:8:\"original\";i:91198;s:10:\"compressed\";i:66469;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:20435;s:10:\"compressed\";i:18689;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:66511;s:10:\"compressed\";i:49893;}}}'),(2778,1288,'original-file','2023/10/Google_3-edited-1-updraft-pre-smush-original.jpg'),(2779,1292,'_wp_attached_file','2023/10/shelly25-1-2000x2000-1-edited.jpeg'),(2780,1292,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2000;s:6:\"height\";i:1250;s:4:\"file\";s:42:\"2023/10/shelly25-1-2000x2000-1-edited.jpeg\";s:8:\"filesize\";i:236904;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"shelly25-1-2000x2000-1-edited-300x188.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13012;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"shelly25-1-2000x2000-1-edited-1024x640.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78665;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"shelly25-1-2000x2000-1-edited-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6323;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"shelly25-1-2000x2000-1-edited-768x480.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51451;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"shelly25-1-2000x2000-1-edited-1536x960.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146889;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1291\";s:4:\"file\";s:35:\"2023/10/shelly25-1-2000x2000-1.jpeg\";}}'),(2781,1288,'smush-complete','1'),(2782,1288,'smush-info','The file was compressed from 108.83 KB to 80.90 KB, saving 25.67 percent, using WP-Optimize'),(2783,1288,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:111444;s:12:\"smushed-size\";i:82840;s:15:\"savings-percent\";d:25.67;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:111444;s:10:\"compressed\";i:82840;}s:6:\"medium\";a:2:{s:8:\"original\";i:27006;s:10:\"compressed\";i:23023;}s:5:\"large\";a:2:{s:8:\"original\";i:81603;s:10:\"compressed\";i:59993;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:20248;s:10:\"compressed\";i:18522;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:60058;s:10:\"compressed\";i:45440;}}}'),(2784,1290,'original-file','2023/10/Home-Automation-Banner-updraft-pre-smush-original.jpg'),(2785,1290,'smush-complete','1'),(2786,1290,'smush-info','The file was compressed from 366.58 KB to 91.35 KB, saving 75.08 percent, using WP-Optimize'),(2787,1290,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:375373;s:12:\"smushed-size\";i:93547;s:15:\"savings-percent\";d:75.08;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:375373;s:10:\"compressed\";i:93547;}s:6:\"medium\";a:2:{s:8:\"original\";i:21369;s:10:\"compressed\";i:18532;}s:5:\"large\";a:2:{s:8:\"original\";i:80133;s:10:\"compressed\";i:62020;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:15873;s:10:\"compressed\";i:14673;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:56001;s:10:\"compressed\";i:43955;}}}'),(2788,1293,'_wp_attached_file','2023/10/home-charging-Banner.jpg'),(2789,1293,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1356;s:6:\"height\";i:668;s:4:\"file\";s:32:\"2023/10/home-charging-Banner.jpg\";s:8:\"filesize\";i:322544;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"home-charging-Banner-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22987;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"home-charging-Banner-1024x504.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74675;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"home-charging-Banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17582;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"home-charging-Banner-768x378.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54560;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2790,1283,'_thumbnail_id','1285'),(2791,1283,'_yoast_wpseo_content_score','60'),(2792,1291,'original-file','2023/10/shelly25-1-2000x2000-1-updraft-pre-smush-original.jpeg'),(2793,1291,'smush-complete','1'),(2794,1291,'smush-info','The file was compressed from 341.96 KB to 189.95 KB, saving 44.45 percent, using WP-Optimize'),(2795,1291,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:350163;s:12:\"smushed-size\";i:194510;s:15:\"savings-percent\";d:44.45;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:350163;s:10:\"compressed\";i:194510;}s:6:\"medium\";a:2:{s:8:\"original\";i:15285;s:10:\"compressed\";i:13392;}s:5:\"large\";a:2:{s:8:\"original\";i:94221;s:10:\"compressed\";i:83286;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5554;s:10:\"compressed\";i:4929;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:61087;s:10:\"compressed\";i:53905;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:174530;s:10:\"compressed\";i:154973;}}}'),(2796,1292,'original-file','2023/10/shelly25-1-2000x2000-1-edited-updraft-pre-smush-original.jpeg'),(2797,1292,'smush-complete','1'),(2798,1292,'smush-info','The file was compressed from 231.35 KB to 205.14 KB, saving 11.33 percent, using WP-Optimize'),(2799,1292,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:236904;s:12:\"smushed-size\";i:210065;s:15:\"savings-percent\";d:11.33;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:236904;s:10:\"compressed\";i:210065;}s:6:\"medium\";a:2:{s:8:\"original\";i:13012;s:10:\"compressed\";i:11458;}s:5:\"large\";a:2:{s:8:\"original\";i:78665;s:10:\"compressed\";i:69724;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6323;s:10:\"compressed\";i:5635;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:51451;s:10:\"compressed\";i:45355;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:146889;s:10:\"compressed\";i:130212;}}}'),(2800,1293,'original-file','2023/10/home-charging-Banner-updraft-pre-smush-original.jpg'),(2801,1293,'smush-complete','1'),(2802,1293,'smush-info','The file was compressed from 314.98 KB to 83.52 KB, saving 73.48 percent, using WP-Optimize'),(2803,1293,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:322544;s:12:\"smushed-size\";i:85527;s:15:\"savings-percent\";d:73.48;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:322544;s:10:\"compressed\";i:85527;}s:6:\"medium\";a:2:{s:8:\"original\";i:22987;s:10:\"compressed\";i:20043;}s:5:\"large\";a:2:{s:8:\"original\";i:74675;s:10:\"compressed\";i:58540;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:17582;s:10:\"compressed\";i:15992;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:54560;s:10:\"compressed\";i:43429;}}}'),(2806,1283,'footnotes',''),(2809,1303,'_edit_lock','1704839153:2'),(2811,1303,'_edit_last','2'),(2812,1303,'_yoast_wpseo_primary_category','1'),(2813,1303,'_yoast_wpseo_content_score','60'),(2814,1303,'_yoast_wpseo_estimated-reading-time-minutes','2'),(2815,1303,'_yoast_wpseo_wordproof_timestamp',''),(2817,1313,'_wp_attached_file','2023/12/festoon-lighting-2.jpg'),(2818,1313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1313;s:4:\"file\";s:30:\"2023/12/festoon-lighting-2.jpg\";s:8:\"filesize\";i:2058244;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"festoon-lighting-2-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36991;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"festoon-lighting-2-1024x672.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:241255;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"festoon-lighting-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22454;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"festoon-lighting-2-768x504.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149478;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"festoon-lighting-2-1536x1008.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1008;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:469917;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2819,1303,'_thumbnail_id','1313'),(2820,1313,'original-file','2023/12/festoon-lighting-2-updraft-pre-smush-original.jpg'),(2821,1313,'smush-complete','1'),(2822,1313,'smush-info','The file was compressed from 1.96 MB to 496.42 KB, saving 75.3 percent, using WP-Optimize'),(2823,1313,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:2058244;s:12:\"smushed-size\";i:508331;s:15:\"savings-percent\";d:75.3;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:2058244;s:10:\"compressed\";i:508331;}s:6:\"medium\";a:2:{s:8:\"original\";i:36991;s:10:\"compressed\";i:28649;}s:5:\"large\";a:2:{s:8:\"original\";i:241255;s:10:\"compressed\";i:168320;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:22454;s:10:\"compressed\";i:19227;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:149478;s:10:\"compressed\";i:104319;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:469917;s:10:\"compressed\";i:331659;}}}'),(2824,1316,'_wp_attached_file','2023/12/Dereko-2.jpg'),(2825,1316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:20:\"2023/12/Dereko-2.jpg\";s:8:\"filesize\";i:1081569;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Dereko-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49625;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"Dereko-2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237340;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Dereko-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29271;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Dereko-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155380;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2826,1317,'_wp_attached_file','2023/12/wiz-1.jpg'),(2827,1317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1999;s:6:\"height\";i:1829;s:4:\"file\";s:17:\"2023/12/wiz-1.jpg\";s:8:\"filesize\";i:1319244;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"wiz-1-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31631;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"wiz-1-1024x937.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:937;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157864;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"wiz-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18159;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"wiz-1-768x703.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:703;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103950;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"wiz-1-1536x1405.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1405;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282188;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2829,1319,'_wp_attached_file','2023/12/wiz-1-edited.jpg'),(2830,1319,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1829;s:6:\"height\";i:1829;s:4:\"file\";s:24:\"2023/12/wiz-1-edited.jpg\";s:8:\"filesize\";i:410642;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"wiz-1-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33298;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"wiz-1-edited-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169228;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"wiz-1-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18158;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"wiz-1-edited-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111599;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"wiz-1-edited-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304879;}}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\";i:1;s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1317\";s:4:\"file\";s:17:\"2023/12/wiz-1.jpg\";}}'),(2831,1316,'original-file','2023/12/Dereko-2-updraft-pre-smush-original.jpg'),(2832,1316,'smush-complete','1'),(2833,1316,'smush-info','The file was compressed from 1.03 MB to 263.45 KB, saving 75.06 percent, using WP-Optimize'),(2834,1316,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:1081569;s:12:\"smushed-size\";i:269777;s:15:\"savings-percent\";d:75.06;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:1081569;s:10:\"compressed\";i:269777;}s:6:\"medium\";a:2:{s:8:\"original\";i:49625;s:10:\"compressed\";i:37700;}s:5:\"large\";a:2:{s:8:\"original\";i:237340;s:10:\"compressed\";i:148080;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:29271;s:10:\"compressed\";i:25833;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:155380;s:10:\"compressed\";i:100349;}}}'),(2835,1317,'original-file','2023/12/wiz-1-updraft-pre-smush-original.jpg'),(2836,1317,'smush-complete','1'),(2837,1317,'smush-info','The file was compressed from 1.26 MB to 286.47 KB, saving 77.76 percent, using WP-Optimize'),(2838,1317,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:1319244;s:12:\"smushed-size\";i:293349;s:15:\"savings-percent\";d:77.76;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:1319244;s:10:\"compressed\";i:293349;}s:6:\"medium\";a:2:{s:8:\"original\";i:31631;s:10:\"compressed\";i:24679;}s:5:\"large\";a:2:{s:8:\"original\";i:157864;s:10:\"compressed\";i:110041;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:18159;s:10:\"compressed\";i:15910;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:103950;s:10:\"compressed\";i:73196;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:282188;s:10:\"compressed\";i:197236;}}}'),(2839,1319,'original-file','2023/12/wiz-1-edited-updraft-pre-smush-original.jpg'),(2840,1319,'smush-complete','1'),(2841,1319,'smush-info','The file was compressed from 401.02 KB to 289.14 KB, saving 27.9 percent, using WP-Optimize'),(2842,1319,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:410642;s:12:\"smushed-size\";i:296076;s:15:\"savings-percent\";d:27.9;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:410642;s:10:\"compressed\";i:296076;}s:6:\"medium\";a:2:{s:8:\"original\";i:33298;s:10:\"compressed\";i:25765;}s:5:\"large\";a:2:{s:8:\"original\";i:169228;s:10:\"compressed\";i:118268;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:18158;s:10:\"compressed\";i:15915;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:111599;s:10:\"compressed\";i:78569;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:304879;s:10:\"compressed\";i:213925;}}}'),(2845,1324,'_edit_lock','1709678839:2'),(2846,1325,'_wp_attached_file','2024/01/JuiceElectrical-January-FBPost2-scaled.jpg'),(2847,1325,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1945;s:4:\"file\";s:50:\"2024/01/JuiceElectrical-January-FBPost2-scaled.jpg\";s:8:\"filesize\";i:974083;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"JuiceElectrical-January-FBPost2-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17213;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"JuiceElectrical-January-FBPost2-1024x778.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184725;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"JuiceElectrical-January-FBPost2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5649;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"JuiceElectrical-January-FBPost2-768x583.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107063;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"JuiceElectrical-January-FBPost2-1536x1167.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:393369;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"JuiceElectrical-January-FBPost2-2048x1556.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1556;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:662169;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"JuiceElectrical-January-FBPost2.jpg\";}'),(2848,1326,'_wp_attached_file','2024/01/airconditioningsummersleep-scaled.jpg'),(2849,1326,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:45:\"2024/01/airconditioningsummersleep-scaled.jpg\";s:8:\"filesize\";i:173171;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"airconditioningsummersleep-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6277;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"airconditioningsummersleep-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"airconditioningsummersleep-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2789;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"airconditioningsummersleep-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25578;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"airconditioningsummersleep-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74466;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"airconditioningsummersleep-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:30:\"airconditioningsummersleep.jpg\";}'),(2850,1325,'original-file','2024/01/JuiceElectrical-January-FBPost2-scaled-updraft-pre-smush-original.jpg'),(2851,1325,'smush-complete','1'),(2852,1325,'smush-info','The file was compressed from 951.25 KB to 834.59 KB, saving 12.26 percent, using WP-Optimize'),(2853,1325,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:974083;s:12:\"smushed-size\";i:854621;s:15:\"savings-percent\";d:12.26;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:974083;s:10:\"compressed\";i:854621;}s:6:\"medium\";a:2:{s:8:\"original\";i:17213;s:10:\"compressed\";i:15183;}s:5:\"large\";a:2:{s:8:\"original\";i:184725;s:10:\"compressed\";i:161106;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5649;s:10:\"compressed\";i:5151;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:107063;s:10:\"compressed\";i:93653;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:393369;s:10:\"compressed\";i:343668;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:662169;s:10:\"compressed\";i:578407;}}}'),(2854,1326,'original-file','2024/01/airconditioningsummersleep-scaled-updraft-pre-smush-original.jpg'),(2855,1326,'smush-complete','1'),(2856,1326,'smush-info','The file was compressed from 169.11 KB to 155.90 KB, saving 7.81 percent, using WP-Optimize'),(2857,1326,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:173171;s:12:\"smushed-size\";i:159639;s:15:\"savings-percent\";d:7.81;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:173171;s:10:\"compressed\";i:159639;}s:6:\"medium\";a:2:{s:8:\"original\";i:6277;s:10:\"compressed\";i:5667;}s:5:\"large\";a:2:{s:8:\"original\";i:39912;s:10:\"compressed\";i:36058;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:2789;s:10:\"compressed\";i:2535;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:25578;s:10:\"compressed\";i:23140;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:74466;s:10:\"compressed\";i:67729;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:118362;s:10:\"compressed\";i:108526;}}}'),(2858,1324,'_edit_last','2'),(2859,1324,'_yoast_wpseo_primary_category','1'),(2860,1324,'_yoast_wpseo_content_score','30'),(2861,1324,'_yoast_wpseo_estimated-reading-time-minutes','5'),(2862,1324,'_yoast_wpseo_wordproof_timestamp',''),(2863,1328,'_wp_attached_file','2024/01/InfiniteEnergySolar-scaled.jpg'),(2864,1328,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:38:\"2024/01/InfiniteEnergySolar-scaled.jpg\";s:8:\"filesize\";i:896697;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"InfiniteEnergySolar-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12936;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"InfiniteEnergySolar-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"InfiniteEnergySolar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5718;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"InfiniteEnergySolar-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77215;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"InfiniteEnergySolar-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:323641;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"InfiniteEnergySolar-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:584024;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"InfiniteEnergySolar.jpg\";}'),(2865,1324,'_thumbnail_id','1328'),(2866,1328,'original-file','2024/01/InfiniteEnergySolar-scaled-updraft-pre-smush-original.jpg'),(2867,1328,'smush-complete','1'),(2868,1328,'smush-info','The file was compressed from 875.68 KB to 757.30 KB, saving 13.52 percent, using WP-Optimize'),(2869,1328,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:896697;s:12:\"smushed-size\";i:775476;s:15:\"savings-percent\";d:13.52;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:896697;s:10:\"compressed\";i:775476;}s:6:\"medium\";a:2:{s:8:\"original\";i:12936;s:10:\"compressed\";i:11441;}s:5:\"large\";a:2:{s:8:\"original\";i:139121;s:10:\"compressed\";i:119900;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5718;s:10:\"compressed\";i:5193;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:77215;s:10:\"compressed\";i:66846;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:323641;s:10:\"compressed\";i:278556;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:584024;s:10:\"compressed\";i:503359;}}}'),(2878,1334,'_edit_lock','1709606604:2'),(2879,1335,'_wp_attached_file','2024/01/electric-charger3.jpg'),(2880,1335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1336;s:6:\"height\";i:890;s:4:\"file\";s:29:\"2024/01/electric-charger3.jpg\";s:8:\"filesize\";i:782869;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"electric-charger3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33786;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"electric-charger3-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155359;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"electric-charger3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26267;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"electric-charger3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99218;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1677107359\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2881,1336,'_wp_attached_file','2024/01/messy-charging.png'),(2882,1336,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:941;s:4:\"file\";s:26:\"2024/01/messy-charging.png\";s:8:\"filesize\";i:2055066;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"messy-charging-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117066;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"messy-charging-1024x642.png\";s:5:\"width\";i:1024;s:6:\"height\";i:642;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1228029;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"messy-charging-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48493;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"messy-charging-768x482.png\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:713823;}}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:{}}}'),(2883,1337,'_wp_attached_file','2024/01/electric-charger2.jpg'),(2884,1337,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:29:\"2024/01/electric-charger2.jpg\";s:8:\"filesize\";i:104824;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"electric-charger2-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15469;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"electric-charger2-1024x536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"electric-charger2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10250;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"electric-charger2-768x402.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55506;}}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:{}}}'),(2885,1338,'_wp_attached_file','2024/01/man-charging-ev-home-desktop.jpg'),(2886,1338,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:576;s:4:\"file\";s:40:\"2024/01/man-charging-ev-home-desktop.jpg\";s:8:\"filesize\";i:729337;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"man-charging-ev-home-desktop-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23676;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"man-charging-ev-home-desktop-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120426;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"man-charging-ev-home-desktop-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17948;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"man-charging-ev-home-desktop-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79025;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2887,1334,'_thumbnail_id','1338'),(2888,1334,'_edit_last','2'),(2889,1334,'_yoast_wpseo_primary_category','1'),(2890,1334,'_yoast_wpseo_content_score','90'),(2891,1334,'_yoast_wpseo_estimated-reading-time-minutes','4'),(2892,1334,'_yoast_wpseo_wordproof_timestamp',''),(2893,1335,'original-file','2024/01/electric-charger3-updraft-pre-smush-original.jpg'),(2894,1335,'smush-complete','1'),(2895,1335,'smush-info','The file was compressed from 764.52 KB to 198.73 KB, saving 74.01 percent, using WP-Optimize'),(2896,1335,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:782869;s:12:\"smushed-size\";i:203500;s:15:\"savings-percent\";d:74.01;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:782869;s:10:\"compressed\";i:203500;}s:6:\"medium\";a:2:{s:8:\"original\";i:33786;s:10:\"compressed\";i:31270;}s:5:\"large\";a:2:{s:8:\"original\";i:155359;s:10:\"compressed\";i:125913;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:26267;s:10:\"compressed\";i:25366;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:99218;s:10:\"compressed\";i:82304;}}}'),(2897,1336,'original-file','2024/01/messy-charging-updraft-pre-smush-original.png'),(2898,1336,'smush-complete','1'),(2899,1336,'smush-info','The file was compressed from 1.96 MB to 815.17 KB, saving 59.38 percent, using WP-Optimize'),(2900,1336,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:2055066;s:12:\"smushed-size\";i:834738;s:15:\"savings-percent\";d:59.38;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:2055066;s:10:\"compressed\";i:834738;}s:6:\"medium\";a:2:{s:8:\"original\";i:117066;s:10:\"compressed\";i:41868;}s:5:\"large\";a:2:{s:8:\"original\";i:1228029;s:10:\"compressed\";i:419921;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:48493;s:10:\"compressed\";i:19212;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:713823;s:10:\"compressed\";i:243948;}}}'),(2901,1337,'original-file','2024/01/electric-charger2-updraft-pre-smush-original.jpg'),(2902,1337,'smush-complete','1'),(2903,1337,'smush-info','The file was compressed from 102.37 KB to 95.88 KB, saving 6.34 percent, using WP-Optimize'),(2904,1337,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:104824;s:12:\"smushed-size\";i:98179;s:15:\"savings-percent\";d:6.34;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:104824;s:10:\"compressed\";i:98179;}s:6:\"medium\";a:2:{s:8:\"original\";i:15469;s:10:\"compressed\";i:13946;}s:5:\"large\";a:2:{s:8:\"original\";i:83986;s:10:\"compressed\";i:74292;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:10250;s:10:\"compressed\";i:9456;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:55506;s:10:\"compressed\";i:49069;}}}'),(2905,1338,'original-file','2024/01/man-charging-ev-home-desktop-updraft-pre-smush-original.jpg'),(2906,1338,'smush-complete','1'),(2907,1338,'smush-info','The file was compressed from 712.24 KB to 146.84 KB, saving 79.38 percent, using WP-Optimize'),(2908,1338,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:729337;s:12:\"smushed-size\";i:150369;s:15:\"savings-percent\";d:79.38;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:729337;s:10:\"compressed\";i:150369;}s:6:\"medium\";a:2:{s:8:\"original\";i:23676;s:10:\"compressed\";i:19842;}s:5:\"large\";a:2:{s:8:\"original\";i:120426;s:10:\"compressed\";i:86716;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:17948;s:10:\"compressed\";i:15687;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:79025;s:10:\"compressed\";i:58603;}}}'),(2912,1345,'_edit_lock','1733877445:2'),(2913,1346,'_wp_attached_file','2024/03/Infrared-Radiant-Heater-Juice-Electrical2-scaled.jpg'),(2914,1346,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:60:\"2024/03/Infrared-Radiant-Heater-Juice-Electrical2-scaled.jpg\";s:8:\"filesize\";i:530857;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Infrared-Radiant-Heater-Juice-Electrical2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12685;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Infrared-Radiant-Heater-Juice-Electrical2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96775;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Infrared-Radiant-Heater-Juice-Electrical2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5314;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Infrared-Radiant-Heater-Juice-Electrical2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59365;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Infrared-Radiant-Heater-Juice-Electrical2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198004;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Infrared-Radiant-Heater-Juice-Electrical2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:343754;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"Infrared-Radiant-Heater-Juice-Electrical2.jpg\";}'),(2915,1347,'_wp_attached_file','2024/03/Infrared-Radiant-Heater-Juice-Electrical1.jpg'),(2916,1348,'_wp_attached_file','2024/03/Infrared-Radiant-Heater-Juice-Electrical3-scaled.jpg'),(2917,1348,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:60:\"2024/03/Infrared-Radiant-Heater-Juice-Electrical3-scaled.jpg\";s:8:\"filesize\";i:523335;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Infrared-Radiant-Heater-Juice-Electrical3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14764;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Infrared-Radiant-Heater-Juice-Electrical3-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120613;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Infrared-Radiant-Heater-Juice-Electrical3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6165;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Infrared-Radiant-Heater-Juice-Electrical3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76142;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Infrared-Radiant-Heater-Juice-Electrical3-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228707;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Infrared-Radiant-Heater-Juice-Electrical3-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:364020;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"Infrared-Radiant-Heater-Juice-Electrical3.jpg\";}'),(2918,1349,'_wp_attached_file','2024/03/Infrared-Radiant-Heater-Juice-Electrical4-scaled.jpg'),(2919,1349,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:60:\"2024/03/Infrared-Radiant-Heater-Juice-Electrical4-scaled.jpg\";s:8:\"filesize\";i:141110;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Infrared-Radiant-Heater-Juice-Electrical4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4607;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Infrared-Radiant-Heater-Juice-Electrical4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32685;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Infrared-Radiant-Heater-Juice-Electrical4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2120;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Infrared-Radiant-Heater-Juice-Electrical4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20136;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Infrared-Radiant-Heater-Juice-Electrical4-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61558;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Infrared-Radiant-Heater-Juice-Electrical4-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97962;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"Infrared-Radiant-Heater-Juice-Electrical4.jpg\";}'),(2920,1350,'_wp_attached_file','2024/03/Infrared-Radiant-Heater-Juice-Electrical1-1.jpg'),(2923,1345,'_thumbnail_id','1348'),(2924,1345,'_edit_last','2'),(2925,1345,'_yoast_wpseo_primary_category','1'),(2926,1345,'_yoast_wpseo_content_score','60'),(2927,1345,'_yoast_wpseo_estimated-reading-time-minutes','3'),(2928,1345,'_yoast_wpseo_wordproof_timestamp',''),(2929,1346,'original-file','2024/03/Infrared-Radiant-Heater-Juice-Electrical2-scaled-updraft-pre-smush-original.jpg'),(2930,1346,'smush-complete','1'),(2931,1346,'smush-info','The file was compressed from 518.42 KB to 453.41 KB, saving 12.54 percent, using WP-Optimize'),(2932,1346,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:530857;s:12:\"smushed-size\";i:464288;s:15:\"savings-percent\";d:12.54;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:530857;s:10:\"compressed\";i:464288;}s:6:\"medium\";a:2:{s:8:\"original\";i:12685;s:10:\"compressed\";i:11234;}s:5:\"large\";a:2:{s:8:\"original\";i:96775;s:10:\"compressed\";i:84177;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5314;s:10:\"compressed\";i:4769;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:59365;s:10:\"compressed\";i:51649;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:198004;s:10:\"compressed\";i:173009;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:343754;s:10:\"compressed\";i:300908;}}}'),(2933,1347,'original-file','2024/03/Infrared-Radiant-Heater-Juice-Electrical1-updraft-pre-smush-original.jpg'),(2934,1347,'smush-complete','1'),(2935,1347,'smush-info','The file was compressed from 1.84 MB to 1.80 MB, saving 1.93 percent, using WP-Optimize'),(2936,1347,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:1928282;s:12:\"smushed-size\";i:1891016;s:15:\"savings-percent\";d:1.93;s:10:\"sizes-info\";a:1:{s:4:\"full\";a:2:{s:8:\"original\";i:1928282;s:10:\"compressed\";i:1891016;}}}'),(2937,1348,'original-file','2024/03/Infrared-Radiant-Heater-Juice-Electrical3-scaled-updraft-pre-smush-original.jpg'),(2938,1348,'smush-complete','1'),(2939,1348,'smush-info','The file was compressed from 511.07 KB to 445.76 KB, saving 12.78 percent, using WP-Optimize'),(2940,1348,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:523335;s:12:\"smushed-size\";i:456459;s:15:\"savings-percent\";d:12.78;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:523335;s:10:\"compressed\";i:456459;}s:6:\"medium\";a:2:{s:8:\"original\";i:14764;s:10:\"compressed\";i:12494;}s:5:\"large\";a:2:{s:8:\"original\";i:120613;s:10:\"compressed\";i:102842;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6165;s:10:\"compressed\";i:5322;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:76142;s:10:\"compressed\";i:64116;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:228707;s:10:\"compressed\";i:197377;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:364020;s:10:\"compressed\";i:315785;}}}'),(2941,1349,'original-file','2024/03/Infrared-Radiant-Heater-Juice-Electrical4-scaled-updraft-pre-smush-original.jpg'),(2942,1349,'smush-complete','1'),(2943,1349,'smush-info','The file was compressed from 137.80 KB to 118.47 KB, saving 14.03 percent, using WP-Optimize'),(2944,1349,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:141110;s:12:\"smushed-size\";i:121313;s:15:\"savings-percent\";d:14.03;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:141110;s:10:\"compressed\";i:121313;}s:6:\"medium\";a:2:{s:8:\"original\";i:4607;s:10:\"compressed\";i:4072;}s:5:\"large\";a:2:{s:8:\"original\";i:32685;s:10:\"compressed\";i:27754;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:2120;s:10:\"compressed\";i:1906;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:20136;s:10:\"compressed\";i:17331;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:61558;s:10:\"compressed\";i:52371;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:97962;s:10:\"compressed\";i:84008;}}}'),(2945,1350,'original-file','2024/03/Infrared-Radiant-Heater-Juice-Electrical1-1-updraft-pre-smush-original.jpg'),(2946,1350,'smush-complete','1'),(2947,1350,'smush-info','The file was compressed from 1.84 MB to 1.80 MB, saving 1.93 percent, using WP-Optimize'),(2948,1350,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:1928282;s:12:\"smushed-size\";i:1891016;s:15:\"savings-percent\";d:1.93;s:10:\"sizes-info\";a:1:{s:4:\"full\";a:2:{s:8:\"original\";i:1928282;s:10:\"compressed\";i:1891016;}}}'),(2953,4,'_yoast_wpseo_metadesc','Dive into Juice Electrical\'s Latest Info for insights on eco-friendly heating, safe EV charging, innovative lighting, and smart home automation tips.'),(2954,4,'_yoast_wpseo_estimated-reading-time-minutes','0'),(2955,4,'_yoast_wpseo_wordproof_timestamp',''),(2960,5,'_wp_old_date','2023-03-28'),(2962,1357,'_menu_item_type','post_type'),(2963,1357,'_menu_item_menu_item_parent','1367'),(2964,1357,'_menu_item_object_id','776'),(2965,1357,'_menu_item_object','page'),(2966,1357,'_menu_item_target',''),(2967,1357,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2968,1357,'_menu_item_xfn',''),(2969,1357,'_menu_item_url',''),(2971,1358,'_menu_item_type','post_type'),(2972,1358,'_menu_item_menu_item_parent','1367'),(2973,1358,'_menu_item_object_id','699'),(2974,1358,'_menu_item_object','page'),(2975,1358,'_menu_item_target',''),(2976,1358,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2977,1358,'_menu_item_xfn',''),(2978,1358,'_menu_item_url',''),(2980,1359,'_menu_item_type','post_type'),(2981,1359,'_menu_item_menu_item_parent','1367'),(2982,1359,'_menu_item_object_id','695'),(2983,1359,'_menu_item_object','page'),(2984,1359,'_menu_item_target',''),(2985,1359,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2986,1359,'_menu_item_xfn',''),(2987,1359,'_menu_item_url',''),(2989,1360,'_menu_item_type','post_type'),(2990,1360,'_menu_item_menu_item_parent','1367'),(2991,1360,'_menu_item_object_id','691'),(2992,1360,'_menu_item_object','page'),(2993,1360,'_menu_item_target',''),(2994,1360,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2995,1360,'_menu_item_xfn',''),(2996,1360,'_menu_item_url',''),(2998,1361,'_menu_item_type','post_type'),(2999,1361,'_menu_item_menu_item_parent','1367'),(3000,1361,'_menu_item_object_id','683'),(3001,1361,'_menu_item_object','page'),(3002,1361,'_menu_item_target',''),(3003,1361,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3004,1361,'_menu_item_xfn',''),(3005,1361,'_menu_item_url',''),(3007,1362,'_menu_item_type','post_type'),(3008,1362,'_menu_item_menu_item_parent','1367'),(3009,1362,'_menu_item_object_id','679'),(3010,1362,'_menu_item_object','page'),(3011,1362,'_menu_item_target',''),(3012,1362,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3013,1362,'_menu_item_xfn',''),(3014,1362,'_menu_item_url',''),(3016,1363,'_menu_item_type','post_type'),(3017,1363,'_menu_item_menu_item_parent','1367'),(3018,1363,'_menu_item_object_id','492'),(3019,1363,'_menu_item_object','page'),(3020,1363,'_menu_item_target',''),(3021,1363,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3022,1363,'_menu_item_xfn',''),(3023,1363,'_menu_item_url',''),(3025,1364,'_menu_item_type','post_type'),(3026,1364,'_menu_item_menu_item_parent','1367'),(3027,1364,'_menu_item_object_id','491'),(3028,1364,'_menu_item_object','page'),(3029,1364,'_menu_item_target',''),(3030,1364,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3031,1364,'_menu_item_xfn',''),(3032,1364,'_menu_item_url',''),(3034,1365,'_menu_item_type','post_type'),(3035,1365,'_menu_item_menu_item_parent','1367'),(3036,1365,'_menu_item_object_id','490'),(3037,1365,'_menu_item_object','page'),(3038,1365,'_menu_item_target',''),(3039,1365,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3040,1365,'_menu_item_xfn',''),(3041,1365,'_menu_item_url',''),(3043,1366,'_menu_item_type','post_type'),(3044,1366,'_menu_item_menu_item_parent','1367'),(3045,1366,'_menu_item_object_id','489'),(3046,1366,'_menu_item_object','page'),(3047,1366,'_menu_item_target',''),(3048,1366,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3049,1366,'_menu_item_xfn',''),(3050,1366,'_menu_item_url',''),(3052,1367,'_menu_item_type','post_type'),(3053,1367,'_menu_item_menu_item_parent','0'),(3054,1367,'_menu_item_object_id','485'),(3055,1367,'_menu_item_object','page'),(3056,1367,'_menu_item_target',''),(3057,1367,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3058,1367,'_menu_item_xfn',''),(3059,1367,'_menu_item_url',''),(3061,1368,'_menu_item_type','post_type'),(3062,1368,'_menu_item_menu_item_parent','0'),(3063,1368,'_menu_item_object_id','3'),(3064,1368,'_menu_item_object','page'),(3065,1368,'_menu_item_target',''),(3066,1368,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3067,1368,'_menu_item_xfn',''),(3068,1368,'_menu_item_url',''),(3070,1369,'_menu_item_type','post_type'),(3071,1369,'_menu_item_menu_item_parent','0'),(3072,1369,'_menu_item_object_id','2'),(3073,1369,'_menu_item_object','page'),(3074,1369,'_menu_item_target',''),(3075,1369,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3076,1369,'_menu_item_xfn',''),(3077,1369,'_menu_item_url',''),(3079,1370,'_menu_item_type','post_type'),(3080,1370,'_menu_item_menu_item_parent','0'),(3081,1370,'_menu_item_object_id','4'),(3082,1370,'_menu_item_object','page'),(3083,1370,'_menu_item_target',''),(3084,1370,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3085,1370,'_menu_item_xfn',''),(3086,1370,'_menu_item_url',''),(3090,1372,'_edit_lock','1717476625:2'),(3091,1373,'_wp_attached_file','2024/03/LED-Light-Installation-Juice-Electrical.jpg'),(3092,1373,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:51:\"2024/03/LED-Light-Installation-Juice-Electrical.jpg\";s:8:\"filesize\";i:60489;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"LED-Light-Installation-Juice-Electrical-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11888;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"LED-Light-Installation-Juice-Electrical-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5284;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"LED-Light-Installation-Juice-Electrical-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43316;}}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:{}}}'),(3093,1372,'_edit_last','2'),(3094,1372,'_yoast_wpseo_primary_category','1'),(3095,1372,'_yoast_wpseo_content_score','60'),(3096,1372,'_yoast_wpseo_estimated-reading-time-minutes','2'),(3097,1372,'_yoast_wpseo_wordproof_timestamp',''),(3098,1375,'_wp_attached_file','2024/03/LED-Banner.png'),(3099,1375,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1550;s:6:\"height\";i:475;s:4:\"file\";s:22:\"2024/03/LED-Banner.png\";s:8:\"filesize\";i:131910;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"LED-Banner-300x92.png\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16435;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"LED-Banner-1024x314.png\";s:5:\"width\";i:1024;s:6:\"height\";i:314;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82721;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"LED-Banner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9022;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"LED-Banner-768x235.png\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56236;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"LED-Banner-1536x471.png\";s:5:\"width\";i:1536;s:6:\"height\";i:471;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143079;}}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:{}}}'),(3102,1377,'_wp_attached_file','2024/03/Led-banner-installation-juice-electrical.jpg'),(3103,1377,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1550;s:6:\"height\";i:475;s:4:\"file\";s:52:\"2024/03/Led-banner-installation-juice-electrical.jpg\";s:8:\"filesize\";i:9723;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Led-banner-installation-juice-electrical-300x92.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1495;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"Led-banner-installation-juice-electrical-1024x314.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6658;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Led-banner-installation-juice-electrical-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:459;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"Led-banner-installation-juice-electrical-768x235.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4531;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"Led-banner-installation-juice-electrical-1536x471.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11773;}}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:{}}}'),(3104,1372,'_thumbnail_id','1377'),(3105,1373,'original-file','2024/03/LED-Light-Installation-Juice-Electrical-updraft-pre-smush-original.jpg'),(3106,1373,'smush-complete','1'),(3107,1373,'smush-info','The file was compressed from 59.07 KB to 56.83 KB, saving 3.8 percent, using WP-Optimize'),(3108,1373,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:60489;s:12:\"smushed-size\";i:58191;s:15:\"savings-percent\";d:3.8;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:60489;s:10:\"compressed\";i:58191;}s:6:\"medium\";a:2:{s:8:\"original\";i:11888;s:10:\"compressed\";i:10707;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5284;s:10:\"compressed\";i:4772;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:43316;s:10:\"compressed\";i:39023;}}}'),(3109,1375,'original-file','2024/03/LED-Banner-updraft-pre-smush-original.png'),(3110,1375,'smush-complete','1'),(3111,1375,'smush-info','The file was compressed from 128.82 KB to 57.79 KB, saving 55.14 percent, using WP-Optimize'),(3112,1375,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:131910;s:12:\"smushed-size\";i:59181;s:15:\"savings-percent\";d:55.14;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:131910;s:10:\"compressed\";i:59181;}s:6:\"medium\";a:2:{s:8:\"original\";i:16435;s:10:\"compressed\";i:8650;}s:5:\"large\";a:2:{s:8:\"original\";i:82721;s:10:\"compressed\";i:38737;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:9022;s:10:\"compressed\";i:6087;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:56236;s:10:\"compressed\";i:26078;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:143079;s:10:\"compressed\";i:66610;}}}'),(3113,1377,'original-file','2024/03/Led-banner-installation-juice-electrical-updraft-pre-smush-original.jpg'),(3114,1377,'smush-complete','1'),(3115,1377,'smush-info','The file was compressed from 9.50 KB to 9.50 KB, saving 0 percent, using WP-Optimize'),(3116,1377,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:9723;s:12:\"smushed-size\";i:9723;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:9723;s:10:\"compressed\";i:9723;}s:6:\"medium\";a:2:{s:8:\"original\";i:1495;s:10:\"compressed\";i:1391;}s:5:\"large\";a:2:{s:8:\"original\";i:6658;s:10:\"compressed\";i:6221;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:459;s:10:\"compressed\";i:456;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:4531;s:10:\"compressed\";i:4228;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:11773;s:10:\"compressed\";i:11773;}}}'),(3124,1381,'_edit_lock','1724027514:2'),(3125,1382,'_edit_lock','1724027484:2'),(3126,1383,'_menu_item_type','post_type'),(3127,1383,'_menu_item_menu_item_parent','1369'),(3128,1383,'_menu_item_object_id','1381'),(3129,1383,'_menu_item_object','page'),(3130,1383,'_menu_item_target',''),(3131,1383,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3132,1383,'_menu_item_xfn',''),(3133,1383,'_menu_item_url',''),(3142,1381,'_edit_last','2'),(3143,1381,'banner_title',''),(3144,1381,'_banner_title','field_63e578d5b6dca'),(3145,1381,'page_banner_button',''),(3146,1381,'_page_banner_button','field_63e578e8b6dcb'),(3147,1381,'_yoast_wpseo_content_score','30'),(3148,1381,'_yoast_wpseo_estimated-reading-time-minutes','3'),(3149,1381,'_yoast_wpseo_wordproof_timestamp',''),(3158,5,'_wp_old_date','2024-03-11'),(3159,1369,'_wp_old_date','2024-03-11'),(3160,1367,'_wp_old_date','2024-03-11'),(3161,1362,'_wp_old_date','2024-03-11'),(3162,1360,'_wp_old_date','2024-03-11'),(3163,1358,'_wp_old_date','2024-03-11'),(3164,1363,'_wp_old_date','2024-03-11'),(3165,1364,'_wp_old_date','2024-03-11'),(3166,1365,'_wp_old_date','2024-03-11'),(3167,1357,'_wp_old_date','2024-03-11'),(3168,1359,'_wp_old_date','2024-03-11'),(3169,1366,'_wp_old_date','2024-03-11'),(3170,1361,'_wp_old_date','2024-03-11'),(3171,1370,'_wp_old_date','2024-03-11'),(3172,1368,'_wp_old_date','2024-03-11'),(3173,1387,'_menu_item_type','post_type'),(3174,1387,'_menu_item_menu_item_parent','1369'),(3175,1387,'_menu_item_object_id','1382'),(3176,1387,'_menu_item_object','page'),(3177,1387,'_menu_item_target',''),(3178,1387,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3179,1387,'_menu_item_xfn',''),(3180,1387,'_menu_item_url',''),(3189,1382,'_edit_last','2'),(3190,1382,'banner_title',''),(3191,1382,'_banner_title','field_63e578d5b6dca'),(3192,1382,'page_banner_button',''),(3193,1382,'_page_banner_button','field_63e578e8b6dcb'),(3194,1382,'_yoast_wpseo_content_score','90'),(3195,1382,'_yoast_wpseo_estimated-reading-time-minutes','2'),(3196,1382,'_yoast_wpseo_wordproof_timestamp',''),(3201,1018,'_wp_old_date','2023-03-28'),(3202,1017,'_wp_old_date','2023-03-28'),(3203,1016,'_wp_old_date','2023-03-28'),(3204,1020,'_wp_old_date','2023-03-28'),(3205,1025,'_wp_old_date','2023-03-28'),(3206,1026,'_wp_old_date','2023-03-28'),(3207,1027,'_wp_old_date','2023-03-28'),(3209,1028,'_wp_old_date','2023-03-28'),(3210,1023,'_wp_old_date','2023-03-28'),(3211,1024,'_wp_old_date','2023-03-28'),(3212,1021,'_wp_old_date','2023-03-28'),(3267,514,'_oembed_27039750c4a479a9e3fa3a7d9c99f982','{{unknown}}'),(3268,1411,'_edit_lock','1717723531:2'),(3269,1411,'_edit_last','2'),(3270,1411,'_yoast_wpseo_primary_category','1'),(3271,1411,'_yoast_wpseo_content_score','30'),(3272,1411,'_yoast_wpseo_estimated-reading-time-minutes','3'),(3273,1411,'_yoast_wpseo_wordproof_timestamp',''),(3274,1413,'_wp_attached_file','2024/06/HealthyHomesBanner.jpg'),(3275,1413,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1052;s:4:\"file\";s:30:\"2024/06/HealthyHomesBanner.jpg\";s:8:\"filesize\";i:577439;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"HealthyHomesBanner-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25131;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"HealthyHomesBanner-1024x539.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115504;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"HealthyHomesBanner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17789;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"HealthyHomesBanner-768x404.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77538;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"HealthyHomesBanner-1536x808.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:808;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206290;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3276,1413,'_wp_attachment_image_alt','HealthyHomesBanner'),(3277,1411,'_thumbnail_id','1415'),(3278,1414,'_wp_attached_file','2024/06/AdobeStock_547749466.jpeg'),(3279,1414,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1047;s:6:\"height\";i:720;s:4:\"file\";s:33:\"2024/06/AdobeStock_547749466.jpeg\";s:8:\"filesize\";i:299456;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"AdobeStock_547749466-300x206.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21850;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"AdobeStock_547749466-1024x704.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89934;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"AdobeStock_547749466-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14848;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"AdobeStock_547749466-768x528.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61902;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3280,1415,'_wp_attached_file','2024/06/condensation.jpg'),(3281,1415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:856;s:6:\"height\";i:570;s:4:\"file\";s:24:\"2024/06/condensation.jpg\";s:8:\"filesize\";i:562716;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"condensation-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29644;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"condensation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18649;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"condensation-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173503;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3282,1413,'original-file','2024/06/HealthyHomesBanner-updraft-pre-smush-original.jpg'),(3283,1413,'smush-complete','1'),(3284,1413,'smush-info','The file was compressed from 563.91 KB to 185.16 KB, saving 67.16 percent, using WP-Optimize'),(3285,1413,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:577439;s:12:\"smushed-size\";i:189605;s:15:\"savings-percent\";d:67.16;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:577439;s:10:\"compressed\";i:189605;}s:6:\"medium\";a:2:{s:8:\"original\";i:25131;s:10:\"compressed\";i:20935;}s:5:\"large\";a:2:{s:8:\"original\";i:115504;s:10:\"compressed\";i:85327;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:17789;s:10:\"compressed\";i:15704;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:77538;s:10:\"compressed\";i:58295;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:206290;s:10:\"compressed\";i:151452;}}}'),(3286,1414,'original-file','2024/06/AdobeStock_547749466-updraft-pre-smush-original.jpeg'),(3287,1414,'smush-complete','1'),(3288,1414,'smush-info','The file was compressed from 292.44 KB to 74.31 KB, saving 74.59 percent, using WP-Optimize'),(3289,1414,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:299456;s:12:\"smushed-size\";i:76093;s:15:\"savings-percent\";d:74.59;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:299456;s:10:\"compressed\";i:76093;}s:6:\"medium\";a:2:{s:8:\"original\";i:21850;s:10:\"compressed\";i:18718;}s:5:\"large\";a:2:{s:8:\"original\";i:89934;s:10:\"compressed\";i:68872;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:14848;s:10:\"compressed\";i:13705;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:61902;s:10:\"compressed\";i:48106;}}}'),(3290,1415,'original-file','2024/06/condensation-updraft-pre-smush-original.jpg'),(3291,1415,'smush-complete','1'),(3292,1415,'smush-info','The file was compressed from 549.53 KB to 201.79 KB, saving 63.28 percent, using WP-Optimize'),(3293,1415,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:562716;s:12:\"smushed-size\";i:206633;s:15:\"savings-percent\";d:63.28;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:562716;s:10:\"compressed\";i:206633;}s:6:\"medium\";a:2:{s:8:\"original\";i:29644;s:10:\"compressed\";i:25312;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:18649;s:10:\"compressed\";i:17205;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:173503;s:10:\"compressed\";i:133350;}}}'),(3296,1420,'_edit_lock','1722994322:2'),(3297,1421,'_wp_attached_file','2024/07/Juice-Electrical-Greg-scaled.jpg'),(3298,1421,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1137;s:4:\"file\";s:40:\"2024/07/Juice-Electrical-Greg-scaled.jpg\";s:8:\"filesize\";i:155692;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Juice-Electrical-Greg-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6914;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Juice-Electrical-Greg-1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Juice-Electrical-Greg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3667;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Juice-Electrical-Greg-768x341.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26315;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"Juice-Electrical-Greg-1536x682.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72210;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"Juice-Electrical-Greg-2048x910.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:910;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"Juice-Electrical-Greg.jpg\";}'),(3299,1421,'original-file','2024/07/Juice-Electrical-Greg-scaled-updraft-pre-smush-original.jpg'),(3300,1421,'smush-complete','1'),(3301,1421,'smush-info','The file was compressed from 152.04 KB to 140.99 KB, saving 7.27 percent, using WP-Optimize'),(3302,1421,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:155692;s:12:\"smushed-size\";i:144373;s:15:\"savings-percent\";d:7.27;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:155692;s:10:\"compressed\";i:144373;}s:6:\"medium\";a:2:{s:8:\"original\";i:6914;s:10:\"compressed\";i:6254;}s:5:\"large\";a:2:{s:8:\"original\";i:39931;s:10:\"compressed\";i:36551;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:3667;s:10:\"compressed\";i:3332;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:26315;s:10:\"compressed\";i:24014;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:72210;s:10:\"compressed\";i:66747;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:110474;s:10:\"compressed\";i:102426;}}}'),(3303,1422,'_wp_attached_file','2024/07/light-colour-temps-scaled.jpg'),(3304,1422,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1798;s:4:\"file\";s:37:\"2024/07/light-colour-temps-scaled.jpg\";s:8:\"filesize\";i:80505;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"light-colour-temps-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4122;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"light-colour-temps-1024x719.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20616;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"light-colour-temps-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1879;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"light-colour-temps-768x539.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14143;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"light-colour-temps-1536x1079.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1079;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37390;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"light-colour-temps-2048x1438.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56823;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"light-colour-temps.jpg\";}'),(3305,1420,'_thumbnail_id','1173'),(3306,1420,'_edit_last','2'),(3307,1420,'_yoast_wpseo_primary_category','1'),(3308,1420,'_yoast_wpseo_content_score','60'),(3309,1420,'_yoast_wpseo_estimated-reading-time-minutes','3'),(3310,1422,'original-file','2024/07/light-colour-temps-scaled-updraft-pre-smush-original.jpg'),(3311,1422,'smush-complete','1'),(3312,1422,'smush-info','The file was compressed from 78.62 KB to 78.62 KB, saving 0 percent, using WP-Optimize'),(3313,1422,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:80505;s:12:\"smushed-size\";i:80505;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:80505;s:10:\"compressed\";i:80505;}s:6:\"medium\";a:2:{s:8:\"original\";i:4122;s:10:\"compressed\";i:3708;}s:5:\"large\";a:2:{s:8:\"original\";i:20616;s:10:\"compressed\";i:20170;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:1879;s:10:\"compressed\";i:1721;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:14143;s:10:\"compressed\";i:13564;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:37390;s:10:\"compressed\";i:37195;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:56823;s:10:\"compressed\";i:56823;}}}'),(3320,1428,'_edit_lock','1733195251:2'),(3321,1429,'_wp_attached_file','2024/08/retrospective-installation.png'),(3322,1429,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:38:\"2024/08/retrospective-installation.png\";s:8:\"filesize\";i:739703;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"retrospective-installation-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81971;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"retrospective-installation-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33114;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"retrospective-installation-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:420943;}}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:{}}}'),(3323,1429,'original-file','2024/08/retrospective-installation-updraft-pre-smush-original.png'),(3324,1429,'smush-complete','1'),(3325,1429,'smush-info','The file was compressed from 722.37 KB to 312.61 KB, saving 56.72 percent, using WP-Optimize'),(3326,1429,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:739703;s:12:\"smushed-size\";i:320116;s:15:\"savings-percent\";d:56.72;s:10:\"sizes-info\";a:4:{s:4:\"full\";a:2:{s:8:\"original\";i:739703;s:10:\"compressed\";i:320116;}s:6:\"medium\";a:2:{s:8:\"original\";i:81971;s:10:\"compressed\";i:34100;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:33114;s:10:\"compressed\";i:14397;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:420943;s:10:\"compressed\";i:181172;}}}'),(3327,1430,'_wp_attached_file','2024/08/Juice-Electrical.jpg'),(3328,1430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:28:\"2024/08/Juice-Electrical.jpg\";s:8:\"filesize\";i:213908;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Juice-Electrical-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13153;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Juice-Electrical-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78765;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Juice-Electrical-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6686;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Juice-Electrical-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51735;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"Juice-Electrical-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145433;}}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:{}}}'),(3329,1431,'_wp_attached_file','2024/08/retrospective-installation.jpeg'),(3330,1431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:39:\"2024/08/retrospective-installation.jpeg\";s:8:\"filesize\";i:144125;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"retrospective-installation-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14101;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"retrospective-installation-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96517;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"retrospective-installation-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6854;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"retrospective-installation-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61272;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"retrospective-installation-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182708;}}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:{}}}'),(3331,1428,'_thumbnail_id','1422'),(3332,1428,'_edit_last','2'),(3333,1428,'_yoast_wpseo_primary_category','1'),(3334,1428,'_yoast_wpseo_content_score','30'),(3335,1428,'_yoast_wpseo_estimated-reading-time-minutes','4'),(3336,1430,'original-file','2024/08/Juice-Electrical-updraft-pre-smush-original.jpg'),(3337,1430,'smush-complete','1'),(3338,1430,'smush-info','The file was compressed from 208.89 KB to 208.89 KB, saving 0 percent, using WP-Optimize'),(3339,1430,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:213908;s:12:\"smushed-size\";i:213908;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:213908;s:10:\"compressed\";i:213908;}s:6:\"medium\";a:2:{s:8:\"original\";i:13153;s:10:\"compressed\";i:13092;}s:5:\"large\";a:2:{s:8:\"original\";i:78765;s:10:\"compressed\";i:78765;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6686;s:10:\"compressed\";i:6686;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:51735;s:10:\"compressed\";i:51584;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:145433;s:10:\"compressed\";i:145433;}}}'),(3340,1431,'original-file','2024/08/retrospective-installation-updraft-pre-smush-original.jpeg'),(3341,1431,'smush-complete','1'),(3342,1431,'smush-info','The file was compressed from 140.75 KB to 140.75 KB, saving 0 percent, using WP-Optimize'),(3343,1431,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:144125;s:12:\"smushed-size\";i:144125;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:144125;s:10:\"compressed\";i:144125;}s:6:\"medium\";a:2:{s:8:\"original\";i:14101;s:10:\"compressed\";i:14065;}s:5:\"large\";a:2:{s:8:\"original\";i:96517;s:10:\"compressed\";i:96517;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6854;s:10:\"compressed\";i:6854;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:61272;s:10:\"compressed\";i:61039;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:182708;s:10:\"compressed\";i:182708;}}}'),(3422,1462,'_edit_lock','1733876970:2'),(3423,1462,'_edit_last','2'),(3424,1462,'_yoast_wpseo_primary_category','1'),(3425,1462,'_yoast_wpseo_content_score','60'),(3426,1462,'_yoast_wpseo_estimated-reading-time-minutes','4'),(3427,1464,'_wp_attached_file','2024/09/Juice-Electrical-Solar-panel-battery-scaled.jpg'),(3428,1464,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2024/09/Juice-Electrical-Solar-panel-battery-scaled.jpg\";s:8:\"filesize\";i:591931;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Juice-Electrical-Solar-panel-battery-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22445;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Juice-Electrical-Solar-panel-battery-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129483;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Juice-Electrical-Solar-panel-battery-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12466;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Juice-Electrical-Solar-panel-battery-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83790;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Juice-Electrical-Solar-panel-battery-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247594;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"Juice-Electrical-Solar-panel-battery-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:403035;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"Juice-Electrical-Solar-panel-battery.jpg\";}'),(3429,1464,'_wp_attachment_image_alt','Juice Electrical - Solar panel battery'),(3430,1464,'original-file','2024/09/Juice-Electrical-Solar-panel-battery-scaled-updraft-pre-smush-original.jpg'),(3431,1464,'smush-complete','1'),(3432,1464,'smush-info','The file was compressed from 578.06 KB to 556.83 KB, saving 3.67 percent, using WP-Optimize'),(3433,1464,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:591931;s:12:\"smushed-size\";i:570197;s:15:\"savings-percent\";d:3.67;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:591931;s:10:\"compressed\";i:570197;}s:6:\"medium\";a:2:{s:8:\"original\";i:22445;s:10:\"compressed\";i:20787;}s:5:\"large\";a:2:{s:8:\"original\";i:129483;s:10:\"compressed\";i:118456;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:12466;s:10:\"compressed\";i:11984;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:83790;s:10:\"compressed\";i:76305;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:247594;s:10:\"compressed\";i:229033;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:403035;s:10:\"compressed\";i:381294;}}}'),(3434,1465,'_wp_attached_file','2024/09/man-with-white-helmet-near-solar-panel-scaled.jpg'),(3435,1465,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2024/09/man-with-white-helmet-near-solar-panel-scaled.jpg\";s:8:\"filesize\";i:642658;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"man-with-white-helmet-near-solar-panel-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13159;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"man-with-white-helmet-near-solar-panel-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91190;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"man-with-white-helmet-near-solar-panel-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6250;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"man-with-white-helmet-near-solar-panel-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54870;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"man-with-white-helmet-near-solar-panel-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191489;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"man-with-white-helmet-near-solar-panel-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:368147;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"man-with-white-helmet-near-solar-panel.jpg\";}'),(3436,1466,'_wp_attached_file','2024/09/man-with-white-helmet-near-solar-panel-edited-scaled.jpg'),(3437,1466,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:64:\"2024/09/man-with-white-helmet-near-solar-panel-edited-scaled.jpg\";s:8:\"filesize\";i:1191216;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"man-with-white-helmet-near-solar-panel-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17566;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"man-with-white-helmet-near-solar-panel-edited-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136961;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"man-with-white-helmet-near-solar-panel-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6252;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"man-with-white-helmet-near-solar-panel-edited-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79552;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"man-with-white-helmet-near-solar-panel-edited-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:346433;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:59:\"man-with-white-helmet-near-solar-panel-edited-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:708491;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:49:\"man-with-white-helmet-near-solar-panel-edited.jpg\";s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1465\";s:4:\"file\";s:50:\"2024/09/man-with-white-helmet-near-solar-panel.jpg\";}}'),(3438,1462,'_thumbnail_id','1464'),(3439,1465,'original-file','2024/09/man-with-white-helmet-near-solar-panel-scaled-updraft-pre-smush-original.jpg'),(3440,1465,'smush-complete','1'),(3441,1465,'smush-info','The file was compressed from 627.60 KB to 604.74 KB, saving 3.64 percent, using WP-Optimize'),(3442,1465,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:642658;s:12:\"smushed-size\";i:619251;s:15:\"savings-percent\";d:3.64;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:642658;s:10:\"compressed\";i:619251;}s:6:\"medium\";a:2:{s:8:\"original\";i:13159;s:10:\"compressed\";i:13110;}s:5:\"large\";a:2:{s:8:\"original\";i:91190;s:10:\"compressed\";i:89456;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6250;s:10:\"compressed\";i:6250;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:54870;s:10:\"compressed\";i:54245;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:191489;s:10:\"compressed\";i:186915;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:368147;s:10:\"compressed\";i:357075;}}}'),(3443,1466,'smush-info','The file was compressed from 1.14 MB to 1.14 MB, saving 0 percent, using WP-Optimize'),(3444,1466,'smush-complete','1'),(3445,1466,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:1191216;s:12:\"smushed-size\";i:1191216;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:6:{s:6:\"medium\";a:2:{s:8:\"original\";i:17566;s:10:\"compressed\";i:17453;}s:5:\"large\";a:2:{s:8:\"original\";i:136961;s:10:\"compressed\";i:133430;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6252;s:10:\"compressed\";i:6252;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:79552;s:10:\"compressed\";i:77863;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:346433;s:10:\"compressed\";i:334211;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:708491;s:10:\"compressed\";i:678012;}}}'),(3462,1485,'_edit_lock','1728244752:2'),(3463,1485,'_edit_last','2'),(3464,1485,'_yoast_wpseo_primary_category','1'),(3465,1485,'_yoast_wpseo_content_score','30'),(3466,1485,'_yoast_wpseo_estimated-reading-time-minutes','3'),(3467,1488,'_wp_attached_file','2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-scaled.jpg'),(3468,1488,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1460;s:4:\"file\";s:164:\"2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-scaled.jpg\";s:8:\"filesize\";i:270898;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:157:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7660;}s:5:\"large\";a:5:{s:4:\"file\";s:158:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-1024x584.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:157:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3963;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:157:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33874;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:158:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-1536x876.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:876;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109705;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:159:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-2048x1168.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182919;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:149:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair.jpg\";}'),(3469,1489,'_wp_attached_file','2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-scaled.jpg'),(3470,1489,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:171:\"2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-scaled.jpg\";s:8:\"filesize\";i:285499;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:164:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7757;}s:5:\"large\";a:5:{s:4:\"file\";s:165:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57615;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:164:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4016;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:164:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35060;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:165:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119367;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:166:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196324;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:156:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited.jpg\";s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1488\";s:4:\"file\";s:157:\"2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair.jpg\";}}'),(3471,1491,'_wp_attached_file','2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-scaled.jpg'),(3472,1491,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:173:\"2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-scaled.jpg\";s:8:\"filesize\";i:371427;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:166:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10233;}s:5:\"large\";a:5:{s:4:\"file\";s:167:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80216;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:166:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4063;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:166:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47880;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:168:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162152;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:168:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260960;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:158:\"close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1.jpg\";s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1489\";s:4:\"file\";s:164:\"2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited.jpg\";}}'),(3473,1493,'_wp_attached_file','2024/10/house-rewiring.jpg'),(3474,1493,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2024/10/house-rewiring.jpg\";s:8:\"filesize\";i:98531;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"house-rewiring-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26780;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"house-rewiring-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88468;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"house-rewiring-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21751;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"house-rewiring-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62169;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:32:\"Karyna Chekaryova - stock.adobe.\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:28:\"Male hands repair the socket\";s:17:\"created_timestamp\";s:10:\"1490458691\";s:9:\"copyright\";s:37:\"©Karyna Chekaryova - stock.adobe.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:42:\"Installation of sockets in a new apartment\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:35:{i:0;s:8:\"electric\";i:1;s:11:\"electrician\";i:2;s:11:\"electricity\";i:3;s:5:\"power\";i:4;s:10:\"electrical\";i:5;s:6:\"outlet\";i:6;s:10:\"installing\";i:7;s:12:\"installation\";i:8;s:6:\"repair\";i:9;s:6:\"socket\";i:10;s:4:\"work\";i:11;s:10:\"connection\";i:12;s:5:\"house\";i:13;s:12:\"professional\";i:14;s:7:\"install\";i:15;s:10:\"insulation\";i:16;s:4:\"plug\";i:17;s:7:\"voltage\";i:18;s:6:\"energy\";i:19;s:8:\"mounting\";i:20;s:6:\"switch\";i:21;s:5:\"wires\";i:22;s:6:\"wiring\";i:23;s:5:\"cable\";i:24;s:9:\"repairman\";i:25;s:4:\"wire\";i:26;s:3:\"job\";i:27;s:6:\"worker\";i:28;s:7:\"connect\";i:29;s:7:\"damaged\";i:30;s:9:\"equipment\";i:31;s:3:\"fix\";i:32;s:5:\"light\";i:33;s:3:\"man\";i:34;s:4:\"220v\";}}}'),(3475,1485,'_thumbnail_id','1493'),(3476,1488,'original-file','2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-scaled-updraft-pre-smush-original.jpg'),(3477,1488,'smush-info','The file was compressed from 264.55 KB to 264.55 KB, saving 0 percent, using WP-Optimize'),(3478,1488,'smush-complete','1'),(3479,1488,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:270898;s:12:\"smushed-size\";i:270898;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:270898;s:10:\"compressed\";i:270898;}s:6:\"medium\";a:2:{s:8:\"original\";i:7660;s:10:\"compressed\";i:7660;}s:5:\"large\";a:2:{s:8:\"original\";i:54227;s:10:\"compressed\";i:54171;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:3963;s:10:\"compressed\";i:3963;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:33874;s:10:\"compressed\";i:33874;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:109705;s:10:\"compressed\";i:109705;}}}'),(3480,1489,'original-file','2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-scaled-updraft-pre-smush-original.jpg'),(3481,1489,'smush-complete','1'),(3482,1489,'smush-info','The file was compressed from 278.81 KB to 278.81 KB, saving 0 percent, using WP-Optimize'),(3483,1489,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:285499;s:12:\"smushed-size\";i:285499;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:285499;s:10:\"compressed\";i:285499;}s:6:\"medium\";a:2:{s:8:\"original\";i:7757;s:10:\"compressed\";i:7757;}s:5:\"large\";a:2:{s:8:\"original\";i:57615;s:10:\"compressed\";i:57175;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4016;s:10:\"compressed\";i:4016;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:35060;s:10:\"compressed\";i:34790;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:119367;s:10:\"compressed\";i:119216;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:196324;s:10:\"compressed\";i:196324;}}}'),(3484,1491,'original-file','2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-scaled-updraft-pre-smush-original.jpg'),(3485,1491,'smush-complete','1'),(3486,1491,'smush-info','The file was compressed from 362.72 KB to 362.72 KB, saving 0 percent, using WP-Optimize'),(3487,1491,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:371427;s:12:\"smushed-size\";i:371427;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:371427;s:10:\"compressed\";i:371427;}s:6:\"medium\";a:2:{s:8:\"original\";i:10233;s:10:\"compressed\";i:10233;}s:5:\"large\";a:2:{s:8:\"original\";i:80216;s:10:\"compressed\";i:79450;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4063;s:10:\"compressed\";i:4063;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:47880;s:10:\"compressed\";i:47272;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:162152;s:10:\"compressed\";i:162152;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:260960;s:10:\"compressed\";i:260960;}}}'),(3488,1493,'original-file','2024/10/house-rewiring-updraft-pre-smush-original.jpg'),(3489,1493,'smush-complete','1'),(3490,1493,'smush-info','The file was compressed from 96.22 KB to 88.32 KB, saving 8.21 percent, using WP-Optimize'),(3491,1493,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:98531;s:12:\"smushed-size\";i:90439;s:15:\"savings-percent\";d:8.21;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:98531;s:10:\"compressed\";i:90439;}s:6:\"medium\";a:2:{s:8:\"original\";i:26780;s:10:\"compressed\";i:26255;}s:5:\"large\";a:2:{s:8:\"original\";i:88468;s:10:\"compressed\";i:83513;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:21751;s:10:\"compressed\";i:21586;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:62169;s:10:\"compressed\";i:58905;}}}'),(3492,1494,'_wp_attached_file','2024/10/electrician-is-mounting-electric-sockets-white-wall-indoors-scaled.jpg'),(3493,1494,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1683;s:4:\"file\";s:78:\"2024/10/electrician-is-mounting-electric-sockets-white-wall-indoors-scaled.jpg\";s:8:\"filesize\";i:365727;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"electrician-is-mounting-electric-sockets-white-wall-indoors-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10198;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"electrician-is-mounting-electric-sockets-white-wall-indoors-1024x673.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"electrician-is-mounting-electric-sockets-white-wall-indoors-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4578;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:71:\"electrician-is-mounting-electric-sockets-white-wall-indoors-768x505.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49313;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:73:\"electrician-is-mounting-electric-sockets-white-wall-indoors-1536x1010.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1010;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157907;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:73:\"electrician-is-mounting-electric-sockets-white-wall-indoors-2048x1346.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1346;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253529;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:63:\"electrician-is-mounting-electric-sockets-white-wall-indoors.jpg\";}'),(3494,1494,'original-file','2024/10/electrician-is-mounting-electric-sockets-white-wall-indoors-scaled-updraft-pre-smush-original.jpg'),(3495,1494,'smush-complete','1'),(3496,1494,'smush-info','The file was compressed from 357.16 KB to 345.91 KB, saving 3.15 percent, using WP-Optimize'),(3497,1494,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:365727;s:12:\"smushed-size\";i:354213;s:15:\"savings-percent\";d:3.15;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:365727;s:10:\"compressed\";i:354213;}s:6:\"medium\";a:2:{s:8:\"original\";i:10198;s:10:\"compressed\";i:10198;}s:5:\"large\";a:2:{s:8:\"original\";i:80162;s:10:\"compressed\";i:77855;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4578;s:10:\"compressed\";i:4578;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:49313;s:10:\"compressed\";i:48037;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:157907;s:10:\"compressed\";i:153137;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:253529;s:10:\"compressed\";i:246148;}}}'),(3500,1485,'_wp_old_date','2024-10-01'),(3507,1500,'_edit_lock','1733193853:2'),(3508,1501,'_wp_attached_file','2024/10/November_FB_Banner_1-scaled.jpg'),(3509,1501,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1137;s:4:\"file\";s:39:\"2024/10/November_FB_Banner_1-scaled.jpg\";s:8:\"filesize\";i:344066;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"November_FB_Banner_1-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32101;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"November_FB_Banner_1-1024x455.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97917;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"November_FB_Banner_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26431;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"November_FB_Banner_1-768x341.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70975;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"November_FB_Banner_1-1536x682.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163875;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"November_FB_Banner_1-2048x910.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:910;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244450;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:12:\"CHRIS SHARPE\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1719264280\";s:9:\"copyright\";s:12:\"CHRIS SHARPE\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"November_FB_Banner_1.jpg\";}'),(3510,1502,'_wp_attached_file','2024/10/electrical-plan.jpg'),(3511,1502,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:801;s:4:\"file\";s:27:\"2024/10/electrical-plan.jpg\";s:8:\"filesize\";i:207482;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"electrical-plan-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77474;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"electrical-plan-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178310;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"electrical-plan-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68212;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"electrical-plan-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136099;}}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:{}}}'),(3512,1503,'_wp_attached_file','2024/10/electrical-plan_4.jpg'),(3513,1503,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1875;s:6:\"height\";i:2500;s:4:\"file\";s:29:\"2024/10/electrical-plan_4.jpg\";s:8:\"filesize\";i:685459;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"electrical-plan_4-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10318;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"electrical-plan_4-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78470;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"electrical-plan_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4968;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"electrical-plan_4-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78470;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"electrical-plan_4-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174869;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"electrical-plan_4-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:330533;}}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:{}}}'),(3514,1504,'_wp_attached_file','2024/10/electrical-plan_4-edited.jpg'),(3515,1504,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1875;s:6:\"height\";i:1875;s:4:\"file\";s:36:\"2024/10/electrical-plan_4-edited.jpg\";s:8:\"filesize\";i:461177;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"electrical-plan_4-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13579;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"electrical-plan_4-edited-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109403;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"electrical-plan_4-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4973;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"electrical-plan_4-edited-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63654;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"electrical-plan_4-edited-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256525;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1503\";s:4:\"file\";s:29:\"2024/10/electrical-plan_4.jpg\";}}'),(3516,1505,'_wp_attached_file','2024/10/electrical-plan_4-edited-1.jpg'),(3517,1505,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1875;s:6:\"height\";i:1055;s:4:\"file\";s:38:\"2024/10/electrical-plan_4-edited-1.jpg\";s:8:\"filesize\";i:265288;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"electrical-plan_4-edited-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9994;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"electrical-plan_4-edited-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69233;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"electrical-plan_4-edited-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6886;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"electrical-plan_4-edited-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41938;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"electrical-plan_4-edited-1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153699;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1504\";s:4:\"file\";s:36:\"2024/10/electrical-plan_4-edited.jpg\";}}'),(3518,1500,'_thumbnail_id','1522'),(3519,1500,'_edit_last','2'),(3520,1500,'_yoast_wpseo_primary_category','1'),(3521,1500,'_yoast_wpseo_content_score','60'),(3522,1500,'_yoast_wpseo_estimated-reading-time-minutes','3'),(3523,1507,'_wp_attached_file','2024/10/image1.jpeg'),(3524,1507,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:19:\"2024/10/image1.jpeg\";s:8:\"filesize\";i:294717;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image1-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18353;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"image1-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104033;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9560;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"image1-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69161;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:12:\"CHRIS SHARPE\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1719267278\";s:9:\"copyright\";s:12:\"CHRIS SHARPE\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3525,1508,'_wp_attached_file','2024/10/image1-edited.jpeg'),(3526,1508,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2024/10/image1-edited.jpeg\";s:8:\"filesize\";i:128554;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"image1-edited-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16392;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"image1-edited-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89249;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"image1-edited-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9346;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"image1-edited-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59577;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:12:\"CHRIS SHARPE\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1719267278\";s:9:\"copyright\";s:12:\"CHRIS SHARPE\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1507\";s:4:\"file\";s:19:\"2024/10/image1.jpeg\";}}'),(3527,1501,'original-file','2024/10/November_FB_Banner_1-scaled-updraft-pre-smush-original.jpg'),(3528,1501,'smush-complete','1'),(3529,1501,'smush-info','The file was compressed from 336.00 KB to 317.12 KB, saving 5.62 percent, using WP-Optimize'),(3530,1501,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:344066;s:12:\"smushed-size\";i:324732;s:15:\"savings-percent\";d:5.62;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:344066;s:10:\"compressed\";i:324732;}s:6:\"medium\";a:2:{s:8:\"original\";i:32101;s:10:\"compressed\";i:30886;}s:5:\"large\";a:2:{s:8:\"original\";i:97917;s:10:\"compressed\";i:90008;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:26431;s:10:\"compressed\";i:25894;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:70975;s:10:\"compressed\";i:65621;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:163875;s:10:\"compressed\";i:150608;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:244450;s:10:\"compressed\";i:227129;}}}'),(3531,1502,'original-file','2024/10/electrical-plan-updraft-pre-smush-original.jpg'),(3532,1502,'smush-complete','1'),(3533,1502,'smush-info','The file was compressed from 202.62 KB to 202.62 KB, saving 0 percent, using WP-Optimize'),(3534,1502,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:207482;s:12:\"smushed-size\";i:207482;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:207482;s:10:\"compressed\";i:207482;}s:6:\"medium\";a:2:{s:8:\"original\";i:77474;s:10:\"compressed\";i:76946;}s:5:\"large\";a:2:{s:8:\"original\";i:178310;s:10:\"compressed\";i:173895;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:68212;s:10:\"compressed\";i:68202;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:136099;s:10:\"compressed\";i:132795;}}}'),(3535,1503,'original-file','2024/10/electrical-plan_4-updraft-pre-smush-original.jpg'),(3536,1503,'smush-complete','1'),(3537,1503,'smush-info','The file was compressed from 669.39 KB to 669.39 KB, saving 0 percent, using WP-Optimize'),(3538,1503,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:685459;s:12:\"smushed-size\";i:685459;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:685459;s:10:\"compressed\";i:685459;}s:6:\"medium\";a:2:{s:8:\"original\";i:10318;s:10:\"compressed\";i:10293;}s:5:\"large\";a:2:{s:8:\"original\";i:78470;s:10:\"compressed\";i:76772;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4968;s:10:\"compressed\";i:4968;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:174869;s:10:\"compressed\";i:170328;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:330533;s:10:\"compressed\";i:320805;}}}'),(3539,1504,'original-file','2024/10/electrical-plan_4-edited-updraft-pre-smush-original.jpg'),(3540,1504,'smush-complete','1'),(3541,1504,'smush-info','The file was compressed from 450.37 KB to 433.44 KB, saving 3.76 percent, using WP-Optimize'),(3542,1504,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:461177;s:12:\"smushed-size\";i:443838;s:15:\"savings-percent\";d:3.76;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:461177;s:10:\"compressed\";i:443838;}s:6:\"medium\";a:2:{s:8:\"original\";i:13579;s:10:\"compressed\";i:13448;}s:5:\"large\";a:2:{s:8:\"original\";i:109403;s:10:\"compressed\";i:106212;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4973;s:10:\"compressed\";i:4973;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:63654;s:10:\"compressed\";i:62037;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:256525;s:10:\"compressed\";i:248027;}}}'),(3543,1505,'original-file','2024/10/electrical-plan_4-edited-1-updraft-pre-smush-original.jpg'),(3544,1505,'smush-complete','1'),(3545,1505,'smush-info','The file was compressed from 259.07 KB to 248.59 KB, saving 4.04 percent, using WP-Optimize'),(3546,1505,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:265288;s:12:\"smushed-size\";i:254560;s:15:\"savings-percent\";d:4.04;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:265288;s:10:\"compressed\";i:254560;}s:6:\"medium\";a:2:{s:8:\"original\";i:9994;s:10:\"compressed\";i:9994;}s:5:\"large\";a:2:{s:8:\"original\";i:69233;s:10:\"compressed\";i:66831;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6886;s:10:\"compressed\";i:6886;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:41938;s:10:\"compressed\";i:40713;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:153699;s:10:\"compressed\";i:147842;}}}'),(3547,1507,'original-file','2024/10/image1-updraft-pre-smush-original.jpeg'),(3548,1507,'smush-complete','1'),(3549,1507,'smush-info','The file was compressed from 287.81 KB to 201.86 KB, saving 29.86 percent, using WP-Optimize'),(3550,1507,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:294717;s:12:\"smushed-size\";i:206703;s:15:\"savings-percent\";d:29.86;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:294717;s:10:\"compressed\";i:206703;}s:6:\"medium\";a:2:{s:8:\"original\";i:18353;s:10:\"compressed\";i:18117;}s:5:\"large\";a:2:{s:8:\"original\";i:104033;s:10:\"compressed\";i:103616;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:9560;s:10:\"compressed\";i:9560;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:69161;s:10:\"compressed\";i:68489;}}}'),(3551,1508,'original-file','2024/10/image1-edited-updraft-pre-smush-original.jpeg'),(3552,1508,'smush-complete','1'),(3553,1508,'smush-info','The file was compressed from 125.54 KB to 125.19 KB, saving 0.28 percent, using WP-Optimize'),(3554,1508,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:128554;s:12:\"smushed-size\";i:128190;s:15:\"savings-percent\";d:0.28;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:128554;s:10:\"compressed\";i:128190;}s:6:\"medium\";a:2:{s:8:\"original\";i:16392;s:10:\"compressed\";i:16241;}s:5:\"large\";a:2:{s:8:\"original\";i:89249;s:10:\"compressed\";i:88701;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:9346;s:10:\"compressed\";i:9346;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:59577;s:10:\"compressed\";i:58962;}}}'),(3555,1510,'_wp_attached_file','2024/10/image3.jpeg'),(3556,1510,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:19:\"2024/10/image3.jpeg\";s:8:\"filesize\";i:323969;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image3-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18162;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"image3-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104744;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10005;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"image3-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68892;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:12:\"CHRIS SHARPE\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1719264828\";s:9:\"copyright\";s:12:\"CHRIS SHARPE\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3557,1511,'_wp_attached_file','2024/11/image3-edited.jpeg'),(3558,1511,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2024/11/image3-edited.jpeg\";s:8:\"filesize\";i:128793;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"image3-edited-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15880;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"image3-edited-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87837;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"image3-edited-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9504;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"image3-edited-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57923;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:12:\"CHRIS SHARPE\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1719264828\";s:9:\"copyright\";s:12:\"CHRIS SHARPE\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:4:\"1510\";s:4:\"file\";s:19:\"2024/10/image3.jpeg\";}}'),(3559,1512,'_wp_attached_file','2024/11/Juice_apartment.jpg'),(3560,1512,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1902;s:6:\"height\";i:1330;s:4:\"file\";s:27:\"2024/11/Juice_apartment.jpg\";s:8:\"filesize\";i:1340891;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Juice_apartment-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33261;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Juice_apartment-1024x716.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:716;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160768;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Juice_apartment-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21782;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Juice_apartment-768x537.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:537;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105324;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"Juice_apartment-1536x1074.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1074;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293885;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3561,1510,'original-file','2024/10/image3-updraft-pre-smush-original.jpeg'),(3562,1510,'smush-complete','1'),(3563,1510,'smush-info','The file was compressed from 316.38 KB to 214.35 KB, saving 32.25 percent, using WP-Optimize'),(3564,1510,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:323969;s:12:\"smushed-size\";i:219493;s:15:\"savings-percent\";d:32.25;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:323969;s:10:\"compressed\";i:219493;}s:6:\"medium\";a:2:{s:8:\"original\";i:18162;s:10:\"compressed\";i:17937;}s:5:\"large\";a:2:{s:8:\"original\";i:104744;s:10:\"compressed\";i:104172;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:10005;s:10:\"compressed\";i:10005;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:68892;s:10:\"compressed\";i:68194;}}}'),(3565,1511,'original-file','2024/11/image3-edited-updraft-pre-smush-original.jpeg'),(3566,1511,'smush-complete','1'),(3567,1511,'smush-info','The file was compressed from 125.77 KB to 124.86 KB, saving 0.73 percent, using WP-Optimize'),(3568,1511,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:128793;s:12:\"smushed-size\";i:127855;s:15:\"savings-percent\";d:0.73;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:128793;s:10:\"compressed\";i:127855;}s:6:\"medium\";a:2:{s:8:\"original\";i:15880;s:10:\"compressed\";i:15732;}s:5:\"large\";a:2:{s:8:\"original\";i:87837;s:10:\"compressed\";i:87297;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:9504;s:10:\"compressed\";i:9504;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:57923;s:10:\"compressed\";i:57422;}}}'),(3569,1512,'original-file','2024/11/Juice_apartment-updraft-pre-smush-original.jpg'),(3570,1512,'smush-complete','1'),(3571,1512,'smush-info','The file was compressed from 1.28 MB to 496.09 KB, saving 62.12 percent, using WP-Optimize'),(3572,1512,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:1340891;s:12:\"smushed-size\";i:507993;s:15:\"savings-percent\";d:62.12;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:1340891;s:10:\"compressed\";i:507993;}s:6:\"medium\";a:2:{s:8:\"original\";i:33261;s:10:\"compressed\";i:32952;}s:5:\"large\";a:2:{s:8:\"original\";i:160768;s:10:\"compressed\";i:159668;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:21782;s:10:\"compressed\";i:21782;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:105324;s:10:\"compressed\";i:104784;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:293885;s:10:\"compressed\";i:293863;}}}'),(3573,1514,'_wp_attached_file','2024/11/Juice_apartment-2.png'),(3574,1514,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1902;s:6:\"height\";i:716;s:4:\"file\";s:29:\"2024/11/Juice_apartment-2.png\";s:8:\"filesize\";i:1923841;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Juice_apartment-2-300x113.png\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62391;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Juice_apartment-2-1024x385.png\";s:5:\"width\";i:1024;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579132;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Juice_apartment-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38395;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Juice_apartment-2-768x289.png\";s:5:\"width\";i:768;s:6:\"height\";i:289;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:339021;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"Juice_apartment-2-1536x578.png\";s:5:\"width\";i:1536;s:6:\"height\";i:578;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1216380;}}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:{}}}'),(3575,1514,'original-file','2024/11/Juice_apartment-2-updraft-pre-smush-original.png'),(3576,1514,'smush-complete','1'),(3577,1514,'smush-info','The file was compressed from 1.83 MB to 753.05 KB, saving 59.92 percent, using WP-Optimize'),(3578,1514,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:1923841;s:12:\"smushed-size\";i:771125;s:15:\"savings-percent\";d:59.92;s:10:\"sizes-info\";a:6:{s:4:\"full\";a:2:{s:8:\"original\";i:1923841;s:10:\"compressed\";i:771125;}s:6:\"medium\";a:2:{s:8:\"original\";i:62391;s:10:\"compressed\";i:24475;}s:5:\"large\";a:2:{s:8:\"original\";i:579132;s:10:\"compressed\";i:229248;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:38395;s:10:\"compressed\";i:16155;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:339021;s:10:\"compressed\";i:134009;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:1216380;s:10:\"compressed\";i:492400;}}}'),(3588,1521,'_wp_attached_file','2024/11/everything-electrical.jpg'),(3589,1521,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2119;s:6:\"height\";i:1414;s:4:\"file\";s:33:\"2024/11/everything-electrical.jpg\";s:8:\"filesize\";i:173414;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"everything-electrical-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10491;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"everything-electrical-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61695;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"everything-electrical-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4751;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"everything-electrical-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40122;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"everything-electrical-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114601;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"everything-electrical-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177727;}}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:{}}}'),(3590,1522,'_wp_attached_file','2024/11/everything-electrical-1.jpg'),(3591,1522,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2119;s:6:\"height\";i:1414;s:4:\"file\";s:35:\"2024/11/everything-electrical-1.jpg\";s:8:\"filesize\";i:173414;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"everything-electrical-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10491;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"everything-electrical-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61695;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"everything-electrical-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4751;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"everything-electrical-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40122;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"everything-electrical-1-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114601;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"everything-electrical-1-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177727;}}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:{}}}'),(3594,1521,'original-file','2024/11/everything-electrical-updraft-pre-smush-original.jpg'),(3595,1521,'smush-complete','1'),(3596,1521,'smush-info','The file was compressed from 169.35 KB to 169.35 KB, saving 0 percent, using WP-Optimize'),(3597,1521,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:173414;s:12:\"smushed-size\";i:173414;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:173414;s:10:\"compressed\";i:173414;}s:6:\"medium\";a:2:{s:8:\"original\";i:10491;s:10:\"compressed\";i:10491;}s:5:\"large\";a:2:{s:8:\"original\";i:61695;s:10:\"compressed\";i:61286;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4751;s:10:\"compressed\";i:4751;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:40122;s:10:\"compressed\";i:39916;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:114601;s:10:\"compressed\";i:113576;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:177727;s:10:\"compressed\";i:177203;}}}'),(3598,1522,'original-file','2024/11/everything-electrical-1-updraft-pre-smush-original.jpg'),(3599,1522,'smush-complete','1'),(3600,1522,'smush-info','The file was compressed from 169.35 KB to 169.35 KB, saving 0 percent, using WP-Optimize'),(3601,1522,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:173414;s:12:\"smushed-size\";i:173414;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:173414;s:10:\"compressed\";i:173414;}s:6:\"medium\";a:2:{s:8:\"original\";i:10491;s:10:\"compressed\";i:10491;}s:5:\"large\";a:2:{s:8:\"original\";i:61695;s:10:\"compressed\";i:61286;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4751;s:10:\"compressed\";i:4751;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:40122;s:10:\"compressed\";i:39916;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:114601;s:10:\"compressed\";i:113576;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:177727;s:10:\"compressed\";i:177203;}}}'),(3602,1523,'_edit_lock','1731529787:2'),(3612,1526,'_menu_item_type','post_type'),(3613,1526,'_menu_item_menu_item_parent','0'),(3614,1526,'_menu_item_object_id','1523'),(3615,1526,'_menu_item_object','page'),(3616,1526,'_menu_item_target',''),(3617,1526,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3618,1526,'_menu_item_xfn',''),(3619,1526,'_menu_item_url',''),(3620,1523,'_edit_last','2'),(3621,1523,'banner_title',''),(3622,1523,'_banner_title','field_63e578d5b6dca'),(3623,1523,'page_banner_button',''),(3624,1523,'_page_banner_button','field_63e578e8b6dcb'),(3625,1523,'_yoast_wpseo_content_score','60'),(3626,1523,'_yoast_wpseo_estimated-reading-time-minutes','3'),(3631,5,'_wp_old_date','2024-04-04'),(3632,1369,'_wp_old_date','2024-04-04'),(3633,1387,'_wp_old_date','2024-04-04'),(3634,1383,'_wp_old_date','2024-04-04'),(3635,1367,'_wp_old_date','2024-04-04'),(3636,1362,'_wp_old_date','2024-04-04'),(3637,1360,'_wp_old_date','2024-04-04'),(3638,1358,'_wp_old_date','2024-04-04'),(3639,1363,'_wp_old_date','2024-04-04'),(3640,1364,'_wp_old_date','2024-04-04'),(3641,1365,'_wp_old_date','2024-04-04'),(3642,1357,'_wp_old_date','2024-04-04'),(3643,1359,'_wp_old_date','2024-04-04'),(3644,1366,'_wp_old_date','2024-04-04'),(3645,1361,'_wp_old_date','2024-04-04'),(3646,1370,'_wp_old_date','2024-04-04'),(3647,1368,'_wp_old_date','2024-04-04'),(3652,1018,'_wp_old_date','2024-04-04'),(3653,1017,'_wp_old_date','2024-04-04'),(3654,1016,'_wp_old_date','2024-04-04'),(3655,1020,'_wp_old_date','2024-04-04'),(3656,1025,'_wp_old_date','2024-04-04'),(3657,1026,'_wp_old_date','2024-04-04'),(3658,1027,'_wp_old_date','2024-04-04'),(3660,1028,'_wp_old_date','2024-04-04'),(3661,1023,'_wp_old_date','2024-04-04'),(3662,1024,'_wp_old_date','2024-04-04'),(3663,1021,'_wp_old_date','2024-04-04'),(3672,1533,'_edit_lock','1733694634:2'),(3673,1534,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-10.jpg'),(3674,1534,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:57:\"2024/12/juice-electrical-home-residential-services-10.jpg\";s:8:\"filesize\";i:71427;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4968;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-10-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29507;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2528;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19010;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"juice-electrical-home-residential-services-10-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54780;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6391;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-10-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9470;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-10-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17537;}}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:{}}}'),(3675,1535,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-11.jpg'),(3676,1535,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:57:\"2024/12/juice-electrical-home-residential-services-11.jpg\";s:8:\"filesize\";i:185704;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8131;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-11-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57048;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4169;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33391;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"juice-electrical-home-residential-services-11-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121497;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11086;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-11-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16765;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-11-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33443;}}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:{}}}'),(3677,1536,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-9.jpg'),(3678,1536,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:56:\"2024/12/juice-electrical-home-residential-services-9.jpg\";s:8:\"filesize\";i:123661;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7240;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-9-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46259;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3974;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29361;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-9-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88028;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10647;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-9-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16167;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-9-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30211;}}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:{}}}'),(3679,1537,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-1.jpg'),(3680,1537,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:56:\"2024/12/juice-electrical-home-residential-services-1.jpg\";s:8:\"filesize\";i:275551;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14412;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96046;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6821;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61021;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182142;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20004;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30445;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56931;}}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:{}}}'),(3681,1538,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-4.jpg'),(3682,1538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:56:\"2024/12/juice-electrical-home-residential-services-4.jpg\";s:8:\"filesize\";i:117573;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7786;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-4-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47557;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3626;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30767;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-4-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89149;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9941;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-4-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14949;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27202;}}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:{}}}'),(3683,1539,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-6.jpg'),(3684,1539,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:56:\"2024/12/juice-electrical-home-residential-services-6.jpg\";s:8:\"filesize\";i:69003;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3853;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-6-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27789;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1762;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17126;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-6-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53985;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4769;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-6-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7740;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-6-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15938;}}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:{}}}'),(3685,1540,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-5.jpg'),(3686,1540,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:56:\"2024/12/juice-electrical-home-residential-services-5.jpg\";s:8:\"filesize\";i:166067;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6284;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-5-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52239;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2956;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29784;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-5-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112971;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7734;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-5-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11737;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-5-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23409;}}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:{}}}'),(3687,1541,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-8.jpg'),(3688,1541,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:56:\"2024/12/juice-electrical-home-residential-services-8.jpg\";s:8:\"filesize\";i:156960;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9695;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-8-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60215;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4300;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39058;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-8-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112204;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12217;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-8-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18560;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-8-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34439;}}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:{}}}'),(3689,1542,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-7.jpg'),(3690,1542,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:56:\"2024/12/juice-electrical-home-residential-services-7.jpg\";s:8:\"filesize\";i:211879;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12224;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-7-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5752;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49053;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-7-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146374;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15132;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-7-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21987;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-7-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40483;}}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:{}}}'),(3691,1543,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-4-1.jpg'),(3692,1543,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:58:\"2024/12/juice-electrical-home-residential-services-4-1.jpg\";s:8:\"filesize\";i:117573;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-4-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7786;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"juice-electrical-home-residential-services-4-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47557;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3626;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-4-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30767;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"juice-electrical-home-residential-services-4-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89149;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-4-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9941;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-4-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14949;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-4-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27202;}}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:{}}}'),(3693,1544,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-3.jpg'),(3694,1544,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:56:\"2024/12/juice-electrical-home-residential-services-3.jpg\";s:8:\"filesize\";i:181477;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10519;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-3-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65676;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5193;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41595;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-3-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125760;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14119;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-3-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21243;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:56:\"juice-electrical-home-residential-services-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39355;}}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:{}}}'),(3695,1534,'original-file','2024/12/juice-electrical-home-residential-services-10-updraft-pre-smush-original.jpg'),(3696,1534,'smush-complete','1'),(3697,1534,'smush-info','The file was compressed from 69.75 KB to 69.75 KB, saving 0 percent, using WP-Optimize'),(3698,1534,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:71427;s:12:\"smushed-size\";i:71427;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:71427;s:10:\"compressed\";i:71427;}s:6:\"medium\";a:2:{s:8:\"original\";i:4968;s:10:\"compressed\";i:4968;}s:5:\"large\";a:2:{s:8:\"original\";i:29507;s:10:\"compressed\";i:29507;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:2528;s:10:\"compressed\";i:2528;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:19010;s:10:\"compressed\";i:19010;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:54780;s:10:\"compressed\";i:54780;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:6391;s:10:\"compressed\";i:6391;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:9470;s:10:\"compressed\";i:9470;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:17537;s:10:\"compressed\";i:17537;}}}'),(3699,1535,'original-file','2024/12/juice-electrical-home-residential-services-11-updraft-pre-smush-original.jpg'),(3700,1535,'smush-complete','1'),(3701,1535,'smush-info','The file was compressed from 181.35 KB to 181.35 KB, saving 0 percent, using WP-Optimize'),(3702,1535,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:185704;s:12:\"smushed-size\";i:185704;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:185704;s:10:\"compressed\";i:185704;}s:6:\"medium\";a:2:{s:8:\"original\";i:8131;s:10:\"compressed\";i:8131;}s:5:\"large\";a:2:{s:8:\"original\";i:57048;s:10:\"compressed\";i:55935;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4169;s:10:\"compressed\";i:4169;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:33391;s:10:\"compressed\";i:32871;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:121497;s:10:\"compressed\";i:119460;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:11086;s:10:\"compressed\";i:11086;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:16765;s:10:\"compressed\";i:16682;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:33443;s:10:\"compressed\";i:32862;}}}'),(3703,1536,'original-file','2024/12/juice-electrical-home-residential-services-9-updraft-pre-smush-original.jpg'),(3704,1536,'smush-complete','1'),(3705,1536,'smush-info','The file was compressed from 120.76 KB to 120.76 KB, saving 0 percent, using WP-Optimize'),(3706,1536,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:123661;s:12:\"smushed-size\";i:123661;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:123661;s:10:\"compressed\";i:123661;}s:6:\"medium\";a:2:{s:8:\"original\";i:7240;s:10:\"compressed\";i:7240;}s:5:\"large\";a:2:{s:8:\"original\";i:46259;s:10:\"compressed\";i:45918;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:3974;s:10:\"compressed\";i:3974;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:29361;s:10:\"compressed\";i:29278;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:88028;s:10:\"compressed\";i:87179;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:10647;s:10:\"compressed\";i:10647;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:16167;s:10:\"compressed\";i:16167;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:30211;s:10:\"compressed\";i:29890;}}}'),(3707,1537,'original-file','2024/12/juice-electrical-home-residential-services-1-updraft-pre-smush-original.jpg'),(3708,1537,'smush-complete','1'),(3709,1537,'smush-info','The file was compressed from 269.09 KB to 269.09 KB, saving 0 percent, using WP-Optimize'),(3710,1537,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:275551;s:12:\"smushed-size\";i:275551;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:275551;s:10:\"compressed\";i:275551;}s:6:\"medium\";a:2:{s:8:\"original\";i:14412;s:10:\"compressed\";i:14246;}s:5:\"large\";a:2:{s:8:\"original\";i:96046;s:10:\"compressed\";i:95868;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6821;s:10:\"compressed\";i:6821;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:61021;s:10:\"compressed\";i:60761;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:182142;s:10:\"compressed\";i:181605;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:20004;s:10:\"compressed\";i:19801;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:30445;s:10:\"compressed\";i:30239;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:56931;s:10:\"compressed\";i:56562;}}}'),(3711,1538,'original-file','2024/12/juice-electrical-home-residential-services-4-updraft-pre-smush-original.jpg'),(3712,1538,'smush-complete','1'),(3713,1538,'smush-info','The file was compressed from 114.82 KB to 114.82 KB, saving 0 percent, using WP-Optimize'),(3714,1538,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:117573;s:12:\"smushed-size\";i:117573;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:117573;s:10:\"compressed\";i:117573;}s:6:\"medium\";a:2:{s:8:\"original\";i:7786;s:10:\"compressed\";i:7786;}s:5:\"large\";a:2:{s:8:\"original\";i:47557;s:10:\"compressed\";i:47314;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:3626;s:10:\"compressed\";i:3626;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:30767;s:10:\"compressed\";i:30721;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:89149;s:10:\"compressed\";i:88535;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:9941;s:10:\"compressed\";i:9941;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:14949;s:10:\"compressed\";i:14949;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:27202;s:10:\"compressed\";i:27154;}}}'),(3715,1539,'original-file','2024/12/juice-electrical-home-residential-services-6-updraft-pre-smush-original.jpg'),(3716,1539,'smush-complete','1'),(3717,1539,'smush-info','The file was compressed from 67.39 KB to 67.39 KB, saving 0 percent, using WP-Optimize'),(3718,1539,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:69003;s:12:\"smushed-size\";i:69003;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:69003;s:10:\"compressed\";i:69003;}s:6:\"medium\";a:2:{s:8:\"original\";i:3853;s:10:\"compressed\";i:3853;}s:5:\"large\";a:2:{s:8:\"original\";i:27789;s:10:\"compressed\";i:27789;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:1762;s:10:\"compressed\";i:1762;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:17126;s:10:\"compressed\";i:17126;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:53985;s:10:\"compressed\";i:53985;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:4769;s:10:\"compressed\";i:4769;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:7740;s:10:\"compressed\";i:7740;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:15938;s:10:\"compressed\";i:15938;}}}'),(3719,1540,'original-file','2024/12/juice-electrical-home-residential-services-5-updraft-pre-smush-original.jpg'),(3720,1540,'smush-complete','1'),(3721,1540,'smush-info','The file was compressed from 162.17 KB to 162.17 KB, saving 0 percent, using WP-Optimize'),(3722,1540,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:166067;s:12:\"smushed-size\";i:166067;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:166067;s:10:\"compressed\";i:166067;}s:6:\"medium\";a:2:{s:8:\"original\";i:6284;s:10:\"compressed\";i:6284;}s:5:\"large\";a:2:{s:8:\"original\";i:52239;s:10:\"compressed\";i:52239;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:2956;s:10:\"compressed\";i:2956;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:29784;s:10:\"compressed\";i:29784;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:112971;s:10:\"compressed\";i:112971;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:7734;s:10:\"compressed\";i:7734;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:11737;s:10:\"compressed\";i:11737;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:23409;s:10:\"compressed\";i:23409;}}}'),(3723,1541,'original-file','2024/12/juice-electrical-home-residential-services-8-updraft-pre-smush-original.jpg'),(3724,1541,'smush-complete','1'),(3725,1541,'smush-info','The file was compressed from 153.28 KB to 153.28 KB, saving 0 percent, using WP-Optimize'),(3726,1541,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:156960;s:12:\"smushed-size\";i:156960;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:156960;s:10:\"compressed\";i:156960;}s:6:\"medium\";a:2:{s:8:\"original\";i:9695;s:10:\"compressed\";i:9695;}s:5:\"large\";a:2:{s:8:\"original\";i:60215;s:10:\"compressed\";i:59382;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:4300;s:10:\"compressed\";i:4300;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:39058;s:10:\"compressed\";i:38566;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:112204;s:10:\"compressed\";i:111097;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:12217;s:10:\"compressed\";i:12217;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:18560;s:10:\"compressed\";i:18560;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:34439;s:10:\"compressed\";i:34102;}}}'),(3727,1542,'original-file','2024/12/juice-electrical-home-residential-services-7-updraft-pre-smush-original.jpg'),(3728,1542,'smush-complete','1'),(3729,1542,'smush-info','The file was compressed from 206.91 KB to 206.91 KB, saving 0 percent, using WP-Optimize'),(3730,1542,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:211879;s:12:\"smushed-size\";i:211879;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:211879;s:10:\"compressed\";i:211879;}s:6:\"medium\";a:2:{s:8:\"original\";i:12224;s:10:\"compressed\";i:12150;}s:5:\"large\";a:2:{s:8:\"original\";i:76469;s:10:\"compressed\";i:76043;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5752;s:10:\"compressed\";i:5752;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:49053;s:10:\"compressed\";i:48902;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:146374;s:10:\"compressed\";i:145402;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:15132;s:10:\"compressed\";i:15132;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:21987;s:10:\"compressed\";i:21987;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:40483;s:10:\"compressed\";i:40483;}}}'),(3731,1543,'original-file','2024/12/juice-electrical-home-residential-services-4-1-updraft-pre-smush-original.jpg'),(3732,1543,'smush-complete','1'),(3733,1543,'smush-info','The file was compressed from 114.82 KB to 114.82 KB, saving 0 percent, using WP-Optimize'),(3734,1543,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:117573;s:12:\"smushed-size\";i:117573;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:117573;s:10:\"compressed\";i:117573;}s:6:\"medium\";a:2:{s:8:\"original\";i:7786;s:10:\"compressed\";i:7786;}s:5:\"large\";a:2:{s:8:\"original\";i:47557;s:10:\"compressed\";i:47314;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:3626;s:10:\"compressed\";i:3626;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:30767;s:10:\"compressed\";i:30721;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:89149;s:10:\"compressed\";i:88535;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:9941;s:10:\"compressed\";i:9941;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:14949;s:10:\"compressed\";i:14949;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:27202;s:10:\"compressed\";i:27154;}}}'),(3735,1544,'original-file','2024/12/juice-electrical-home-residential-services-3-updraft-pre-smush-original.jpg'),(3736,1544,'smush-complete','1'),(3737,1544,'smush-info','The file was compressed from 177.22 KB to 177.22 KB, saving 0 percent, using WP-Optimize'),(3738,1544,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:181477;s:12:\"smushed-size\";i:181477;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:9:{s:4:\"full\";a:2:{s:8:\"original\";i:181477;s:10:\"compressed\";i:181477;}s:6:\"medium\";a:2:{s:8:\"original\";i:10519;s:10:\"compressed\";i:10519;}s:5:\"large\";a:2:{s:8:\"original\";i:65676;s:10:\"compressed\";i:65172;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5193;s:10:\"compressed\";i:5193;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:41595;s:10:\"compressed\";i:41519;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:125760;s:10:\"compressed\";i:124530;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:14119;s:10:\"compressed\";i:14119;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:21243;s:10:\"compressed\";i:21243;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:39355;s:10:\"compressed\";i:39291;}}}'),(3739,1545,'_wp_attached_file','2024/12/garden-speaker.jpg'),(3740,1545,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2304;s:6:\"height\";i:1792;s:4:\"file\";s:26:\"2024/12/garden-speaker.jpg\";s:8:\"filesize\";i:371433;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"garden-speaker-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18694;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"garden-speaker-1024x796.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"garden-speaker-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7165;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"garden-speaker-768x597.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83916;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"garden-speaker-1536x1195.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243456;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"garden-speaker-2048x1593.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:372480;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:26:\"garden-speaker-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22422;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:26:\"garden-speaker-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35237;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:26:\"garden-speaker-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66884;}}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:{}}}'),(3741,1546,'_wp_attached_file','2024/12/outdoor-radiant-heating.jpg'),(3742,1546,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2304;s:6:\"height\";i:1792;s:4:\"file\";s:35:\"2024/12/outdoor-radiant-heating.jpg\";s:8:\"filesize\";i:788791;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"outdoor-radiant-heating-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18357;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"outdoor-radiant-heating-1024x796.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"outdoor-radiant-heating-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6451;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"outdoor-radiant-heating-768x597.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100198;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"outdoor-radiant-heating-1536x1195.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:325225;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"outdoor-radiant-heating-2048x1593.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:518774;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:35:\"outdoor-radiant-heating-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22952;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:35:\"outdoor-radiant-heating-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38485;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:35:\"outdoor-radiant-heating-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78635;}}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:{}}}'),(3743,1545,'original-file','2024/12/garden-speaker-updraft-pre-smush-original.jpg'),(3744,1547,'_wp_attached_file','2024/12/internet-and-computer-networking-scaled.jpeg'),(3745,1547,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2024/12/internet-and-computer-networking-scaled.jpeg\";s:8:\"filesize\";i:408726;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"internet-and-computer-networking-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15096;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"internet-and-computer-networking-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101537;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"internet-and-computer-networking-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6952;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"internet-and-computer-networking-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65309;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"internet-and-computer-networking-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187002;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"internet-and-computer-networking-2048x1365.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:290150;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:45:\"internet-and-computer-networking-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20773;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:45:\"internet-and-computer-networking-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32480;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:45:\"internet-and-computer-networking-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61330;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:37:\"internet-and-computer-networking.jpeg\";}'),(3746,1545,'smush-complete','1'),(3747,1545,'smush-info','The file was compressed from 362.73 KB to 362.73 KB, saving 0 percent, using WP-Optimize'),(3748,1545,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:371433;s:12:\"smushed-size\";i:371433;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:10:{s:4:\"full\";a:2:{s:8:\"original\";i:371433;s:10:\"compressed\";i:371433;}s:6:\"medium\";a:2:{s:8:\"original\";i:18694;s:10:\"compressed\";i:18286;}s:5:\"large\";a:2:{s:8:\"original\";i:130052;s:10:\"compressed\";i:127076;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:7165;s:10:\"compressed\";i:7165;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:83916;s:10:\"compressed\";i:81722;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:243456;s:10:\"compressed\";i:239185;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:372480;s:10:\"compressed\";i:367581;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:22422;s:10:\"compressed\";i:21920;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:35237;s:10:\"compressed\";i:34235;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:66884;s:10:\"compressed\";i:65199;}}}'),(3749,1546,'original-file','2024/12/outdoor-radiant-heating-updraft-pre-smush-original.jpg'),(3750,1546,'smush-complete','1'),(3751,1546,'smush-info','The file was compressed from 770.30 KB to 658.89 KB, saving 14.46 percent, using WP-Optimize'),(3752,1546,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:788791;s:12:\"smushed-size\";i:674708;s:15:\"savings-percent\";d:14.46;s:10:\"sizes-info\";a:10:{s:4:\"full\";a:2:{s:8:\"original\";i:788791;s:10:\"compressed\";i:674708;}s:6:\"medium\";a:2:{s:8:\"original\";i:18357;s:10:\"compressed\";i:18129;}s:5:\"large\";a:2:{s:8:\"original\";i:163484;s:10:\"compressed\";i:159174;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6451;s:10:\"compressed\";i:6451;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:100198;s:10:\"compressed\";i:97787;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:325225;s:10:\"compressed\";i:315205;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:518774;s:10:\"compressed\";i:502450;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:22952;s:10:\"compressed\";i:22669;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:38485;s:10:\"compressed\";i:37930;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:78635;s:10:\"compressed\";i:77094;}}}'),(3753,1548,'_wp_attached_file','2024/12/oven-and-appliance-repair.jpg'),(3754,1548,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2304;s:6:\"height\";i:1792;s:4:\"file\";s:37:\"2024/12/oven-and-appliance-repair.jpg\";s:8:\"filesize\";i:331453;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"oven-and-appliance-repair-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17699;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"oven-and-appliance-repair-1024x796.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118104;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"oven-and-appliance-repair-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7067;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"oven-and-appliance-repair-768x597.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77212;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"oven-and-appliance-repair-1536x1195.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218839;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"oven-and-appliance-repair-2048x1593.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:334790;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:37:\"oven-and-appliance-repair-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21492;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:37:\"oven-and-appliance-repair-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33232;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:37:\"oven-and-appliance-repair-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62320;}}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:{}}}'),(3755,1549,'_wp_attached_file','2024/12/garden-lighting-scaled.jpeg'),(3756,1549,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:35:\"2024/12/garden-lighting-scaled.jpeg\";s:8:\"filesize\";i:636165;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"garden-lighting-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12016;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"garden-lighting-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111492;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"garden-lighting-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5111;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"garden-lighting-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65866;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"garden-lighting-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236097;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"garden-lighting-2048x1365.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:410023;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:28:\"garden-lighting-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17073;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:28:\"garden-lighting-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28419;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:28:\"garden-lighting-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59633;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"garden-lighting.jpeg\";}'),(3757,1547,'original-file','2024/12/internet-and-computer-networking-scaled-updraft-pre-smush-original.jpeg'),(3758,1547,'smush-complete','1'),(3759,1547,'smush-info','The file was compressed from 399.15 KB to 395.44 KB, saving 0.93 percent, using WP-Optimize'),(3760,1547,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:408726;s:12:\"smushed-size\";i:404927;s:15:\"savings-percent\";d:0.93;s:10:\"sizes-info\";a:10:{s:4:\"full\";a:2:{s:8:\"original\";i:408726;s:10:\"compressed\";i:404927;}s:6:\"medium\";a:2:{s:8:\"original\";i:15096;s:10:\"compressed\";i:14822;}s:5:\"large\";a:2:{s:8:\"original\";i:101537;s:10:\"compressed\";i:100064;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:6952;s:10:\"compressed\";i:6952;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:65309;s:10:\"compressed\";i:64172;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:187002;s:10:\"compressed\";i:185117;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:290150;s:10:\"compressed\";i:287638;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:20773;s:10:\"compressed\";i:20389;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:32480;s:10:\"compressed\";i:31833;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:61330;s:10:\"compressed\";i:60179;}}}'),(3761,1548,'original-file','2024/12/oven-and-appliance-repair-updraft-pre-smush-original.jpg'),(3762,1548,'smush-complete','1'),(3763,1548,'smush-info','The file was compressed from 323.68 KB to 323.68 KB, saving 0 percent, using WP-Optimize'),(3764,1548,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:331453;s:12:\"smushed-size\";i:331453;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:10:{s:4:\"full\";a:2:{s:8:\"original\";i:331453;s:10:\"compressed\";i:331453;}s:6:\"medium\";a:2:{s:8:\"original\";i:17699;s:10:\"compressed\";i:17524;}s:5:\"large\";a:2:{s:8:\"original\";i:118104;s:10:\"compressed\";i:116611;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:7067;s:10:\"compressed\";i:7067;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:77212;s:10:\"compressed\";i:76153;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:218839;s:10:\"compressed\";i:216533;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:334790;s:10:\"compressed\";i:330684;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:21492;s:10:\"compressed\";i:21202;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:33232;s:10:\"compressed\";i:32767;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:62320;s:10:\"compressed\";i:61366;}}}'),(3765,1549,'original-file','2024/12/garden-lighting-scaled-updraft-pre-smush-original.jpeg'),(3766,1549,'smush-complete','1'),(3767,1549,'smush-info','The file was compressed from 621.25 KB to 600.34 KB, saving 3.37 percent, using WP-Optimize'),(3768,1549,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:636165;s:12:\"smushed-size\";i:614753;s:15:\"savings-percent\";d:3.37;s:10:\"sizes-info\";a:10:{s:4:\"full\";a:2:{s:8:\"original\";i:636165;s:10:\"compressed\";i:614753;}s:6:\"medium\";a:2:{s:8:\"original\";i:12016;s:10:\"compressed\";i:11956;}s:5:\"large\";a:2:{s:8:\"original\";i:111492;s:10:\"compressed\";i:109215;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5111;s:10:\"compressed\";i:5111;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:65866;s:10:\"compressed\";i:64578;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:236097;s:10:\"compressed\";i:230590;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:410023;s:10:\"compressed\";i:397974;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:17073;s:10:\"compressed\";i:16977;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:28419;s:10:\"compressed\";i:27960;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:59633;s:10:\"compressed\";i:58418;}}}'),(3769,1550,'_wp_attached_file','2024/12/spa-pool.jpg'),(3770,1550,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2304;s:6:\"height\";i:1792;s:4:\"file\";s:20:\"2024/12/spa-pool.jpg\";s:8:\"filesize\";i:581884;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"spa-pool-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19686;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"spa-pool-1024x796.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181616;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"spa-pool-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7249;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"spa-pool-768x597.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110441;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"spa-pool-1536x1195.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:357964;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"spa-pool-2048x1593.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:560490;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:20:\"spa-pool-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24879;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:20:\"spa-pool-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41805;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:20:\"spa-pool-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87474;}}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:{}}}'),(3771,1551,'_wp_attached_file','2024/12/juice-electrical-home-residential-services-13-scaled.jpg'),(3772,1551,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:64:\"2024/12/juice-electrical-home-residential-services-13-scaled.jpg\";s:8:\"filesize\";i:280915;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11462;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"juice-electrical-home-residential-services-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67360;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5115;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44147;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"juice-electrical-home-residential-services-13-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121276;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:59:\"juice-electrical-home-residential-services-13-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191035;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13943;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-13-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20918;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:57:\"juice-electrical-home-residential-services-13-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37669;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:49:\"juice-electrical-home-residential-services-13.jpg\";}'),(3773,1533,'_thumbnail_id','1535'),(3774,1533,'_edit_last','2'),(3775,1533,'_yoast_wpseo_primary_category','1'),(3776,1533,'_yoast_wpseo_content_score','30'),(3777,1533,'_yoast_wpseo_estimated-reading-time-minutes','7'),(3778,1550,'original-file','2024/12/spa-pool-updraft-pre-smush-original.jpg'),(3779,1550,'smush-complete','1'),(3780,1550,'smush-info','The file was compressed from 568.25 KB to 568.25 KB, saving 0 percent, using WP-Optimize'),(3781,1550,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:581884;s:12:\"smushed-size\";i:581884;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:10:{s:4:\"full\";a:2:{s:8:\"original\";i:581884;s:10:\"compressed\";i:581884;}s:6:\"medium\";a:2:{s:8:\"original\";i:19686;s:10:\"compressed\";i:19212;}s:5:\"large\";a:2:{s:8:\"original\";i:181616;s:10:\"compressed\";i:176838;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:7249;s:10:\"compressed\";i:7249;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:110441;s:10:\"compressed\";i:107173;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:357964;s:10:\"compressed\";i:349396;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:560490;s:10:\"compressed\";i:547407;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:24879;s:10:\"compressed\";i:24291;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:41805;s:10:\"compressed\";i:40663;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:87474;s:10:\"compressed\";i:84937;}}}'),(3782,1551,'original-file','2024/12/juice-electrical-home-residential-services-13-scaled-updraft-pre-smush-original.jpg'),(3783,1551,'smush-complete','1'),(3784,1551,'smush-info','The file was compressed from 274.33 KB to 274.33 KB, saving 0 percent, using WP-Optimize'),(3785,1551,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:280915;s:12:\"smushed-size\";i:280915;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:10:{s:4:\"full\";a:2:{s:8:\"original\";i:280915;s:10:\"compressed\";i:280915;}s:6:\"medium\";a:2:{s:8:\"original\";i:11462;s:10:\"compressed\";i:11462;}s:5:\"large\";a:2:{s:8:\"original\";i:67360;s:10:\"compressed\";i:67360;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:5115;s:10:\"compressed\";i:5115;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:44147;s:10:\"compressed\";i:44147;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:121276;s:10:\"compressed\";i:121276;}s:9:\"2048x2048\";a:2:{s:8:\"original\";i:191035;s:10:\"compressed\";i:191035;}s:21:\"gform-image-choice-sm\";a:2:{s:8:\"original\";i:13943;s:10:\"compressed\";i:13943;}s:21:\"gform-image-choice-md\";a:2:{s:8:\"original\";i:20918;s:10:\"compressed\";i:20918;}s:21:\"gform-image-choice-lg\";a:2:{s:8:\"original\";i:37669;s:10:\"compressed\";i:37669;}}}'),(3788,1554,'_edit_lock','1733877897:2'),(3791,1556,'banner_title',''),(3792,1556,'_banner_title','field_63e578d5b6dca'),(3793,1556,'page_banner_button',''),(3794,1556,'_page_banner_button','field_63e578e8b6dcb'),(3797,1554,'_wp_old_date','2024-12-11'),(3798,1554,'_thumbnail_id','1152'),(3799,1554,'_edit_last','2'),(3800,1554,'_yoast_wpseo_primary_category','1'),(3801,1554,'_yoast_wpseo_content_score','90'),(3802,1554,'_yoast_wpseo_estimated-reading-time-minutes','4'),(3805,1559,'_edit_lock','1733877689:2'),(3808,1559,'_wp_old_date','2024-12-11'),(3809,1559,'_thumbnail_id','1066'),(3810,1559,'_edit_last','2'),(3811,1559,'_yoast_wpseo_primary_category','1'),(3812,1559,'_yoast_wpseo_content_score','90'),(3813,1559,'_yoast_wpseo_estimated-reading-time-minutes','3'),(3814,1561,'_edit_lock','1733878015:2'),(3817,1561,'_wp_old_date','2024-12-11'),(3818,1561,'_edit_last','2'),(3819,1561,'_yoast_wpseo_primary_category','1'),(3820,1561,'_yoast_wpseo_content_score','90'),(3821,1561,'_yoast_wpseo_estimated-reading-time-minutes','4'),(3824,1561,'_thumbnail_id','1157'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext 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=InnoDB AUTO_INCREMENT=1563 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,2,'2020-09-08 02:18:49','2020-09-08 02:18:49','<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:columns {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column {\"width\":\"16.6%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"backgroundColor\":\"transparent\"} -->\n<div class=\"wp-block-column has-transparent-background-color has-background\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"brand-primary\",\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-brand-primary-background-color has-text-color has-background wp-element-button\" href=\"/residential/\" style=\"border-radius:0px;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Residential ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"},\"color\":{\"background\":\"#fdb913\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"/led-lighting/\" style=\"border-radius:0px;background-color:#fdb913;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>LED Lighting ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"brand-secondary\",\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-brand-secondary-background-color has-text-color has-background wp-element-button\" href=\"/heat-pumps/\" style=\"border-radius:0px;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Heat Pumps ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"},\"color\":{\"background\":\"#e2066f\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"/commercial/\" style=\"border-radius:0px;background-color:#e2066f;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Commercial ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"},\"color\":{\"background\":\"#92278f\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"/solar-solutions/\" style=\"border-radius:0px;background-color:#92278f;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Solar Solutions ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\",\"backgroundColor\":\"transparent\"} -->\n<div class=\"wp-block-column has-transparent-background-color has-background\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"},\"color\":{\"background\":\"#008fd5\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\" style=\"font-style:normal;font-weight:700\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"/industrial/\" style=\"border-radius:0px;background-color:#008fd5;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Industrial ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Looking for quality work by Master Electricians?<br><em>Your search is over.</em></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">What makes Juice <br>the best Electricians<br>in Christchurch?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Juice Electrical knows it can be hard to decide who to use, from all the electrical companies in Christchurch: how can you tell which is the best electrician for your needs?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We go above and beyond for our customers</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Juice overdelivers: ‘Fresh Each Day!’</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The proof, is how Juice Electrical has so many repeat clients and word-of-mouth referrals. For us, the key to having happy customers has always been to underpromise and overdeliver - not the other way round. And we’re on call 24/7 for Emergency electrical work in Christchurch and Canterbury.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each day we bring fresh energy to <em>every</em> job: Residential, Commercial, and Industrial. Never feel that your job might be too small for us - at Juice, we know that installing or repairing something seemingly minor, can make a big difference. We love that!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"15px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:15px\"><em>‘Always prompt, reliable, and happy to go the extra mile - nothing is ever too much trouble. Most impressive thing to me is that they are really friendly but there is absolutely no mucking around either.’ </em><em>-</em>Craig</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Top Quality Electrical Workmanship</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical understands that you want your job done once <em>and done right</em>. We built our reputation on a commitment to excellence - including our workmanship. Everyone at Juice understands the importance of ensuring our workmanship is the best in the business - for <em>every </em>job, big or small.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"15px\"}}} -->\n<p style=\"font-size:15px\"><em>‘Really appreciate the attention to detail, good advice, very prompt service and overall professional support and workmanship. Totally recommend this crew.’</em> - Sharon</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">We’re Family Focused</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like our customers, we’re family people. Juice Electrical helps make family time at home easier, relaxing and enjoyable. That includes ensuring the utmost level of safety for all our electrical work, and being respectful of you and your property when we enter, work on and leave your home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We know how important it is to trust people working on your home. Juice has many loyal clients that have been with us for years and we value the trust they place in us.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"15px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:15px\"><em>‘Refit all of our lighting inside and found them to be so awesome and reliable that we have used them at least three times since. These guys are great - highly recommend them!’</em> - Lisa & Tim</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1150,\"mediaLink\":\"https://juiceelectrical.co.nz/home/possessed-photography-zncldh5-srk-unsplash-1/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill-element has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/possessed-photography-znCLdh5-Srk-unsplash-1-1024x751.jpg\" alt=\"\" class=\"wp-image-1150 size-full\" style=\"object-position:50% 50%\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Talk to Juice about <em>faster </em>home EV/PHEV charging</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"transparent\",\"textColor\":\"white\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-transparent-background-color has-text-color has-background wp-element-button\" href=\"/ev-phev/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">See EV/PHEV Charging ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">How Juice Electrical can help you</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/services/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">See Juice Services ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Residential Electrician in Christchurch</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We’re very experienced, registered Master Electricians, providing a wide range of residential electrical installation, repair, and renovation work in Christchurch and Canterbury. Juice Electrical also has specialist expertise in <a href=\"/heat-pumps/\">Mitsubishi heat pumps</a> and <a href=\"/led-lighting/\">LED lighting installations.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We cover everything from new build wiring, Smart Home Automation, and security alarms, to spa pool installation and outdoor lighting. We love <em>small </em>jobs too - no matter what you need, give Juice a call.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get the juice about our <a href=\"/residential/\">Residential Electrical services here</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Commercial Electricians in Christchurch</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical looks after the electrical work for a wide range of commercial businesses in Christchurch and Canterbury. Call us if you need a reliable team of electricians for commercial installations, repairs, renovations or servicing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our commercial electrical work includes (but is not limited to): commercial and shop fit outs, new office wiring, lighting, installing internet and computer networks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get the juice about our <a href=\"/commercial/\">Commercial Electrical services here</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>‘As a customer service ‘champion’ I look for extremely high standards in all aspects of customer relations. Surpassed expectations … Recommend using these guys – we certainly will be.’ - </em>Nessie</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Industrial Electricians in Christchurch</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical provides quality industrial electrical installation, repairs, testing and maintenance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our industrial expertise includes (but is not limited to): wiring for new industrial builds: building Fitouts, and re-wiring for building Refits.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whatever industrial electrical work you need done in Christchurch or elsewhere in Canterbury, Juice Electrical has the specialist know-how and tools to get the work done safely, efficiently and cost-effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get the juice about our <a href=\"/industrial/\">Industrial Electrical services here</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>‘Easy to talk to, easy to book jobs with and easy to get the billing process sorted out. The workers are friendly, the work is well done... Thanks.’ </em>– Shane</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1046,\"mediaLink\":\"https://juiceelectrical.co.nz/home/infinite-energy-cromwell-client-delivery-001/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"focalPoint\":{\"x\":0.81,\"y\":0.52},\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill-element has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Infinite-Energy-Cromwell-Client-Delivery-001-1024x575.jpg\" alt=\"\" class=\"wp-image-1046 size-full\" style=\"object-position:81% 52%\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Interested in solar for your home? We are the experts.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"transparent\",\"textColor\":\"white\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-transparent-background-color has-text-color has-background wp-element-button\" href=\"/solar-solutions/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">See our Solar Solutions ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Juice: the go-to Electricians in Christchurch & Canterbury</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">When you’re choosing contractors for electrical work, their experience needs to be carefully evaluated.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical are registered Master Electricians and veterans in the electrical industry, with 15+ years of experience. You can count on us to provide the right solutions and quality workmanship for any electrical help you might need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Never compromise on quality when hiring a sparky</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Safety needs to be taken very seriously. Faulty wiring can cause serious accidents, so it’s always wise to use experienced electricians (preferably registered Master Electricians), with a reputation for providing quality workmanship and service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"15px\"}}} -->\n<p style=\"font-size:15px\"><em>‘Awesome service. Oh how I wish all trades firms were this good!!’ - </em>Alan</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Google Reviews</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1000 mx-auto\"><!-- wp:shortcode -->\n[trustindex data-widget-id=0dbb50d1975d3493cb26675330b]\n<!-- /wp:shortcode --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Home','','publish','closed','closed','','home','','','2024-12-11 13:29:43','2024-12-11 00:29:43','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=1',0,'page','',0),(2,2,'2020-09-08 02:18:50','2020-09-07 14:18:50','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"className\":\"px-1\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center px-1\" style=\"font-style:normal;font-weight:300\">Juice Electrical: registered Master Electricians going the extra mile (with a smile!) for customers in Christchurch and throughout Canterbury.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph -->\n<p>Based in Christchurch, Juice Electrical provides Residential, Commercial and Industrial electrical services. Our services include (but are not limited to): electrical installations, repairs, servicing and renovations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We pride ourselves on being family-oriented, dependable, and sincere. If you want trustworthy electricians who will show up on time, won’t try to upsell you on things you don’t need, and won’t hit you with nasty surprises when it’s time to pay the bill – that’s exactly what Juice Electrical offers and delivers.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Greg Horton</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Director</em> <em>/ Electrician </em><br>Greg leads our team of highly experienced and registered Master Electricians. A veteran in the electrical industry, Greg started his first company in 2005.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>‘Multi-talented and a great bloke. Behind every great bloke though is an even more wonderful woman.’ - </em>Jacqui (Juice Electrical customer)</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Helen Horton</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>General Manager / Administrator</em><br>Helen plays just as big a part in Juice Electrical - including as the driving force behind the scenes, leading our customer service team.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tirelessly efficient and stupendously organised, Helen may be who you speak to, if you make a booking or have an enquiry.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Juice Electrical is known and trusted for the top-notch quality workmanship and service we provide - no one does it better. That may sound like a pretty big claim, but when you read our Testimonials, you’ll see why we have so many repeat customers and word-of-mouth referrals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter what you need, Juice Electrical will get the job done right the first time, at the best value for your money.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":50,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Get in touch ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Google Reviews</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1000 mx-auto\"><!-- wp:shortcode -->\n[trustindex data-widget-id=0dbb50d1975d3493cb26675330b]\n<!-- /wp:shortcode --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','About Us','','publish','closed','closed','','about-us','','','2024-08-16 11:07:11','2024-08-15 23:07:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=2',0,'page','',0),(3,2,'2020-09-08 02:18:51','2020-09-08 02:18:51','<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 style=\"font-style:normal;font-weight:300\">Juice Electrical Limited</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Looking for quality work by registered Master Electricians?<br>Juice Electrical works in ChCh & Canterbury-wide. We love small jobs too!<br>On call 24/7 for Emergencies</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Phone:</em> <a href=\"tel:03 379 6644\" target=\"_blank\" rel=\"noreferrer noopener\">03 379 6644</a> | <a href=\"tel:0800 277 275\" target=\"_blank\" rel=\"noreferrer noopener\">0800 277 275</a><br><em>Email:</em> <a href=\"mailto:helen@juiceelectrical.co.nz\" target=\"_blank\" rel=\"noreferrer noopener\">helen@juiceelectrical.co.nz</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>PO Box 7778<br>Sydenham<br>Christchurch 8240</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gravityforms/form {\"formId\":\"1\",\"title\":false,\"description\":false,\"ajax\":true} /--></div>\n<!-- /wp:group -->','Contact','','publish','closed','closed','','contact','','','2023-03-07 16:44:40','2023-03-07 03:44:40','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=3',0,'page','',0),(4,2,'2020-09-08 02:18:58','2020-09-07 14:18:58','','Latest Info','','publish','closed','closed','','latest-info','','','2024-03-06 11:54:22','2024-03-05 22:54:22','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=4',0,'page','',0),(5,0,'2024-11-14 09:27:22','2020-09-08 02:19:00',' ','','','publish','closed','closed','','5','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=5',1,'nav_menu_item','',0),(14,2,'2020-09-08 02:19:10','2020-09-07 14:19:10','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Did your home get uncomfortably hot in Summer, especially on those 30°+ days which seem to happen more often?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical customers were <em>loving</em> how cool they were over Summer, after having quality, efficient air conditioning installed … And when the weather’s cooler, heat pumps will make sure you’re comfortable through every season.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/air-conditioning/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">See Air Conditioning page</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/heat-pumps/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">See Heat Pumps page</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1101,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2020/09/AP25_Blue_Bedroom_cmyk-11.10.08-am.jpg\" alt=\"\" class=\"wp-image-1101\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textColor\":\"brand-primary\"} -->\n<h2 class=\"wp-block-heading has-brand-primary-color has-text-color\">Hallway & Bedroom Air Con</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">One air conditioning unit (heat pump) isn’t always enough to cool or heat a home properly. A heat pump in the hallway and/or at least the main bedroom, helps maintain a comfortable temperature, and with getting restful sleep. People often tell us they wish they’d installed one sooner!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Below are the super energy efficient Mitsubishi Heat Pumps / AC units ideal for hallways and bedrooms: the <strong>EcoCore AP Plus MSZ-AP25VGD, and MSV-AP35VGD</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Note: Both models have <strong>Night Mode</strong>, which dims the operation indicator light, disables any beeping from the unit, and lowers the outdoor operating noise level by 3dBA.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\"><strong>EcoCore MSZ-APS25VGD: </strong>Cooling Capacity 2.5 kW | Heating Capacity 3.2 kW</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>NZ’s quietest air conditioning unit / heat pump: from an incredibly quiet 18dBA (on its lowest fan speed in heating mode). Ideal where quietness matters most, even on the hottest or coldest nights.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Built-In Wi-Fi Control: for the ultimate in aesthetics and air con / heat pump control no matter where you are, the AP25 comes equipped with a Wi-Fi Interface, inside a hidden pocket in the indoor unit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"brand-primary\"} -->\n<p class=\"has-brand-primary-color has-text-color\">Price: From $2,300 + GST (back-to-back, fully installed)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\"><strong>EcoCore MSZ-AP35VGD: </strong>Cooling Capacity 3.5 kW | Heating Capacity 3.7 kW</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The EcoCore AP35 High Wall Heat Pump / Air Conditioning unit sets a new standard in super energy efficient heating and cooling. Starting at a whisper quiet 19dBa, the AP35 ensures you’ll <em>feel</em> the cool air or warmth, not <em>hear </em>it!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Built-In Wi-Fi Control: for the ultimate in aesthetics and air con / heat pump control no matter where you are, the AP35 comes equipped with a Wi-Fi Interface, inside a hidden pocket in the indoor unit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"brand-primary\"} -->\n<p class=\"has-brand-primary-color has-text-color\">Price: From $2,400 +GST (back-to-back, fully installed)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Talk to Juice about Air Con / Heat Pumps</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->','Need air con?','','publish','closed','closed','','need-air-con','','','2023-06-01 15:11:13','2023-06-01 03:11:13','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=14',0,'post','',0),(467,2,'2022-05-01 18:57:26','2022-05-01 06:57:26','{\"version\":2,\"isGlobalStylesUserThemeJSON\":true}','Custom Styles','','publish','closed','closed','','wp-global-styles-pinnclonesmalltest%2fresources','','','2022-05-01 18:57:26','2022-05-01 06:57:26','',0,'https://devjuiceelectrical.pinnacleandco.nz/blog/wp-global-styles-pinnclonesmalltest%2fresources/',0,'wp_global_styles','',0),(485,2,'2023-01-30 16:45:59','2023-01-30 03:45:59','<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"px-3\"} -->\n<h3 class=\"has-text-align-center px-3\" style=\"font-style:normal;font-weight:300\">Looking for quality work by Master Electricians?<br><em>Your search is over.</em></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"className\":\"mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull mx-auto\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/4-scaled.jpg\",\"id\":726,\"dimRatio\":60,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.67,\"y\":0.46},\"className\":\"img-hover-zoom img-hover-zoom\\u002d\\u002dbrightness\"} -->\n<div class=\"wp-block-cover img-hover-zoom img-hover-zoom--brightness\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-726\" alt=\"\" src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/4-scaled.jpg\" style=\"object-position:67% 46%\" data-object-fit=\"cover\" data-object-position=\"67% 46%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"textColor\":\"white\"} -->\n<h3 class=\"has-text-align-center has-white-color has-text-color\"><em><a href=\"/residential/\">Residential <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">></mark></a></em></h3>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Infinite-Energy-Cromwell-Client-Delivery-001-scaled.jpg\",\"id\":1046,\"dimRatio\":60,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.81,\"y\":0.53},\"className\":\"img-hover-zoom img-hover-zoom\\u002d\\u002dbrightness\"} -->\n<div class=\"wp-block-cover img-hover-zoom img-hover-zoom--brightness\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-1046\" alt=\"\" src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Infinite-Energy-Cromwell-Client-Delivery-001-scaled.jpg\" style=\"object-position:81% 53%\" data-object-fit=\"cover\" data-object-position=\"81% 53%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"textColor\":\"white\"} -->\n<h3 class=\"has-text-align-center has-white-color has-text-color\"><em><a href=\"/solar-solutions/\">Solar <mark style=\"background-color:rgba(0, 0, 0, 0);color:#fdb913\" class=\"has-inline-color\">></mark></a></em></h3>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/ef-lifestyle-2020-green-room-white-11.10.08-am.jpg\",\"id\":1052,\"dimRatio\":60,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.37,\"y\":0.2},\"className\":\"img-hover-zoom img-hover-zoom\\u002d\\u002dbrightness\"} -->\n<div class=\"wp-block-cover img-hover-zoom img-hover-zoom--brightness\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-1052\" alt=\"\" src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/ef-lifestyle-2020-green-room-white-11.10.08-am.jpg\" style=\"object-position:37% 20%\" data-object-fit=\"cover\" data-object-position=\"37% 20%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"textColor\":\"white\"} -->\n<h3 class=\"has-text-align-center has-white-color has-text-color\"><em><a href=\"/heat-pumps/\">Heat Pumps <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-secondary-color\">></mark></a></em></h3>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"className\":\"mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull mx-auto\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/office-lighting-10.48.07-am.jpg\",\"id\":1053,\"dimRatio\":60,\"overlayColor\":\"black\",\"className\":\"img-hover-zoom img-hover-zoom\\u002d\\u002dbrightness\"} -->\n<div class=\"wp-block-cover img-hover-zoom img-hover-zoom--brightness\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-1053\" alt=\"\" src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/office-lighting-10.48.07-am.jpg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"textColor\":\"white\"} -->\n<h3 class=\"has-text-align-center has-white-color has-text-color\"><em><a href=\"/commercial/\">Commercial<mark style=\"background-color:rgba(0, 0, 0, 0);color:#e2066f\" class=\"has-inline-color\">></mark></a></em></h3>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1.jpg\",\"id\":723,\"dimRatio\":60,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.34,\"y\":0.51},\"className\":\"img-hover-zoom img-hover-zoom\\u002d\\u002dbrightness\"} -->\n<div class=\"wp-block-cover img-hover-zoom img-hover-zoom--brightness\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-723\" alt=\"\" src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1.jpg\" style=\"object-position:34% 51%\" data-object-fit=\"cover\" data-object-position=\"34% 51%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"textColor\":\"white\"} -->\n<h3 class=\"has-text-align-center has-white-color has-text-color\"><em><a href=\"/smart-homes/\">Smart Homes <mark style=\"background-color:rgba(0, 0, 0, 0);color:#92278f\" class=\"has-inline-color\">></mark></a></em></h3>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/building-electric-maintenance-electrician.jpg\",\"id\":722,\"dimRatio\":60,\"overlayColor\":\"black\",\"className\":\"img-hover-zoom img-hover-zoom\\u002d\\u002dbrightness\"} -->\n<div class=\"wp-block-cover img-hover-zoom img-hover-zoom--brightness\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-722\" alt=\"\" src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/building-electric-maintenance-electrician.jpg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"textColor\":\"white\"} -->\n<h3 class=\"has-text-align-center has-white-color has-text-color\"><em><a href=\"/industrial/\">Industrial <mark style=\"background-color:rgba(0, 0, 0, 0);color:#008fd5\" class=\"has-inline-color\">></mark></a></em></h3>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','Services','','publish','closed','closed','','services','','','2023-03-28 12:34:48','2023-03-27 23:34:48','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=485',0,'page','',0),(489,2,'2023-01-30 16:46:25','2023-01-30 03:46:25','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Solar Power:<br>cheaper for you & better for the Planet</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Making the world a better place, one roof at a time: Juice Electrical installs Solar Power systems for homes and businesses in Christchurch and Canterbury-wide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Infinite Energy Solar Power Systems</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical works with Infinite Energy - a New Zealand company based in the South Island, specialising in designing customised Solar Power systems using PV (photovoltaic) renewable energy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Grid Connected Solar Power systems</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Grid Tied Hybrid Solar Power with lithium-ion battery backup</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Entirely Off-Grid, standalone Solar Power systems</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Reduce your power bill, not your street appeal </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As well as the performance and efficiency, Juice Electrical are impressed by how Infinite Energy solar PV panels <em>look </em>once installed. The sleek panels have black edging, which means they blend in somuch better on the roof, than other solar panels.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":974,\"mediaLink\":\"https://juiceelectrical.co.nz/blog/need-air-con/infiniteenergycromwellclientdelivery00123058430092-9900000000079e3c/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"focalPoint\":{\"x\":0.83,\"y\":0.52},\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2020/09/InfiniteEnergyCromwellClientDelivery00123058430092-9900000000079e3c.jpg);background-position:83% 52%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2020/09/InfiniteEnergyCromwellClientDelivery00123058430092-9900000000079e3c.jpg\" alt=\"\" class=\"wp-image-974 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Go Solar and save!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"grey-darkest\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-grey-darkest-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">Get the juice on Solar Power - contact Juice Electrical ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Use the renewable energy of the sun and enjoy lower power bills</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice about Solar Power solutions ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Solar Batteries</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Most customers who have Solar Power systems installed also have solar batteries, to store excess energy generated – e.g. to use later during times of high use, and to have an option during possible grid (power) outages.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Want to go off-grid?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ask Juice Electrical about off-grid Solar Power systems - these can be designed to be coupled with inverters, battery chargers, lithium battery technology and backup generators.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Infinite Energy Solar Power systems can also be integrated with complementary electrical technologies, such as electric central heating, mechanical heat recovery ventilation, efficient water heating, and home EV/PHEV Wall-mounted Chargers, which Juice Electrical can supply and install.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Financial support</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’re interested in having a Solar Power system installed, there may some financial support available from your bank/lender. Ask them if they’re supporting customers wanting to make sustainable energy choices. E.g. With a low-interest loan, and/or home loan top-up.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">How do Solar PV panels work?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Solar PV panels on the roof produce direct current (DC) from sunlight, which passes through an inverter, to become alternating current (AC) electricity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>The Solar Power system is connected via a circuit breaker in your main switchboard, which in turn is connected to your meter.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Your home/property will utilise energy generated by your solar PV panels, before drawing any additional electricity from the grid.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Solar Buyback: if your Solar Power system is producing more electricity than you are using, you can sell it back into the grid to be used by others, which earns you credit.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Solar Solutions','','publish','closed','closed','','solar-solutions','','','2024-08-19 12:39:55','2024-08-19 00:39:55','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=489',0,'page','',0),(490,2,'2023-01-30 16:46:33','2023-01-30 03:46:33','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Comfort all year round: Juice Electrical will make sure that no matter what the weather, you - and your heat pump - will be ready!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Juice Electrical are heat pump experts and Mitsubishi specialists. Based in Christchurch, our highly experienced, registered Master Electricians install, service and repairs heat pumps Canterbury-wide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Confused by the range of heat pumps available? Juice will help you choose the best heat pump/s for your particular space/s and needs. Options include floor and wall mounted, and heat pumps particularly good in bedrooms and hallways, for added comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical recommends Mitsubishi heat pumps because we have found over the years, that Mitsubishi heat pumps are simply the best when it comes to pricing and quality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">10 Heat Pump Benefits</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Energy Efficiency: provides 4x more heat energy than it consumes</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Cooling in Summer: keep cool on hot days & nights, say goodbye to humidity<br>(See Air Conditioning page)</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Warming in Winter: keep your home warm & toasty</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Precise Wi-Fi Timer & Temperature Control</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Safety: no hot surfaces to worry about for children/pets</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Low Running Costs: energy efficient, resulting in lower heating costs</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Improved Air Quality: fitted with filtration & deodorising systems</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Healthy Homes Standards compliance</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Appeals to prospective tenants</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Unobtrusive Heating: gain floor space with wall-mounted heat pumps</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>If you’re wondering what the difference is between <u><a href=\"/air-conditioning/\">air conditioners/air conditioning</a></u> (AC) and heat pumps, they’re the same thing. All our heat pumps offer heating and cooling settings: the right heat pump will help you enjoy comfort all year round.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1166,\"mediaLink\":\"https://juiceelectrical.co.nz/heat-pumps/couple-turning-on-air-conditioner-during-the-summer-heat-while-sitting-on-sofa-with-book-and-laptop/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Energy-Audit-iStock-1003476164-1024x684.jpg);background-position:50% 50%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Energy-Audit-iStock-1003476164-1024x684.jpg\" alt=\"\" class=\"wp-image-1166 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Let\'s talk through the options & our latest special offers.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"grey-darkest\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-grey-darkest-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">Contact Juice Electrical ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-1200 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1200 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Arrange an on-site visit & Quote</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice Electrical ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Why Choose Mitsubishi Heat Pumps</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In our experience, Mitsubishi heat pumps give customers the ‘best bang for their buck’. Plus Mitsubishi offers strong Warranties on all their heat pumps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Mitsubishi range offers you the quietest, most energy-efficient solution for your home, office or business, to make sure you’re comfortable all year round.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Mitsubishi Wi-Fi Control</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Putting your needs ahead of anything else, the <em>EcoCore AP Series</em> of Mitsubishi heat pumps offers you increased control over your environment with a touch of a button. For example, using Wi-fi, you can programme your heat pump to start on frosty mornings while you’re still in bed, or before you get home; via your phone, tablet or online account.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-1200 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1200 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">EcoCore AP Classic Heat Pumps</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When Mitsubishi brought out the <em>EcoCore High Wall</em> Heat Pump range, they set a new standard in energy efficiency, which introduced next generation EcoCore Technology: a large, high-density heat exchanger is combined with an efficient fan motor, compressor and new-generation refrigerant -making this series of heat pumps both extremely energy efficient and environmentally friendly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This model also has a Wide Airflow Mode, meaning it can be adjusted to a 12-metre reach: great for larger spaces or open plan offices.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">EcoCore AP Plus Series</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The <em>EcoCore AP Plus Series High Wall</em> Heat Pumps use less power than ever before, and with a super low fan setting, they’re incredibly quiet – perhaps New Zealand’s quietest heat pumps! What makes them so quiet, is a thinner heat exchanger and a bigger, more aerodynamic fan coil: air can be moved across a larger fan surface.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A dual barrier coating prevents dust and dirt accumulating, making it more energy efficient. And with built-in Wi-Fi you can pre-heat or cool a room even when away from your home/property.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Black Diamond Hypercore LN Series</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Award winning aesthetics meets energy efficiency. Match your interior/s with <em>EcoCore Designer EF Series High Wall</em> Heat Pumps – featuring an elegant slimline profile, and a choice of finishes - including glossy white, matte silver, and Rich Black Diamond.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This impressive Heat Pump range includes the ability to choose up to four time and temperature settings for each day of the week – an easy way to control energy use and temperature.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":870,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/MSZ-AP50.webp\" alt=\"\" class=\"wp-image-870\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":871,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/MSZ-AP60-80-1.webp\" alt=\"\" class=\"wp-image-871\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":872,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/mitsubishi-electric-heatpump-EF-Series-black.webp\" alt=\"\" class=\"wp-image-872\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>EcoCore AP Classic Models</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(Optional Wi-Fi control)<br><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\"><em>Prices include back-to-back, fully installed.</em></mark></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP25VGKD $2,400 + GST</mark><br>Heating capacity: 3.2KW. Cooling capacity 2.5KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP35VGKD $2,450 + GST</mark><br>Heating capacity: 3.7KW. Cooling capacity 3.5KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP42VGKD $2,750 + GST</mark><br>Heating capacity: 5.4KW. Cooling capacity 4.2KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP50VGKD $2,900 + GST</mark><br>Heating capacity: 5.8KW. Cooling capacity 4.8KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP60VGKD $3,300 + GST</mark><br>Heating capacity: 6.8KW. Cooling capacity 6.0KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP71VGKD $3,900 + GST</mark><br>Heating capacity: 8.0KW. Cooling capacity 7.1KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP80VGKD $4,200 + GST</mark><br>Heating capacity: 9.0KW. Cooling capacity 7.8KW.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>EcoCore AP Plus Models </strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(Built in Wi-Fi)<br><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\"><em>Prices include back-to-back, fully installed.</em></mark></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP25VGD $2,500 + GST</mark><br>Heating capacity: 3.2KW. Cooling capacity 2.5KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP35VGD $2,550 + GST</mark><br>Heating capacity: 3.7KW. Cooling capacity 3.5KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP42D $2,850 + GST</mark><br>Heating capacity: 5.4KW. Cooling capacity 4.2KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP50VGD $3,000 + GST</mark><br>Heating capacity: 6.0KW. Cooling capacity 5KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP60VGD $3,400 + GST</mark><br>Heating capacity: 6.8KW. Cooling capacity 6.0KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP71VGD $4,000 + GST</mark><br>Heating capacity: 8.0KW. Cooling capacity 7.1KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-AP80VGD $4,300 + GST</mark><br>Heating capacity: 9.0KW. Cooling capacity 7.8KW.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong><strong>Black Diamond Hypercore LN Series</strong></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(Built in Wi-Fi)<br><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\"><em>Prices include back-to-back, fully installed.</em></mark></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-LN25VG2 $2,900 + GST</mark><br>Heating capacity: 3.2KW. Cooling capacity 2.5KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-LN35VG2 $3,050 + GST</mark><br>Heating capacity: 4.0KW. Cooling capacity 3.5KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-LN50VG2 $3,500 + GST</mark><br>Heating capacity: 6.0KW. Cooling capacity 5.0KW.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">MSZ-LN60VG2 $3,850 + GST</mark><br>Heating capacity: 6.8KW. Cooling capacity 6.1KW.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":50,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Enquire about our Heatpumps ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Heat Pumps','','publish','closed','closed','','heat-pumps','','','2024-09-02 09:04:03','2024-09-01 21:04:03','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=490',0,'page','',0),(491,2,'2023-01-30 16:46:40','2023-01-30 03:46:40','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"className\":\"h3\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h1 class=\"wp-block-heading has-text-align-center h3\" style=\"font-style:normal;font-weight:300\">The power of Visionary LED Lighting</h1>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Juice Electrical installs quality, New Zealand-made, Visionary LED lighting in Christchurch homes and businesses, and Canterbury-wide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you had a look at LED lighting a few years back and dismissed it as being too expensive, it’s time to take another look: LED lights have come down in price, while the quality and life spans have gone up!<strong></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>LED stands for ‘light emitting diode’. LEDs are basically superconductor devices that turn electricity into light. They are more efficient, have a longer lifespan and are more versatile than traditional lighting. For these reasons and more, Juice Electrical loves LED lights. We think you will too!<strong></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Checklist for upgrading to LEDs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’re ready to upgrade to LED lights, here are some tips before you do: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Measure the diameter/s of your current lights.* </li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Count how many lights you have (count all your outdoor lights too).</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Think about whether your current lights are too bright, too dim or just right.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Decide if you want dimmers added.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Decide if you want <em>warm</em> white light colour or <em>cool </em>white light.<br><em>*LED fittings can often cover old paint marks or existing holes.</em></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>With this information and factoring in the age of your home/property, Juice Electrical can usually Quote LED prices on the phone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1162,\"mediaLink\":\"https://juiceelectrical.co.nz/led-lighting/cons_ratgeber_beleuchtung-im-wohnzimmer_mi_paulmann_2019_12_010/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"focalPoint\":{\"x\":0.31,\"y\":0.45},\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010-1024x576.jpg);background-position:31% 45%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010-1024x576.jpg\" alt=\"\" class=\"wp-image-1162 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Give Juice a call - let\'s talk all things LED!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"grey-darkest\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-grey-darkest-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">Contact Juice Electrical ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-1200 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1200 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Juice works with Visionary Technologies - a Christchurch company that’s leading the way in lighting industry innovation, by bringing better products to New Zealand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">RESIDENTIAL LEDs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are some examples and prices for Residential use. <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">All come with a 7-year warranty.</mark></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-1200 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1200 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":893,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/apollo-mini.webp\" alt=\"\" class=\"wp-image-893\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":892,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/apollo-2.webp\" alt=\"\" class=\"wp-image-892\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":891,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/apollo-tilt-1.webp\" alt=\"\" class=\"wp-image-891\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Apollo Mini 2 <br>$59 plus GST each</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Apollo Mini was engineered to supersede older halogen downlight technology. It features a wide trim profile to cover existing paint marks and increases your light output by over 50% on most existing halogen downlights. Its the go-to halogen downlight replacement for New Zealanders.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Apollo 2<br>$59 plus GST each</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Apollo 2 is the second generation of the hugely popular Apollo range. It’s perfect for both retrofitting and new builds. The refined design sits smartly in your ceiling and provides a beautifully balanced ambience and lighting profile</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Iris Tilt 2<br>$74 plus GST each</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Iris Tilt can emit light on any rotational axis while maintaining an air-tight seal. It’s white powder coating means it blends with New Zealand’s most common ceiling colour palettes.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">For all the Specifications & sizing of Visionary LED lights and fittings, visit their website: <br><a href=\"http://www.visionarytechnologies.co.nz\" target=\"_blank\" rel=\"noreferrer noopener\">www.visionarytechnologies.co.nz</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-1200 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1200 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">COMMERCIAL & INDUSTRIAL LEDs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Switch to LEDs and never change a lightbulb again! Juice Electrical’s LED lighting plans and installation expertise saves you time and money. Our registered Master Electricians are experts at assessing business needs and finding LED solutions for greater light output and energy efficiencies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Commercial LED Lights</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical installs LED lighting in a wide range of commercial properties - including cafés, shops, supermarkets, schools and workplaces.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Industrial LED Lights</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There’s a heavy-duty LED for even the most extreme industrial workplaces and conditions.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Here are some examples and prices for Commercial / Industrial use. <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-brand-primary-color\">All come with a 5-year warranty. </mark></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-1200 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1200 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":898,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/apollo-xl.webp\" alt=\"\" class=\"wp-image-898\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":897,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/athena-batten.webp\" alt=\"\" class=\"wp-image-897\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":896,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/revolution-flood.webp\" alt=\"\" class=\"wp-image-896\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":895,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/avira-panel-1.webp\" alt=\"\" class=\"wp-image-895\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Apollo XL<br>$69 plus GST</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Apollo XL is designed to retrofit larger downlight units, ideal for commercial set-ups. With the combination of available accessories, it can cover 190mm requirements with an adapter plate, or 160mm on its own. This makes it an extremely versatile and economical option when compared to large commercial fittings.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Athena Batten <br>$130 plus GST</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With its sleek design, robust construction and incredible ease of installation, the Athena Batten ticks all the boxes for an ultra-energy efficient architectural batten fixture that doesn’t cost the earth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Revolution Flood<br>$390 plus GST</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A highly versatile, premium asymmetric flood light with high light efficacy for maximum light distribution and minimal energy costs. This light is available with five different mount types and five beam angles for a wide array of commercial applications.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Avira LED Panel<br>$97 plus GST</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Avira LED panel was developed for reliable performance in an affordable package. Ideal for the cost-conscious customer, it’s a robust panel without any specialist features. This panel is engineered using a backlit design that allows for much higher structural rigidity and better light uniformity than typical edge lit panel designs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">For all the Specifications & sizing of Visionary LED lights and fittings, visit their website: <br><a href=\"http://www.visionarytechnologies.co.nz\" target=\"_blank\" rel=\"noreferrer noopener\">www.visionarytechnologies.co.nz</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":50,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">For all other enquiries about LED lighting, </mark><br><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">contact Juice Electrical ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','LED Lighting','','publish','closed','closed','','led-lighting','','','2024-08-19 12:33:11','2024-08-19 00:33:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=491',0,'page','',0),(492,2,'2023-01-30 16:46:56','2023-01-30 03:46:56','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\"> Residential & Commercial</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Juice Electrical can tackle any electrical renovation job, big or small. We are reliable, experienced and innovative registered Master Electricians, working on renovation projects in Christchurch and Canterbury - including (but not limited to) Bathroom and Kitchen renovations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1160,\"mediaLink\":\"https://juiceelectrical.co.nz/renovations/handshake/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/03/handshake-1024x768.jpg);background-position:50% 50%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/handshake-1024x768.jpg\" alt=\"\" class=\"wp-image-1160 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Call to discuss your Renovation project.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"grey-darkest\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-grey-darkest-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">Contact Juice Electrical ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-1200 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1200 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">No job is too small</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Bathroom & Kitchen Renovations</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical are expert renovation electricians. <strong></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Installing a new bathroom and/or kitchen offers lots of scope to express your design flair, and, have fun along the way! E.g. choosing new taps, surfaces and paint colours, to enhance two of the most important and hardworking rooms in your home/property.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Planning your Residential Bathroom / Kitchen Renovation</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes time to consider your home renovation electrical needs, a practical approach wins out every time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s important to consider how you use spaces – are you a gourmet cook who likes to entertain? Is it just one or two of you, or do you have a family that often wants to use the kitchen, or bathroom, at the same time?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Thinking through how you use the space and the appliances you turn to most days, will help you plan your electrical renovation needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Lighting</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lighting in both the bathroom and kitchen is important, and you often need more than you think. Also, if you are changing your kitchen or bathroom layout, the lighting you had before, might not suit the new layout.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-1000 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1000 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Handy Bathroom Checklist</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you need:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Mirror light</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Mirror demister</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Recessed lights (or a chandelier!)</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Extractor fan (a good fan keeps the room at an even temperature & minimises condensation)</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Heated towel rail & towel rail timers</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Wall-mounted heater or Underfloor heater</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Bluetooth speakers (to help you sing in the shower!)</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Vanity plug sockets (for hair drying or shaving)</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Handy Kitchen Checklist</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consider these things:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Plug positions (to make sure all bench areas are covered – e.g. map your path from the jug to the toaster).</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>A hob or induction hob - they often need more power.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Under bench lighting or Breakfast bar lighting (LED light strips)</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Waste disposal unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Extractor fan/s</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>A walk-in Pantry (take out all your kitchen appliances - see which ones will stay out on the bench, and how many plugs you’ll need – you may be surprised!)</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:html -->\n<div style=\"border:3px solid #38b449; border-radius:20px; padding: 20px 40px; box-shadow:0 12px 16px 0 rgba(0,0,0,.24), 0 17px 50px 0 rgba(0,0,0,.19);\">\n<p style=\"font: 26px Inter, sans-serif; font-weight:300; padding-top:20px;\">Good Planning</p>\n<p style=\"margin-bottom:40px;\">An easy 1-2-3 step process is the way Juice Electrical works to get power to all the right places during the renovation process.</p>\n<div class=\"row\" style=\"margin-bottom:20px;\">\n<div class=\"col-sm-1\">\n<div style=\"border-radius: 50%; width: 60px; height: 60px; padding: 10px; background: #fff; border: 3px solid #38b449; color: #38b449; text-align: center; font: 26px Inter, sans-serif; font-weight:600; margin-bottom:20px;\">1</div>\n</div>\n<div class=\"col-sm-11\">\n<p style=\"color:#38b449; margin-top:0; font: 19px Inter, sans-serif; font-weight:300\">Quick ‘make safe’ visit</p>\n<p>Whether you have a builder or are DIY-ing, Juice Electrical can disconnect power outlets and make things safe for work to be carried out</p>\n</h3></div>\n</div>\n<div class=\"row\" style=\"margin-bottom:20px;\">\n<div class=\"col-sm-1\">\n<div style=\"border-radius: 50%; width: 60px; height: 60px; padding: 10px; background: #fff; border: 3px solid #38b449; color: #38b449; text-align: center; font: 26px Inter, sans-serif; font-weight:600; margin-bottom:20px;\">2</div>\n</div>\n<div class=\"col-sm-11\">\n<p style=\"color:#38b449; margin-top:0;font: 19px Inter, sans-serif; font-weight:300\">Pre-wire</p>\n<p>Once you have demo’d the space, get Juice Electrical to put the wiring in all the right places – before new gib, plaster and paint are done, and appliances go in.</p>\n</div>\n</div>\n<div class=\"row\" style=\"margin-bottom:20px;\">\n<div class=\"col-sm-1\">\n<div style=\"border-radius: 50%; width: 60px; height: 60px; padding: 10px; background: #fff; border: 3px solid #38b449; color: #38b449; text-align: center; font: 26px Inter, sans-serif; font-weight:600; margin-bottom:20px;\">3</div>\n</div>\n<div class=\"col-sm-11\">\n<p style=\"color:#38b449; margin-top:0;font: 19px Inter, sans-serif; font-weight:300\">Fit-off/ Finish</p>\n<p>After painting has been completed, the Juice team will connect everything up and ensure things are working properly so you can enjoy your new space.</p>\n</div>\n</div>\n</div>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><br><br></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Renovations','','publish','closed','closed','','renovations','','','2024-08-19 12:32:40','2024-08-19 00:32:40','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=492',0,'page','',0),(507,2,'2023-01-30 16:47:53','2023-01-30 03:47:53','<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"px-4\"} -->\n<h3 class=\"has-text-align-center px-4\" style=\"font-style:normal;font-weight:300\">Part of what makes our electrical work so enjoyable, is the customers we help … And then their feedback</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1000 mx-auto\"><!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p>‘We have used them for all our electrical work over the last couple of years as we have been gradually redecorating our place. Always prompt, reliable and happy to go the extra mile – nothing is ever too much trouble. Most impressive thing to me is that they are really friendly but there is absolutely no mucking around either. Would not hesitate to recommend them to anyone, and have already done so.’ <strong>– Craig</strong></p><cite><strong>Rating: (100%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 100%</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p>‘Recommended to us by another company in the trade as being excellent – and this was our experience of them too … hardworking, efficient, knew what they were doing. Discussed all the various options with us when they encountered unexpected problems and gave great advice. Friendly, good humoured but real professionals. Price was very reasonable. Very happy with result. Excellent service right from the point of initial contact with the company, to the end. If only all trades people were like this … A great Kiwi business. Would recommend them to anyone and already have.’ <strong>- Cameron</strong></p><cite><strong>Rating: (100%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 100%</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p>‘As a customer service ‘champion’ I look for extremely high standards in all aspects of customer relations … Surpassed expectations. We were kept in the loop by both the office and the electrician regarding their arrival time and parts that needed to be collected. The sparky was just lovely – he has an awesome attitude and clearly believes in strong customer relationships. Recommend using these guys – we certainly will be in the future.’ <strong>– Nessie</strong></p><cite><strong>Rating: (100%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 100%</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p> ‘Helped us upgrade our domestic electrical standards steadily over the last 18 months. Really appreciate the attention to detail, good advice, very prompt service and overall professional support and workmanship. Totally recommend this crew. Ring them today!’ <strong>– Sharon</strong></p><cite><strong>Rating: (100%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 100%</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p> ‘Having just taken delivery of a brand new Band Saw, we found it had a major electrical fault and kept tripping the building’s RCD. One phone call and they had Greg around within an hour. The fault was quickly located and he ordered a replacement part which was fitted a day later as soon as it arrived. Awesome service. Oh how I wish all trades firms were this good!!’ <strong>– Alan</strong></p><cite><strong>Rating: (100%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 100%</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p>‘I wish Helen worked for me. Easy to talk to, easy to book jobs with and easy to get the billing process sorted out. The workers are friendly, the work is well done. estimates were pretty spot on. It was a rush job and they got it done. Thanks’ <strong>– Shane</strong></p><cite><strong>Rating: (97.5%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 90%</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p>‘Second time I’ve used them. Would never use anyone else, on time and reasonable price, good bugger as well. Cheers’ <br><strong>– Courtenay</strong></p><cite><strong>Rating: (100%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 100%</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p>‘I recently had Greg, Troy and Wayne rewire my 1920′s bungalow as well as add and clean up the variety of switches and plugs throughout the house. The guys did an excellent job, the level of detail they went to to make everything look nice at the end was more than I could have expected for a house this age. When moving one of the sockets further down the wall they discovered that the timber in the wall was damp and instead of just moving the socket so they could get on to the next job, they stopped and told me about it, recommending a plumber (who was excellent) to take a look, they then made the wiring safe and they came back to finish after the leak had been fixed - a “cowboy” would have just got the job over and done with and pretended not to see it.’ <strong>– Simon</strong></p><cite><strong>Rating: (100%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 100%</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p>‘Where would ‘The Coffee Shot’ van be without Greg Horton! Multi talented and a great bloke. Behind every great bloke though is an even more wonderful woman.’ <strong>– Jacqui</strong></p><cite><strong>Rating: (100%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 100%</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:pullquote {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"fontSize\":\"small\"} -->\n<figure class=\"wp-block-pullquote has-small-font-size\" style=\"border-style:none;border-width:0px\"><blockquote><p>‘First used to refit all of our lighting inside and found them to be so awesome and reliable that we have used them at least three times since. These guys are great and I highly recommend them!’<br><strong>- Lisa and Tim</strong></p><cite><strong>Rating: (100%)</strong><br>Communication: 100%<br>Quality: 100%<br>Reliability: 100%<br>Value: 100%</cite></blockquote></figure>\n<!-- /wp:pullquote --></div>\n<!-- /wp:group -->','Testimonials','','draft','closed','closed','','testimonials','','','2023-04-20 11:56:42','2023-04-19 23:56:42','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=507',0,'page','',0),(513,2,'2023-02-07 14:04:41','2023-02-07 01:04:41','','Juice Electrical Logo','','inherit','open','closed','','juiceelectrical-logo','','','2023-07-17 11:32:26','2023-07-16 23:32:26','',0,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/02/juiceelectrical-logo.png',0,'attachment','image/png',0),(514,2,'2023-02-07 14:04:59','2023-02-07 01:04:59','https://juiceelectrical.co.nz/wp-content/uploads/2023/02/cropped-juiceelectrical-logo.png','Juice Electrical Logo','','inherit','open','closed','','cropped-juiceelectrical-logo-png','','','2023-07-17 11:32:23','2023-07-16 23:32:23','',0,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/02/cropped-juiceelectrical-logo.png',0,'attachment','image/png',0),(630,2,'2023-02-10 11:18:53','2023-02-09 22:18:53','.wp-block-image {\n margin: 0 0 !important;\n}\n\n.is-layout-flex.wp-container-13.wp-block-columns.alignfull {\n gap: 10px;\n}\n\n.logo-ribbon-container {\n top: -85px !important;\n}\n\n.logo-ribbon-container {\n padding: 7rem 1rem 3rem !important;\n}','pinnclonesmalltest/resources','','publish','closed','closed','','pinnclonesmalltest-resources','','','2024-11-08 09:56:52','2024-11-07 20:56:52','',0,'https://devjuiceelectrical.pinnacleandco.nz/blog/pinnclonesmalltest-resources/',0,'custom_css','',0),(672,2,'2023-02-10 11:51:51','2023-02-09 22:51:51','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"page\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Home Banner','home-banner','publish','closed','closed','','group_63e578d45778f','','','2023-02-10 11:52:03','2023-02-09 22:52:03','',0,'https://devjuiceelectrical.pinnacleandco.nz/?post_type=acf-field-group&p=672',0,'acf-field-group','',0),(673,2,'2023-02-10 11:51:51','2023-02-09 22:51:51','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Banner Title','banner_title','publish','closed','closed','','field_63e578d5b6dca','','','2023-02-10 11:51:51','2023-02-09 22:51:51','',672,'https://devjuiceelectrical.pinnacleandco.nz/?post_type=acf-field&p=673',0,'acf-field','',0),(674,2,'2023-02-10 11:51:51','2023-02-09 22:51:51','a:7:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','Page Banner Button','page_banner_button','publish','closed','closed','','field_63e578e8b6dcb','','','2023-02-10 11:51:51','2023-02-09 22:51:51','',672,'https://devjuiceelectrical.pinnacleandco.nz/?post_type=acf-field&p=674',1,'acf-field','',0),(679,2,'2023-02-10 12:00:43','2023-02-09 23:00:43','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Quality Residential electrical work for homes Canterbury-wide.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Based in Christchurch, Juice Electrical are registered Master Electricians providing quality Residential electrical work for homes Canterbury-wide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Juice Electrical, we understand families. We know keeping your home safe, warm and comfortable matters. We also know you don’t want to pay an arm and a leg for electrical work. Juice provides quality electrical work, great service and great value.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical are also big believers in providing customers with innovative options such as Solar Power solutions, faster home EV/PHEV charging, and Smart Home Automation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1154,\"mediaLink\":\"https://juiceelectrical.co.nz/residential/modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/03/modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard.jpg);background-position:50% 50%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard.jpg\" alt=\"\" class=\"wp-image-1154 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"35px\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:35px;font-style:normal;font-weight:300\">Need an Electrician ASAP?<br><br>We\'re On Call 24/7 for Emergency electrical work:<br> <br>Call Juice on <strong><a href=\"tel:0800 277 275\" target=\"_blank\" rel=\"noreferrer noopener\">0800 277 275</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1000 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Juice Electrical Residential Services</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Solar installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Smart Home Automation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Home EV/PHEV Wall Charging units</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Wiring for new builds</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Home re-wiring</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Mitsubishi heat pump & Air Conditioning installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Telephone extensions</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Bathroom renovation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Kitchen renovation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Security alarm installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Home theatre system installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Oven & Appliance repairs</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Phone, Internet & computer networks</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>TV aerials & TV speakers</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Garden lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Outdoor / outdoor mood lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Entertainment area lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Pool lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Deck lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Spa pool installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Outdoor speakers & Wireless Bluetooth speakers</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph -->\n<p>Even if you’re a home handyman, sometimes DIY has its limits. Save yourself time, hassle and rest easy knowing the job’s been done safely, by bringing Juice Electrical in to handle it for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For new home builds, bringing registered Master Electricians in on a build early in the process, can save you big money down the road.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Repairs & Emergencies</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Give Juice Electrical a call, we’ll send over a registered Master Electrician ASAP. And we’re all about quality workmanship - when you get it fixed with Juice, it <em>stays</em> fixed.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\" style=\"font-style:normal;font-weight:300\">Is what you need, not on the list above?<br>No job is too small – call to discuss your Residential project</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":50,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice Electrical ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Residential','','publish','closed','closed','','residential','','','2023-06-20 12:34:17','2023-06-20 00:34:17','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=679',0,'page','',0),(683,2,'2023-02-10 12:00:55','2023-02-09 23:00:55','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Fast, safe EV/PHEV Home Charging</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">At Juice Electrical, we’re all about making life easier for you. Our EV and PHEV home charging options include supplying and installing a faster wall-mounted charger, or installing the charger supplied with your vehicle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">On average, a wall-mounted charger can cut charging time in HALF!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A wall-mounted charging unit charges EV and PHEV vehicles faster* than using a standard three-pin plug and cord charger, especially if your car battery is above 20kWh or if the range is more than 150km.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Which is the best home charger for your EV or PHEV?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This depends on factors such as your EV/PHEV battery capacity, range and how fast you want to charge your vehicle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Charge times for different types of home chargers, can vary hugely! We’ve seen charge times from 22 minutes to 33 hours, so talk to Juice about choosing the best home charger for you and your EV/PHEV.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1085,\"mediaLink\":\"https://juiceelectrical.co.nz/ev-phev/electric_car_charging1/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/03/electric_car_charging1.jpg);background-position:50% 50%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/electric_car_charging1.jpg\" alt=\"\" class=\"wp-image-1085 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Get the juice on home EV & PHEV Chargers</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"grey-darkest\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-grey-darkest-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">Contact Juice Electrical ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Get a Quote for installing a Home Charger</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice Electrical ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Installed in your garage or outside </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical can install a wall-mounted charger (also known as a wall box, wall charger or home charging station) in a garage, or outside in a carport/parking area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Safer home charging</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Having a wall-mounted charger avoids potential overheating during charging, and wear and tear on a power socket from using a standard home charger – also reasons why many car manufacturers recommend using a wall charger.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Note: Wall-mounted chargers must be installed by a qualified Electrician to ensure safe charging, as it requires wiring to a dedicated circuit. Even better if you have an experienced, registered Master Electrician from Juice Electrical, on the job!</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Haven’t bought your EV/PHEV yet?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If fast charging at home is important to you, contact Juice Electrical <em>before </em>you buy an EV or PHEV, as *some have maximum charging speeds.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','EV PHEV Chargers','','publish','closed','closed','','ev-phev','','','2024-08-19 12:40:22','2024-08-19 00:40:22','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=683',0,'page','',0),(691,2,'2023-02-10 12:01:13','2023-02-09 23:01:13','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Reliable, affordable Commercial Electricians</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Based in Christchurch, Juice Electrical are registered Master Electricians providing Commercial electrical services for businesses and organisations Canterbury-wide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1061,\"mediaLink\":\"https://juiceelectrical.co.nz/commercial/guys-vans-aug-2022-web/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Guys-Vans-Aug-2022-web-1024x768.jpg);background-position:50% 50%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Guys-Vans-Aug-2022-web-1024x768.jpg\" alt=\"\" class=\"wp-image-1061 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"35px\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:35px;font-style:normal;font-weight:300\">Need an Electrician ASAP?<br><br>We\'re On Call 24/7 for Emergency electrical work:<br> <br>Call Juice on <strong><a href=\"tel:0800 277 275\" target=\"_blank\" rel=\"noreferrer noopener\">0800 277 275</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1000 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Juice Electrical Commercial Services</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"className\":\"max-w-800 mx-auto\"} -->\n<div class=\"wp-block-columns max-w-800 mx-auto\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Consultation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Repairs / Emergency Repairs</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Servicing / Maintenance</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>New Office Fitouts</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shop & Hospitality fitouts</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Re-wiring – Refits</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Renovation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Electrical Safety Certificates</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Mitsubishi heat pump & Air Conditioning installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Smart Automation Wi-fi switches</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Phone, Internet & computer networks</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Telephone extensions</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Security alarm installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lighting design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Outdoor lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Outdoor speakers</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Thermographic Report</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Regular Maintenance</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No one likes dealing with emergencies or (perhaps literally) putting out fires at the office – that’s where Juice’s commercial electrical services can save you time, money and stress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Avoid emergencies and keep your office operations and insurance costs down by having Juice Electrical perform regular electrical maintenance for you. We’ll help ensure your commercial space is energy efficient, and nip electrical problems in the bud before they turn into emergencies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Emergencies</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sometimes things go wrong unexpectedly – we’ve got your back for those situations too. Call Juice Electrical for emergency repairs - we’ll make sure you get back to business as fast as possible, with minimum disruption.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\" style=\"font-style:normal;font-weight:300\">Is what you need, not on the list above?<br>No job is too small – call to discuss your Commercial project</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":50,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice Electrical ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Commercial','','publish','closed','closed','','commercial','','','2023-06-20 12:33:45','2023-06-20 00:33:45','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=691',0,'page','',0),(695,2,'2023-02-10 12:01:21','2023-02-09 23:01:21','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Smart Home Automation</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Juice Electrical’s registered Master Electricians can wire the convenience, security and peace of mind of smart automation, into your home’s electrical system.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Make the switch to smart Wi-fi switches</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A wide range of devices, appliances and voltages can be controlled by wi-fi switches – providing an amazingly simple, home smart automation solution!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical is a New Zealand Partner for Shelly, who produce the smallest, smartest, most powerful wi-fi switches.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\"}}} -->\n<p style=\"font-size:18px\">You don’t have to automate the whole house</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Switch by switch, Juice Electrical is helping homeowners in Christchurch and Canterbury to automate their homes. The cutting-edge European technology lets you automate only the parts of your home you want to control - even if you just want just one wi-fi light switch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prices start from $50+GST plus installation* for residential homes in Christchurch.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":723,\"mediaLink\":\"https://juiceelectrical.co.nz/services/home-automation/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1-1024x650.jpg);background-position:50% 50%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/smart-home-1-1024x650.jpg\" alt=\"\" class=\"wp-image-723 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h4 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Juice Electrical offers smart home automation installation from $50+GST, plus installation </h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h5 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">(*approx. 30 minutes per switch, minimum 1 hour)</h5>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"grey-darkest\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-grey-darkest-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">Contact Juice Electrical ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">How Wi-fi switches work</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They are actually small electrical relays which fit in <em>behind </em>an existing light switch to provide automated control.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This single switch, wireless automation is all controlled by a cloud-based, user-friendly interface. For example, you can control the lighting in your home from anywhere – simply use your smartphone. Wi-fi switches are also compatible with Alexa, Google Home, Android, and iOS. With these voice assistants, you can even command the switches simply by speaking.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Wi-fi switches can also be programmed to help keep you and your family safe. Picture this: you arrive home after dark and unlock your front door. Automatically, all the lights in the entranceway, hallway, kitchen and lounge turn on: no more stumbling around in the dark.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Or imagine the lights in your driveway, garage, and hallway turning on as soon as you ask Google to operate the garage door opener: no more worries about who might be lurking in the shadows.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Benefits of Juice Electrical PIPs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Wi-fi switches have such an intelligent, tiny design, we’ve taken to calling them <strong>PIPs</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are just some of the many benefits of installing PIPs:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Lighting automation makes your life easier & home safer</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Keeps the function of the original switches & <em>adds</em> automation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Wireless: connects directly to your home (or office) wi-fi.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be controlled remotely.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Voice assistant compatible.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Likely to be compatible with an existing home automation system.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>A wide range of devices, appliances & voltages can be controlled.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">How can a single switch automation PIP be used?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For residential, commercial and industrial properties, the amount of control these single switch, smart automation solutions offer is remarkable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The possibilities for home smart automation are endless, for example:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Do you forget to turn electrical appliances off? With a PIP installed, the integrated countdown timer can automatically switch off your fan heater or lights, after an hour, for example. This means that smart homes are safer because you can never leave an appliance on accidentally.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Set a sunrise and sunset schedule to control your inside or outside lighting accordingly.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dim your hallway lights during sleeping hours.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Arrange with your courier driver to phone you at work when they arrive at your house. Remotely open the garage door for them to leave your package safely inside, then you close the door behind them.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Automate your garden sprinkler, even including a sunset timer so you’re not watering in the hot sunshine, no matter the month.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Want to make it appear that you are home when you’re on holiday? Automate the lights to come on in the evening, along with the television or home entertainment (compatible Harmony Remote or similar required).</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>For convenience and energy-savings, automate your heated towel rail, hot water, heating or ventilation.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Smart Homes','','publish','closed','closed','','smart-homes','','','2024-08-19 12:38:23','2024-08-19 00:38:23','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=695',0,'page','',0),(699,2,'2023-02-10 12:01:30','2023-02-09 23:01:30','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Industrial Electricians for your Business</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Based in Christchurch, Juice Electrical are registered Master Electricians providing Industrial electrical services Canterbury-wide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical understands the importance of reliable electrical services, to maintain productivity for our industrial clients. Our reliable and cost-effective industrial electrical work helps you avoid downtime and quickly resolve emergencies if they occur.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1173,\"mediaLink\":\"https://juiceelectrical.co.nz/industrial/warehouse-lights/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/03/warehouse-lights-1024x680.jpg);background-position:50% 50%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/warehouse-lights-1024x680.jpg\" alt=\"\" class=\"wp-image-1173 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"35px\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:35px;font-style:normal;font-weight:300\">Need an Electrician ASAP?<br><br>We\'re On Call 24/7 for Emergency electrical work:<br> <br>Call Juice on <strong><a href=\"tel:0800 277 275\" target=\"_blank\" rel=\"noreferrer noopener\">0800 277 275</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1000 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Juice Electrical Industrial Services</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Our Industrial electrical expertise includes (but is not limited to):</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"className\":\"max-w-800 mx-auto\"} -->\n<div class=\"wp-block-columns max-w-800 mx-auto\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Repairs</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Maintenance</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Wiring for new industrial builds - building Fitouts</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Re-wiring for building Refits</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Testing</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Safety checks</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Certificate of compliance</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Electrical Safety Certificates</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Outdoor lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Switchboard labelling</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Phone, Internet & computer networks</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Industrial lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>LED lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Thermographic Report </li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph -->\n<p>Poor maintenance means downtime, lost time and lost revenue. Juice Electrical is here to help you avoid those problems, keeping costs down and productivity high. Our expert prevention and maintenance services will help you stop electrical problems, before they’re out of control.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Emergencies</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If electrical emergencies do crop up, Juice Electrical is on call to handle them in a fast, efficient manner to help you get back up and running – and delivering to your customers – in the shortest possible time frame</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Health & Safety</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The high standards of Health and Safety Juice Electrical Master Electricians work to, also help you by avoiding higher insurance costs and lowering the risk of workplace injury for your staff. And of course, safe, well staff are more productive.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\" style=\"font-style:normal;font-weight:300\">No job is too small – call to discuss your industrial project</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":50,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice Electrical ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Industrial','','publish','closed','closed','','industrial','','','2023-06-20 12:33:56','2023-06-20 00:33:56','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=699',0,'page','',0),(722,2,'2023-02-10 12:43:08','2023-02-09 23:43:08','','electrician maintenance christchurch','','inherit','open','closed','','building-electric-maintenance-electrician','','','2023-07-17 11:32:14','2023-07-16 23:32:14','',485,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/02/building-electric-maintenance-electrician.jpg',0,'attachment','image/jpeg',0),(723,2,'2023-02-10 12:43:10','2023-02-09 23:43:10','','Home automation services electrician christchurch','Fictive application controlling the modern house','inherit','open','closed','','home-automation','','','2023-07-17 11:31:57','2023-07-16 23:31:57','',485,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/02/smart-home-1.jpg',0,'attachment','image/jpeg',0),(724,2,'2023-02-10 12:43:13','2023-02-09 23:43:13','','residential led lighting services electrician christchurch','','inherit','open','closed','','led-lighting-2','','','2023-07-17 11:31:50','2023-07-16 23:31:50','',485,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/02/LED-Lighting.jpg',0,'attachment','image/jpeg',0),(725,2,'2023-02-10 12:43:14','2023-02-09 23:43:14','','air conditioner heat pump services electrician christchurch','','inherit','open','closed','','youngwomanadjuststhetemperatureoftheairconditionerusing','','','2023-07-17 11:31:42','2023-07-16 23:31:42','',485,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/02/shutterstock_1421309849-scaled-1200x900-1.jpg',0,'attachment','image/jpeg',0),(726,2,'2023-02-10 12:43:16','2023-02-09 23:43:16','','residential led lighting services electrician christchurch','','inherit','open','closed','','4','','','2023-07-17 11:31:29','2023-07-16 23:31:29','',485,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/02/4.jpg',0,'attachment','image/jpeg',0),(751,2,'2023-02-10 13:32:04','2023-02-10 00:32:04','','Residential','','publish','closed','closed','','751','','','2023-06-23 15:14:24','2023-06-23 03:14:24','',0,'https://devjuiceelectrical.pinnacleandco.nz/?post_type=envira&p=751',0,'envira','',0),(776,2,'2023-02-14 11:05:56','2023-02-13 22:05:56','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Juice Electrical will help you beat the heat, with quality, energy-efficient Air Conditioning.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Our experienced, registered Master Electricians are aircon experts and Mitsubishi specialists. Based in Christchurch, Juice Electrical works Canterbury-wide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have specialist expertise in heat recovery technology – including air conditioning (AC) installation, servicing, and repairs. Juice Electrical works with Mitsubishi Electric air conditioning systems (heat pumps) because we believe they are the best. They also have a great warranty that gives our customers added peace of mind.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":725,\"mediaLink\":\"https://juiceelectrical.co.nz/services/youngwomanadjuststhetemperatureoftheairconditionerusing/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/02/shutterstock_1421309849-scaled-1200x900-1-1024x768.jpg);background-position:50% 50%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/02/shutterstock_1421309849-scaled-1200x900-1-1024x768.jpg\" alt=\"\" class=\"wp-image-725 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Let\'s talk through the options & our latest special offers.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"grey-darkest\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-grey-darkest-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">Get the juice about our Air Con ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Arrange an on-site visit & Quote</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice Electrical ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Beat the heat</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Summers are getting hotter and harder to handle - get relief from the heat, with modern, energy-efficient air conditioning. That said, air conditioning units (heat pumps) that are too small for the area, will do a poor job of cooling. And AC units that are too big for the space, cool the area very quickly, but the dehumidification process is less effective.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With the right air conditioner unit, you’ll never have to worry about being too hot at home or at work. Juice Electrical works with a range of Mitsubishi air conditioning systems, including split system air conditioning. We’ll help you find the most energy-efficient AC solution for your home or workplace.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Stress-free decisions<strong> </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Juice we’re all about making life easier for our customers. We’ll guide you through aircon options, which include central air conditioning, ducted, ductless mini split types, floor consoles or <br>wall-mounted, and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By assessing the best location for the installation, how often you’ll use the unit, and the size of the area to cool, we can help you get the best ‘bang for your buck’ by choosing the perfect AC unit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Why choose Juice for Air Conditioning?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical installs and repairs a wide range of Mitsubishi models, including high-end, ducted air conditioning. Whatever air conditioning system you decide on, our Master Electricians have the skills and experience you need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We also provide preventative maintenance and servicing for a wide range of cooling systems.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Air Conditioning','','publish','closed','closed','','air-conditioning','','','2024-09-30 10:00:10','2024-09-29 21:00:10','',0,'https://devjuiceelectrical.pinnacleandco.nz/?page_id=776',0,'page','',0),(791,2,'2023-02-14 12:24:14','2023-02-13 23:24:14','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"485\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Service Buttons','service-buttons','publish','closed','closed','','group_63eac629622ea','','','2023-02-14 12:25:13','2023-02-13 23:25:13','',0,'https://devjuiceelectrical.pinnacleandco.nz/?post_type=acf-field-group&p=791',0,'acf-field-group','',0),(792,2,'2023-02-14 12:24:14','2023-02-13 23:24:14','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Services Header','services_header','publish','closed','closed','','field_63eac629b112c','','','2023-02-14 12:24:14','2023-02-13 23:24:14','',791,'https://devjuiceelectrical.pinnacleandco.nz/?post_type=acf-field&p=792',0,'acf-field','',0),(793,2,'2023-02-14 12:24:14','2023-02-13 23:24:14','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"table\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Service Buttons','service_buttons','publish','closed','closed','','field_63eac645b112d','','','2023-02-14 12:24:14','2023-02-13 23:24:14','',791,'https://devjuiceelectrical.pinnacleandco.nz/?post_type=acf-field&p=793',1,'acf-field','',0),(794,2,'2023-02-14 12:24:14','2023-02-13 23:24:14','a:16:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";}','Service Buttons Image','service_buttons_image','publish','closed','closed','','field_63eac65eb112e','','','2023-02-14 12:24:14','2023-02-13 23:24:14','',793,'https://devjuiceelectrical.pinnacleandco.nz/?post_type=acf-field&p=794',0,'acf-field','',0),(795,2,'2023-02-14 12:24:14','2023-02-13 23:24:14','a:7:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','Service Buttons Link','service_buttons_link','publish','closed','closed','','field_63eac67eb112f','','','2023-02-14 12:24:14','2023-02-13 23:24:14','',793,'https://devjuiceelectrical.pinnacleandco.nz/?post_type=acf-field&p=795',1,'acf-field','',0),(870,2,'2023-03-07 15:37:33','2023-03-07 02:37:33','','MSZ-AP50','','inherit','open','closed','','msz-ap50','','','2023-06-08 16:52:18','2023-06-08 04:52:18','',490,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/MSZ-AP50.webp',0,'attachment','image/webp',0),(871,2,'2023-03-07 15:37:35','2023-03-07 02:37:35','','MSZ-AP60-80-1','','inherit','open','closed','','msz-ap60-80-1','','','2023-06-08 16:52:15','2023-06-08 04:52:15','',490,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/MSZ-AP60-80-1.webp',0,'attachment','image/webp',0),(872,2,'2023-03-07 15:37:37','2023-03-07 02:37:37','','mitsubishi-electric-heatpump-EF-Series-black','','inherit','open','closed','','mitsubishi-electric-heatpump-ef-series-black','','','2023-06-08 16:52:09','2023-06-08 04:52:09','',490,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/mitsubishi-electric-heatpump-EF-Series-black.webp',0,'attachment','image/webp',0),(891,2,'2023-03-07 15:57:45','2023-03-07 02:57:45','','apollo-tilt-1','','inherit','open','closed','','apollo-tilt-1','','','2023-06-08 16:52:04','2023-06-08 04:52:04','',491,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/apollo-tilt-1.webp',0,'attachment','image/webp',0),(892,2,'2023-03-07 15:57:46','2023-03-07 02:57:46','','apollo-2','','inherit','open','closed','','apollo-2','','','2023-06-08 16:51:58','2023-06-08 04:51:58','',491,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/apollo-2.webp',0,'attachment','image/webp',0),(893,2,'2023-03-07 15:57:49','2023-03-07 02:57:49','','apollo-mini','','inherit','open','closed','','apollo-mini','','','2023-06-08 16:51:52','2023-06-08 04:51:52','',491,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/apollo-mini.webp',0,'attachment','image/webp',0),(895,2,'2023-03-07 16:06:57','2023-03-07 03:06:57','','avira-panel-1','','inherit','open','closed','','avira-panel-1','','','2023-06-08 16:51:47','2023-06-08 04:51:47','',491,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/avira-panel-1.webp',0,'attachment','image/webp',0),(896,2,'2023-03-07 16:06:59','2023-03-07 03:06:59','','revolution-flood','','inherit','open','closed','','revolution-flood','','','2023-06-08 16:51:44','2023-06-08 04:51:44','',491,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/revolution-flood.webp',0,'attachment','image/webp',0),(897,2,'2023-03-07 16:07:00','2023-03-07 03:07:00','','athena-batten','','inherit','open','closed','','athena-batten','','','2023-06-08 16:51:40','2023-06-08 04:51:40','',491,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/athena-batten.webp',0,'attachment','image/webp',0),(898,2,'2023-03-07 16:07:02','2023-03-07 03:07:02','','apollo-xl','','inherit','open','closed','','apollo-xl','','','2023-06-08 16:51:35','2023-06-08 04:51:35','',491,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/apollo-xl.webp',0,'attachment','image/webp',0),(972,2,'2023-03-08 09:59:01','2023-03-07 20:59:01','','air conditioner installation electrician christchurch','','inherit','open','closed','','2400x1600-aire-acondicionado-jpg-img-1600-16376627-9900000000079e3c','','','2023-07-17 11:31:06','2023-07-16 23:31:06','',14,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2020/09/2400x1600-aire-acondicionado.jpg.img_.1600.16376627-9900000000079e3c.jpg',0,'attachment','image/jpeg',0),(974,2,'2023-03-08 10:00:15','2023-03-07 21:00:15','','solar power electrician christchurch','','inherit','open','closed','','infiniteenergycromwellclientdelivery00123058430092-9900000000079e3c','','','2023-07-17 11:30:46','2023-07-16 23:30:46','',14,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2020/09/InfiniteEnergyCromwellClientDelivery00123058430092-9900000000079e3c.jpg',0,'attachment','image/jpeg',0),(975,2,'2023-03-08 10:00:41','2023-03-07 21:00:41','','infinite Energy logo','','inherit','open','closed','','ielogo_horizontal-9900000000079e3c','','','2023-07-17 11:30:49','2023-07-16 23:30:49','',14,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2020/09/IELOGO_Horizontal-9900000000079e3c.jpg',0,'attachment','image/jpeg',0),(976,2,'2023-03-08 10:05:00','2023-03-07 21:05:00','','ev phev charger installation christchurch','','inherit','open','closed','','dcbel-ubkg9f0aury-unsplash-3abdf3138289ac0a','','','2023-07-17 11:30:23','2023-07-16 23:30:23','',14,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2020/09/dcbel-uBKg9f0aUrY-unsplash-3abdf3138289ac0a.jpg',0,'attachment','image/jpeg',0),(1016,2,'2024-11-14 09:29:11','2023-03-07 23:16:56',' ','','','publish','closed','closed','','1016','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1016',3,'nav_menu_item','',0),(1017,2,'2024-11-14 09:29:11','2023-03-07 23:16:56',' ','','','publish','closed','closed','','1017','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1017',2,'nav_menu_item','',0),(1018,2,'2024-11-14 09:29:11','2023-03-07 23:16:56',' ','','','publish','closed','closed','','1018','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1018',1,'nav_menu_item','',0),(1020,2,'2024-11-14 09:29:11','2023-03-07 23:16:56',' ','','','publish','closed','closed','','1020','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1020',4,'nav_menu_item','',0),(1021,2,'2024-11-14 09:29:11','2023-03-07 23:18:30',' ','','','publish','closed','closed','','1021','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1021',11,'nav_menu_item','',0),(1023,2,'2024-11-14 09:29:11','2023-03-07 23:18:30',' ','','','publish','closed','closed','','1023','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1023',9,'nav_menu_item','',0),(1024,2,'2024-11-14 09:29:11','2023-03-07 23:18:30',' ','','','publish','closed','closed','','1024','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1024',10,'nav_menu_item','',0),(1025,2,'2024-11-14 09:29:11','2023-03-07 23:18:30',' ','','','publish','closed','closed','','1025','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1025',5,'nav_menu_item','',0),(1026,2,'2024-11-14 09:29:11','2023-03-07 23:18:30',' ','','','publish','closed','closed','','1026','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1026',6,'nav_menu_item','',0),(1027,2,'2024-11-14 09:29:11','2023-03-07 23:18:30',' ','','','publish','closed','closed','','1027','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1027',7,'nav_menu_item','',0),(1028,2,'2024-11-14 09:29:11','2023-03-07 23:18:30',' ','','','publish','closed','closed','','1028','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1028',8,'nav_menu_item','',0),(1045,2,'2023-03-28 10:44:39','2023-03-27 21:44:39','','electrician christchurch solar power','','inherit','open','closed','','web-52','','','2023-07-17 11:30:14','2023-07-16 23:30:14','',1,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/Web-52.jpg',0,'attachment','image/jpeg',0),(1046,2,'2023-03-28 10:44:45','2023-03-27 21:44:45','','Infinite Energy Cromwell','','inherit','open','closed','','infinite-energy-cromwell-client-delivery-001','','','2023-07-17 11:29:46','2023-07-16 23:29:46','',1,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/Infinite-Energy-Cromwell-Client-Delivery-001.jpg',0,'attachment','image/jpeg',0),(1052,2,'2023-03-28 10:53:24','2023-03-27 21:53:24','','heat pump installation electrician christchurch','','inherit','open','closed','','ef-lifestyle-2020-green-room-white-11-10-08-am','','','2023-07-17 11:29:33','2023-07-16 23:29:33','',485,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/ef-lifestyle-2020-green-room-white-11.10.08-am.jpg',0,'attachment','image/jpeg',0),(1053,2,'2023-03-28 10:53:34','2023-03-27 21:53:34','','office electrician christchurch','','inherit','open','closed','','office-lighting-10-48-07-am','','','2023-07-17 11:29:15','2023-07-16 23:29:15','',485,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/office-lighting-10.48.07-am.jpg',0,'attachment','image/jpeg',0),(1057,2,'2023-03-28 10:54:48','2023-03-27 21:54:48','','local electrician christchurch','','inherit','open','closed','','electricians-rolleston','','','2023-07-17 11:28:42','2023-07-16 23:28:42','',2,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/electricians-rolleston.jpg',0,'attachment','image/jpeg',0),(1061,2,'2023-03-28 10:56:53','2023-03-27 21:56:53','','local electrician christchurch','','inherit','open','closed','','guys-vans-aug-2022-web','','','2023-07-17 11:28:25','2023-07-16 23:28:25','',691,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/Guys-Vans-Aug-2022-web.jpg',0,'attachment','image/jpeg',0),(1066,2,'2023-03-28 11:02:11','2023-03-27 22:02:11','','local electrician christchurch','','inherit','open','closed','','vans-aug-2022','','','2023-07-17 11:28:21','2023-07-16 23:28:21','',699,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/Vans-Aug-2022.jpg',0,'attachment','image/jpeg',0),(1074,2,'2023-03-28 11:07:12','2023-03-27 22:07:12','','LED Lighting in Home electrician christchurch','','inherit','open','closed','','ledlighting','','','2023-07-17 11:28:04','2023-07-16 23:28:04','',491,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/ledlighting.jpg',0,'attachment','image/jpeg',0),(1085,2,'2023-03-28 11:26:53','2023-03-27 22:26:53','','ev phev charger electrician christchurch','','inherit','open','closed','','electric_car_charging1','','','2023-07-17 11:27:55','2023-07-16 23:27:55','',683,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/electric_car_charging1.jpg',0,'attachment','image/jpeg',0),(1101,2,'2023-03-28 12:20:37','2023-03-27 23:20:37','','Heatpump in bedroom residential electrician christchurch','','inherit','open','closed','','ap25_blue_bedroom_cmyk-11-10-08-am','','','2023-07-17 11:27:39','2023-07-16 23:27:39','',14,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2020/09/AP25_Blue_Bedroom_cmyk-11.10.08-am.jpg',0,'attachment','image/jpeg',0),(1103,2,'2023-03-28 12:31:42','2023-03-27 23:31:42','<!-- wp:heading {\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"has-brand-primary-color has-text-color\">Fast, safe EV/PHEV Wall-mounted Chargers</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\" style=\"font-style:normal;font-weight:300\">On average, a wall-mounted charger can cut home charging time in <strong>HALF</strong>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<p style=\"font-style:normal;font-weight:300\">If you want to charge your EV or PHEV vehicle at home faster than using the supplied three-point plug and cord (especially if the battery is more than 20kWh or has more than 150km range), talk to Juice Electrical about installing a Wall-mounted Charger.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<p style=\"font-style:normal;font-weight:300\">If possible, <u><a href=\"/contact/\">contact Juice Electrical</a></u> <em>before </em>you buy an EV or PHEV, as some have maximum charging speeds.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<p style=\"font-style:normal;font-weight:300\">A wall-mounted charger (also known as a wall box, wall charger, or home charging station) must be installed by a qualified Electrician, <em>as it requires wiring to a dedicated circuit.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<p style=\"font-style:normal;font-weight:300\">Juice Electrical can install a wall-mounted charger in your garage, or outside in a carport/parking area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":976,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2020/09/dcbel-uBKg9f0aUrY-unsplash-3abdf3138289ac0a.jpg\" alt=\"\" class=\"wp-image-976\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/ev-phev/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">See EV PHEV Chargers Page</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Talk to Juice about Home Chargers</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','Fast EV & PHEV charging','','publish','closed','closed','','faster-ev-phev-charging','','','2023-03-28 13:24:15','2023-03-28 00:24:15','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1103',0,'post','',0),(1106,2,'2023-03-28 12:38:05','2023-03-27 23:38:05','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:heading {\"textColor\":\"brand-primary\"} -->\n<h2 class=\"has-brand-primary-color has-text-color\"><strong>Cheaper power & better for the Planet</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Infinite Energy Solar Power Systems</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical works with <a rel=\"noreferrer noopener\" href=\"https://juiceelectrical.createsend1.com/t/i-i-qhdao-l-t/\" target=\"_blank\">Infinite Energy</a> – a New Zealand company based in the South Island, specialising in designing customised Solar Power systems, including:<br><br>✓ Grid Connected Solar Power<br>✓ Hybrid Solar Power (lithium-ion battery backup)<br>✓ Entirely Off-Grid Solar Power</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Infinite Energy chose Juice Electrical to become an approved Installer, after hearing about our reputation for <em>over</em>-delivering in every way! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Reduce your power bill, not your street appeal</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As well as performance and efficiency, we were very impressed by how Infinite Energy solar PV (photovoltaic) panels look once installed. The sleek panels have black edging, which means they blend in so<em> </em>much better on the roof, than other solar panels!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Better <em>ideas </em>that are better for the Planet!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We also love that Infinite Energy is proactive. E.g. They lobby the government about renewable energy infrastructure, such as installing Solar Power storage in subdivisions, so that residents can feed in and out of the Grid. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>‘We love going to work each day to make the world a better place, one roof at a time!</em>’<strong> </strong>– Infinite Energy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":975,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2020/09/IELOGO_Horizontal-9900000000079e3c.jpg\" alt=\"\" class=\"wp-image-975\"/><figcaption class=\"wp-element-caption\">Infinite Energy solar power systems can also be integrated with home<a href=\"/ev-phev/\"> EV/PHEV Wall-mounted Chargers</a>, which Juice Electrical can supply and install. <br><br></figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/solar-solutions/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">See Solar Solutions page</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Talk to us about Solar Power</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Cheaper power','','publish','closed','closed','','cheaper-power','','','2023-03-28 13:23:50','2023-03-28 00:23:50','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1106',0,'post','',0),(1121,2,'2023-03-28 13:32:28','2023-03-28 00:32:28','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:heading {\"textColor\":\"brand-primary\"} -->\n<h2 class=\"has-brand-primary-color has-text-color\"><strong>PIPs: <em>smarter</em> Home Automation</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>PIPs are wi-fi switches that make it SO easy to control a wide range of devices, appliances, and voltages.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also known as Shelly wi-fi relay switches, PIPs are the smallest, smartest, most powerful wi-fi switches. Because of their incredibly intelligent, tiny design (and <em>our </em>name), we call them PIPs!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":1139,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/ClipsalAtHome-Iconic-Future-proof.jpg\" alt=\"\" class=\"wp-image-1139\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"has-text-align-center has-brand-primary-color has-text-color\">Endless possibilities</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>By installing PIPs, Juice Electrical can automate lighting (e.g. indoor, outdoor, and security lights), locks, security/alarm systems, heat pumps, air conditioning, curtains, blinds, music, gates, garage doors, sprinklers, music, and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Smartphone & Voice Assistant compatible</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>PIPs wi-fi switches are controlled remotely with Android or iOS smartphones, and can also be voice-activated by using Alexa or Google Home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You don’t have to automate the whole house (we can install just one PIP), and PIPs can also be installed in commercial and industrial buildings.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/smart-homes/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">See Smart Homes page</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical <em>Smart Home Automation</em> can include:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Retro-fitting wi-fi automation</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For homes which don’t have smart wiring/automation, we can install PIPs to turn standard mechanical switches into a wi-fi switches. This keeps the function of the original switches, but adds automation and the ability to use a range of amazing Shelly smart automation devices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\"><em>‘As well as lights, we had Juice install Shelly Dimmer 2 devices in light switch sockets to enable home automation of the lighting. I will be using them again.’ </em><br>- Gavin Treadgold</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Cost-effective full/partial C-Bus replacement</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>PIPs are compatible with existing C-Bus wiring, but cost <em>far less</em> than C-Bus modules. We can completely replace old/failing C-Bus systems or replace individual C-Bus modules at the switchboard, with a PIP.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"backgroundColor\":\"brand-primary\",\"textColor\":\"white\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-white-color has-brand-primary-background-color has-text-color has-background\" style=\"font-style:normal;font-weight:300\"><!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div id=\"cbus\" class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"has-text-align-center has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">AFFORDABLE SOLUTIONS FOR<br>C-BUS PROBLEMS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical has helped clients who previously thought it would cost <em>thousands</em> to solve C-Bus issues. (A common call we get is about a lighting problem, which we discover is caused by a C-Bus module/modules at the switchboard, failing.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We offer C-Bus compatible PIPssolutions for under $1,000 - in some cases the cost has only been $300-$400.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you or someone you know has an old, failing, or unreliable C-Bus system, contact Juice for a smart fix that <em>won’t</em> cost an arm and a leg!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Arrange a Quote</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":1141,\"width\":576,\"height\":473,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/ezgif-4-97cb52d981.jpg\" alt=\"\" class=\"wp-image-1141\" width=\"576\" height=\"473\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">No re-wiring or extra equipment needed</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical installs PIPs behind existing light switches and wall sockets: no need to rewire or make changes to the current electrical system.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each PIP wi-fi switch has an embedded server, which connects to your existing wi-fi network, using the Shelly <em>Smart Control</em> app. If you’re not a ‘techy’ person, don’t worry - we’ll also show you how to use the app. We’re all about making your life easier.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Talk to us about PIPs</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":4,\"textColor\":\"brand-primary\"} -->\n<h4 class=\"has-text-align-center has-brand-primary-color has-text-color\"><em>Reimagine </em>life at home</h4>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\"><em>By installing PIPs that communicate with each other, smart phones and devices, we can create home automation ‘magic tricks’, that weren’t possible before.<br></em>Greg Horton<br>(Juice Electrical Owner & Managing Director)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Watch a <a rel=\"noreferrer noopener\" href=\"https://www.google.com/search?q=you+tube+shelly+cloud&rlz=1C1GEWG_enNZ1015NZ1015&oq=you+tube+shelly+cloud&aqs=chrome..69i57j0i10i512l8j0i10i22i30.3435j0j7&sourceid=chrome&ie=UTF-8#fpstate=ive&vld=cid:559cefec,vid:NgL5X_qO3ug\" data-type=\"URL\" data-id=\"https://www.google.com/search?q=you+tube+shelly+cloud&rlz=1C1GEWG_enNZ1015NZ1015&oq=you+tube+shelly+cloud&aqs=chrome..69i57j0i10i512l8j0i10i22i30.3435j0j7&sourceid=chrome&ie=UTF-8#fpstate=ive&vld=cid:559cefec,vid:NgL5X_qO3ug\" target=\"_blank\">Shelly Cloud video on YouTube</a> which helps you see how Smart Home Automation helps make life at home easier, safer, and more comfortable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->','PIPs: Home Automation','','publish','closed','closed','','pips-smarter-home-automation','','','2023-03-28 15:58:46','2023-03-28 02:58:46','',0,'https://devjuiceelectrical.pinnacleandco.nz/?p=1121',0,'post','',0),(1127,2,'2023-03-28 14:32:39','2023-03-28 01:32:39','','Home Automation switches','','inherit','open','closed','','ezgif-4-52710f407d','','','2023-06-08 16:47:52','2023-06-08 04:47:52','',1121,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/ezgif-4-52710f407d.jpg',0,'attachment','image/jpeg',0),(1139,2,'2023-03-28 15:16:59','2023-03-28 02:16:59','','Home Automation Socket','','inherit','open','closed','','clipsalathome-iconic-future-proof','','','2023-06-08 16:47:36','2023-06-08 04:47:36','',1121,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/ClipsalAtHome-Iconic-Future-proof.jpg',0,'attachment','image/jpeg',0),(1141,2,'2023-03-28 15:17:47','2023-03-28 02:17:47','','smart automation pips wi fi switches','','inherit','open','closed','','ezgif-4-97cb52d981','','','2023-07-17 11:27:15','2023-07-16 23:27:15','',1121,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/ezgif-4-97cb52d981.jpg',0,'attachment','image/jpeg',0),(1146,2,'2023-03-28 15:58:18','2023-03-28 02:58:18','','home automation electrician christchurch','','inherit','open','closed','','man-using-smart-home-tablet','','','2023-07-17 11:26:55','2023-07-16 23:26:55','',1121,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/man-using-smart-home-tablet.jpg',0,'attachment','image/jpeg',0),(1147,2,'2023-03-28 15:58:23','2023-03-28 02:58:23','','home automation electrician christchurch','','inherit','open','closed','','close-up-hand-holding-remote','','','2023-07-17 11:26:53','2023-07-16 23:26:53','',1121,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/close-up-hand-holding-remote.jpg',0,'attachment','image/jpeg',0),(1148,2,'2023-03-28 15:58:27','2023-03-28 02:58:27','','home automation electrician christchurch','','inherit','open','closed','','woman-pressing-smart-home-automation-panel-monitor','','','2023-07-17 11:26:50','2023-07-16 23:26:50','',1121,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/woman-pressing-smart-home-automation-panel-monitor.jpg',0,'attachment','image/jpeg',0),(1150,2,'2023-03-30 12:48:51','2023-03-29 23:48:51','','home ev/phev wall charger electrician christchurch','','inherit','open','closed','','possessed-photography-zncldh5-srk-unsplash-1','','','2023-07-17 11:26:23','2023-07-16 23:26:23','',1,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/possessed-photography-znCLdh5-Srk-unsplash-1.jpg',0,'attachment','image/jpeg',0),(1152,2,'2023-03-30 12:52:12','2023-03-29 23:52:12','','Juice Electrical Van and Greg','','inherit','open','closed','','juice-electrical-2nd-attempt-007','','','2023-07-17 11:25:49','2023-07-16 23:25:49','',2,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/juice-electrical-2nd-attempt-007.jpg',0,'attachment','image/jpeg',0),(1154,2,'2023-03-30 12:56:16','2023-03-29 23:56:16','','residential led lighting electrician christchurch','','inherit','open','closed','','modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard','','','2023-07-17 11:25:23','2023-07-16 23:25:23','',679,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/modern-garden-lighting-image-pathway-ideas-on_outdoor-patio-and-backyard.jpg',0,'attachment','image/jpeg',0),(1157,2,'2023-03-30 12:59:01','2023-03-29 23:59:01','','Warehouse industrial lighting electrician christchurch','','inherit','open','closed','','screenshot-2023-03-30-at-12-58-27-pm','','','2023-07-17 11:25:11','2023-07-16 23:25:11','',699,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/Screenshot-2023-03-30-at-12.58.27-pm.png',0,'attachment','image/png',0),(1160,2,'2023-03-30 13:00:38','2023-03-30 00:00:38','','residential electrician christchurch','','inherit','open','closed','','handshake','','','2023-07-17 11:25:01','2023-07-16 23:25:01','',492,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/handshake.jpg',0,'attachment','image/jpeg',0),(1162,2,'2023-03-30 13:04:56','2023-03-30 00:04:56','','living room led lighting electrician christchurch','','inherit','open','closed','','cons_ratgeber_beleuchtung-im-wohnzimmer_mi_paulmann_2019_12_010','','','2023-07-17 11:24:48','2023-07-16 23:24:48','',491,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/Cons_Ratgeber_Beleuchtung-im-Wohnzimmer_Mi_Paulmann_2019_12_010.jpg',0,'attachment','image/jpeg',0),(1166,2,'2023-03-30 13:09:35','2023-03-30 00:09:35','','air conditioner christchurch electrician','couple turning on air conditioner during the summer heat while sitting on sofa with book and laptop','inherit','open','closed','','couple-turning-on-air-conditioner-during-the-summer-heat-while-sitting-on-sofa-with-book-and-laptop','','','2023-07-17 11:24:35','2023-07-16 23:24:35','',490,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/Energy-Audit-iStock-1003476164.jpg',0,'attachment','image/jpeg',0),(1167,2,'2023-03-30 13:09:37','2023-03-30 00:09:37','','heat pump christchurch electrician','','inherit','open','closed','','msz-ge35vad-wall-mounted-air-conditioners-home','','','2023-07-17 11:24:25','2023-07-16 23:24:25','',490,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/MSZ-GE35VAD-Wall-Mounted-Air-Conditioners-Home.jpg',0,'attachment','image/jpeg',0),(1169,2,'2023-03-30 13:10:51','2023-03-30 00:10:51','','heat pump christchurch electrician','','inherit','open','closed','','air-conditioner-blowing-cold-air','','','2023-07-17 11:24:22','2023-07-16 23:24:22','',776,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/iStock-519620696_800x533.jpg',0,'attachment','image/jpeg',0),(1173,2,'2023-03-30 13:13:14','2023-03-30 00:13:14','','warehouse industrial electrician christchurch','','inherit','open','closed','','warehouse-lights','','','2023-07-17 11:23:50','2023-07-16 23:23:50','',699,'https://devjuiceelectrical.pinnacleandco.nz/wp-content/uploads/2023/03/warehouse-lights.jpg',0,'attachment','image/jpeg',0),(1195,2,'2023-05-08 14:06:55','2023-05-08 02:06:55','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph -->\n<p>Juice Electrical highly recommends Visionary LED lights for replacing existing recessed downlights, and for new homes. Compared to traditional incandescent and halogen bulbs, LEDs put out <strong>20%</strong> more light, use only <strong>10%</strong> of the energy, and have a MUCH longer lifespan: <strong>50,000+ hours</strong>, which is <strong>20 to 30</strong> years at least!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The cost to install LEDs is usually less than replacing traditional bulbs, so for a lower price, you get better brightness for longer, AND lower power bills.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong>Visionary LED residential downlights</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical supplies and installs quality Visionary LED lighting in Christchurch and Canterbury-wide, including the residential downlights shown below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These downlights recess into the ceiling and sit flush. All come with a 7-year Warranty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1000 mx-auto\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/05/Apollo-2.png\" alt=\"\" class=\"wp-image-1196\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/05/Apollo-Mini-2.png\" alt=\"\" class=\"wp-image-1197\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":1199,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/05/Iris-Tilt-2A-1024x700.png\" alt=\"\" class=\"wp-image-1199\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Apollo 2</strong> <em>(130mm)</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Apollo Mini 2</strong> <em>(97mm)</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Iris Tilt 2</strong> <em>(103mm)</em><br></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/led-lighting/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">See our LED Lighting page</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\">Checklist for upgrading to LEDs</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>See the Checklist in our LED Lighting website page, about upgrading to LEDs. With information from this, and factoring in the age of the home, Juice Electrical can usually Quote LED prices on the phone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/led-lighting/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">View our LED Checklist</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"backgroundColor\":\"brand-primary\",\"textColor\":\"white\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-white-color has-brand-primary-background-color has-text-color has-background\" style=\"font-style:normal;font-weight:300\"><!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\"><em>“We’re happy to replace just one bulb, though it’s more economical for you to do a room or two, or in some cases, the whole house</em>,” explains Greg Horton. <em>“It usually takes only 3-6 hours to fully modernise a home with LED lighting.”</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong>Local LED lighting innovators</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Visionary LED lights are designed and assembled by <strong>Visionary Technologies</strong>: an innovative Christchurch company leading the way in the lighting industry, and bringing better products to New Zealand. We love that they’re local!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Some of the MANY reasons why Juice Electrical prefers Visionary LED lights:<strong></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Completely sealed, airtight thermal design: fully sealed front lens ensures no air, thermal or dust movement between room and ceiling cavity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Visionary LEDs are slightly wider than other lights, to neatly cover paint marks or discolouration from previous downlights.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Highly durable, premium components and trim.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully dimmable and compatible with almost all NZ wall dimmer systems, and <strong><a href=\"https://juiceelectrical.co.nz/smart-homes/\">smart home automation</a></strong> systems. </li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Insulation can be laid over the top: fully IC-F rated for use under all NZ approved insulation types, including Pink Batts and Earthwool.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Water and dust resistant: great for bathrooms, kitchens and under soffits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>‘Soft tone’ light: even, diffused light comfortable for your eyes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive to prospective tenants: no blown bulb hassles!</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1200,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/05/juice.webp\" alt=\"\" class=\"wp-image-1200\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\">Outdoor, Garden & Security Lighting</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>To make the most of your outdoor areas now that the nights are darker earlier, Juice Electrical recommends installing LED outdoor and garden lighting. This can include tree or feature up-lighting, deck lighting, floodlights, lights for steps and paths.<br>LED Security lighting solutions can also be installed (and automated) – e.g. for your driveway and garage, entranceways and paths.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\">PIPs wi-fi switches: automated lighting</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical can also install ‘PIPs’: wi-fi switches to automate in and outdoor lighting. You can start with just one switch if you like: from $50+GST plus installation* for residential homes in Christchurch. (*Approx. 30 minutes per switch, minimum 1 hour.)<br><br>Learn more about PIPs and smarter home automation, in our <a href=\"/blog/pips-smarter-home-automation/\">PIPs Home Automation</a> Blog Post - especially if you have an old, failing or unreliable C-Bus system.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-600 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-600 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">For in or outdoor LED lighting, talk to Juice Electrical: registered Master Electricians and veterans in the electrical industry, with 15+ years’ experience.<br>Contact us for advice, or to arrange a consultation or Quote.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Let\'s talk Lightning</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\"><em>‘They installed LED lights in our kitchen. Great service and very professional. Helen gave us a very good quote on phone … installed LED on same day. We will only use Juice Electrical from now. Highly Recommend.</em>’ - Guri Maan</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->','Visionary LED lighting for your home','','publish','closed','closed','','visionary-led-lighting-for-your-home','','','2024-09-03 14:45:33','2024-09-03 02:45:33','',0,'https://juiceelectrical.co.nz/?p=1195',0,'post','',0),(1196,2,'2023-05-04 10:25:12','2023-05-03 22:25:12','','Apollo-2','','inherit','open','closed','','apollo-2-2','','','2023-06-08 16:43:05','2023-06-08 04:43:05','',1195,'https://juiceelectrical.co.nz/wp-content/uploads/2023/05/Apollo-2.png',0,'attachment','image/png',0),(1197,2,'2023-05-04 10:26:37','2023-05-03 22:26:37','','Apollo-Mini-2','','inherit','open','closed','','apollo-mini-2','','','2023-06-08 16:43:01','2023-06-08 04:43:01','',1195,'https://juiceelectrical.co.nz/wp-content/uploads/2023/05/Apollo-Mini-2.png',0,'attachment','image/png',0),(1198,2,'2023-05-04 10:29:17','2023-05-03 22:29:17','','Iris Tilt 2','','inherit','open','closed','','iris-tilt-2','','','2023-06-08 16:42:56','2023-06-08 04:42:56','',1195,'https://juiceelectrical.co.nz/wp-content/uploads/2023/05/Iris-Tilt-2.png',0,'attachment','image/png',0),(1199,2,'2023-05-04 10:29:24','2023-05-03 22:29:24','','Iris Tilt 2A','','inherit','open','closed','','iris-tilt-2a','','','2023-06-08 16:42:52','2023-06-08 04:42:52','',1195,'https://juiceelectrical.co.nz/wp-content/uploads/2023/05/Iris-Tilt-2A.png',0,'attachment','image/png',0),(1200,2,'2023-05-04 10:38:55','2023-05-03 22:38:55','','Juice Electrical LED Lighting','','inherit','open','closed','','juice','','','2023-06-08 16:42:39','2023-06-08 04:42:39','',1195,'https://juiceelectrical.co.nz/wp-content/uploads/2023/05/juice.webp',0,'attachment','image/webp',0),(1229,2,'2023-05-08 14:06:31','2023-05-08 02:06:31','','residential electrical services','','inherit','open','closed','','juiceelec_may_fb_banner','','','2023-07-17 11:23:07','2023-07-16 23:23:07','',1195,'https://juiceelectrical.co.nz/wp-content/uploads/2023/05/JuiceElec_May_FB_Banner.jpg',0,'attachment','image/jpeg',0),(1231,2,'2023-05-08 14:10:22','2023-05-08 02:10:22','','residential electrical services','','inherit','open','closed','','bannerled-site','','','2023-07-17 11:23:05','2023-07-16 23:23:05','',1195,'https://juiceelectrical.co.nz/wp-content/uploads/2023/05/bannerled-site.jpg',0,'attachment','image/jpeg',0),(1241,2,'2023-06-01 15:08:08','2023-06-01 03:08:08','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph -->\n<p>Day to day living creates a surprising amount of moisture in homes, and cold air makes it worse … But Juice Electrical can help keep your home warmer, drier and healthier.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1244,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/06/CondensationBlog3-1024x450.jpg\" alt=\"\" class=\"wp-image-1244\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong>Heat Pumps</strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\">Enjoy a toasty-warm, drier home</h4>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>The World Health Organization recommends a minimum room temperature of 18 °Celsius … And the warmer the air in your home is, the less moisture it retains.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Heat pumps can heat homes quickly and maintain a warm temperature (we also recommend, if possible, heating hallways and bedrooms - not just living areas). And did you know Mitsubishi heat pumps can be set to turn on when the temperature drops below a certain level?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Learn more about heat pumps and see Juice Electrical’s hard-to-beat pricing. <strong><u></u></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/heat-pumps/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Mitsubishi Heat Pumps</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Note: </em></strong><em>Juice Electrical provides professional, high-spec heat pump installation.Where possible, to prevent leaf and dirt build-up, Juice Electrical installs the outdoor unit off the ground on a wall-mounted bracket. We also cover piping so that it doesn’t deteriorate from exposure to sunlight and the elements (this is important, but isn’t done by all heat pump installers).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1243,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/06/CondensationBlog2.jpg\" alt=\"\" class=\"wp-image-1243\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\">Dri-Matic Ventilation System</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Drier, filtered fresh air </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Day to day living such as cooking, washing clothes, showering (and breathing), adds a lot of moisture into homes. Cooking is estimated to add 3.0* litres of moisture a day! <em>(*Source: Consumer NZ).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Dry-Matic ventilation system from Smooth-Air, forces out moist, stale air and replaces it with drier, filtered fresh air which is continuously circulated throughout your home. This also reduces heating costs, because the Dry-Matic redirects solar-warmed air from the ceiling space.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dry-Matic is powerful: one unit can ventilate and provide even heat distribution to a 275sqm house. The system is relatively simple for Juice Electrical to install, so the cost is very reasonable - in some cases, less than half the price of other ventilation systems on the market!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>From $2,750 +GST, incl. Installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Rental Property from $2,250 +GST, incl. Installation</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Get the Juice about Dri-Matic</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":1242,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/06/CondensationBlog1-1024x422.jpg\" alt=\"\" class=\"wp-image-1242\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong>Bathroom Extractor Fans</strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong><strong>Suck that steam out!</strong></strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Showers and baths can create 1.5* litres of moisture per day per person, so it’s not surprising that condensation and dampness are common problems in bathrooms. <em>(*Source: Consumer NZ). </em><em></em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To help control moisture and condensation, Juice Electrical supplies and installs quality bathroom extractor fans (<a href=\"https://www.weiss.co.nz/product-extraction\">Weiss</a>, and <a href=\"https://simx.co.nz/categories/extrac\">Simx</a>). People are often surprised by how quickly these powerful fans can extract steam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As a Healthy Homes installer, Juice Electrical also knows what’s needed for a bathroom extractor fan to meet the Healthy Homes Ventilation standard required for rental properties.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Call us for a quote - for bathroom extractor fans, in most cases we can give you a price straight away.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact Juice Electrical</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Moisture & Condensation','','publish','closed','closed','','moisture-condensation','','','2023-06-08 12:26:09','2023-06-08 00:26:09','',0,'https://juiceelectrical.co.nz/?p=1241',0,'post','',0),(1242,2,'2023-06-01 15:05:30','2023-06-01 03:05:30','','condensation electrician home service christchurch','','inherit','open','closed','','condensationblog1','','','2023-07-17 11:22:47','2023-07-16 23:22:47','',1241,'https://juiceelectrical.co.nz/wp-content/uploads/2023/06/CondensationBlog1.jpg',0,'attachment','image/jpeg',0),(1243,2,'2023-06-01 15:05:32','2023-06-01 03:05:32','','condensation electrician home service christchurch','','inherit','open','closed','','condensationblog2','','','2023-07-17 11:22:44','2023-07-16 23:22:44','',1241,'https://juiceelectrical.co.nz/wp-content/uploads/2023/06/CondensationBlog2.jpg',0,'attachment','image/jpeg',0),(1244,2,'2023-06-01 15:05:34','2023-06-01 03:05:34','','condensation electrician home service christchurch','','inherit','open','closed','','condensationblog3','','','2023-07-17 11:22:34','2023-07-16 23:22:34','',1241,'https://juiceelectrical.co.nz/wp-content/uploads/2023/06/CondensationBlog3.jpg',0,'attachment','image/jpeg',0),(1245,2,'2023-06-01 15:05:36','2023-06-01 03:05:36','','condensation electrician home service christchurch','','inherit','open','closed','','condensationblog4','','','2023-07-17 11:22:32','2023-07-16 23:22:32','',1241,'https://juiceelectrical.co.nz/wp-content/uploads/2023/06/CondensationBlog4.jpg',0,'attachment','image/jpeg',0),(1268,2,'2023-08-03 12:03:51','2023-08-03 00:03:51','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph -->\n<p>LED lighting technology is always evolving, so when deciding on which LEDs to install for Commercial or Industrial lighting, always compare LED products’ <strong>performance</strong>, <strong>energy consumption</strong>, and <strong>durability</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":1272,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/08/LED-Lighting-Electrician-Christchurch1.jpeg\" alt=\"\" class=\"wp-image-1272\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong>Commercial & Industrial LEDs</strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re replacing traditional lighting or upgrading/replacing existing LEDs, Juice Electrical’s LED lighting plans and installation expertise will also save you time and money.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical installs interior and exterior LED lighting in a diverse range of properties and sites; including workshops, warehouses, factories, cafés, shops, supermarkets, and schools.<br><br>LED Lighting options include (but are not limited to):</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Interior & Exterior LED lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Security Lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>LED Ceiling Panels</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Floodlights</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Highbays</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Landscape & Tree Lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Task / Ambient / Accent lighting<br>(With suitable light quality to also reduce glare & help prevent eye strain)</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>LED Lighting for:<strong><br><br></strong><strong></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Workshops, Warehouses & Factories</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Offices, Retail & Hospitality</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Entrance & Exit lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Steps, Stairs, Stairwells</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Loading Docks</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Parking Lots & Driveways</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Pathways & Walkways</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Street lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Bollard lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>*Hazardous areas & Emergency lighting</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":1274,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/08/LED-Lighting-Electrician-Christchurch3.jpg\" alt=\"\" class=\"wp-image-1274\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong><strong>Low LED Running Costs</strong></strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Extremely low energy consumption is a key benefit of LED lighting: LEDs are far more energy efficient (and emit almost no heat). This is also useful for Security Lighting, which may be best to leave on all night. That said, LED lighting can be on sensors/motion triggered / on timers / fully automated - e.g. with our super-smart Wi-fi switches, which fit behind existing light switches. These \'PIPs\' provide wireless, automated control of the lighting.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/smart-homes/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Learn more about Smart Automation and PIPs</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"align\":\"center\",\"id\":1231,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/05/bannerled-site-scaled.jpg\" alt=\"residential electrical services\" class=\"wp-image-1231\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong><strong><strong>Visionary LEDs</strong></strong></strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There’s an LED for even the most extreme workplaces and conditions. Juice Electrical highly recommends quality <strong>Visionary </strong>LED lighting - developed in New Zealand by Visionary Technologies, a Canterbury company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/led-lighting/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Learn more about LED Lighting</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":1273,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/08/LED-Lighting-Electrician-Christchurch2.jpg\" alt=\"\" class=\"wp-image-1273\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong><strong><strong>LED Solutions</strong></strong></strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical supplies and installs LED lighting Canterbury-wide. Our registered Master Electricians are experts at assessing business needs and finding LED solutions that include greater light output and energy efficiencies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We also have the benefit of Greg Horton’s decades of electrical experience in commercial and industrial lighting, which includes large-scale street lighting projects, while working at South Power. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"align\":\"center\",\"id\":1053,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/office-lighting-10.48.07-am.jpg\" alt=\"office electrician christchurch\" class=\"wp-image-1053\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong><strong><strong><strong>Custom Lighting Plans</strong></strong></strong></strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>For Lighting Plans, Juice Electrical considers a wide range of factors, for example:<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>How much space needs to be lit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>The light spread required (the LED lighting must be angled correctly)</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Mounting requirements</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Durability needs – e.g. re: weather, climatic conditions</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Safety & security of the property, workers, visitors, customers</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>*Juice Electrical is also experienced in working with Council-approved, Commercial, and Industrial Lighting Plans - e.g. for Emergency lighting, and Hazardous sites/spaces.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\"><br><strong>Get the juice about LED Lighting for your Commercial or Industrial property:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact Juice Electrical</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','LED Lighting for Workplaces','','publish','closed','open','','led-lighting-for-workplaces','','','2023-08-08 08:56:05','2023-08-07 20:56:05','',0,'https://juiceelectrical.co.nz/?p=1268',0,'post','',0),(1271,2,'2023-08-03 12:04:41','2023-08-03 00:04:41','','FB Banner image','','inherit','','closed','','fb-banner-image','','','2023-08-03 12:04:41','2023-08-03 00:04:41','',1268,'https://juiceelectrical.co.nz/wp-content/uploads/2023/08/FB-Banner-image.jpg',0,'attachment','image/jpeg',0),(1272,2,'2023-08-03 12:07:44','2023-08-03 00:07:44','','LED Lighting Electrician Christchurch1','','inherit','','closed','','led-lighting-electrician-christchurch1','','','2023-08-03 12:07:44','2023-08-03 00:07:44','',1268,'https://juiceelectrical.co.nz/wp-content/uploads/2023/08/LED-Lighting-Electrician-Christchurch1.jpeg',0,'attachment','image/jpeg',0),(1273,2,'2023-08-03 12:07:48','2023-08-03 00:07:48','','LED Lighting Electrician Christchurch2','','inherit','','closed','','led-lighting-electrician-christchurch2','','','2023-08-03 12:07:48','2023-08-03 00:07:48','',1268,'https://juiceelectrical.co.nz/wp-content/uploads/2023/08/LED-Lighting-Electrician-Christchurch2.jpg',0,'attachment','image/jpeg',0),(1274,2,'2023-08-03 12:07:51','2023-08-03 00:07:51','','LED Lighting Electrician Christchurch3','','inherit','','closed','','led-lighting-electrician-christchurch3','','','2023-08-03 12:07:51','2023-08-03 00:07:51','',1268,'https://juiceelectrical.co.nz/wp-content/uploads/2023/08/LED-Lighting-Electrician-Christchurch3.jpg',0,'attachment','image/jpeg',0),(1275,2,'2023-08-03 12:07:54','2023-08-03 00:07:54','','LED Lighting Electrician Christchurch4','','inherit','','closed','','led-lighting-electrician-christchurch4','','','2023-08-03 12:07:54','2023-08-03 00:07:54','',1268,'https://juiceelectrical.co.nz/wp-content/uploads/2023/08/LED-Lighting-Electrician-Christchurch4.jpg',0,'attachment','image/jpeg',0),(1283,2,'2023-10-09 11:50:01','2023-10-08 22:50:01','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"align\":\"center\",\"id\":1288,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/10/Google_3-edited-1.jpg\" alt=\"\" class=\"wp-image-1288\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textColor\":\"brand-primary\"} -->\n<h2 class=\"wp-block-heading has-brand-primary-color has-text-color\"><strong>We are the experts...</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>In home automation installs and upgrades that will take your home in to the future and add layers of convenience, comfort and security.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":1290,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/10/Home-Automation-Banner-1024x504.jpg\" alt=\"\" class=\"wp-image-1290\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>This technology has been around for a while now, but, as with everything, the tech has become cheaper, smaller and smarter, allowing us to offer you a range of options from as little as $60+GST plus installation* for residential homes in Christchurch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Around 20 minutes per switch, minimum charge 1 hour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From there you can build up a considerable automated presence in your home, allowing you fingertip control of lighting, locks, security and alarm systems, heat pumps, air conditioning, curtains, blinds, music, gates, garage doors, sprinklers, music and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/smart-homes/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Learn more about Home Automation</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":1292,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/10/shelly25-1-2000x2000-1-edited.jpeg\" alt=\"\" class=\"wp-image-1292\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>To do this we use PIP’s, that’s our inside name for Shelly wi-fi relay switches. These little beauties are simple to install and are controlled remotely with your smartphone, Alexa or Google Home assistant.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For those of you that don’t have smart wiring/automation, we can install PIPs to turn your normal switches into a wi-fi switches - Magic! This allows you to keep the function of your original switches, but adds automation and the ability to use a range of amazing Shelly smart automation devices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-center\"> <strong>Watch a Shelly Cloud video on YouTube outlining how Smart Home Automation works.</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://www.youtube.com/watch?v=NgL5X_qO3ug\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\" target=\"_blank\" rel=\"noreferrer noopener\">Learn more about Shelly Home Automation</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":1293,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/10/home-charging-Banner-1024x504.jpg\" alt=\"\" class=\"wp-image-1293\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p> So you’ve bought an EV/PHEV - Yet more Jetson tech! The only problem is when you get home and start charging your shiny new investment, it can take some time, up to 33 hours in some cases! Now you can supercharge your home EV/PHEV charging experience with our fast and safe wall-mounted chargers!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3} -->\n<h3 class=\"wp-block-heading has-text-align-center\"> <strong>On average, a wall-mounted charger will slash your home charging time in half!</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p> If you’re looking to power up your electric or plug-in hybrid vehicle at home in no time, especially if your battery is over 20kWh or boasts a range of more than 150km, reach out to Juice Electrical about getting a Wall-mounted Charger installed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To make sure you get the most out of your charging setup, it’s a great idea to get in touch with Juice Electrical before purchasing your EV/PHEV. Some vehicles have maximum charging speeds, and we can help you choose the right charger accordingly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember, a wall-mounted charger needs to be installed by a qualified electrician since it requires dedicated circuit wiring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s where we come in! We can install a wall-mounted charger in your garage or even outdoors in your carport or parking area for maximum convenience. So why wait? Get in touch with us today to supercharge your home charging experience!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/ev-phev/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Enquire about Home Chargers </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->','All about Home Automation','','publish','closed','open','','all-about-home-automation','','','2023-11-07 09:55:22','2023-11-06 20:55:22','',0,'https://juiceelectrical.co.nz/?p=1283',0,'post','',0),(1285,2,'2023-10-09 11:14:30','2023-10-08 22:14:30','','Blog Banner','','inherit','','closed','','blog-banner','','','2023-10-09 11:14:30','2023-10-08 22:14:30','',1283,'https://juiceelectrical.co.nz/wp-content/uploads/2023/10/Blog-Banner.jpg',0,'attachment','image/jpeg',0),(1286,2,'2023-10-09 11:14:52','2023-10-08 22:14:52','','Google_3','','inherit','','closed','','google_3','','','2023-10-09 11:14:52','2023-10-08 22:14:52','',1283,'https://juiceelectrical.co.nz/wp-content/uploads/2023/10/Google_3.jpg',0,'attachment','image/jpeg',0),(1287,2,'2023-10-09 11:15:20','2023-10-08 22:15:20','','Google_3','','inherit','','closed','','google_3-2','','','2023-10-09 11:15:20','2023-10-08 22:15:20','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2023/10/Google_3-edited.jpg',0,'attachment','image/jpeg',0),(1288,2,'2023-10-09 11:15:39','2023-10-08 22:15:39','','Google_3','','inherit','','closed','','google_3-3','','','2023-10-09 11:15:39','2023-10-08 22:15:39','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2023/10/Google_3-edited-1.jpg',0,'attachment','image/jpeg',0),(1289,2,'2023-10-09 11:15:56','2023-10-08 22:15:56','<!-- wp:navigation-submenu {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"485\",\"kind\":\"post-type\",\"label\":\"Services\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/services/\"} --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"679\",\"kind\":\"post-type\",\"label\":\"Residential\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/residential/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"691\",\"kind\":\"post-type\",\"label\":\"Commercial\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/commercial/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"699\",\"kind\":\"post-type\",\"label\":\"Industrial\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/industrial/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"492\",\"kind\":\"post-type\",\"label\":\"Renovations\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/renovations/\"} /--><!-- /wp:navigation-submenu --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"491\",\"kind\":\"post-type\",\"label\":\"LED Lighting\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/led-lighting/\"} /--><!-- wp:navigation-submenu {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"490\",\"kind\":\"post-type\",\"label\":\"Heat Pumps\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/heat-pumps/\"} --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"776\",\"kind\":\"post-type\",\"label\":\"Air Conditioning\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/air-conditioning/\"} /--><!-- /wp:navigation-submenu --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"489\",\"kind\":\"post-type\",\"label\":\"Solar Solutions\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/solar-solutions/\"} /--><!-- wp:navigation-submenu {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"695\",\"kind\":\"post-type\",\"label\":\"Smart Homes\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/smart-homes/\"} --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"683\",\"kind\":\"post-type\",\"label\":\"EV PHEV Chargers\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/ev-phev/\"} /--><!-- /wp:navigation-submenu --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"3\",\"kind\":\"post-type\",\"label\":\"Contact\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://juiceelectrical.co.nz/contact/\"} /-->','Footer Navigation','','publish','closed','closed','','footer-navigation','','','2023-10-09 11:15:56','2023-10-08 22:15:56','',0,'https://juiceelectrical.co.nz/blog/footer-navigation/',0,'wp_navigation','',0),(1290,2,'2023-10-09 11:17:18','2023-10-08 22:17:18','','Home Automation Banner','','inherit','','closed','','home-automation-banner','','','2023-10-09 11:17:18','2023-10-08 22:17:18','',1283,'https://juiceelectrical.co.nz/wp-content/uploads/2023/10/Home-Automation-Banner.jpg',0,'attachment','image/jpeg',0),(1291,2,'2023-10-09 11:19:54','2023-10-08 22:19:54','','shelly25-1-2000x2000-1','','inherit','','closed','','shelly25-1-2000x2000-1','','','2023-10-09 11:19:54','2023-10-08 22:19:54','',1283,'https://juiceelectrical.co.nz/wp-content/uploads/2023/10/shelly25-1-2000x2000-1.jpeg',0,'attachment','image/jpeg',0),(1292,2,'2023-10-09 11:20:18','2023-10-08 22:20:18','','shelly25-1-2000x2000-1','','inherit','','closed','','shelly25-1-2000x2000-1-2','','','2023-10-09 11:20:18','2023-10-08 22:20:18','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2023/10/shelly25-1-2000x2000-1-edited.jpeg',0,'attachment','image/jpeg',0),(1293,2,'2023-10-09 11:23:20','2023-10-08 22:23:20','','home charging Banner','','inherit','','closed','','home-charging-banner','','','2023-10-09 11:23:20','2023-10-08 22:23:20','',1283,'https://juiceelectrical.co.nz/wp-content/uploads/2023/10/home-charging-Banner.jpg',0,'attachment','image/jpeg',0),(1303,2,'2023-12-05 11:39:02','2023-12-04 22:39:02','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1313,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/12/festoon-lighting-2-1024x672.jpg\" alt=\"\" class=\"wp-image-1313\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1316,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/12/Dereko-2-1024x1024.jpg\" alt=\"\" class=\"wp-image-1316\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1319,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/12/wiz-1-edited.jpg\" alt=\"\" class=\"wp-image-1319\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong>Festoon Lighting</strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\">A stunning and cost-effective way to transform your backyard</h4>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>While admittedly Canterbury isn’t renowned for its balmy summer evenings, it is nice to be able to take advantage of your patio or deck at the tail end of a blustery Nor ‘west day and watch the kids running around while the adults kick back with their beverage of choice (once the wind has died down of course).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Living in a colder climate, a lot of Kiwis are guilty of neglecting their outdoor area, confining its upkeep to regular lawn mowing and the herculean task of oiling the deck once a year to keep the splinters at bay. While potted and climbing plants can help to soften bare exterior surfaces, it can take years to grow creepers such as wisteria and bougainvillea, and this is where a string of festoon bulbs comes into its own. Soft, gorgeous lighting that transforms a bland space while also being kind to your wallet? It’s a no-brainer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Retrospective lighting (lighting that is put in once your house is built) can be exorbitantly expensive to install, and is fixed in one place. Festoon lighting can be draped over balustrades, hung from fences, criss-crossed over an outdoor dining table for a more intimate, grown-up feel, or mixed in with existing greenery for an exotic, jungle-like ambience. The choice is yours. At Juice Electrical, Helen has sourced two of her favourite options just in time for the Christmas barbecue. The good news is, that you can keep using them long after the Christmas tree has been dismantled, as festoon lighting helps to keep your yard looking fantastic throughout the four seasons.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/heat-pumps/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Enquire about festoon lighting</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Transform with Festoon Lighting','','publish','closed','open','','festoon-lighting-a-stunning-and-cost-effective-way-to-transform-your-backyard','','','2023-12-12 10:40:06','2023-12-11 21:40:06','',0,'https://juiceelectrical.co.nz/?p=1303',0,'post','',0),(1313,2,'2023-12-07 14:17:02','2023-12-07 01:17:02','','festoon lighting 2','','inherit','','closed','','festoon-lighting-2','','','2023-12-07 14:17:02','2023-12-07 01:17:02','',1303,'https://juiceelectrical.co.nz/wp-content/uploads/2023/12/festoon-lighting-2.jpg',0,'attachment','image/jpeg',0),(1316,2,'2023-12-07 14:29:46','2023-12-07 01:29:46','','Dereko-2','','inherit','','closed','','dereko-2','','','2023-12-07 14:29:46','2023-12-07 01:29:46','',1303,'https://juiceelectrical.co.nz/wp-content/uploads/2023/12/Dereko-2.jpg',0,'attachment','image/jpeg',0),(1317,2,'2023-12-07 14:30:12','2023-12-07 01:30:12','','wiz-1','','inherit','','closed','','wiz-1','','','2023-12-07 14:30:12','2023-12-07 01:30:12','',1303,'https://juiceelectrical.co.nz/wp-content/uploads/2023/12/wiz-1.jpg',0,'attachment','image/jpeg',0),(1319,2,'2023-12-07 14:31:46','2023-12-07 01:31:46','','wiz-1','','inherit','','closed','','wiz-1-2','','','2023-12-07 14:31:46','2023-12-07 01:31:46','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2023/12/wiz-1-edited.jpg',0,'attachment','image/jpeg',0),(1324,2,'2024-01-11 09:55:13','2024-01-10 20:55:13','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1326,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/01/airconditioningsummersleep-1024x683.jpg\" alt=\"\" class=\"wp-image-1326\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong>Hot summer nights, we reckon they’re overrated</strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Too sweaty to sleep? One click of the button on your whisper-quiet Mitsubishi heat pump with wi-fi control and you’ll stay cool as a cucumber all night long.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The optimum temperature for a good night’s sleep is between 15.6 to 19.4 degrees Celsius, and as so many middle-aged women can attest, even that can feel too warm! Heat pumps will rapidly cool even the muggiest room, they’re cheap to run, ultrasafe - nothing to knock over and no hot surfaces –and they even filtrate the air while you sleep, leaving you bright-eyed and bushy-tailed after even the most humid summer night.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Don’t wait until winter, heat pumps are just as good at cooling rooms as they are at heating them, and Greg reckons that Mitsubishi products stand head and shoulders above their competitors for energy efficiency. All Mitsubishi pumps come with premium warranties and superior aesthetic appeal, with its Black Diamond Series - the George Clooney of heat pumps - winning several awards for its looks alone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/heat-pumps/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Get the Juice on Mitsubishi heat pumps</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1325,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/01/JuiceElectrical-January-FBPost2-1024x778.jpg\" alt=\"\" class=\"wp-image-1325\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>It\'s so hot out there, so why are we smiling?</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Ross and Yvonne Lamond had toyed with the idea of going solar for some time. Their Jones Rd property had two lines running in from the road, one to the house and one to the pump, and the costs were mounting up.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They were already running solar hot water, so naturally assumed it would be a simple process to go that step further and install solar panels for the entire house. The only problem? Every single electrical company that Yvonne contacted for a quote failed to even turn up, let alone make a start on the conversion!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The frustrated couple were almost ready to chuck in the towel when Yvonne came across Greg through her work at Selwyn Central Community Care, where he and Helen have been known to get behind the wheel of the community van on occasion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Already experienced in dealing with powerlines, Greg got to work immediately, combining the two cables into one in preparation for going solar. He then worked with Infinite Solar Energy, a Wanaka-based company, to make the transition to a hybrid system and Ross and Yvonne couldn’t be happier.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>“We’ve always made a point of using local tradesmen, and Greg just made it so simple. He turned up when he said he was going to, stuck to his quotes, and worked in really well with the solar guys. Juice were fantastic and just made the whole thing really easy for us. We would never use anyone else!”</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/solar-solutions/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Get the Juice on solar power</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>If your power bill is giving you heart palpitations and you’re thinking of converting to solar, it’s really important to do your homework. Being a relatively new and unregulated industry, there are a few cowboys out there, so shop around, and be prepared for your system to take up to 7 years to start paying its own way without batteries, and 15 years with batteries. (if anyone tells you your solar’s earnings will cover its costs in fewer than eight years, run rapidly in the other direction).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4,\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-primary\"}}}},\"textColor\":\"brand-primary\"} -->\n<h4 class=\"wp-block-heading has-brand-primary-color has-text-color has-link-color\"><strong>Roof and power usage appraisal</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>With advancements in technology, concerns about solar panels damaging roofs have significantly diminished, especially with lighter, modern panels. At Juice Electrical, we understand the importance of a thorough assessment before installation. That\'s why we offer a full appraisal of your roof\'s condition and your power usage. This professional assessment ensures that your solar panel system is not only efficient but also perfectly suited to your property\'s unique characteristics. Whether your roof is in pristine condition or has seen better days, our expert team is equipped to advise the best solar solutions for your needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4,\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-primary\"}}}},\"textColor\":\"brand-primary\"} -->\n<h4 class=\"wp-block-heading has-brand-primary-color has-text-color has-link-color\"><strong>Can I say goodbye to my power company and go off-grid altogether?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Batteries, while expensive, have come a long way and are becoming a good option for excess power storage. They are a good option for a new build that’s set back at a distance from the road, as the cost of running power lines into your home can be pretty hefty. Unfortunately, batteries don’t last forever, with a lifespan of between five and 15 years, so you will be looking at the cost of replacing them at least once, assuming you haven’t moved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4,\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-primary\"}}}},\"textColor\":\"brand-primary\"} -->\n<h4 class=\"wp-block-heading has-brand-primary-color has-text-color has-link-color\"><strong>Saving the planet, one panel at a time.</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Of course, there are plenty of upsides to solar, the most obvious of which is your reduced carbon footprint. A good solar system will increase the value of your property, and once it’s paid itself off, the satisfaction of having your power company pay <em>you</em> can’t be underestimated!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The buyback rate in New Zealand has increased from around 5c all the way up to 17c, now making solar a more attractive option. <a href=\"https://www.powerswitch.org.nz/solar-rates\" target=\"_blank\" rel=\"noreferrer noopener\">Powerswitch</a> is a great website that contains an up-to-date list of buyback rates in NZ.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Industry group Sustainable Electricity Association, or SEANZ, has a <a href=\"https://www.seanz.org.nz/optimiser\">solar optimiser tool</a> to help you get the most out of your solar system.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take the time to have a read and if you feel like solar might be worth investing in, give Greg at Juice Electrical a call today on <a href=\"tel:03 3796644\">03 3796644</a> or reach out to Nick Weaving from Infinite Energy at <a href=\"tel: 03 445 0572\">03 445 0572</a> / <a href=\"mailto:nick@infiniteenergy.co.nz\">nick@infiniteenergy.co.nz</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','It\'s so hot out there,so why are we smiling?','','publish','closed','open','','its-so-hot-out-thereso-why-are-we-smiling','','','2024-03-06 11:47:17','2024-03-05 22:47:17','',0,'https://juiceelectrical.co.nz/?p=1324',0,'post','',0),(1325,2,'2024-01-11 09:42:18','2024-01-10 20:42:18','','JuiceElectrical-January-FBPost2','','inherit','','closed','','juiceelectrical-january-fbpost2','','','2024-01-11 09:42:18','2024-01-10 20:42:18','',1324,'https://juiceelectrical.co.nz/wp-content/uploads/2024/01/JuiceElectrical-January-FBPost2.jpg',0,'attachment','image/jpeg',0),(1326,2,'2024-01-11 09:42:26','2024-01-10 20:42:26','','airconditioningsummersleep','','inherit','','closed','','airconditioningsummersleep','','','2024-01-11 09:42:26','2024-01-10 20:42:26','',1324,'https://juiceelectrical.co.nz/wp-content/uploads/2024/01/airconditioningsummersleep.jpg',0,'attachment','image/jpeg',0),(1328,2,'2024-01-11 09:54:46','2024-01-10 20:54:46','','InfiniteEnergySolar','','inherit','','closed','','infiniteenergysolar','','','2024-01-11 09:54:46','2024-01-10 20:54:46','',1324,'https://juiceelectrical.co.nz/wp-content/uploads/2024/01/InfiniteEnergySolar.jpg',0,'attachment','image/jpeg',0),(1334,2,'2024-01-31 12:14:15','2024-01-30 23:14:15','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1336,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/01/messy-charging-1024x642.png\" alt=\"\" class=\"wp-image-1336\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong>Charging your EV at home? Safety first.</strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Safety is an often-overlooked aspect of EV charging in New Zealand, with too many Kiwis guilty of using extension cords, double plugs and cheap adaptors manufactured overseas in order to charge their vehicles. Quite aside from the risk of electrocution, there is a chance of your home wiring sustaining damage from improper use of EV charging equipment; it’s just not worth the risk.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Wall-mounted charging units must be installed by a registered electrician, this is not the time to call your mate down the road who reckons he’s an expert in home wiring.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1335,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/01/electric-charger3-1024x682.jpg\" alt=\"\" class=\"wp-image-1335\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong>Future-proof your EV setup with a smart charger.</strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>The cheapest way to charge your EV is to do it at home during off-peak hours on a dedicated charging unit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Three-pin cables (which come with your EV as standard) are useful when you don’t have access to a charging station, but they are relatively slow, and they simply won’t cut the mustard with larger, more modern electric vehicles, as they can’t conduct the required amount of electricity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“Smart chargers,” while more expensive than a standard wall charging unit, are the gold standard in home chargers. These future-proofing wunderkinds are capable of reducing the charge going through your cable when electricity costs are at their highest, and increasing it again as the cost drops, and are well worth the higher price tag.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/ev-phev/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Get the Juice on EV/PHEV Home Charging</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1337,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/01/electric-charger2-1024x536.jpg\" alt=\"\" class=\"wp-image-1337\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong>Your battery’s Achilles heel: wear and tear</strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Your EV’s range will be reduced if the weather is cold (remember, heaters and demisters both contribute to battery drainage), if your tyre pressure is uneven, and if you are carrying heavy cargo (human or otherwise). So, it might pay to unload those bags of cement and potting mix from Mitre 10 sooner rather than later!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As with any lithium-ion battery, your wear and tear will increase exponentially by going from 100% charge down to nothing and back again on a regular basis, so be sure to try and keep your car charged within the golden 30 – 80% range for the majority of the time. Little and often is the ideal, although it won’t hurt to charge your vehicle to 100% every now and then, in preparation for longer journeys.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you aren’t planning to use your EV for a few months, make sure it is partially, not fully, charged. Leaving your battery fully charged while the vehicle is not in use will decrease its longevity, and conversely, if the charge is too low, you run the risk of it fully discharging, which can result in permanent damage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The best way to look after your battery? Don’t drive like a rally driver! Sharp acceleration and deceleration will drain your battery faster than you can say ‘Marcus Gronholm.’</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1085,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/electric_car_charging1.jpg\" alt=\"ev phev charger electrician christchurch\" class=\"wp-image-1085\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong>Bollards are the bomb.</strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Greg at Juice Electrical has recently partnered with a local supplier to install both residential and commercial charging stations in Canterbury, and he is really starting to make a name for himself with his driveway bollard stations that not only look the part but make charging your car an absolute breeze.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So, if you’re in the market for an EV, don’t rush out and buy something unsuitable on impulse, do your homework and call Greg at Juice Electrical on <a href=\"tel:03 3796644\">03 3796644</a> today.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','EV Charging Safety Tips for Kiwi Homes','','publish','closed','open','','ev-charging-safety-tips-for-kiwi-homes','','','2024-02-13 13:51:04','2024-02-13 00:51:04','',0,'https://juiceelectrical.co.nz/?p=1334',0,'post','',0),(1335,2,'2024-01-31 12:10:39','2024-01-30 23:10:39','','electric charger3','','inherit','','closed','','electric-charger3','','','2024-01-31 12:10:39','2024-01-30 23:10:39','',1334,'https://juiceelectrical.co.nz/wp-content/uploads/2024/01/electric-charger3.jpg',0,'attachment','image/jpeg',0),(1336,2,'2024-01-31 12:10:53','2024-01-30 23:10:53','','messy-charging','','inherit','','closed','','messy-charging','','','2024-01-31 12:10:53','2024-01-30 23:10:53','',1334,'https://juiceelectrical.co.nz/wp-content/uploads/2024/01/messy-charging.png',0,'attachment','image/png',0),(1337,2,'2024-01-31 12:10:56','2024-01-30 23:10:56','','electric charger2','','inherit','','closed','','electric-charger2','','','2024-01-31 12:10:56','2024-01-30 23:10:56','',1334,'https://juiceelectrical.co.nz/wp-content/uploads/2024/01/electric-charger2.jpg',0,'attachment','image/jpeg',0),(1338,2,'2024-01-31 12:13:34','2024-01-30 23:13:34','','man-charging-ev-home-desktop','','inherit','','closed','','man-charging-ev-home-desktop','','','2024-01-31 12:13:34','2024-01-30 23:13:34','',1334,'https://juiceelectrical.co.nz/wp-content/uploads/2024/01/man-charging-ev-home-desktop.jpg',0,'attachment','image/jpeg',0),(1345,2,'2024-03-05 16:09:25','2024-03-05 03:09:25','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1350,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/03/Infrared-Radiant-Heater-Juice-Electrical1-1.jpg\" alt=\"\" class=\"wp-image-1350\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Skeptical about radiant heaters? Think again!</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>If you’re a fan of daytime television then you’ll have seen the long-winded advertisements for radiant heaters, and quite understandably you’ll have taken them with a grain of salt, in the same way that you would the AB Circle Pro – BUT WAIT, THERE’S MORE!!!! No matter how tempting the Buy Now is, there’s a high chance your new purchase will go the same way as that under-desk exercise bike that is gathering dust in the garage because you and I both know you’ll never get around to actually installing the thing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1348,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/03/Infrared-Radiant-Heater-Juice-Electrical3-1024x768.jpg\" alt=\"\" class=\"wp-image-1348\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>The real deal on infrared heating</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>But wait! There really <em>is</em> more to infrared heating than most of us realise, and it’s all to do with the way it heats, and most importantly, <em>what </em>it heats. Conventional heating works by heating the surrounding air. This is great if you’re inside, but not so good in the great outdoors on a chilly Canterbury evening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Radiant heaters, on the other hand, emit infrared energy, which is absorbed by the objects that it hits (in this case, you, and your guests during your annual winter BBQ), causing the molecules that you’re made of to vibrate, which increases your body heat. This process, while it might sound alarming, is perfectly safe, it’s how the sun manages to heat the Earth from 149 million kilometres away, and it is the same technology that heats your infrared sauna.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1346,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/03/Infrared-Radiant-Heater-Juice-Electrical2-1024x683.jpg\" alt=\"\" class=\"wp-image-1346\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Silent, economical, and eco-friendly</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Infrared heating means that even on the coldest evenings, you and your friends can stay toasty warm, with the added bonus that radiant heaters are both economical to run, completely silent, and can be installed discreetly under an eave or beam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Super responsive, in that it doesn’t need to be turned on until you need it (and stops heating as soon as it is turned off), infrared heating is cheap, effective, and low in emissions. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ring Greg at Juice Electrical on <a href=\"tel:03 3796644\">03 3796644</a> or <a href=\"tel:0800 277 275\">0800 277 275</a> today, and get in early for the ultimate addition to your outdoor entertainment area this winter.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Unveiling the Benefits of Infrared Heating','','publish','closed','open','','unveiling-the-benefits-of-infrared-heating','','','2024-03-12 10:12:52','2024-03-11 21:12:52','',0,'https://juiceelectrical.co.nz/?p=1345',0,'post','',0),(1346,2,'2024-03-05 16:07:03','2024-03-05 03:07:03','','Infrared Radiant Heater - Juice Electrical2','','inherit','','closed','','infrared-radiant-heater-juice-electrical2','','','2024-03-05 16:07:03','2024-03-05 03:07:03','',1345,'https://juiceelectrical.co.nz/wp-content/uploads/2024/03/Infrared-Radiant-Heater-Juice-Electrical2.jpg',0,'attachment','image/jpeg',0),(1347,2,'2024-03-05 16:07:10','2024-03-05 03:07:10','','Infrared Radiant Heater - Juice Electrical1','','inherit','','closed','','infrared-radiant-heater-juice-electrical1','','','2024-03-05 16:07:10','2024-03-05 03:07:10','',1345,'https://juiceelectrical.co.nz/wp-content/uploads/2024/03/Infrared-Radiant-Heater-Juice-Electrical1.jpg',0,'attachment','image/jpeg',0),(1348,2,'2024-03-05 16:07:21','2024-03-05 03:07:21','','Infrared Radiant Heater - Juice Electrical3','','inherit','','closed','','infrared-radiant-heater-juice-electrical3','','','2024-03-05 16:07:21','2024-03-05 03:07:21','',1345,'https://juiceelectrical.co.nz/wp-content/uploads/2024/03/Infrared-Radiant-Heater-Juice-Electrical3.jpg',0,'attachment','image/jpeg',0),(1349,2,'2024-03-05 16:07:29','2024-03-05 03:07:29','','Infrared Radiant Heater - Juice Electrical4','','inherit','','closed','','infrared-radiant-heater-juice-electrical4','','','2024-03-05 16:07:29','2024-03-05 03:07:29','',1345,'https://juiceelectrical.co.nz/wp-content/uploads/2024/03/Infrared-Radiant-Heater-Juice-Electrical4.jpg',0,'attachment','image/jpeg',0),(1350,2,'2024-03-05 16:07:38','2024-03-05 03:07:38','','Infrared Radiant Heater - Juice Electrical1','','inherit','','closed','','infrared-radiant-heater-juice-electrical1-2','','','2024-03-05 16:07:38','2024-03-05 03:07:38','',1345,'https://juiceelectrical.co.nz/wp-content/uploads/2024/03/Infrared-Radiant-Heater-Juice-Electrical1-1.jpg',0,'attachment','image/jpeg',0),(1357,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1357','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1357',12,'nav_menu_item','',0),(1358,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1358','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1358',8,'nav_menu_item','',0),(1359,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1359','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1359',13,'nav_menu_item','',0),(1360,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1360','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1360',7,'nav_menu_item','',0),(1361,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1361','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1361',15,'nav_menu_item','',0),(1362,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1362','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1362',6,'nav_menu_item','',0),(1363,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1363','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1363',9,'nav_menu_item','',0),(1364,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1364','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1364',10,'nav_menu_item','',0),(1365,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1365','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1365',11,'nav_menu_item','',0),(1366,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1366','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1366',14,'nav_menu_item','',0),(1367,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1367','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1367',5,'nav_menu_item','',0),(1368,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1368','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1368',17,'nav_menu_item','',0),(1369,2,'2024-11-14 09:27:22','2024-03-11 00:29:22',' ','','','publish','closed','closed','','1369','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1369',2,'nav_menu_item','',0),(1370,2,'2024-11-14 09:27:22','2024-03-11 00:29:55',' ','','','publish','closed','closed','','1370','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/?p=1370',16,'nav_menu_item','',0),(1372,2,'2024-03-28 16:48:39','2024-03-28 03:48:39','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":1373,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/03/LED-Light-Installation-Juice-Electrical.jpg\" alt=\"\" class=\"wp-image-1373\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph -->\n<p>LED lights were actually developed way back in 1927, but weren’t commercially available for residential use until 2002. Since then, they have increasingly taken the place of traditional halogen and fluorescent fittings as more and more businesses and homeowners become aware of their efficiency.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Working by passing an electrical current through a microchip, LED lights are up to 90% more efficient than traditional fittings, with only 5% of their energy released as heat.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>While the upfront cost of LED fittings used to be significant, prices have come down significantly over the last decade.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Obviously, these sorts of energy savings are great for the environment as well as your energy bill. According to Gen Less, a government website that focuses on sustainability issues, if every New Zealand household installed LED lighting, we’d be looking at an 82,000 tonne reduction in greenhouse gases <em>every single year</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To further bolster their eco credentials, LED downlights can also be covered with insulation, unlike their halogen predecessors which had to be kept clear of flammable materials in the interests of safety.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Some people can find the brightness of LED fittings unpleasant, especially if they’ve grown up in older homes with poor lighting, so if you’re wanting to run a dimmer with your LED lights, just ask to add a dimmer. Talk to Greg on <a href=\"tel:021227 7275\">021227 7275</a> today and get the juice on which LED lights will best suit your needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','What’s so special about LED lights anyway?','','publish','closed','open','','whats-so-special-about-led-lights-anyway','','','2024-04-04 10:35:41','2024-04-03 21:35:41','',0,'https://juiceelectrical.co.nz/?p=1372',0,'post','',0),(1373,2,'2024-03-28 16:48:06','2024-03-28 03:48:06','','LED-Light-Installation-Juice-Electrical','','inherit','','closed','','led-light-installation-juice-electrical','','','2024-03-28 16:48:06','2024-03-28 03:48:06','',1372,'https://juiceelectrical.co.nz/wp-content/uploads/2024/03/LED-Light-Installation-Juice-Electrical.jpg',0,'attachment','image/jpeg',0),(1375,2,'2024-03-28 16:48:51','2024-03-28 03:48:51','','LED Banner','','inherit','','closed','','led-banner','','','2024-03-28 16:48:51','2024-03-28 03:48:51','',1372,'https://juiceelectrical.co.nz/wp-content/uploads/2024/03/LED-Banner.png',0,'attachment','image/png',0),(1377,2,'2024-03-28 16:51:11','2024-03-28 03:51:11','','Led banner + installation juice electrical','','inherit','','closed','','led-banner-installation-juice-electrical','','','2024-03-28 16:51:11','2024-03-28 03:51:11','',1372,'https://juiceelectrical.co.nz/wp-content/uploads/2024/03/Led-banner-installation-juice-electrical.jpg',0,'attachment','image/jpeg',0),(1381,2,'2024-04-04 13:49:08','2024-04-04 00:49:08','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"metadata\":{\"name\":\"\"},\"className\":\"px-1\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center px-1\" style=\"font-style:normal;font-weight:300\">Juice Electrical – Your Local Electricians in Rolleston</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph -->\n<p>If you’re looking for quality master electricians in Rolleston who can get the job done in no time, then you’ve come to the right place!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice is known and trusted in Rolleston for the top-notch quality and service we provide. When it comes to electrical work carried out by friendly locals, no one does it better than Juice.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:media-text {\"align\":\"full\",\"mediaId\":1066,\"mediaLink\":\"https://juiceelectrical.co.nz/industrial/vans-aug-2022/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"focalPoint\":{\"x\":0.44,\"y\":0.63},\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Vans-Aug-2022-1024x575.jpg);background-position:44% 63%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Vans-Aug-2022-1024x575.jpg\" alt=\"local electrician christchurch\" class=\"wp-image-1066 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Proud to be serving the Rolleston Community for 19 years now, and remember no job is too big or too small!</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"grey-darkest\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-grey-darkest-color has-text-color wp-element-button\" href=\"/services/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">Get the juice about our Services ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Your Neighbourhood Power People</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Get in touch ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>We’re a team of down-to-earth, highly experienced and registered master electricians you can rely on. We offer a variety of commercial and residential electrical installations, repairs, and servicing in Rolleston – from wiring new home builds, to installing heat pumps, to setting up new office networks, and a whole lot more. No matter what you need, we’ll get the job done right the first time, at the best value for your money. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We’re Rolleston locals, and family people, so we want to do right by our neighbours – we show up quickly, on time, and don’t leave until you’re smiling. We pride ourselves on being family-oriented, dependable, and sincere.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Rolleston’s Electrical Solution</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So, if you want trustworthy Rolleston electricians who will show up at your front door on time, won’t try to upsell you on things you don’t need, and won’t hit you with nasty surprises when it’s time to pay the bill – that’s exactly what we offer and deliver. Cost-effective and efficient electrical solutions delivered with a smile.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">We can service, install or replace:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Garden Lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Bathroom & Kitchen Re-Fits</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Heat Pump Installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>General Renovations</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Internet & Networking</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Wall-Mounted TVs & TV Aerials </li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Spa Pool Installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Electrical Safety Certificates</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>New Builds</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Office Re-Fits and more – call us</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We’re the commercial and residential electricians in Rolleston who make sure your home or business remains a safe, secure, and comfortable environment for you and the people you care about – so you can stop stressing and get your mind back to what matters.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">High-Quality Rolleston Electrical Services</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We provide a wide range of services for our local customers in Rolleston including residential, industrial and commercial electrical jobs. Need a new air conditioning unit fitted? Perhaps you need some electrical repairs made around your home or office? Need help with renovations?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whatever you need, our experienced electrical contractors at Juice Electrical are here to help.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Experienced Electricians in Rolleston</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All of our customers have different electrical needs, but no matter what the task, we always provide a friendly service, quality workmanship and a fair price. Our team is made up of some of the best electricians in New Zealand, and we always go above and beyond. Whatever you need help with, just call our phone number today.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Talk to Greg on <a href=\"tel:021227 7275\">021227 7275</a> today and get the juice on which services will best suit your needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Rolleston','','publish','closed','closed','','rolleston','','','2024-08-19 12:31:54','2024-08-19 00:31:54','',0,'https://juiceelectrical.co.nz/?page_id=1381',0,'page','',0),(1382,2,'2024-04-04 13:51:28','2024-04-04 00:51:28','<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto px-3\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto px-3\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Juice Electrical – Your Local Electricians in Christchurch</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph -->\n<p>If you’re looking for quality master electricians who work all over Christchurch and get things done quickly, then you’ve come to the right place!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice is known and trusted all over Christchurch for our excellent quality and service. For electrical jobs done by friendly local people, no one does it better than Juice.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:media-text {\"align\":\"full\",\"mediaId\":1152,\"mediaLink\":\"https://juiceelectrical.co.nz/about-us/juice-electrical-2nd-attempt-007/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"focalPoint\":{\"x\":0.64,\"y\":0.29},\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://juiceelectrical.co.nz/wp-content/uploads/2023/03/juice-electrical-2nd-attempt-007-1024x683.jpg);background-position:64% 29%\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/juice-electrical-2nd-attempt-007-1024x683.jpg\" alt=\"Juice Electrical Van and Greg\" class=\"wp-image-1152 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\"><strong><em>‘</em></strong><em>We show up quickly, on time, and don’t leave until you’re smiling.’</em><br>-Greg Horton</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"grey-darkest\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-grey-darkest-color has-text-color wp-element-button\" href=\"/services/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">Get the juice about our Services ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Your City-Wide Power People</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Get in touch ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Our team is made up of friendly, down-to-earth, skilled, and registered master electricians that you can rely on. We provide a broad range of electrical services for both commercial and residential needs throughout Christchurch, including new build wiring, heat pump installations, and office network setups, among others. We guarantee top-notch work from the get-go, offering you good value for your money.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We\'re Christchurch locals, and family people, so we want to do right by the people of our city - we show up quickly, on time, and don\'t leave until you\'re smiling. We take pride in being reliable, honest, family-oriented and down-to-earth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We service clients in Halswell, Rolleston, Lincoln, Tai Tapu, Prebbleton, and all over Christchurch.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Christchurch’s Electrical Solution</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So, if you need reliable electricians from Christchurch who\'ll turn up when they say they will, won\'t push you to buy stuff you don\'t want, and won\'t shock you with a big bill at the end – that\'s just what we do. We provide good, affordable electrical help with a smile.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">We can service, install or replace:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Garden Lighting</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Bathroom & Kitchen Re-Fits</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Heat Pump Installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>General Renovations</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Internet & Networking</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Wall-mounted TVs & TV Aerials </li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Spa Pool Installation</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Electrical Safety Certificates</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>New Builds</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Office Re-Fits and more – call us</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We’re the commercial and residential electricians in Christchurch who ensure your place stays safe, secure, and comfy for you and your loved ones – so you can relax and focus on what\'s important. Talk to Greg on <a href=\"tel:021227 7275\">021227 7275</a> today and get the juice on which services will best suit your needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Christchurch','','publish','closed','closed','','christchurch','','','2024-08-19 12:29:38','2024-08-19 00:29:38','',0,'https://juiceelectrical.co.nz/?page_id=1382',0,'page','',0),(1383,2,'2024-11-14 09:27:22','2024-04-04 00:49:08',' ','','','publish','closed','closed','','1383','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/blog/1383/',4,'nav_menu_item','',0),(1387,2,'2024-11-14 09:27:22','2024-04-04 00:51:28',' ','','','publish','closed','closed','','1387','','','2024-11-14 09:27:22','2024-11-13 20:27:22','',0,'https://juiceelectrical.co.nz/blog/1387/',3,'nav_menu_item','',0),(1411,2,'2024-06-04 16:58:49','2024-06-04 04:58:49','<!-- wp:paragraph -->\n<p>Every rental property in New Zealand will be required to comply with Healthy Homes standards by 2025. For the nitty gritty of this government directive it might pay to go to the <a href=\"https://www.hud.govt.nz/our-work/healthy-homes-standards\">Ministry of Housing and Urban Development website</a> but in a nutshell, if you own a rental house you will be required to keep your tenants warm, dry, and draught free – and yes, this even applies to student flats in Castle Street.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Healthy Home standards are as follows:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Heating:</strong> every living area must be provided with one or more fixed heaters, which can consist of a heat pump, log burner, flued gas heater, or if the room is very small, a fixed electric heater.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Insulation: </strong> Ceiling and underfloor insulation must be installed if physically possible. Apart from this, insulation requirements will vary depending on which area of the country you live in, but as a rule, insulation that has been installed since 2016 should be up to code.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Ventilation:</strong> your living room, kitchen, dining room, and bedrooms must have windows to the outside that can be opened. Kitchens and bathrooms are also required to have extraction fans.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Moisture ingress and drainage:</strong> the drainage on your property should allow for the removal of stormwater, groundwater and surface water.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Draughts:</strong> there must be no significant gaps or holes in ceilings, walls, skylights, doors, floors or windows and all unused fireplaces should be closed off. Presumably, this is a non-issue in Christchurch as the majority of fireplaces had to be de-bricked after the earthquakes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Landlords who haven’t managed to comply with the healthy homes standards by 2025 can be fined up to $7,200.00 under the Residential Tenancies Act 1986, so if you haven’t started getting your property up to scratch, you’re running out of time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Over the last four years the team at Juice Electrical have been busy installing a NZ-made and manufactured ventilation system, the Smooth-Air Dry-Matic into a number of Canterbury rental properties, and it’s proven to be a cost-effective and efficient way to reduce condensation in both old and new houses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By taking warmed air out of the ceiling cavity, filtering it, then pumping it back into the house, this powerful but whisper-quiet system significantly reduces your tenants’ heating bills while keeping homes warm and dry. If your rental isn’t up to scratch and you’re wondering where to start, call Greg on <a href=\"tel:0800277275\">0800 277 275</a> or email <a href=\"mailto:helen@juiceelectrical.co.nz\">helen@juiceelectrical.co.nz</a> today and get the ball rolling. Remember, 2025 is only 30 weeks away!</p>\n<!-- /wp:paragraph -->','A Guide to Meeting New Zealand\'s Healthy Homes Standards by 2025','','publish','closed','open','','a-guide-to-meeting-new-zealands-healthy-homes-standards-by-2025','','','2024-06-07 13:25:29','2024-06-07 01:25:29','',0,'https://juiceelectrical.co.nz/?p=1411',0,'post','',0),(1413,2,'2024-06-04 16:55:42','2024-06-04 04:55:42','','HealthyHomesBanner','','inherit','closed','closed','','healthyhomesbanner','','','2024-06-04 16:56:09','2024-06-04 04:56:09','',1411,'https://juiceelectrical.co.nz/wp-content/uploads/2024/06/HealthyHomesBanner.jpg',0,'attachment','image/jpeg',0),(1414,2,'2024-06-04 16:58:35','2024-06-04 04:58:35','','AdobeStock_547749466','','inherit','','closed','','adobestock_547749466','','','2024-06-04 16:58:35','2024-06-04 04:58:35','',1411,'https://juiceelectrical.co.nz/wp-content/uploads/2024/06/AdobeStock_547749466.jpeg',0,'attachment','image/jpeg',0),(1415,2,'2024-06-04 16:59:18','2024-06-04 04:59:18','','condensation','','inherit','','closed','','condensation','','','2024-06-04 16:59:18','2024-06-04 04:59:18','',1411,'https://juiceelectrical.co.nz/wp-content/uploads/2024/06/condensation.jpg',0,'attachment','image/jpeg',0),(1420,2,'2024-07-04 10:17:47','2024-07-03 22:17:47','<!-- wp:paragraph -->\n<p>The perfect lighting plan for your office is first and foremost one that makes your employees feel comfortable and allows them to work to the best of their ability. After all, some of us are spending over a third of our lives in the office, with every daylight hour spent inside over the winter months.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ideally, you want your staff to be exposed to as much natural light as possible. Quite apart from that, it is a free source of energy, the sun’s rays have proven beneficial effects on our mental health, so large windows should form the foundation of your lighting plan (whether the sun actually shines or not is in the hands of Mother Nature).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1053,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/office-lighting-10.48.07-am.jpg\" alt=\"office electrician christchurch\" class=\"wp-image-1053\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Integrating LEDs and Smart Lighting for Modern Workspaces</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>The next best alternative to the sun is green lighting in the form of LEDs, preferably with a Unified Glare Rating of between 16 and 19, in order to reduce glare without skimping on illumination. With a lifespan of around 50,000 hours, LED lighting is up to 85% more efficient than traditional bulbs, and the savings can really stack up when taking into account the number of fixtures throughout the average office space.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The types of lighting that could be included in your offices are many and varied, but ideally, your staff should be able to adjust the light levels to suit, which means incorporating desk lamps and dimmer switches into your lighting plan. Modern smart lighting, which allows users to adjust light ‘temperature’ (warm or cool) and brightness with the touch of a button, is a no-brainer for the modern workplace and is surprisingly inexpensive.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1422,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/07/light-colour-temps-1024x719.jpg\" alt=\"\" class=\"wp-image-1422\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong><strong>Lighting That Adapts to Your Needs</strong></strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>‘Warm’ lighting is, as its name suggests, soothing and ambient, and is a great option for break rooms, bathrooms, and reception areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>‘Cool’ lighting, which is crisp and bright, should be confined to workspaces, and anywhere visual focus is required e.g. computer stations and printer rooms. Cooler lighting has been scientifically proven to encourage mental alertness and thus is ideal for boardrooms or any area where brainstorming is required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1421,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/07/Juice-Electrical-Greg-1024x455.jpg\" alt=\"\" class=\"wp-image-1421\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Consulting with an Expert</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>From pendant lights over the board table to floor lamps beside desks and recessed lighting in the hallways, your office lighting plan is limited only by your imagination. With years of experience in lighting design, Greg from Juice Electrical has garnered himself a bit of a reputation in the commercial construction world. Always happy to accommodate your ideas, Greg can help you brainstorm the best solution for <em>your</em> office space, whether you are retrofitting an existing building or starting from scratch. Ring Greg at Juice Electrical on <a href=\"tel:03 3796644\">03 3796644</a> or <a href=\"tel:0800 277 275\">0800 277 275</a> today, or email <a href=\"mailto:greg@juiceelectrical.co.nz\">greg@juiceelectrical.co.nz</a> and start working on your lighting plan today, your staff, and your clients, will thank you for it.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Crafting the Perfect Office Lighting Plan','','publish','closed','open','','crafting-the-perfect-office-lighting-plan','','','2024-07-12 15:30:34','2024-07-12 03:30:34','',0,'https://juiceelectrical.co.nz/?p=1420',0,'post','',0),(1421,2,'2024-07-04 10:07:16','2024-07-03 22:07:16','','Juice-Electrical-Greg','','inherit','','closed','','juice-electrical-greg','','','2024-07-04 10:07:16','2024-07-03 22:07:16','',1420,'https://juiceelectrical.co.nz/wp-content/uploads/2024/07/Juice-Electrical-Greg.jpg',0,'attachment','image/jpeg',0),(1422,2,'2024-07-04 10:16:57','2024-07-03 22:16:57','','light-colour-temps','','inherit','','closed','','light-colour-temps','','','2024-07-04 10:16:57','2024-07-03 22:16:57','',1420,'https://juiceelectrical.co.nz/wp-content/uploads/2024/07/light-colour-temps.jpg',0,'attachment','image/jpeg',0),(1428,2,'2024-08-07 13:43:50','2024-08-07 01:43:50','<!-- wp:paragraph -->\n<p>These days, lighting isn’t just about enabling us to see in the dark. A well-thought out lighting plan that takes into account the colour, shape, and function of each room can transform even the simplest of homes in Christchurch or Rolleston into something truly special.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a truly enormous array of lighting fixtures available in comparison to a decade ago, from recessed lights, pendants, and strip lighting, through to track lighting and task lighting, and it’s well worth taking some time to think about exactly what you want out of a particular space before your renovations begin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1431,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/08/retrospective-installation.jpeg\" alt=\"\" class=\"wp-image-1431\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Don’t get left in the dark.</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>IWhen remodelling your Christchurch or Rolleston home, it’s also important to think about where your light switches will go. There’s nothing worse than scrabbling around in the dark because the switch isn’t where you’re expecting it to be. Your new kitchen and bathroom in particular will ideally feature several different light fixtures, so you’ll need to decide as to which lights you’ll want switched on first. Proper planning ensures a smooth and functional lighting setup that works for every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dimmers and timers are pretty ubiquitous these days, so it’s important to ensure if you’re using LED lights that they have dimmer capabilities because not all of them do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Timer switches are really useful on the power-saving front and are definitely worth installing on things like heated towel rails and any appliances that feature a standby mode, and you can save a surprising amount of power by installing a timer on all of your lights, especially if you have teenagers who haven’t been house trained properly and like to leave a trail of well-lit rooms in their wake wherever they go.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1429,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/08/retrospective-installation.png\" alt=\"\" class=\"wp-image-1429\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong><strong>White light for cooking. Warm light for eating.</strong></strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There are essentially four types of lighting for you to choose from when considering your lighting plan: decorative, task, accent and ambient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The type of lights you use can have a significant effect on the ‘feel’ of a room. Focused task lighting for instance, while perfect for your office, is too severe for a bedroom or living area. Kitchens ideally need a mix of bright task lighting and softer, warmer lights, the first for cooking, and the second for instilling a more relaxing ambience while you and your family are gathered around the table for dinner.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Accent lighting, such as track lighting or recessed lighting, is perfect for highlighting a particular architectural feature, piece of furniture, or artwork in your home, because why not? There’s no point spending thousands of dollars on nice things if nobody notices them, and everything looks better when it’s properly lit, just ask any movie star!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decorative lighting includes fixtures such as chandeliers and pendants, and there are a myriad of designs to choose from, so be prepared to spend some time in your local lighting shops. Pendant lights in particular, have gone so far beyond being purely functional they could almost be considered works of art. We’ve come a long way from the single bulb plonked in the the middle of the ceiling baby!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1430,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/08/Juice-Electrical-1024x682.jpg\" alt=\"\" class=\"wp-image-1430\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Greg and the team at Juice Electrical have been providing quality electrical work for residential properties in Christchurch, Rolleston, and the wider Canterbury region for almost two decades. Home renovations are our bread and butter, so if you’re about to embark on a remodeling project and you need some help with your lighting plan, why not give Greg a call at <a href=\"tel:0800 277 275\">0800 277 275</a>, or email <a href=\"mailto:helen@juiceelectrical.co.nz\">helen@juiceelectrical.co.nz</a> today. Whether you’re in Christchurch or Rolleston, they’ve got you covered.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-primary\"}}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color has-link-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Get the Juice on the best way to light up a room','','publish','closed','open','','get-the-juice-on-the-best-way-to-light-up-a-room','','','2024-10-01 09:26:28','2024-09-30 20:26:28','',0,'https://juiceelectrical.co.nz/?p=1428',0,'post','',0),(1429,2,'2024-08-07 13:31:08','2024-08-07 01:31:08','','retrospective installation','','inherit','','closed','','retrospective-installation','','','2024-08-07 13:31:08','2024-08-07 01:31:08','',1428,'https://juiceelectrical.co.nz/wp-content/uploads/2024/08/retrospective-installation.png',0,'attachment','image/png',0),(1430,2,'2024-08-07 13:41:39','2024-08-07 01:41:39','','Juice Electrical','','inherit','','closed','','juice-electrical','','','2024-08-07 13:41:39','2024-08-07 01:41:39','',1428,'https://juiceelectrical.co.nz/wp-content/uploads/2024/08/Juice-Electrical.jpg',0,'attachment','image/jpeg',0),(1431,2,'2024-08-07 13:42:57','2024-08-07 01:42:57','','retrospective installation','','inherit','','closed','','retrospective-installation-2','','','2024-08-07 13:42:57','2024-08-07 01:42:57','',1428,'https://juiceelectrical.co.nz/wp-content/uploads/2024/08/retrospective-installation.jpeg',0,'attachment','image/jpeg',0),(1462,2,'2024-09-10 14:59:12','2024-09-10 02:59:12','<!-- wp:paragraph -->\n<p>As energy costs rise and sustainability becomes increasingly important, many Kiwi homeowners are looking closely at the option of home battery storage systems. These systems store energy from your solar panels or the grid for later use, reducing your reliance on traditional energy sources and ideally, slashing that monthly power bill. A home battery system is not necessarily going to be a cure-all for your electricity woes however, it’s very much dependent on the needs of your household, so let’s take a closer look at the pros and cons:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-primary\"}}}},\"textColor\":\"brand-primary\"} -->\n<h2 class=\"wp-block-heading has-brand-primary-color has-text-color has-link-color\">Pros</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Peak Shaving</strong> - By storing excess energy generated by solar panels or from the grid during off-peak hours, you can rely less on your utility company and avoid higher energy costs during peak times. Christchurch and Rolleston residents can benefit significantly from this, as it helps manage local power costs more effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Peak shaving is a strategic way to save money on your electricity bills. It works by taking advantage of the difference in electricity costs during peak and off-peak hours. During off-peak hours, when electricity demand is low, and rates are cheaper, you can charge a home battery system with electricity from the grid. This is especially useful in areas like Christchurch and Rolleston where energy prices fluctuate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alternatively, you can schedule to discharge your battery system during peak hours when the export buy back rate is higher. Companies such as Ecotricity are now offering a 51cent per KWH buy back rate for exported Solar during peak times. Lincoln Flexibility Project (<a href=\"https://get.ecotricity.nz/lincolnflex-page?__hstc=39677436.32816c910228ede9743c80c84eb2ef4b.1725918157125.1725918157125.1725918157125.1&__hssc=39677436.2.1725918157126&__hsfp=2341118226\" target=\"_blank\" rel=\"noreferrer noopener\">ecotricity.co.nz</a>).</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Cost savings over time</strong> - By using stored energy during peak hours when electricity rates are higher, you can reduce your overall energy costs. While the initial investment in a battery storage system can be high, it often pays off in the long run. Some studies suggest savings of 10-20% on your energy bill, depending on your usage patterns and energy rates.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Emergency backup power</strong> - Home battery systems can provide backup power during outages. This feature is especially valuable in areas prone to frequent power disruptions or for those who rely on medical equipment that requires a constant power supply.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Environmental benefits</strong> – when used in conjunction with solar panels, home battery systems can help reduce your carbon footprint. This contributes to a more sustainable lifestyle and supports the transition to renewable energy sources. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Increased property value</strong> - Homes equipped with the latest energy storage systems may have a higher market value, as a new generation of eco-savvy buyers seek out homes that come equipped with these kinds of features.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:image {\"id\":1465,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/09/man-with-white-helmet-near-solar-panel-scaled.jpg\" alt=\"\" class=\"wp-image-1465\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-primary\"}}}},\"textColor\":\"brand-primary\"} -->\n<h2 class=\"wp-block-heading has-brand-primary-color has-text-color has-link-color\">Cons</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>A high initial cost</strong> - The upfront cost of purchasing and installing a home battery system can be significant, ranging anywhere from $5,000 to $15,000 depending on the size and type of system you require. For Christchurch and Rolleston homeowners, it\'s important to weigh this cost against long-term savings.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Maintenance and lifespan</strong> – your batteries do require maintenance and have a finite lifespan, typically ranging from 5 to 15 years. Over time, their efficiency can decrease, but the good news is, the batteries we use here at Juice Electrical, in partnership with Infinite Energy, have a guaranteed minimum lifespan of ten years.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:heading {\"level\":3,\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-primary\"}}}},\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-brand-primary-color has-text-color has-link-color\">What sort of household will get the most benefit from battery storage?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Solar Panels</strong> - If you already have solar panels, a battery system allows you to store excess energy and use it when the sun isn’t shining.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>High Energy Bills</strong> - Households with high energy consumption can benefit the most from the cost-saving potential of battery storage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Frequent Power Outages</strong> - For those in more rural areas around Rolleston, or in Christchurch suburbs that experience frequent power outages, a battery system provides reliable backup power.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Conversely, if you have low energy usage, minimal peak-hour consumption, or live in an area with low solar potential, the benefits of a battery storage system may not outweigh the costs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>We understand there’s a lot to consider, so we encourage Christchurch and Rolleston residents to get in touch with the team at Juice Electrical today about whether an energy storage system is the right solution for you and your family. Greg has been working with home energy storage technology from the very beginning, and he really does know his stuff. He will also be honest with you if he thinks that the costs will outweigh the benefits, so email at <a href=\"mailto:greg@juiceelectrical.co.nz\">greg@juiceelectrical.co.nz</a> and get the juice on a home battery system today.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\">Get in Touch</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','Home battery storage: is it the best option for your household?','','publish','closed','open','','home-battery-storage-is-it-the-best-option-for-your-household','','','2024-10-01 09:21:15','2024-09-30 20:21:15','',0,'https://juiceelectrical.co.nz/?p=1462',0,'post','',0),(1464,2,'2024-09-05 15:14:56','2024-09-05 03:14:56','','Juice Electrical - Solar panel battery','','inherit','closed','closed','','juice-electrical-solar-panel-battery','','','2024-09-05 15:15:08','2024-09-05 03:15:08','',1462,'https://juiceelectrical.co.nz/wp-content/uploads/2024/09/Juice-Electrical-Solar-panel-battery.jpg',0,'attachment','image/jpeg',0),(1465,2,'2024-09-05 15:22:08','2024-09-05 03:22:08','','Juice Electrical - Solar Panel','','inherit','closed','closed','','man-with-white-helmet-near-solar-panel','','','2024-09-05 15:22:55','2024-09-05 03:22:55','',1462,'https://juiceelectrical.co.nz/wp-content/uploads/2024/09/man-with-white-helmet-near-solar-panel.jpg',0,'attachment','image/jpeg',0),(1466,2,'2024-09-05 15:23:31','2024-09-05 03:23:31','','Juice Electrical - Solar Panel','','inherit','','closed','','juice-electrical-solar-panel','','','2024-09-05 15:23:31','2024-09-05 03:23:31','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2024/09/man-with-white-helmet-near-solar-panel-edited.jpg',0,'attachment','image/jpeg',0),(1485,2,'2024-10-07 08:59:08','2024-10-06 19:59:08','<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>Electrical work in home renovations can be surprisingly complex, so when you’re looking for a sparkie for your rebuild you’ll need someone who demonstrates adaptability, creativity, and problem-solving skills.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Outdated wiring means that many older homes may not meet current safety codes, and will be unable to cope with modern electrical demands. Your electrician should carefully assess the existing wiring to determine whether it can accommodate new loads, such as additional outlets or modern appliances, and most electricians now recommend adding a second circuit to kitchens due to the number of appliances that will be running at one time. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"25px\"} -->\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-secondary\"}}}},\"textColor\":\"brand-secondary\"} -->\n<h2 class=\"wp-block-heading has-brand-secondary-color has-text-color has-link-color\">Don’t want holes in your walls?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"25px\"} -->\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>It can be tricky for electricians to navigate the existing layout in older homes, and having to work within the confines of established walls, floors, and ceilings sometimes limits the placement of new fixtures and outlets. Electricians who are experienced in renovation work have, through trial and error, learned to think creatively in order to find suitable solutions without compromising the overall design of the space, and they really can be worth their weight in gold, especially if your home was built prior to 1970.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1491,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1-scaled.jpg\" alt=\"\" class=\"wp-image-1491\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hidden infrastructure can also throw up some curly problems during renovations, and your electrician may encounter unexpected obstacles such as plumbing, ductwork, or structural beams that weren’t obvious from the beginning. Your sparkie may need to adjust his or her plans on the fly more than once in order to prevent your costs escalating, and this requires skill, experience, and the ability to innovate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Upgrading the wiring in an old home can necessitate some fairly invasive work such as opening walls, which can potentially damage your paintwork, so it pays to use experienced renovation specialists who have learned a thing or two about getting new wiring through old walls with the minimum amount of disruption!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Adherence to building codes and regulations can also be complex in renovations, and electricians need to ensure that their work complies with current standards, which may differ considerably from those that were in place when the home was originally built. This means that they are not only responsible for upgrading electrical systems but must also ensure that any modifications meet safety standards, which can be a time-consuming process requiring additional inspections.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lastly, an experienced renovation electrician will also know how to balance functionality with style, ensuring that new installations harmonise with the existing décor. This may involve the use of unique fixtures and the ability to conceal wiring in creative ways while ensuring that the system remains safe and efficient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"25px\"} -->\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-secondary\"}}}},\"textColor\":\"brand-secondary\"} -->\n<h2 class=\"wp-block-heading has-brand-secondary-color has-text-color has-link-color\">Communication is key.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"25px\"} -->\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Communication between all parties is absolutely crucial during the renovation process. Your electrician needs to be able to work closely with other tradies such as plumbers and carpenters, and they need to keep you, the homeowner, involved at every stage of the process. Clear dialogue helps ensure that everyone is on the same page, and reduces the risk of potentially expensive problems further down the line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let’s face it, it’s a whole lot easier to to run wires through walls <em>before</em> the gib goes up, but for the team at Juice Electrical new builds aren’t really our thing. If you’re thinking of renovating your home and you’re looking for Master Electricians who have been there done that, give Greg a call today on <a href=\"tel:033796644\">03 379 6644</a>. After all, renovations are what we do.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Do I need an electrical renovation specialist for my rebuild?','','publish','closed','open','','do-i-need-an-electrical-renovation-specialist-for-my-rebuild','','','2024-10-07 08:59:11','2024-10-06 19:59:11','',0,'https://juiceelectrical.co.nz/?p=1485',0,'post','',0),(1488,2,'2024-10-01 15:31:17','2024-10-01 02:31:17','','close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair','','inherit','','closed','','close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair','','','2024-10-01 15:31:17','2024-10-01 02:31:17','',1485,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair.jpg',0,'attachment','image/jpeg',0),(1489,2,'2024-10-01 15:31:54','2024-10-01 02:31:54','','close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair','','inherit','','closed','','close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-2','','','2024-10-01 15:31:54','2024-10-01 02:31:54','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited.jpg',0,'attachment','image/jpeg',0),(1491,2,'2024-10-01 15:32:37','2024-10-01 02:32:37','','close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair','','inherit','','closed','','close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-3','','','2024-10-01 15:32:37','2024-10-01 02:32:37','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/close-up-hands-caucasian-man-electrician-holding-screwdriver-working-plug-electric-residential-electric-system-installing-socket-wall-home-repair-edited-1.jpg',0,'attachment','image/jpeg',0),(1493,2,'2024-10-01 15:34:44','2024-10-01 02:34:44','','Installation of sockets in a new apartment','Male hands repair the socket','inherit','','closed','','installation-of-sockets-in-a-new-apartment','','','2024-10-01 15:34:44','2024-10-01 02:34:44','',1485,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/house-rewiring.jpg',0,'attachment','image/jpeg',0),(1494,2,'2024-10-01 15:39:47','2024-10-01 02:39:47','','electrician-is-mounting-electric-sockets-white-wall-indoors','','inherit','','closed','','electrician-is-mounting-electric-sockets-white-wall-indoors','','','2024-10-01 15:39:47','2024-10-01 02:39:47','',1485,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/electrician-is-mounting-electric-sockets-white-wall-indoors.jpg',0,'attachment','image/jpeg',0),(1500,2,'2024-11-11 12:41:57','2024-11-10 23:41:57','<!-- wp:paragraph -->\n<p>An electrical plan is a blueprint for your electrician to show them where the wiring in your new build or renovation needs to go, and there’s a lot more to it than you might think. Ultimately, your electrical plan needs to suit your lifestyle, so this should be the starting point when considering your requirements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Who will be living in your home? Do you have small children, teenagers or elderly parents? All have their own needs eg. Ethernet cabling for teenage gamers, heat pumps for your grandparents’ room, or night lights for the nursery.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lifestyle - do you like to entertain on a regular basis? Will one of your rooms be used as a workspace? Does your kitchen contain more appliances than a Noel Leeming store, thus requiring extra 3 phase cabling?</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Functional requirements - Will you be installing heat pumps? A security camera on your door? Is sensor lighting in the hallway something to consider if you often need to go to the loo in the middle of the night? What about LED strip lighting on your staircase?</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>With so many details to take into consideration, we strongly recommend you make an appointment to go through your plans, room by room, with an experienced Master Electrician.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> It’s important that you take the time to visualise how you and your family will be living in each space, and the more information you can give your electrician, the higher the likelihood that your home will work the way you need it to.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1511,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/11/image3-edited.jpeg\" alt=\"\" class=\"wp-image-1511\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>An electrical plan can save you from the potential extra cost of retrofitting wiring – as your kids grow and you realise it would have been a good idea to install Ethernet cabling to every bedroom for instance – and it will ensure you avoid the inconvenience of a power point that ends up hidden behind the headboard in your guest bedroom (we see this one all the time).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1508,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/10/image1-edited.jpeg\" alt=\"\" class=\"wp-image-1508\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>The benefits of a good electrical plan aren’t just functional, aesthetics are also important. In our mind it makes no sense to splash $40k on a beautifully-appointed, floor to ceiling tiled bathroom, replete with underfloor heating, Smart towel rails, and a fluted wood vanity, when the first thing you see as you open the door is the ceiling fan. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Here at Juice Electrical when we walk through an electrical plan with a client we take the time to ask ourselves, “how would I need this room to function if I were you?” We also have a double-check-changes policy to ensure that we; the builder, and our client are all on the same page throughout the build process. There’s a real art to getting to know a customer and asking the right questions and we reckon we’ve got it down pat, so if you’re about to embark on a new build, give us a call on <a href=\"tel:0800277275\">0800 277 275</a> or email <a href=\"mailto:helen@juiceelectrical.co.nz\">helen@juiceelectrical.co.nz</a> and make sure your home functions perfectly, right from the outset for you and your family.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-primary\"}}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color has-link-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','The Power of a Smart Electrical Plan','','publish','closed','open','','the-power-of-a-smart-electrical-plan','','','2024-11-11 12:43:29','2024-11-10 23:43:29','',0,'https://juiceelectrical.co.nz/?p=1500',0,'post','',0),(1501,2,'2024-10-31 17:20:17','2024-10-31 04:20:17','','November_FB_Banner_1','','inherit','','closed','','november_fb_banner_1','','','2024-10-31 17:20:17','2024-10-31 04:20:17','',1500,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/November_FB_Banner_1.jpg',0,'attachment','image/jpeg',0),(1502,2,'2024-10-31 17:20:33','2024-10-31 04:20:33','','electrical-plan','','inherit','','closed','','electrical-plan','','','2024-10-31 17:20:33','2024-10-31 04:20:33','',1500,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/electrical-plan.jpg',0,'attachment','image/jpeg',0),(1503,2,'2024-10-31 17:22:31','2024-10-31 04:22:31','','electrical-plan','','inherit','closed','closed','','electrical-plan_4','','','2024-10-31 17:22:41','2024-10-31 04:22:41','',1500,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/electrical-plan_4.jpg',0,'attachment','image/jpeg',0),(1504,2,'2024-10-31 17:22:48','2024-10-31 04:22:48','','electrical-plan','','inherit','','closed','','electrical-plan-2','','','2024-10-31 17:22:48','2024-10-31 04:22:48','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/electrical-plan_4-edited.jpg',0,'attachment','image/jpeg',0),(1505,2,'2024-10-31 17:22:59','2024-10-31 04:22:59','','electrical-plan','','inherit','','closed','','electrical-plan-3','','','2024-10-31 17:22:59','2024-10-31 04:22:59','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/electrical-plan_4-edited-1.jpg',0,'attachment','image/jpeg',0),(1507,2,'2024-10-31 17:24:33','2024-10-31 04:24:33','','Juice Electrical - Electrical Plan','','inherit','closed','closed','','image1','','','2024-10-31 17:24:54','2024-10-31 04:24:54','',1500,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/image1.jpeg',0,'attachment','image/jpeg',0),(1508,2,'2024-10-31 17:25:01','2024-10-31 04:25:01','','Juice Electrical - Electrical Plan','','inherit','','closed','','juice-electrical-electrical-plan','','','2024-10-31 17:25:01','2024-10-31 04:25:01','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/image1-edited.jpeg',0,'attachment','image/jpeg',0),(1510,2,'2024-11-01 09:02:40','2024-10-31 20:02:40','','image3','','inherit','','closed','','image3','','','2024-11-01 09:02:40','2024-10-31 20:02:40','',1500,'https://juiceelectrical.co.nz/wp-content/uploads/2024/10/image3.jpeg',0,'attachment','image/jpeg',0),(1511,2,'2024-11-01 09:02:50','2024-10-31 20:02:50','','image3','','inherit','','closed','','image3-2','','','2024-11-01 09:02:50','2024-10-31 20:02:50','',0,'https://juiceelectrical.co.nz/wp-content/uploads/2024/11/image3-edited.jpeg',0,'attachment','image/jpeg',0),(1512,2,'2024-11-01 09:04:19','2024-10-31 20:04:19','','Juice_apartment','','inherit','','closed','','juice_apartment','','','2024-11-01 09:04:19','2024-10-31 20:04:19','',1500,'https://juiceelectrical.co.nz/wp-content/uploads/2024/11/Juice_apartment.jpg',0,'attachment','image/jpeg',0),(1514,2,'2024-11-01 09:09:47','2024-10-31 20:09:47','','Juice_apartment 2','','inherit','','closed','','juice_apartment-2','','','2024-11-01 09:09:47','2024-10-31 20:09:47','',1500,'https://juiceelectrical.co.nz/wp-content/uploads/2024/11/Juice_apartment-2.png',0,'attachment','image/png',0),(1521,2,'2024-11-11 12:43:19','2024-11-10 23:43:19','','everything electrical','','inherit','','closed','','everything-electrical','','','2024-11-11 12:43:19','2024-11-10 23:43:19','',1500,'https://juiceelectrical.co.nz/wp-content/uploads/2024/11/everything-electrical.jpg',0,'attachment','image/jpeg',0),(1522,2,'2024-11-11 12:43:23','2024-11-10 23:43:23','','everything electrical','','inherit','','closed','','everything-electrical-2','','','2024-11-11 12:43:23','2024-11-10 23:43:23','',1500,'https://juiceelectrical.co.nz/wp-content/uploads/2024/11/everything-electrical-1.jpg',0,'attachment','image/jpeg',0),(1523,2,'2024-11-14 09:26:50','2024-11-13 20:26:50','<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p><strong>Effective Date:</strong> 13 November 2024</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical (\"we,\" \"our,\" or \"us\") is committed to protecting your privacy in accordance with the New Zealand Privacy Act 2020. This Privacy Policy outlines how we collect, use, disclose, and safeguard your personal information when you visit our website, <a href=\"https://juiceelectrical.co.nz/\">juiceelectrical.co.nz</a>, or engage with our services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>1. Information We Collect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We may collect the following types of information:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Personal Information:</strong> When you fill out our contact form, request a quote, subscribe to our newsletter, or communicate with us via email or phone, we collect information such as your name, email address, phone number, and any other details you choose to provide.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Usage Data:</strong> We automatically collect certain information about your interaction with our website, including IP addresses, browser type, pages visited, and the date and time of your visit. This helps us understand how visitors use our site and improve our services.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Cookies:</strong> Our website uses cookies to enhance your experience and remember your preferences. You can control your cookie settings through your browser.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>2. How We Use Your Information</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We may use your personal information for the following purposes:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>To Provide and Improve Our Services:</strong> We use your information to respond to enquiries, process requests, and deliver our electrical services.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>To Communicate with You:</strong> We may use your contact information to send you updates, respond to your queries, or provide information about our services.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>To Analyse Website Usage:</strong> Usage data helps us understand how our website performs and make improvements based on visitor behaviour.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>For Legal Compliance:</strong> We may use and share your information as necessary to comply with legal obligations or respond to lawful requests from government authorities.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>3. Sharing Your Information</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We respect your privacy and will only share your information under the following circumstances:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>With Service Providers:</strong> We may share information with trusted third-party providers who assist us in website operations, analytics, and other functions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>For Legal Reasons:</strong> We may disclose your information if required by law or if we believe such action is necessary to comply with legal obligations, protect our rights, or prevent fraud.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Business Transfers:</strong> If Juice Electrical undergoes a merger, acquisition, or asset sale, your information may be transferred to the new entity, and you will be notified accordingly.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>4. Protecting Your Information</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We take reasonable measures to protect your personal information from unauthorised access, misuse, or disclosure. However, please note that no method of internet transmission or electronic storage is completely secure. While we strive to use commercially acceptable means to protect your information, we cannot guarantee absolute security.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>5. Your Rights</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Under the New Zealand Privacy Act 2020, you have the following rights regarding your personal information:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Access:</strong> You may request a copy of the personal information we hold about you.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Correction:</strong> If you believe the information we hold about you is incorrect, you have the right to request a correction.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To exercise any of these rights, please contact us at <a href=\"mailto:helen@juiceelectrical.co.nz\">helen@juiceelectrical.co.nz</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>6. Cookies and Tracking Technologies</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We use cookies and similar technologies on our website to improve your browsing experience and personalise your interactions with us. Cookies are small files stored on your device that help us remember your preferences. You can disable cookies in your browser settings, though this may affect your experience on our site.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>7. Links to Other Websites</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our website may contain links to external sites that are not operated by us. Please note that we have no control over the content and practices of these third-party sites, and we cannot accept responsibility for their privacy policies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>8. Changes to This Privacy Policy</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We may update this Privacy Policy from time to time. Any changes will be posted on this page, and we encourage you to review this policy periodically. Changes take effect immediately upon posting.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>9. Contact Us</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions, concerns, or requests about this Privacy Policy, please contact us at:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical<br>Email: <a href=\"mailto:helen@juiceelectrical.co.nz\">helen@juiceelectrical.co.nz</a><br>Phone: 03 379 6644 or 0800 277 275</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2024-11-14 09:29:45','2024-11-13 20:29:45','',0,'https://juiceelectrical.co.nz/?page_id=1523',0,'page','',0),(1526,2,'2024-11-14 09:29:11','2024-11-13 20:26:50',' ','','','publish','closed','closed','','1526','','','2024-11-14 09:29:11','2024-11-13 20:29:11','',0,'https://juiceelectrical.co.nz/blog/1526/',12,'nav_menu_item','',0),(1533,2,'2024-12-03 16:51:20','2024-12-03 03:51:20','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>So, what does an electrician actually do? Get the the juice on residential electrical work.</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Here at Juice Electrical, we love the fact that every day brings new challenges. As Canterbury’s foremost electrical renovation specialists, we quite often have to think outside the box in order to get the job done, and we’re all for it! Modern day electrical work is incredibly varied, encompassing residential, commercial, and industrial servicing, and can involve anything from creating thermographic reports and lighting design, to heat pump installation, bathroom renovations and everything in between.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For the team at Juice, our residential work includes, but is certainly not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1551,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-13-scaled.jpg\" alt=\"\" class=\"wp-image-1551\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Bathroom and kitchen remodelling </strong>– Juice Electrical is your Canterbury bathroom and kitchen renovation expert. The trickier the job the better, and we can advise you on any extras you’ll need, such as added three-phase power for your kitchen appliances.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1536,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-9.jpg\" alt=\"\" class=\"wp-image-1536\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>House re-wiring</strong> – many electricians shy away from rewiring older homes, and we agree they can be pretty complex beasts. But we’ve learned a few tricks of the trade over the years, and trust us when we tell you that we can thread your replacement wiring pretty much anywhere you need it to go.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1537,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-1.jpg\" alt=\"\" class=\"wp-image-1537\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>New build wiring</strong> – our experienced Master Electricians will go through your plans with you room by room to ensure that your new home works exactly the way you want it to. Want LED strip lighting on your staircase? If you can dream it, we can make it happen.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":972,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2020/09/2400x1600-aire-acondicionado.jpg.img_.1600.16376627-9900000000079e3c.jpg\" alt=\"air conditioner installation electrician christchurch\" class=\"wp-image-972\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Installation of Mitsubishi heat pumps</strong> – whisper quiet and easily programmed to turn on and off when you need them to, once you’ve installed a Mitsubishi heat pump in your bedroom you’ll wonder why you didn’t do it sooner. Say goodbye to hot summer nights spent tossing and turning and slumber under cool, filtered air all night long.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1550,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/spa-pool.jpg\" alt=\"\" class=\"wp-image-1550\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Spa pool installation </strong>– if you enjoy being outdoors but are put off by our frigid Canterbury winters, a spa pool, replete with lights and an entertainment system, could be just the ticket when that howling Southerly makes its presence felt.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1539,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-6.jpg\" alt=\"\" class=\"wp-image-1539\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Security alarm and camera installations </strong>– modern-day security equipment is incredibly sophisticated, and it is now commonplace to be able to monitor your property even while you’re away on holiday, so talk to us and get the juice on the latest in home security before you depart for your holiday in January.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1431,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/08/retrospective-installation.jpeg\" alt=\"\" class=\"wp-image-1431\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Home theatre system installations </strong>– do you need a home theatre? Probably not. Do you want a home theatre? Heck yes! We can install any system of your choice and set it up just the way you want it. Surround sound? Yes, please.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1549,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/garden-lighting-scaled.jpeg\" alt=\"\" class=\"wp-image-1549\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Garden lighting</strong> – illuminating your garden not only makes it easier to access your property in the dark but with some thoughtful placement it can look really beautiful too. There’s just something about a mature tree that is lit from below; even something as ordinary as an English elm will be transformed from mundane and ordinary to spectacularly beautiful with just the flick of a switch.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1548,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/oven-and-appliance-repair.jpg\" alt=\"\" class=\"wp-image-1548\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Oven and appliance repairs </strong>– we repair most makes and models of kitchen and laundry appliances, and we will always endeavour to get to you as quickly as possible. After all, nobody wants to go back to the bad old days of doing the dishes by hand, life’s too short!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1547,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/internet-and-computer-networking-scaled.jpeg\" alt=\"\" class=\"wp-image-1547\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Internet and computer networking</strong> – the team at Juice will install a network point in your office wall that allows you to plug your computer directly into a port. This will free up your precious WiFi for the teenagers and their PlayStation and is guaranteed to keep whingeing to a minimum these holidays.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1541,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-8.jpg\" alt=\"\" class=\"wp-image-1541\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Electrical safety certificates </strong>– we issue certificates of compliance and safety certificates that state that the work we have performed complies with the building code, and we can inspect and provide certificates for electrical work that has been performed previously.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a id=\"_msocom_1\"></a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1313,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/12/festoon-lighting-2.jpg\" alt=\"\" class=\"wp-image-1313\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Outdoor and entertainment lighting </strong>– the days of dark neglected patios featuring little more than a couple of deck chairs and a rusty BBQ are thankfully long gone. We can install lighting on your beams, under the eaves, or anywhere that suits you. This means that those Friday afternoon drinks can now continue well into the small hours, and through the application of smart technology, you can even programme your lights to turn themselves off after you’ve gone to bed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a id=\"_msocom_1\"></a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1546,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/outdoor-radiant-heating.jpg\" alt=\"\" class=\"wp-image-1546\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Radiant heating installation </strong>– radiant heaters are the cheapest and most effective way to heat your guests outside. We can install your heaters discretely under your eaves or beams, meaning that you and your guests can now stay warm and comfortable even in the depths of a Canterbury winter. Begone puffer jackets!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a id=\"_msocom_1\"></a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:image {\"id\":1545,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/garden-speaker.jpg\" alt=\"\" class=\"wp-image-1545\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:paragraph -->\n<p><strong>Outdoor speakers </strong>– so now that everyone is beautifully lit, well-fed, watered, and warm, all that’s missing is some tunes! Juice can install weatherproof outdoor speakers wherever you want them, and they can be operated from inside. Just be aware that your neighbours may not thank you, so maybe put the thrash metal albums on the back burner for now.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a id=\"_msocom_1\"></a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:paragraph -->\n<p>Greg and the team at Juice Electrical have been providing quality electrical work for residential properties in Christchurch, Rolleston, and the wider Canterbury region for almost two decades. Home renovations are our bread and butter, so if you’re about to embark on a remodeling project and you need some help with your lighting plan, why not give Greg a call at <a href=\"tel:0800 277 275\">0800 277 275</a>, or email <a href=\"mailto:helen@juiceelectrical.co.nz\">helen@juiceelectrical.co.nz</a> today. Whether you’re in Christchurch or Rolleston, they’ve got you covered.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|brand-primary\"}}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color has-link-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Electrify Your Home: Juice Electrical\'s Guide to Residential Services','','publish','closed','open','','electrify-your-home-juice-electricals-guide-to-residential-services','','','2024-12-09 10:50:27','2024-12-08 21:50:27','',0,'https://juiceelectrical.co.nz/?p=1533',0,'post','',0),(1534,2,'2024-12-03 16:21:09','2024-12-03 03:21:09','','juice electrical home residential services 10','','inherit','','closed','','juice-electrical-home-residential-services-10','','','2024-12-03 16:21:09','2024-12-03 03:21:09','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-10.jpg',0,'attachment','image/jpeg',0),(1535,2,'2024-12-03 16:21:15','2024-12-03 03:21:15','','juice electrical home residential services 11','','inherit','','closed','','juice-electrical-home-residential-services-11','','','2024-12-03 16:21:15','2024-12-03 03:21:15','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-11.jpg',0,'attachment','image/jpeg',0),(1536,2,'2024-12-03 16:21:20','2024-12-03 03:21:20','','juice electrical home residential services 9','','inherit','','closed','','juice-electrical-home-residential-services-9','','','2024-12-03 16:21:20','2024-12-03 03:21:20','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-9.jpg',0,'attachment','image/jpeg',0),(1537,2,'2024-12-03 16:21:23','2024-12-03 03:21:23','','juice electrical home residential services 1','','inherit','','closed','','juice-electrical-home-residential-services-1','','','2024-12-03 16:21:23','2024-12-03 03:21:23','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-1.jpg',0,'attachment','image/jpeg',0),(1538,2,'2024-12-03 16:21:33','2024-12-03 03:21:33','','juice electrical home residential services 4','','inherit','','closed','','juice-electrical-home-residential-services-4','','','2024-12-03 16:21:33','2024-12-03 03:21:33','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-4.jpg',0,'attachment','image/jpeg',0),(1539,2,'2024-12-03 16:22:12','2024-12-03 03:22:12','','juice electrical home residential services 6','','inherit','','closed','','juice-electrical-home-residential-services-6','','','2024-12-03 16:22:12','2024-12-03 03:22:12','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-6.jpg',0,'attachment','image/jpeg',0),(1540,2,'2024-12-03 16:22:17','2024-12-03 03:22:17','','juice electrical home residential services 5','','inherit','','closed','','juice-electrical-home-residential-services-5','','','2024-12-03 16:22:17','2024-12-03 03:22:17','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-5.jpg',0,'attachment','image/jpeg',0),(1541,2,'2024-12-03 16:23:35','2024-12-03 03:23:35','','juice electrical home residential services 8','','inherit','','closed','','juice-electrical-home-residential-services-8','','','2024-12-03 16:23:35','2024-12-03 03:23:35','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-8.jpg',0,'attachment','image/jpeg',0),(1542,2,'2024-12-03 16:24:19','2024-12-03 03:24:19','','juice electrical home residential services 7','','inherit','','closed','','juice-electrical-home-residential-services-7','','','2024-12-03 16:24:19','2024-12-03 03:24:19','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-7.jpg',0,'attachment','image/jpeg',0),(1543,2,'2024-12-03 16:24:31','2024-12-03 03:24:31','','juice electrical home residential services 4','','inherit','','closed','','juice-electrical-home-residential-services-4-2','','','2024-12-03 16:24:31','2024-12-03 03:24:31','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-4-1.jpg',0,'attachment','image/jpeg',0),(1544,2,'2024-12-03 16:24:37','2024-12-03 03:24:37','','juice electrical home residential services 3','','inherit','','closed','','juice-electrical-home-residential-services-3','','','2024-12-03 16:24:37','2024-12-03 03:24:37','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-3.jpg',0,'attachment','image/jpeg',0),(1545,2,'2024-12-03 16:31:14','2024-12-03 03:31:14','','garden speaker','','inherit','','closed','','garden-speaker','','','2024-12-03 16:31:14','2024-12-03 03:31:14','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/garden-speaker.jpg',0,'attachment','image/jpeg',0),(1546,2,'2024-12-03 16:34:51','2024-12-03 03:34:51','','outdoor radiant heating','','inherit','','closed','','outdoor-radiant-heating','','','2024-12-03 16:34:51','2024-12-03 03:34:51','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/outdoor-radiant-heating.jpg',0,'attachment','image/jpeg',0),(1547,2,'2024-12-03 16:37:05','2024-12-03 03:37:05','','internet and computer networking','','inherit','','closed','','internet-and-computer-networking','','','2024-12-03 16:37:05','2024-12-03 03:37:05','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/internet-and-computer-networking.jpeg',0,'attachment','image/jpeg',0),(1548,2,'2024-12-03 16:40:07','2024-12-03 03:40:07','','oven and appliance repair','','inherit','','closed','','oven-and-appliance-repair','','','2024-12-03 16:40:07','2024-12-03 03:40:07','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/oven-and-appliance-repair.jpg',0,'attachment','image/jpeg',0),(1549,2,'2024-12-03 16:41:44','2024-12-03 03:41:44','','garden lighting','','inherit','','closed','','garden-lighting','','','2024-12-03 16:41:44','2024-12-03 03:41:44','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/garden-lighting.jpeg',0,'attachment','image/jpeg',0),(1550,2,'2024-12-03 16:50:15','2024-12-03 03:50:15','','spa pool','','inherit','','closed','','spa-pool','','','2024-12-03 16:50:15','2024-12-03 03:50:15','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/spa-pool.jpg',0,'attachment','image/jpeg',0),(1551,2,'2024-12-03 16:50:40','2024-12-03 03:50:40','','juice electrical home residential services 13','','inherit','','closed','','juice-electrical-home-residential-services-13','','','2024-12-03 16:50:40','2024-12-03 03:50:40','',1533,'https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-13.jpg',0,'attachment','image/jpeg',0),(1554,2,'2022-03-11 13:27:00','2022-03-11 00:27:00','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>When it comes to electrical work, having a reliable and skilled electrician in Christchurch makes all the difference. Whether you\'re tackling a home renovation, looking for expert commercial electrical services, or need immediate assistance from an emergency electrician, it\'s essential to know you’re in safe hands. With so many options available, let’s explore the key services and how they can benefit your home or business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1431,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/08/retrospective-installation-1024x683.jpeg\" alt=\"\" class=\"wp-image-1431\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Residential Electrical Services: Keeping Your Home Safe and Functional</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Your home should feel safe and comfortable, and properly maintained electrical systems play a big part in that. Whether you’re planning to upgrade to energy-efficient lighting, installing a heat pump, or need help with faulty wiring, residential electricians in Christchurch are equipped to handle it all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, if your home’s wiring is outdated, a professional can ensure it’s compliant with safety standards while improving energy efficiency. From installing switchboards to troubleshooting tripped circuits, these services can save you headaches down the road. Residential electrical maintenance in Christchurch is also crucial to catch small problems before they turn into costly repairs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1053,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/office-lighting-10.48.07-am-1024x682.jpg\" alt=\"office electrician christchurch\" class=\"wp-image-1053\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Commercial Electrical Services: Powering Christchurch Businesses</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>For businesses, a commercial electrician is your go-to expert for keeping operations running smoothly. Whether you’re fitting out a retail shop or maintaining equipment in a warehouse, expert electrical installations are critical to success.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Picture a café owner in central Christchurch needing customised lighting to create the perfect ambience, or a property developer requiring reliable electrical systems across multiple sites. Commercial electricians in Christchurch specialise in everything from large-scale wiring projects to ongoing electrical maintenance, ensuring your business operates without interruptions. With the right team, you can focus on what you do best—running your business.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1493,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/10/house-rewiring-1024x683.jpg\" alt=\"\" class=\"wp-image-1493\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Emergency and Troubleshooting: Quick Help When It Matters</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Electrical problems can happen unexpectedly, and having access to an emergency electrician in Christchurch can save you from unnecessary stress. Whether it’s a sudden power outage, sparking outlets, or tripped circuits, experienced professionals can identify and fix the issue quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For instance, imagine coming home to find your heat pump isn’t working on a freezing night or your office’s power fails during a critical meeting. Electricians specialising in troubleshooting in Christchurch can diagnose the problem and provide effective solutions, ensuring minimal disruption to your day.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1061,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Guys-Vans-Aug-2022-web-1024x768.jpg\" alt=\"local electrician christchurch\" class=\"wp-image-1061\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Call Juice Electrical Today for Reliable Service</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re after residential electrical services, need support with a commercial project, or require fast emergency help, Juice Electrical has the expertise you need. From electrical installations to troubleshooting and maintenance, their team is here to ensure your home or business is powered safely and efficiently.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get in touch with Juice Electrical today—call <a href=\"tel:03 3796644\">03 3796644</a> or <a href=\"tel:0800 277 275\">0800 277 275</a>. Don’t wait until a small issue becomes a big problem. Let the experts take care of your electrical needs so you can focus on what matters most.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Finding the Right Electrician in Christchurch for Your Electrical Needs','','publish','closed','open','','finding-the-right-electrician-in-christchurch-for-your-electrical-needs','','','2024-12-11 13:36:30','2024-12-11 00:36:30','',0,'https://juiceelectrical.co.nz/?p=1554',0,'post','',0),(1556,2,'2024-12-11 13:29:41','2024-12-11 00:29:41','<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:columns {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column {\"width\":\"16.6%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"backgroundColor\":\"transparent\"} -->\n<div class=\"wp-block-column has-transparent-background-color has-background\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"brand-primary\",\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-brand-primary-background-color has-text-color has-background wp-element-button\" href=\"/residential/\" style=\"border-radius:0px;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Residential ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"},\"color\":{\"background\":\"#fdb913\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"/led-lighting/\" style=\"border-radius:0px;background-color:#fdb913;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>LED Lighting ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"brand-secondary\",\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-brand-secondary-background-color has-text-color has-background wp-element-button\" href=\"/heat-pumps/\" style=\"border-radius:0px;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Heat Pumps ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"},\"color\":{\"background\":\"#e2066f\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"/commercial/\" style=\"border-radius:0px;background-color:#e2066f;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Commercial ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"},\"color\":{\"background\":\"#92278f\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"/solar-solutions/\" style=\"border-radius:0px;background-color:#92278f;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Solar Solutions ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"16.6%\",\"backgroundColor\":\"transparent\"} -->\n<div class=\"wp-block-column has-transparent-background-color has-background\" style=\"flex-basis:16.6%\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"0\"}},\"border\":{\"radius\":\"0px\"},\"color\":{\"background\":\"#008fd5\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 has-custom-font-size has-small-font-size\" style=\"font-style:normal;font-weight:700\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"/industrial/\" style=\"border-radius:0px;background-color:#008fd5;padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0\"><em><strong>Industrial ></strong></em></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"className\":\"border border-primary rounded max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group border border-primary rounded max-w-1000 mx-auto\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Looking for quality work by Master Electricians?<br><em>Your search is over.</em></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">What makes Juice <br>the best Electricians<br>in Christchurch?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Juice Electrical knows it can be hard to decide who to use, from all the electrical companies in Christchurch: how can you tell which is the best electrician for your needs?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We go above and beyond for our customers</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Juice overdelivers: ‘Fresh Each Day!’</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The proof, is how Juice Electrical has so many repeat clients and word-of-mouth referrals. For us, the key to having happy customers has always been to underpromise and overdeliver - not the other way round. And we’re on call 24/7 for Emergency electrical work in Christchurch and Canterbury.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each day we bring fresh energy to <em>every</em> job: Residential, Commercial, and Industrial. Never feel that your job might be too small for us - at Juice, we know that installing or repairing something seemingly minor, can make a big difference. We love that!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"15px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:15px\"><em>‘Always prompt, reliable, and happy to go the extra mile - nothing is ever too much trouble. Most impressive thing to me is that they are really friendly but there is absolutely no mucking around either.’ </em><em>-</em>Craig</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Top Quality Electrical Workmanship</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical understands that you want your job done once <em>and done right</em>. We built our reputation on a commitment to excellence - including our workmanship. Everyone at Juice understands the importance of ensuring our workmanship is the best in the business - for <em>every </em>job, big or small.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"15px\"}}} -->\n<p style=\"font-size:15px\"><em>‘Really appreciate the attention to detail, good advice, very prompt service and overall professional support and workmanship. Totally recommend this crew.’</em> - Sharon</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">We’re Family Focused</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like our customers, we’re family people. Juice Electrical helps make family time at home easier, relaxing and enjoyable. That includes ensuring the utmost level of safety for all our electrical work, and being respectful of you and your property when we enter, work on and leave your home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We know how important it is to trust people working on your home. Juice has many loyal clients that have been with us for years and we value the trust they place in us.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"15px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:15px\"><em>‘Refit all of our lighting inside and found them to be so awesome and reliable that we have used them at least three times since. These guys are great - highly recommend them!’</em> - Lisa & Tim</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1150,\"mediaLink\":\"https://juiceelectrical.co.nz/home/possessed-photography-zncldh5-srk-unsplash-1/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill-element has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/possessed-photography-znCLdh5-Srk-unsplash-1-1024x751.jpg\" alt=\"\" class=\"wp-image-1150 size-full\" style=\"object-position:50% 50%\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Talk to Juice about <em>faster </em>home EV/PHEV charging</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"transparent\",\"textColor\":\"white\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-transparent-background-color has-text-color has-background wp-element-button\" href=\"/ev-phev/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">See EV/PHEV Charging ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">How Juice Electrical can help you</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/services/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">See Juice Services ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Residential Electrician in Christchurch</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We’re very experienced, registered Master Electricians, providing a wide range of residential electrical installation, repair, and renovation work in Christchurch and Canterbury. Juice Electrical also has specialist expertise in <a href=\"/heat-pumps/\">Mitsubishi heat pumps</a> and <a href=\"/led-lighting/\">LED lighting installations.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We cover everything from new build wiring, Smart Home Automation, and security alarms, to spa pool installation and outdoor lighting. We love <em>small </em>jobs too - no matter what you need, give Juice a call.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get the juice about our <a href=\"/residential/\">Residential Electrical services here</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"10px\"} -->\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Commercial Electricians in Christchurch</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical looks after the electrical work for a wide range of commercial businesses in Christchurch and Canterbury. Call us if you need a reliable team of electricians for commercial installations, repairs, renovations or servicing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our commercial electrical work includes (but is not limited to): commercial and shop fit outs, new office wiring, lighting, installing internet and computer networks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get the juice about our <a href=\"/commercial/\">Commercial Electrical services here</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>‘As a customer service ‘champion’ I look for extremely high standards in all aspects of customer relations. Surpassed expectations … Recommend using these guys – we certainly will be.’ - </em>Nessie</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Industrial Electricians in Christchurch</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical provides quality industrial electrical installation, repairs, testing and maintenance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our industrial expertise includes (but is not limited to): wiring for new industrial builds: building Fitouts, and re-wiring for building Refits.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whatever industrial electrical work you need done in Christchurch or elsewhere in Canterbury, Juice Electrical has the specialist know-how and tools to get the work done safely, efficiently and cost-effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get the juice about our <a href=\"/industrial/\">Industrial Electrical services here</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>‘Easy to talk to, easy to book jobs with and easy to get the billing process sorted out. The workers are friendly, the work is well done... Thanks.’ </em>– Shane</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:media-text {\"align\":\"full\",\"mediaId\":1046,\"mediaLink\":\"https://juiceelectrical.co.nz/home/infinite-energy-cromwell-client-delivery-001/\",\"mediaType\":\"image\",\"mediaWidth\":33,\"mediaSizeSlug\":\"full\",\"verticalAlignment\":\"center\",\"imageFill\":true,\"focalPoint\":{\"x\":0.81,\"y\":0.52},\"backgroundColor\":\"brand-primary\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center is-image-fill-element has-brand-primary-background-color has-background\" style=\"grid-template-columns:33% auto\"><figure class=\"wp-block-media-text__media\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Infinite-Energy-Cromwell-Client-Delivery-001-1024x575.jpg\" alt=\"\" class=\"wp-image-1046 size-full\" style=\"object-position:81% 52%\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"className\":\"max-w-500 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-500 mx-auto\"><!-- wp:spacer {\"height\":\"94px\"} -->\n<div style=\"height:94px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"textColor\":\"white\"} -->\n<h3 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-style:normal;font-weight:300\">Interested in solar for your home? We are the experts.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"transparent\",\"textColor\":\"white\",\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-white-color has-transparent-background-color has-text-color has-background wp-element-button\" href=\"/solar-solutions/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\">See our Solar Solutions ></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"95px\"} -->\n<div style=\"height:95px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"className\":\"max-w-800 mx-auto\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-800 mx-auto\" style=\"font-style:normal;font-weight:300\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading\" style=\"font-style:normal;font-weight:300\">Juice: the go-to Electricians in Christchurch & Canterbury</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"brand-primary\",\"width\":75,\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|70\"}}},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-brand-primary-color has-text-color wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--70)\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-black-color\">Contact Juice ></mark></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">When you’re choosing contractors for electrical work, their experience needs to be carefully evaluated.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Juice Electrical are registered Master Electricians and veterans in the electrical industry, with 15+ years of experience. You can count on us to provide the right solutions and quality workmanship for any electrical help you might need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Never compromise on quality when hiring a sparky</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Safety needs to be taken very seriously. Faulty wiring can cause serious accidents, so it’s always wise to use experienced electricians (preferably registered Master Electricians), with a reputation for providing quality workmanship and service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"15px\"}}} -->\n<p style=\"font-size:15px\"><em>‘Awesome service. Oh how I wish all trades firms were this good!!’ - </em>Alan</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center\" style=\"font-style:normal;font-weight:300\">Google Reviews</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"className\":\"max-w-1000 mx-auto\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group max-w-1000 mx-auto\"><!-- wp:shortcode -->\n[trustindex data-widget-id=0dbb50d1975d3493cb26675330b]\n<!-- /wp:shortcode --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Home','','inherit','closed','closed','','1-revision-v1','','','2024-12-11 13:29:41','2024-12-11 00:29:41','',1,'https://juiceelectrical.co.nz/?p=1556',0,'revision','',0),(1557,2,'2024-12-11 13:35:16','2024-12-11 00:35:16','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>When it comes to electrical work, having a reliable and skilled electrician in Christchurch makes all the difference. Whether you\'re tackling a home renovation, looking for expert commercial electrical services, or need immediate assistance from an emergency electrician, it\'s essential to know you’re in safe hands. With so many options available, let’s explore the key services and how they can benefit your home or business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1431,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/08/retrospective-installation-1024x683.jpeg\" alt=\"\" class=\"wp-image-1431\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Residential Electrical Services: Keeping Your Home Safe and Functional</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Your home should feel safe and comfortable, and properly maintained electrical systems play a big part in that. Whether you’re planning to upgrade to energy-efficient lighting, installing a heat pump, or need help with faulty wiring, residential electricians in Christchurch are equipped to handle it all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, if your home’s wiring is outdated, a professional can ensure it’s compliant with safety standards while improving energy efficiency. From installing switchboards to troubleshooting tripped circuits, these services can save you headaches down the road. Residential electrical maintenance in Christchurch is also crucial to catch small problems before they turn into costly repairs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1053,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/office-lighting-10.48.07-am-1024x682.jpg\" alt=\"office electrician christchurch\" class=\"wp-image-1053\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Commercial Electrical Services: Powering Christchurch Businesses</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>For businesses, a commercial electrician is your go-to expert for keeping operations running smoothly. Whether you’re fitting out a retail shop or maintaining equipment in a warehouse, expert electrical installations are critical to success.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Picture a café owner in central Christchurch needing customised lighting to create the perfect ambience, or a property developer requiring reliable electrical systems across multiple sites. Commercial electricians in Christchurch specialise in everything from large-scale wiring projects to ongoing electrical maintenance, ensuring your business operates without interruptions. With the right team, you can focus on what you do best—running your business.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1493,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/10/house-rewiring-1024x683.jpg\" alt=\"\" class=\"wp-image-1493\"/><figcaption class=\"wp-element-caption\">Male hands repair the socket</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Emergency and Troubleshooting: Quick Help When It Matters</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Electrical problems can happen unexpectedly, and having access to an emergency electrician in Christchurch can save you from unnecessary stress. Whether it’s a sudden power outage, sparking outlets, or tripped circuits, experienced professionals can identify and fix the issue quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For instance, imagine coming home to find your heat pump isn’t working on a freezing night or your office’s power fails during a critical meeting. Electricians specialising in troubleshooting in Christchurch can diagnose the problem and provide effective solutions, ensuring minimal disruption to your day.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1061,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Guys-Vans-Aug-2022-web-1024x768.jpg\" alt=\"local electrician christchurch\" class=\"wp-image-1061\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Call Juice Electrical Today for Reliable Service</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re after residential electrical services, need support with a commercial project, or require fast emergency help, Juice Electrical has the expertise you need. From electrical installations to troubleshooting and maintenance, their team is here to ensure your home or business is powered safely and efficiently.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get in touch with Juice Electrical today—call <a href=\"tel:03 3796644\">03 3796644</a> or <a href=\"tel:0800 277 275\">0800 277 275</a>. Don’t wait until a small issue becomes a big problem. Let the experts take care of your electrical needs so you can focus on what matters most.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Finding the Right Electrician in Christchurch for Your Electrical Needs','','inherit','closed','closed','','1554-revision-v1','','','2024-12-11 13:35:16','2024-12-11 00:35:16','',1554,'https://juiceelectrical.co.nz/?p=1557',0,'revision','',0),(1558,2,'2024-12-11 13:36:25','2024-12-11 00:36:25','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>When it comes to electrical work, having a reliable and skilled electrician in Christchurch makes all the difference. Whether you\'re tackling a home renovation, looking for expert commercial electrical services, or need immediate assistance from an emergency electrician, it\'s essential to know you’re in safe hands. With so many options available, let’s explore the key services and how they can benefit your home or business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1431,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/08/retrospective-installation-1024x683.jpeg\" alt=\"\" class=\"wp-image-1431\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Residential Electrical Services: Keeping Your Home Safe and Functional</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Your home should feel safe and comfortable, and properly maintained electrical systems play a big part in that. Whether you’re planning to upgrade to energy-efficient lighting, installing a heat pump, or need help with faulty wiring, residential electricians in Christchurch are equipped to handle it all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, if your home’s wiring is outdated, a professional can ensure it’s compliant with safety standards while improving energy efficiency. From installing switchboards to troubleshooting tripped circuits, these services can save you headaches down the road. Residential electrical maintenance in Christchurch is also crucial to catch small problems before they turn into costly repairs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1053,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/office-lighting-10.48.07-am-1024x682.jpg\" alt=\"office electrician christchurch\" class=\"wp-image-1053\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Commercial Electrical Services: Powering Christchurch Businesses</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>For businesses, a commercial electrician is your go-to expert for keeping operations running smoothly. Whether you’re fitting out a retail shop or maintaining equipment in a warehouse, expert electrical installations are critical to success.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Picture a café owner in central Christchurch needing customised lighting to create the perfect ambience, or a property developer requiring reliable electrical systems across multiple sites. Commercial electricians in Christchurch specialise in everything from large-scale wiring projects to ongoing electrical maintenance, ensuring your business operates without interruptions. With the right team, you can focus on what you do best—running your business.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1493,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/10/house-rewiring-1024x683.jpg\" alt=\"\" class=\"wp-image-1493\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Emergency and Troubleshooting: Quick Help When It Matters</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Electrical problems can happen unexpectedly, and having access to an emergency electrician in Christchurch can save you from unnecessary stress. Whether it’s a sudden power outage, sparking outlets, or tripped circuits, experienced professionals can identify and fix the issue quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For instance, imagine coming home to find your heat pump isn’t working on a freezing night or your office’s power fails during a critical meeting. Electricians specialising in troubleshooting in Christchurch can diagnose the problem and provide effective solutions, ensuring minimal disruption to your day.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1061,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Guys-Vans-Aug-2022-web-1024x768.jpg\" alt=\"local electrician christchurch\" class=\"wp-image-1061\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Call Juice Electrical Today for Reliable Service</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re after residential electrical services, need support with a commercial project, or require fast emergency help, Juice Electrical has the expertise you need. From electrical installations to troubleshooting and maintenance, their team is here to ensure your home or business is powered safely and efficiently.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get in touch with Juice Electrical today—call <a href=\"tel:03 3796644\">03 3796644</a> or <a href=\"tel:0800 277 275\">0800 277 275</a>. Don’t wait until a small issue becomes a big problem. Let the experts take care of your electrical needs so you can focus on what matters most.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Finding the Right Electrician in Christchurch for Your Electrical Needs','','inherit','closed','closed','','1554-revision-v1','','','2024-12-11 13:36:25','2024-12-11 00:36:25','',1554,'https://juiceelectrical.co.nz/?p=1558',0,'revision','',0),(1559,2,'2022-08-11 13:37:00','2022-08-11 01:37:00','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>When it comes to electrical work, finding a trusted electrician in Christchurch is key to keeping your home or business running smoothly and safely. Whether you need help with electrical installations, regular maintenance, or troubleshooting issues, knowing what to look for in an electrician can save you time, money, and stress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1535,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-11-1024x682.jpg\" alt=\"\" class=\"wp-image-1535\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Electrical Installations in Christchurch: A Job Done Right the First Time</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>When you’re building or renovating, electrical installations are one of the most critical steps. From installing light fixtures and power outlets to complex wiring systems, a professional electrician ensures everything is safe, compliant, and efficient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, a new homeowner might need a switchboard upgrade to handle modern appliances, or a local business could require tailored lighting installations to suit their space. Reliable electricians in Christchurch can handle projects of all sizes, ensuring your systems are set up to last for years to come.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1494,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/10/electrician-is-mounting-electric-sockets-white-wall-indoors-1024x673.jpg\" alt=\"\" class=\"wp-image-1494\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Electrical Maintenance: Prevent Problems Before They Start</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Regular electrical maintenance in Christchurch is essential for keeping your systems running efficiently and avoiding unexpected breakdowns. Whether you’re a homeowner or business owner, scheduling routine checks can catch small problems before they escalate into major repairs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Imagine flickering lights in your kitchen or outlets that don’t seem to work as they should. These may seem minor, but they could indicate larger wiring issues. A skilled Christchurch electrician can inspect your systems, make necessary adjustments, and ensure everything is functioning as it should.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1514,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/11/Juice_apartment-2-1024x385.png\" alt=\"\" class=\"wp-image-1514\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Why Local Expertise Matters</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Choosing electricians in Christchurch who understand the unique needs of the region makes all the difference. Local electricians not only provide fast response times but are also familiar with compliance regulations and specific challenges that properties in the area may face.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For instance, older homes in Christchurch might require rewiring to meet modern safety standards, while newer developments can benefit from energy-efficient electrical solutions. Whether it’s a complete installation or ongoing maintenance, local expertise ensures you get the best results tailored to your needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1057,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/electricians-rolleston.jpg\" alt=\"local electrician christchurch\" class=\"wp-image-1057\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Contact Juice Electrical for Expert Service</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>If you’re looking for reliable electricians in Christchurch, Juice Electrical has you covered. With a reputation for quality workmanship and friendly service, their team can assist with electrical installations, maintenance, and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Don’t wait—reach out to Juice Electrical today to discuss your needs. Call <a href=\"tel:03 3796644\">03 3796644</a> or <a href=\"tel:0800 277 275\">0800 277 275</a> to book a service. Whether it’s a big project or a quick fix, you can count on their expert team to deliver top-notch results every time.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Choosing the Right Electrician in Christchurch for Your Home or Business','','publish','closed','open','','choosing-the-right-electrician-in-christchurch-for-your-home-or-business','','','2024-12-11 13:41:27','2024-12-11 00:41:27','',0,'https://juiceelectrical.co.nz/?p=1559',0,'post','',0),(1560,2,'2024-12-11 13:41:24','2024-12-11 00:41:24','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>When it comes to electrical work, finding a trusted electrician in Christchurch is key to keeping your home or business running smoothly and safely. Whether you need help with electrical installations, regular maintenance, or troubleshooting issues, knowing what to look for in an electrician can save you time, money, and stress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1535,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/12/juice-electrical-home-residential-services-11-1024x682.jpg\" alt=\"\" class=\"wp-image-1535\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Electrical Installations in Christchurch: A Job Done Right the First Time</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>When you’re building or renovating, electrical installations are one of the most critical steps. From installing light fixtures and power outlets to complex wiring systems, a professional electrician ensures everything is safe, compliant, and efficient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, a new homeowner might need a switchboard upgrade to handle modern appliances, or a local business could require tailored lighting installations to suit their space. Reliable electricians in Christchurch can handle projects of all sizes, ensuring your systems are set up to last for years to come.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1494,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/10/electrician-is-mounting-electric-sockets-white-wall-indoors-1024x673.jpg\" alt=\"\" class=\"wp-image-1494\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Electrical Maintenance: Prevent Problems Before They Start</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Regular electrical maintenance in Christchurch is essential for keeping your systems running efficiently and avoiding unexpected breakdowns. Whether you’re a homeowner or business owner, scheduling routine checks can catch small problems before they escalate into major repairs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Imagine flickering lights in your kitchen or outlets that don’t seem to work as they should. These may seem minor, but they could indicate larger wiring issues. A skilled Christchurch electrician can inspect your systems, make necessary adjustments, and ensure everything is functioning as it should.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1514,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/11/Juice_apartment-2-1024x385.png\" alt=\"\" class=\"wp-image-1514\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Why Local Expertise Matters</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Choosing electricians in Christchurch who understand the unique needs of the region makes all the difference. Local electricians not only provide fast response times but are also familiar with compliance regulations and specific challenges that properties in the area may face.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For instance, older homes in Christchurch might require rewiring to meet modern safety standards, while newer developments can benefit from energy-efficient electrical solutions. Whether it’s a complete installation or ongoing maintenance, local expertise ensures you get the best results tailored to your needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1057,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/electricians-rolleston.jpg\" alt=\"local electrician christchurch\" class=\"wp-image-1057\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Contact Juice Electrical for Expert Service</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>If you’re looking for reliable electricians in Christchurch, Juice Electrical has you covered. With a reputation for quality workmanship and friendly service, their team can assist with electrical installations, maintenance, and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Don’t wait—reach out to Juice Electrical today to discuss your needs. Call <a href=\"tel:03 3796644\">03 3796644</a> or <a href=\"tel:0800 277 275\">0800 277 275</a> to book a service. Whether it’s a big project or a quick fix, you can count on their expert team to deliver top-notch results every time.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Choosing the Right Electrician in Christchurch for Your Home or Business','','inherit','closed','closed','','1559-revision-v1','','','2024-12-11 13:41:24','2024-12-11 00:41:24','',1559,'https://juiceelectrical.co.nz/?p=1560',0,'revision','',0),(1561,2,'2022-11-11 13:42:00','2022-11-11 00:42:00','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>When it comes to electrical work, every property has unique needs. Whether you’re managing a commercial building or maintaining a family home, finding the right electrician in Christchurch can make all the difference. With professional expertise in both residential and commercial electrical services, you can ensure your systems are safe, efficient, and up to code.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1273,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/08/LED-Lighting-Electrician-Christchurch2-1024x683.jpg\" alt=\"\" class=\"wp-image-1273\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Commercial Electrical Services in Christchurch: Powering Your Business</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Commercial spaces demand reliable and efficient electrical systems to keep operations running smoothly. From large office buildings to retail shops and industrial sites, professional commercial electrical services in Christchurch provide tailored solutions for businesses of all sizes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, a retail store might need energy-efficient lighting to create an inviting atmosphere for customers, while a warehouse could require specialised wiring for heavy machinery. A trusted commercial electrician can also handle ongoing maintenance, ensuring your systems remain compliant and reduce downtime.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Emergency electrical services are another essential aspect for businesses. Whether it’s a sudden power outage or faulty equipment, a responsive Christchurch commercial electrician can quickly resolve the issue, minimising disruptions to your business operations.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1512,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/11/Juice_apartment-1024x716.jpg\" alt=\"\" class=\"wp-image-1512\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Residential Electricians in Christchurch: Keeping Your Home Safe and Functional</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Your home’s electrical system is the backbone of your daily life. From powering appliances to keeping your family safe, reliable residential electrical services in Christchurch ensure everything runs smoothly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re upgrading your kitchen with new appliances, installing energy-efficient lighting, or adding extra power outlets, a residential electrician can make your home more functional and comfortable. For older homes, rewiring is often necessary to meet modern safety standards and reduce fire risks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Electrical maintenance for your home is also key. Imagine dealing with flickering lights or circuit breakers that constantly trip—these issues can be more than just an annoyance. A skilled Christchurch residential electrician can identify and resolve these problems quickly, saving you from costly repairs down the line.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1501,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/10/November_FB_Banner_1-1024x455.jpg\" alt=\"\" class=\"wp-image-1501\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Why Choose Local Experts for Your Electrical Needs?</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Both residential and commercial properties benefit from working with local electricians in Christchurch. They understand the specific challenges and compliance requirements of the area, ensuring your electrical systems are not only functional but also up to code.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Local electricians are also available for quick responses, whether you’re dealing with a power outage at home or a critical issue at your business. Their knowledge of Christchurch properties allows them to offer tailored solutions, whether it’s an energy-efficient upgrade for your shop or a complete rewiring for your family home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1066,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Vans-Aug-2022-1024x575.jpg\" alt=\"local electrician christchurch\" class=\"wp-image-1066\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Contact Juice Electrical for Expert Service</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Whether you need commercial electrical services in Christchurch or a reliable residential electrician, Juice Electrical is here to help. With years of experience, they provide tailored solutions for both businesses and homes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Reach out to Juice Electrical today to discuss your needs. Call <a href=\"tel:03 3796644\">03 3796644</a> or <a href=\"tel:0800 277 275\">0800 277 275</a> to book a service. From large-scale commercial projects to everyday residential maintenance, their team is committed to delivering expert solutions and exceptional service.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Tailored Electrical Services in Christchurch: Commercial and Residential Experts','','publish','closed','open','','tailored-electrical-services-in-christchurch-commercial-and-residential-experts','','','2024-12-11 13:46:53','2024-12-11 00:46:53','',0,'https://juiceelectrical.co.nz/?p=1561',0,'post','',0),(1562,2,'2024-12-11 13:45:13','2024-12-11 00:45:13','<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>When it comes to electrical work, every property has unique needs. Whether you’re managing a commercial building or maintaining a family home, finding the right electrician in Christchurch can make all the difference. With professional expertise in both residential and commercial electrical services, you can ensure your systems are safe, efficient, and up to code.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:image {\"id\":1273,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/08/LED-Lighting-Electrician-Christchurch2-1024x683.jpg\" alt=\"\" class=\"wp-image-1273\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Commercial Electrical Services in Christchurch: Powering Your Business</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Commercial spaces demand reliable and efficient electrical systems to keep operations running smoothly. From large office buildings to retail shops and industrial sites, professional commercial electrical services in Christchurch provide tailored solutions for businesses of all sizes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example, a retail store might need energy-efficient lighting to create an inviting atmosphere for customers, while a warehouse could require specialised wiring for heavy machinery. A trusted commercial electrician can also handle ongoing maintenance, ensuring your systems remain compliant and reduce downtime.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Emergency electrical services are another essential aspect for businesses. Whether it’s a sudden power outage or faulty equipment, a responsive Christchurch commercial electrician can quickly resolve the issue, minimising disruptions to your business operations.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1512,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/11/Juice_apartment-1024x716.jpg\" alt=\"\" class=\"wp-image-1512\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Residential Electricians in Christchurch: Keeping Your Home Safe and Functional</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Your home’s electrical system is the backbone of your daily life. From powering appliances to keeping your family safe, reliable residential electrical services in Christchurch ensure everything runs smoothly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re upgrading your kitchen with new appliances, installing energy-efficient lighting, or adding extra power outlets, a residential electrician can make your home more functional and comfortable. For older homes, rewiring is often necessary to meet modern safety standards and reduce fire risks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Electrical maintenance for your home is also key. Imagine dealing with flickering lights or circuit breakers that constantly trip—these issues can be more than just an annoyance. A skilled Christchurch residential electrician can identify and resolve these problems quickly, saving you from costly repairs down the line.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1501,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2024/10/November_FB_Banner_1-1024x455.jpg\" alt=\"\" class=\"wp-image-1501\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Why Choose Local Experts for Your Electrical Needs?</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Both residential and commercial properties benefit from working with local electricians in Christchurch. They understand the specific challenges and compliance requirements of the area, ensuring your electrical systems are not only functional but also up to code.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Local electricians are also available for quick responses, whether you’re dealing with a power outage at home or a critical issue at your business. Their knowledge of Christchurch properties allows them to offer tailored solutions, whether it’s an energy-efficient upgrade for your shop or a complete rewiring for your family home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1066,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://juiceelectrical.co.nz/wp-content/uploads/2023/03/Vans-Aug-2022-1024x575.jpg\" alt=\"local electrician christchurch\" class=\"wp-image-1066\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"textColor\":\"brand-primary\"} -->\n<h3 class=\"wp-block-heading has-text-align-left has-brand-primary-color has-text-color\"><strong><strong><strong><strong>Contact Juice Electrical for Expert Service</strong></strong></strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Whether you need commercial electrical services in Christchurch or a reliable residential electrician, Juice Electrical is here to help. With years of experience, they provide tailored solutions for both businesses and homes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Reach out to Juice Electrical today to discuss your needs. Call <a href=\"tel:03 3796644\">03 3796644</a> or <a href=\"tel:0800 277 275\">0800 277 275</a> to book a service. From large-scale commercial projects to everyday residential maintenance, their team is committed to delivering expert solutions and exceptional service.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"font-style:normal;font-weight:300\"><!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/contact/\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">Contact us today</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Tailored Electrical Services in Christchurch: Commercial and Residential Experts','','inherit','closed','closed','','1561-revision-v1','','','2024-12-11 13:45:13','2024-12-11 00:45:13','',1561,'https://juiceelectrical.co.nz/?p=1562',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_order` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (5,2,0),(14,1,0),(467,4,0),(1016,3,0),(1017,3,0),(1018,3,0),(1020,3,0),(1021,3,0),(1023,3,0),(1024,3,0),(1025,3,0),(1026,3,0),(1027,3,0),(1028,3,0),(1103,1,0),(1106,1,0),(1121,1,0),(1195,1,0),(1241,1,0),(1268,1,0),(1283,1,0),(1303,1,0),(1324,1,0),(1334,1,0),(1345,1,0),(1357,2,0),(1358,2,0),(1359,2,0),(1360,2,0),(1361,2,0),(1362,2,0),(1363,2,0),(1364,2,0),(1365,2,0),(1366,2,0),(1367,2,0),(1368,2,0),(1369,2,0),(1370,2,0),(1372,1,0),(1383,2,0),(1387,2,0),(1411,1,0),(1420,1,0),(1428,1,0),(1462,1,0),(1485,1,0),(1500,1,0),(1526,3,0),(1533,1,0),(1554,1,0),(1559,1,0),(1561,1,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `taxonomy` varchar(32) 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=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,23),(2,2,'nav_menu','',0,17),(3,3,'nav_menu','',0,12),(4,4,'wp_theme','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) 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=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Primary Navigation','primary-navigation',0),(3,'Footer Navigation','footer-navigation',0),(4,'pinnclonesmalltest/resources','pinnclonesmalltest-resources',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_tm_taskmeta` -- DROP TABLE IF EXISTS `wp_tm_taskmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_tm_taskmeta` ( `meta_id` bigint(20) NOT NULL AUTO_INCREMENT, `task_id` bigint(20) NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `meta_key` (`meta_key`(191)), KEY `task_id` (`task_id`) ) ENGINE=InnoDB AUTO_INCREMENT=128 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_tm_taskmeta` -- LOCK TABLES `wp_tm_taskmeta` WRITE; /*!40000 ALTER TABLE `wp_tm_taskmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_tm_taskmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_tm_tasks` -- DROP TABLE IF EXISTS `wp_tm_tasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_tm_tasks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `type` varchar(300) NOT NULL, `class_identifier` varchar(300) DEFAULT '0', `attempts` int(11) DEFAULT 0, `description` varchar(300) DEFAULT NULL, `time_created` timestamp NOT NULL DEFAULT current_timestamp(), `last_locked_at` bigint(20) DEFAULT 0, `status` varchar(300) DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=128 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_tm_tasks` -- LOCK TABLES `wp_tm_tasks` WRITE; /*!40000 ALTER TABLE `wp_tm_tasks` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_tm_tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_trustindex_google_reviews` -- DROP TABLE IF EXISTS `wp_trustindex_google_reviews`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_trustindex_google_reviews` ( `id` tinyint(1) NOT NULL AUTO_INCREMENT, `hidden` tinyint(1) NOT NULL DEFAULT 0, `user` varchar(255) DEFAULT NULL, `user_photo` text DEFAULT NULL, `text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `rating` decimal(3,1) DEFAULT NULL, `highlight` varchar(11) DEFAULT NULL, `date` date DEFAULT NULL, `reviewId` text DEFAULT NULL, `reply` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_trustindex_google_reviews` -- LOCK TABLES `wp_trustindex_google_reviews` WRITE; /*!40000 ALTER TABLE `wp_trustindex_google_reviews` DISABLE KEYS */; INSERT INTO `wp_trustindex_google_reviews` VALUES (1,0,'Claudia Reid','https://lh3.googleusercontent.com/a/AGNmyxZrvVQLL4dMgOQ_V7XNTHPu1RAm_uNu1jJRUM08=s120-c-c-rp-w64-h64-mo-br100','I have used Juice Electrical for over 20 years as my main electricians for all the properties that I manage. Their advice is always honest and on point and all of their staff are super friendly and respectful of tenants and landlords alike. I highly recommend Greg, Helen and their team!',5.0,NULL,'2023-01-22',NULL,NULL),(2,0,'GLEN COUNSELL','https://lh3.googleusercontent.com/a-/ACB-R5RVTzhXHnNaktcAzj8nFn_wGhpkKyWHAoky1JI3JmE=s120-c-c-rp-w64-h64-mo-br100','We have used Juice for a number of years and we highly recommend them. They provide an exceptional service and quality workmanship.',5.0,NULL,'2023-01-20',NULL,NULL),(3,0,'Graeme Bennetts','https://lh3.googleusercontent.com/a/AGNmyxaoq_vfHjQGhsq6Lmgzv2akU9IGtCdyBZQxgSLp=s120-c-c-rp-w64-h64-mo-br100','I have used Juice Electrical for over 10 years - always a very professional service provided. I can recommend them for all electrical work.',5.0,NULL,'2023-01-14',NULL,NULL),(4,0,'Barry Brosnahan','https://lh3.googleusercontent.com/a-/ACB-R5RDdOJ9ijM1x1ANy3asRiqY2Al-_A3WUA28Oco2mA=s120-c-c-rp-w64-h64-mo-br100','',5.0,NULL,'2022-11-21',NULL,NULL),(5,0,'Andy Bell','https://lh3.googleusercontent.com/a/AGNmyxZusnsXS9U9LCUTTAis2BxYgOSaVGToWn7ePapU=s120-c-c-rp-w64-h64-mo-br100','Fast on time helpful all gravy',5.0,NULL,'2022-11-20',NULL,NULL),(6,0,'Katie Wells','https://lh3.googleusercontent.com/a/AGNmyxaRfQbG5roY2nC4DE0d1vROqhPdFVafUi5lyz4d=s120-c-c-rp-w64-h64-mo-br100','Great company. Friendly staff and well priced. Highly recommended',5.0,NULL,'2022-11-19',NULL,NULL),(7,0,'Gavin Treadgold (rediguana)','https://lh3.googleusercontent.com/a-/ACB-R5SbMz7JPPn4lecOUipWdTMjnloBLIPhJNAe52gkTwA=s120-c-c-rp-w64-h64-mo-br100','Greg was very helpful and came around and we talked about the work to be done, and Ryan did a good job. As well as lights, we had juice install Shelly Dimmer 2 devices in light switch sockets to enable home automation of the lighting. I will be using them again.',5.0,NULL,'2022-11-15',NULL,NULL),(8,0,'Adam Robertson','https://lh3.googleusercontent.com/a-/ACB-R5TDkPPQoalBwZUoedtFtBw_VIV7PwhHEEMJ8f_YDw=s120-c-c-rp-w64-h64-mo-br100','We were renovating a new place we purchased. Greg came in and took down about 100 notes of what we wanted, offering helpful advice and recommendations along the way. The quote was very reasonable. Ryan and Suji came to complete the work. They were on time, efficient and extremely friendly. They offered additional advice and ideas, which was amazing. Couldn\'t recommend this company enough. Outstanding service.',5.0,NULL,'2022-10-26',NULL,NULL),(9,0,'Seleana Crichton','https://lh3.googleusercontent.com/a/AGNmyxZcB2DvzNsDLgTpHYwteEbDcuGRD38f8dfQlvp9=s120-c-c-rp-w64-h64-mo-br100','This is now the third time I have used Juice Electrical and will always ring them first if I need anything done, I was given there name by a friend and now I tell my friends to ring them, top team',5.0,NULL,'2022-10-22',NULL,NULL),(10,0,'David Bromell','https://lh3.googleusercontent.com/a/AGNmyxYy5ARcgIpWtS6D1WyXp_heZ9cImNL2fZ5J4MWQ=s120-c-c-rp-w64-h64-mo-br100','Prompt, professional service, with good advice and no mucking around',5.0,NULL,'2022-10-21',NULL,NULL); /*!40000 ALTER TABLE `wp_trustindex_google_reviews` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (29,2,'nickname','juiceelectricalnew'),(30,2,'first_name',''),(31,2,'last_name',''),(32,2,'description',''),(33,2,'rich_editing','true'),(34,2,'syntax_highlighting','true'),(35,2,'comment_shortcuts','false'),(36,2,'admin_color','fresh'),(37,2,'use_ssl','0'),(38,2,'show_admin_bar_front','true'),(39,2,'locale',''),(40,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(41,2,'wp_user_level','10'),(42,2,'dismissed_wp_pointers',''),(44,2,'wp_dashboard_quick_press_last_post_id','1553'),(45,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"114.23.108.0\";}'),(46,2,'wp_persisted_preferences','a:4:{s:14:\"core/edit-post\";a:1:{s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-09-05T01:43:27.441Z\";s:17:\"core/block-editor\";a:1:{s:25:\"linkControlSettingsDrawer\";b:1;}s:4:\"core\";a:2:{s:10:\"openPanels\";a:7:{i:0;s:14:\"featured-image\";i:1;s:11:\"post-status\";i:2;s:12:\"post-excerpt\";i:3;s:16:\"discussion-panel\";i:4;s:24:\"yoast-seo/document-panel\";i:5;s:23:\"taxonomy-panel-post_tag\";i:6;s:23:\"taxonomy-panel-category\";}s:26:\"isComplementaryAreaVisible\";b:1;}}'),(47,2,'wp_user-settings','libraryContent=browse'),(48,2,'wp_user-settings-time','1701911828'),(49,2,'nav_menu_recently_edited','3'),(50,2,'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\";}'),(51,2,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(56,2,'_yoast_wpseo_profile_updated','1710116848'),(58,2,'wfls-last-login','1734055481'),(63,2,'_yoast_wpseo_introductions','a:2:{s:42:\"ai-generate-titles-and-descriptions-upsell\";b:1;s:25:\"ai-fix-assessments-upsell\";b:1;}'),(66,2,'wpo-hide-minify-information-notice','1'),(67,2,'session_tokens','a:1:{s:64:\"17e9ed1117a33b7de3319c5466c7696403906c0d144722eae9598f607131d7ec\";a:4:{s:10:\"expiration\";i:1734228276;s:2:\"ip\";s:13:\"114.23.108.73\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1734055476;}}'),(68,2,'closedpostboxes_post','a:1:{i:0;s:10:\"wpseo_meta\";}'),(69,2,'metaboxhidden_post','a:0:{}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) 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=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (2,'juiceelectricalnew','$P$BjBL7Jhgzqgf8te.gWZk74KGPdULCH1','juiceelectricalnew','chic@pinnacleandco.nz','','2023-02-07 03:11:57','',0,'juiceelectricalnew'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wfauditevents` -- DROP TABLE IF EXISTS `wp_wfauditevents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wfauditevents` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL DEFAULT '', `data` text NOT NULL, `event_time` double(14,4) NOT NULL, `request_id` bigint(20) unsigned NOT NULL, `state` enum('new','sending','sent') NOT NULL DEFAULT 'new', `state_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wfauditevents` -- LOCK TABLES `wp_wfauditevents` WRITE; /*!40000 ALTER TABLE `wp_wfauditevents` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wfauditevents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wfblockediplog` -- DROP TABLE IF EXISTS `wp_wfblockediplog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wfblockediplog` ( `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `countryCode` varchar(2) NOT NULL, `blockCount` int(10) unsigned NOT NULL DEFAULT 0, `unixday` int(10) unsigned NOT NULL, `blockType` varchar(50) NOT NULL DEFAULT 'generic', PRIMARY KEY (`IP`,`unixday`,`blockType`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wfblockediplog` -- LOCK TABLES `wp_wfblockediplog` WRITE; /*!40000 ALTER TABLE `wp_wfblockediplog` DISABLE KEYS */; INSERT INTO `wp_wfblockediplog` VALUES ('\0\0\0\0\0\0\0\0\0\0��e�\'','RU',1,20053,'brute'),('\0\0\0\0\0\0\0\0\0\0��e�','RU',1,20065,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r','US',1,20047,'waf'),('\0\0\0\0\0\0\0\0\0\0��l�v','CA',1,20067,'waf'),('\0\0\0\0\0\0\0\0\0\0��\"@�f','KR',1,20046,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"DsD','US',1,20058,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"Hڥ','US',1,20059,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"KA�','US',1,20046,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"Wc,','SG',1,20057,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"Wc,','SG',1,20063,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"Wc,','SG',1,20068,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"`��','HK',1,20058,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"`��','HK',2,20063,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�ë','US',1,20048,'brute'),('\0\0\0\0\0\0\0\0\0\0��/X=[','US',1,20054,'brute'),('\0\0\0\0\0\0\0\0\0\0��3e','FR',1,20052,'waf'),('\0\0\0\0\0\0\0\0\0\0��6�B=','US',1,20055,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\�=','FR',1,20068,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\�=','FR',1,20072,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\�6�','FR',1,20059,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\�6�','FR',1,20062,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\��q','FR',1,20053,'brute'),('\0\0\0\0\0\0\0\0\0\0��]Y�/','TR',1,20058,'brute'),('\0\0\0\0\0\0\0\0\0\0��]Y�/','TR',1,20062,'brute'),('\0\0\0\0\0\0\0\0\0\0��g','JP',1,20067,'brute'),('\0\0\0\0\0\0\0\0\0\0��gnV�','VN',1,20061,'brute'),('\0\0\0\0\0\0\0\0\0\0��gnV�','VN',1,20066,'brute'),('\0\0\0\0\0\0\0\0\0\0���H��','US',3,20057,'waf'),('\0\0\0\0\0\0\0\0\0\0����','US',1,20063,'brute'),('\0\0\0\0\0\0\0\0\0\0����B','US',3,20051,'waf'),('\0\0\0\0\0\0\0\0\0\0����}�','GT',1,20054,'brute'),('\0\0\0\0\0\0\0\0\0\0����}�','GT',1,20067,'brute'),('\0\0\0\0\0\0\0\0\0\0���Z�','JP',1,20066,'brute'),('\0\0\0\0\0\0\0\0\0\0����&','UA',1,20061,'brute'),('\0\0\0\0\0\0\0\0\0\0����&','UA',1,20066,'brute'),('\0\0\0\0\0\0\0\0\0\0���&\r','UA',1,20060,'waf'),('\0\0\0\0\0\0\0\0\0\0���&','UA',1,20074,'waf'),('\0\0\0\0\0\0\0\0\0\0��Ѿ�','US',3,20067,'waf'),('\0\0\0\0\0\0\0\0\0\0��Ѿ_�','US',3,20057,'waf'),('\0\0\0\0\0\0\0\0\0\0��Ѿ`\"','US',6,20055,'waf'); /*!40000 ALTER TABLE `wp_wfblockediplog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wfblocks7` -- DROP TABLE IF EXISTS `wp_wfblocks7`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wfblocks7` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type` int(10) unsigned NOT NULL DEFAULT 0, `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `blockedTime` bigint(20) NOT NULL, `reason` varchar(255) NOT NULL, `lastAttempt` int(10) unsigned DEFAULT 0, `blockedHits` int(10) unsigned DEFAULT 0, `expiration` bigint(20) unsigned NOT NULL DEFAULT 0, `parameters` text DEFAULT NULL, PRIMARY KEY (`id`), KEY `type` (`type`), KEY `IP` (`IP`), KEY `expiration` (`expiration`) ) ENGINE=InnoDB AUTO_INCREMENT=1032 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wfblocks7` -- LOCK TABLES `wp_wfblocks7` WRITE; /*!40000 ALTER TABLE `wp_wfblocks7` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wfblocks7` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wfconfig` -- DROP TABLE IF EXISTS `wp_wfconfig`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wfconfig` ( `name` varchar(100) NOT NULL, `val` longblob DEFAULT NULL, `autoload` enum('no','yes') NOT NULL DEFAULT 'yes', PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wfconfig` -- LOCK TABLES `wp_wfconfig` WRITE; /*!40000 ALTER TABLE `wp_wfconfig` DISABLE KEYS */; INSERT INTO `wp_wfconfig` VALUES ('activatingIP','203.109.195.202','yes'),('actUpdateInterval','2','yes'),('addCacheComment','0','yes'),('adminUserList','a:1:{i:2;i:1;}','yes'),('advancedCommentScanning','1','yes'),('ajaxWatcherDisabled_admin','0','yes'),('ajaxWatcherDisabled_front','0','yes'),('alertEmails','dev@pinnacleandco.nz','yes'),('alertOn_adminLogin','0','yes'),('alertOn_block','0','yes'),('alertOn_breachLogin','0','yes'),('alertOn_firstAdminLoginOnly','0','yes'),('alertOn_firstNonAdminLoginOnly','0','yes'),('alertOn_loginLockout','0','yes'),('alertOn_lostPasswdForm','0','yes'),('alertOn_nonAdminLogin','0','yes'),('alertOn_scanIssues','1','yes'),('alertOn_severityLevel','100','yes'),('alertOn_throttle','0','yes'),('alertOn_update','0','yes'),('alertOn_wafDeactivated','0','yes'),('alertOn_wordfenceDeactivated','0','yes'),('alert_maxHourly','0','yes'),('allowed404s','/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('allowed404s6116Migration','1','yes'),('allowHTTPSCaching','0','yes'),('allowLegacy2FA','0','yes'),('allowMySQLi','1','yes'),('allScansScheduled','a:2:{i:0;a:2:{s:9:\"timestamp\";i:1734578998;s:4:\"args\";a:1:{i:0;i:1734578998;}}i:1;a:2:{s:9:\"timestamp\";i:1734838198;s:4:\"args\";a:1:{i:0;i:1734838198;}}}','yes'),('apiKey','36b4dae5fa88ae156ed3f902daee366c2e084f1a05507400fb5805cd8c8bb2003f7682adb12c01bf1304dc1fe2a922af0175d81a2e00ffa499a7479da85276669c3b5221040d9074375d0cc650bd2edf','yes'),('auditLogMode','default','yes'),('autoBlockScanners','1','yes'),('autoUpdate','1','yes'),('autoUpdateAttempts','0','yes'),('autoUpdateChoice','1','yes'),('bannedURLs','','yes'),('blockCustomText','','yes'),('blockedTime','300','yes'),('blocks702Migration','1','yes'),('cacheType','disabled','yes'),('cbl_action','block','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassViewURL','','yes'),('cbl_cookieVal','642a2140510e0','yes'),('cbl_loggedInBlocked','0','yes'),('cbl_redirURL','','yes'),('cbl_restOfSiteBlocked','1','yes'),('checkSpamIP','1','yes'),('config701Migration','1','yes'),('config720Migration','1','yes'),('coreHashes','�\0\0\0\0\0\0\0��a:2:{s:4:\"hash\";s:64:\"b5a9185a154700d015aa0bd1e20c447eb83da93fb03d33a022c316e65a854b04\";s:6:\"hashes\";s:148768:\"\0���W7���ht#� ��q��)��d��$\0��\0(�띰xJ{�h�Ϯ�%��\r^��:��(�5��\0(����Z�Y�Y�@�Iq��ȗ#��T��@\0+��0�ߨP;�PO�\'��^p|Ns�N6�d���\04ߗ�t��\\v�Q���\'_���ajx�Ҧ�\0E=j���ȋ|�p8.�½���֤��SGp�\0Eq�x����Pa���>bv�D��o4V�G;a<��\0^N��弘a�e|K��-��ܰ��ɜ=�\0b�&F�����%|w��*Qr;�|/�=(A���<�\0���#�B�5��j��$#��j!����bN��j�\0�ۧ��4(�K�I|���0��qD.^�v�\0�>|�;(߯\\W*�7?��\n�N��2=�7[Uo\0��i��ք�\"����]�^��XD��2](\0���/��o)��:4]��_���+̔�c���\0˼o�%���?��NW��ǏN{��j\0��D�9\0�e�*�@�t���\"��q ȐN��5��H�\0�9�w�i����5�������}���h��\0�Z̈�~�0�=��G�#�C��Z}�*��p\0�T|̅_��S�8��O0μ�¸0����6�\0��-bs�G�\n(hr\Z.�n���!e��z.Yx��U�i��5G���$P�u�v�AT����p�l�J��}���a\Z�\0VX=:��8~\"2�ʦD�I�XV�f�EW��e���G�]���q)6�� �j��nNؤ^}0[P�KXs��+ȉ0���sD���;��P�=�\'��2� ��\0Df��a�w�S���[�U`|WS�PD�羟Nh��b!���#�8i�>kq6�R�E�5��:�\"��;B��i.qX��A4����uU��+ױ���ϱ��T�_^gy�zG�L\"1����U}6:��l|��(㜦��q{��V�~u�<�Dh�o*���cϬ0���x�cl$� �4��m����o��`vA:����`{rf��_�S3/s��m�?d�^͔0�X0�#q��-ml�*���#�L�&$�FΪK#�\"�`Ԉ��MC�Wd#T�c��x�E��y�ũ��H���>��$�2��]�%��*�6�\\�dp�ۛ!��s%��]Z�Y�o�ݿ���������r;G�\"��5 ��}�x(��r�:a,zmK�H1|/��+��Gu���&�w]�-H�\rRW��\\�5����\'��=�P�����sZF�ԤoD-x?�<�u���q�XQ�7ai�\rIC�pE�K����y��k�ѩ}ˣ�\\�$�p\"�&�p+^���\Z�{������5�|�f�㵅S�L�o3E�x���ѥU��q�`�q4u���Z����[n�8�O��r7��0H01YL$RRAhJ6��M�w:/�7�.�ڏP���h.B�U-ї�\'Ts��z+p����pHa�P0�4��D�!�2�{�F�|���p8$�h��\"d�3���\\��pY�Q�ᣎ�K4ޗ��غ�Ku�\0M�x>]Z�\"�z�8Ŏ�V�M�˻yUL���K��C�Wa��\\��ˁ�\n�;�0�Ġ\"f�АΟ��\'\r͍��D�dM������s�ǿ��ڴ�$2�j)�,\n�\' #6�9\n��^��� nt�\"V8�M@�H؟Q��[S$����ږ��mK�2�e�f�te�4���\Z�GG.�f��Vy`��)\".o[`�ϐ�\r�n���jn�viU\n@,�+!%u re4�+JuP$)O�y\Z�g`�J����\r�5�n�]�S�̓��&t�,�WN��P�2�\"Ş�,|^��y���/\Z(A�1]�/ƅ�B�M�j:��@ѫ�G+S�f�����dV�i�\n�6W��ԑ\\<�O�Ej2�Q����\r�|�X6�����/46�J���?���X�GX�~��u���ic\r�p�����Q��활��\r?c�L�Tӊ���qg�ȫ?c�r�ȸ�t�d���B\rTJ�,Q��$�TDh���((Zd�z��vO����_��;ƀ��E�pY�.�&}��_� �Q�������oS�nn�̵v�\0)�����S��nR�\'��X�^���kh����ɑ�i�7����Ӥ�:DILV�\0y�Z��)��K�\n���d�*Y�®��s��<!)܃��J��¬��ܘD�~��%Ro��c��7�\r��L��>1�݈]�^]�RɢNF�M��J�,��i�I.2 ��>1�Z�;ר��1ԁ$�!��W:����LR�d�������F�@��yo�F �Sx�Dq5��/w��_W:��+f�1z��g���\\Y��m�x�GO0���jo].㖽�B�=�f~:N���Fa6�ա�\nY ���\'��i���+�`��fGYbm��UP��M��J�ڡ0�&Cv��M�$����O��4-K� o6�lb�1E�;�7x�?�-�DZ��Z�zE���*�nk���E�m@������1s��Y�#1$��\Z�=I�����b��XBr�?���ͥ-�!�i�>�[��e�V{�W�!F�P�b<&A����8�`��]wB�κ��@kp&���h4ԛ�2����f\'�G���IS��}�}R⥅�JЛZ[`�m��I�$=�����D��֛&�Ǿ@�+բ��qO.���x&��*p���@��l����Β/kz=�i���� S����\Z\Z4ڶ1�5���2�3\r#?E�Q���L��Im$�Z��B\Z�!��&�͖��Ck�`7���\'/��]�i��5�\0�����2SC���+2��f!Og�ve�C�h����%%��-��)^\\���\0�t`�k��@���U�OŔ�cp��>�!8HB6������=�b���!��n�z\0�OS~K��|$��T����lJ�b�Ow������f\nT����Eg\ZU�\r����l{��SYD7I�.`��Ï}#٧���J4 �6鎬��M&�$!�2d<��\\ |\\�?g�\nKN��e�ӌ��&��ЎuѡIq�t���n~T _j��-����%��?�7�0i���}�e�iZ�O�&E+rX�e�{e��mX��<�:�KSy{��r�>K^s�VS2o�H֏�_��)7�����z_oe���ŭy�^/?h;@r�K%��LP��f��c�(|�_]��U�͒o~ME��������s��Rp�d��F[��\'r�5l���蔝媀����X����ec2B��Z� Q�j�h�!>&����s��@Z2]��i���](J~n�3��ϝ�ـ�hj��q�o�2��kL��JQ�c\0�8|V��D��>�Ι+�N�\Z�F��|#4�m=��9cu�A�����Nں�)\r�m�MA���D��os,����$���gJ �Ŗ�7l}�a�������w|�gRLh!���1�R�&\'��k�D\':8YިK�Aa�-�RH�T���������(:�=ߤ\'\\�\0���|�8�(��]x�Z���vJ+�~�S�$ً6��vg�Aќ�ʋQ?�j�`J��N�]�0&��b�\0�V?9�����\"�.�I3�2r)rk�+`�NiM��2]<� �h\n�˥���O��3�5F���\\�\0���,vS��+p\n�.����\r�J*RT �!��A&��U�B�tG=_:\\�]>i��?η@ڹ�aKպ�*��Խ+]���ҮgƉ^62�G��\r�S��|�;)�$=X�n!����l=�@�A����:�V56U�x5�Px���&�:V�V��-qX��A9�M�4��-����t\n{���}�MI AE0N������.T0b([���������oYd��%� �+�[�B��� f�<3)|���y-�d�����]`,5��l9�o���x��;����xZ���q@���51a�Ix���MOY�U�\r�Z�t�Kϭ�uJOyŹ�&Ҹ��*�ܲ�us#��t1��#4����䂹\Z��\'&�8�\0������m9;:��ͼ�f��f�)���I�;��Poi���=�DᎯ�0Sl�hsgܺ{�,��)\Z|����<�\n�x��*����i����`��h��`�P��*ͤ�!j1m!�~�J��\r�O�]��Y<�y�}�\Z�>ɺH���I|��P�����Bb��e�^��Έ;VT1��cj�] k^�O��9�A9�/�\Z�%�@b�.�`�� po��df��?�jr��Y��e|�H��h>�,�ec���R�es5-���D=��<��:3��ϩ�M���>���r�6�Ԥ��%z�uۇ7�}�F���[yx��]k��ݭ�Yr����9�IV,C2�\"���V�l��p�]l2�P�f>�Kp��֚J���bvw�`���*�w��}����*ʘ��)>2�q��e��^�)�P����n�GfR�@Ol,>iv�:�`�tQ�*�8\'�<��\n����J���;�H`�Q؝6pq���a�%��\r�� ��\"�A�n�3H�Is�:Y��a�e0BҲy�Pp\nﭾ�����!Λ���&��Ʌ\'M��4�B�S���+\'�4&�$ء��Vgg��o��g~��m/�/&t+���s�����\"#:Z�ܯ4㓉&_&���6\"xF�|w`AZ_+vL\r}��N�P���6������_��Ұ�ݾ��l2�b���qÜ$U�v�� l,s���\"\r�m��`��Yד�U��X^�Ms���6R�H@� &�冾�B�x��@d�R#U��O�Pg��sH�o�)n��Wr��t�Z�M���?%���V���D��Fv�9�1{|�;�\n$ynȚ�hM�E��:z���@�����*9V���μ�[E��Bu}<�\Z#�d�4*�?���d�Q]Bx.|9D��:h@��Q��/U\0-|_ۢ1�g-�+����}�Ԙ!^iB���J��\\W�]�f��@@�w�= .]��kZ1љm�G���]�x�0��� 14\"1�Ix��GL�[ ���>(G�A:��� 64���� �2DM�M�$�\r澐i�\0��� 8\\Ŭ�j�A��ʔ5�+X���o�T�m�_| M��yu$�1�ck_�K�o�f��m���%� g)[.�r\n�o�i�{4��Q\n\r8H�\rfX�� v�l���ٮ�!��P��m���\n6|ϔK ~�C�ȫ��7���:��s&u����j��t �+�{R���ل���n�t,�Ǟ�`���|U� � ��#t�̹��p=�I\"����)F ֓���-�\nqU��i���-�$�h*��m�l ��W��A��2Lh�`���i�%iv�2��� �Vh���LC��»>U�8.�`�@<K��h �Ϳ��U%�O�Hޡ�@�~x\\6��~�\n<�:�X�h�QAT����o��p2���8>�\n*��<��ӳ�?HM��\'V���L�\'[R�\n���VY\"׳�\\��X�@;t<H���\\\n�@&��[DqS�������B��N#F�B��\n#\\��,�-�-�*N V�ӻ�+��:F� Ӹ�\n*An���.]�B��t�v�!�WҧMw�9�F\n+P_tQ�Vo����7n�\nz#�8�����J\n1V<W�k�Nʹ_�Q5�~�¼�����XM�\nDfdvP�f�On:����a��г���X�\nGk��~ng��m.�3\\�\n��1i��jgָ�\nv�?�u� ���f�h6�2B���?�2\03�}�\nx��m���nV=OD��\0T���)��U��\n}.�����v�e�\n�?�.z��E����+ɡ\n��\\_9(�)7�\n��/�S��\'�g߃�v���\n�9d���g��~@���|�B-�����ڐ�6=��\n�T�[Cp����(,�_V+�L\rۨI��(.��\n�s�H��чc �-y//�?�\r�$M̤j3\n�aqYK�JҔp�\ZJ�j��\\P���\n�\n��ڷ�tn�\r�Ean�J;}(��ҙ���.��9\n�X:��Q�}�+�O�\\�_� {�ܓC\'a�y:��\n�� �W\"���w�\05�S Nr������h\n�C��0�pFd���l�\0��\"u�~2\"�T��p\Z\n�v�[\0���XZppi�.��c�;~&���\n���&�)h4�_`�F�L��<��:`#pf���\n����RW#ވ� �Q��ē4E[�\'�z�\n��S/��̼#@��%���,�ul��$t���T��\r��)��k���O�dS0�X�z���_����61k��K(��]1�z�ukpR�!������YC8���`dfh�.^8����!{��F�N�L{��z�)��,�\"�w�W�S��JDz���K�S����uᾒ�M��cc���cdD�(�Q��\\�\ra�[�J?T���?��G�d��(sv�����_����6+q���)ź(1�)���,������t�BUI+u���C�����R����SF2>�3`��v��\'�:js(��-N���֠����N�3����:�VS;���CT\n��]���C�rJ�2����m5CZ�\0�/@@1�1�D�ծ6��8g\n)e���z��l�1�MH��&��S��.>�U�B|2��ӜOU}��(���z̹�=�䆀�0j2�4\n:��W�n����\\C2tc�2��ĒZV�R�顃[��l#4���>1ε��E���l|lh�����]���:�Yň�3 ����\\gm̻�1)q+#���b�^0rR^��|��2�ZWc�t���V����Ұz�o_Ҳ��Yn,��J�����́�T�NB�(�-��g��\\ICڞ�:r�n�̿�>Tw�D\n�Q�!�@iD��r��ȭ!wz��L{��J�y7-�m���G鴞Y�[����k��En#Xv�i�w�R��:�M�7K�kR��D����.�� L9��%�S���J*����n\'ͪt^���Vɹ�O�����*�(�����7Y��(V��z|%\0\'j����l���ص�$h�TC���՞N�8k�Ⱥ��y�*�<I\n����(���x�$���C\n��m�-B�����YVAlͼ2�VS�#n���X����6��X����DU�T�=��1O�@�,x�������� �)���\r�&�d5�s/,�\"�d��Nk��N= ��]�٤.���2�nK����i�_�J�.��&t�8�&mKX+�C�Ɔ\n!�;[oV�w22���\r��މ#<*Q�f��(�����\r%�P����cW�-:\'2�U�\'Ft�ݩz\r��}�䟹-V�����\'eCCʅ�e-2,0\r1?�;IB�=S��\Z�2֥͐�&�׆Z�B���\r5C�ٖ��N��s��k��l�\'t35����\rN��I�Y�����ԯ!���6)��I�Y\rQi�^�\ZB|��f��C���-/r��U�Y٢�B\rX�[cdpSs3�%.X��|A���w��#(JL\ra�{p�9����(A�)ˡ�̮SPV��s�6�#i\rnu���:Ft\Z��\"P9���qP���R��PA�\r���k�<vW�P�v��g(Hт��c�+d7\r�Y�t�W^���}rIxۯ�u��$�/dMk�\r�U��:�w����,���&�K�p&�\Z���\r�7Gٛ�r�Xyl�ﳠ<U5p8�n��\r��Xd D\n����q�bc�\Zu��\rٓ��C7,��<��p�,�L��~rY�s#�\r�\"�(qq�6�ZN��������ş&�h��\r�\n���*J��6������V^��%W\\�y�\0��@:�GC�)̦��|u9 �Z<Pr?s2\'�h?I��I��3z(B�GQ#��`p�S:eJ�&�/�ʝ�aɋ��`�\n�}��\Z\\x�+�G\\%R���O��6���}�㕓悫�-�F�kRV��6���G_e\r��\"�}�Q^u�����YtY���sNl�dU|�7��t�U�FY���n�[�\nק\ZZ\r\n���d.��ji�!����!a�IWRH�j�wHBB����u�Xp\0b�Ue�$OrΰYe�JX�p�W !��L� o�Ѧ�?��11����]�Q[��7*�a�3�Ǿ�h��,�U���c�\\�ki����6u��J\n3*��Kv�i��A�&�4���=�D��q!蓸֧f;4��P�Z��e�O!�vx.e��8�jY�����0\Z����P�P1��S/���0�?�U!�͝�������6�??��Z��v�w=2H:�)x.���o\\��J��t�LU��o���L��~��)6�K�5S$ʂ8����⡧5g�g7�3lsuؾ�y���Z�wڠ�0YE\0����身i\\���|�����7��wq��;,r���L�X������\\35qv.Rh<<���t�hD�$��\\��,��t�\0_g�X%4.�tP�]�>�JT41l$y�,��`p�M��j]#�W�B�Tm����7gy\Z��]O��Y�T���b�Pǚ昁��F�M�(�b;ˏ�K���g�&\n�-��nzEja �#�[՝YdIdf@\\�K2o��/*�~�Hw�c@�2��,�����P�0������x`Ձ���dZvs�.��k�����\Z�5�\0��yX��$�j뤋��I��8���@t=��{9v��>:̷M\Z�ϵ����\rBt�\r�����3��i��0bn��j:�$L �g��r�a���������t��C �Y�\n��H���$$�T�̞}^�pfO]�ǭN3�%\r\\��-�A�J�K��K���7P�xe�\'�PH���H�P=,�O=����+�g�o�Yq�a|�\nk�3L�#����L���N��}�\Z�E�O\\0�u��FOR\Z)ā���;S�\'bN<v�w�LSڻ�sT���|�>Q����i}�G�D���7��OF5�B�Nov���:A�_-3��x\ZJ�B�@k�y50�g��P�L/�(O��)�G�.��G����n��E���\n��Q�(��;�4�.���`R��w��!�T��uwm�t5�o\n�2A\"k�ߚz��|lS�Pp�k�G�M�8�����Թ��f�E�x;˝���O�[����J`uO�v&_���-]����E��;|��x$���(�t`\"���/\Z=�`>&�oR�֫�� �ڲ��}�Z w�%��(�4)�;\r��;�)6qi9C��2��t�d64�Kծ�A�U)۳!���Pdlw�+���>�;��O��-L��hy��ML)\\VH��3_@AJ!�_��drN�d�G��;�Ϸ�6�<���wj�;�V��4dk�Է>�D��j�,p��k~*����d}�[����H�?�iK�[�i��/�(����^��\\���4��c-��Ȝ��)�͗�۷���@c.�V_;q���:uM���X���bW��Z`��E�ض\r�S��ky��%�/�-��u_EC�?o�Tg�NLC\"M�61ɿ�\\�)�j�i����]�m��b�#���6��C2���ao�2ᨁF���ˁL�W���%\rVJ~�p��$���P(��q��\0�RS�;\rs�}��o%��XOwR �\\��B�;z����b#�q���l��E��S�WD��Lex��骴@m!��~���|d�ET9v,�Wы���ʀKK��#\0��f�羀G�~��p��oPq�9��\rbL\\9�2��n�*PP�\0A�w�:oH�RR�ES�G��ʏT-�a*Qf�,S�7��q��̓<�U*\";b�r���^�&��7j�Fő����ұy�ZA\"�Y�!� =��x�`Jߩi.�?w~�/\"w�U{���Lf1:դy;�&ۆ[rD��b�Nv��㤄��\n�\Zwr��kHuE����N�/�JY���g�Si��)�N]o���}�0<��,���eS</�ܓ8C��T2I�UX�jF�\rPJ6�\\�d$Se=g�����JްS�0��il�ww�4�:����\"D�����=[��Z��\r���#�A@�f3�1_<���v����(QN��YCwo����}z�/�+x����\Z8��3�����ۀT�ё/��*�2^�oܰ�\n�0��\0��1�x?F(�8���V����/`8�І���t�2�:�]XK%� EL��償�t�~�nF�^m���KY�N��\"�� �t�hR�D�P�>(�F-�$>Q���A*0l[U[����A7�E�OxƟ�:Y��{�� ��2g�Z��+j{�h���N�.m�۩+�6��r0���jU��Y\r���ρ�F�%��\\�V[z��7���q��X�{4�a�����4����=P�Ҟ%^\\$��rf��z�;@h��謬&�f{��2�T��,Jg�~�KOb���H�$�(���\r_�\nt�l� ���6��Ax �70)P;�\01���M{}i���6�ާh����`�G��� )U\r�:pKB��R_��E�ߍ\n�}HNf0/��,u��I������)�-[\0��=ֹ?�+;Q��/W/{����lDA��U��Rp�rmm\rF6��ط��i�(\":�@�c��:�<R)��%+:�����G%Cy*�m?۴�/�\r!����i�AHK2���w:�%.�;j@۴�)H&�R�װ���R��wci�F��z��\r_c;�QA���JR�Q6}���%�\0�w���Q1��h~�B��ʌ���ʤ!�g�y���{�8��٢��7\n\n�Q��4Hw@��8<Sn-G�aM�RAӯ����gT1��^0>�\r����劸֬+)��7X[_�u�۱H��]\"���¡`�nr�Xa�;�?~��R��q3��ٽ�R ���a�r\0��B;��е��=�S�@dc]rRּn�� �<��6<c�=OR���v�B�n|J��In�;51V��SK��6ǐH��i�I�� (.fO��dx,�0Xl���J�.�*�Js�9��&�$����\rN�Z/�aU�Ə`�d�L�?�>C|����^v�s�_%�W���\rJ���*�f�zK�Hv��M,���,��z��㡫�?jk���[�0}��FW@�U0��W�gS��2c��FF�|�2`85�Sb�G?e?q7����#pjڥ|ɨ\0Y�����O|�aV3E�FW^@l�2�4K��<\\�/#\Z�����jp��!C��B��ڋTL�X�6�j��y�\Z\n�ё�4�W�\\\Z�T���M\\�V�dE��බ|@�]�)2ԕiq�j��\'�Vp�,�����K��zM�r#���6�h��q :�@�߮�\r���0lҞ������6�j����Zm�c����-��k���Y���xJ��5����_�*���]O\\��s�M��\n�T��27���oڠC�g`c���˰m�upa�\\�|/J�y�2�fy2q�t�@W�k�mx�G���V͒����pz8^V�����c����Ì?os��s���Sk�訍�n!���>x�\\��h|�,�e�0?��s4n�,�Lmu��\Z�^΅hU}1}=�z��i��y\'\'|K��W?[�r(\r�\Z3���z�ػ�fW^P�1Y�2&��ۑpA�U���%�����f��G<�+HH4�ywy�\'hz�x�\"�v�\\�p�$��bo��)cH�vS��n_���(a��WcʹA���`k��BʜѮ,2���S��^ú�D��\Zѣ0?�ޖ�f�t��&�!-�U8��<��Gz�<3\0R�-k�,�u�)���\0��\n�9e\n!I9K�W���Ǽ?_�IaYOrg�Y�����/���~UJO�.ŀ#��E��5�*�\'C�qk?�R�0��}<�̤����.� ��$^$��m��w`.A�_[�rE��]�J�#��+ߘ�4�D���,E��ǡGf�y5ܟ@��nN�� �36�M���[�y�FRD�m��:�m�\\���,T�3y���?�P����Ԉ+o��Kqra��U�Wj�j�:M���S���C\0����E��pڎ�U=\\ف�2%����72B��9����9k���\r?r��qQe�-�=�������Ozγ�2z!���.�w���\ZFPA���SӃP��l�Z�N���!&��Qw�|�c;\0,2�aڢU��P��rY�o:W�3��\"6�uxh����S�ئ��3)]T�C��ˎ1B��\"$Ϥ_�Y[^�e\n��41��L��Hݩ�̨�<���W`��e��� �U�&�z�տR��B=P�Kq�F�u�~��\Z8�������W�2\0� �e��`h��p�,��-n��}�;F��� \Z/q�@��Q!X�w>����7�.�l�8���le�Q,������� n��a��TߌC�Ӏ#���������6�w�&��f�U�\n��`�Vr�{��YU��\"V1� �]�98}�.�@�\rf[ɖ&����1^����g+fV�`6) �5��E��S�j������r�K����uj��%��p��A������9Xc<_:�l#�(�ǀv)ɣ�,��Ĺ��v�V-�n��z�W��E�2�D�����H�!~\\ꩠF�g�J\Zop\'�]Mi@����P;���VKi��V(�~n��&^VT�Sn���^��E��y �u�\0ci�^Su�%�D�{o�x�\\4\'�1�0p��G&���o����AM�q��5�@�=�� �@���3�#\Zж/*t\r��6<X�\r�IFP�x��N^�+�5H9_r����?�MΩ�Դ�Y��5D`$Bfy�I�S�Wq؛��r�c�W��w\Z��(��&�=\r�eL�|)�a��j.��V��C6���\r��d�\n3[@�\r���܄\'Q�\nŒ�+�N�A���:W������<\'���d����SB�4,��h��ܟ+���{̗r�~a�Aďc��K�Aj�TG��/6���\n�]�<E&@Ƿ�(\0��a�{|�,��@�ha�Z�ݻ�����N/F]\0cOJh�ÙL�C� �8hl�2�\"i\r2ӣ-�X�C +�R�a,��f6���!\\�I&C�#2M�8_6ws�E��U�P�[�Wґ��4L�{4��\Z��U��uw���\'�瞟�h�Q�i���5z\r�&�Ђ`~�\'\r�Q�l;4������e�c1b�0�w�~�{��wcj�|m]a_�����d�����4N��^�\\~��ʘ�����7q/\"]���$��&<Լ �Q��Y�)����N3���$�Z�,!��<�����!9�\"��\ri\0\"4ߕml��\"W�K�x��I0$\r�!L7����K3@��\"[q���˯v�1 ���K&.�]���0֙8���p#�~��\\o�Ӂ=1����D,��p� ڱ4zή)���F��\r8x���Nz$�wF��m��$\"�������]X����e��\"�?�|2�Y Ō����t�- ����ࣟv�T�ը��2H`o�HPOn�uDpRֽ��R��nO��k2Ω@7 \'y�UٙK;�@I��:7}�.�a� ̑HMϩ: qF�CO������c#�����y\r������<ե�l�4���֬�(�����w �]���5�Fn?�`�b8�)���k�������(S;�w�Aq�^�;�T�ι�[�c��JD_��=$x�B�2냙$5)�S���jrx�V��IR-[�ҟ�1���.;\"��=1�(C]e(�d-|5QC��v��,�?�a�d���kV�l�EW���R*9��)7���m�v�X��bڷ\'�p Z9@��S\r0,t`2�pl��s���W�����)�0�8aIpop�A��B��H�7�M����)�� ��J��Ob�\0�!�X�+c͎������Ǯ�ԑ8�@���G�h��ar6���r�V�B:�\'� 4-����I9��#�\"���iݔ[��-�l���+���\'2Y���U�~nZ����c�t�t�M�h?��Dm�%��ʋd�]��\Z��� MصB\Z��r�/O��5���%�N̶��\Z\n2��~���\n�\r���=a�⸬�]��7�\Z\n�Ŭ���W��O�O���,ԺN���E�\Z\r7�hZ����BLG���+���v�S�d��2�\Zi��\r���/�q�����uVc�x�-l�l�8\Z���Ú�Zþ��ި6���W2�lI�96G\Z93��Eu�f\0���/�\\T�k&��o��H\Z�B�Xf\"�ԭ�����Oݠ�%�K3ѓ93h�\Z�4�2o^i���w�$Se(I��}P�((�\ZQ\n�S���^M\0�Ù]M\Z��`:���c\ZTcς�6[�L�B�c�l��\rx��R()��a?\Z[I���ʙ`:�}���V\Z���T�Dn��+�/`{\Z^\\%��k��O������e�i��:�i����o\ZqR�T�=�\0��,�\ZXD픚�\Z�h����K8h\Zxy7�{�� ������zQ1+5:#Mu<�\Z�dh�ƨ,Ȋ��a���ܑ��iK��#�A\Z�t��Y-{RV ۷FR��!�%8��`�?O\Z�Ia�^���iJ��H�:�j�:���b��\Z��;4JpRӗ���ڎX�V\\�2p&����\n\Z��mҴ`S��|����0 S�s���EA�L�\Z䜫��:��H2fם[�Jm<����x�<�0�\Z�7�����۴��>�0�X����Ϙ���\Z�AS��[�[��kn/�:�%��>\Z\'��_\Z��K���G�Um�0�;A����-v�n�\0]�І��{l�CMv�ɾ@�ƑT�97C�=y�Z����3��Ή�c3m��!�p�r����&,��Y*��l}J�px5K�5&\0CRdR5P,B�a#1�Qf\Z\r�݊�P[��Y��fd��fsRt\'/i�Qf7Ꜯ�&\'d��W�zғ|��1��Ɏz\"z|���s�e��Q�g��J�Эz-��X�+�|��@�V��c�x��瘝��s|�0�����vɶP�5T�⍠!w�RL��j�Z�^\'{��� ��)8m}.\r�d��_�n�5�i?�W)��:�\\`�^�V��=�w=\"�[<��U܀��ĵ��9��YCW���-���GM�dz[��g��b���ꤼ�&�{7�����37ki��5є3���N0P��5y�}@٪��b1�po4��A�{��/\"��r�u��0yL�i�(���H�\'�v�-3�*3����^��c(^U#���g�ph��z{:��7bc/�L�V9��b���a��r��~D��,�?Ѡ�Gd)FA��u��`�`�ڿo���ۭr��a������چc�,=�sK�>Pס��e��)9R���B���[���|������-s����1��ʎSP�����E�GI�45��MC�gY��<�-b��O�,��w[��6eJ��G7U]\\�J�5\\�N�(-�\r�X�_�j\r�15-Q�_�Y\ng^�ʸ\"|��.Y|�b���O-�b$�t+�8j�K\Z���X#�[��w����w�q���51��Dj��LH^��t+�?����\Zc�i��{�í�q@:�[�b�dl9�ր,��ܱ�MS,e�lNr�}�6��n��\0O!\"�j�:(��!b*C\r�z�\"{�t\r �=��I)�^��sb\Z����Z�\nS��\ra���L�&�� �v�3+kCJ��I�\Z<��\0�P>���%@5�v�%�(� ���J�����aI��\\ѓ�H��O\'\n��(P�ӳ��\n�r�� �s���J�b�mLh笇�[�����\'{0���l�u��ʒhk����FNʨ\n�,U|�록�X��5�)�aT����ԩ %2����Ry���ūi*�%h%������$)`v:#f������,�����htD�)WMF�4���~\r���.x�d\n����:�xA�-�H>��J��y;�����<��I8w2A� ����ڸ؞�0���2��yK�|��_�����%d��`2�9��xm��l�Q�W��薕U=d���Z�� ��ʒc�WZ:�wP��{6Ly�?طc������I\n�����߾�B2ߵ���zՠev�z���3�ƘU��{�^qa%I�B�Л�W��<V�A=�l��L��^�<�kL����sj�ҥ?�b�ɖ�Ȓ|�B��?-(��+xd�6SP�Ij�җ�:K����-�`U�M��u�n֧�]BeI��Y\rf�6����y�;���6\r)��cUȫd4�B�nD����Q��n+R��J1e�,��P 6;\'�6��\"�� ds�\r�=��V��\"n*�R-�!��`�CG�م\"�^�e�\n|5��.ް������8�!�9:�%��������\'&;��C��r�AL�*3q��8����$�\"�n�����$�Fo�ef$���S�4C��;��w�V�R[���h\\o���(��5OG�m�\0}UJ5}��&�Jmy��NL5���\r\Z��0s3��u�6!$�0�KJ����\r22��ߖ]��Ó\'L\0����I�M�q�2�˪㏽\Z燧���i(�o���)�Nޢ�VB�� �n�L��c�\r��ʿ5�����2�B�G�3�u�����*�0o�Bǯ����h���� �}C����o�G�}Bd�g�D؉$�O<L#1�O�F14.+�kc�*���9\'q�.���;�F����r�P\'��l���1�e^>b6�chN���E4#\\��G�Y�Z�>�AQ���b&����YZ�o�>Qr�͡����_pe�NO�/�*�mv��ȿ�n6*��zo��n�i9\0T9\\>$�2���ݲ��j���r��whq���M��TU�Щw��͙CHN\0�I�<������.�O�������Əͧ�����fh_2E��_T�.Zui��Y����k.\\{g�:������F�hd��a���G�I��\0q�a�\Z�\"D\'�ϰ�\Z�;I>)$�pi�\"�)��l��}�*��3�yX�Z���joy��\\oC��w=����us�n@���=]N1�%P0����.\"��p����T�Ӝ�q(%7N������O�2\"h�kU�v��r�����\'�r�-�A�D��^\'�W1Q�5[ۋ�)��\r�85:��?*)KE�cZWq��8��5���q�r���@�7VR�ۘ]�7N�i���jR\"~R��O|⺥f�`�S:�\r����b-\\�|�ۃ���9E��g����f���]�Hh~�w���w�O\0LhD:m ��3(TN������,������j�p�J��̺�����γ�Sy�9s�68r�M��ڠ�c����4b�oT����,�>�\nu�� �U`.9>Y3`�yk������6d?j���/�&�b�\"��\n��<5.B��z��n���1YY]}��{6�^�\r��o�ʠaXܖ^�� ���捄s0���ɻs�y0��1��)f�x��� ����X�`��[Z76���.��-�*�P���U�-8m@e�0�5�\\��wMv�1.��ʞR��fq\"^�hS�;X����~�Y��Y���^���ϻ�jc�T�x�Fw7�?D?���Fa\0���-�@�h1��+��K(����a���]���DR��:[�_I3y����wtן�#F�3���=2��2I�8��JpL�]�]}���0n���P\rQ������cJ��YB�=niQ�=Ne��ձunS,���h����X��:�_��U��-��J�rS�5����������bt��LȒ�|��n 4�\0�ْ�\'�/XMK,f\"*Z$��4��� �%�-�b#�6u|��Ė}�b��Js�6� �h%�\nf�J(�U��Z���u�@���D�RzC ��oI���ڞ�\"����0��4N��Ϩ� .�,2F*���z&@��;�`x^�#.��W(�` :�k�Y���MjxRցִ�P=��T�_U~�Q� H�ʱ�y��4�BW�@c�\\����J��q��GC W�aQ��x����D�2-q%�ol�(��]?A� kuP���t���̊��z�\"qg����=�(0� l�\n°&|�\"�wK~��30,��>�P���&w m�2���N��8�a�>BdL�U�oVd^ �����\'Ơ� $n�X���37�N��<�g ��YL��&��>�� G\Zu�%X��-)��� �)���>����Q��|� ]v��C��,�� �7��ć�K�4�sNs� Q�<�s��|���� �\n �\Z?`�%T�p�6��#IR����l�R�� ӌ[*�kt�C��`x�{c�!ՙ\ZVW�S��s�t� ���@W4n����*�t��Q`EJ��)��)e%C!�Bw�픴�Q�\r\Z�-���1��O�!���T����v�������α���!ڨ-��Oh��c.�\ZH6!��ps�4zQ�$\0!��)u�^��)�h\r��ȱ>uOK�,hc$��!,�el�s��\\��055�.fOt��e��}!5AR�/��{Ca�F9�Z�_�t��%8�,=۫!?�U!��)ln�Un�(\ZDž�F�Z���n!Z�mNxI�>W>%��*�r��^�#\\�QD!]�ͯ%uO�b����;�Ͱ�(2[\n���_!i��\\ �eQ\0�r�z.�+;\0\Z)��o�5�3�!���\'��o�]����t�J��:soT��!�x��6�^q���>F70�VֵV�>�>���!���$��1ŭ9���5\n2d\\a�W��\Zq�3x�!�:�qɴ&��g�z�68֛�d����;tV;U!�&�x��[w����)��ȃc�N�S�a�!���>$wĜ����F�\n%�`IJ�M6�o�(��!�b��F�މg2o�i\nNl+\n�������b!��5Aà���~�I���� \\��v(�c�F!�(\'eЎ�\r804@��d�D�4��KS�kV!�a���ZU���/<rg$�R4g�Z�0��l�!��\r;�m1ϼ�.�{r��6@�C��Hc^\"A�!�ĩtX��Q���\"�����ђm]���2J\"T�YK�������J��,/���\\�/ �d\"�h>:���Q ����sik�Z�؝���Ew}b\"�:�+�@�b�$���T�At�6�r��\":fn��J\"�-vS���X�����^�\rˠ#\"JRIx���9��W�n�\"��a�ԙ�����\"L0]������ӆ�٥y)UeP���^��A��\"S�.87~96s��yjr\'��]s\0���\"\\�����&S�������^��\r�xQ���f�\"l1�sDŽ�\n���A��:[��5����i���\"nN��v?�K����g^�:m����Blb�Z\"��+f5f(gdC��<i�˳]uƨ2�ļ\"���$l�}�e�����X�\\�%��\'A��J\"�� ��.F͢�Y\\��gFy��2\n\rM�Z��\"��G�$@���PĹ\Z7~ԧOƦp�db��\"�):ze�0E��8��=!��7�Ӻ�l<�Z�P\"�/�JK��}���u���v�a�H���Q�LE��\"���!�zFۺ6�����&�\n��s�|�\"ʊ�Ǐ5��\".M�p���-zx)R�.%�.��8\"،V2M.�\\�e#�N��ȡ�>�.��:��I�\"�_���r����Џ��M�DZN�a���\"�2e܃A#��Q��)\r�j|��\\�rm�=��\"�L�p�6-@��!#�^kYڮXV�FX�65�\"�=�\r�B��>��\"�H��@Z�#X�V�WΫ\"��8�0#>�n��yl��v��ƩrK~�8\"�;z�`�~g�^�_���R���5��т(��#ğ_ܵ?�W��/��C+�����U��KG#�2��s��\'|x���,q��´��ޣ�\\\"\\*dq#�Lj@P\\�Eȼ��n�x�$Wҫr1پ6}#2;#�/7\n QrsE&]���I�e�Y�c�g#Oyw;p���ӿz�w,!�:;umj����)#S�R�m-�zşQ��\r���:� Q�V����#fl��~F��cAmĽ�b\rV֯qP9i�ϯ�#f���W*o��_�\n�����U8�_��\r֣z#m���b�T��ɸ�=���V�187�>��#��_Ӂs(���sx�a{�ۍ{A-����##�̨wA�/c��[��&Ge\Zx%%��=�C[a#��g���C�Y�<��b�I�V?��Ji^�aU�B#��yĽ�Tf���<��,�9z�,�;�P���#ә>ho/�>�,�F���m�@`�0��#g#�\06���|Р��YD�����̰أwty#����M��+���B�*Tv�Gǒ?�oLJ�s��#�B�oKm���u���q��G�KL�5�=O�#�V}�驛F\'y��#�v \"Ù��6��G��J�#�������]�=��0���\n\r�Ğ��^�\'�<$_���-�\'�8u�P��c�6�# KEum��$\r���ܷ2�ݓ�ϼ�+�B���ɡQ(-$���F:6~QQ\'���:�3~�������U$Eq<�p�Q�(&{=���X�t�\Z��\'��\r�~$#\'���b�}�$X:�cľ�m�]�\"�V�$2�� ���J8��+�n\nbO+9���2���q$?�\ZW�7�m�(w{K���\\۶����j�t$C��r�{3��;Ln�,u�w`���7��p�E$I�l;����_W\Zd۩���Έ\0fm��$XA�8��8����3�k.b�4��DZ�쥽$^�W+N��N� ��һ@�yA$���G��+Z[($h/��*ÅZ�O��x+��-롖�HةTE��$j�^2 �ܽ�4`��Q����Q��t�yTr�\'$l��۵ ���n��s}�Z�����?�|�:�$�V&�<�% 旅.���l�����㹯��$��E,�_��w����MJI:�����W�~���$����`����5�~VWClZ������ �|GN$�۱��lЯs�F,�ųeIx�\Z�:��>�;�3$���]�:)�~K�F,B4w�����٨/c�,��H$ԑ���<��*Y�+��`p��_�/�Ȟ)Od$�����`�MHn�#�<K�����*\r���e$�Lް��A�,\Zƻ�5�b^��<�=����S�%%��k��lf�;{�݅T�_��<{x%�[4d�%S3BG\n9K��\"�U�f�q�*A�j5�\'�ϱ%Y��y\Z���@�ڤ�~&Ǩ1�#�2Q�i%nMǮ�i�D7�@q�V��#v�E�>TCdW%v+4)�%�Oi�+a�dg�F2!��T+�%��k�r _����S��p��E����3��%��f3�qE�b��<��r��]B[��S@k1\'b%���\"H��k�,2� ��}���ڗ�E���%��>�f����XJ�&�Ж��>Z�y2p#�%�07�s�\0\'zM|�:9#�h7�d�Ja6��!\\%Ʋ���a�U>���Z�Z� YD^@N���N%�%�8X_�Ҳ���%$9ٔ�*�_������[%���܉���`�����n����TK�xCt��&�X��y&̷-;ב��u�H����\\s!�5�\0&\n�����u�Ob&�\"�M��f?�+AT�(�M&��p�����j�+��Ҋ�%�s<�\\�$&I����n��� w���߬�so/�*����A�&J� Ѵ�O��|�d�),�) ɰ+\Z�t&a�m{[�>�Bv\\`�� :nw�c)�ߗ%Z0�&v�i#��y��H�?��4���q��l�,xyC���&|��O g�)�2��*�7�o-���r�?���&�[on���� �l���aϳ�t�WL�QO�Q�c�&�ٖ�`�������#tޙ,�Q��)D�9&��t���*��2���~�|�1/�U�8�VY}$&����m�4tX�F����@�R���ʏ��bL&ӥYk�\Z�n߰X��O��ڱ�h��b)&��!���G����!�C��oF�Q`�B���Q�\'��l_J�V��Su8VHJ�������yC\'��DĂ�D1����`گ��/5)���F1��\'���+F�.�}M>W\nwJ�]}&�#V\n��\'(�\0*��Pg\Z$�\"PHG!��������5�j�N\'@�?B�{�uBt��i�\'S��?\n�=��PC�\'F.�1�E�)���H�;�l�/.n�7���|W�*\'G��L���s\r����+�Q�N*�+r;_1��Y�\'S{<���?���*�f�;��/�{�\'���v\'k7^�Y����6֨{J��/�՚�ɺ�dN��\'�HT*���#���M%GL�R);���ĪGs��:v�\'��Q��_��+g��*d���rVǠ����\'*\'�p�Gg�_P@EuE-�jbc=�H蠕\\M��W�\'���$�1,;�b�L�(˓�̰O�\rM�gд�\'�iZ\"Ʈ�f=�D�F��G����\n_�B>�qY\'�*Njw)M��>�SY\n��S��4�vn�a��\'��9_e�Z���h�Z�Va釦��vu��[*S\'�N�9���r�g_T�Ȼk�������B��y\'�q��&1��,��S�Nj64c�G�&Z_��3j\'֪��* [\0EE*J�r�V�s�����c�?\'�^����5j%�V�l��{�=���{�m�@���\'�m/��lr����8��*l =$枒�=�h79a\'�j*�,�A��.��+�-�T��גּ�*\'���ٍN�f��[�O�g��|\Z� �+\'�x�r�X�k��.��~��b5�ǟ�<�M���(:��MQ�� =����ߪyyL��ޢ���(Cd?hv����Һn*��1��Z��V�(=�X�tw�ɬD��.=H\ZS����\Z�5w�(?߾�n�T �Z�𦆽��\\9��8vW���\Z�(E\0� �73�/>�u0������AH*$\\����(\\ðw0#r�F٥^G�Acw�,t������(a�8����)��~%�cG��:~��\\\0p#t��F?�(fp\\3{�?\"�];>W����qB���5�mo(n���s��sT�j+<$�|rE��~����(y:wj5��1���\Z�!��`���<��!_�(}�6������͛\"�����$#�(��w�y��e\r�63T�Q�-����Y�T�=G(�Θ\\���n �lpu�ꑝ&]��y�i�J)(�f����qi�I�p����,���K���(í�ļ\rC ��v����S��KO]l]�t���(�m�}�:փ�{��Fi\r~^����`�@�2$�(ڮ�wS4�B�l�q`8�z��W:5HI)z4���p�hzi���T�v��/�x����)!��/���P�d���t�O�;D�Cᤉ�7P5)%^��V�t�_�\"L&x?�.���Ҫ�*|2OQ))��n��NpiM�O�+�eP�*5�y��j�Xb��)JJQ�%��x\Z���� ��r�]�(R`�)N�\\n��mE�\Zk�c���Q����(a���)OyX�K\'�A���A}a���̣��r-hķ)QF�����c��BW��k��!��)Z�!Y�ٍ��PA�;�����]n�����)a��QOhС/zà�S\06��`���)}�V�O�g�-w/�^�w6!E�����~�5On�)��4\"m:D�[:K~>��b�1�E��()�!e�����ФR݀zg�g6�эl��[�{)�Q1�٪�p�$�2˝n#[z*/ *?�|�)�X.\r����j�c��T[q�1ǿ�]M�:�*���&�����S����ƽt��0�������*%ҹ-��m\\���(�<�`}y���x� �[l* ��j���Y��6XAS��͐\0t_��B*0�?��\r��YoXd� �:���@��MFI�)*N骱w���j��u\r�3������*P�|˿(W��a�OB���A�e�����:��+�*RNڔ%>�+�߮6����n^wj��9��8�*^��sJ�^1�@E��Hٵ5�EW6>�i$���*en��|ӗ�Q��DU[M!B\Z�X�2�Ugy�*j4��m3:�P��0�\0�\0�O���9�`*k /�Yl�I�>CK:��x����A�n�6[*��m�Ұ�Ǖ�(�ySl��S�XL� �3Qn��T*�Y��D>)��k�\'�Y�O+�j*��UY�2�F�*����(���9�͌v�&5d2|�ќo<�v8*��nT�HSaQ����p��G�e�����gz*�.C����)�i��X���F8�9ю,���*�X��N��{���D��ݝn��$p��F�*��jl�J�[ĸد�i�u*_�� ����*�wVS�1�Y�����\'�;�n_�b����6�+s��f�hI���7�����q� z��}04+���%��<�����h��a��t�>���++�BPxP\'\"���X�p��T��hw\"e�+(Oi~�.I%�ƥ�?\"~Y之��b�oQ\\�Y�+E�ˎ��R���9KB�����$�\Z�5ާ�Wd+I��*������ �\"2�����:Gfl��p�=�+LJ��c>��\'W�&�(S˙�@Z�v��˃���z+^��H��u߲�֨�n�T����Z��7��+����u� i���\rn�Q\\24e�K9tM,�O�\Z+����k�d\Z\'ȍ�,�G�ww����qN�+��ZP�����2��lv,,�2��R�V�~�I+��������Zr\\�a��z���k�̧αk+�������� Wqz�\"�[נ˽_�{��,\rNM��d�_��z_T3$7Xc.�5A�X��,��X�مWvY9�bԁ\'��7 �}\n�,#�|�x�Ih�܈�G�:�`3��{_^�c�,aY��}PR6���`�)K�f�ism ���,h�g8�պ�L�ɋ�Z��:��\Z��í�>�7,m��\Z�r�b�����J|&\\��\"C8)�O���},���~8�K3k.FP?R()�o��j�rt,���1���^��7\r�x6$\'�.����S�WF�,�!\\u|�1����;�8�}�s����r��E^�,��lTѕ��%�P�~Ȝxq\r������f��,�A�&��B[^�$���NΏ�<��V��`ۓr,�S��\Z�\r��z˃�]Ӭ#��pD*tX�k��,�g��E�^\"��5�¸���6��FO��,�ڀ1f,Ms]B��#^��X����=�d`�,Ԁ�J`�j0�A�\n���*�L��zG,�i�S~?:5^:�b\\BG�Q�o�z!�bv��E|,㯢�/z]����_�����W���pd���.f-� \0��&���_K:�|▴,Y�ȴ4UTđ�-7bkٚA53�gFEk|��^ڒ�n�^�)�-#�;ŹD������o���IY�M�A�u�-4a�kO�67��ZޡR�)����&��~ �-;i\\3��.��\'=Ϗ�rs\'�1�\0�<�-@��g %�����uON\\}@l���f\'���-FP���9N��f���� ;��h��l�4E-�H�P{cܻ:�n{2�sZ��q:�7�A)l-ӌl�^�.ԫ���; >���<�;��nC\\��-ת1�:���c&h�� �ֳ��4V��F�-�,h�8�f�aP�jgW�>�q����\\�q0�-���k���yn:���Q�2� ������?�x�-��v�w�\\y�U�+.$aW�ݕ2.�F��-�{�=mM�z���ʶ��K�z��gR*���(.��(2�GKzj�\"��,�5�5�+�%�{ �W.��~\r�B|\\���}�:tJ���sf�Z���.���\"�w�k~�?�\'�L��-�ʅ+�?.#�$.N�.��\\\"�Cuj�%H��EJֈ^a.%%�،��kɐT�a�E��Qdu�8�ٍ~�3�.)�y\Z�J\n�*F��h,��T�T�uԃ� N.K��n�G\'�z��=_���Ĩ�K\n���O`r9.d-v���ۺ�Œ�#u�7��)�ғ{��.{�fZ�%��{�34���`zo<�\":qe5Ab..��I���)6Z�n)�\"6\Z]\r3�CFZ�W�.�)G]C���{�.�=�C�+�[p��-�R�.�B��x��~Cd���\r(olv��+��k\n.���SP*�6;�]XRC�Ɇ\re�g�f�.�йh�dBiHɀ�n�s�����\\���O.���:�%q/�}!�*���:r\Z^�E����/�u��C;���,!0�A�A+�Cǟ�g23/�s�s��Z*�j)i�б�e���Q�3>s<�/^��W)H��\\y�=Z3%�1�q^Qd�a�H/��<�E��=C��$�x��BHx��J�`Jw/&dx�G:�IVt�͆���Y�j���M?R��\"/#�ׄ�ז�4�$�ǽ����~r>-h%8�X�/,�b����2H���=XӲ\0����D�N�b1/.٘�����Ç��Kv�\\��)�w��S�/7���0/!B��s����ݒoB�ͻ��e�}y^/>��wi`�S�����{�oF����:��i8�/M����4��H&��o�l=�|@�uQ�D}�W�p/_�9^�`5J�Ҽ,�����Y��aj�K�E��l�/o-��7`�X��f��$;�,��rӍ�o�/v �\'I5�R/^\nBR7�0�1nQ=��*Q/��|�w΅��j�R��z�ZHcxS �Jb�͌�/�Y�le�zIGz���zs���s=\\�}�/��ԣ���Z��g\0cV�ץv���d�Z�/� 43s��x���|\"�@�-8�,�^F�/��GO%<�\"��!5��Ĩ��`0<�hCJ����/���\0��N�Ko��ʩۭ詡{�ngg��/��|`��z��Z�\0^\n��͎#0��\"���\0@���/��X���Ń����Y]������I���O�/�)����˲��jtS�+KUV�S�x��\\/��?��<@q��v�4�?�r�cm�5�/�FA@T��Z5�a� )�LOf�W��Rl!�\"t��/��J�tR8����֓�9�H�d��Fأ8��/���N��YA�-�Ruj�>F���u@�X�/�7�\0�q�e\nO^0�sԐ@�7��T���y0�!��Q+7���`G�#�\r�)��S<\Z�{b�0�����C?�B�k�\0\'́�<�ג+F/&\ZC��0�o��7Ԃ؝�^��\Zt�U�:+��0�CO�ܢ6Y�y�����K8�<�G��T�J�0&#��b�93LC\0����vX��<cɘ�TX0)��5���iKe���jՈ���T�|�F$�4t0F�6^ʤp� ,�w�R}n�lD�o�YDȌ\Z�0J;;�Q�x*��,U���ľ�<g�_;�o-H0X!ލ\nB\"`Á6��D� ��KP?���_�0X�73S;���\03m�&)�$K>7�wtT�\"�0[n�ڕr�w�e&���E_�J��C��䒈0i�G/�+U�W3I�i\r�·8��صS ��8�0s�a������`\"*�m(|-=�9�Ƅ���A@0�(���<�~U�-t.�&�]%/w�1���R�o0�i��\Z�j��È��~�3��~����N�U�0��Q9\'��j\r���p�WC�m�g0b���u+�<0�����Sb���]�^��D����d��0��g���к����}�bIYwe�.�G��0�pʊR�^=��Y����o(���a*�7�`�0��,d9ɘ��G�\n6��P��$JC97,n�H�0�qeR�1:\'����Q�D�u��hV���wχ0����\rXyq�\\d���]jʼn: +R�(�7Η0��?@�\nQ��Ɵ��q0 2���z�R����o@0��Y��i�Ѿ��c�1ˁ��\Z���[�^r0�\r�H�Cx�^\n��#��Q���Y�4NX�1�!3Q*�\n��X�}�(�b�z�=��.�/1&ZV�0�c;��d�Cl���ξP`����c�1.�+;�e�&����I��F@ЄH(\0�?#�^�1/p��JVQ���2v���앀�]L9��e?4J15V���^,����gK���|#�0�Id�l�o1E(�|T�Vc�-N¿-�����~zn��}�.�1K��6]��L��ݲ��]`r�S{��Ul1\\�^���8����.�l��j�Ѕ���4x�]�|1]�T����2J\\+ �i�6S�v��S,E�1e��䅁�8o�N�T�:�w8��<�:����1h\n@��ސ�EA:�\"H9��8�G��E�1���u�\'�Y ����/%���\0����B��\01�-#��$����p�&��h5h�J�m9���m.�1��7��H�}���h�tq�E��u6��x]�1�SP^&!� �!\r\nO�6\'R� ��6�a\n�-1�H����\"�gy�ц*�&\Z����b&fK�1���_���X�#/I*D�N�|�qx �]\n�\\t1��f�@g���<��g�-vI��P��8�ၳ1��0*�E�3:/��2p��կ�\0K2^�(1�6s�4�>g���HT��s�*�NV�B���1�\n Tk5t��{j��.\Z��B�5$�V��{�25�Ƕ�B�V������7j��b_R�nC�26?ô%I8#�Aa���W��=��ҀVONhE�2A��WB]��b�}��cޏ�B���#�2B�Qb9�L��\'���͛��B�BT�2Dl�y�O_!�D�FjF^�=�-�v�Q\"T2v�2H���s|k�-�D`�]^�9����c�,2M�p�=�B�����+6���A9� �=��)2SL��b��{�����Xs�Dž*�@)Q�2vzi��M%\\��Xt�#�$���e�*���2{yC$%B�E;������4>��f��&�b=��r2}��)vD$t2�.P엳���2�A���G�8Q2�%�b���S���O��5 ] Lfǘ�\n��^�2��ӆJ�J�/CC7N֍\r��j���i2�Mm��Q�f�!�=s�*����2��\"!-�2ؗ�Č���_g[)@��23>���,�.��2�-���;/�{�M�a���ޏ��û\\�uy�2�ٹ�<��dI=�@M8��>�4�c!^i N3fK�fY�8~Dh_��驪��%*&z�F�0-�3(��J�{�*�����\r[���ܽ�}�W33)\"�K\\,���h+��\\\")�`��/W��33�9Dk�Nd\r�F��$�O�2�>ac��c;�S�3E�!����ރXO+��)�\r^gPǁJ3O���j�}.�����j ^W/Q(ϿиhBC3Z:�2$�Fy�P�7bء�: ��y�M����3r��=�� aԅ���6�~1��t���}�k3�i��刍Z+�+<A&����n��?���%�3�J~wUV.gD���%ޠ��.��P �<Q�3�7H0�0��ԭ*:��>��a�_��r`g3լ�KY�C�X�-��k���g9[��۳�҄�4P��\Z��+Kib�E�WВq`r�\nQ�L�4\r���(HO_)��y�J��w�L����4�K\0�$���|%ܰ^�q�B۱&���K��4,�j����E6�������@���9&�YPd�4-�;*B_|�T�B�� �!��\'�o\n�Q�n�4We�.�e��>uɑ���y��Vc���@�4gѓ7���G>��\\��J���Zl��2���4�U���Q\r1#_f������H���*I�dl��4�����H}AC{�Hh/�}s�f��Y���4�%�C]��q@����m7k�D����W��*_4��]��]@w:�yٺX)%ǀ[b�tbs�m/�94�%_^^�[����2�ɝ��i��s.�Ǫ�-�4ˁY�2��˽5M��f՞v2,�.��\\~���4��\Zr}�M��cP�\\�GϢl8����E��58���u_#�gx���Tጷ�7��#�l�� r�5\n֚�8��q�W��@��C�HҘ���\\eg5�c��[�/8���>�8g1Z�n���Bȥg�x5Iw�N�e�z�վE�s-�M$��g$��5#_��D؞;}6]��&��]����&�ig�>W5$;��/���m�k���z ��p��A5*¨�P��o;�,���Xȋ�y�E[~���5B�`���D����Sx|�4�q|ҭ^��]�5Y�Y+��W��4�~�:j�/:�ّ,���j5o���x����~�,���\Z��F<��H5�ͱ�h����Y�I�&�B��iUI�?�ґ5�p7��3�����a�a)�I�����>/�@5� �Xxt�B\Z��}O����L��=\r�6��I5��<��8SI��R\rA�s���sf[H�D�35�f`dP&�r:�]�����ﰻ�ӏz��W#[�5�`���H��������ֺ>�R5�EOI5���$lB]f�E8f,}pQ����qtBZ�1O�6%\"�\\\\4�N��*F���`�Γ�\rL*=�6,:}u4!Z{Њ����w1�&�v1Ư?�N@��6=��G!J|Gl���̣�8(�xH�,�Q66G�\r�kH:�\r,6��Yէj�h�=Q�$rF��a6X�W��\r2Ya\n��N�D;3�>�?�)?V�6k>�� Q����Ha[ב�]{�9���F��6t�Y~\'I�Y+6�5}�j��g���h�y�:6��R��PJÒ2]b�D\r�\0J��n�Ri����Z�6�}������o\Z�Su��S��4̀n\rh�6��\\�楅Tb�{)p2�u,��օɥ�!wl��b�6�]�p�t=V�����X�ڦ�����fY���6ɕI�ң�Mk�a�_���G�#�1���m6����ռ|d5l¼g4�0�\'�B`V���6�\\�\ntÝ\0�`6͋&)��n��ek\"S��h6���UmЖ�%��?�M�S�A^=�X��|U��7�IS�X���ei�N��n�&�役��d�ay�7\n�@3�l,�Ul��LXfRuD�YRs�m�7�M�I.����-*��\r����7ȧ��\\�ݱє@���b��d�x�?���7��)J2�,\"�\Z�V#��b���{��7��\Z����>�Q�;�~o��gYF�7]UP��*2����Ҫ�#b��V ���E�Xj7b�1���8�!��U=��ɀm�����{YQ�7m���0� 䞤�3ţ�K7���\nFg0�bݕW 7n�v��h���X�d�\"���͉J���ڈ7qp�.�}�a�\r��`�7�n���s�B��}@Ӆv7|\n6�3�����6�#�6�I���?���� �7}�����>������`�J+iV��]��6��7�ق���\ZE��.E{(�Y���Khd`z�k�7�I��c�H��<=��=\"�F)\0�[!X�\\�7���#q�$���T�T)Foe\'&?�Prj%o7�@lD����I�R*�)U�ҵ����R�&\0e��7�|�&,S�WĦl~����e|T�5�����o��8\0�xq�� ���rgk*\"@TCRZ=�f���8K*}\"}u�a�ک������}�#V^���}^g8Kǖڴ\"-?�?,[��{/�Ou|�E��p��8`Ѱ�M�U8?��i$�����\"�O�{���8o0���;�ৗ��Pj�둪9I(���hm~���8~/��S��#WUD~c9u�uT�v8�-%���s�`N��a�L �L�M�ʫ�)�8ux:���+H\Z�+��2��O�)ڽ�B�x8ړ1���b;���0eR� �j�uU`�`�is�92g����������K:�ra�W;\'ӎ���19fG3�C�sw[<��h�\\Ê��;;OA(Ks�9>|�����yɮ����,�n��a�S��>\\S9I��<R�a�~�T�e�8JG,d���[�Js29P6�ATa~\0��R,~F\r։�+�o�)��\Za0�p9PŠ`8_�K#����,�lS�Vd*6T3-`~9T-��Hȏ� :9����1�S�\\\rb?FC���9Wm��\Z X����Q?uM\0Gu��7���nO��9e�9�D��g2[Oe�����-�DqT�noK-9f`Ewo����{��)Q1W��<����ɋ9p�m��Rz��m��Aq*���Z�3�V�\n�-9yԆ&/AX�H�i{b���7f���rw���=m9�1��Y�z=&�3��.T�� Q�A[$�ɤ�Zq9�7�T����B�R��#[\rO:�K)���X�9�5��V]�*�sꈻ�j�q7��˨��3��9æ��%�!��bdV@�O G�aM��㾨\n�{d9�n���~�A��b�Hc��x;��B���o>1<9�J�|UA6@�)Y��>$U�ٚ�駥6b\"9��~%q��2^J��D3]Z���4q��T���9����]�6�z*6u�jL�\0�<)�+��\0�9����$2��!躏��u�����Ι)�\0Я��9��qBYaهsd�y�Pù(�Cl�;]��%�:Z�?SjM�a�\0�yJ�c/�E�#�8��s:\n�1�.���V�\\��d�S=�\"E,vv0�|�:$���U�y\Z\n*�+��ž+cy�53�3e�3:i\"R\"w`���R�I�X�L�͖��7ۉ�Y�:k6�ZJ��Wj?�v�A���^a��-Y�E��8.,%:k�\n<(Q� �-g��vv]蚢��i���e�U�N:���O�3֛K�iD�����-�-�*�3K/:���j\'�}�!���}DD�%X���6�D:�\'����\Z�?��D��-Sp\'L�o�\"u���`p�:����y8��{#�տ�m��6mz�6Y(9:������m�e0i7Y��,<Yވ-|����:��d�� �eU���&�\0��W��C}>a4��:�_�ll�|S�\nv�\"�2������$���r):�i=�\ZY�eu���)��m냭}��s?��:�\n[�v��g%Gp�a?>���m�_k���5:�U�#�?���_jL�2S2������U���H^;R����^�y]���%a3_)�;te��;J�E�]N��j�.���1�*E����gWM��;Wͭ����%H)w�<~�D|�7V��<��J�;d��ߩ�,Z�z�^u��X�ј8�}��l$�Y;g���lSɹ�\0G,i8M���\0����;r����t���h���ؒ�Vg(�eg�1A�H�;z��m�p�Km\0\']s\Z�)�MR!\\�U<���;�\r\0oso��B>Ô]���uc���rբT�;��\Zm}�g����O�_t�%n�ȅۯ�w�?;��0�NU�-�\n����$Ρ���J���;��ч�Q�����Z�[�������h^2u�*;�7�D�nR�W�N4@���J�s�`�I����;�P��ֺ�v}M�Zֵ&�V����<JS;ϟ���j\\�%z�v�����}d�83e�_;�@��_�M�-��Յ����,(g�B��C�\'4/;�]A(�1��x&��̮^��l_�k8c<�F�࠴\0D�;Pw��Q���t��s�ρ�<�5�ꩺ�պ���v����\"�Șڪ���<�:�G��&D]ԃ��E3 u�ݜ�t���< `2!l~�s���DU�=�����T�R��@I<!{]��wf���ְ�z=~�S��A�>nJ�<\'��<�\'[Oe���0Ր��u�!�X �g<7�S�dT� {~��}&(94�Y�_�S#+T�\Z�<?ni6~��ϊ�z������ӭDzm\'={?63T<m�2�����[��g���C�|��0���ڌ<q�#;�&�p6fĂ^����8�+�:�����H�<x:�w����Ld�d�|G%N��=�s�<�\0͐����$���5ŵ�Ǚ![��G�7]5+<���ms�4�3p-I�/�8\'J�� }.�<��H.<�1z��ff:�/|�5�F�\"�<^��}��<���P,vuS��k��5�3l��D �TZ�~O<�.xnEe���j?\'o2����\Zh<�:-Rr{<�Ό�:9�/(\\�֎tl�]�dz^82�<ԫ�!q����2{����Q:�΅���2U�?=�>�j\r�;����|�s�X�RL�7Ŧ��S�=A@5�Ӿ��;\"�v�kkaϛa.k�g��E=%x�,�\'}�<�*�p���uX�p�s�H�#r=Mb�g�`<�C����X6����.4x§�{=Q�s�f�#���1\"C��+3b�5�|<P�C=]��m�\'�O��P�0;&x\"Φ�����e�=����ڹ����\\�0��$����[�#�b=���$��H�3��f4�D��V�rj�!?��=���. ە� &�IgCq�[O��S�=�dtz\\�IgN�\n�d%�?8���e%`s2��I>\Z���]ƚ�B̏Xv�ذc����.N2�NҹЯ>\"8����*S@-��bH���\"�ai����Ex�>\"eY�-�:0����37����,j����O�>p�E�;A\n�������q�݃���,(2� >rf� /�l�ٸ$\ny+b+0ZH�0wb�Vǝ��>�@Z�H�ӐǓ���9��)�W�|�9�^~�>� tN�}��%���������7� ��6�>�������+1���X��s��V���TC��>Ў��<�g�\\^_����9�K��:>��P�Tϻ�����7r�`���K�˒#�F>�EoG���0W^��ڭ>&i�n�\0�����Y9>�x��f?)��S���vRK�Z�����n��R>�Թ�����W�^;������a*q�o��ic���>��G��+�G�Y/�C�ꕻ܀6�r�&���?O>u�z�/A�ǚ n5E-��I��GUh߳? ]�M.��n���b4s�T�+�H��?ڟ>!�d���E_5�;$~$����&Ơ\r�?)� ��wY�x�mN#�\"( 0wi�Iٹ2��i?!a0?+m�!�Z���uC�<:������>�Gq�?\'�Ѐ|8�i�{_�z_)-�2�=wmo�w�С?,gu��V��-Ub����<eA�ǩKN��?3ͳ��������D[�qJ��Ŏ��g*h�Y?5K϶��jB *D����P��?4��^���?>��e�����c��2u�����u����?H\'�S�D>�<56�̧5c�#_{8��cf?O�d6�C���u���>Jr��h�t����e���?Q�O��x�R�\"��&��Z-�C����j\r?_��6b�%���㻧���֪K����xL��b͟?�����h]�0\0� B�������L��J��?��\r۴�<�����~����S�1.��Q�E�m?��`�{�W� ���e�6�W,��\'=B��9?�YꝤ��;ܮ��S{Bv�,J�{9��?��W^�z\0��Y*`\\�P�+��-Z���� �lo?���E4�@�+�>����~�_te���v\nh�@�$��yZΤT��+��I�f�ؒc#p�C�@vP�����o��4O�u���������Y7jѤ@s�\'�b �N9E=о��S�0�V��{�K@��k����X$ΩPB ���=P�S@*5�]��G��������ր��3)A{�A�q@:x��c��ÆPV����qt���(��*��@CA�RA�5��P�}���%�bI^�C3����@Lo�֟�G���j�_x0`�8C��{�p@`@Z=��sX�/�$Xv�\0���u�y�8=7���@^<۬\'=�f��n+�~��w��;�\0��@`�7��ZǛ�bvP���2�t�@hl�q��Ҁ@qb�ju��O �;�x����\Z{%y �*��]@v�Kިk��%~�|�`��`�<5P�����.@|I�N�A��Y��:_I⡤�a�*��)�g�F@�~�bR�鏒��Z�^��g���4�t\\E[]�x.�@�l�l�4��w�2��l��q��3P���\"��@��F3���\\;�e�0ہ���N�QP���\Z@���ny\\�g��G�B��s�5w>l���\\��k@�;���E���xS�\r�=�K�A-�p��y@�@ɦ�� =�Kw�ٸ\rk�)\\Xsʑ�]� ܈@�Q4��P���l��N،��F!��K����A$�0�j�g\0�3dhfGT��G�)̷�!A92�!Z9��^v*�\0D8\Z=Q�y��\ZAb�A:�(xʶղ��o!VG�p�Y����k�f/PAP\n֫Tbc�)q��8��Jz��B�y�d�?��MAv�{/G�g�^6�~F�\nĖ��SA ����A���5��N�k�j(W�{l���9�XIk.Q\"#A������c��7��6�QN^�\"B�z��͍�NA���2,�0F\rv<�qb�9�&ǰ�s�&�/�A����Z%�6P�ÙH��[h\n@� <��A�/��e�ʣP�3�sE�bz���%xK�#T�A�j�ڱ�]�U�f�89b�yFvw1���$�e�A�N~���mDD*�W �\n�e�\Z�^�Dhu�]A�@z�$zY���um�p��ܔ�^��6�/�b�A����8O�в�����Oz��y�K\Zt�\\A��iߤ^����f�W͊ßv��#�\Zg�aA������)�6�.k#�a\rU���A�e[ ���v̛3���k�g\n\"�������A�tx�</Y��D���:=��o���� u�A���R<K��!t�D�J�N�]F!ƚ|\rjB\0��7r�\n�75����H�τK~�+��DBo�B��5�}\r}dT���/�Ш�Ȑ؎��,BBI\\c�cx|���c\r�wHN,4��?��B�!!��$�ケք!��V[����]ǐ��Q\'B&��J��P:o���l�G|P�:q�_p�!�~�B*�/z��n���-���T�fY���zO|�E�V�B��F$b���$.�-zFne�M�*/����|B�V���\n,���O{Ƃ�9�Ң����,�B�MZ�rD�gK�Z�y��{�!�d����VB�<�=�P\'\r���l�5hhH@�Cp3�2ɭvCcB�R��*8Ř���T��/]s�.9T(���BۥD~ǖܬ�B>\\_E��q����l�Oxy\na�B�\n��ġ?}Vx��qA���a��I��wA\'6B�I��q��0�q\Z�* ��Z>��%C�!lC6m�菛���ml� ������2�}$\\A/C>0��,c���J�v�y��욓(T݄�I�CN6��Z:�cz�15�(Es�{(��M��Cjᥥ-�DX\rHK������q�M�`o���Cn�Uc�]����L��]Ģ6��C1r�Ct���[��P9o�&і�cv�Cǡ���b��;C�]���U�:3�<�v=\r�\\��G�)��C��v�m9�)�����w�l��N�d�?�>o�C��4)������inj�<1�u�����\"C�O�5�X��W� ��N���J���6��C�]�ת.7��fb�ʹ��o� $�L���pDC��3��(`��e#���b�3Տ~;o����4TC���j�U#HL�\\Y%��\"��rS�{��t�ʪCܽ=#\\�4C�.��f��>)!���\"�g�kC�yԊ�JDo�H�y��$���+�|�C�O�W%���tߏ�Y�|��&�0�V�\\�C�9�~��f~&��%{ 7�ȡ[�{aOy��Dg9�ե��+�����w�w\'��YJ�E�D2P�wr8�I��eW�}��)�s�n���\0��D?�j^*���{2� W�c|� �]��y��tDC��\\N\ZK`a��o���2�L�J�Sw5:L�TDHoB�T\"���/�T[�h�N;��*�w�o��^���DLSg��g�ݨ��?�猑���Ϟ�Y1ћ hDW�n�L�4�+�X��_�;����ť��DX{�L96E�f��=k�=7:�#JY#s�Ήe�Dk��5�2����o������+�פI0�Dp\"�b�P�mEN��}^���[��:�q�f��D��i\"�Ǟ�t۱�R@�8�����uvuD�T�E�)$G��et�s̮E����\n����D��\"�KꖌT���+qr�9����tJ�v!!D�%}�I���m��F2�=�(�\'+��A��X�D���\"e�9�V�I��m�425C��A�P�%_D�Ǝ�6��S�x�hjﰌG�]i��i���_D�U�;F=����d��Z�K/�h-$���X#D��\0w���V��vRwo������~�MR�D�T�X6�_8T&\ZUc\Z~���@��Q����3g�TD�z�\nr�����#o8���]�q�˩8g��w��D�\nDKbu�4iQ\'�:��-!�: ��2�Wi\\�D���N��-I0���0?�4�zf��<�Hn�E\r�ע�4�/�X!�3��~\0�����]�E(��ڏ��K\"�y���69=a�1c��3��0�mE*��h5|�y;f\r�k����a�퓤~N�r�E0�8��L����}qe%�v�B�|:�h�w�E7�3~�K�\02����7r\"U�%�-�_:�E:��kf�d�tps*H@�+�I�35_\Zr�3�E@����̣�Bn b�8�ϜNW��%���EG-=����|��6W �+xA0��Icq_�+EJ�VU�2b7jMy��8]�nF}��Z��?4���E`��f;��u�\'wI�$�0V�o0H3��]E}���ZnՍ.G���{$�X��(jyq��o=E�����6�x7��n�oj�a��h.�e��5�E���\'�%Xm�-�Q�s��ĊKeb��b�XpbE�-8\n�u��T/�§�Ώi�x�r&� �3E�Q���d��8�LܮŹ@��#]s�EЈ��\Z�T����������$���;�QE�!�!��ͥ���)r;�n6�Ek�S1�$`^E������(�v��i\n.�K��w\'�6QF� ͥZ�Z(5JC���k��\"����|dwqFǾ�\'�T%c�*|k���ȃ���u\Z��N���MF�kfS�GK#:���ݒm�Sk����%�F�h�ޙ���Hm��k��ܲ=�����F�w�سY��=�!�B��\r�J��9��F! �P��\r\'�w���:(�Q\n�=jl��hj��F+\"���2|+�FU�Ê�;Y�Iፔ}f}|F.��Az�~G-v^t^��0�\r��6<�ЅfhFC�A�>�=���h1��XJWDX�4�\"�=TXFO���V3\"���������!k�P�FV�ї�a�6y�p\'�3��]�\'�����,F}&w=4qu�\Z����X?�F{��W�B!�F����{K�P:�i�gF�\\��Z (\0GpF������y���������3n�����#�;F���R�<`�=#i�z�Ag�Dd)��qF��z�g��sf�7�B���X��зIw�E��F�t����v��\Z�:�;��`�j�ʠ�B�G���^Зα�tG�e����)�����\\G�n���U��>)_\Z1�d�/ڝ�2����>\Z�JG\'AQh�M��V�v�S(��G���l^~@y�GB�T��g��{�yÈ����C������I�҂�GB����#�(�>���+:��Ծ\Z��h��/T�GI}��?\Z�)[>\"n�`���C�����cf��G]�˽{0nّ)m�whn�m��TC��&�G^�P�[��ְa+�䂓��݈m�g� �?�Gsq\"��qk��,��&�u{n��i>���m�Gs}꣩��~V/ ݭ���[���:�Y���\\Gt_!�HX���Ыwc�q��e�6�>�T�k�G~x%퍾�˳���>)����d(�\ZBNJ!G��+��8�v�ͮ1g*=^5�V��逅�\n�\'G�@�Pȃ�U�! 9�1XYM��Qe� \0`�G��?}�o>��UΌ�5�O*q�&+v�3\ZRmh@G��gr8�,�B��c]u�_�a\r̊���;�~�G��W\r�\Z��G$�7iD>�b���^Ϯ��4�Gij���YqU鄦���l�\" ��,]�f�C\"sG�\'��Y���7��5T�j�d5:��X}{�G�H{�p�<Z��tM��h`�K���AL���G�����c��`B+91l%S�;�8B!����G���:��}���\\�\r����#}g����u�H�Af�%��1h�*#��\Z�UEUh��>B=r�Hp\r�\0V�Q�]��%<���� �&si\Z�[�H��He�Q��e =:��2sO�8�O��rȜŖ�H,�o���1�@O>�㍕�R{���5k�e���H69��ß�$K���&��k����ѕ�\0�y}H9m�Pȥ�\"�T������թ��/5�{!�#�^HB����]=|\r�UJ¢ ��I�����w�j� ~HN�>��+f���VQщ�2������^��HY��fAp�0]��Oc�B �/�$�g:H`kfN��L��h�`��o��[agvEHa����YB�3�GD��ۊ�Y�|��_�]�H{�8;sP�%;�q��9\\��}�I��W��H�٤�]ê�\0��{/|�� �odl�J/1�H���Q�0z�/�t�$��ځ�7�)��IH�� ��{��\"!b(���Ar��D�]���R;��H���J������` ���t�HV�{H���5�\"wqnG8�xC��Z�(��\07��H�Ǝ����+@�I���b��^=�QvM6_iLH�3�:Bk[e<KR�T6�uL����b��h���I���10�%�V`ޮf�a����8~(����I;B��S���G�l���D�k�l,\0���)IGQp���5u��\0c�{�}��A���>IN��E�篏j�4�G\Z\Z}���C�J�C�IZ��4���ֻ{җ�7ta�xВH�1�����Iy��\r|�q���SA�*� ��}H��P���I�|���0���7a�n����e;�\\U����I�>ٽ��^iliA�$UM>���l�)��$iI��g-��Ӯ�P?{�u�OR�Rr%��~��I��?���R�`#��C\'\'\"���\\j\0aR�_��I��P�$�K�~�P��mhf�� l<!,%�f�I�3d7�Z4��U��!V�R��\"�߆Ko�d(�I�B�qM 5{s6 li�Y�,�ɦd���e�\reUI��?�5j��n7���+#Ik��S����c��I�z�V�%�N�)���S�\\���n�$-/A�@�`JR2�����_�s{\n/�vgLi�:%���J����e�N2\0�Y ��by�_�B����Q�J(|\"�D��w@�w��;`�S���E�\'�]J0^i�N��餸�y�L��m�����s{��(J;?[(��*Q��{�84ᅶAf�U�����5f;�JW���e�j���JA���U]1��^s?�Z��\0JX#j���w��ӚY���UZ+�v�*+��J]�Ơ<SMv�idz���>��অ&<d��CJc=[)�K5���\0��,�S*������:F��\0Jj�;���K��;s�\\��2�~���4�J~��=�;녞��#��� \"K\ZE+���13��J�3��AZ[��;�`����� ��3˦�o��J�4�+`b ��\0�Y��y��6WqDÅJ� ���V�sf�^���������0G\\��J���Y��F ��>%�PMF�?�i�O��J�� p5v���v�����8�����( ����J�bjb�4Djw*4���鱋p�-:Vx@�~J���N�@�`����P)@-8Y�X��-���J�6d��A��l{��Й\0������J��hJߏƁ}0��.��p��e G��^��~��QyJ��$��E�!\Z��\"���w�ON�Ї��^mJ��P��#d T먎=�v*Qf��tz\n���KI��1Z�.�|��=�3�S0\r���8]�+K3��S��xF�Hn��ZDa��۳��w�s)*xK;P�asz�nZ������*dWđ�j�]rKP��F1)o��47��@V�O��fU5�g��Ka;��$�(Ui��{i�N)hi\'��T͌Y01Kb�C\r���it�ꅣ�\r�?�\Z����6�Ke�]�o��?>��M���3�<����XKxd]p�씟�6r���7q��7�nh��XJ�!K�Դˑ�k�HV���AZ!ښ������\\��K���;��.8^�&��\Z��t�%�n��|T���K���ht������â�ª�x���\0,\nyw�K�z��ͼ3c��ޖ22�?C���@�b_LK�;�zt�u��,1}��V\Z&!��5W��,(K�k�$H���t8�0�%\Z��\'����%� ujK�O��E��n�AF�>���ڒ�d3��\Z_�0D)\'K��\naڄh)Ĉ#�巆B�P��$�;��L$Q�A\Z�3�oT�֟�x�p\\�C����i�5L&��z�����֏�ͭ+� �*&X���&R&�eL>����S\0��}ߔ��\"�.�j�nȡz%�a�|LE\'����J�nE�@��l�r!3Ά�����v\rLL��)<�Ք���j�F���W���B0�#pm�LOHT�c���K�6���.�e�;�]�Aes˿S��FLS���#V�o�8ki.�e\"k������ߦ���pLq4���Z��յ�H\0�e7f=��\r�\nDC>OVLz7\ZUۼx{�UW?EQ�K�0�\Z���`hl�L�(pyp�]��&�8�,\"6��$cM׳Z}u��L�f6���=�([х���`��#7~�(aL��O<�e7�j}�;�h��&K��9�<� ���L��&}��P���ܛ���|b31ԁ�γL�C해1%�PǭV����q{��{r\"H�.�Q�L�C��U����hU;4�n}Rm��x;�Č��L�vQ4��x������A>��kr�k-�\0�L�:}��%,��\\}�~8\\��Oa��8�DsX�Lܨ\\H��=c�\Z��I�p�b�x�n5����IL�*~Π�E�x����I<�\'�ULhk_���f�BL���]E�;B�/y/k]��r��\"��< H$��L�����RH�x�s�q�5]���M�f9M\nA\'J@c�V�M|�)��=��5�c[���!M\0(��@�hF(¨�o\ZB�F�A\r�w�7��M��±M�C���-���8�V�]\"�?F��/л�M�H�ڋ�TY�Q��6��c��f�|h�MV��s����h��$�Cڝr+B�w�&�u&k�Mk_!:�ó�a����#����\\ ^1��M9�9��7���V%l�z�[B6�\n�q�ʕ����MY~q��_$�19�w���`������\Z��M[�i��%M��AD�.�l.\Zn� ��p�T�t�MyL;�-�ڛ%I�u\\��K|�,̞��f�] �M�;*j��h�\04\'�u\r_��`�t\"�O͝��4M�Į�.4jW[��a`A�����>�?6eX�M�k?[���.�0fY]�d\"��dI�����雌M��q�\0q�.��2ݾ�A/^G��/Q��tr���MӬ�P���=ȍM��>lw����ov�\0M��~���Y��k�@L�\"#\"/;c��vj~\0�d�M���ϸ\ZP�\\x���\09�F�\'?Շ���=�M�Sp��}T��.!���$|N�\\������YN��ݝEh�����\Z�����,P.g�KNm����gl�)���A�������?�� �N�N�egR�wS�n��\n���G��К������qN9��]`�T��*L�)w��\0��+��Ã-r]���NA;ַo���5�9��0��6��l�Ælyz��NL2��hګF�$H[=N�R��2\rQ$�{���)NU���{���W��kz\\��m����lf���#7N`?g�\Z��ˀ��z��rz�e=�s��%�>�Np.j�샣f�7F�,D���2٭:��2�+,�Nz��ҡr��9;��,=���䗈d��GyNȩ�x�=�.��ے�G���n���ca(N�\"�?��X��h�L��f?e!#+�ov��`��n�N�&\Z��c���\n7���˾�\Z��ŏ�6��H�6N��:�Ǝ��>�%�,7� �g�`e�z�,N����\\��pt3����+,l�\'�cOQ+�Z�N�v���ޏ�LTgwR�����\\��G�h,��N�Io&�8���M{����n����J\nӐO��N����e>h��@�J|j��l�ŷp>U�ЏN�j�$��-�GE)����&J��4��G��ꝝTN��k��Ӳ��G\'�:����2]��F�+����N�Y�GDb�i�\\iRL<�&\'?���<���U3XN���WNlN4~�� J&�R�\\x�d�tR_�� O� Y�@�9�P��-�����>�5��Uw\n\'O�R�k�g)�eFè���l�,���@��O٨�|�e]|mK�~�F�ӂː;�J\"����O(��{\\�ǨU�^D�%��!䶣���X��XJO:X�Z�%��M;���� ;?���l�%�OCdo^���r����?�Ӳ�d����8�&V�OG�ޣY8+]�^w�t���X]ݯ�s6QzOV��/���~Z��<�)�r!h=��X�4�XOeI�Vi\\q<�:�m�W�DlK�̈́��\'B�I�Opb�6�<Fϻ�i��䲯Hp�\08�2���C�*O�e�/�<���H�} �J����t��J��3K�O��%z������wv��W8X�F��]���l�UO��g�6r\r�\n�p���H�̐�ַ��|�O�AR��`qL�?��O�3v�v\0Uow�\0K��O����q%s5z�t��g����UU�����i~~�O�u�\\\r�\r$�-��k}�3��`�\\�kx��O�W\Z�9��a�q�(��:�3��+�*+�����m;�O�~xwU�.]�bfW�`�h��W��\\ܭ�mP\nkH���6w#r��v{0���=頻\0�i.Pz�Z����b�oBL�]��+n�@$G�*�Q�htP��\n�O#~�#��� |��F:Q�>݄�G�PkS�Z�z����0�D��ϫ�I�,1h���]jP=��q���\"\\&�4���o��0��iPB�1Bʍ8�aS�h@<�^!����|\n���PB�H��<�}�F��J��g��=rv����qPD+ˢ�RƆ������5Bh�X��]l�WP_��M�4��W�M$\r]��\n����]���|��a*Pk:ES��v\Z�L���a����\"i\0SO2s�=�Pns��%p�=c�z�{\n�~�0ј��\'�g����P~���ؤ�X7L�G�0�����Q�dkL;�}P���V\nB�^~���Uh �y�r�.F�>6pN�P�ps%��\\*���� #Q=���QCg8�P�1mK�=�Y�4�$� �r�֨�\r(|/g˥$�P�j\n\n�hbZ�W�>}��n���oFb*R��P�Ľ�7_c�Z���s�82F��%�\ZFJ:7P�P��*HƲ���B?�B��n��Ƥ1K ]�sgP���3��JF�Ñ�m���\0�[l%����$�\rP��K&O���5�\'�RTˢ�\"L�r�<ϑ�6��P�,�\\�������Z��`�� !�s����3P�W����J�\0w~��\ry!R\Z�[BE&@�$\r�P�O�\r\0�݉��U}$�a��)S~\'�A\\�KP���%���?�kN&�{(��bG�!㝨���Q\rLd�^�!DG4�g�t�ʚ�H��\"��Q�AYZb��DeO���0�{��Y�0��XvQ&��g��듣a����I�\Z5�Ec&#�M/Q8��.�f\Z`�>����z;����+�8$3�Q>+]��6\'�Gq�*r-�U�Z\\�>�#)�MQJr�Z#6\Z��d&!;]�sZ��\ne����7 �QKP��;�XӦ_f)�ӊ���C�?�*���Qj���4b�$V7U�����M|RbBth�QtAFB;<b|��OP�t��gyW��Z���Q�МhE�c�N0��G� �7�=���m0�;�]Q��]��Bἃ��r4�?N&��u�Zs��Q���^Q��JC��}f���L��[`%%��˚ſb��iG�Q�zz���u}�Ϙ�տ����>g��&9�8�Q���H\'��<�~dhç�����r�$�uí0Q��!��t��L7 �\n,N���{N���w9Q���[�#��T�ӯ�`�0����QԎR��IQ�N�\\��s�mG��i�&��!0�\'��2�Q�T��\Z\"�sԭZ\'@���>=;F�s��P[Qˮ5w=�Cz�?\r.h�+�p�\rW�4U�F�0�Q�~�uR�kH%�6�t�u�Y�0��9�|�*/���Q�\nZc���4 �gie�-�\'���kR�|7���5����I�|f�(���j\0R(߳\\�ߥH��3�����U=��N�K�Re���{(�TF����Q���A��� �Ǵ��NRr����2+P��;ʅr{\0���L]�ۇ��v+�Ru8�ip=�J�����]����wB����Rͪ�՛��2��$�!��F~e�H�`�UR�P��\"b��M��=�sHm�u���/��M�R����ោ��a:hx��E �gkA�� +��S�֠ǃ�n�D�J��H0�h@��ہ*Nt`��JS���tBmۄ4t��\\�N9��H�6����ÑSBd��q�RV+?�������0��SK�I�r)�},2��xq��j��6+����i�D�S^[m��_����,Y���%q�[G��D��=o�S_�R�v�F���F�5�߳7s�\"O��\'�GSh���`.�!�1e��UG19rj<b�4$�US�,��o�5ȋ\0��\'�Y��b-XjQ��(,F�S����-�y��q.�/v5�A����t*�S��1V�D���FE�T4f��ہ��N����S���\n@G���f�_`IF�aQm]-�<S����|������|�I��2�!Vi趦AS�̏��[;�c����C�\Z�E���4�?6��S�A�4c\\D�56-��#��d*���ҽӾ�R���T y^�\n��\\�ew\Z�K�W��rN�e/�{��T��X�%����Nu���z~cƢ�C W[Tz��1PW�j=�b��Y\'ǪtNT)訓{\'T*�Y��n�Zv.\r���_�\"��\n�)j��eT<�!�M��,�z�[�~>V�2��#}��E)��TT��2��?%�i�I� �`�V-� Պ��tTV���\\�-�OKXǯ��.ŹN��Й�u��1^TY���;�GV��\\7��hW~�O\\Q{�\"T_�� ��G���l�y�N��2Ni�3����Tge�\\PM�����w�Q{ki}��\r�i�T�u�s��)�m��[|l���I��\\³\ZɁ�mUT��Q�<Jhw����)�\n\\�7<�̽���G\\T���F��H�QX@fS�B����Dh8V�I?T�w�_�`zz�v��5`rP�[�}~3��UːT�ϓ���0.�ð�!��h�P�1s0�d�T�m9���������v���.x������9T��� .&�:��ouE��/$&�6$�����U�9���ț\ZA�=Cm�Y�u\Z�n����U��V�Ι��pWx��$���?���⇼P�U���cZ�al(�+;��\Z&�E�\"�H�y��LU�l?l�N�v6�0\'�,��(N��\0�&��U04+@qj?��35��S�r�{�ۈR�;͎U;S����TS2.�}��1X�SH�&��X�E6�UKCW��͢/�Z3��\ZӶI���q�����UW&k?u�n��.N�o���^���X���ۅ5PUi<������T ,sT����a�6�����VUl�6>8��S�ᒻfu�8��� q~�$r��Um�P���g[6�m� e�c�Y�;���U}8�:l�֑���ŗ�[��J҃��\'��g�U�y�B���\'l;F��VӸ�z�`|\n��C1BmU��k�\Z�\"�4�i`FVm��¬GX����i�EU���۶B��?�wN� �-��Č�m\Zէ�U��M�: ݗ�L-�^�)������|�;%�U������s(�4>\0�x�}�v�X�*WR\0>U���W��qP�u�U�T�=?V#�20�f�~\\U��ꚬ�7��E���EԢn;魺��9��kU���@&?b��K��R�[,�3��m�.\ZѮbU��ɧ�k�)���I)G�55 ��f�R7U𒃔�`Λ)ͽHE�l�#�ez����@�D�U�eD����Dk�X�5\\h=,�U\Z��8Z�\0�U��.���X��}�b��,W�sfyyE�Q�F_��[Vn.v&��a+����8�� ���ۚ�u��A<WV,�{+��x}-��\n uM8g��>,l���{TVA�\0ד�DN`\n�)P�k9�WQ����Ҍ�Ż>VK�����a�F�q�k�N��i��7����P�VX��W�Ԗ�x�@*k��U?P��6�Ѣ\"��5V_Q�Z��H�؛�N\\��&IU�b\Z|�}�V����xG٘�o)y��0�`c�V�࡛���J[lu����Xk���Uv�\"PV���X����Q�3�����L!h�\"i��#:@V��̲D�3�3��>/���Qu`ʤ�R@@V�\n�ͳw���œga\\�~J8w�N:m�N+V����E��I0u�X����^�@&�2*֝X�V�bqPJ���\0�?�H����Y����zVΪ\Z\0�G7h\"�]��c�.����.̭�I�kX�V�q]�5� �.]�@M��*�u�ǰbʝ�DLJ7V�*�:ߍ>��I<�7��{��+�%���Wa�V�>�E���fw)\\����QQ.�H���z���\r�V��k�8v�>KP�3�X�{��:�lc@W�E&T�V�U�\\O����8�NOy�!b���y�Av�ZW\r5�|��a��U���͈�3(|���ɓ�k��W֪����2�|�0�N�ҵxǣYO24pW;�&��c6�pD�X]`�g���P��U]!�W`f��E/C2��r)����l���PC����Cj?Weō��_�ցݲ:Ɂ}��@R���W�иEX�WfC3���Ku!�7J!l7˾��b��Կ�Wh�?�Cexl}�$�ӈOJ��c����_�WsyWh�aϵ���:[\"5a���cQQt �E�Ww����R%��G�`{��\\�]�3+�G]l�-`W�y�ӀV�]@�aM���xezE�h�sQ��gmgW�x�/4���/�\'x/�֑�-���\Zzs��yW��o��5ҁRj�?��U����Z�(�O�%�zW���x���O�`5���$=��U>o����WѾ\r�%,�Z A+��u��8����2,g�L�\Z_�W��w~�s�R�8Q,��q!��\\s���kM�W�9�,��P2e�!X�:�^uI��Vn��NY���W��}���� 8.t�f��������0\'�� �W����O}�l�eVd��`���1�0b�W@XX�P��� H�_��0��Nc\nZ�`O���X\Z��?yv�}������hD�.�嬛M�v�)X\Z�p/}��պ� \r_��<\"���\Z�!�}��X(覔����7���+N�b�&1�Y[; ��X(�f����\0����3J���m�<\n%l�r��X8�P���_9���kQ�a[��-mS\'<�@�!V:XH�P�pE�%��*�+%������t���f`�Xb�}�̿L��,�gC���y~��eb\'�\n4�1�Xc\"��h�.�A��b�q����K�ӹw�_U@9Xi���c�R�)R�Ǡ�.�#`jjŏ�3?Xp*-[�DP<�V8�A#���sAgS���n�cƽX���ź=� )e���.�x���ipX�L]O}F��w Vy\"���#aq�\"=���rX����e�$�<q��>�j�M���5̸z>6�X�!�w�4����-<[��E��A�b����g�z�X���P�I�J��pe8� ,cm����[�X��%B{�0�y2�|�k�TU�gm����#�YX�}wɗ�R6�7�uM�T�!��ܟʷ��\r2��X�xE��Kƪ.��,lX>w{oy��i�%UHqAcX��r��5�y����w]j��γگzж�\Z�YV$���/���@=������V-��dc�Y�E��4����e�V�L�F/�Uk,��~�Y?c�*�_�a�)��\0|��4S�t���}�-�ʁYAD����]ʈ��xYN.���7l}e�KYB��Rb��-tsx�c�o�@�ԾP��ɫYCϩϟ�$�p˯=�qj=hs\"��(\ZN�)��Ye��k����\Zk�t~�n4�&�����p#�ӜYtm�k9�Q�煇0�`��N���i����Y��%�F��V�O���c���$�m�3�\rY�l5�pY=���!�\\^ox�>�S��8�Y�-Y��`x�^.��H#ƹ/�2�������4�ē�cY�@�e��?�W\\\'�l�m�^�9��ďޮ-�+�Y��=&���~.Q�LF����˛�՟Y�����iH�\0���U3$L���$��u�H�s�Y�7ɡܼa/c$ۮ�7\rDr\\��.���FE��Y�1n��8��D�o�X�a0ɫ���q�p&E��Z�4r����B֏���zn�բ>� \'�dR��Z��G�\n+:P�|>s��Pc^�M\"q����Z%��4�\'�\n�C��`��Zó��4�cj�/lZ6�r�U�B�!�t�R�ytJ��I0+dI\"�1�Z:�\r�}n�Z��`�tj�!L�l� {���bg�ZWj�I\Z�g*(�T�\n\\L��br7tɀ�\n�EA�ZWr��\\#�͕ �!�^lt������|o�C� �lZ^��x � ��-�}��:ɏ\\��r����NZb)�VlJ��fd����X��#lW�@ W Z��S-�`��~��nV��\"�\ZUM�T;���?Z�Ӧ�8y�i����kP\Z3��葊�]��Z�֪�m떕�\"|O����J�}^��@�ƻ�ZՍ�������Z/.�)���w��}��醶��Z��-r廒�^�*`t6����/[<�h��[\nx�S�SYP垫B��_X���K8S�a#��[\n�*k0�5D�a�4������;�\0/_�7�a[��&(܇\0���Εl�j���G����n[\Z$�k˹���d?�\\{\Z��ݐ�g/�_,ip<[$�r(���ڛ���8�tb�Mq\0>�5�F[5��4(KL9�&-k��GRK$��z,�b6Fp��[8s�i�!���@�뮝{�B�u$f����<[B�����<�s��*�;�չC�]+���S�s[D���\np�h�S�u�o9�a`�\0B,\r�i[]�9pmm:�M�����9B�>��,A�2��[e2�<�w�t5�H���m�|��ۯx#F��)=h[e���6�S����\"���ñ�xakAyR[t;}�n[��Z�VL��[��qT�u!���-.��[u�#���\'�KF}�a~\ZY� 1���L.��p��[[8���a�kI�����%\'�n��&� �G�[�)ߋ�T0�uDWP\",L�ǫ[�I,Z�F[��%y�KR���b6�=F\\���ad���[����U:˃VN�:�O��e�x�Ί�J/Z[��~�K�X适[\r\"\Z,�3z�.�S�\"�;r[��\n)�>l=�l��V��;O�w��~ ��[���f\'TOT���e��f==��&�i[�6���;]���qd���J�\n}ʂ�ɥ�D[���y�V�� |�t�\r\Z�/]X\\m$�����[�ȊD1V�yE�M ���e��\n~%U�,�+��\\ɭG�ͫ��F�V6BZ���@۪2X�4Mw\\Jt.�N���4\0�8�\"��̥�A;(R[��l6\\^;��h�z{���aT���B����{�`ȵ\\s�q�)�|���IJ<ͧ,xLI2[K���0�Pd\\x�c,��k�Wb��a̎�2�\n��[e]\r�sJ\\|�߯�T(t�2�����Dn\\�����3�\Z#�\\�#G7�����1���\0nXs�d��������\\��?�����B��:�{Ӗ73�L�ΔJ��\\�283=}f.��p{�磨ƭ:���md\\�A�RZn�9��lr(X�u�O���mC���C\\�_{���[��G�D�%���@X�o[tOx1�\\���HODĨ{�d}d2�s�I��1eO:�yѪ��\\�W�ɼ�SW�#6+2��}O}|FT�\\�I�\r\\��$��m]I��E��#��(\"��sc�1�.\\�lC��v!��B��wns�ۘ%y\Z���Y(\\����=�0�b��2֚�� �`sTR<\\��3�S�R�\0�N��E�u=ߘo��\\�y�T{�����M��P�u|)?�\0@\\��1B\\��U6�ӡj݀]bz6�x+}\'�r����ҙ] ��|$�,b�Ew����`&uI\"�5��`a]�F��5&��-]���V4��dB@�F���])�S�w����M�U՝X���Q�=�X�|��]<r��ֽ����4�j\n����hNR�z/�>���]A.�ɤ����z�.��j��/z�������]H��B��� �m3���сh��ܯ0x!ek��-]J����ebU��f�7b�^p3KOF܍⼶���]Nq�C�N����ٓ�ԁ}~�<a�������]`~$�����mg[�K�5�N�d�jsi�R�F]f��C���-\\Oa+밎#i4��x�$jK]��Ɇ���m�{�w��#ߟ^��,n����,>]���FHrP�-s��en|��Xq\r�mf�`�y�]�Q�˄=Pݵu�Q��{>ϐ���]��C��ŀ���Py��(���c�:C#�8��]���vY�\n�u�)���SEE�\\�>A�?]L�V]����r��6|��W������w\'�Y]����V0��5,�MΌ9�n�rDUu�7]�%�hqO����ݦ��t�q�;+s�V1B���]��ؕ��Y�\'�T���ҹ0� �P�=<���q�^��T�Ⱥ^��ķ>`�}j�NG�\\\'̅^�>\"�5�J+f��i�7h&C�ϭX��2�\Z�K^7q���Ud>�V�N���c��ha��p9k<^>��r=`�����7��\Z����)�x��^AG����^�7 ;��6`�*�$^�v���_^J��p�!��<��ʛY����w��\n��)l^Nbu\Zx�\'!T��8�o�� y�Y|�~�C\'^W;s]�-4���V��8�4��^�ͼ��,i��^g �K��c�Z�0�(�!��~�zW�\":N�^m��m[�(��C�,m.^��v�D��G=ms�v�^�������Μ�Ȝ�5y\\���s���%��^� ��q�(j� �\0I��f}��\"l�\Zm^�:�U���r�U�Ь�D�UA6Yf��Cb^��U�jx��{��+\"&?5�Y�pѵ�D?���T^����\n�0{zs��>Nz�/�@�6�R^̟��LG��ZܯQ�8V�W��9�\n�Hb2^�HR7�-�IA��ÿL#�~{�چ���Uď�~��^)�n�T�h):3\"WjEv9���NnZ-mѵ�K^�P�K:�`X����Y�qp��I���~�^��e2��2eD��\r���/V��q^<,��^����.�:�%5)4N���c�j,��6|^�܄�yiT��W�a���D#��Fu���2_2��f\nw/ީ�}�\r�<���8Z���$�_�M7��Ę�Tf&%Z���1����S�/�-�v_|B�O\Z߭/B�lk|�S|dLjhe��P�_,����aLO�0lӔB\\�U�{��E�r��@4_-n�2zYfy��#�ࡖVP��M�\"~�_^��_=>7b�\n���6�h鶨Pj|�\"�x�h�y_>�m��j�T�(��\\h���3�-�QHcE�_?�,�I�be}��8�\\L��as���/_T�_:r�c�ߘ�s�N�/�]�\n�{�z�J_du�A�#fE�*�.\nn9�T\Z�9pYbX�_lb�R�,�\'���I�h�e��R���D8}H_o���Yٱ��R�Q���_}�GJ1m��]�~�_�8�@�zdf0p`o��qq��U:���_��7Q����0�W��A�-@\ZC��T�M�2�G_�����37~��q/j��\n��9�S�#s��_��ՔJ��\n��Z�D��.�s�A 1�d Ͳ_��6�4 ���P�K_�`��I˨�1?��L_����%M�SK�9�$y�����g����_G�_�$@\"�4](��XU�jijf��Is��҃_�Y�UsEƹT�4qP���M��DS�F>��C6_�\0�9z�������QT.ox�lI�ޝʄC_�כ?&m��H[�J�R��c#� ����M6E���_�,@�\\S��7�l�o��F�P�T���ިG9_�3̥�3��*m �h\Z�nM��� ����kX�`��>:��6ԩf���� �µ�(�r��P`1: ��u��3�4�v�Y�ya%�̸��\"�t�`�>P͈˙�$I+=�ƛ0��t�W26S�_�<pH`>��Ng�K)������p&0L@e�\Z�`T��.�| ۞ĉ�[bT���I�����������``�tD;����?^+ʓ5m��P�|�&`{�Y��h�uA�lT��N�-�o�rg���`�\n�����R ]��s�?�I�di#�8Gp`�Q�V;�`��������_1p����R�F�;`���hs��4D�U�.f��$��E�a�<p��[�`��\Z���>f�>�-\n})��ޞ���gGK�!`��!\r;^w�����jMRU\"&ݻI�ʝi�<l^H�`�=��I�x��\'�u���|���ΙK��!`�dI�UgQ|X�!�f��~j�m%�Z����p�`�r��{R�.1�B�iKk)���5M�����`�S,�Ы�=��3� R=�hR1�\Z��M�$�a\\C���҂�L��n�U�[�ܠ�{\'�Ua\n�U��~���X��s��\\\r>�cf�\"��a�2>���b�[�/W�tz\rl�y�o�U�da\'��Ɏ�D�u9MJ���5u|C�m�FhS��00�aC��$�qas��6[`��u��֓�@�W]-ͧaw�AV� �>[��GA��I\Z� ���cr\\l�a�f�K���ZX~���ͺ��3�b�]L�<7a���,�\"���Ɣ_*{�Z��m���ɛ���a��+J#�\r/_��T�QP��O��l�齎l?a��E<2`\r�_��ra��\n��{!��{���Qدa�����~ͧ���ZBv��Lj�*�Ah�*��b�a�a��3[E�ZA�&#�: �U�����x���Qa����zC居Z݀���;�4�r=�Θ|�a�u��Y�]���iZܤO�� �U�h$�\'��a����D�����mE���R�Bt�\r�?fQb\r��C?�D���K}���y�/��;|M�T$�?�b-�a?�<��\Z-����r\r$���Z�|Y�\nbG�03⊼��\rQ�Q�Q@�vI�F.3�Mܲ%U�bJ��m-��ʧ��5�53P#�A{����6��\r54bO�Q�wù�LѠâ��������9Q��lrlbP9���ޤyP���g��\"��Ę��\"V�bST2�Α�CCD�\\`ݮ>�E���?�J�3��bZG~�u��&\r坯1楃/�+/i����bgB�x���ɖ)#�B��_�u��r�߮+b��W��(����:��|��[�K�0�b�K��s�m�Fd�A��ی����R�$� ��b�b�ٲ�J�4k&r��hX�+�v�Ot�$��b��0#Ϧ�����A*�>�pjq�L*LN*\Z4�b���;��ؽ��w\"��S�8�\\z���}�N0b�Q�\Z��B��ZQXNT��6���{��hB�q�b���9��!��X���:\r3_:���mcb���q��q�[�����Js��آ_~�4/��`q�b�p��d�^R\n�` �=dA�c4�e���s,c#ƈ|F��w�J\0�`w~�^vEp���L���Lc�K͘�G��|���\0�wO>�W!�� c�����:���Ue��H�C�B\")S�ε{�c&��~L�Rt j>گ�����E@>��Ǣ`�cIH1Ũ��?����\"��= �\n��w\"�{���xcS�g���y(��0^���x�a�&[�5 fcT�2�骘��\'�Te+b 6;�c��yc`G�����٥�T��~z��F�+�UȐY�,c��udy�OT.��`�~��<jx�.\ZaєW6c��O���`H���;�г���Ce��]ϙ�T�c�9�כ�aI�aX8\rr,F�\"���C2Sy�c���^\"�쾓�U���a�?���WSQgb�ɡ��c�Ho��ԓı�RU�~o��ϳ,�P�)RWF�c���j��?�l\'�84��F=/3;6�)_q��c�.sH��*�-ب�_�:��%�;R\'�K���c��!�#B�i*+\"�\r�n���Iƈ�XÉ��w�c��ʗ����BZ��7���;_�Z��ev��d$G����j�w}XX�y�u2�Z=���Io*�6d/e�\\s��S�:짆��$fl��m�o�jd1�3�\'m��z�U=&٪$��?t���$�h\"wd5[�&*%��\r��G���8 �pS�-쩟q`97dBݑ�\\�E���gE�8\n���Ʊz\\\rx�/�dPⱱ�����X.]���9�F�P��+��zdW�\'MJ�e�~vx�h{�s_�|q�a�ݴ��eͬdc�3b�[�] ��~?;\\[�Xk��З��`�sdf/��dBl�����ه�P��Q�=��#djq��e^�1wK4I�nt�fVC2���2@q�dr\\�=�y�Z��]�����.�ɱ�� d�|I�m���t�P��瀨��9��6���|d�� Y���@@��+���ғg�ʐ>$/��d�̃���qx?�\'?l�J�k�S��#���d���IX&܍��s�!�,���,\ZVwYL�d�rSzn<N�{�1J�,���[o6�`�W�o��d�0�(����X�}v��`��\"d��W�i�^$������_�f�d�ri��\"�fvx���ʅ�e�K�A?���S�2�d�N�WN�VSCƨ!�\\K;e!����*T���d���9����0�2���h�,A*��;3O�A�e4���c�r}�cٸeK�WC�s$�Xg��-e5�kyH�~����^}��\\���f��#��6���e:iK��p[�����8�qB�Q�ě(3��eTm�?�Uy7,��K�\r��pSU��n�8ͷ@e`݆�.�:��j�E�\Z�Ұ���5�\Z�)el%��o�Ѵm�3�V��ޡ������بSs?en�R. OF�OX�P��h���YC>�W�e�Y�̻L���s{T����=B�rvIFUK�:e�EB ���Lz�t��=�F�,�fa��Z��{��Բe��J*��bV�,�Cv�b�ʃ��P�~���$eؓ��r�JQ�(�O@_�y\'�+�*&w��\".e���N�ױ�?$ 5e��%���� �i3��e���b|(G����\Z�rK��<���7����f=E���Y��\n�2��f�V�L�$/DE���fl/�io��V�L5�rp�Hͅќ5!�fp�0U�~���Ƒ��]�f�O#�iU�|d�pf1\'��)U�ɺ�O�+�p����P\r�k�ζ�f?��sӊ�1���@cd`��苲��6��fS�~�\'h�,��P.E1J�>3&��`B�(��Lfb\"=��g�.���>�{aۇaN��l;)�O&a,Wfh��P18�jIU��?7z���j�u��+j(>fo�r\n&٣�/ �E.�F�M���_�h���f�9����Ȇy�7���,W2�)��[��*�of��� ]��|i�\Z�\0��ֶ�^�ۇ�g#�����]\"�h0Vq�)�0��j�%���I�g�Ӧ\r�W:�P�y��}p!�;�\r��c %�,g-�Є��#h;>�� �|���3�zB��V���g6�B�Np����&��\Zg�q:�s�d����g;74٣�eZ��=`7y����!�uT�9V\Z�gV�|ӺgaWo�E���\"�{Q�T��S{>giI?F] �{���[�Ε�$�^#�����d g�A�k��D�� �dB�(9�����Խ��&�g�a�aq�$��+q�0k+&����;\Z\nl$�hg�%b]Zj�d)��-��p�F����j� 9g��� >���0�n)��X2�)���0?8��y�g�����>���ٗ��Y���l�\r��\n Pm�Ag�=��{wu2���x����j�5�?������g�;a�¿]�X�r�~��\n�t�¹�n��29��g�.�$�o8q��;Z7tz?����ǰ滬ڢ�+gΪ�#���K��Q]����\n�44w��K���g��H�7�I�ʊ�|�Hi�ųlC���g�g�d�v|U=��D�FB�;�~�j�Z�f�g�ӕW����Ѧ��\n[T�\nuA[z��Gzah\r�ʒ۩#j�E�;ի���}Qe-�6Ā�Ch\"�n��9�(a�h���[�GQ��<\"�h\'�+�:��u�g�cYc����g��=��hh0zN���W:��\\�j��X�%���@�f�;�hBkD]{�8���h���~-2�q ���aZ�zhI���� x<�������%��ji�����$h\\���|qA\"��_;^��g��cw���\r{Ph������Z}�����b�����Δ�rӍ>�h������ͼ�����ƾek��Y���\Zf�mh�h<g��s).�ז����W��0�xZHCD�h�]3�l%Y�+��!���F��o^�=��hռo�8u\Z�:�8�N��7�IM!�\Z�l�j�#7h�F5��?uPF�1�/\n?�qH�\n�NƐ�tb��h�p�S�=T_k. �>�U�C�m�iV��h��1��p��F�)y�dʱ�vNyN/��>�u�i�r��� �!8����@�D�a�E���{i+;N��3��̖� E��ݶ�A乴����+i:���;��0�$Pv�����F\nSp�2�ֹi[-R�[��4��̠�/IwF��E U�Ux��i`W��Vd����gz\0� *����N᷌^��eipZ&��`Un�$P�9�xA �ӉĽ��\0�iyH�E�ѵ3E�\"��:�L�\rX�ۀ,$|u�Wpi~���::l��w�ˉΤ�ի�8Q�i�(�wAi�}eP�.P|S�[w����W�&w�4��xi���M�W@�U�}�P�O���O�Jj�r4��M_E{i��0�yN��G\\8�9�\'���1+�8*Hdi����iYS��\'�댵`R�^���y�g4i�n\"}�V��u�3)!ƫ��Zϼ~�\\C^&�$i�ʱL.1�j�u�������0�u��/�&�S0i�����v�*+���&��&@kM&Q���͒iқo���H�ӝ��J1��������p�@�ti�t.%�-��x;\n�>r�#,��K�+ȷi�c���\'͔Ҟ�>��:��2n�Q���n�^Si�h0=���]8Y�E\n*�ӽ����ns���jh\nј��(��&����E���e�I\\�s`|j����S���=�s���̼*���a� ��j�b�횄��^U�sv8�$b����M�3y�j!�i��H4�]�eL�8��\r��S�l��cbj0��4�1@E��X�<�\0��+&�Yj$6g�Cj6vt�5�r#gAWFٞ���#�Y�� ��~j<��� ѩ*$��*s�r�M`��eҋ!��j=��8P�N��T\r��]L�����T�C\0\n�jC,�U�Ma��\\kdD��wi�ۭ�jG�\'�C1�K�h��b��*|����YF��jI\n�&U@������4o=����w|x�ӡ��^�jPV���]�g���2L�RSlw�Bq�K���je+=˵hO�d\n:t���(�����t��%�1��j|TT��*����/#[��;�U[�B?,�ܐ��`5j��8ڪN9�q��������9\r�D@�fTUj����4�Cu\"�B(�7��\rX��F4�u�Nc�Èj���P�.�cH�q�I<�;w�hB�Nb8\\8c��j�q��[@��Ta�`�v�+�s������f��j�� ����-��%Z�L9I~xmH�Ճ�j�o�9\nՠ�Βy�[��1 ��I�����j�\Z�p���IS��bʟ�S}�_�V�ä�j��&Z�y\n�r[��!�đ֑I���} �I+�j�~˴nBA��-��ԘF�O�Z*���3yA�^j��`+A�+��9�5����� SJ:9�rj֯c��Q1\0Fo� �fyH�D�0@)�C��j�]I\Z��Kxz՝�^���!bu��j���A�\0�.�S�hN�}וF�|Y�E\Z>��N��j�Sw�K�a^�&���4 �������tB�۬ik�i8�5{�?}�����\"!��AW,@z�Uk�lq�Us�n��3\\}%2�?rz�B�̲����k2�{z���$�\0+3���QӉX�˼� P���kH%|�Qe�H�z\rY�o�6Fp��i0[��節kN�IP��-\Z7}H���DC�;�ή>�E��kO���Q��|6[�簮+�U�MT/�2�kUM�,�k�EH+��y��Jv�y�PKӨ����e*k]�^��=��u\Z��;�d��2����k��X���D�\'w���M��C�\nᎺ\'k����w�6XN\r�����0�c����Ֆ�k�3/B���� ߪ\Z�p�\"�J�g�h���k��ɷdZ�qNЛ�\Z�,�F\\��\Z�D+��k�U�ۜ[9j��L�2u��9�?u��k�]��70T���q���#�C��֠�Ҳ0�j�k�Zu�����,��=\'���С�Ǘ:̨kP�;��N3p���\Zxq��RW���l���ֻqS)�?������\\Zԭ���!�?l������=��Q�>|Z��Ɋ���>F5Y��l!���}[z�m�����W��# ���\ZlLU[�d�g.\r���5��p\rQ���<�[�vr0l_](7e�/����6��d����p�k#�l��H������݇\r]0�$�{�� %O�!���l��!����O����euyM�m1��/��l��K$�s0FP|P��\\�V�S�&6B�=��Ѳ�R�l�i4쿦�rn�����u�)K�j�5��W l��-���C��j��ؒ�g�\\�rľϸCI�Cl�a�{!h�Pw{�%&���Y0���Ғ��|tm\0�\r>�ȑ�Ov<��k�a�e�C���@m���O�]^�-,�qsr��6�V�%F�ڻ��meч_�TG\"^�jU@��s=Fц�5|��m\rXC�9S�guh��~��RkYme��mN�����\nTm���G#И��}�Z�YՀ\"m9��(�Լ���y[�EA�����I�\"Be]�m;A�\rd�+��j�7���qN��y �v�\"P�m`��6뽩������%��Hj��l�̬?��.ml����|�,C�+�IbI$Ө�\ZH�Σ^\"lQA�ml�ԟ�B�:���,�%c�5iN���9��mnm>ގ�QQ0�504|$8��]W�p_��Ltsm|i)m`m�I}IdKj+�9�V��̀j�|,�ĥm~<]�xL��1���A8�z�\0�-)@ʅ�m��bO-�7°�O�a$�L��w?�JEQ�U8m��@�4�q $����E�˻9������+�m�oyfrG���T^5���\\k�p��0�[*!��m�v<��.K�� 1\\��� WP��L����`�m�ש�s]S7LAZ&<�섖�v߂��fP�F��mm�G��� �=�����~�5OURD\\Wq��e�m�؊��}������BP\'|{M2�g�בY�m��M��ڽ�ݩ�=F�V�7�R�Ͷ}9�dg=m�ӥ\'�麙RҀҌ�*z��#:��,�`$�cm�`ek}â�yF�[���u�\n�e������^m�<F��h�v�%Eϑ1�^A�Ի\r��m�.+���ek�$2��p&S�`1�q���3m��%�ʄ\\���[<��-N���2��ER0m������j��8tɗ��K�\r���?�G*�znDs&U��C����n},��i�\0v��_�l\r��n#�O/�jb��wP&i��#��_`���YО��n4cyp��}��%4��m�b&+uvB���n5��jAx3f�L�{�����iƎ9�nB��%E¶>�9d[[}�3�+�hl_�nL�z�<��k�Ʌ7�k-�\Z�A�ADפ�`(2nZ�\rc� %�mG���V�@m�@vT�IJ�Kn\\ �����/J��-+��\r�X*J����i�Hndk�.�C�z]�9fi0���jϏ�\'Y�G��g>npg�g�z� g�5�s.n5���L�W�4���nq�0�#�O�}�\"��E�N�t��!���C�nu�й�o�Lϳ��So�coUFa�[�ױ�e\0\\n�TĉI����v���yOiǒ4��Mx��n����-��Q�1H.x(jի8��X��D��n��!�5]��X��뭛��S�;�u<}3U8�\' n�-�yu_��\":~I�8��*2��Y�r���5�n��;�N�9�@I-�z�̹��>���Gq�� �n�0�oF!�V_1\'���x��hs<z=n���j��w�c�=�ј�Z�7�V�=ur��hn�G0�%E(G&�WX��1t�F!������n灴U����¢�H������ZO���h�?\rn��i�L&M٘x=���N��f[�y=�/�So+��U�Y�ݵߛr0~x��Os�,2�wo�����h�Qd�M�\0��;HՏ���p��7�Co\0��E��Ť�Cw��h#9\\铽��|���o�E²tQQbo\n����r�Qq��\"�/����o2�q�\"�,Hf�!O��צ��wZ=P�Lo5r����+����}�����o�38��J�o7\\�j��UB/��O�����4�D`0��`/Eo:G$�.�\Z%�Б�F���F�h�S��u�<�oKS��c3����Y�W�$��y�6Vl21@��9�>ovQ\"�����c4����yI�AR��KSUo�Q��t\'��F�OS���ژ���U�.R�o���}\n�d��֑�%?����M�웪����;��o�ׅ�CH���la��q�n�F}�uo���ɑE+�w����d�c�#�{AC�\Zg�o�֑�R�`#�:�֥6dLj�8�����\Zo��x��6���}DP�\rM�b��1a����|i�N�o���\r1d._��f/�7q�A�E����p�W|�b�O��<f�c��#_V��|�\\;�Z��p\n}\0�]tt!��x� L\'m��,i���f�K#$sppm�+�>�\\#J2=�)��\Z��X�Ӯ=P ~rp�%h����7�=�AP���c(@Ƽ�p%{�erB��� � �d>H�K�5���-c1>}p(%�x5IY�K���fM�Q �ڭ�L_:�Gp+�4��N�d��J�u\0�5H{�7`S_Fv���p7RV�Ċ:�^L�~��һ:��TW��Wp<D��9�ٌ� �Dp��H2���LReG��M�p>2���x���tn�tq��������bpLdv�X3\">�bDŽ�Y�_[M�ϵ\'p�0�pTc �Oj-� suj��4��I�T��#���pk��x�ѥLҗ��)�D��A�z�Y�n�V�8�p�~����$\Z�tB�@g�Zz^L��ͥp��y����Jz\\�E��Hՠ�T`\n����\\7p����%�јȮW�z��̀+QS�r�=��:�5p�Y�ѹ!e�u0v���?.j���[���,Ĩ�!�p��m�Ә�D����.u��Idn�����1wp�=DY\'cq���ŭgaw� O�a<�;�9��p�u��-i��,��p��W���c}h�p�p����2�W��|�[MQ�����Ww�v$|�Cp�t���[bm���M�_Iz�\"��[�j/�O�p���+���L����,�Wy�4m�|C��q�,�\0�:�>|����AC�z��\0�����lqg�b��a��������,�O��%�V�q(��Fl�苗njp�Er-R~�OSN+�Kq*�O�D��l�W�2a��\\�,D�%1<��ܭ�qq.\Z�k�E���#����q�����\"��q=�1��#�;���+���\\^����p�$��qY�3i\'��G���C�?o(�����\0\"+I}lq[8��d����w����s��#�b�j:75�qcO2v�h����1(�O2�g _X���Z�Uqi��j�j�e*Z����HG[�?=�?j�zԄFaFqzL�k�\">��Eưz�x��Q�e6����qz�+�kא�Fz�3��7-�R6>�����#n&q}�bN���O�n��YV�8�Y��R3SH�C\rjq��ϑ��\0d�@Л�0l�,���֦�tDq�CP �!�3����а_ d� Ǹuu��i�Gq�� Y��Ʊ�e$�irhNF�I�l�,�oiq��ʣuG(�aV腐7f��z���L�mijqú�٫&���Uz�Hk�o��V��!+lV�O���q����ΗvCF��0�w��/Qc��}/[� q�$��1W֑��=�J=<�����-\\#��q�=x�u�J(ƴ��g�}?�\"�2dJ�(������r\ZW�� ܿd,ֈ��L_@��J�JA�pb\\��r�<�K���e���2K��{EÅ����O�r, R�B���f�0�z^�*H�a*�:r4(^0��F�1����s�t�\nr�4���rH�awVm��7�c�:�ܐ�a�4���{+��=[rKX?�kz^C���9X\Ze��F��Y�3�8�_�rV�j�-�jn��[M��w\n=pɲ�d�4��c��r_!��LPp�f<vs��$�\'�����orl[MÇ\'�����H�$�����>�Q�_��rq���J,>�{9=�\"\"%^\"Ck�3�@���r�� �L\r�-�\n}^�\n)�*�〆�Ю\0�r��b�S䢈��%V�ȟV[9�n��!��Ϗr����Y���\0�j�o;��q>w�,�u��r��oZ��`��a%�,�@����H\"J7�xr�m�\"�]=a�n$��7-j\"��\"�4)NMrr�NP_;� b���0�f�L\"9u��S����,r�;���/n#�~؆������p�$`͚�W}>r��*%���P��2I��7�\Z�K�aq#�r�Q[����O���GO��\'ԘL����ˇ�r�]�`�8b��@��#T��F�\'w?ݒ6r�ٴ��@c�@���{R�CG����d^�>>E\Zr��߂�CZ�������Z{��L��!�(��;s�#a\\�����8Q��0�s�l�}߯]�6s\Zr�:�<[�Rd�}:�Yd�y�(�ѩP�\"��Ps\'��j{�FC��h���\'G��M�g0��f�s( �8�(��\Z�>e6�A��R�Q!3��>φ�s+�\rU\02��#�\Z�~�z�݀h�s��s.CU��۠��M�^��oS�F8�6E��sN�lD\Z5̂�2�G��W��R�����F�ՖsP���3�4� 5��>۲#�v���G��p�sP��4�ͮ4���qo�\"�F\\ ^:Qٷ��s��#Xۖ+pFXT%?�?��crS�yNκ&I�\\��s���_�d��Ye�k�P�(�HP�6P�O�s�DV�i�߾�[�b�*�a�Va��� � ��s��U��$$����V��g����b\"lx�m��s�8N\Z�0��-���1���¶M�=��1����s�2�il)1�y���j�u�HuM�t5(I�:�E[t\r{�k�?i�k�C\nL��b�̇�Wyt�*̽vdW�;1!lH����9��\'<� C�ft�lT�^��7��?1� [�]����#T�#t:s�r�9���ca�>�S|0��+/\\3�j@tB���y���iC8Ϳ��L4�D�Q���\0�oz�tG=9�\0��a�ʮ��b>\Z�O�z�c��1�}tIq��|\ZG�wP�8�^6�e�N�c�f �t�rX#\'��XlmRq{�8��8F���t�GV&^`�.^2��IX��&$�G�9�, MB�t���A��B٠�B=)��RhO��\"��g�;t���2z�v�f�#�����:M�����{%t���>\Z/A������G*���6�e.��QitЕ�s�)W�j�Dr��D�i��<��6�N��Ft�ḹ��]���H����ZMm�����mu\r}[��-����B�U`BE�rZ�n��Z�?*�u����f�K���M� ]��=_mA98�\0�u Nr8��\r1��\'�p{�qbs/�����u#gTd�.C������Yg�Ћ�UW��a{�u%Ա8�,H�b\r�G�\'���8�w0�����\\,u)�r�B�.�p��c��=��t\'��s)���<Iu-ѣ���AH��Z��64�?��ѧ:��}u6,]�g�8M��U�d�]8�7�NXʢ��}Mnu?|�P�4��TV�m+��s����q�dm~)u@?��Ԓ$p�*�%����r(b=ϝA��i��u����=ۦ����RnJ+�^��Z�\'=���U\'�u����@��j�h�0/�� \'0O�Mu�DΜ����1��1{��i�\Z�-�j�����Вu���]��$)� ���w���5h1#}��8t�\Zu�;r��j���J%���0$���U�C�:�\ZY!u��#eo^3��|x��������P��u� ���x���{ _E�ۏd(^�6u����H��U?/:꺨�Aw\0��x2ښ�p�>Bv\0WbmA�[��8i�E��R�S0E�`7d�~�v\0���k��ETv��3dx�eʙ��\0z?`���v7c�\0|�q[�j�Q�[&L�Ɨ�P�N��l�v�9�\ZR\r�2��@��]3��z#\n��q\r3�v��\'�2�Y./T�}�t b�H��<6�Py-�v��xg�g�gy)Φ�Ҹs!�@XQ�Rc1�Fv%�_�\0�b$m�&`���(�=�m<�b\Zo0pv(�=����YF����cĻjt&���[p�٢�v.��ΡW�Իlq�H��o��r\'�Jm7�b��v26�}۞���\Z�\no��g$�$�@[�C�\\Vv3)<��>��r�y(L�1�yU��\n�v�f�av4Z�}k� �j��>X��˚�WR/%j�5t��v6�\\��yvT\\M��� FQKG�u0���v?Hm��r�q�\0�L����>=e\nS���R�v@n�L���!�r��o��\n����ڷ��ĺvY�<�\r���4e�6�o���R��;Ր�C;�v���!�����z�ߨ�A1� ��`�[���-v��C��� a�\'F�;���z���(eJ��Lv�;a�\'\"�s��{�Ct�(~�+�~mu���@v�|�Pu<>�n4p�R.���sI<������v��2�ς��Z���7���Q��XwF�u}v�{_5��[�t�Z;a+̝�X�\nx\\���&v��a-iQY��hJt� ��Hi���2&�i~v��1R��Cօm��מR�eV98���x�ާv��=}톭�:vt!)�T�&��������4wנ`g0O�����!���+�U\Z4�jV�9woHp�����Î� \"M^�Y\"���S��Փ�w�A!�(v�.Bc?�[��D\Z;v�ߍE�U��w!�ے�?���ER��S^R�L���K����A�w&C}5Qْע�u�<�4Uw��+h����L�O�w0?���p�n~�(�3e4���B�!QwƻLb��w<[�S�%l�n,�-S�~�]MD�p�nj�����w=c^�:�^N�[�� �X�%�%N�,�w@�c|�h�(��Hz�X[�_�:�x��0�)KwDi�g�k\Z#��V�J PN]�� Y\\8�dʜwHo�Ռ7��9l�\n!�{O[O�Z�jwM.��#S�{�.��휜��D�G8�q(�F��wP��:B�!��n��$d�2e��|6ӹѮ:0��wS�t+�\ZאַHH��ܷz�H��o��\'3{���w]<� ^�J�dOh���Y�H�מ�t.�(@,wf�ƿto����XX�G���\nFĜcIs�*ߤ�wl�E\'~�N�\r4dAˎ�@�7j;�.��W[�g��w���G��TĈ�ч_�|\'K�\r,��#scw�q�X�9�\0�����V\\����%��tw�~B�ͣa�ը1�ԝ�u?n�� \Z����odw��c4y���O�.��~H��{�_ʗ�VГ�w�>Sa���� �?��̜��sz������iþw��\n���~;H4�ǜ�/t���_v�i%]�w�^q��92:����_k���_]�z`��=*1w߹x��o\0��(����+%�5�B��BSrl?!Gw�� ��Q��~�u�Q���4�1�\nx:�w�/bݱ\n]�\nAN�A�\0���vL���Gw�ü}\Z�O�g��� f#�E�1g=g�Rz��Fx#oC:[�L6l�r�z�|w��3�:�B�=���x\Z���E���\\k�!\n\\D��6�R���~�xwؐ^��tF�x{��֦��7�`�-��Ȇ��x3z� l�rgRMq��;�â�h���0��:Ӷx3�M�1���w:̪�x��M(�y�/�2��,x5��r#ЇXt�%JFCD����\rΜ�\0����xKP����%�L�aڡ��U�x��\n�G�U�T�xP1v������o��0{�W�O�I- z��wCE�xh@j��A�έ��ΰ�h�Y�*~it�\n�w�\0%x��Qn�g���gW.6�Y��z#�IIJ�x����ے03W�Od���{6�3��X�+�Qx��$��P&�}�`\\QyGpr��*}�9Y�xŷ(���G*&��IAv�ф_�R!�?�xȈ\'e��Ŏ�4m#��8��u��V�h�����x�o�?�!lN;8g�_��[jל3&q�3ȦQx�T�����n�^�Jn\rC@��ԠG��\\x���S����n]��B��r�/��u<\rx�R�#V��5�*��]� �$�,>T��xTqHx��Y��\Z�>k��E���M�R6.���\r[��x�l,B�%�\\��O!��S<�y��R��x�ԴW%\'7&\\az<� AK�o�%�|7��Ky ݣ�x#\r���j�ۤ��E�T�C�If�nZy-�8���<��@<]Je<�w^ۄ�CY�0�B�y8�V�x�^���k��j��ONl�\"3`�y9��t����$�J�f��Ɵ�����\n[d�w�yK6��h�+>A�W[����,�1/��y^& ��\r&H�3����\\�F��[5�\0�/yc�++�S&�a�1�g�խ�[yᗃĩ����nyd-f�r\\��>X�1�ʠ-Q��N��yr:\'�?e�O���F�Z������诮\0�3�y�8e���������(�����@�$����k(\Z�y�㈔�4�t�F�K����v9�g�>M@���y����ǧ�8=�u�<�&(3�e��_�`\0��y�U�b�\'d04��t��o�/\Z+��]!���d�:y�\r!��\r�s|��k�F���a2ڼ@��\Zy�W��@������]�a����X�%�T�y���u�~�61�ZɁ\\�/[�l���(y��L$L� rj�k��K�����jVx\0I�s�zF�+�1�@��,����0�C�J�O�!�z���b������֬۳yg�Fb�eE�=���zLj���R3Z\n�\Z����Г(�nf�\r�z$p~��=P�p�\'���ey��K��!v^kzP�*$ ��e�(WI!�[(��ܚ>< ���zUm{�ڿY>p��֥x�w\nT�mw�\Z�~��I�z��e�e `�~��w������G$us4oō8z���$�E��g��g�9�K93)U�:�Sz�_�J�?Q�)����ϐ��aL^�;V����z�r��OU]�L�Wq$��N��Aw�����N�z�\"��|�5ܗ��:lW8]�P�bN�C~z�-6����i F<>���LO�<kԨ1\n�r\\�z��k�Ϥc�Q�=��oJ)��\0.�e��2 �,z�Hm�a���~B�;@��l��\'e��ۼsDő;{�3��l��p�^�3��k��;��\n�k���{��2�w�\rOH�S�uܟn��ӟܢ�����{u)��x!�D@�|�H�F�9��Bu2�\r<�[?{5�yȆdj2&�� =I��U,qC�<�m��U��{@�न�$g+��E������g[r�3��{E�A\n������������ ��6�Q`U{M�3�#��_B?n�g���<�vw-i{\n��{i�;|-#qY�d�_;��QH�\\������B%��{nH�(>}Q(����a�����b�>��\n�FY+{�sa����VmH����� ٱ+�r�<ĸT;�[�{��\rś�9��11�T_P,[D��:��w�{�n]�\0ֈ��n�\r����<�w˷X)���:{��,�t�4S)h�d����;��}K��1�{�g/��\\�Eǰ\Z�I|\'ᄛD�i��!H{�O�W�=!̏�W\\\0vR���&��~Gʽ��#{ЩN��7�!QZ�\0E�1�ͦ��ڤ!g�{�����x�P��� *+�]L��|p��^=n|���m��{�cD�1��\"D]]=���-c\\�|]�o��(jF\'��*����١Ɨ�EF$K#|�h��P�i��>��@�J�6��lQ�M㞂|#�����v����h`JO�Ax���\'�^�|(\\��Q�&j��\"����n �\nu���Ѡ|4rc�Ȑ��DV*�����{�3F��|E�d���\r�q���#�9����\n�J��t�|F��Y��c�~\'�B �_��-dl�0h|Q�h��[�s�ob\"���A��f/�$��|��|U6�s\ZJZ��\r�~5����\Z|���$��ݚ|Y\r�:l_�ƙ=��ݤ�.M\n���*�|b�)MGA\0��3Y\0���Q�����yL�=|m!�5��zdl�گ4uOln{+�P�;�\r|q�7r���ߍ��{�,�\'�̌�\n��_��|u���kp��f1����eO,�5]vR0�=I�`�|{�F����\Z)c� 5!q8�c\\kp��K�>|�&돕�1�`� ��B� �Nt-s��e[|�-�ߑ�:o��Ӂ�li��<��a�+���%��P|��R\'gAE�ێ���q��q�T!��:�O0�_|��\Z$�\"�_w�B�&i��t�\Z|����|�@&��o�|�X4P�u@�C�o��9�R��d�|�zp-�v���d���.�,[\Z��|Q�b�F|��u������_�Nac����:-���;|��pѨ���7{͍�+���F�;��}�U��|ʃ[�^Bcx͂Ő�^��@<=�F�D�|ˆ�ӰP��<յ>��DdA.�G}��}�_|��z��,�j=g�ȷ� �����TF!w�d|�N!x���V$�W8qIA��C]1!�� ��}^�\Z�%E�ݷ2=��c��̃P�F٫��}��_����ئb��qی(h=�F�ļ}CY҅�8�#j<����Q\0Ƙ:�/�D�}D� 4?����s��.M��*���{T�ȇ�Fd\r�}c���[�/�NH�j��n����L�\ZX�m}eEx���I��<��gB\Z�9�skf���(h�}y��#ũ�M�s�s������D��j\"�}{��q}��P�d,�_P��9�1�+Bw���F��~M��}ʞ��4!��ʐ�Y�6Y%�dX�Sٻ�\0G��}��-6�\'�f�nT�Y@���y_{|n�<��� }�m�-�+��vi�1���s�\n���U����8u}�)H@���VbR\"\"ͥ�0��o��k���}��� W���b�2�cf�HB��y��u��P~e�2���4x�`����Q�x<C�4��_�~\n-5�RT������w4��}3�}w3&�y7~�Cp���V_�<r�Z��J���GԹ?ο�\\~\"=��B�������c���\Z�\r�z��n3^�~5:�ܙ���F��LW��s@놘�N��7�~>,�O0F��2v�F\r}��ɞ��kTZ;��Ӣ~DZS�T̵�p-7�Eev_�Qy�m�K\\���)p�~G�6�86�*���\" ���f\Z�=^�\r��~PjgkΖ ��f:��\"�vE�y0�s�ߤ�d~QoE�3RoJ�9>�X����ε�\"؇�1�~v�~�z�S5���Ȣ��i�y���X�p��dH~x�\"&/����V��!��c�a�6��ft�^��~�r �����d��KHq��#�%�Y�Zꗉ�~�e>?I$VЩb@���6G:�����u~��^4��*�*��:�r��C�s��%uKhd�~�A!\0����1d��/�D����\"�N���~��E�Ua�qRh}����?�B@��:��䰧�~�`��嫌�<��B\n鲙%]��X}\Zi��~�Gl*h$*V�{M�&Ul�I�\Z\\�z���~�;�Y줛�N�P����l��&�4��%\0~��)+:�� �1Ŭ؈\"la@M���Sӽk���~�Մ�:��٫��\r�rq03aͽ���!{�-�~�v���<�gz_���ݑ� RC ~�5B[1E��_���\'��&xm��f�R2Ih+Nq$,!%�>o�5�&q����Z�q-S�o�4�P��9�u�,�����*�3��R�� W�I�D[1hђ�3�X?�?$�g�`���䶝`��L\r9;`\\tMQ��Dj7i��D��fba��9S��%�,#�̔�����c�~�r���r�w�Cp�M��\0��w���d�J��]@����ܶ�eu��_����(���uj��������p�P����5\\����(�D��r�������3�f!UH���Q�^3��\n��AC������s��u�<�f�8s��l�p�Z��(Fc1�\'�濉��j�$cF�ePna��ަ�@�#��\0$6i2�n��t��_�o���v�߉pj��OYv�qQ�,|�a6����-=S֍��I��pd��%_#�������k�CӠ! ��!�ns`�)^a�IY\0����1sX� vaC��H���ޯ9L�ik��8>:G�s���^�u`�J�=T�N�`�Q5cU���Fa=�O���Ō�ܰ�T��\\h�X�8���GR\0�z_B�?<(�Ќeo��u�:�@Go�5 �{`����dQ�z]��<��{#�G����� ;�c����\\73!�}�\0�20��͌��B��i�\\5,�k?�L���*_Ȅ���b�u%dN��v3� tp>?X?�l:\"���L�T��Ҙ$xDs�^�h_!kC�\"1\'��_Ԁ�x�9���lP�yf�Iu���&�p�3��2��ƀ��Ok�h��WS�b��^S\r�)�[�e�D<݀���g/{>�\\I��6�R��5.v�ߋ�� ��f6����*�#6�����:�cKx:1#٨���݆=$�O�/KfԺ���>�8~3>��ހ���\rY3��5�)����>FS���=��(���k)�Ytו䩋ż8�]c�>%�9\r��Ϥ���fz���U���<�Mh�&E�N�+рہ�����H� O>�06}�#��<Q�����n���w����k�VYԇ/ @���������|ۀ��\'&Z˥~oƗZږ��\'��6�g��i0B�<a�0��[���\0=���U�0���-TK#��i�>�l�.�Z0�K���]��<��l>�&އCy\Z|W��� Y|z>6��}���\\ �y��\\�Fe�S#lt^5:~�/�b�]����{��.\\+�B� ���B��Z��3�#�f4.x�i:�pY�Ad�B�K��\r!U3J݁nm�$]cm�<r�,#��\0�!8*J�1܌C��b�w���y���pø�\0EIntU�]װh��yR�^��2��v *��PL<���ŧ�Sҙ��w8ث܇Si.=$# �b�/�:�LV���䁜{l��_��3t ��ny�@�8\Z�fU���[��%�� M����;\ZLҠ�j�\n_�����0����Y�<��T��i�ִ �J�]��8�N�ػ���,Ŭ��bf���`)A.?q��_L1����t���4mT���d�6�Wo�k��,Ӯ?a�G����ˊ�B�7J?���n�)�p)�=jk\"/%>��;����ےg%@t�l��s����j�j�rƂr6yZ���.�\\��Ξ�\0���?�`�b{C��TD.f�0�l�����<�x���CqZ`h�\"$�v��R��9�y�ۍ��o4�h: \n�*�fƊ2��gn���2I� {C�[HrA\Zb����ۖ�܆lW�G��Ua����G���b{\n��i���kT�vQ4�������E\r0E�)l��`�&@�`�\'a1��k̖VS+\nWy������M���9>���U�:�\n���բ\06����\r�Q\\�lz?9y����N�q��Jf0��[���;P\0���X-\'*���\0Ie#�����C���/�M������;�K\nAt/�c��C\n�]�\\�J������=��\\\rRq�L��腪p�/���Ĥ�DQ.��G��ȗ{�<)��M�P���|��yE�^8��}���ؚn���t�&O����8(d��56GJ\'C�:R,;�Z,�\ZF�B>���,\\� Xw��l4��>��o���\Z�[_��6�.$Kyo_3D�&QB�����2��\0T�\\\'_��ME�w^��T�w[X�j4���s����G��5�h�)�p\"K�4c�!\Z����>��$�<\\�&e��\nP��\\�*�Fy�?��|�I�h�FIX�F��H�E\Z*9ݶף/B����F� �>&уJ�5�4����A6��#\"b2S�vJ��@���{�U�1؝ڸ>)T} �4��:���4�Sm��V��YW��>\0\0qM[Ol\"o 舲3S��\r(7�Yj�q��O�L����1����v��|�b�}|U�_ �Y�o�$�b��ܤ�r�9��2�4��?y�k�F�K����O� �t\nPk� �2�S��-��i��>~�f��KJ���` ����3��ux�E��梖^���c�|���ٍ�4�|c8�\\Þ9Y��۳%�L`N/~s܆4�}?\\QC����`����Տ��&m&=�C}��c��S<%��`�� ���L$�k���㈼����O!F��h[�Śڟ���&��I��Eibܱ��l��@!���C����\'0:�I�W�U�sA�@;�J/8�qڪ�gÃ��lDA�בA�=�<��h9)�Al���t�©��|yg8T:5,uڄF��j�X4�\rW<0Y���{V9�\\.�Ip?�H[�sB�H�xGq�Z�8/Z��%�Fw<��+-;�Qn�gp����Ռpl�V�N�浻w�IK�`�9�q8VZg�`<E���\Z�����f���VV.|�vX��N��8D�D�G�\\����I�P�G1hFY���:w �bd2�3̉�g�B@�]B��y��q�+6ƀ=���_���7�k��y�~��m�ȝ�G�|F����:�9�4�uZ7>f�ثD����i��Ugp�٩v䪄��{�\0��/��9\'���x~��Ѱf�7��Q��ˊ�o� ,�|�$�A�ߌ͝�`���s�݄�W_�w�\rz]v�Xք#�b��xN�턦��q�FL��g~~�4�Uڟ+�\r�� ������?ξz�2l���=���!�ߤ$�x��}���܅��e(86�6g�PE��t��� �s�Yk������Mc�dzo1+�Y��l璻�V#������qϫ�p_�j��f�?8omc5֒�\\PM%���ժ�� T0J�\0���(=�D�*�ۘ��ӵ>�����\0�Z��(ׯ���|���\0��#��������~^y2�c�t��H�&�DO\r��Zϊ�Ÿ�l�s�@0jd2S*\r�K�����������T(��g�.�ك��t�} �zCS�0�j��)w�d����V�圥��1��J{��hV ��\'�J�b�-i.9�EA�~�+|%\0�������@�m�V�w��%�%�:�3CQ#+g�� ��e�}�����@%s5FŒj�fpv��G���V����M�vx���!!�����90M֗��y��-t3o��XD��w�X�� ���xT���A]W����eZ\0�p����7���g�K�z�XF��D��k��5pB���#���:N���p[���Fd�*n���7�d뷏1\Zh6x:i6��Lf �`O�z��&H�jFj6���\rnX�\Z��8N��//�&W��~��\\���Aj!�^E��h����{��RP���hO�� �g�p�3��X|)F}h�9P���*���K_ ��&Z2J�i;�s��b���~~:������K 5(���Їϻ\n-\"}x$f]. b�~Uw�i۫uE�f�Irq���p�E�W?����#�܈�*�\\����f�}�ժ��m۽��24�j�i��(S3�\r25y\0�2ySС�fU��N���JA1\0sP�+?�>�~y\ZYm��p�5�\\���s�I[�(.��E�5�Mh%I �L*�4y@�^x�>���p$�!�p��[�r\rf^�n��E�d�f���3]�bv<%pIH�:��W=��Άi�\0���Fs�\ZN�����aFRȫ�?|Z=��p�����U)�\Z�����!������:�y��4���DY\0�6�)���|��)�0�x�;Q[5��S�ɝ��ȷ�dTK�:o��V�L���E��2����y�E��6�_��%Xc_��+�|V7�T��=�ոN�69�\n�p����=x/N�Ӑ�Fs��/ȗ�\ZC����eܻ���iL$�@�V�_%�ņ�DX�+C�]�D�$W+�f��yi><�\\�4����]\n�c�����\r����6�K�-�}�B����r�(\rn��b|8����Қ�b���^+�MrV�5��-\r���\r��J�<�$�j���Ab�W\"0AE�����=c�ݶ�G��/twv�7��K㛴�oGǧ�v���t��aAX�I�l�E�K�Ѧ��?Z�0JT�����U��X���� ��x6R\n���aX��֫5�F��\'�ԇm�4�@�x�5�g�@�O��s�t7�z����Q�w������\0��,�7��x/�@69 �Њ�E�*#������/p?i�Q��k�gƱy��� {��#��\\o%E9��P�ˎs��]��h͂R;b�E:\0���7�&[�/=s��cҴ��L��H�D��l����C�b���ǫ�o�o�MI]2|�P^<qD+����_����d�+��%n��G#Hд%ܘ�r���܇�J<�\n�Ӕ�w2�������{SU%�� N3y��u;�VD��cmWH�����\'K�gR�\n��֜����#�](�Q\'n���y�z�Ma��|������Z�83P#��W�(P)����\n���՜���7|���#��|���ig������������>�=�th�@~1�J���#x9Q�bvL\n�\'��b��rL�\r8�֒��\\�����8��c�I����]uZ�ͨ[\'i�#��3�]�b�Z\nx����~(0�;�Zų��4���81�O ik������(r��.Pƌؤ��x��n��GAh�Y�I壈0�v���6���-���Wk)(y�jRv�5ӓU�ē*\Z���\"�Lv�:: ��Ȕj�F���@V:�2Gۈ�~O��_iS\nJ��I>)�D3j\n�E��I5xp�*I�\r!� Pif�Vq��lF�D�VS�><�ɧX[\"v-V���!��v�[�8�eE�:B��lj��8!�>E���aC�t�e�Q�s��,Mz��X{�\\[�(HfCP�A��v�y5����F�����Y^�����4}�!?�������\n�\0���<��8h,O\Z_��S�Aማ~nD�m��nC�!ֺ�4�K���)݅�3�_ʈ��_�1�[���F�*�J���@-�$�ވ�T����$�TD�MR�녹�~�F�-��5�陂{�ت\0��Wx&�_� 3g_`�B�w�i�[��\'��\nT�T\0���\"��-���v ���k����Y�d4 �w����;/u�)٢X��\r��/_o��[���B����\nKKxm�|��T*H��9K@k��df��dQ0?�W*��歘fa9��ُ��ڇ��]�S�΅HDWI��F�~����<X1g9]=-�Ҍ��>�š0�8(�\r4h�HŔ��H�bl����X�T�\n�\0y\"�aRTf���B-�.�Rc/��n��M���,=g�$�(}�B�ݮD�9i��@����]dE��^�CAm��7�tb�v��[5��S{G�R�i�6�K7��3!��s�t�i�q)ո�J�\\(\'�U�ƉLͤ�~���[��ٴ�;R6���y�0v �)�d��R��/�\nfJ��h�vi5�rr��\\z\"�6�q% !�k���Q*�;M����uO*���-\\j��mke�w[pԥ1��%����7c�p!L�7wg�~�]\'��=,7�9�v���/�_���!��P��wS5���b#fJ�W�neoRެ���A��W_fE��}��*B+��vϘD-�@Atw��r���F�N��R_�\\e+��!� ho��%9ӭ�����ك� ���KW�e2�P�����[�, G��7o�\\;�����C�(۔�H\\ݘ9��f��/��V����|���i����3<Pin\Z��E�O��Vo�Cu ���17,s�u�͉v,�������K�yJc��e��F�G�����2�u��]\"\\���#3�\nV�dH-SL�86ݶ��;��6� ���yO����=�P��o���У?�����bu���ה����\0��G�\\%�A������\"��^��cί�k��o�T�+%��$��[�[�/tH/��(ݎ2�����eq�3۞H�-X��t? �L��A��$G��?C����q꜆GG�T�|�P�:6��hL6^�E�zPu���K�;l�)������c��<S\"��U�BID\nm?�5�f���𥋤\"M��,��O=��:��G�>ꊴ���m�`!�l{_,D��L��+�2�i�4DŽʊŅ���.�z;��& ���q��û��9��Ԁ�jփ7\nT��tiC�b���OK��̊㯦0NV��ɀk��b�X�9�����Q\\�\\��m��,z�o�F�SI�a�)~�a�F�=��2��Q`�m{�Ҹ\n�ք=��R#�Q����\0K���\n�)������}$��$���N�)��a��d*\'�I<�}��)ػP�*l���w��KB�}�ޜ����s2C`����h`W�>�����!��\"8zH�0��i� ��V(�+��k�a�P��)���2\0�Ւ�\0�����U���(r�bwNj9k\"m{�R�7�a%,q�JM0��w�)�^���Z��9�@-���B�xi�U��M?�q!��0��_Π+�\"g%甖O0��[!�<I9��\"��N�E�hܕAOk>�f5��9%,�<���9;]�9˲��i��0��Ic�;��Ɗ��@�p�ХP\r{I\0����(<C���y�����]1ԣ�˿D�Grc�\nˋ��pC3Q3��#9\\\n#I�hq24�>�M{��u�s����!Rd/�hZS�C �]_����4&ڥ���[Nm�4���Čx.\\\Z�ϋ�W�-{�WF�v�v4[�i?ir�zG�a/�\nى�p���R�?61�.x��l��\"�>����܁%|o�ʮo3����d��l݈�s9�?9��:P��kZ����I%-���U�?���M�$�L�e�⢒U_F=��`o^�FpiO@��^/��X\r����!��h���6K�w?��o�=�7�o�|<��ԛR�S��KVQLn��w������r�s7g��xP0�������_x�_��z�֓��ɥ�zd����^�Ч�G��DC.%��{?_���z�}+�iU&4c�?=ݽ��K�D`�(�$��(�[�䅠@h9<}�R�=�-��+K�[�;E�x��-ɩ��H\0��9�k�]�4:�B�2��6e��@^��Iͮ�s������L�:}|9�ƶ�KXk��,k� x�����~6uz�`؊ii�7�R������q��3@��nM��5݁��7�-7�����#�K��T7�n.�=�$���qY��\0�\"M���(�\nOra�HQ���61��%ٺx�O[A�����a�\Z�\"`҃�=ȱRvH�m���f`���l�s�W��:���u�#��`��O�Óz,�����n_���BB����\n�Sd3���W��L�+&�쌑c�D`�_�e�d�vJNᕪ��>bg2��Z�TH�F�S}���!*�rUj��k��$4mxY��J�_��\r���k��@7�W� ��$w(��M��P�X���pC�}�������ݪ�V.���WPr����E!��oϦ���I�]��1PCN9\\��f1 2�vvm���^L������yf(�_<>MЍfv��q��\r��7jZ2�)i8�&��<0~퀍t&ub�v���Zѓ���a��_I�\nB��c�yb��i��XfK�Z H��Wr�RkL��Cʝ�ڛ/�x\0��s�-Qہ�������#�\0�n{�����]\r�W�h0�@��=�r���IKԮ���~gğ0�ȣ)!���ѱ�K&�@<�\n% d�>?���G�g�t!�3]#jN�7��|��&?��ǰ�ղb�>����Y>r]�b����χ3��������X�>m�>�ÃOUy�v�H\n�;�Q�ıg\"���WAҧ_g��s��U��M��-Gm\"���c�m#{�t��##��!�6�\'D���!�����\\֡�q�<pZ�����q3��gl�#�i��U�P���(sP��g����/Dg�}�#��&��H�3�&XwҼY����:z��q{��I��<��s����Ux�tW�gAO/��mưBrb�,��}�71����O[����\'G���d7z\r|�q-[�8k* ��.����\n,o7?��ou��4<�Iv���x�D!�fϖ��c�DFC� ]��5�X�Q\nx��!�s��T����P�¾�T1�!�`��B�I��rQ���q\"��Z�F�~ަ-�d����lW�]!�r��t�T�$MKP\0l��O\'d���]<�H����ݧ��r�@Xa����\"c�Ǝ�|���W00R�嬶8��Nh.�s)�7\0;X��\\�t���I7��Sc4,�O�/`һ����[%pP\Z������cF����~�c��R�ˆ��Vi�M�J��\n12��\0����x1�X��؎�\r��T�=2&�{$��Ʒ`z#?@��\\�\0u��5�t���i�kt�j3�\r��h�v�acJ\r����F��MG�z����p� ��(�_���v��²��ٍ@��kr��y��~���ĺC9l�xu@�����H����y�>7���H�f��F�4���<\ZŎ�]sL��oxEl!\0����gUg��\n��G��\"����G��-��O��\'��B� �^��c~\\fR;�#����]���1�@�Vk�h�@���v��\"�@:~�CG�KE`�^-�B�\'F�*�S1?�||�w�~`Ua���=\n3���-�:o�RF�*&�\r�Js�J����\rd^���=P���=�y�p��y�P���*u]����*�hYef���m�Vr�%���)ӂx ��c�`�9��y�D#�o��\r������p�j@\'�%����(����\r�\"`�4���-Xo�lK�k$�ѯ�f�7yӖ��us#�i$ �\\X�i ��</j�ս\nڦ*�ϒ\0�+�ؔ%��V黉��yw�\Z1�����1�0+�ޠ���]�� ��\\��UC_s����!)�~ʹݭ�>����Q5�ƾ�b��s�\Zp.�(Y*釨u���%y��y�e�S���h\'�:���x\\��F`f�s��B�X�#�M�l���W�\0�#�_����Eٜ�L���]Z�2�}� ~8fH��ݧ��O�w���$}�j�E�kw$؏��h|���aX�x�NG�Z��n7��Rst����Ű�0�6<W�U�.�s:I�>���T-��6fO��lb]��9P���@�1�^��xz���oU5�e2y��)q� �n +��⯐�U�0i���q�� ,1øώ��,�����㐕���}@�L���(�͙VZ�g��|_}�U)���87^�*�S$ @�K��^/T��\Z��2���\"\n@+������\nV)-d�� ��C���⭛� i�{�PA�͆k���d���M\n�����+v���5ƿ^�54�A�l��es������^ؐפ���R��c�g��Ӏ�Q�ۋ��c�@�y����A�{)pC�1���:5�$�S{��hza��Ю*�]a���/��>^�o</�9?�s���:�)�1�\"�{/��pTj�ٖ�\\��\Z�?M�������n{1)\n����-�Q�G�\Z?Z��}/3��\'���l:�9�w�):I��)�̒��]O��9�!+�Y����6L$-��fq&�趇�kh�C��{dv�c^�̟9�e��Q��_�Wo�{_�T7�Q�ʂ���w���L.谇M����=�B֑�\r�\0At�ȑN�\r��>�-�-bmYUMe���I��_i ��V���H�Y(�o�ߠ������!��k{�ustټƒ�l|��a�z��4���5�5@ ^�n4�k��=�\r �_�K��\"��X��]4��@��NS ��t�w�Ҡ��aF^������������E!��@Z�[�|���i(~���_M��8U���.pF����w�:E`�MB���L�iE� ;����Ԋ��R�yћjp�]c?��\nT���MOmK�w`J����4/ww-6�̒ ��q�nJ�0\"dJݍ���R\Z5��,�jd��\'Y��BcH�7*�(ߒ,�$ީ���k��3`tm����5^�7�}�M�R�`�-�x�ɒc��r�-�A�$�:T����V�8&�E�75�g�o�w�VŻ�����BћV����j��|k�p��&��a*�9�o�Ō�\\Cr�b�!Ԓq��Y�jY9���M�H�����EX�[X���a.�%e�5�+�p��3�d^�b��LL��T��]@G�3���:Omo]?G��[�!Y��֒��Sߏ1֓�}�d�Q*�t��/�^Rö��b��=9���@��d�����r� 2H4�ъ��JMB��Ѧ�}��\r�20�2h�(G:��?{���r\"�\0\'5�w��ݳ�t�3c�4�Y\0VI:> ��X\"�Fq��U�{����iM$̵<�4��l��ؤ��8�0�/\n}�J`3�cl6��H�W��>�)c�|&.\\��Eȯ\r�Ҕ�D�� �9z^q-���7���6,�s�vńTe}����5��;�u�+�,3.��-�Ï9�#F��}��E��jvA\0�&��5�x�P,�z\r&�8�gE�̓\\c�>k,-��\rhi��IZ+^ �F���F�V�\'$$��It���������&k� -��8l�Z6�>F�Y�\\3��8��f�G�O��p>�Kes!2�B�S\ZBeLƓ3�#ھ��b�j52=�<P�3v�Y���f�xM���w�|W$�<�&h���70��k7��N2�wF��uO4-@c�t�ɷ3�(���k�G寲�\nCD#�6�u\Z�քEڣ@K1�y\"�/S�5� ���M3�8�i�)BC[�ܚ�~�ZW�K�i7��/Z�����Hz�&�0,������?R-���e�j2�#X�H�\nd�5\0·�����x��\"}�v}�����u0\n�M\n�d��>�ᓎ�@,z\n����&��@]��D��6N��I\"\"{�4��:g����\r���I�S��l���У����/����m~�Y�nr�87����EC�\n�j1s�D���)U�@�3�k�{�];�����ĉ�aՌ����Q�d��8��k5���5ai�*�UW���s�⇸s{q��KcB�ψ*���\0�&Ƽ\0?w�o��јS���$������G����JNglc^�^HH��^z��S�&^���F��hY;�knݔ|�TS��O�cw���DٛOei��j3O�)��o��\Z`N~u٩�b�X��$�Z�٘�����Zݟi_��L�5>�}R%�Z���A�>�%|����@ւp�w��^��o(��fPk\"E��պ�l5�z�Z��8����q���}\r��2��{�$��7F--s➛G2�,a���?��d��Iu3��m���K=���V\\��ԇ���|��ޕ6Mj� �m��9$*x���g�U(x���9�9�P�T���nաc�6�\n���{z�t��@�;=�JM�Z��}`������෬e�~v�J�?�\"/�i��\r�<H��i5�+:~p1K�G{ƕ`��ݸ��¹\r?�� y�t��bg�=!ӫ����Q6���9��`\"-tP��(cn��/����>����)b@�HO��?��5>PQ�� �F�缃�`��\'��%�Y��������o۰&�d�tQ������;<v��}\'P[�Y%/?_@�e�&���������\'��Gpp2[zD�wN����j�Õ�X�=��Чl�1Y�^�2x��O^����;�?L�u5Re�v�&��-�kUobE�����7ܼ����zL{��{�M�TG.{��}��)�c����I���+@�>H�#qL=��a�.�c�U�\Z�Mw������J�×� ����\'b�\n��}\Z�Q!��x��\r5���DQ�U��K��܅����ޖ|�T��pi�\Z�qM\0U�U��H��H/�P\n֖��:(O.Xi�+�& �M�E� �����zFg����o�1���:�ѳ\Z����>A�\rq��7��0O�|�%6` �PI�Y�;I�(���ϋY�ۖ��uf/��Z��\r���G�s<�h�4����o�Wx����ۺ!��Mz0V_.=*ym\0���C�{!Y��R��a�\"�� `F?M��U��ǭ[*��a:�&�3ܸ<u�LJ��P�#�=9+F�s���q��IB��:�U{G@�B��=��\'��&Ȗ��fC �~�.�n,���1`��o9]�k\Z����q4ٱx��r��*���Ӧw�R�Z� �Z�J��h>�E|7����b�{�d��8*��Y��yї\r[�j�jՂ�rV�h`��FrES����{b��B.�����*�� �l�2Q���_d_��,6��WP��*P=Nϻ;\Z���i��8��2�_��� �Q�aA[�ز�����=��� 2��m���@���>�@ATm~FmӠ�N�l�l>�h�Iʶ�W�g���v�ZF�Ϝ��\Zb7B¤�I��2Y���!�ln}��1d��Z���חK��7�G����?-U>�������tQ�+q�Kz:�n�9>�j5��d��3�=����Y��sNqq�p�c���uȺtV5�Ȥm9\Z8����q}�u}o�8>&�V��&N�A���,\r��jY�����nxIv�Iv���Ԛ��!2q#&a���;L����l���$�d��3\Z�&2� %�\r�%~���W����8��h��s�+d�ƃ����*&�9ɯߗ���+n}���`��+j�� ���Q��C����Pf�ԥ��E���Z�N%��=��� �$�ɗ�����[\"!�v�O\r#�-�S�Z8(ɃA�ҷ��h�������/��v���.O��2�W���\n��9�f/3MM;#GڪWO&�tS�O\Z���Ƙ��d�*�J�?�^w�zT�GЧ�,����ė��\n\\yq��#1���6�&Z\n8�ӊ�����UuB�ੋ�9�EL�a=�T�/��8�,i?�����D�/� �-� &~�\'ɋ���ݱٌ�������]����������!zD�W+���jJ���(r�]��\n=+���WU}O�/inj�4�u�9�ϯ�\\-�/O��5dXS^�`��M�.��N�S�I�w�*�/\r�i���w�l���%�7�R�c(�Z=m�����ۗ�A���\'�j;��LB\"�^�/��:���qQ��oB�f �l�G2Ĝ��h\r�=��ɬ˥�c���H�w{TRz>�=M�Ƙw�`�w���n�N����3=�͟hKr�r�i�}I^L�\\95�N�Y���;�?z��aE=����J��8�[�C=S�ѡ�k���{���[�k���F��`�Rl>��)퓆o�8�07M�R�n���}\rľE~����Ő�\r\"\'��쳓�04�tbt��w��K�\\�iU�VD}�3y��(��s��$���T�琱�a� A�a��|��;�Tr��ɯ�(����&o{��!���2�oʪ������D^��D1�� \n��9�)Kb}�S�p���McP�AYX���+{^�٫X(�ߛ ���M[�>��m�M���C�����oMt�}�qqXA�iYQ��Mޘ�\"#���E���Jp~&w����� �_��ڙ6=���uq�e4_oq���tp^B�a@^#��$�g����K�d�/�ė5��\\H�R��]�.�H%E�q���� ��Ʃcn����\0�������Qǣd3ME�D��v/�Z�_a�!�/.�A1��ܙi�,��m�O���#�?Vb�,�C-ܢcž\Zh�p��\ZYv�1]@ô����y�$]��6����s&�sQ�*%�P+݁��\0�4����[_�ݙy=���g�֘������e��Q���b�\\�����o~�܇�] OL�HP�x� �9lK�S��#��n�6��@#Gb�b�5_�*B�pX���rV�w�\rAU(�\r�be�&U6[��F�#`l�,���[u\0T�9���<� c�&A�w�\Z�E�N��Y��q����i��6�-%1L˭ݐ;\Z����2��uY�@�\n���W�ܑк��%?������;�`,���C�Ջ��B��x�V��u(|�/��9����J�ې@���hy����(��K�4�\ZU��+h��A\"�?�_6GAm������!3�h�����\"��Vj`���+�*G�6j�q`8�&R1`���\r\Z{����5y�G�\\����0��M��x[��-���<P6Y���E�[3oHSVИ�E]:S*�˚D����{vJ��-C:I�J�*H�]���9�[�F��|A9���x��~�d�r���[;�#;.�H�Aۣ�c�<���Ep&U\n��O��KE�r�B���ʳ�gU���a1/��qX���夞�d��9SyrCT\0�ѫ.ʹYb�jNZ�M����<h��s�սI��\\���5\'Н��L�I�xX����`��E�Ѫ��B+�A��p:�G���:���,�՛�K{P|��L/��\"��E��l�+�ܢGwˏ��a��E�Vb��Ug��v�<�Rv�,vwM��Ϛ���ra�H�\n��}`�R��N��|���:G�w&׳�?/K$^ce?^ZdO#�%�Xx�ʆ��ƛ-F8��y��d���]3�f^����6C�w�ٛ;eRv��Z��[2���Э�A��>���6�BVW�?�\\v���ҧ�x�P�Ep����6��!IP�g~x�����!���� ��}+�`����a�-�Ӭ3+���@w�F��_+x˷Ӏ�+\'C��`��!V����-OD��D���x�Ca�_-֛�&���oB�h�\0�6�����6�+��u0���������2�ԭp\Z;�Di��bi�\"r\Z@��!:��M��u�YSꥦ�%Cp���,\"G��EN����V����Ȼ:�^w\nW�`��E5x�U��#ӛ�NN��L/�4��p`����41��P���c��q��27���1�I���^�Ц���Dv�nZ�U��C7�����Upx,�w����Û̀�vNx�k�l�fB2�Q��W�k���Uڛ�oO��w��~9K����4oY�[K�e��\\RG�\"**��R���������k�h��W`��٭�R|�5����nu-\\��:ԜY\'K�F����\Z1Z�S%4��Vb*P�[����d8geͽC\Z�\ZS�j0���13��4]�)�����ζ�\Z]�(� 9Ư�H����x�&�F��\"�=v.�/|ќK0�қz��\'u�z��u�����`̶$˜\"�X����MN�͆�&�V�\'#Ǚ�O���0�-k�q2w��Sc����?d��U���H\nQ7�3hʫ����m<��GM]�3�p+L���KNǜHRf���$�|�k��|s\r��̣64\r�Ibm�H�?�C\n�D��Ԉ�t9!�� �����D��W��~��<~��J�(��u�☵�B�&��O���z��8օ܈܈�{s�f�|�߶��}~�(=5�ǜ��q!��唪����Y�~�<I���6���5���瑊[m �����7����A�m���� ,�����L�CT��NR��щ�@;�C�Ou�J���9������\"��\ZO�ϧÉ�Ɠ�{O�Nr���X����U镜�Q�٩\n i/$��:t�ni����KSf��]�c���X\nn\Z���F���������p�pJ��V���A#\\1�{A��� �û���ͥJ��O�mO�:ϙ���l�W�5��T�2���DB�$�^Vy�g��ə~�|��\rU���tJ�`�g04 n��՞F�LZ����\Z�qQIW#(4��\Z�b�=9���-C��/s�#�]��:��fR-_�\rX���\'����rX4<V;G��\'�C�d_$|W}{��S5��\n!�pjm�Z�s�6ˮ�Cۊ�%G�8���q�)ϥ��vǯj�7Z��\"S��e�(�����$KVC���m�[�;�W8<{b��\'�ŏ���q`\n�3��o�B�@8��Jcý��n&Vɹ��/[�)ۻz���[��g��E�>b`*�e���N�ݓ�\r ���h���Hj��� g�Q.X�]��z�ѩ*g��w�����/^xGq�1%S9�?R��#��B~��::���X�g5[m��QӨ�CM.C\0�W{��4\\vkΝ��x����[�%�����@��c����ن#\Z>O�;�jGg��R0��Gl�Y(��\"y4�h�/�E삡�p��4�3�37�-sգ�+��f^���煙�z��:����F�͑���Ý�ڢb?�����@��˨�]�rH��!�|�(�a��vC,���T1>K)||yD��p䏂���B������נ#A.�{Ari=�M-��?��3u;��\\���#��S����R�\\�;�Y�����ߵz���CF�#L�!N@6��9��j�c@%� ܞ�?�L��$bmjT0)���庠���|��l���`$��\\{���\"��?~cj:����èƞ�LJ�\0(�8�G�f���Wi�pJ�pMbVg��C/��V!�W��3��Թi�9��*m�V�w���kZ�P[:��UjB���5���E��� �$�\r�(��ԇ�~Y�G=C\nw���9G)�\\�M�0xa$k��٥���4�a&dkGS��#<��x�>)\"&%q�٣�u4�KM�$�o��ݭ{�A\r�QI�Q�\Z�(�B�}O�^Q4�uT�v�����1�����)��\\Nz��o��\'\n]�g\Z���uF���(:\r��S����l�V�l&��r�\\;;�P��t�N�ɀ�ܻ���Hې�����%kH\\�Z��ϼ��Oa�����J���aE���7�dh|����qB�\\)6ѾpD�W{ۓ۾!$ʤ5g[9���S���Z6 �>�),���(�E��<��;-�f�N��I�Y��Yڲ���e��\r�����~��<��k���\"` ��[�����\Z)^Ktz �`t^�u]�5�8ipvk\Z�ܟ����%T������1��#�W��$��)z/WL�-Z��E{���K�ѭv�_���_\"�l&ԟ3�I49�q�����Z�Y�FU -&\"�(��6�:��/�V\\�F��K&�f :����7�9�\Z�]���\'��:�����rQ�FG�ߵ����#�b?���y�g� V�i�W���\Z�X�J�xڵՍ�q*��V8�,x�Ҹ�$�ݠ�IBS�;� ɕ8��1����lL\'\\��ud����j�F�וVQC��3�x)�!�TU�33Ws/w��q��a_KB��� .A�����Y���D��Z<�X�m\nc��h}����!�aX�ɱ�9���6��#ݟ��{m��]�RWr�ޙ����V� �B�aן秦Fz��J�O#�%ĞI,S�M�V�[u��\r�uB��V��o��������#���Iv4���d���?���Q�lHJ��6\\2�me�8(����\\��0�\Z%�he�[��>K5\Z���*�V��\\��z%�xĦY1xYf[F�X6cǠ*�uk��;��)���gR��Ib~�\Z�4�V� +u�����cr��>�\0_�s�;�ϸ���B��s��1M�+J�5C�$�r�<0���Ġɋ[!͇黟�\\d�5cr�F��M��=���]��^�ܩ�� _n=Ý�&o\\L�P2��ur�~o�(�M��F�S���*:l�5\Z�>�Z�D�rg�o�E�I��H��P��g��^�]n�0�/Ǭ��s?��F��ώ�I��s�\n4�^�T��X�r&Ԓl��(E�C4)�����\Z�rK(�1�2�e�^Zr�#�����j�W��y�5��-e G�_��m� �r�?gW��ՠ���:5�W����b4#�>)c��Su�� �ڠ��r��2ѥ��@F?��&���s�~��ՠ�($�̻.����LxkWNg<���\\�Rg��_���1���3��)16��O�ރ���^L�;��ˋ�.#L��I.��]���+���������Jp��(�9ٰX�Ό\n���\0����*p��̕�^ XE�1��oO�����-��Ӏi���{=�\Z]I�Ӹ�?��x�_�M<��3rߠ��1nv\0j�H��k7�q�-��;C�9���R��_�i�$��Ԋ����6tqm��4_r�n�Չ$u�*&�?��e`=8�����9��=��\0����ܥ��E��݉��X8��Ym ��㞉�Q����lA���\n�!�g��Cn|�I���#*�0\'p���T��,���Rr��ء���A�����5�s�\r��p>��*�9w��dg_+o�9��0��֊�so�ʊ���/�]O]�8\0qg_��\Z��^��E��6{:,\';�Z�B ��c����Nء\"!g����x�u�E�\r�̉8�i&F��?�w[℟迢Z� �q��!\\�\'-Qx\0L�D��-Z#SЦ��[%ɚl����z*mҢ�PW�1� \\>͞uLv�}�:w���P([f��ޡ0��[[���\nudv8��f�����R��D�l��աe��$��*}֢Zh�\\w�OW��w�Si�7�G�;�x��V��\"�\0���ݤ�ƫ���H��2�`�zw��`oi0�Vj�\0ي�lj.��B����\'��|Z��øs��-p0p@��[������L���f���d@���a1���kv����<+�r� ��H���bXҞ�L����W1&�@�r�J��ڇ�Ǟsb�_�`6K+���l�|�S.��P�^��l�� l9�/Ȭx`���:eu)��n\'�\Zc��E�\\���|��:D��N��l,�l#���C�D%�K]����QР���L�!���j�R��k���V�=~R��[��C�;>�fM�B�R�+�m��vn� t��;=%J��y��R%�0�\nf��/e���Ö�IL*ԟ�rWt�&Bm�vWU�m��/y�Ъp!�Z{��E�ٖ�.ZqoB�\rH7�#wI���$��Klh5�b4:�ѕWn�w��3Tg-Z��BF�(O)��\rf�z��?���\'��=\r��0�C�UR�\"�$d�é�6��)�IS����\n�E]�m�Y5c\rwcD��4�Aq��Q�ix�����WD2o�F��0��+��vBJ��X���\0T����PO�]\Z8U���mVq��^o#��Z�B�aCu�wIT-�$e��*1�g|v�����v ��v��ěW\0�(�@j��^x�h�)�ٿ��� v�Sh_�=�XD��p�i�-��w�F�a�\ZPN;�ˮ��h��J�4�mB���B;�3ӯ���hP�;�)ړVz\0D��r?�{�.��<����n�;��V��.R��y�R�Tx�\\��h�~D�@n\\ǹ��iv��z�{��\Z�]_q�|@�T�bs��Bz�V&Τ�k<���t�Cz� ����n�`j\r�M��N\"Ag��梑�x%�&����yp��5����L&��]�[�Rբ�Y��Bѵ�\0��\\4:\r�a������o�|(;Ң���L�]검Nj��u�za��hpF���3���H��O�)-�>!\"\'�$t-}���M���61p9�ǡ�����k���Tb�:X�%n���ܢ��x�J�;��vw�w��|U�-�%=�F�����M���>gq=��tG�Owmjd�)��ߣ\0��$Q�%_�������{�1�ގ�7�څ�\r�,?����zD�x����&����fv���$���HK���Ah�ɍ���r\0�aF1�m�ԍ�8P�?����Alm�� ��:2M���m�X:~ڣ8�,˴���t�����T^ע+\0��^�U��`�<,MW���t\\����+�TÄ\"^J%�V�Cy3BVtI�pp��F�y���/sܮ���}G�T@���!�QR�m`���+N�*u�6��N��[�s�<Ď)�� �Z��9QB����������\'�G�,~I�fř��֛�N�o�Yt������8q��sM�u��[�ץVW�Э4pp7���ԣ�;����\Zܕ�A�w��W�II�w� ����|����d�2Lu�������=#�JR9:x�\Z�z��\'��#m:�uZǸ�>�8�����|��{K�i��E<��z?eL�<M\\�}��v��6���\Z�8z�Rv`�\\.�)�.�^���pĔ��/E{~2 Ev���h:�m��w�W���d�Ө$�B|S�1,��|��K�Y$�TTL_�|�h�@���P%�HD>���ٿff?_�2�Y\0d#v���T���U�Ц�[TmG�na��mq�Y\nT�orqKK�cr� <#P5r�hf_�D��m֔mN��+�K���w<PB��ZC�k�SI�Q!��\n}i�{�VO�u-���Qd;�++O;v�D�)(�P9�h��]�,vɮv�����JM�(0(&�#�쟴>��_Q7%�l|�[��l�|��ߘA����I�����y�~�k\'$ё�����^�Y�\"��awE.�뤮����5�]����~��o]bT��\n�ç��-���G��=��[��FJ��4�@�ŷ����qa�b��n�d��\0��n��Xf6?,���=ʤ��� �K\'��9���o�d�?p���G�Z{��e&\"��S���\nT�k�N&(uu0�!ϩ7�$�V9դ�w�|�N\ZvFd6f~��n�d�Z$�i*��\'lA��\\`�to���G��\"�����*��+cW d������+�ΊM�?\Z��L����r�Z%\0�\"lӥS5��Z�uB��q.P��Jv���Uپ�y \0���Y�M�2�<�� VTo�^%F�_Dt�!�䍥g��NQ �������/��� �y5������θc�i�� �K�N5ڈ�Ge�QB���\Z��k`�ä�mu��9�u�H|��� ��ܖaQL���U����x�V:�a&i�!�:�<�^$U4t�ʭj<z]����0\Z�~{vh���Ƈ�w�RjIyph�gs���s��&�:��C㿩��\r�m�9>zo|.�H������i���c�!��I).eh��������\r�ǩ�P�\'�R�I�R��\0���)�$�u����� ��k��f]W^\n�<�贡��b_�ć�ȸ[G���&R�9�2��&��D�DcQ��EQ�ӂ_�o�fIo �}B�3&Y$P��ʥ�{�kZxS?�t\"Q���?�(�n�r3����A���]]�hi���{� ԃ�Ƨc�J���}|��\nͯްA�(>��j�2Oƞ}V�O��צwD�{�so �k��jLA�����R� ��V�\Zz�L0��Qwb��׀х����fR�=k���&�K��ps֍y�\Z�@?7G��c��#EU��)����ϵ9�D[����.NV�KuZ�\'ނ��?��0�������;J;\0�j=\"(��P]<X��4��m%�̆\'��?�2�[�Q耐8/sG�7m���w�){�\\I� �\'�Q}mˮ$�R4�U�:k�$�Gw 1�@��u�iL�0Kĸ:�@�E^؛�36��v���!l{�PVw��S�!�n�H+��\"�\0Ud�:��\n���O��*�SР�L�ل���.\r>֛n�]�����9�^ �a��Z�_p��hRf}�� Pޯ�Z�{֢J��Z��b���R�u+�$Jp�)��#蘥�>�XV%�z_X��@KOuKMF����q:�RSO� ��uѝ�|=o�%-����t,u����.��� ��\r��Hxe�U�����UHK�^��DŽ_%�ך��*�������\'���Blm&��^�/��ر-���Mp���#<_�˥d^��������5�����ĺ�̌��&���ֳ���4@78���p�ě�n��+�܂�ˬ�\ns5��*�D^�k���2mi^�+�Q�f�\'�N,�ntR&��*�\r��S�P�K�?x�7�.�՞�*L�u�K֍���v2Zg�,z�[^��ׅ��Y�g��v�����⭤YZ�V%�Is!�б���j8>�\0ئ����n�G�U�v��i��3�D��CA�6D����`�Ls<��Ţ����t�E�>P����s��\n#HNo������&����WZ��Ml�2g�@Y�h\\��]p�w1F���)Q\"@�ȳ\r��5��e)q�o�uvR�������#���[�]�\'\r��ql��ix%�L\0�蛱V\"�]0db)�qOy�4�`5ɥ��)�d)�]�\0J��|M��s�`bF�+�u\0��#�\r� Lm�Nߌu����uc^=�¡DU{.���į.տ��]��d0ӧzEvGL7�t|�%\'��4��%��f�p#e��h�-���h�8q9��\Zx� �VG�%%h/%���R�/���ήq��eG�F^6�`v�BI ��|2��PS?�hF�Ma����ȂU��E�~z��ާ�#�^8Z����y��7Uܲ�={��s���&�FW\n��R_ �\'��H��u)W�C}�D&�7�,H���)m-�EN�M�A���͛ ,�_~Y��?ck��_\0�T�0y�k�����M38�W�\\���Q7F�\\��14�g�3��\'%�L| ��{�W%��_g �@M���\'��F�|S=Ւ��\\[8�(Y�Y�����Vd7{m�`C�9+�e��f�ү�6����U��\Za�zߏ[�_�K�}P��0;�rɑB��@�?��@[P����^�3��D5Vw\0�\r\'��T���P�`��e�έ��u���K>fL�/�l�4!��\r��Z<��P��l���_�Ψ�/�\'F9r\Z!��p��\'6D;%^-�xh��%O�4�y:X�0��^�YuGyD�Q��b��(�g��Epֆ��riݙ�hF���=���yZ�QO��/�L%���@�=��-��e��-I+R����z��<\'� іr�vqS��KU7�W�ߤ_i��9q�Qo A�4f�gS�����h�%=Z�N�=�_�Qu~ҿ���$3G����U4�&\" �KF���j��T(�5���o[���w�O�P\\��>0��3 ��{�ɟ�a�6]0\n��*�(�)�\n�����Ǟ��\0��z�v�V�MAJU�la�1 ƷŨ��rX���>����5SƤH[{��Pg�٨��V�!6\0��\" B��Ѓ��h9����.��F�8������g����ި\r5\'��MQn��8z>�����ve8�:���c;�%��t}5;�F[�?EX���n��G~�Z�ݸ��\\��B[)��z츍��m���O���~B�|A&�����݆����BJ8?��3��^�_͢�����opʫ�UCgw�(i~��Mz��e���x�n�X�),��#�Ө����1��T�z|�\'Ѧ�Uf+�2�W[NT��=�D��=u�~�Ju`�Y[�#*�Γ�\0.l>Wv&�������q�v�+��I�N~�W�L �|F� ��KGO�]�5^�AG�\"$�A[?��:�M���2(��V�����A���/|b��.����4�L\'iWFT�Ўؙ����r7��75�F|D��FIJ�5�3m��,Yl�w�N�Ƌ�F��e\\\\�����y2�#��ni���F�3���N��r�b0��3jg������\\��mP�P�jx�5�P�$j��\"�`�\"v�R�\n��l�_�����9ȧn�\\\Z��r�R�\\�갪����[���O��o���\\.��a�8���4r�5$����� �C\n�\ntY�w�r�c�\'�Sy��:G��`}.�,�]|���օ�п�е��I��۩�b�����̚����w[$Q�Ӭh,�a��Z�g�$,�:3;Q��0��Ճ� �� ������\Z����cN��C�C�n��ø������詑�ou�j>��]�7!���Ӈk�\raH%o�Wk��h���0io�|��ԧ�3�\'ȝ\'��c�L:b���_�L��Xx�0Iʪ+Q���;���/�hE;�?T�8�Vܒ������A#I������%d{��F����\0+�\"6�ƹȪJIZ;w�%��!��W9���ѱ�S� }�9n��N-�>�����t�����B�/ԣ(q��[�T&��7,Ǽ]m+7�^������v�K7�[E�u\r:��&i�|:�50= ��S��Uu�5���^_w|)�W6���c�*&Ī�]���Z��\r4���t���\Z�wMi���ƐG>B\\���g�Ѫv�`�(1in���� ��5U{I��o�4�B����]�Sf�1Ю#�8ZL�������}��O��B�ȫ[y�����}BxwI�Z�Ч�&���N���-)͈�滃��~5�|zI(:.������*���g�H-#=a�$-�-�9\'�cڪ�u�������y�~B5v�7[�k$lȅ<�ت�?I&k�����E�YB=�b*ҿ�3Ft�՚���� Q�憐D�P��_?y�`�������5�m�{�T��<g�F�+j\'�p��Q����\"}�Fpz.���T�&lG��M�ki_�\Z�Q�\n�]�(��_��,pgi1����}��.�͇3w���z�$W�<��leP[�?草��p�>��H��#j��#E���^C�5��őܔ)=�=mf�ht�$#��mvtq�%��wc\r�[�Gv��i/(7^V५)\'��z1*�~6�U�E��������4�[kP�1���w�Ӯ��\\��^��`Y~�F��9��-�a9Rdlw�j�Ra��S(7Ʃ�\r�\'�E�^��rn���2ͪU?�嗸W\\�V�e�L,A/�\" ���4�zX�1�]��[��MT@JŁ�m��4�N�2a0Nm).:�Ҫ}�]�%�v���c��݈��(�Y��Ue%�!�TF�i�/4�i�Ґ\n!<��jY�|BQ��N�p�wx�o9�j�:Og7(��d��KQA�����rU�&������Z���~f�,鷿�����ܻ\nd����`�4�.�{�mϖ�S����9\n]b�G+\n(x���7��\"���\"�5n������WIi����a��z��_ݮo^2S\'�VAF�X�j#��[ͫ�3�H���@!������+siA$uN9�T���+��ƺD��=�#�w�j�x�yӋh�OB.h���2��;�bI�q����S��]�B��^ ��Q����k���4 S�d�K��O�4k�(@F%<��;fW�V��\0s��l��^���}!���/e*�\"O-4_piL\0Q[\"Kr�&&7����Zd\r���\'�#��W�l);*�=�$�9�9Ocor�]�Ȭ-��b����`���(�d�\n#�D!��ά:u�s��WO���(��PX�2��t �<��J�H�v�i� b�4l~�e�F��mj��=��g��y�0&����/�j������#�x�V�eaz�������Uܞ|-�����T�[7�|�|�A��tu����ia2������0�����Ĭ�]F��sf�*�M��\'{Hs���l�\nmL��7,M!mۖ��\n�=FK �.��.>D(���٪�O���-�R�6���W=��q;7��6���o撴�\rV>�=�5�����t���[ߓ��@���I�D^T��@�@��V�p@TUr�O�����\0������su�1�h,OT����U̬�$�&�^�9�]Wg��G������\">�J�o�e\'�7X�w�(�uc�J���[1��\r��Z����[�Qj\"�0Z�7��-WN�5���\Z�/yF���&�����}=\\H��V@r\"�B� ̀zϗo�ֿ�Ţ�&�ȣ��%;G�a�3~��YƼ\n\n.fd���\\>8{Ά�AH�J�E����2�>����1�}������\0�:a�T��M[��-o ��_��\\f\\čj�t����z\"�HP����l�缳���?��x4�P,�E宭}a�b`�Zn����/�^5����)��o嶏\0��5���x�%�,�_`�@��c���?T��D���Bu��=781��z�`~���������R\'���)F�]\r�^���n@�h�5⭱����A-z�����.kѻ�/�V\"5PG���7�}j�!�mYZv��r�Iƒ�p��4����{���J��YE܍�xƵ�(�٫E��Ƶ��5�d��=?N�r�s�����.�P����ЁäO�2�:~�,��)Z�U�s�k���\\u��$����1�JՖ�3��1G3p���R�m�班ߩ�\"s|[�v���ӑ{�o`Y��U�����\rt��廻ķc��?Z�S�i!��M�[�����<�Ũ�����7i�U�\'���z�: � �6�����/�z@��6T�&\0�Cp�˄���(��$���n�Tw�V���;�LQ�72��N�͋-m��4|�0\0;����W�4�b���Q(ɞ��@�tal2��X������c��I�RL���� 2�9��^�d�6_V$C��8t�{S�\\������ �I���b�\'h�5��_����\ZQɒi�눙O�s�J�:h[��ڮ �ۮ_�/Stt�Rʔ�W�CU�x��~�:r�Q⨮w�����E�����p���VѼ���sc�`P�zl\Z��C��D���#�a�N��3\'XZ����Eؑ�]}��܃w�z,�<��?�P��&䮋�b�\"Ay��M��G�w���s YN���0���#�ss��j6tv�Dz�ELZ�dM몶W��9��ITLc��r\\�h =YkHTxD��e�:�#����4��7Mj9����|\0i��&Ĩ��Lu!�J����o��0m��Ͽi��y�����ۂ�l|4�h���N��O~%��\n}\Z�����H���[6�a���B2jf�7�����fL~E�l�f\Z��]�ܤVB\0n�%M�/��[��;�*��������&/��_���/�!��r����z��¾���$et�%�Tn5��?�*�B�Rg����dm?��*\r4��N�eTs����M���!�r����٣�����0a�T��\0�ڲ�@ޮ�.m)�N�u��40�����d0n��h\"�$���WwYKL\n�� -*���^e\"e�(_,g�\0�$�\r���O;zjJ��,nq �U8c�����O��\'�x��vW�\"��jC�+o��%~����q���O�\r����P��\'�GrHq���\' ��[y�-N�Izc`�#�����0�ѿ��߯;��< `>7��Ts|�46�f��B�!�{�C*i\Z\"��c�9��q�L�Ԭ��� �*7p��O�6�S`�n���j���V�FmT�`��b3&��.�j��ݤ(qSj�p!pu�zI0J\0���&\\Ar��־v����W��^ܨ��/�,�G�p����ߜ����@d���ß-�ȧқ���x����Fkb�s�z��X��h��%�M��n��cCE+c:��\0�e���\r���ު��~�\n�M�w_��a<�>V�X�\Zl�5j���~d3��v�_h�i��0�7�ǧ?�{e�&��ک���\0�͏\'4n@�����\Z�.�^�di�$Gٯ�6-֢\0���q���xw&a\'�v�V��ҧ��#�c��wr�4w����%}�P,H���R(������T��6a��\"@��J�m� l/��hSٰ &^S���h=�.�M�\n��6S�Q��aHt����8h����s��]��\Z��U*F��Rg:�(��B\\�L�|ԋ��\Z/�5��Lr��`[�RB�ؙW*_�5�N��^�;��&:�����\nW1*U�yKeŰS�!�.!������5C�^���ی �İ|vV�u��M�M=rv���^\"r-��$����Ͱ�Uq#\0����HD`����>�v����+�O��鰘7����}\\�:3ҹ�\\�dA��ye8h@ܶ��sCU���)�O�t߶������/m3R�?�����w����ZL�� �5c�Z��S��.^\'��呰�%�J(�V���/+��M��餱\0�.y�3�6�x> [/.�tT�]�wpX�%��]����~|4u��o��Af\\Đ�Q(��Ë�\Z��%��|^�����]��Y�^�F��#c*(��#�\n=<�e��^�ҷ\'#S�=w�W|�K:�\0�kG�%���oC�l�\'��N�\n�p_����Ď��+$�i�7=��I�5�����iB���4<��ұ,��F��g��M����Rhj���Y��ı/�<)����p�Q��К��P_s���Z�0T�X��A��#6{�K>�~��q�I�=!�486���>$�Vs�yJy9�D� \Z�_`�X?4��=!�\\�z�Rhp�}��@�,�r�Q�!�U�fY5�u���ϱ�\n�E��faq�����Z:�ұ����b���L�n-#[\"�6�1zvi~��3g�F\Z�4\Z/��җ|C�A�b9�g�=���><P�0�\r�˵���c��+\r*+H�\n$^ѱ��&�>HLi#a\"����O�f�,�8���,M4a�!��_~њ�CO״&��8�Y�:��_��؉�����\'qP�#ŷ��[���`�~;���H�kMX�M�L�`b����:�$�d���\r���s���>���L>\n&�H��˼>#ꌆ��7���9\\+Ϳ<wC��}�\" ��\nT)Q\\u�:�b&pű�}�BH.G�;d\\Z��Cψ��\Zo/���b��o�#�W��ױ�.]H>Z*0����oo�����Qwf<ɯ]��qm��f��~�pż�=���LJ����h�Wgy>���!}Y�,:��vα��y�!t�{e�%�YV7CbL�댪O{9��\n�.���5Y�6��}�oџi-�(�~� �W�ρp`$<�\\��5wJkSf3�6ǧǛ�m�0*@/�Wbo��wZ��l\'[��ٔ\\6�\"���9M�a���U�_�h�I��>�,]�CͲ1�i�:���S9\\�,$ْ��<\ru�v2�6�Fg�G�,|�8������i1��<2�,�8��+w�lU���y��u##e�d� �A3Q5�R��p1\'r�Sl���Y(7wA��O)FP]�����6�~\"�����?B�wMҳ(N`�q�د���U���]�҆\0��B�]3��۫�#���C�d5F��C;ԩyN���*)J�-����1v�j.�������y�1�BǷ�qk\n*;z���8j���c���q�#�c-aP��F�& \\(�1����(R����^���\rm�)�O7�x{@*�;�=���ۏ��@��s���;�Jʘ[ԗI�>~���4�\r\Z���$A�C�SwXZ{�}�aj�D�}b�9�-���%�\"�!N��_)�\\�����*1ð����5o3��rX\Z�&?��V\n��)�K�-��M�$���A��͌���k ��/m��d����Ӳjs�EF�<3��g���{\'�mv~�D�E�fM�M[S> �s���\n� /���U/B�y��?\0��N��s��\"*\'7���p$i�x����ȭ�v��`���G��J�y�$�:�xty*Y�߰��%��d�>���� �i�H����b$�&�n���6�p\Z��^H\Z&E5CCq�%�.AB�ʣV�ڗ�C;��7\"�A�b�IYI�\0�:�)ѷǥ�`wcw��\n�N�I���+�a\Zs Lz�f�#4C\rVv����by:��8�3��o�\Z������\"ڹ����ϟ?��ɐj���A�>V\rou��г�\\.$kڽ������e��h���n���n!!��}���i�K4KT�Tb=2UኰOB��`��˳�+T���9]��-!I�v��s��[�h����?�Ƴ�29��{�qKξ��Д�!��I\0��(�I`�ӷ�ۯ (��hs-�љ�G�$%TBy u��ة��x��י;g�dB�]E�\r���r8��ϳ�+N+R�f���UPt� �9��x���l����2Ū�[jƗIh��*�@I=��h���Qۦ���х0rç\r�bR�vO~��nw}߯�gK3Տt���e�$�Dv����E�Z6�f���+(��)���!����\"aDr�9aC�53��{��A�{��*эb2Kwwqҿ�o&���G�D͢�a\\�L�մ+^� ���p��B�J��x���7�?Q���[�=匂ߐ�ե�^����^��3P�ꬒs��I��!��>���@���Y�����{�<���N���a+⃞�78c*Qt�S,�8ν�\0�T\'��L�OOx���Z_E�1�T��1�V�mH�Y7tR~����k�{��Y���D+)��Y;�]����^��e-+�A�n���5&�_����q4+SH�x���{�?f��m3����`�a��teB�K82̽��V��nF{�i(��]�fӴ���������`���T�uC�dJ��m�˴���.#,���t��\0W&������;y�c�����<����q�Ќ��2�����5ݸ�;���N�k��=xn��%�vA��[�y8n�\n (h�!��e�����kb�Hk�������[b0Qy7NJ�E��3Sjz�$\ZM]�6��8�Dz���kTykm|�-����@��]y�%U?�vw�Xl�^�{qʴ�D�6�8�N�?�%aPŧ)�]�NC�1�C���L��W\\M!DJ�y�7F�(<\n��oM,Z����`1O�Y�ﲆA�Q��2:�*�t��\n����hO|�;�z(�����\'����������;�wh�{�#6��qY�}��6GWȏ�!~����Zãσ~S����LKj�J|��4��<�&Cn\roۼ��0+ˍ>�|��PJ��P�*��m��l���@6Tѕ�\"�������A�l�H�g��9��L�M��=w�:U�Kץ��D�I�H�������&dtM6��&�۵b��8��Z k�{�<مJ�W���~\\재2�c���\nt��JmI!K3|M�1���j�+�H\\�dy�����q��E~�߃!��>\'c���s�t��Z*J^�;6Գ\Z~�IDծ$x�P�iAU-���]�=���\rj1�[Wf�%��>qp�<Պ�\n�����)��^^�c%��W����m���$��:\'bL g�}dA �,�r����w�Kw/�>���&z�k�ʜjM��U:~o����h�}�5�[��;�Rf��Ɉ�5�k_��jQr�Q��V�\'��d�M��2*^�\0�\n�q�#\Z䉩e�����I�Tv5�܄�Sy8�#���GyF��$�\nr`��Z���p�G�G*�\rr\n��>|���Y��w$��\r�G��W[r�X�<���{\'�&�W4x��W璪�Z�)��\rԓ(a��y{;˶2�f��Q�,�����+<�\\\0\\\'�⮝ ���3G�d�߬T��*������J\n�^D1��o��=�$(1���\rۖ�/�zh�T�<��]���o�:x<Uq�PJ�}PI��I]��y l�H\npᶀu��!�4ߒ���jF�\nz��\\W��|�r���bϒ\0E�0+F7�̚\r�<!-:Z[��Zj��m`_������2�]�\"�{(4�0{�֣�����}\rq;;)D�m[��5��!�&�`���c��>?`(ݮ>Hf�=�\\�T�-]g��r���{�G[�\Z���x��Ds�uͦ���ޱ�4EXD�6�\0�ܗD����C�x�bQf�r�03�_LA�_��g�\Z~��.���H0��.��L�@ەC��)��20mz��{T()1�Z5-Pq�B���ҖM��Gx99d���䁊N���5���8�\'�A�зi��*8��.y����P�B���\Z�Y�e��vNt�vj���I��?!�\\\Z\"�4��<�4�{}�aБ�8a�;[\Z&+:�3W�뢅?\ry����Q�η�!Le���s��E�g#�\Zwj�t�#����W��$%[���6���Pm�����\\I�Y���*���%vbb<J<��s�j��ĺԴUz�ﷺ�9�縙;�O[x`��*�8H�*r��.�P��#Z���v��:�.N�M�V��rz$�}�9����:�q�C����>,�|��4���0F|=�.���2ǐ��{�E[r�PE~P(^��\\>]!��r�^8¥Z#u���`��x+I[�0�N�M��[x�V\"2��F��q����������Hƕ�4��6#\r0J�7\0�[i��r�B������-p���*�i��ƭ1��{��(H� Ԍ�D��� /�Clg��9Nv���DB\"���A@%��\'+h�L����^^�+�#e�)�.�\\�Q�\"��6z���}_T4x��m��a���#E�����>u����X�$={+cܧl��o��T�\'.����E�����]��\"f)|�ns��M��dm�˸O�;v�W���l��+`�`B��\\��&kk���h��i���qŅ��m ��w�b{Ag��/��Ÿ�s�ä6�I-�-�m�DW4�2V��9�X���-���ԁ������^���L��G��8㸭�DC<�W��F�N���B\Z�� � {�yWPJi����\Z<@�k��q�sa�,jJ�!�w�S�������ޙ�)==�)���eFK�x�:5D9@���Ϩ\'�<M�t�v$d]#짛����߸�X[nJ�@���zv���T\Z0:t�{�^!=�����.`8G�?|��#�C��=���(�6כ��iu�h\"KS1�����R������+/�;�����iY�.7/�X���M7�~Y��+��/\\��1��}k���J?�dA�<a�C���3:[��n�X \ZA�\r�҆��E�r�B��Ћg�%���3���׳�E�q=v,���V�\"�/�C꒹=���8��u�P �kʼn/�L�AN3�)�ECC�=���\0�{�ק�\"};��龡��t�O����m�_���jWG��\\���boj�H�]x!+�>���Ԏ����z���4�J�1�~J���9K�m����`��v؋^��GRf�﹘��&��vcD���O�v��cQ�]�P=�������$aF���jF�&|uPU�MeG1���߹���bۥ! �9~�Gg�l��ȹΐ�3|o�?�D^a�@ �C�C����N&�P��S�t�i��z�r��{�cY���G��*3��\0�ȇz�=�B����l3��u@�ÿc���1�,��)�a)�qټ�q��f��L���1��J�|b(�#}�\\E�պ�ʾ��������U���L�&���6o&��ء�[���tJY��$�M��A���q���6��\\Y?+c2$������)6��8*�Ȱ:E�@}��zPWE4R�c ĉ�ۓj�ڔ\'�n��M�}9�`�AR)����y���$�*[��|�˺VB&ipU� �.��Vi��tt�]�\\;H�I�d�Dpp��S����s�J��Ǣ�\Z�C2]�h��?���ֆ�~8��l�Ȫ4,Ǟ?l�kJ㙸3g>���ڷ�dGzfwSC�<��v��\0��f{��8:��\Z�\09A�B-���\\��\"��R��LF�vɩơ-�&i���������N�J��)����s��+���N��m����ug�h�2%��.�g��0����K���>⏺�G���.P@J�3t�B�k�����D|$�T�s ��$Y����b\"�)�Hz�d����<������#��ya\\�ګ:K�B��8��co4���>G��1J�`��Z����I=��cBfe�ƷC�\0��22��Jn��M���F��2��x�<�ƌ�6&F�L\r��<\ZR�#캝�Ldp=�@fIW�X�\"�MB�1�QwoX4bx��c)@D�˥��k�a�˯|9Y\"��i���*�U��L<6\'I>��b�5p�<�e�Z�ps��}�[��Y!����m�#�e�lp���.�x��\0�mx�P/d;sT��s�M�=�j�%�0�b��N�tR&y��.��sE���$i�l��{�y��#���]i�F��F�3J�=�{$��˻t_2�x�<��-���˜wq�I�g����/�8&���s�3o����,\n߰�j��<�BH�@?� a��������g��j%�a���Y\"p�����k���b��}���qB��}��,?��]���/�1�{������Ƅ�/�:Q�����v��>rr)q�Ao�\r�:;(S>�����B�!V�5R�_B�x< |9�\'bL*^����Z\n���\\ȩ���|���kZ�=��\"��C�(k\"!��~�5�3������\r�ϛ$L��t�*1�3�p8A��t#���?]��Dw��_��X�Y5hn.�c�e�\"�ӌ� ��\ZS�����:��v�B�i�7J�7�]1�k�k�1G¼,`|]$9�`�,��w\r>��-�W���7*��<:��gj�6��Tz30�8�Xh�^~m�~� �u�ބ���22���R�Y�RP4H9��O�}X�-*���߳�rcY���g�x�-�-����v�c@P�`�2�_��PVb�BȭItJ�̀r�{O�s��\r����A��3�Ǣj!8��}������c�G�J�˴�`�nؘ�U���\n��=�����I����n}\'�`C�5֚%�{�A���/�^���r�)�prAJ�B�Q�v�ep��)� �R����Ny���H���y+3�H(H^��e�E1�o�y��HF��Y?\n��}V�ք魘n��r�\0v1��s�N�>cID٦����I�0�-�*�F��:��Å=IH\'x��\\\"��\'��:�*;:���j�l�3�0d��sc\0q|KF�0���_q��YsBK�bַb��(�7^:��˽2�dl@�WH���w�\0�� wW�K9�����ٝ�3C,w���W̑�>��\n�c6i�S�!�ຉ�Y8V#r�Q�$[)��z�ná�W;��WѠݥ�`���W�AA\Z�!sn?R�v��m�}a�x�{�o�J�ᨷN�5q��K����Z_��V�#��p�W��]BS7��j��Y�4�ci���A�W�\\���~Y��W4��#a0�<�g|.J���DS��y��\0a��e������ԦG9~�rs�jJ��O����}���5�e�3��3��mhyD�Q(�Ĥ��g^�L�\\F�qA\"������@����[;�K�kq?B�y�:P\r\0��!��E�Ð��#���MOz��q���~��Γ8��,����՟��/��j!T������NTح�� ���䅬+.S�^Q�iͦ�&����YX1\"�����I�+r�|�w���T1a>00nio��+�\Z�oo`�yf�n�y�=C��ժ8:�ξeZT���W�0w X�$�q/£�1����S4��i�j#�D���]��Uu���_��(K���-������n�D(@�����&�6�o�Z�&��$��b���X�\\�mfkJ�ړ�I��B�(�)�&.�}�_�j�h�F(���֫��]�*|Wju��t.!\Zf=�>/�\'�^O��o���E�;3\'�(?��G>cg�x�W�ʡ�̍V-�E�ArDx���+��+`�c`�/[��-�J�H�n�OQ�����_�*�}���܌�����|��QБ�\rq-F���V�0����@�������Tن����\n�Z��~��\Z��,o�{���l[�U���E�X}AJv�d\Z��<`ea�����X��9$Go��)��ոr?�S���*�8�q¾}��=3x�A9����l��p\0�ư�9e.O��m�)qp�����pJ�Nnxh\Z�a��? �4����FsfY�2X7\n�@k%|/�@J:y�$Lq��rh)uF@1���˞�o��A<��TQ�Ǿ�ў��K��f�\'��?�=�O��nư�^���im�Q�q+��\r��:�Po����\Z*�����\r�94Jb� �r�1���LL������d���O^,�R��N��s�Sn�/ħ�ot��U�����$D_��P!�d\0Lp�Ok7�Nl���Ln�\nq�&x2����*�n�;Y{��uDW�[��d�g�{�8�Jѫ& RR�H� �����zf�\nx̗C�J�d� �B�s��n�����9���i��S*LDE��$����Apf��l_:YT�^,FdΔ�P��g�E���̃V���������@P��8��S0�JȪ�����\"��>0�mT������!�\Z��9�A��C�d�8M�+���7b6�l�&�ln����)Z/��@��*�6�y�R7,䓡D����F�fl�~�0#�F��y�Wy��$���-���\rm����}Q�4%{��{`�\"2nE�*V$��ʷ�x�c�RYK��S��M���O-�vY�� ��|���Iƀ^Q.a�W(f�˿b\n�;UB���g�n½��E�9��[9�|<C+~�T����RBE������nH.�VR3+ֽ�fj�v��5��+i#\"iR,k2q�X�8 ֠,It8��҂�Y��UN�*�>F�ZВ�-�z���� ̑�T�gq������ܧG8)�N�*蹉��*01�G9�!1����}�W��F�8��|�Va���pV�\Z2�$R9L���G&m�[�ӏp(�f$�R��zX�Z8t����80pV�ۍg<�\n��E:0o?�%���ڡc��O�\\ޱDi�c,7[8�NGs?�������3��U�Qf~�-X5��\rJ�V����-�c%#�ep�~��8Ϛ]k�d�nO���E�Ţ��7��?>��A��2N�p�$u����p��6Y��`ȏ���#�v��R�0u^��/��\'~,�����sJ�$����Tl>6�H<��oBr[���n�*ªX�z��\"�ʣ�Y��_��<����\'}���@i�X���^k��VQ��=ʧ�!������d�~��+�O���i�gi!���H�\n\nu+o}�Яn���������[��hD�e�(�ޝfO�[��v����\Z�d���q|j�?R�N>�AA�{z=�\0t���Ws a݁�i�i�W[/;��q�P~�Sr|����L���8�e�V@�5��� ��]��U��V��b_$4�_�m2���B��J�\\�5�ߏ\"% N�1Nk��Ԇ �3Oʂ���ل��9kNjL[�AS\Z3H ��Q9ͳo�@h_��!1S/��x�B������MW�Xr0aF��d{Q�x���`��S��8,�^+�\\鏯�\")>(J����,��e��h�=��U�P|�?�7����TvA2YB�\\_�����d�a��!�\"��QYP��56#�*��Oy�Ԭ,��s�2����x�pF��T-o���u �TT�>�&W��m�_�x�И4r�k�)��q�u��F�@Ietʰ�K�c5gr���k�پ���S�d�1DS����Z�������\"��:4���KLJ_J���A<�D�Ƅ���$��&��lS�R��s��GW��ė�T��\ZZ��%�����u��_��H\"�Ȯ���V~ 0���0�j��Hbн�\'�`�/ރ}X�3�\n��D{|��� �Q�aK0Rb=���ѶX�,c\n5i�k��h�aߌ5���>tٌ�^8B�rZ�`^��=1�{K��� ��~�ظ1�`\"�L�\\|��w.Dk��<���� d����r��Oj�¼���ڃ(���)#}���G�l�Jv)¿<�~�Ͱzu�h,yq�p�h��O3A(�Y��-!V��>d�*jP�F� �;QƵ��N1aG�(�)�s�0J/��@�(rO�| A��>m��/[����*nB_�RG-�YX��/��Z�K�q�0��$��H����]po=\'s���X&͋E��;\Z��%��*�j�f�/�i�>�;� �Z���\0���*s�\n�7)��]Vl^B���>�������-�t@��^~���W�-��O&4#�h{�Il��1�@�lhb���T7a+����y$��[��7���B�7k;3���K���d\0�.e���^7AA���R&D�Gm1eE��:â���s��l����\\�KNJ���m��b\0�V��96 ��\'�?�nH�É�v����p\Z��߾���V�ۈZ6�j�j�Ë�H%��f�V�֗��M^��^4�\Z��Ù���K��;�Jw�H�佐)���K�K�fÝ��ەt}��y%Jn���<�~��\Z�j�æg���mp(_�YN��j�s>�����ESiò\"��ӃƋ����T^�ނ�����w� ����]Eԫ����.�F=|���������!.�s?��g6G8� �\\2x�_����5\'����V?\r�&����EHDu`�F�2�<�\"h���֭������K��&Rs�fiK$�c�N\Zh� 9�ҭ��dЈV��o��c�8Q��1E/�=��\rX��݃ h^�/�WXgjU@�6%��0I\r����D4e6�S�o5R�Zf�ޱ��<Ÿv�� �0����!!��N��֢ƽKr=�)4�u�+v�D���>��m\0�����a)��7t2�ͫA�:������yLª%Xܚ�lYD����}�;7�s̻ƪ�����?������ísͩ5D��L Q��\n(v�y�e���r 6s��5Q��Z_^m�]�#knn\r�����)�1�:�\r�x��g ��l�!���S\Z�c/$.BE�k\'ZFy�|�A���vPUIEAL`��L_��2,�Mt�)o�f.�z%ē�.�p!ih08��n�d�7M�l���T�R��ĕ��x\'�u~z������e|�\\E��v�2r��Ĝ�v 7��g�iU�eޫtȾ�!͓<A�a�OgĞ�Ǒ�K]Q_�r�o���Xϳ.��o����A̳\r�����]y���~1] L(p_������pgп���]��bz�%�Vt�(J�\\�ֱn���]��p^���8��cL�ә�n���R��\0�R���\Z\"�\r h��z\Z�E��S)nnMR�a�\ZpK3=V#ej�i�N<�V����]��\Z��r��?��_}��9z�Н���fi��`��.=��m�\Z��l�a<c�GB���\"$����)��8��$W��**�f�S/�,H��k!]\Zjq�B�l�����Gu%�?nc��fd�v����d�GB�w���iJ�O���Z�@��-�.�q��H�x7������\0�;�4\0��\Z�o�RD��\Z�J���v\"�(p����{v�;�fˋ �&Uu�u��U�^$d�`���v��7�fErR�-�y���V�*�Lg��bJ���x���.g0V샻ZesWTm�^�\"��Q�ќG(͢�e�K�@^�(1��]!�\'\\�stE�y�j�����:o�d�Fa�nd]}�P�s��rK�S����#A�/\\�\n���\Z\0�c|f�f�ř<T�>�]|O���\n\'����$K��#\"j�,���ś�<=�!�-uW�=�T\0�c�ᄒ�F`����šͦ�S�~(r����aW��R�YអuYde6|ŦO��\r����+�\0��A�\nN8����5p� B�b�tVV:Ϩ<(��y��k^��m�<����e��6�am�Ԯ�����R%M1;�����z�D�k16�∃\r�BXњ��z�y��ޗ���@t�!0�%��/�;�+�(݀�t\Z�U�)������t�� -��b[�)>��\Z\r��g��6��߷\\�q�-w\'�HB�K�t99�Jm��|q�H�\n� w28+��l�r���o�P@�s>L�{��4`�D��M������o��a�Y��m��yt���P*�\nDճ0AA\n�k�z}�*�$�c��S�)KxX��1����Ӽ������~���b���ݥ��9�wEE3����|:G�u,v�lȾl��td���A�4f���@H���eXq�Ɓ\Zd%�\n�[�Kn��0���!�&^��pƄ+����n�T\0���o<\\?��_.,�OӔUƐfB�䍎����C��<Z�x0����譃Ɯ��5-�Zd�n3�I���\rC��\ZH��cAƨ�f}���>^z�T�RsEy���:�v�ʋ8Ư�<�1��ֳ��-�P�f@��G�\rG�yƴ.� g]�Jz���`������$L�Kf�<�ƴsf�O�C�|u��t=)�k% �Ya�@ƺ\Z4�_�9lR��kU��k\rP\'7��/^���ųt�F\\�\r�?��v���WCYn�qC�}8|��M�\\��<d^�\"ą�9ޕ�A��N�Ĕ����\\b�Z�_�u�C�,PI1�[\0�2�_��H9zn�D�� ���rY[����\"?�\"�Z���c�g�\r�~ ��ǐV��5?�B�� $�i1a�0EQ�aQ�����2��F�\\>0�/�.��\nw��\'��O-\\mo}%-��\0{��@���\n�{�� ݒ�����S/�-6R�ӊ��\0��OeL�oXr\Z�ִQJ�澥�e��:�P��\r(u�Y\n痬��}K�����³�Z?�A�,\Z��Y��um����<slM�aPL/�+v�wd�ǁS�z��Q�c\\�N�����~(fZF�J�~\n<ǔ�Y�M�gE+�U�X��57�HE��ht�6��s�ǣ�@x?��L��He�x�ݸq��*�������a.��dNG��kNך�P�\'�hH>[Ұ���[g��-��d��9# �35�{���Gg{�t���B+ϟ��AG]�\\�(\nP����o,m�]�|[���<�y�S݀��<���N��!)�v����Fp�w��\\���s������}�s�`��Ģm%�QH�y\0�r|}�D����{Jy3W6;��X��^�\'�P�1|р8&d���K�]�� �����E4v��۬���>t&g�k�\"���\r�+��fU�ʰ4�xY�*R��l�գz�U�c��\n5�K������ȷ���84]$�0T`1�o�F��\"��&�\"9 ���(��z�&��̱ȁu��Ƨ����c���u�j��ӄl�t�ȃo�g���Q�����f����E�-f�Ȉ���Iy�\0]Q�ἣ��(����Ͳ�ȳ��(�^zqp}ٳ��?�{.��ՙG��p�ȵ0���8��S9�M\\�1ִn�ហ�/{��4ȻI��Ŕ�q�d�<�Pl�m��,9/,�I;?%���y[.]_z��aZ%�U�$DW-�{�};�y�*�0՛s�:@�&�O\n��ov#�Ͻ0��D#���#��a~�7ԺM��ާ/<]���Ft��֏�\"�O`3����vTl��Ύ�\rG��W��6�,�_����{�*�O%E���HL\rj�M�Dѝ��b�SF\\�v��l%�\'�Ͱ^�3�E�>�ˑ��Y��,X���Rk���2���I?~�4���]4�����K��F��\"v�I(�QL�O�����P�����(���m��|9p��Y�uc��?-������F��=Dq��Jkf�ɢ��::K�q��3����5�F�pu@��ɮam��ș�@�D��m�P�����J��ɯ j[IY|Բ���b�X$�n���G>����LIɯO3e���F��㛆��v+����.r/�>�,ɴ߁10Rz��ʵ��g\Z߁ԑ7���Ȳ����GEA_l�<DO����+1�:�}f���%��B]g�\"`.E��q������-C�����9���6q �<R�_��\n�YBb����S\"�B�-+G�Q��J�2���~snm�1+uf�\'sOd�N�tk���9^{���sx*X�\n���b�s����Q�h\Z�P?��L���y�8��&�>��I��B+�a�wqˏ�\\��N];L?sBis������(܀�zH��O��?��۷��G�۠ԙ�>Z�� �~�����y�g-��Gyv�m�\"�GB&i�7qʥ��v2��Z���}K_� �j���I�l0�9�Rʱ~o��2\0�?S��V=����Z����s����LMk��;P�hJK{�+�f�0�|�#��8�:k�Ϣef��H>�\\�p��V)��$�|x�<S������ ��ߪGG�0h���d�r鎄�\nl�j���s!���~�B�Ol�;i�Ke?�>VP�bA���y�+��L/S�Ռ�$.�bn�e�͞B���x�M��g��F�h�W���~d\\�1�a�\n���Tp@��ǘvDz|�3E6�E� j��\\�P��(�g��C��?�#��$/���T����A}�\\�DU��^����\\��m��$��Io�*ẾV\0�!�[� ��#��އ�*\Z�mh���p��6�o�2&��\\+��\0P<IYM �v��\"� ����X�8�d�9#�Z�ѝo��\nT�#��t���9rd77��:���#!���]6�I�03����ѵ��!RY�=~u(�,��\r�D��jT��O���~\"�L�BUx���lrXw�c��<��z!\n�b�O���p��L35pD^8�DX���#qֻ��\'�f����s�.�����3�7n����e��g]{N�j��H���.N!��q?M���*�]��-�� y3,4P9ƕˊ�%(�����|�⛩����vq\0��}���\\lnˠ9���H��DZ�Uh��LgN�{1W(�w�\n�˶b���a��t�+�f�lm�:����˺C�����\\�=�vp��O�W�)��[�СM�����2��S����S{zb��-�ͨ���4]?�^Dk=3�!�Z= ���k��B§�������*P��yX&%�0V������>\0�V�KN��\"KP��K�/+����R$�f�!띁>��7��Mi���_�\"�4��� ��Zg�����\"a��xh\"����\'M�i�5�5L�����)��\\e��VA�����7����rd��m�Ķbe��T����,���WMz(���=nj �<�5��/�#P�N�g�z\Z�&����x���?49�<c\'�c:y4�Og8IJF�G\0\n��Z7|��Aq�+SO\r�z�~(�f�Y���a�ι��y=A\r��`��]Ƣ� V�]���)#���d�O�X�1��r�eT8k�,��Y��h\\���c��YN���iT7v1�X~J��������=_[i�\riJ��q��o2�ҋe�}���Xto|�zJ�H�ް��>̆�Fñ��#\rb4�8��L�I�۵�?�2�}̎�1�B��S��b`;\0&:Tu�%�f^ځ5̓>-Pc/s�rt�)��xK>�l$,�\Z����̚��Q�\0u�4J47��:�\"R,6���\0\\��̨�t���X\'�Jܳ��ai��m��>#M�e��̵� ����*�o2�d���*_6���c\nzp�̸�\0��SE�6��p����Ox4`!�����q�Jޱ��e X�{~k��\0a֒9��pA��٘���Ǎ+���+�N���T�bR���s����&�a��&J�_���\"O�Ta�\n���S����.���7ĝ�X���`j\n�f��}�D�Er���F����J�?�C����NТ�r�7��e�A���Vk�];�Y��E䙡m6%\\�3de��\n�u�8K�8BT�I)���W\'������|�=��]m8ʼn��n-`�u�&�t��ߜ����S�u���j2�kp�W�6��{0@\n-����t9�$�-�VrT�sYݥ�/���h)�`�6��3\n�\0fByj��Zi��\n�F�غ���\0� µ#�7�f�����hCaT\"ё^>2���^~\"��-�I-.���\r�Q1*a�� D.��6����OG�\np��Qj���8�.q}P�ҝ��J:hQ�yy�f\\u��:��66k<�RV8:x���ȑ�͈{g-�Z}���^0:�~��+�>�x[���Pͨ��8�Q���\\��fM��J�����������J�8��G��\"�獃�N/6��j�)RV�9�� ���yO��Rv��nX�3�f%0y8x{�No�:K�Ѱ��y+�!�1����E���À�\'���U��ʏ��� %Ix����`������Lb�ɚ�[_I%������džm_�|SL�����h�a�\'\n�� (�\Z�\"f_�i\\����G=X�1��!5�4�V�?g���!٩�!�_#���*������B :���_�$�̻�{ϛ���@]�ӎ�S��C\0��3�x���G��X]j%��=%��<�Iр�hV8qW���S����\ZN��| \"�hek�>t�3S��m*3��^�e�9|#U�6UO�����Tb���o��~�s�/���.y�N+4[xV��5�+D�\"��G{\\�u-�TƩ���\\�X�i�����{� !7)��{d�2S�����gzfĞ�MJ��KKY1�·^\n�b��q<v`x��K���Z�W��>�Gw��Ύ��u��L�%�\0���������M0�@Ε�N�:�9�R�}�5U\\��_��^s\n�|��Η��)�nS&[{T.��6Y��i*�H����Y_Ψ�4��O��o����aR˯��^�Nrk/5�έwJ.ֹ��҈r���~��w=4�j���ӐήO��O��y���#M��P�u�bT2.tٰ݉ήF�\Zg�T������i��0b��w�i��ڷ�{������0E��Ζ@�Kx�� �:��IL����\0ƚ��|�C��� &M6�\"E;���i�`�n7�(�}��9�/�#T�?�DP�X`�d�ӂ���|�ћ:D�3�C�S�o�o����kj�\\0���[-�d8���;\Z3� d��`�+4�Y�;Y�ƏZ�Zt��#}�C�klS��t�Ua\"6�kHD���U��xKU�>5���Jʧ�-��L�E�{_E���\0� ��RB�}��N�s�E�C�%��\'�ۓߟRf�?�\r�����U�ne���\"�4���\0Cp/�5���|��X@㺪��gp�.���\n�5_�Uqڠs?K3��^�kǧ!�\0L�\r�b��գ�ݭ,�k�s��h��-�2���7`��hA���8�%��l�uݚ���>�-�:��[BǓ|*�C�ǣ@χ8�7!��\"�(�Rϋ��2\r\Za�DD�{�o�ό�=_}�+~����(Ȟe��vrC[m�KϹ�%虬Yu{].���ג�d�.��@���ϸ��$���a��5Q����c���Vjv�`d������mm�Y��Q,|�:�K�ʒ�%�DL�#�b��XWb�p�?��\n�Q�@x�Hc��(�X�.�G��ǵ^K���,8�����b2p�*X�OL��a/�����{ؒa��wn\n��yL�I�F��)|#���p��S��R�NbT��is�m��T��J{)A�o���n�;�9�%��n[:��m����t���og�87�P�v�Z:�EF����M�s,�����6��Lb!�G3Jv^5K�`GCЎ�L�X]�\'k��A�m�]����J7�M�B�Д�lWh�<S�=�\\�\"0��iC�DM��q\Z�Й��B��z\Z��k V���w�n���l)\r�МT��сFC)k|��W��j��N�ɩZ]�/e{вe^���K�\r�s�;S�e�D+�Vc��,/�Nо�;�c�\0ׄ5s+�{�u��7���^������߭kF�5-n�!�x`Ok��s���u=J$��u ��8��@�Zx`���#�)�+���p�o�P�ˤ�hz���Y��[|`��;]�����b�`&h�2��)V�KF}Ո�m�?*f�搭�@�%T�ķ�x6Ғ�O�ӄ�9�Ą���9.z8���X˖<R�h�#IJ��* T�q��\0t<��b�CK7j�B�Y�C�n�»�̹)B#)��\n@�}�n��F���>�k7X*��ve�{}b���DZ��\r_�.>�Q}ֲ����|�ݸhOj����I���P0ιo-���j���C�-����W��BBu����sٿ #g��2�&�*�<�Ԟ��1�V�=���(����sS��l�.�B�+u�\\�ۧ��-;�-R8k�p��4C�9�RWJ̡f+V��U��m��9j��O��D�����zq蔷������g�\rӒ�dK��:DѬ��.�A����Q��%8;+�[}��2\0O���\nqbm�~ +����j�D�ŧ�ɽ��5�h�˫\Zx$�wB|9�W�8��gk�8Ylj�o��\n`�\r$%�eG\Z�8� cb��#k �uh(\\�F� d&�\0W�����&Tvj�*��z���X%���#�j���W7��\"�e�K�C�ds�2R�\'Y�.�đ�3�E��9D>� ��.��2�,�!�@%}�1i}�.�k֛��k�gpݑb��y9��Y�S���[�w\0m0H�+���\rq��(�2�=��]��$Ɇp����LdG�a2�x��~e�_Z���a5���������ڹ-�{���U��VdH�r��V��(-�W��#Q�?`G�uGp~n�-ғDjk���h�����)�fx�w����LQ�ғ�sa�\"�o?��Щ������c9C����ҧ��1 8,�^�2��y�I��[u(����Q���-�yj��$ie��Yi{p���\\���8��ڪ�f.�$F��L6wf�j\\�i�Axk��s�t��~����n�¢^�2�๙�f��V)��ʍ*^D.o���R�|D�9O��4[�J������ \"�<���Ɲ����2��,*�5��p�G���;���w2�^���f����5��@է�3�=�E�?��:��zM�$���q�eƭb�a2�E!td��^��jj�)R�Bx�BL�� �=I�5E�9�gj\"Xk�������s��� &�Q�=I��j�E�N�7�\n;R��}l��pfV�b�m����m�h�c\\�J���~9�H�J��$[���x[�֝�~�m/��ȶ���>�ũT.)�,l�;;�o[ӆ�ˉD�g�u\n��Y2.��C0ÎM�(Ӌ;sd�O��&h�gC0����u!�[�+�\0�Ӟ*س��jE�W�;����>$:�̈4d�Q+aJӨ+�`qs�{9���OF���x�vNms��{�Ӯ�¾�&���j\0�v�S��������|.�kӷĆ�{线m�-a.G���B1��n����:sӸ��9�A!���=����a� ��L�P:��Ԝ���̶:wyj�=���ҕ��ī6x���y��S����y[9��l:�Z=�����?V���2T%<̪��Ѭ�J����b�+��/?B��<\\�|8�W)\0�j|���( �y�z��6��33Wq�\'��x�0`�C�A�W\'�>ݩ�A�$��s���8����*w�,����^4�K���\"w�-\0C��V!�)3���Uէy�R�QA�|s��a��3�jqdP���Od��R}{�ԜI|y\'��� v�d��Ō#�Ϯt��ԡ�*IbW]3U��L���]T�)�!�E�Aqԥ宂�E��O1�\":�9��(�TQ��\"�M4%Ԧ0-�/�\\k����W��%o��ޏ\'E)���D�����&r�O�fA[Ȳ4�ɏݐqU}R�\"����G�DŽ��L�g+�\0v�Q��v1��R2ߡ��/Ɣ�~�Ϟ-�\\� �\Z��@G>���u��y���wp�!Q���dz���@;e$��%��ߩ.���ax��n`��f�w?�6y}>��m\nM���R�\r�ˢ��\Z��N�t�A�F�A\r�|�?�����4�A�&E(6��~�e�|vH��l�;���R��\ZV��y�f`�T����Ø`���s[�|�C��I�m�yu>j������\"�e�[8%�\Z\r�����ˤ�\rN}�R��m�D<�k��1��\n��%�D�{RӢ\0�M�+��2�Ӣ����;�\r�M�@��j���c�3.�R�2���-�BH�)�/� n0;�[��`�3��\0&V�OeZ}{��� 7�tBR#\r��\n0f�_`۽���\\�\n�}(�n�a���w�C�9�-A��IQE�D�^�Yl2���Jj�f\"3��zW�0Y��P{��{�y�Tzw�yj�m��ˬ�\'��f��ښG��Ē��GN�2��*�RmWF~�mK$Q�Վ1����m.JM\\k�V�?1 [`u>\0!,��Օ���>�o�*��� ,_wE����]I`[3Ֆ�r�\r��G�VpGG��݊X3�������;՜���5Iˆ���3էKnLm\\U�k�JصlLզ�`�A�^{���B��b�\rN������\Z����ƤJľ**X|i���cy-�u6p�C-�$*\n���8��Yd^�^�u�Y�q,c$��:$(�Y�z�/g��J�>#�\n�\"7���`)�w���1�0.�^R��b���괚f�Վ�RS\r��G�4���(��!�OX*��������7�A��l�\"����ng��n�{R`������[����Lƥoߏ�&��ap6f�K)�^o�灐Os�<����A6��3�A߯�%wZ�5-D�ڼ���@����J�S�\\<�Cޏ�=s\'WI&\Z�(���vaTo�O�,\ry\"�ƺHo�S�v�P ��SK�w�cp��U�%(�l�fU}����h�p2�+nD�ʭ�~����c�yh�G�K��S��huP�����m�(օ�58V��I�0��=��Y������ֆ�vBǑdX ��1f�vH���y�)�l�֚��ă3͒�\rΝĹ������TN�3�_*�.֜_�[2(y+9}Q�I�*\0A��\Z�ʁfg�>�֞�&�u�r���|���i+Q�`ŸM1�U֠)����8��l��/Z�R�=�Yp�����*� �Z\\!l�1ҍ�\\��]4\'7�<���O��2I��u>&˷����u�U��Ė���{��x`� &{;��u�բ�.���X��v�a��Ab\'�L?Q��Lrt�\"����2�Ϋ������kdo\\�����o�~(y�&j���F����%�@�I���(�.#��5U[DB@��i~1��$�F!l&�*8�#W��Br�C�$��D`K\r�{�\'7Ö��\0�W���2j���ʙ����{`���01]!֥\n�c�3*���aVֆe�Ɨ��ԟ��9R��Ot\r�C_����4c�z��S���s�T�Aq�cڷ�59�a�O���҄�?�t���J�2�2<c��8ezdK��^đr�<T{�#�w�M)�P�H�ٹ��kώ%7f�+�$�.��~ӛ��Mxkv�\rn�s��]%����́��T�ĉҩ��^�{�Ǝ�u���������j-{V�=O�\\���dT5^+����`,��<��W؈N�l�S���j����?�?f&:�s�[#�RDs��;ʅi�lbX��.�-�t/��y���kOՇ�|{W9���mdJNR�j��8?|��H!�sђi{OT6����{z4�8�0�og3�x��F��R��.��:+�װ��&䄇��2���C.�a��eE0�,9��\'ZS5����4���G[��\\e��}*<�|L;�z��x��x?&�WF��f�=��x�;Ҹ�.uL��)Ԝ2��d��L{���0��3�5��Y�!�U\nhq\\��D�G�hB��,�;b&��<��C��$�H\n>����T���E�G�N��`��-��*��(�q����#Ԝ��D�]K���X����J�n���piήo��(��F ����rr^$��O�5���M�&�J����D�K�0�F�Nw0\\�P���s-\"�d�,�世�n�7z:�n��SKn��S�Tv�u��!@bv�7Ng�VC���%�{���~4�u��� k@�5�=�(��{\"�X��<���؎\\X��)�Ш®4�ʸcWþ#E5�ӂ�e%����/���h]�����#ш9����`v������b�9�N/��lR�agL���wԺ�Q��\'��b�(c�/���:���+�����~���Z��������|\0u��%rvB�T� i�������ނN�ɫ�����/��=��1��I����Dj0\\l��M�51(R��;\\gՌe�՞�$��_,�j��薶�t�C@��ϊ������&8H���aq_�/�����BuZ��&�?�y���=ӡ��C6�d6�m�\\�]vay�?��Δ-[�91\"#G��|h���H�ZK\Z>B�T*�f�Z/�8�߬���U(W���U��{�-���V͗��8$4�l\\��L4y�\r�ot�f`8��^�`���=�@�l�TzŜ8�)}�~�H}��qٗ��N���ai��9U���᤻�\Z{��٘��\"��[��,�T�#�H��5\0�F \r�R�osٙ�$�Ѱ���R�e�j`^��7�葟%��yٜ����M��9\Z�/����\'��� ٞ�4bV�t����tk���Ep%�~D`%�\0�;ٴ� M\n���WX\n�躨�|�|3ߜ�+�+�4,ٷ�紱�1]�ֲlz��b�VP�x�̜�=�ŭ�?�/���Č)�-\'Lԗ x�!�Uw���_nFa���>e3��;vz���t���P�i(�d���|\ZVw7BAz��zMk+����O�5����@���&}�,py�F(%�Ld�\r*n=YNt���,k�L�]*��]>N5c Yn���l)\"����q�qpu��u��4F���݆$�ӕ��_�p~�*��60�#�?BT�P�|��:�X��k��>��`�W�O�@�!پ�p}��_0[��\Z@�d�\nf!B���>j��\\R^3�����V��cZ��=.\0����܈�\\��\'��,��(�&���M1^t&*/:7`P\n��S!:�b=��(��mybV�aI�jWp���(!A����<(�X�.#�R[$V<��Z>f+���mսRh_i;1��zm�6@��d�3�5(�G\\�ܧDo�i P�p*vw�;����X?=�s|V�F��ƢId��E<8��m�J.�Ewj�����#_\Zܞf�nN���7�����U/���/g�#��JK�Ӓ�]堹�����|�M��n�Y�M\n��}2 `��Q���v��_�\rzB�^=څ�c:��ܾ|@��l�\'��e���߲��~��چL-u5Zkw�=03O���* ;XJ����\'z0ڍ�ٿ�sP!\0�V��t�b�M]^�\'Z��to�^�ګŲ���T\"��\\S�@��ޥ�+0yrx9�M,��ڮ(�\"�Y<%�I 0c+ �����M��v1ںQ��G䃞u�Giԯ�g����#dN��,������֢������_����5�^W�{�Kb��F�yPX��p�^M�ƴs>�\Z�H�.\r�����ߏZ�\\UD��O�t�ޔ�&ŔLZO�\Z�4��vdU����=���=cx\\��魞5\'ҵ�dջ`��k��_[aJ{��p\Z�E=�(X����?l;��]��)O=b������ֹ�\n������\\s �p�J�TX~��\\�s�Ak�\Z-=�}F�b��TEw!��}�a}.�& c-B�\'�Sj?�p净,�X����p��!�:��E���s��t�6���Sz�å���Z������,�j�ۂwT\\� ��+�=��ា�b\'^�x�K�.�ۑ�&\Z錷�ې7�~�����rb�ۣ�<��К~_�m?#�����#�B �(�ۥ~�b%�w\0 �z�9�ws��n��>Dy1ۧ�����#)\"U����G�����ܑ�]��ۭ�M:E��Z�<v(@^����e��K�\0۳}sYDk�6�����M��(kGN�ة\\B·ۻ�oXc���\n�jJ�#��@�R�0���`�T��j�5�D���-8F���Q\r%�.�m��5�R�㖩\r;�gPkl�r<��CD��0*\n�)����m��x:�.�o��w�pԴ6b@�W�Fk��-���������1��q�[��4�2\Z@�r�: �ӪN��lT�D���,\'�;�=���%�~� H`�M?�~\"��u%�[�,�l����+?F-}�M)�����`@}6���[d=w\\��+y��%e�-�_��+��^���J6��^Nih��OJkf�iB�����D�̉I~����.l��v�Pg��wv\r�\"aMI���\\�P�;b��>꧒5>7Dub�lg���=z^�z)t���?Ū�鳊<)��+�$�>�B�FV�d�0��3���m�R�2t��/v�S 4�h�\"�hAD\'�\'|�6[kF=�\nyi���f�m����R����̗U�i����!Y��h�L��a��门b��|\r,7@\\\'>���0��n�+S��K���&�s���щ�\\;Y�q�9���w�m3�t� ��ЫQv�#`i-1ٞ�U�h�ܑ���ǣg���\n��4 ]�D�$���W��ܗ�E�V��8i;��f�e�|���ˤ��ܝ.r����YMDMK�q��Ĺz�Z�p�����ܣx��L#�!��E�~p#�w���p�1[�0L��\nܱf���X��I�`&���:�=^��b�KG�\0.��ܴ&�#��kp�e`��h�f��sI�XNk�Ǘ!��JB(AL�.V#8�de\\��B_�&��:��K���:��\"$_����\Z���g�����p�SI���{ǫ2jP��f�Gi+YH�K�׀�����&���f8������Hk[%���m�r�s+n�0�Of����֠��7��y����O\nQp���5�A�~������j��xt�����稶���\n�oN{mnP,�h�+p]h4���g\0x�-����8�����E�mb��E\rH� Z��m����\"�6���N`�! B\'wC�ˮ��.�0{\'~K.s�J���IPګ�&nR� �2�J���X}��k�;\n���5��V�r��4݊w�?L)��K���f4ٺ\ra~��tnT�ݩzK��u��Y��.��m�i�4���*�UT�ݴ���\"c�YO�|D�\0��;�.����Ѵ�*Nݴ�K��bT�3�y�*��נ�\rF������ݿp�\\�/h#]\"\n�=�/����MZփ���I��33�u�n��M5Kh&�bV\\%�Z$�i�����C�1�~s�\\�6�rۘ�����\nΣ����6tt��|��hf��S?�f�_z���`�y������(H�2�\nyπ8��F�p���B��k��ʫ.E���\"y�3�(ɝO6�Su՛Z&����S,� ���p�\nb!��s!�ͮ]�>����T�x�{��\\7�R�Ag����[:�� c�\n��O��j���5�RLC�I�e���ỔJe\0�.S�F�>�.������w�g�:$�\Z ���V�8{�V��9�/�j�zbb���hF��+�\0~��X�t��Ǟ��C��{���%��f�\"��Z_m=���Z>D[�{���/��m9qN�9wN|\n�֥��s�j*��b����T��O5p�p�`��)��ޖ�p���1i��М���&��19ޠ}D3̲�ޚ$>�����*�����~wa�\r��x����ޥ\\�}�9QZ��\rHO\Z�+�C�3\r͇q����,�ޱ���\n1�$�d8v^!*�3���#͜v@��3�&h��N;y�B\Z��N� 8 j�x�o���XQl~?�8�����i���i8|�����Le��\\UӷHYQ�\'�\0�h��$z��%�ι��|q�������I�_y:����&��R�z��<OT%x\Z��܂it11E�g�U&��2�1��YI\nf ��Yᦊ��FrL����7��u�����S�t֗���p�ǯ$U�-�m��� ��~��V�>����EY\r�,i�Ղ���!\r�2n�D���9T�%T֖�\r>����ƾ���A�Y�{,P\0~b���\"܃�������n\0A�=�R���<�F{�;xپ۶I�x3�\n�zǖQ��h���-n�&�U��e\\�Xj�`��nُ���|�&�k��2�ʰ�S|���I��߆R��y�r��v@|�z�%�Ӷp,���ro;B5\0��C��yaF�v�VNcۊ�i�Ba������T�f�X���|��j��b��dP�CW>b��$=O�tǐ��>G8j�j�4��8�-s�Z�ԏsŝf�?߅y�R�z�5�T��\0�DU�磣 �w̯�ߌ\n���r��sgɴ����5Z�}̼���ߌ�P���ܻ�\0�{Q��Щ#�m,�x\\`ar_ߔ��}>&�Iy� p���by1��8��g�J\n��ߙw��,�� sƟ�lalkH��J�n��?&b+�ߠ��B.qf6*_��-����W�I��4��K2ߧ�)�s�g���,���He�|�\"�j̋2(߹�V������N�A=���X��\"��.�\n�Ņi�2��~�<�g�qԴTϗ���~�%>��ԍ6m����_�5�������}�;[I��F�i����|x�7N��*T����Z��j�\r��u^kbڵ���)�P\0���[\'�.�l7��^\r�?�%�R���c���Igl����QRx\Z�ˮ���R�-S�Zo�3ҳCA�j��� �M��^�2�ɖ<�tfp\'��P6߱�)�u��@����B��Jp���*\n؛WX�&q�b��#s���ͯ�S���C�o���m9���4]�2IeE��k��q�h�@N>�އ͘RRSo s�Byc�!�l���� �MJh^��`��7��Z�=���^ԯ����č�1�Tg��ر��D��w�h�l��ԑ���_�x�4����\r[�� \r+�����~�\"j�\\�粃h_E�V\"���R��҆c��}��o�iӿFp�&K�IPʽ�D��[�����E=3iJ[a��x�(aB�tg�P ��B���\"ೄ���\"-d�J������ի U�{������(�QG�<C�<�����F\Zm_=|�k�Bô��4��>]F�fw\'������欚��Evm8���a�Ć�J���Hڢ#e���R��7\"d��#!�E!,��cl�5�B\\ W�\"gܷ�}}��|����C��C0����v��0K�\r-������p������4,���KY(�I��� xD�Q���/�t����v����ǹU�8��&�.a��YA��=�6�� ݼ��4�\0�e0����-���4J�\0�)Sִ�����?�k\"4�Z�.�/��M�[�Qt�n.?χIqA?Tj<��woRI�Z9���\r�k���X��e�_^�q(ѵ�/̹�h���2���2&�X�t-����a��Z�nCE���m�sN�Q\"?�mFN8�?�pi\Z�h��H�z�O,�k�h�iY��e�8;w*Aފ&\'D�:��5�`�v>��d�k�}<����6�� ���,��?�n�і���@�(�ü�^���k��\\c���Ȁ�KB�۵&|UB�\0�Y���;@7�����GJ��۽揷+�I��-�����i3�<�`VCS5Iٮ\Z;&>�x�$����-�&z+���e\n!�d>���a��%+�eT7 �ҧg�я����d���,w= �{|\ZZoϢ.����p�]�U\Ze��O�lP����&A{��5��[8#�=�G��{tj�\ZC`�qR%��D��\"��/��w?Z)H%�K�-�xrN�pꔨ��%��\r/<�\r�gl+�Q�_r�-m�P�h�Q����$,����5�%m�������,�\nu(ޞw0�9����R�T�ZqD��ɩ�?\"�hK�?��=&�KoHJ,a� �r�U9\'s?�|�������R0��AtRW�E �)��օuT���R��Y��T6��r��\Z�IZ)��[w[]�=`L�Þ�V G�L�������mJ��a��f�o�\0����W��e�2�`��:Z?������^X=G�γ��b<�H�G��wE�21�wh�a3(J�@�g)���z���럳9���=��8���\'�KI\rn�‵`�iz ��y}��fW�mh�GmM���]�H\r�u��:�4��̩�i��7[�G�F%6+E{#�I\\�ޑ�a/�jqŦ�X��쳙r�/a4�v)�w}U��+��谆{3⥾�ϵ���瑉�N)]��W1��+Z���*ʠ�u<�e���\n��,���&��ͭ1�����:If �ڦ%���5�@Q�85�ʂ1�-5�����ym�n*$�\\l��G���*�E�M\nl��m�[�-�B�8Y��ٺ��d���J6��S.��V59���4*���f�H ���r��*\0�Y�㱿;+h<R��V�_��u&R���:��ƹ�W\rbC�J��9��n��FB �y�J/�ad���V��BZLC����;�wx�Y^��&^��=�xʆEs-��y@�G�y�\Z���}��q�-���сo/@�8�7���?��!c��^�H��\0�1�F=���\r�\"��8����d��0{��0Z�S��>�3� vj��\r|\")\"�5SR�\0�{k����{6�E�*���I�z3^M���P4����Fl�wRC�H1�\0H\rgf�^Hq*��v�6M�g2�����I�Y����g���_���,�\ZI.&;�Ӿr�V<Sg��U�|�4E+5�C�828���ҝ��dX_˜�&�h���6_��?���q|��,}�o�\'�?��_�8��ۗ0]$47F\Z�A#�[�RA�r��5�7��{�0�7f=�9G�cN��yΟor�|��A�\Z��U�\0��jJ��ΆP�M6.\n?�~��o��Υ�TXJ)*a���L#�V��ŷ����42B�2����,u��ʕn}~�҂Z-�3�6 ����>ӯ�\Z�z?<^������%8���\"�yٱOlB�=VG��h�!��K�<��s�;\';\'�=Z8�����{�Db�J8����J�q��;�(5nO�j�nYZ5q��Pܠ��4��zgzB�tWn�W��&�c�\'J@{T���r�q� ��*k��J+�0��}�VL��f6 ���ӆ`lI*H�?�6����G�}h�o�B��� ��%�L�@�ĥ��bu���(FHP\\ȯC9!�cn��N*NJg���}Yv��7�Oh%.\"A�X�*䯂�:�r����oO�\'7x�9���)y���j��?wk�6��(.�T��v�̯1���������5�N��b�7ٳUw��*)�h +ڞ����\n)Q��N�k��U�4��J�M��\\���V���^1�����u��rYޥ1m�w���t�����&�Cr\'BMF�u\Zx��/D9���zH��&U�>�+T���K�F(��,`:7��Q��DZ-F���Z�Q�TƷn\r���{������vA����H�\0�eq$�W�Dj��K+{j��Pu�υ��~�\r|F��S�a(�J�}ȟ�A\r�1P�x�z�u��ѷ�;gtS7���Gn+��Q�1��rg���Q� yg���5��.h��f��hm�;����k� ���W8���ˉ����n�t�A����by�Mϐ;(uj��?��]�$�C��&e�Z��%�,zf�w#nؔ5�0D�*/r�x��P�b=�-.���X�����T���Yn���P���g��b� =#�\0�M�)��B���\\e���CA��w���wK�HY���\"���0d�����~��k�:��\n���Y�ïy.�5 <���o���oP?�����D��O�%��ڵN:(��{�Z�ӌU�J���k#H��T]^�U�\0T�j崠&�Y|��s<������B���J �(zڪ\n�ą[ƷG����ֱ!I�z�A�4N�:ӊ���U �[������y-������)���5�,�)w���ZDU��v�R>k�<��vd���_�Ba\rc������;���p���v�gm-,���_��\"T�P�].j�8\\3�c\Z�^���@i# UcjH�q.�!���۴ ^�U��\r�s��&�z���\\���L������Kcu[������;m幡�F}I�-6��n�$�[����$\n���9�2%�V���0D2`�q����T&��%��q�5���y\nVڌ��H�t�����:��<�k%������� (���1��.��a�]�_��F.41T��m��-�XxE_��p�I��u����eI�t9���]��\05���^�\Z!����c�xN��d�i�GeAI@�\'iۤ�z���*�bT�J�-2���<�8Ko|�nF&Q� It�-Z\r�˅��H�F� wb�9ѿ\Z�xR����c�6���wc�쑐��?XߵD>��\"|?F�H<��I�0�{��eQD�� ��{��~aK\\-�B\Z��](5z�!�U��N[�a�9�{�����j��B0P��i��%�ܴ��E�^g���2�z,�@�Q��V�oU����K��j��aW�ś\'����y���Y�曗>��@-�����=�� g�_����{-SP+f��Q�p���87i!*I����ȣ7�\Z�,�����[x��R,<X�����6�Kk� ��o���yA�w)��}\\C \n��=�Չ{�����ogb�U���h�6���XE��.���R�un5j������O\0�6\nt�u�=�������5Q�%Ǜ|߂���Y�M�\\�J�a��b��T��j����bGar�U��~�\ZoZ�\"Tɷ�\rM� +��� `����gO�l�:�����l�}s1�iJo�Z�3w�/at��6��aK����5�Ȕ4�\\4�M�Y�^e�x�M~�?\\p��iEE��,�8����)�T�n,��q��SF�z�ȲMR��W3��\\����\r��q���1?�XE���GD�f��L�S�q��`� ���ٷ�s�P���W��M�Q�~@�ů�×�͔炿E���$>9�6g\0��È�];��l����\0l�*\r�����\n%�E\'�t��F��䝆��煶\Zf=?��;[���%���j��{j��Ma7�� 89�5�p(�\n±vJ�J|5�:Jh����roث���l�]FA�1_������\n���!痰f�WeJS��Z�w�k�X��ڱ��Ӎ��~��\n}�@�=���\\Y��Y�C��]�Ǣ�������5����c�Z����\r��l�Y�ƞ[#�i[��5Жг4\0��2m��&�h`��q\n\"�)\n���Se]��~�&^v���w�Ŝ�����v|چ�`z`����I{�z��C�9��]W���9Ջʸoz=���p�r���7�ά�4��9��E���\Z\'�x$�����\0�H\n({�S=g���kyo��?��������8Շ��|B��D����1��3��7�����ţ�遢\n<Yz\'��j�X���`�fr�Q�\Z�ȿ��4��M�F/�-�f��r�:CK\n��8]��PY�5H���gb��:�<�xݢ��X���,s���\Zi�(�6貿!����g�ъ�k8�&��\\��-��38�岟k�n�� ��ϣ�,+��Yy.�2�\rt*q7��,j�_H�d�QPY�@�-�d��x�j��)��dm�x�́��?�9ݱ|��X!�l����%1+�w���$�5�J�ck!ԛ�H�F�fK�\Z������R�$H��ZY��\n~��P.��x꜃ N�î(�gF��w��n~i;��V��%�TF��~�e|,|6D��FR�\na�*!_^貿�r��`H��a��b��w�@�Y���a_�^��f��^���(�\rO�>�踭,�����������\\q�����r�*����L�lf�����<��w��;�?��ݚ�d �t-��8e�0W��~�*�>< *��0V������\04�~��t���U��gL�Q������磺1Z�ktx��*���5�I�q���*�lmKңk�\"�M�Q?�p���a�4鄳~㾥ݐ��n�n\'�-����҉V�>�鈢ڛ�r],?i(R;����}��>����QV!yvpc̒P`��-�e9rJ�K\'t��>;髥�ħgZ�����C����J�o��*^��ɰ1�N�J�R��i�B���O�ӬB��V��h�pC�%��Z�}�=��s<۔��[Z�#g *���\Z�;1\ZE�?Ic�_����c�#ň�M��-�[\"�n�E�*9��p�:�cZT\\��:_���&#`Q�\n. .�E��@�ю.��%E��g���=�N3�>��g�|�S(F�jǕ\n��;�e��X�4P�iev���W�soڋ�L�QBW�b��e�x��A�j�,p�r��k�jV�i���;h!��z�}�)�\'�7�2y���?��]�A�\"�����3#�q Ɔ�\Z�)+�l\0#<9��\"ϕ���A��v�hz�J>A�q��W�&zU�V����\nW8� ��`�\0ayxHõ�נc��ΏͿͰ��9O�8�^^�]���t*f�%�YE���5�<�`�W��h���j0g�_M����TJ��\np��c[���_:E(.)�&$*~�(gf���;���c��\0̢��c�e�:Hb>R@\'=�v�@5)���y�&�֫����\r���;���&��؛ƿ�ػ�5|V�{��A\rreAFzK`�\"�?��E��z��c�R��z��͞�.V�~!�6��k8������W\'�|ǘ��rf�H /�@\':{�Y�T3NZ�O�Q˶ܩ8�N?5��n�A��.�y��a�餷�#���c���^S��A��_���7�\'hcv��]��#\':�z��K�l��?�Yk���2����W>���-�M��P�N`g?\\\n�\rK����\0��J<ǘ3bxT:�W*���r���-6�f�pxc�,hoN�I��[�\\�`�nB�7�$·#t�\"S�m��-��C�`��Ɋ��s�E#)(���A[�h�\'�����|�kaO�I��h�9A\08(�?�K\n���͠��ZNt�a�Z��f+Ǡ�\n�K������b��n8����1\"P�����&�8�X;�U^������LDL9�4�ݬJ��݃�C�lE<aLj����l�.ēz��]\n��\Z��:��zs\0nĽ���>�e�[7��NJ��tt�@�`�2Z�\'S�V�\"�*�XA�vk�Ox�ޡ�mdFFÅf��a+�6����)rb�4�ʲg��}S�x��vֻ�aʩ�D\05SS�-��*�^Ӆ�\\w��ꅱ��/Y6_���w�pk�w���0������%`0����vl���\r���\n?�4ɿ��ҧ��e������si��G��r֍�O�n��_4�`�/�-�\'��aYI|6���`Z�4��\n��\"��l\'��U8y�kSl�صA��(GL��8!��<z�Kr�i��ImV�e(iCx��/?���O���E�q���i7A:�3\r�����:�?��2=�,�+)�̻��n�g���3�(���D���a�!_y��� �Q�VGK��҂��sv@��E�\n�F � ���M���%{��a���`,��N����\0�}A�v���A��$�=�08Q�j���V\\��P�[�pHa�F~yQ�ˊ������r���[�J����KǺ����n3�`�,\0�d�,m�`��\Z���9�8Ra>r�Z��!�e%��d�uH/l+��ޠ�����.��I6��(�웎y�R�j�\nM����x\r.s������&�I�n��6��_����ga8��y��].���^��5P���n��>��:�����,G�I�z�R�쮝���y���Y#�dz�E ��92���������vnjs,_Y{\Zk��]�ٛz�J�^z���{�M����9l+:A��}0��0��.�@L��3�l囔�\\�Hiܵx�f�Ll#@Ť��e+�=����So\nhѱ�ً!J~ẞ�ǡɹ�Ὑ�g\r��y�uCx��;P{��k����yM��#�h�.���?��t#ɠ���\"���z)`��RI+�_#a�p[o��|\'�:@���A���} E��饬2,��)���w_�DʉԶ�͂���6j4�0F��Sc�\"��~��G8<\'���������:��M�6���/�U�9)�O������WT��>����S��0\0�;��QO�%$K� ���\'��͕{)��_���ĝ�#/q�&�O�[���O�\"²�,���l?2j&�����,�k����$t3��?iYϲYڷO��5]I��{�������ٚ�X�L�l����#,\n�W�Mb��X��zp)\'�F��{��Pniq��9�o��̳l5�y9�Mb�&�iK��ues�<%�qѬ6�I���F�_��\'Q�7�3#5XN��xL+�֖} gTj��,�)0f������;7p>�Dy(�-s\'���#֛X�މ�Ά�>�풏�9�F�ܐ𱐠�d���ְH]@e�Pa�y�ŝ&)ԧ��0�x)/�mۅ�r�Uz�������&���[j�}wR�E����v�����{�A���G�5�F�i �y*dq]�O��X=�ܞ�W[B�\rDݬ����v�p���>��j*���욬�e�3�p�]�L��}�`��`��DX1���ع��WJ���]cƈf� u�J0f�j\0ց�s��ZR�~�]���*����\"�rd��S�2�!�{�֣:=�Nz����g�&��$�F,�lK급/Í9�z�Üu��\Z\"�dm�*\Z���X�[I|�4r�_�xS����*t����^�&��/�\\$����r\\`ʳa���7%��eűCS6���ǀ�h�2.^W�w��H�î4����n�~2p{wq\Z.(�W�a�_N��C���n�d,y�p��U�~���2ʩ��w�:���jU�/��t#L���\"u�t��P�w\"��L�x|�(.ay�ѫu�#\Z�ڄe���u��uI�;o���,1�{��[rѸ5�b�,���B2��+Y�GH�Q�M��p+��i��2�vC����m��*�i���QLC�H8�RvJ��j��o���f2RFt��� {[O��5�R¸���_q� ��6pOņ�ǶG=�6��b�4���?���fs^�Y��\0�������^���x�{��N�0Gu�D/�S���ā����;��%�mp2X[�j_aG�����v�@�2��b\\��\0����~*J�jT�\Zw�?/�c�g��)e�����Z~&�q��N7�� Z-�����r��$E�\Z3b\n���NyoH�N�mQ��va�N�/ �Y�!v�46]3�]��3�<���ڗ���<�*=�tpE�KL����[�Mrx%\0�b0qq�Ă��|x����:��_��V�5:�U��S�o2ҾP�u�A_�*}�~��\'K9�;�4��p���\n+=U�O�}��6Ԋ|���}<yﭼ։K�hxޫ(R���1�=~�P�w���ºT�+�In��\r{��M��_�໘`3x���4��L�#\\r��ԹF� \"�$q�c�@\n��C��KnA��O] �`�o���C��K�����.���U8u���i���H<pSh�Zذ/�\r.�O�}9�fP�k���o��2,�=A}P��#\r5�k��,P�D�+�>J��5딧�n���.\0U�Rq�k\'�����i_i,�\n�G��+L�.\rQ�\0��%�\'�y�m�_��#�?���E1\0�² �7��5mw>Z��2Q2K=�^N����q����Q\n�IS�}V#�N7=��ɷ�5���gD��>h]3��\n�0_�э�Wg��1*�V�����FIP���x��f�vL�@���p����R;K�����R��[:[��*w�(�1�� y��jL3ˇ�d�\'��V&}l��]dO��g��V��:���5��fH��A~l!�/�6�yԶ��!��[^�I�ٷO3��E�}{��Y�z������#���@���XaͰ]��()c�k��!~s�~h���q0���X?8�̅���H��i,+x��͵�SE��9�r=�#_~�\\�/Sͻ�(YC/#/�D��^>�6\\����V�6 E�i�*�X,��/�6������}%]�v� ��\ZY����<�}]�8�c��4=}�X�j( ;��w�g�ָ,\\R�0�$k�o�A��{������2#�am��\'��Y#��O��(&\r\n0�{z����7�j����R�v���^0�?�2Dh�4�SG�8RH�e����|���5/�i�VV#�V���A����`�4ډ3�z\Zr�K,�Iޗ�Oe�x�џ��i}��.��kQ�_�3��9�y\n�b�-5c,R����3���\'�r��.]9c�x��ߚY9�\\~������f���Ƕh�j}u�pIX�p�ھΩT����/�6�F���k�T�E�;�H #�ߛ���{�C\'Vۨ/��H_n{��FW��?^ծ�V��� �N ��-���j���s\Zjh߽C�ș�I��E�R���1��G�Ÿċ��d/8��Z{{�S�*Q�b�U�a����9eR��X�?楐�1���ih\Z�ҕ��X�T�9�����Eߎ�i��ц �k��!P�BxQA.T��ۄ������ێ���v���&�=G���V�kr2��C5����m��~q~���;rfXᅸ��eX�t�Ū.+[�����咩H{v���./s|U�Z��A�h$DU�s����I�{\'\01�������r���k��D����a�c���#k�Qbm(��(��{ia^�\\v�J��M��C�`QA6�_�~�j�c�,1��F\n)7��䩾!�@��� �n���K^$��N�Vj���q��`J�BZ�ޅ�J���X�0u�9�>�!��v1����v��ą�>���Ш�&�D�6X]`��=�s\0��1�y5z���4�O�|p�A5�P���%Mu���#��g��]�zmܦ���8���u��(fy���2��Э�9��ex�kz�B��4��6�Hy�/=��u4�_c��� ο\'���M|4��^�<!eV-\r�7��LtBR��`��r��ژ�gE;+\\�)H�q��{�@�dX{a2�H�=���G��6Cm��:�|��!%��p8�Ug��A�N��y�qoʅ#&]�#mV�ە�rȹ���L�=��6m�zQh��Z������C�� ���T�α���i��ߠPom\\D5~�!�������o��a[�ce�U�>T��ø�~3��$:�З���e���W�_6|�T-�>{�rC\n�=���k��Rd�j��6���T������\'��������t���a\'�X%=�B�-�Ep�~�\'�u)�3H�_cx��N���pn��x{V���@��f!��D.S��J/�xk�nZ�~q��6Lꂨ$����?{II%�&���V(Aw��<䩻���c�$�a�=�����!3C�PY��.c%�0b?O�)Mퟴ����[�%>xd�]?Z�1����5���q�)��9W/`��kW�V*�_i_\'h�Ma�CQW�~K�0�X~D�<���>�5�O! U\'���IaӴ9+���6��fF��7�r,��?��O�P��\Z�r�(ga�u;Y�R�>�v\\��?s�k�\\� �~�m���V��|ݐ�\0��!��ٖX6���a�v�/%1U�Ed��_w\'�ޢ���KGs�*<v�u.������S��A`\n� t���p\'��\\ˑ+&�*u4��c \Z{\r�������@l(2�u���g��!ڗ�ɪ�eT�Krje����U�t�-V�����Jˀ��z�ا`*#��j�xZ��&�\Z�{C\rB�]���Y�#�<\0!_�M~(�����k��_�M��W��F�i�]������iˍ��B��l@��j�!�\0@�����Ų�3����pv`�r9H��(�c�WޏK\"�$��G�ϭ\'�6�I�\"�V�ɜ=��0������\Z����h݆֭<e1L�!ӳ��\Z��D�K��i��@*S�ĘRg��� r���z�2,o��Q���ϕ�FU���lt��*�g����V☲ù�����۬��Bj�LN��hZ��e%�D\'��G}w���E�k* ��W،j��|���K\'��l�Ȉ<������fdU�Ƭ����\\�fH���v��I�I��w�d�4\"�醗����0_��h�^1���-�c�j�Htfݬ�?���D)�\'��hcF,�4�|i�Ql�p��t�>�%y����1P�bB��R�����[B}�\n[���; I2q�U�>�n)̈́��Ix��VV$��Z=��q�UO���c����\n���4�\r\'R�2�8�F(>F�2 ����760�w8��([���o�W��K��4d����\"Qj6�h��\'�Vh��~��Ad���7��D�c���A�\Z�H�zy�I����Q�]�o��%<��DN�N��M�^�^��/jC9�tb��p�\r<�!!d�e�p��\Z� �0mz�����%�������`�.۾H�,�x1���8q?�L�}]���U�^����9p��&���`�nM{� n�L�\ZN���:�J0��L��2��\"L��⯜t�%>��:1��W��R����ͩ��Q�i��~�^G�7p/�+\Z��z����:M�K��p���o�*A��Tڌ̄ʟ[w���T�y6��1?\"p��L���,�vr�`G�̃�S������$ �2|��>��Y�wM�W[�� ��I��/�H-j\r%�D��������+�P4�g.���{���^W��/![qu����T �&gɖ�\r.��:�)�Q��7�ݣ� �h��\"b�Y(V��W�|/5[�r�ɷ*���M���l���r�n��zW��m:f�O&y(�H������\n�#_F�D:���1I�}U\"\0H�B�&`�8��m��!U�c%rT����.��q�x���=\0���\"�I�8c�_�;�k�6��R�r��E?{d���G_�A���7����c0+��^E��h1��{��9U�,���%k1X�\r Lc�N�;�<K�{�*�k�L������E,�t*�J�. ���*歁\\5��c�%�a��P�T��g�xȻ�=��|@� ԃ��\\��HVq2��v5�o��,�\0�7�IѴ�E�����90.BAe�4>�]y�S�Pk��=�9i��fCu l6E�#�Zt,#<�\ZL�4Z���FU����!}\\֊��_ȕ��o�/B�\\!�Z<&�^�S���V�?���R�Ê�]�� �����U��@�q��Z��\Z����7������BI��q���Ѱ��ɧӿlpK�9 �^��/t��4,��ͮ6���R��Ԥz��8�\\4��w��c���y����s���M�)9@����2���.���V�/B��c5a��\rRI�G>?���y;�+�����\'�SAE�D>����qqa�_��؈K)�A��,7q��>d\'�����@�@x�°�E�]|�/��YQ��;�#�6�yc�Ȍ�ʗ�j���L�2��-[� 3���]S���.��\\��0ה��B/\n�j�z\'a�����������F�L\Z�H-L `$p1/>:r���V�Ǚ=={��Or�R�xg�J9G0>z�c&�IÆb4~�*L�Q�Rkg!i��f�nb.*��η���$�gw�T��#;?��`�?��;\"��A�Y|���X;u�a�w?oa���bN$��gI���+���R.�e�\Z����pt��ᣈ��:\Z�`\'8�y`���w�W�0���P��R�Ƈ��]�P�d��$*H��9\n?�g{��gs� gO��X�I�#n���!F#Yȼv\"|�:�ݯCG#\nY�E[��V�w��i�%�-%F�\0��[�n�1S�a���+���]��B�E2�s�Ŏ)�?ԟ��B� �*�Z�O��ےn+�z�`ߗ��]�^��$�d�g��Gf���m�G8�@~n��?� x��*Ցx�k��S��략9�����U�R�ݼ\"�EI� {�`z��$��쨀q���Z6hֲC��R=�8H��ΐ��<���>�y��y�=� ���G��ө&����0��*����u�\0u�\r��+M\nMƿ�4��f�_�MG���%2q��0�/ғ:;��e�W�G��ʈ�P��,�K��A]H��%����A��Q�<����!B�|$k���݈�# �e�i%0�D�۞V蚹xRBBy%�h�Wv��Ƕm�}n�G>p��ѹ��W�����5�w���O�E�̾�m�G��. Ճ�g��?�r�Тjs$_�D&֗��H��s%��v�x-���#����? ���T���5�)�\\Np�����[��>��&��]����:���.�ѥׇ���4���U���hnl���h��ʫ�jF�**\Z���W�nfrP#3�md�����n�nun�pU0 l��6���Zi�R�w֢$����¡桘3���D�\\�[�I�����wD�=O$l\Z�����I��9<��0ox�>��L1��\Z?���f�]��t2Ј���5�����I�v��C�(�߱wzi��C\038�\'U���$�S��(�]4�P�����cU�v��(�c�̈́ɯ�Tνڐ$_����S����Њ�|��|���n��D��~��v-�;&���W�0��;��7�\"�L~ޅ�LE�`!�)l�ʛ�hL��O�/̩3��z4�Κ�C:Ufz^^Gn����/�pR1�C�̬20�2�J�<��:�_��B!s*���l���6���\"Q_�ȹ�2���a7��<\\U}�\"A���s��?��C9����`�r���0É�����\0��1��y�i�N7,N]�8�Ϫ��������C�,01�Sͭ�-�a��b���pY�x{Vc�o��lNG�qlkb�����a��ñԟ�yb��@�Y���(J5}d�t`Mu���Ƃ�Uz[�w\\=ʼ\0[\nK�ix�-b>��,E�d�Ҕ�\nN�-���\0�9�pM0+��~0��:6r½c�� ��h{�M\\����J��,�k\r?��O\Z/ކf���?�xȃ9��\rQP@\r��\Z���S�z�\n��E�O����wF.P��)n>��<���W��S)���_�]����Y�a�\'kY����_ot�r�)��C����E�I�m/�;����g�g�ŭ��Ʊ��0`���8^���\\��Ƌ�~���w�\'��T��OE�[�q:�Sk!�� ˎ�\\�~�J��7$kSsYme(�|��.��ŹzZ��[����몾l�c�읋���q�oן���K�֛+���%��!a�29\n����`�F_h��*�y��.�Z�ۭP�0��\"��j����=xat\\K��h���9����wǏ���;Z)���K�~���Q�[::��j�s���^Z@2n��ve)e_��u���!�9�]�we<����iJkN���uM��ٍ��O�I0x{M�y�R\r�~��S���BST����h�Zs�*����[? PO��v��DŌi*�b���*�;ةD�ڨ�n�/N��I��}7+ƕ�A���l欿B��t�\'s��t����sh�w��k1]�\':�&e�t��b�t��*�\n\'�Z%��$^���*�B��R_~�;A���k8����\\=�>J����1�~(���Ac�q�o%TF�O-�Gz�JTN>�\'����#.�D�=����a�:��\'j�K�� WHS����`\r�y~E�~|�\nR�i)fl�饔e}�)ld�*�ÀI�F�^��ȯ�ܒ��W���@�~�ݘ�0��(�U��ޕ�M!\0��מ����T���žd�T�`�l�� �9��睪P�k�KV��d��*�X\0M�o��DO=h�W��\0 �7$����R�T�b��z�Hp�f��?�@јݲ�I�����G�]�q�M;��>l\nA���>��k�h���R���8�yO��t�ld�U�^��E�%O��n�~}���J[�An>���P:�����7��4iw����q��c�s� @�\"/��š|sP|0��ô����!�J��[h7e�^�J��T�u�V��څ�6���bJ�R�#��Բ�Yu�n�nO�������#�\r�F1_Ң\'�Sz�<�J8�@�b���u��\\����Qi窍g���DH ;\0���c�\niz�N�y��}˜.��\Z�^�����*�̶=������.�)~�� �_OP�\n�x+��U��1�w��z�)�\"4�+�B\\���II�%�%�\"ЖX����~X4;;�]*� �&���\"T�QWvRi��d�3�m�`a��3\r�45q$�&Β9QO*z�kB�������jdE,�=��<��ei|�M�qZ]V[]&I-q9)g�0�Tg�OrP~�tgn�g���(�W�{v����^�Z��}ȐC6ݞ��+�?�۸Z�P�d?P�\\����kO��}H�\"F�+:̵LZ�KA�ry��9H�$�Ī���50K5:\'�Ċ�$��Ժ���x����r�^/���\'�D�~�4�d���`8`q��׆dŪC*�k]�0ɾ\"���Ͷ#8K���r���|\Z�ゐ5�b�T2���ph=��������j�#�jR���� 𪏨�|�z��03��ܸOV1�SlfwV��1 ��l?��.\r��ƨ�;p���-�e*���`���[�p5U���ͳ���{���n���!z[�>�f�t4����s^�tE+W�L�կ��C��ҩχH�h�Z;P��.����s.��1��q�+܋\r�4�$Pd�uU1����8���<Kn�s���p�GR�b�:L��0�j}�y�슟W���Sh�5GH�;�V��(��(�\ZB\0�\r�lŗ���B�s�#3�?+��Wp�P�M�k]�<px_�\"R�Lki��G�Ap�\Z\\���?h��8���Q��$�d1��ˌ�GPP�(�Ϟ���S��3Q�?(H|,�;p��H@yƄ��k}�{��[��W{�LG�.�vOǫ�\"�M\r6Ic�����E��,M+,�ǖ��f�� �MP�[�Y&���\r��,���YDx��x����Vތ�\Z��~�VD���Z6�aW�_�tʩk�g�i\n�B�_��[�\0��7��4�w5���q��y����1�Щ3�&�Tt�ȹ��8��=��S�P�y�Ym���m��U�I���O�F !������q��O�~þ`��Ϸ7�i.K���K�����;��3@��\"��_���d�/5�������%����9�U6>��Nc�V�M�Tp�W \r0�����Z|�\\�T�-��B�D\"�,Q�uܳ��n�����.������A\Z��X�m,��P\r�J�h��x�Q#��\0��tg���F���N���v��&�W\"�IJ�}:���k�S�-e&s�c��1h�ؗ]m3ĺXq�Ï��j�_�y�[+x�E��V0z���xi���\n���F�\n��7��4�欋\\�M�=���O����h������=��ln&�����ă�J�ӗ���~�����l�L;�-��F��\0��U��*/����d�.>z_�ME�MՏ-/v��_څc����?,U&��\"��R�[�R����|L���<uQR�V����x�s�� b[�y�i�C��\0����T�q@W~��{�Ṝg�IU9�\0���ڡSw�q�\\(LpR^���&�b�B筢�0�9�Z/�|�1���p����_m�o�<e��{�FE�P\n-����,5H��:��@���\r�%��-�����,$y��k�\\�3�딢ߓ{�B2�A����G�<��&%���w$���c�TV¶\r�|f�7hC�p\Z��8�w�G�+�dUx��Xc�ѨV�*�6�i(���H�Xw�6[�|�Ja�ʹ�Ж�q^����O�h;xA�3�-\r���hM�>kv7��[���ׇd�̂zR<��2���K�����7�I���I�!1&�j��[6����56i�8��n�t��l�*���?���/]�\Z�4�tX�*���5��2�.p�·�\"�F�6Zؙ\n��$z��z��\r�9`\\&S9�~{-LKŝI�T�i��;�u!���7�U�e�H> -��%G��(�m�\0���DO;��^�K��l����ظ!�/?aF�z��#�U�%f��{�x��i�<��f��;������K�Z9ްN��Wj_�H�]�͚V�I�R[냛�B�w�s��bN}�qY��7zo�U��u�\'���1��k���~P,o���ʂ-~�Bʾ�i>1�/#���#��y��X�oa��\\D�Şheb������h��?)�3��1�u��s��_s�Шd��>V�*R��/\0�����ӷ�~r�%�\"������8lb�κ��\"�7e�E�=n~��͙\'2�C/�����r�\r�̈�\r�;�J�U�ˑ-�\\B��?�� C�Q���c2 G������e��h��h��^�@�˶\\},n���ۛ~A�F�,���{�<n�н�>!��2��_U�d~��p��7O\";}�F��E\0','no'),('currentCronKey','','yes'),('dashboardData','a:4:{s:9:\"generated\";i:1734542818;s:3:\"tdf\";a:3:{s:9:\"community\";i:6377;s:7:\"premium\";i:6427;s:9:\"blacklist\";i:9068;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1734454800;s:1:\"c\";i:8314402;}i:1;a:2:{s:1:\"t\";i:1734458400;s:1:\"c\";i:7754021;}i:2;a:2:{s:1:\"t\";i:1734462000;s:1:\"c\";i:6819092;}i:3;a:2:{s:1:\"t\";i:1734465600;s:1:\"c\";i:7080384;}i:4;a:2:{s:1:\"t\";i:1734469200;s:1:\"c\";i:7031559;}i:5;a:2:{s:1:\"t\";i:1734472800;s:1:\"c\";i:6901883;}i:6;a:2:{s:1:\"t\";i:1734476400;s:1:\"c\";i:6942426;}i:7;a:2:{s:1:\"t\";i:1734480000;s:1:\"c\";i:6781910;}i:8;a:2:{s:1:\"t\";i:1734483600;s:1:\"c\";i:6687091;}i:9;a:2:{s:1:\"t\";i:1734487200;s:1:\"c\";i:6751934;}i:10;a:2:{s:1:\"t\";i:1734490800;s:1:\"c\";i:6781322;}i:11;a:2:{s:1:\"t\";i:1734494400;s:1:\"c\";i:7393325;}i:12;a:2:{s:1:\"t\";i:1734498000;s:1:\"c\";i:8894244;}i:13;a:2:{s:1:\"t\";i:1734501600;s:1:\"c\";i:8136314;}i:14;a:2:{s:1:\"t\";i:1734505200;s:1:\"c\";i:8122202;}i:15;a:2:{s:1:\"t\";i:1734508800;s:1:\"c\";i:8075096;}i:16;a:2:{s:1:\"t\";i:1734512400;s:1:\"c\";i:8382080;}i:17;a:2:{s:1:\"t\";i:1734516000;s:1:\"c\";i:8483198;}i:18;a:2:{s:1:\"t\";i:1734519600;s:1:\"c\";i:10537174;}i:19;a:2:{s:1:\"t\";i:1734523200;s:1:\"c\";i:14900238;}i:20;a:2:{s:1:\"t\";i:1734526800;s:1:\"c\";i:12381570;}i:21;a:2:{s:1:\"t\";i:1734530400;s:1:\"c\";i:9166076;}i:22;a:2:{s:1:\"t\";i:1734534000;s:1:\"c\";i:7817802;}i:23;a:2:{s:1:\"t\";i:1734537600;s:1:\"c\";i:7593072;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1733875200;s:1:\"c\";i:254387231;}i:1;a:2:{s:1:\"t\";i:1733961600;s:1:\"c\";i:210370968;}i:2;a:2:{s:1:\"t\";i:1734048000;s:1:\"c\";i:200573356;}i:3;a:2:{s:1:\"t\";i:1734134400;s:1:\"c\";i:168421976;}i:4;a:2:{s:1:\"t\";i:1734220800;s:1:\"c\";i:219095327;}i:5;a:2:{s:1:\"t\";i:1734307200;s:1:\"c\";i:212614818;}i:6;a:2:{s:1:\"t\";i:1734393600;s:1:\"c\";i:189922788;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1731888000;s:1:\"c\";i:216411852;}i:1;a:2:{s:1:\"t\";i:1731974400;s:1:\"c\";i:239664196;}i:2;a:2:{s:1:\"t\";i:1732060800;s:1:\"c\";i:257275380;}i:3;a:2:{s:1:\"t\";i:1732147200;s:1:\"c\";i:231976167;}i:4;a:2:{s:1:\"t\";i:1732233600;s:1:\"c\";i:236112028;}i:5;a:2:{s:1:\"t\";i:1732320000;s:1:\"c\";i:221828385;}i:6;a:2:{s:1:\"t\";i:1732406400;s:1:\"c\";i:208609738;}i:7;a:2:{s:1:\"t\";i:1732492800;s:1:\"c\";i:210856545;}i:8;a:2:{s:1:\"t\";i:1732579200;s:1:\"c\";i:275642853;}i:9;a:2:{s:1:\"t\";i:1732665600;s:1:\"c\";i:245971136;}i:10;a:2:{s:1:\"t\";i:1732752000;s:1:\"c\";i:259634706;}i:11;a:2:{s:1:\"t\";i:1732838400;s:1:\"c\";i:272817300;}i:12;a:2:{s:1:\"t\";i:1732924800;s:1:\"c\";i:264561512;}i:13;a:2:{s:1:\"t\";i:1733011200;s:1:\"c\";i:274901829;}i:14;a:2:{s:1:\"t\";i:1733097600;s:1:\"c\";i:260137935;}i:15;a:2:{s:1:\"t\";i:1733184000;s:1:\"c\";i:269009441;}i:16;a:2:{s:1:\"t\";i:1733270400;s:1:\"c\";i:263194881;}i:17;a:2:{s:1:\"t\";i:1733356800;s:1:\"c\";i:294313321;}i:18;a:2:{s:1:\"t\";i:1733443200;s:1:\"c\";i:198272142;}i:19;a:2:{s:1:\"t\";i:1733529600;s:1:\"c\";i:194475562;}i:20;a:2:{s:1:\"t\";i:1733616000;s:1:\"c\";i:240874149;}i:21;a:2:{s:1:\"t\";i:1733702400;s:1:\"c\";i:257855099;}i:22;a:2:{s:1:\"t\";i:1733788800;s:1:\"c\";i:228942572;}i:23;a:2:{s:1:\"t\";i:1733875200;s:1:\"c\";i:254387231;}i:24;a:2:{s:1:\"t\";i:1733961600;s:1:\"c\";i:210370968;}i:25;a:2:{s:1:\"t\";i:1734048000;s:1:\"c\";i:200573356;}i:26;a:2:{s:1:\"t\";i:1734134400;s:1:\"c\";i:168421976;}i:27;a:2:{s:1:\"t\";i:1734220800;s:1:\"c\";i:219095327;}i:28;a:2:{s:1:\"t\";i:1734307200;s:1:\"c\";i:212614818;}i:29;a:2:{s:1:\"t\";i:1734393600;s:1:\"c\";i:189922788;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:655558740;}i:1;a:2:{s:2:\"cd\";s:2:\"NL\";s:2:\"ct\";i:256383773;}i:2;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:195700798;}i:3;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:181988571;}i:4;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:134236718;}i:5;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:105469595;}i:6;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:84302639;}i:7;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:74584482;}i:8;a:2:{s:2:\"cd\";s:2:\"VN\";s:2:\"ct\";i:57802075;}i:9;a:2:{s:2:\"cd\";s:2:\"ID\";s:2:\"ct\";i:40998216;}}}}','no'),('dbTest','a:1:{s:5:\"nonce\";s:64:\"b4aaafa3fc6a40781e6c74b7f272cd6b88f21de172a13b6acf5bb3f56be3197c\";}','no'),('dbVersion','10.3.39-MariaDB-cll-lve','yes'),('debugOn','0','yes'),('deleteTablesOnDeact','0','yes'),('detectProxyNextCheck','1734924870','no'),('detectProxyNonce','','no'),('detectProxyRecommendation','HTTP_X_REAL_IP','no'),('diagnosticsWflogsRemovalHistory','[]','no'),('disableCodeExecutionUploads','','yes'),('disableConfigCaching','0','yes'),('disableWAFIPBlocking','0','yes'),('disclosureStates','a:5:{s:33:\"global-options-view-customization\";b:1;s:22:\"global-options-license\";b:1;s:22:\"global-options-general\";b:1;s:33:\"wf-unified-global-options-general\";b:0;s:31:\"wf-unified-global-options-alert\";b:0;}','yes'),('dismissAutoPrependNotice','0','yes'),('displayAutomaticBlocks','1','yes'),('displayTopLevelAuditLog','1','yes'),('displayTopLevelBlocking','0','yes'),('displayTopLevelLiveTraffic','0','yes'),('displayTopLevelOptions','1','yes'),('emailedIssuesList','a:4:{i:0;a:2:{s:7:\"ignoreC\";s:32:\"5494171bb8c68bb845650a39ab8ec7b6\";s:7:\"ignoreP\";s:32:\"5494171bb8c68bb845650a39ab8ec7b6\";}i:1;a:2:{s:7:\"ignoreC\";s:32:\"1ae676b52bb4ce9358f8d0d7476009b1\";s:7:\"ignoreP\";s:32:\"1ae676b52bb4ce9358f8d0d7476009b1\";}i:2;a:2:{s:7:\"ignoreC\";s:32:\"380c0b2a384c6065157b6a9f1c98bb7d\";s:7:\"ignoreP\";s:32:\"380c0b2a384c6065157b6a9f1c98bb7d\";}i:3;a:2:{s:7:\"ignoreC\";s:32:\"200c4541fedc960c915555f7c31c2da3\";s:7:\"ignoreP\";s:32:\"200c4541fedc960c915555f7c31c2da3\";}}','no'),('email_summary_dashboard_widget_enabled','0','yes'),('email_summary_enabled','','yes'),('email_summary_excluded_directories','wp-content/cache\nwp-content/wflogs','yes'),('email_summary_interval','weekly','yes'),('enableRemoteIpLookup','1','yes'),('encKey','8ee947875fcef6ed','yes'),('fileContentsGSB6315Migration','1','yes'),('firewallEnabled','1','yes'),('hasKeyConflict','0','yes'),('howGetIPs','','yes'),('howGetIPs_trusted_proxies','','yes'),('howGetIPs_trusted_proxy_preset','','yes'),('ipResolutionList','{\"cloudfront\":{\"name\":\"Amazon CloudFront\",\"ipv4\":[\"120.52.22.96\\/27\",\"205.251.249.0\\/24\",\"180.163.57.128\\/26\",\"204.246.168.0\\/22\",\"111.13.171.128\\/26\",\"18.160.0.0\\/15\",\"205.251.252.0\\/23\",\"54.192.0.0\\/16\",\"204.246.173.0\\/24\",\"54.230.200.0\\/21\",\"120.253.240.192\\/26\",\"116.129.226.128\\/26\",\"130.176.0.0\\/17\",\"108.156.0.0\\/14\",\"99.86.0.0\\/16\",\"13.32.0.0\\/15\",\"120.253.245.128\\/26\",\"13.224.0.0\\/14\",\"70.132.0.0\\/18\",\"15.158.0.0\\/16\",\"111.13.171.192\\/26\",\"13.249.0.0\\/16\",\"18.238.0.0\\/15\",\"18.244.0.0\\/15\",\"205.251.208.0\\/20\",\"3.165.0.0\\/16\",\"3.168.0.0\\/14\",\"65.9.128.0\\/18\",\"130.176.128.0\\/18\",\"58.254.138.0\\/25\",\"205.251.201.0\\/24\",\"205.251.206.0\\/23\",\"54.230.208.0\\/20\",\"3.160.0.0\\/14\",\"116.129.226.0\\/25\",\"52.222.128.0\\/17\",\"18.164.0.0\\/15\",\"111.13.185.32\\/27\",\"64.252.128.0\\/18\",\"205.251.254.0\\/24\",\"3.166.0.0\\/15\",\"54.230.224.0\\/19\",\"71.152.0.0\\/17\",\"216.137.32.0\\/19\",\"204.246.172.0\\/24\",\"205.251.202.0\\/23\",\"18.172.0.0\\/15\",\"120.52.39.128\\/27\",\"118.193.97.64\\/26\",\"3.164.64.0\\/18\",\"18.154.0.0\\/15\",\"3.173.0.0\\/17\",\"54.240.128.0\\/18\",\"205.251.250.0\\/23\",\"180.163.57.0\\/25\",\"52.46.0.0\\/18\",\"3.174.0.0\\/15\",\"52.82.128.0\\/19\",\"54.230.0.0\\/17\",\"54.230.128.0\\/18\",\"54.239.128.0\\/18\",\"130.176.224.0\\/20\",\"36.103.232.128\\/26\",\"52.84.0.0\\/15\",\"143.204.0.0\\/16\",\"144.220.0.0\\/16\",\"120.52.153.192\\/26\",\"119.147.182.0\\/25\",\"120.232.236.0\\/25\",\"111.13.185.64\\/27\",\"3.164.0.0\\/18\",\"3.172.64.0\\/18\",\"54.182.0.0\\/16\",\"58.254.138.128\\/26\",\"120.253.245.192\\/27\",\"54.239.192.0\\/19\",\"18.68.0.0\\/16\",\"18.64.0.0\\/14\",\"120.52.12.64\\/26\",\"99.84.0.0\\/16\",\"205.251.204.0\\/23\",\"130.176.192.0\\/19\",\"52.124.128.0\\/17\",\"205.251.200.0\\/24\",\"204.246.164.0\\/22\",\"13.35.0.0\\/16\",\"204.246.174.0\\/23\",\"3.164.128.0\\/17\",\"3.172.0.0\\/18\",\"36.103.232.0\\/25\",\"119.147.182.128\\/26\",\"118.193.97.128\\/25\",\"120.232.236.128\\/26\",\"204.246.176.0\\/20\",\"65.8.0.0\\/16\",\"65.9.0.0\\/17\",\"108.138.0.0\\/15\",\"120.253.241.160\\/27\",\"3.173.128.0\\/18\",\"64.252.64.0\\/18\",\"13.113.196.64\\/26\",\"13.113.203.0\\/24\",\"52.199.127.192\\/26\",\"13.124.199.0\\/24\",\"3.35.130.128\\/25\",\"52.78.247.128\\/26\",\"13.233.177.192\\/26\",\"15.207.13.128\\/25\",\"15.207.213.128\\/25\",\"52.66.194.128\\/26\",\"13.228.69.0\\/24\",\"47.129.82.0\\/24\",\"47.129.83.0\\/24\",\"47.129.84.0\\/24\",\"52.220.191.0\\/26\",\"13.210.67.128\\/26\",\"13.54.63.128\\/26\",\"3.107.43.128\\/25\",\"3.107.44.0\\/25\",\"3.107.44.128\\/25\",\"43.218.56.128\\/26\",\"43.218.56.192\\/26\",\"43.218.56.64\\/26\",\"43.218.71.0\\/26\",\"99.79.169.0\\/24\",\"18.192.142.0\\/23\",\"18.199.68.0\\/22\",\"18.199.72.0\\/22\",\"18.199.76.0\\/22\",\"35.158.136.0\\/24\",\"52.57.254.0\\/24\",\"18.200.212.0\\/23\",\"52.212.248.0\\/26\",\"18.175.65.0\\/24\",\"18.175.66.0\\/24\",\"18.175.67.0\\/24\",\"3.10.17.128\\/25\",\"3.11.53.0\\/24\",\"52.56.127.0\\/25\",\"15.188.184.0\\/24\",\"52.47.139.0\\/24\",\"3.29.40.128\\/26\",\"3.29.40.192\\/26\",\"3.29.40.64\\/26\",\"3.29.57.0\\/26\",\"18.229.220.192\\/26\",\"18.230.229.0\\/24\",\"18.230.230.0\\/25\",\"54.233.255.128\\/26\",\"3.231.2.0\\/25\",\"3.234.232.224\\/27\",\"3.236.169.192\\/26\",\"3.236.48.0\\/23\",\"34.195.252.0\\/24\",\"34.226.14.0\\/24\",\"44.220.194.0\\/23\",\"44.220.196.0\\/23\",\"44.220.198.0\\/23\",\"44.220.200.0\\/23\",\"44.220.202.0\\/23\",\"44.222.66.0\\/24\",\"13.59.250.0\\/26\",\"18.216.170.128\\/25\",\"3.128.93.0\\/24\",\"3.134.215.0\\/24\",\"3.146.232.0\\/22\",\"3.147.164.0\\/22\",\"3.147.244.0\\/22\",\"52.15.127.128\\/26\",\"3.101.158.0\\/23\",\"52.52.191.128\\/26\",\"34.216.51.0\\/25\",\"34.223.12.224\\/27\",\"34.223.80.192\\/26\",\"35.162.63.192\\/26\",\"35.167.191.128\\/26\",\"35.93.168.0\\/23\",\"35.93.170.0\\/23\",\"35.93.172.0\\/23\",\"44.227.178.0\\/24\",\"44.234.108.128\\/25\",\"44.234.90.252\\/30\"],\"ipv6\":[\"2600:9000:3000::\\/36\",\"2600:9000:f600::\\/39\",\"2600:9000:f540::\\/42\",\"2409:8c00:2421:300::\\/56\",\"2600:9000:f000::\\/38\",\"2600:9000:f500::\\/43\",\"2600:9000:ddd::\\/48\",\"2600:9000:f800::\\/37\",\"2600:9000:f400::\\/40\",\"2600:9000:f538::\\/45\",\"2600:9000:5380::\\/41\",\"2600:9000:1000::\\/36\",\"2600:9000:2000::\\/36\",\"2400:7fc0:500::\\/40\",\"2600:9000:4000::\\/36\",\"2600:9000:fff::\\/48\",\"2409:8c00:2421:400::\\/56\",\"2404:c2c0:500::\\/40\",\"2600:9000:5308::\\/45\",\"2600:9000:f534::\\/46\",\"2600:9000:f520::\\/44\",\"2600:9000:5320::\\/43\",\"2600:9000:5310::\\/44\",\"2600:9000:f580::\\/41\",\"2600:9000:5340::\\/42\",\"2600:9000:eee::\\/48\",\"2600:9000:5200::\\/40\"],\"timestamp\":1734478997},\"ezoic\":{\"name\":\"Ezoic\",\"timestamp\":1698348469,\"ipv4\":[\"52.20.63.25\",\"3.225.202.138\",\"3.217.200.190\",\"54.212.71.227\",\"52.12.170.68\",\"34.218.21.81\",\"3.7.90.144\",\"13.127.240.219\",\"18.139.6.69\",\"18.140.184.0\",\"3.106.6.164\",\"3.106.176.6\",\"13.237.131.67\",\"15.222.77.144\",\"15.222.108.52\",\"18.157.131.187\",\"18.157.105.182\",\"3.126.25.160\",\"34.248.174.237\",\"52.16.85.139\",\"34.255.61.232\",\"15.236.165.82\",\"15.236.137.228\",\"15.236.166.30\",\"18.228.20.129\",\"18.228.107.195\"],\"ipv6\":[\"2600:1f10:4c55:e200::\\/56\",\"2600:1f13:393:600::\\/56\",\"2406:da1a:e10::\\/56\",\"2406:da18:9d0:1400::\\/56\",\"2406:da1c:58a:e100::\\/56\",\"2600:1f11:f39:6f00::\\/56\",\"2a05:d014:776:a600::\\/56\",\"2a05:d018:dd:7800::\\/56\",\"2a05:d012:4d8:6800::\\/56\",\"2600:1f1e:342:2f00::\\/56\"]},\"quic-cloud\":{\"name\":\"Quic.cloud\",\"timestamp\":1734537601,\"ipv4\":[\"102.221.36.98\",\"103.106.229.82\",\"103.106.229.94\",\"103.146.63.42\",\"103.152.118.219\",\"103.152.118.72\",\"103.164.203.163\",\"103.188.22.12\",\"103.28.90.190\",\"103.75.117.169\",\"104.225.142.116\",\"104.244.77.37\",\"108.61.158.223\",\"109.248.43.195\",\"135.148.120.32\",\"136.243.106.228\",\"139.84.230.39\",\"141.164.38.65\",\"145.239.252.65\",\"146.88.239.197\",\"147.78.0.165\",\"147.78.3.13\",\"147.78.3.161\",\"149.248.44.108\",\"149.28.136.245\",\"149.28.47.113\",\"149.28.85.239\",\"152.228.171.66\",\"152.53.36.14\",\"152.53.38.14\",\"155.138.221.81\",\"156.67.218.140\",\"157.90.154.114\",\"158.51.123.249\",\"162.254.117.80\",\"162.254.118.29\",\"163.182.174.161\",\"163.47.21.168\",\"164.52.202.100\",\"167.71.185.204\",\"167.88.61.211\",\"170.249.218.98\",\"178.17.171.177\",\"178.22.124.247\",\"178.22.124.251\",\"178.255.220.12\",\"18.192.146.200\",\"185.116.60.231\",\"185.116.60.232\",\"185.126.237.51\",\"185.212.169.91\",\"185.228.26.40\",\"185.53.57.40\",\"185.53.57.89\",\"188.172.228.182\",\"188.172.229.113\",\"188.64.184.71\",\"190.92.176.5\",\"191.96.101.140\",\"192.248.156.201\",\"192.99.38.117\",\"193.203.191.189\",\"194.163.134.104\",\"194.36.144.221\",\"195.231.17.141\",\"198.38.89.73\",\"199.59.247.242\",\"201.182.97.70\",\"202.182.123.93\",\"202.61.226.253\",\"204.10.163.237\",\"209.124.84.191\",\"209.208.26.218\",\"211.23.143.87\",\"213.159.1.75\",\"213.183.48.170\",\"213.184.85.245\",\"216.238.106.164\",\"216.238.71.13\",\"23.95.73.167\",\"27.131.75.41\",\"31.131.4.244\",\"31.22.115.186\",\"31.40.212.152\",\"34.247.229.180\",\"34.249.110.197\",\"38.101.149.196\",\"38.114.121.40\",\"38.54.30.228\",\"38.54.42.235\",\"38.54.79.187\",\"38.60.253.237\",\"41.185.29.210\",\"41.223.52.170\",\"45.124.65.86\",\"45.132.244.92\",\"45.248.77.61\",\"45.32.123.201\",\"45.32.169.55\",\"45.32.183.112\",\"45.32.210.159\",\"45.32.67.144\",\"45.32.77.223\",\"45.63.67.181\",\"45.76.252.131\",\"45.77.148.74\",\"45.77.233.177\",\"46.250.220.133\",\"49.12.102.29\",\"5.134.119.103\",\"5.134.119.194\",\"5.188.183.13\",\"5.189.146.228\",\"51.81.186.219\",\"51.81.33.156\",\"54.246.224.74\",\"54.36.103.97\",\"61.219.247.87\",\"61.219.247.90\",\"64.176.4.251\",\"64.227.16.93\",\"64.31.63.160\",\"65.108.104.232\",\"65.20.75.178\",\"65.21.81.50\",\"65.21.81.51\",\"66.42.124.101\",\"67.219.99.102\",\"69.50.95.216\",\"70.34.205.229\",\"79.172.239.249\",\"81.31.156.245\",\"81.31.156.246\",\"83.229.71.151\",\"86.105.14.231\",\"86.105.14.232\",\"89.58.38.4\",\"91.148.135.53\",\"91.201.67.57\",\"91.228.7.67\",\"92.118.205.75\",\"93.95.227.66\",\"94.75.232.90\",\"95.179.133.28\",\"95.216.116.209\"],\"ipv6\":[]}}','yes'),('ipResolutionListHash','6c72bd29aeb31d45f71cbbad78c065007be1da473a410d35ff8130028b221100','yes'),('isPaid','','yes'),('keyType','free','yes'),('lastAdminLogin','a:6:{s:6:\"userID\";i:2;s:8:\"username\";s:18:\"juiceelectricalnew\";s:9:\"firstName\";s:0:\"\";s:8:\"lastName\";s:0:\"\";s:4:\"time\";s:30:\"Fri 13th December @ 03:04:36PM\";s:2:\"IP\";s:13:\"114.23.108.73\";}','yes'),('lastAttackDataSendId','4034','yes'),('lastAttackDataSendTime','1734456703.091955','yes'),('lastAuditEvents','a:20:{i:0;a:1:{i:0;a:2:{i:0;s:18:\"site.update.plugin\";i:1;i:1734542501;}}i:1;a:1:{i:0;a:2:{i:0;s:18:\"site.update.plugin\";i:1;i:1734110921;}}i:2;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1734055476;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1734055476;}}i:3;a:1:{i:0;a:2:{i:0;s:18:\"site.update.plugin\";i:1;i:1733936678;}}i:4;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1733876586;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1733876586;}}i:5;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1733876585;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1733876585;}}i:6;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1733876582;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1733876582;}}i:7;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1733785640;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1733785640;}}i:8;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1733785635;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1733785635;}}i:9;a:1:{i:0;a:2:{i:0;s:18:\"site.update.plugin\";i:1;i:1733764780;}}i:10;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1733694594;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1733694594;}}i:11;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1733694591;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1733694591;}}i:12;a:1:{i:0;a:2:{i:0;s:18:\"site.update.plugin\";i:1;i:1733331989;}}i:13;a:1:{i:0;a:2:{i:0;s:18:\"site.update.plugin\";i:1;i:1733246546;}}i:14;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1733193840;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1733193840;}}i:15;a:2:{i:0;a:2:{i:0;s:19:\"user.auth.logged-in\";i:1;i:1733193834;}i:1;a:2:{i:0;s:20:\"user.auth.cookie-set\";i:1;i:1733193834;}}i:16;a:1:{i:0;a:2:{i:0;s:18:\"site.update.plugin\";i:1;i:1732640875;}}i:17;a:2:{i:0;a:2:{i:0;s:31:\"site.update.automatic-completed\";i:1;i:1732210485;}i:1;a:2:{i:0;s:16:\"site.update.core\";i:1;i:1732210484;}}i:18;a:1:{i:0;a:2:{i:0;s:18:\"site.update.plugin\";i:1;i:1732123730;}}i:19;a:1:{i:0;a:2:{i:0;s:31:\"site.update.automatic-completed\";i:1;i:1732123593;}}}','yes'),('lastBlockAggregation','1734456882','yes'),('lastBruteForceDataSendTime','1711941134.762400','yes'),('lastDailyCron','1734542972','yes'),('lastDashboardCheck','1734542973','yes'),('lastFalsePositiveSendTime','1580305437','yes'),('lastNotificationID','1260','no'),('lastPermissionsTemplateCheck','1734542977','yes'),('lastQuickScan','1734536263.2752','yes'),('lastScanCompleted','ok','yes'),('lastScanFailureType','','yes'),('lastScheduledScanStart','1734320050','yes'),('liveActivityPauseEnabled','1','yes'),('liveTrafficEnabled','0','yes'),('liveTraf_displayExpandedRecords','0','yes'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignorePublishers','1','yes'),('liveTraf_ignoreUA','','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_maxAge','30','yes'),('liveTraf_maxRows','2000','yes'),('loginSecurityEnabled','1','yes'),('loginSec_blockAdminReg','1','yes'),('loginSec_breachPasswds','admins','yes'),('loginSec_breachPasswds_enabled','1','yes'),('loginSec_countFailMins','240','yes'),('loginSec_disableApplicationPasswords','1','yes'),('loginSec_disableAuthorScan','1','yes'),('loginSec_disableOEmbedAuthor','0','yes'),('loginSec_enableSeparateTwoFactor','0','yes'),('loginSec_lockInvalidUsers','0','yes'),('loginSec_lockoutMins','240','yes'),('loginSec_maskLoginErrors','1','yes'),('loginSec_maxFailures','20','yes'),('loginSec_maxForgotPasswd','20','yes'),('loginSec_requireAdminTwoFactor','0','yes'),('loginSec_strongPasswds','pubs','yes'),('loginSec_strongPasswds_enabled','1','yes'),('loginSec_userBlacklist','','yes'),('longEncKey','400028fed584b67c83de002022a520aebc57289601c71768f16ad703bd598da4','yes'),('lowResourceScansEnabled','0','yes'),('lowResourceScanWaitStep','','yes'),('malwarePrefixes','�\0\0\0\0\0\0�y8�\0�ٗ�Ν;˽sIYJ��BR$RI%Q�D�ZHJ!I+�J��H����i!*)�EE+�&~����y�y��3��3>�nj�\no>^��\'�_wB�x�1�uO�\Z� �%�e\r�?�EC��)���M�>��8)��}��uׄ�-X����1ff��m\0��\0��\0�r�a?\0xG7\0?��)��`��\0�4��D�K@�bH�\0Y�+ gZ\0�p\Z������\0��@1�Pt���180�\0�v6���. �);����ռ\Z@U� ��{\0u���\'�����@p_���F��\\q4��\0Z.=���_��\r0h�����t&�:A��!��\0]�߀�\n@7�\0��b?�g��]����;�a�l`�,[�0�`��`x�,0�`00��a����$`d�0Z�U\\\0�>��K>��&�)���/��S5��)�;0����r��= ��7�?�����`\\C`9��*XXՐ���d`��~`�6L�XK�֗_�W�6$`�����t��t/�<$p�8�7�O�\0��`�m0m��.V!����kH,�\Z����H�f�~�x8�9�����u��6~����\\����\\�`��w�<�:`^s0��\0,?\0,H{\r,8�,(N\0\\Y\0,��x,�x�\0�cO�Ӏg�#`��-��u७xx�s��/�]�\0,�%|����l���0��,���Y���g�8`����р�����]���C��\'v\0�k܀\0�& `O,�: X��&\"@`�H h�4 8Z��܁��s`��I�\Z0XӺٛ�A@XPv�/6\"�J b�\Z \"k\0X���:��\0����Q �U5d��DG]\06=]ln��X�[V�@�.�E�����$��������.�-�ض�,��; ~�j >��N�u灄��@B�#�8�H�7H|;.v����+�$� i�?�s� �+\n�� ؍,v4{���f7�g�o`��>�w`��^`_�N`��R<�)A��=��q���R M�6�f0\nH�/\02�K�g; �c\"�9P�0%k��Ӣ���@��D g�= �3pdQ!p��4p�Y�����@�zs �����p�N\Z�\n��t_�T�p�[B�@��I�p�m���\Z��=(��n��1\Z�Y\Z{���{%\'F�|�\0�*^�&�������)���@��(�2(OR���˧���w&W��\0��`��m=P�2��@��k@�F�:�P}��|���7:������S�����[9Z�]�r�ә\0�5G�f6\0�|�}E$p��@�x�xx8�2���/��4h�txt��8S4�π�cÀ�Q��G������^@��6�y� �<xaj��\rxi9x9Y ��^���^Kږ�m�b൷=�:$x�1x;r�)Юc��\r��� |hK:�́O|�ϻu�/���o�����]��#�[�?�@��@�����=��\r��_��Ǿ��U�����7c\"�oN)0��K��K 4M��?�Ч� |�c�@ĺD���h�-�/1\'��q�ĝ��x��x6$/�E�.���8(Z;]�ˢ@��@k@��$P2�����[߀2�hP�u:H�D�T�3���@f�\'�{�� G��ܺP��\0U�AUR\0���������~P-�E���n8��Uj饁Z��Z�|A��M��~!��Uj?�j?{*�\r���:��A��-��vpp�)8D��W�Z;�������@W��h��84-zq 8l�0�p�4�N\r_[���\r�p?8�X����\Z}M\0�]A��;A�� ����@�8����.8\Z\\��}�Z����� м��{*gp�b8��\0h9v>h��h�5����JN\0�����@k�h��\rh}��������lmN^m�A�oE��/�@;�~��U8i�?�>&��/\'?O\0�|D@�@\'pZ���z!�<�8=�]#~�3g�3�G�35\r��+G�Y�n�n����_A�����!8��X����yE������������\r�$%�!o=��=Ꟁ���g��p�\0��/��y�h�ApQ�\Z�K���:R.��.���n���烾��K=��G��K�T�k���e�W�d�+�OW|��7]W>����G0آ��4W]\0W�X ���{0���?^��X�uǀ�#߂�������!��M��u+>����o��Q>���3��F�4���\0�^5 �>� F>n���\\]�< ��\r\np��Lp��+��Vf=�u�7�m�2p[�Wpۉ}�\'0nb�����\0����I�`,p;�Ll��6��G��X)���&��\n&�?w}H����{{������=\0�߯�*S�x��-��e�`ڑ+`�r0�\r�>hxp�D0�[=���*p灇�^\0�R�lU�ݞ\0�\0s���1��c/����U`�\"3�8_R\n��̛�\0�5�������12� y6X��,��<�x��9���*XX�,��`�3%O���M�Y+s�<�&<��\r,60K�@��0<��0lX��e�3��J�B��0�+�.+�g������)7�gxy�E��\\��H��+��FE�W����o��?�E<���k�C���9u���5�����,���ޮ�o��wu�w�^�Ƹ������\'�����Р� >\nj�\0}qw���=�`S�=�-�{(�\'o��i�$l���-#g����/����_�$�//Ԃ��+�W�?�����u\0�� �s�ߵ���z����{�^�C��ct<�1<\0�v�����m�ON�����s��ۧ�O/�� �����~�U��>}8��X v�]�:��X\nv�{�D�{�N�?�1���b��o��2_�W�v�W���u6���\Z��#����?�0����k;��W; ����47C���p� #���\n{�0\0�v�|���!�b9�.y� l����1��m#!r�\'��\Z\n��!ѼXH�%�:+!驫���[Hfɾ\\��SŐ��-D\ri���\'!���h�)1Rj/��w, ά��!�?H0� VG!a�$��49� �wA��4_HG{��O\r��\r�t��<��{\r���˟�}����W���wo��@C��A�ܞA�|A�J�a�� Â+Ј�5��Yrh��#���\Z��\n2�%!�Fi-�F�F\'��L�4Bcd%И+ 3�dȜ\"���]��-��8�$Ȳp*dY�BV�@�\'�C,t �$dm�MX�� ��k �����E��rHQB�sS��iِ�hڪ����7ȹ�;���l�\0��\0M\'C�h��.�ճr]=r�r}��5*�=�$4O��_< -��<�C �$�IxA�s]���4h��Bo3h�=Z4|=��+���Sȫv\'��y�ZCK<�AK��%ի!�!� �x��}����\Z ��� �7w����OfB+�\r@+ch垅�ʻá�o@+{C���P`�;h;Z5�Zդ�����\"h5�v7�V��B�/�Ck��\Z�PH�(t:��_����d�(��!��;�~�h�R �,� 5�brnA��VB�+>A[��C[w|��,=�I$�03J�9\0%��\nm�j����Ў�(ɴJ��%m�/�%��\n%_�vM�\n�����q������OA)g_@)/ڠTq%t���V��O|\0L�� �\ne��A�fYP�(����9O�p�y(kH�k��CG8tdit���ȓ�(g��{�k _�\r?~��ʷ̀�#G@�C�w�C\'�_� ��� �YЉ�[�����*�Z�j} �B��CE�T�9*�>*� Ag\n~CŊ�Pq�*�?*)̂JN�ι*�sw�C�cʠ�p�|�7t��T��2T�AW�A3��%/ t� UM_U�q��n]]M�B�G�k ��k��C5��\r��P�Gts�c�L�X��9\0�i��:� ��:�ݏ�������z��j=��5n��\'BO�@����@��uPwj3���%Y�k�\r�z��M�z�mrԾ9z���q�����eԑiu�\nuz��:�ʠO�Z��~MЗ����oз�F��N��r�� u�������{_�ks��3zPoU�s�m�g�aWA<R�>�{п�l��F���a�4���q0�z�m�`��F��u�w���`�&�/Ä�r���܂I`L�������(� ����[KM�%\'��Kɰ�,\n���e�?a:*��_��F7`e�V���&0C�`N�s��`��˰��qXX��ΰ�t5,4�\Z�dX�Ck���:\"�u|&�:m��Px��}>���!����]��{�C�����0�<��6t>�<\0�4�\0���9\r�`�Ol\\k �|��M�Y��^���$6w���h�-���V6k`��E�x|�=غ�lS�4��m�6¶_��R��ė�n�>�~�!<9�v�};\\4�\r��S�o���i�Ӫ_�ӞR���(�y�\rع��B?�]��*��q� ��gN�\r��0�gfn�g��nR`�����b��xN�<�P��=�w�/ج�=`]x��x�>xѹ��W�?x��}x�[��.��|t�}F$����qx\r��0��Px�����C�e�xxY�jxY�+�Oo�U �����\r��K�a�����g\r���\0^Yp� ژÁk���\Z��`>^=���E������}A�a�p�[���mሳY����p��y1 ����#�o�Q3]��8�t�1��1�������l�!���ǂ�������;x[�(x�6�sy\0Ǐ��W-��__��;���hxǑ�pҴhx\'��>��v�#��y��;�8���x_�{T�I����S��q�k��C�7��4[N[��_n��o����[��\r�s78c�6���g� gf���K:���#�M�>�Q�>z�>f�>�L�yG��pޣ�p���� \"\n>�p>�>�� ������,��;§N��]Y��E��\"�H�̰��ٚ��mK��..Yu.�9>�r|��<��.c��S���\rp���!p�m\\u�!|��1�Z�%�&g.|��\r��µ�p�v����-#�62�ck�qk����u��.s����We?�q�<�����m@�>�n�7�o���Ï�V�M�Z�ǧ�Of��ͻ����g5��w���~Q9n=L�/=��W+��W�?�U���H����^�]�-��߫w���6��X���F��;�~)��o�5x*���o��Mg��w�r���\r��ow��w?6�{\Z��=�s�1��ý:���˫�_�#�_�\'�����?^��K��#�_��p��?[<�\0���>�\"@�n�>���7���So#h�}=���D���^q!�D<9\0�ND$�!��/��R��9!����&��MD���u$B��O�#J����a�L�}؊p�o���G_ �sW�ND��Q�G�Dxv\nѲ��hE� Z�m�LD���n_�h\rD�� ���Gt��Ct~5\"�����ŝ��oD��D����G1�{��NF�>�@�!��!�1�����\\w1\n�@�֚\"F}��v����蟦��}bڸ��\'2f�>bVe��K& �^o�]�\"u\'2����[j��������X*G#��g+ub������� �%Ґ�u}��\\d��aȤc+{{ 2e����q�{q(�F�!N:��i�a�yC�c*�|<q>�q�rq9}��<�^���� 2���Պ���%�Y���[�7�1�3�\Z2����j\"2�B\Z2��)2�������3�D�﹇̯Z�,��x��!a%�g��s�x��,ܾY�!^��o���@��#KjZ�� �R}Cd�U���C���2��h$�g����A��� +N�B�UYH�*Yٽ \\� ����F�m�U�?�U�4�(ІǝE�O�BV��EV7C�Lđ5G� )X��N[��֤#�KA$�Zd�n�n�sd�\"Y���T�l\0��h�$:�]q�q�G6��Ȗ)�ȶ�Ñm)�x�j$��$,Z�$���$$E�����w�7J�$�,$�\r�s�ٹ��|����\"{��!{�u���W {�#{?mF�]@�Sϐ��> ��� )��\")�����\ZER��CR�7\"\"� �#i[� u���$$s�x�и��a�.�pb3�u�E��: ٽ��{��������ȱ��H�6=���!yb��J9y�9Ym����i�E�hrr��\0r&�\n9S�9k�9;�3r��R<�)��EJ�,�s}<R:�7R�>�P���͡���gH�D����8����rI�\\?\Z�<�B.�!W^k#��� �w�*�&�*��:aR�%�NmDj��Gj�n#7:J�Z��H��H�o䦤�َ ��!���QH]�1r/[��{\'r�-����4�#��U\"��5H���)�G{�ȓ�7��{���ޅH�ȳ,K�e�$��1�¿yy�yE�!m�H��8���\Z��e�&Nyk�y��yw�y�ꁴK;���H{m?�8��C����\\��v�=D:_�\"�V|C>��@>�8��B�,[�|)�B���@��.B���|�ь��F~���h� ���ހR�7��-���4{��>z�}���U���@�&; }K�H�3���� �_p�o�������(��\'\nu���: E��ʛ(\Z�Ek�(�tBq�(Y����EŢ�ش��?�ʮOD����B�3�PF/e>c(ې�r#�P��pTs�d5ܨA�<~���P�q*T��/��2��ߠz�P��RT��7�?�F�����٨�Aj-B��CGOG���I�q��:�l�LP�f��Q�C�PB-���]j��5:��\":�7�\"j�\Z@�\\�Va7��{e脕��5�����c�Q�}cщ��>�N�ǡ�uPǙCQ��:�T�g�i�xt����=u)�B]ζ�ӱ2t�z=�x:Ct�ɖ�n���[e;:���Ξzu{ �S��[��뚌�|�.0��z� �{�zT�.�=\r�ђ�>�E�o���6����[r�k�DW4�E����������Е���+=�+�`te�>��ڄ�JnD����գo��/;�!cס�ޛѰ\'4|G,\Z��]k�]?�-�!x��\ZI8����\'�E7��\Z�i.B7��E7���/1hlc9�5e\Z�*G_� �S��_���/��[Sѝ�5h�Lc4����%Cw���nE\r��>�}��7n�o����5��wM1�@S�mBS�X���BS���G��Ѵ}Uh��z0V�f�|�f��@3�բ�l|��#���\nѬ1uh֭�hV�4g��M@s�\"М�X4�e(��a$z�d4����-�E����(F�3t�|��h~�4��=qFO��CO�m@X-ЎEƬCN�FO��BO{FO�?��$�%������Z�B�0�L�\rZ�t-�u-+�������G/�e�W�����\\���U���U���aNh5���rF�+��k�k%��{��k_����X�z�bZk�֮qBoR����^���z�v�(�Κ����}��}Wz?&\0}([�>\\��>�h�I��a�6��G���h�m�T�>��G��u�S���3}Vb��씢-���w�G��9���z���Or\"��5}5�}e݇�Z�}�}=� }=���Q(�nrm��\Zmc��OtE���D?��G;l�G/�c���,�v�}B?�߃~�<�\Z�~i�F�jMF��_D��F���F��\rh���u���ȣݣ���C��s�ў���/�ץ��F�t�B�����C�!S�T�o֍�G�@�3�����\0R���O0�\Z����cX{������_~?\r#�]0��;��v�D�yLl���}�0�lLb`�I��b��w1ن����Q�y�qS\Z�ĸ32�/?��j�b��N�z�-L}�S��a��S��O�5����i�b�U�0�� ��Ssl�n�{ Ӄ0��?1��W���I���H���SlhB\"6,~\r6�[fZ�\r�/��_����*�F����[�O��5���/���� ̴&c��/k�{�663\Z[�g��T�Y�,�1��l��Ll|�-6a� f3�/f3�f˿�l�1ۨ��������$�6��6i���Y�MY�M)��9�a�m���a7���C�i�6�;�2s�Ha�?����،#��Y5 �&�ܨc��n̝s���gbs�+������ߞؼ�7ؼo?��6�q)�\0��-h��<�as�1��=����g�R����[�S�y��Ńa�������%?�`>�K�e��a�&]���b+z���!�����tލ�|5|q|{[5e4���:��\\��g$Bta!�����X����L�ª�`�g���ᳱ�uغ��u�؆ǽ؆g�\r_���]�X��X��Xtq>��܄m��m�mN8�m>t��۲��=����Ƕf����Z��I\rX�x�p=��K���m��a�U��*����x;K�%ݷ�v��Œ�Yl����b��plϔ5؞��ؾ���Ik��LK=i���.�\'`��ð���X�����4,3x\rvh���찏?�e�˺n�e�b�i4�c܃��;�N��-��:���c����<t�\'��婶byw\r�|h!v�; ��N���?�\nDc��-��t�`E�qX�u.�&�3��ؙ�u���,V�JNJ���-!Xɡ�XI�e�\\�F�t�9���+���J�i��꿼%��D��u��!%V������*n�*���KZ�إo[��z�ؕ/Xe�n��;�]�f��?n`�mO�k\'7b�\rcח�b�o.���\r�jb��={����\r�U�\r�c؍;؍�X-7\r�}������ �]=����!��:�Z����%��ѵX��9X�%�5B_�\'�]Xs�%�lt�,<k�V���2�Z��X�3����b���c/Wb//Ea��-��0[��7�w�����g�}o���>��ľ*����X��j�+{2�]���,�~G��ҰQY�/,��\\������vZ����?N����#���H�o�B������,��܇;q�������\0G<�q\\�\'M\'��q� \\rk.��ҟSq��hj�Y�h��ӊs��qu�F\\(݂kt��\Zc�m��k߶�5�:��:�p�\rJ|��>d�5>d�[\\�R���z۾�z{�p��6�~�]���i���B|��>��V��Gtō��q~n��nrt=>*�<>�D%>��M���O�t`�]���8��ռ�͇|��m���,n�m�[���p|l�;|z\n�<����Oŭn���u���=��w8�v��\'T��mln�6�z���[�M�-n� ����]7�v�zp�w�����`k|J�O�?w[�;M���;Mq�#\r�Ԙd|jZ��݅O���;��]��K�>�0�n������0�g��g�E��\0O|Vw%>;�\Z>��7�n����,>��5��>_�e/����y���[�/�؏/|�\n_�q�z�{u�^\Z��0�vƽ/V�>ǃq�O���K�R�6|��2�����\n�)���S���kp�\'^�ʐ�x >_�%_�5z� �i��^p_�p4:���}_�����ã��Oj�{3�O��u���:u:�a�y|�� x�uxd�<�xYa�G��7\ZN�7�Gs���?1�&�5x��g<&��y�\Z�i��o��|��ee4���6|��qx�j|���zi(�m �����^��4���t<���a<�6|G�G<�5�s�|g[%�����;O�u��W��2��:��2�h���5|/��ﻢ��?�O ��Sҏ�Z��TO-����xz�&��~~0x%�1E�g,��3�� ����OxfC<~ȁ�-X�d���jO��/�ŏx�ŏ\\{�y4�E��5�۞�� ��ʇ�ɠ9��T/?/�Z�\\?����৭��wO�O�i���Ow�ƋػxQ��]n����b�\"�x�m�������a_���e�y�?~��?� ~��+�|\"�_��_v��_� Ư,}�Wj���V�U%3�x���x��>�:�~��=~m�0��yc���[���j���\\���8�51���9,~SӉߜ��o�X�w5;�C��s����Cx�pk���!~��o���P��,8� ��8���e.x�*o��𦵾x�f�i��T��7ݚ�7�1��,�X�?��?���:��l��7�[���/q�_�����x��u�-���N\0��q��ױ��q)��t[W���.�ߗ<���?<�;|�Y��m���z/�϶3��gS�/M�g7�_{,�o��o���k��]�\Z���.�gw6�ê�q���f���k�{7xo�a�\'i��������]����>Պ�~х����?&[��߁�x_���;�*@��1�_������r|��A�_G��0Մ\0K)zw�@�?��@v�����0���N?�B�h�04\'�-0!���$d)�Ur��w$�&;�Cl�g��7��p]����| >b/���*^�Pe��0�0�y}��\Z�Ch%7ڃf���_w����`b\"1x�b�h11DaC�}%�\ZD,aP3�Z��VSE� \"�� ��;N�x�K�$�#i[b�H#���C�x�U�Dv�01�!F�F�ѫ>��i�Hb��EbLT\'a��DX�{NX|�N��~B�������|K�/��y\"a9O��|�OX~]IX�|$��� �� ��� �/1��a����A�})%� ��΄��nbʃ/Ĕv�C�%��IL�wS��SW�N6���#�ӷQĴ� g�넳�+�\\H�\'\\FU.%,��1#p=1h&f��E�\"�Y\'r 7�I�۳�ۛ��ɀp�v\"%� Ĝ���pb����T�[��� �6�S/��t]Nx��$�����/�c����X<=�XbA,~����J,��$|�W��|���X*�#�f� ��K��K��\"�t��; �\"�)�X9d\Z�.�l�H�k�5ïk�̈5��� �D�R#\"���$��fO��� �R�:v��XKl�\\DD�WQ?k��E-Ħ�@bAl�>Nl�2��]1��ݿ��Zt�ضÜ��N�=o&�������D��ED�d5�4̄H:<��&v�F�#��ݏ�=6��=������SL�\'܈�+܉��ډ�)=D�c��6�8��8p�-q�L�f��H��D��F���#������yDz�a��Տ�!��8dHr�\'�`k\"�4��i��#�e�������ܡ���\'��Z�������o�D�f��s��_<�8��DdcD���#DѴ�D���(\n<Ou�g�AD�K�(u\\B��O��7[�O�\'.��&.�ڏe��D���WJ���r\'����(?���辒�X�M\\|�\'.�!�*�)Q��Quh(Q�����d��`F�W7�\\��p Q{ً�9}q�&��ekEܺB�>����BM�gN�Y�O܉xCܩ_A���M�cN�\'�Mk���)�}���w�r)�`�\n�⡍-�oQ����7��oL&\Z��DC�\"�Q�;�Ԛh|YL<Y�A<�I<� %��!�-̈gCY��9k�e�q�%-�xA���@��$���xx�x�y���������O|\\F�D����ԽEt.J|�6#>��Ӵ�o�i�7�l�KGt��\'�|���Ӊ��w���3D�H�@������op�G�����ӫE��{}?~�ӟ��S��>1�p�x.%��/H�� a�h.V���Z� 1q���#q��/�AGW���s$ ���9�8����6�r�S$�֏��= B8I?�#�3��?�d\Z�Hvh)ɾB��y$簞�X�\\i3�:�T��!�)<�Oj�=!5N�Z�$R�\r�5�9�ZI�\Z��މ���$��/�%���\"\rRQ� ݚ4�+\'�-�A��HC>�4�O���}\Z9b�r��Nrd�0r�!���i��I��i|c:i|k7i\"M�F�&��H�2\'�<si�֑c\'_%ǥ+I�ѣH+�Xr�d9^J���K�lYO�6&m�� mg����oH�5���D9�UM:�yI:��%1�q;HN�YDN�%���MN��FN˯#�w�Ω^��KN�I׳��W�I���Hw�c�{S���#i&�LyD�)�Nέa�y��<��g���4ҳ���d��ą\\d�D.*\'��<H�䳤ס�����}�b߿����g�Z�W�N��!}����c�ҵɥ {ȥ?-�eeKI?ă\\fN.�@��C��N�hM\'�]�ɀ�ɕO�����:r��䪿��`�?�j#sr\r�B��\r C\"2��w2�ʜ�����2\"4��(|L��/%�>�&ו��u���G�Lf�>O##GF��n�dd/FF�S�(�K��u�ȍ1��h�2:y4� �#7��Jn��On*~Fn�lDƬLƴ-\'7�;DnNYOƙ�\"�m$J��č�d�ǟ�5�ɤ_dR�7�3$���d�drNr7���#&�ɳ��B���d���-�Εd�=r��9�)���@f�U�Y��dV+��n\'�S��<�RF���c/=�\\��\r�K�^}H�E���k:O�˴�N\n�d�+Y�$Rk���#�Ӽ-y�D\ZY�� ��~&�<�!�-F��`#�ynZ\"y�Y��C^�M!/�m\'�&\'˶=\'�l����r�J�<|-Y~�=y1MNV���KZ:䥩/�J�Gd��=y�`y��Y=�5Y��IV�o!��:�\"%y��X�f�+YS�Jֺe�7�N�7�k�[����M��<$��{K>pJ\'\\t ���Cc���ai���U��{1�8M�l�-&�n�M����.���K��o{�\'kޓO=��fY*�l�O6O� �Wo!��z�g���g���g_Ed˟���R;�����6d��5��|S��|�=�|;��|��|[��n�!��\'ۯƐ����k��5=����ò���0���QD~6?D~��N~9���RJ~[�����]�F��x�]�Mv?u&{r��^��h�_�J�W=@���D�b�?-ɿV{Ⱦɿ�~����(�����=\"p�U�R.��d��m\"TvPDL��>\"���Hlc.�z+{��k(�|�8���Q�X�F�xK�h�\"fZ���u��oD����\"���\"��f���ע!;4�!�BD��H�ޝ_\"�g�\"����a�\rE�G&�F:o;���/2~�/\Z�A4vm�hܰѢqwA�xH\"\Z?\\#�6�!��<Ed\',��M��M.s9��\"G��\"ǖ]���Ѵ3�E��D.������D3�D�f���.�#ro=&���,�;s�hޠ��yCψ�r�yg�<NOyt��Z�-�(ZT����gh��oF�|2)�O��ȧm���c�h���o������h�\\sъ�?\"���7E+�lD+?��c�EAC/��T�¾6��o.�w����\'Z{�V����hCP�hC�ц*R���^ѦnGQL�B�9��h��x�(��B�x��( >+��yR���H���h�����4����D)!٢����W���Nj����sg�>>/�0_+���-�x�&:4�Ht(c�(�B�(�)T�#d��HmDGM\rEG�:DG�>�r���n!:��(��Q�;щ(mQ�h��p�ZQѲ����zQQ�P����� ��k�D��D���JF�J�f�D�D*kEe�V�ʂD凵E�gBD�3E��DWf�U&鋮n�U��D�]��Pt�n��F�#���,��Ɖn~��28.��݉4�Y������E��Q��vQC�R�h�OQ�讨)�X�T0A�8K*z�q5+5\'E/b�E/�^�NX.jm�,zy^�z�,j��)z3h��M��[�\n�;�4Qǖ���D���>/[(������BїD��䑢�g�E����E]��D�7x�����(����o�}Q�&��߃6ѿ��b�J,F&U�Q�1��(&���]bQ��X�%K��˶��eّb�l�X��],�8-��2��X1�\\�?��=ż�\"��d�X��F���V���G�����JT<t�5�P� bC�C<|��xD�\\�����#{x�Q�\r��c�Y�V�Y���j��ت�C<��N��Ubk�Pl�Tl�$���X<�/Wl��J<�@�?�S�;��z�b�6b����O��.�����e�l�t�f��`�ص�P<kU�xֳ/b�=b���b��$�����9���]k��T�=�b���ۗ��-^��P���K��Fk��E��K;։����W�m���A�_�)����Ł+~�WI�ūj����8��tD�Cg���4��έ���fq�u�x����M�v�M���c�q���x��\\����-���qjSq<tC��$�|�� �����\Z���wz4��K��{!�ޖ.�ޟ�ũQ��j�i���Ӓ��kO�>Jg�gi����֟�#마�w_��>�]\\,>�(.���*>e(.{G\\ء�9���nr�nĥo։�ƒ���C�/�}W*Wĉ/{�/o._��#�R�+�ڔ ��;!��m-��H|��qq����V���[Cķ���w�n�9�U|w�����(~��P��%~�c����hq�%\'n�w7�M7|�7\n�ō[�M�:�\'���`q���[��73�/���_4:�_������ŭ��6�G�-���Ƈů���7���M��;�������i����x��+ğx����)��kş������d��o���[]w�V�{��{>6�l���?:ſ�X��&��AK�������\Z$��r �.���K��%x�c ��XB> !Z7HHi���X\"\"~HD�$�[�%bm=���(�]�0A\n {�O�r�(Q�s���� ����d�\"�d�2�dІ\'��F��Ɲ�x[�n�6�^��D� ������]%C?���[\"1<m.No������sIb�{Eb����X2ꌣdT�Q�h���d�d����%��=��������$�G;I&��Jl�^�M�����l�]�3�}��d���ွ�q�\'�T#B2��L�4<N�t��ĩa�dZ���Y�Ĺ����dF,���df�nɬk �I.���wK�`$�d��$~C����J�GU�d�?�b�g����$�KgH�_6K��I��DI��<#Y�<X�$�[��+�Z%Y�͐��!�o��Lϑ�8IV���\\�J�n���\'Yg+ z\Z( zM�fe�d�뽒5?�%!��%a�֒��$I��{��G%�Iă\n�Z�,ɺ� �h|�d�\0I6�����x\"�um�l��J�^m�l�+I�&�iGHv��K�O�H�x{H���\"�;��do� ���%��J�ǙHR}�HL���͐��}-�P�K2I��r�l��$��Q���Prt�Xrt�b���L��WI�\\�e�ܽ��ŀ$�i� }7ɉ�풂�S�S�HNeސ�:�Lr��!�ٙ�$�>�I��%�n�$�>*I��U���%e+�$e]��\n�T��\\��_R��Hrm���^�[�o%wxS���%u�:�5��]�{�s%�v~���X�w��Q�9I�%��vђ�ےg�%�#s%ϯ�H^� y��K�b�Iɋ��ˣ�����%��\r��ݳ��=씼��,y��I�ﳔ|0�|�^J>Ŭ�|�WK>7��|���|��&��3H�m�Hɷ�c���$�o��tk�Jz�T��;��3K%?�GI~<(��m+�*xzI\n٭�BSl�0u]���I i�T$K��O$KeC����R��ER�/I�^���\\��;-՚(�ZuK�m�X:\"w�tD�?�ȩ��#�äF�¥&`�t�K:J�!5�t̆*��k�f���f�{������R��/�.W�wJǎ����I:6�P:��Uj͍��$��ڴ�Img���6<���H��v߂��F�K\'���ڏ�#�V,���J���S-B�S[�J�fܗ:e�N��i���\r����Jg�:*u�v��礳����G���q�)��TJ88K=��)C�-FH��̥�O�R�d�Ի�O���)�m,]v8P�\'�����)���&�K�-��\Z�����0Ĥ����U�6K��Z���&i��9i�����\"i�{�4DV#\r�,\r�JCu�IC#>H�^n��u������F\Z}�F:�ҨS�1�^I7�I�Mɔ���҄�;&H���&WJw��.���]���]�\"��m�I�?ɔ����\\���֔J�W�K3�͐��fՌ�fߴ�u� =z���w�I]\\z��3i�*=5��l��l}�����ܺ��cii\'�T�-��TZ�&���!��\'�Kz����փ���f��;K}�u�qҺ��{p��ޥp�a��N���f��G+\"��5Q�ƺ�Ҧ ��\'sNJ��ߔ>��Q�����i�%i���疑��ofH_z�Iێ�J_[����%}kH�v�K̗߭���~� �ؽM�y%B�i�Z�Y�K��6X�ua���?��T��{�ni��_Ү\"�eC��i�Fߕ��/��*�!�Gڏ�G������/2�J�~<H������e�3s~AK&�I����D\\.���eҀ-2�i�L~P��R/�ϥʘrL�bd�K��u?.c�ۗ3d�O��q�2�v�L���L;v�lP�t���8�`t�lpc�L7�L�j��l�lh���0�D6����V��x�M� rG6�5��>����$35��>��=L�Y=�#[�,w�Zf��� JG���p���|�}�h��|�lJ�\'�c�H6m��l�I��u��l�e���d�*@�[�B�<�D6y,���$�?>L6�\'E��F�9�X��Z�0��{�v�w�6��b��H��\Z �ÿ��ɖo�+�m���_���<�d�\rͲ����gd�dk�:�uK�dd��?e3�e�;ɢɢO��6�.�Ŭ�/۲u�,�0Y��(�v�]g,�\'�e #�e ˶{x����wN��D�T�K��]���R�g�z��a�d{�\ne�}���)�����.;��Bv� ;X�\";X7D��;L��\'Yv�=U���#9��cV~�c{]e������>���e��e����\n�<��ܕ��&;c�(+���\\ ;7���gmم�0Y����� ��K��s�Wv�.Pvœ�U��ɮ��j���n���z�dw�\'�ꂞ���Z���e�������ϔ=l� {<�]�Dy[�,�)k�t�=KY\"k!\\e-�]��Ke��!�K�쥱��e -{�Y��<B�x��SZ�&�Q־��Cg��Cv]�IY.�l�%��V.���.�v{����%��kd��rd�}5�?E�������oe����]2��7|�\r��F�n�-G�F�Q�09N����p9~�RN�,\'~-��n����E����%��\\j��e���yrqGNXȕ��l�69{\\-�I7�`\"�>��k�W�5��u��N�x���9r�{����A��ܰ�|��-��#o}�M��s��&���G�d�M���M�5�MK���j�f?7��\'Q��e,�J��[�g�\'x�[w��m���,�O���r�1���/*w:yL��q@>m�E�����*����rW�?��9r��k�s��sNF�����{��/�\Z*_�tY����[�ܣ\'H�b�ܳ�H�(E_�(s��˾@�u�Z��{��K>��/�5Zx�A|�B|�|�]N�&}�<��7y��9y��#y���<\"�|��y�n�|�LG�Q1J�q�<:I_� �4w�|��t��?�|�X��~�<n�yy��v��Hyr��|ׂ��]���7�����4��u��Sޥ�S%��ź˳�˳o�g�~(�>�[���<��H��0C~<����O���G��M�E�c�E/��+K�g����ɋ\rS�%������ez��\"/G~i����xye�y��iyu�b�����\Z�&�͆J�́��[�\n��6���C��|��ߖ�]�?�a*onʛ�C�M5�gf��g�_�[�Y��e��m����-��W��ۻX��;��C3��U��-i�OZ��O˝����?}��Y>X��4#��4Z����\0 ��З�z��ޝ��?����*�{�O�W�.�ם.�=Ae��J!�\\\n��P�P\n_D�/P�h=�|�\"��Q��)�Ŕ8`<%��$�!J�XJ�l�)ٵ����9Jn6@��\r�(AQ��)��H���G�Q����S����ӧ����C�(.�ŵ�P���R�\\K��#(M�bJ˚����(�7���M�X�RC�PC�\\��<�N�θB�}�I�3�)}�`�\0~F���SC��Q�RjX�=j�/k�0{65��5�b5�Q 5�\ZG�|]CM�M��(�K[(?5e�s�\Ze��\Z�ZK�~�F�1\n���%�ٵT�|�y�b=H�=}�\Zg��\Z�b+5nS?5n�>�j�\reuv5�~e�̖����l����ć�����(;�]X85��e��2�5eLM �C9�YH9�l�z�S������ʩ��r��E���Q.��)���)����t����E������W_)��<��aC�x~�����f-:H� {)7�&�m����r?6�ro7��9@�_K�����D�P�R�C�Ky�-��]����R^�\")��)_p7廗��n�F-+�E��fP~�w��Z?((�\n�9*��nj��T��b*p�<j��\Zj��rjuR\rj<�\n�;K���P�㩵���O�����p���𣛊,�KE^ZLm�2��vN���Qѷ�M��P�>o�6w�R��NR[&����(�-�s�8�X*�t��c9��XD���ZATҦ[T��#��������uʞ�u�&�ۥ��=��{\"��@Dظ�:pԗJ��K�ϒP鯏S\r�S��Q#⨃Y��?MT�Ee8Σ0�=L:#���6P�zaT�~��\\J�oN�0�:za�k��:1$�:q7�:�;�:�Ǎ*�z�:��:�c!Ux��:�6�:s�+u�@yR%�ڨ��eT)��*�~�:��UvzU��ʏ�Q�?Q�F�b�s�r� uy�U�=��j1����u�N�Fg:U�fU�$��eQ��jQ��;Nv�]�^��?��Rꁣ.�`�\r�!�S���� �Ѳ�j�`E5��G5U$R��S�Ӕԓ��Ɂ��SG\r�Lϗz�^H�����H�n�Bk��t��՞j�j���/Q��Ǩ7�è7�qꝎ�.v ���.�����8�Ju\"AԧA~��N?�Kd�5&�������ɩo�K��o�.�OTW�f������M�o�~N�A�r-�~Ϸ��������_�T�r�7*����N�R����Ε\n�h���R��*�YK�(^:[A��RȂ\nY�?�ܨMAݲS(��+�wJ�9\ne��BY٠`4M\n�|����G�)�<uC�G�+�����A\nu�9�0\"\\�=��D�(�\\��14T�xV���c�z��\n�A�-�\n��o���*F�^���B1⟛b���\n��M\n�ҏ\n�kk&T��dp��$x��d����)J1�V+�,W� �P�y>MaFlW�y�W��y�0�����8(,VD+ƾ?�7�X1��b��\n˹�\n������ 7:^+lM�\n�c/vZ��u�I�.*&}^��7���r���9��\Z�R8�{Ӳ�(��NR8�P��q\n��8Ō�l�L�^���Ŭi!\n7SF�e��m�F1[��b�y�bvH���D�<��y���\"�\Z��,(<� ���X�:R�p�0Ţ1c���(�$s��[ދ�K��V,鹦𭟤X�{_��q�bYB���d�by�|�\n�y\nP��7��9c����Cun��s�(\\Q��/T�r~��Ml�B|=W��m�\"�T�)�l�7+»+��(\"�녈q���}���*֮;�X��@��*E��M��_��+Ɋ��<E��m�����+��6)+v0;�MP���H�?�ؕ�)v\'J{G�S�u���[�*RWe+R7MV�n�Q�7�(�;}���(2|)2�6(2�������2š�&��q���*?YfA��Iw�?�GvKG\n��R�Dž3�<�%�|�4E~����ɽ\'�AE�v���bNQ8b����ӿ�E[Պb���؇Te�W�]�r�ZE�����Q\\Z�t�Uq�}��J�IEe�E2_Qu���V��QTÉ�j�;Eu�������z�\n��ў���(n����\\T�jwU�Nx�������*��]Ku�m�:o����x� ���p��q���q�Ec�h��hj-R<�z�x�*������*�摊f�pEs�~ų�EK��s����m�6(^/tR���(ޝ�x�R��~EGL��sJ��S���S_���ŗ�] ���E�~�O{���ů���_�y_�_a���\"��*��!\Z�VF�\Zi��\rͦ�Cu4rI����4����\Z��X�\\\Z_/��J\Z�PA�g�h�^-�V���=�Ą�%�/Ӓ�iYIMOgh��,�Ѳ���i�o�:\04[�Gsw_�*�/��SѪ��huH6��q��ui!>����Z����њ˾��I5�}�<=�u1�SC�:��Ѓmj�a��[��u������\rZ�衃u�A0=4�G>t��������i��Fz��m\Z]H�\\��8��c���fƋh�P/��h��\0��0m�0��ҾH[�ҧ��:� E=�T��um�����5�m�2i�_���(m_M�S*G�S���Tj=u�z�ٓ���y�S�=���@���D�LF�쩠]�j�.�k��o�Ӯ�X�P�/��a�J�ܧE϶8H�~�@��Hh���h��h��=\'@���n=��Iz�Z���E/�����O/�� ʧ}n��ͼA��O���<��?��L�~�+\n��\0�2:0HC��\"���yѫ��5�E�Z:���w�PG5�k-�j@��E���M��<zm\rA����]MoP����騭\r����� c:��}z�{5�?��Y�G��Ho�H�c�7ӱ�NѱQ���ӆt���t�/3:n����]O\'�-����S:qR:�8CC\'�/�}�w,�����;g��;͡w�����trV!�K�G��:L�\n֢w8N�T�)3��)W����t��\n:uG��s*}�#�~MN�\ZDgN�3��҇�s�C���^���atV���ݢ� �H�?��i�>�hIk_I�&T�y�q:����t�bw� �)]p.�>��ӧ�nӧk��ŮW�ȇ.��K�F��L;�s=�9�At�];}>m8}��*��s]�\r�q��m��g1}���j���E�թ��k=��Z���y}K�M�2עoO��o_�L�E7�uQ=����>��O����~b,]x��?5�nؾ�~$ʥ��я\Z�ҍ^��ǟ�O�=��7}���Π[���-ޙt��|���|�E�\0�zN�n�iD�>w�_n~A�lJ�2���`O�\r�C�;�~��ү���I��s�������Y4��Awl�Kw��Н�Нˏӝ���·&�\'��Sp�uu2�5TB�G�dLw-�@w-�\"f�]G��ݿ�������=��_�����c�>�|��e%�/��>*�k%:d�[8B��tS�`�R�sE)ʵP�?nRJ�yJ��{J�(�R�h���*����ΉJ�BI�LQқ��LA��wO��*��S�*�\\�\Z��T�^�TE�S\nf�Rx�G)��Rj)(�GnQj�?U~�Z9��$��� ���]�ޕ�J}���e�H�K��9uʑ���F/�)���Jc;{����(�z��㳔c�w+��+ͼ��&?�cy�rܔ��q���7Z9�{�Қ���6���ً�6�o���5ʉ��υ)\'<W�0J����{줜|�A9sSN}R��4S�$+��W:�V:�;��vl�rZ��r�5��>u�ҵ�L�z~���O�Ù���(g�2W��W�7�Q� ����3A9��r�sZ�l�\\�g�r�I�ⲳJo�J�\\�϶�J_�7J__c��nC��X����e���˾�+���(��וˋF+���T��D�rp�2HI*�ە�\'(Wo^�\\}�_�F�F����U_Q�Vʵ 2�:Q�sح\\7�I���^e��rS�w�U����(c�)ʘ��-�<�߯��fW�[�}Qn{F*�>)づ��w��s�+�#b� �m�[@��;�ܾ�WnOߢL|3I���(�\'�P�j�R�?+wJU�KKU��ʔ���4�seZ�e�ece��̘h���l�<4�Qyh}��P�B��C��Qz�;e����#V�ʣ�1ʣ�6ʣeW�ǰJe�\"oe�[�2/(S��Z�̿�(O�٤,P�)���&�+O�Ǖ��7+��W��1HyV�<�=Dy�h���/e��He�z��df��ħZYt]Y�*���<wy����Ly=�,#�*ˬo(/^Ɣo~SVX�*+�>Q^�۫��c��J�}�_�+/.*�t�RVY�+���Uٯ�U]�էieu�嵂�O�����֮�7���q��Ô��T��\'̔w$m�;���Λ�ʻ˗*�lb��V��i����rec�i�S@���D�옋�el��E�M������+���)_���l3�|=\'L��\'W���!廪Be{h��^e��R�1�Sv�����ʯ�ǔ��W~?>O�5E��PvC�����ʞ��w�e��g�`�/����3(ߗ*��U�K�g\0���f�a����M�`ۯ3ҥ��4\'�����7�2q�Q0Ɍ�X:�4����0J�i�����3�a;�ީ�Q��j�HFؖ�h��̓ߌ��dF[]�h�{3�Ͼ2��3:���%/��g62C�\'1�F����4Fo�;F�2��{0� ڌ~�)������1t\\���ˌ���c��<c\\�1�r�1I�ɌZ�^�\Z���|g���d���X$�a,Ǽd�.�`�{ɘ��{��y��u@c�/����d&��3�B��I�I���0�p,3�5��i1i����ٌӪ\0Ʃ����qz���e��}e�ӭ�2G��;�;���n3�:3;�3�x!�`�tf��fA�b�c�(�3j�K�x�[��1>W2_c �ko�,ݪ�,m\r`����,[��,���Y�����L@])�r{�J4�Y���)L�\\&8�� �?���΄L�τ�3!��LH�.&�.�bɄ�1aVQLX�&�-� 7��D|_Ϭ{�Ĭk�c�}[ì7��Dd\"C\"��Շ���W��C�����Uۙ���L�*fc��D11g����օ9���̶!�L��w0�IH��$d�3 ���L���L�+]&���I�����/�]I��c�3{�˘=�v3��3)h5������I�2顣��N2A9Lf�X&K��5\rg�noc�#F09��cR�Y=�9rm s��\rs�o�K�er�ۘܛr��&��\'&�R`�^Oc�=_0\'�OdN2��ɴ��ɜ�LA�s����L����J�m�3�8sf�#S�O`�/�0ŏ�2��3�B&3�_�`.��/���}QLy�b��L����&b.M�g.��a���a�\\��T.�`*��L�����4su�/S��\0S�zs��c��<�\\�?�����\\����L:���z�� ��L\"s����cn��dnVG37_52�\"�2���e��=��e�0��,e�}��O���y�y�<|-g�/0��L���L��i�9�i��_���C�\'�3��\'��棝̳�O�g��0-���̋�+��K�3/S��6��y}?�y�<¼�r�y�qa��͘�sL��\r�̇����2��M��\\������g��wFL�|�y�\0�%A��rȁ��K1_Sq�k)�|c1߷c���g�̮0]�����쥙����c����.��<�� �7���{ߙ���kF��Cf���h�b��2�9�B90]>�B��X��(�~�\"�����h�9�bOo��{<K �,���2/V4�+9 g�~�X�/9K�G�����2�6�fi�,�~��R��\r�X�4�9|�e��b�mY�I#��=�U\rذj�PV�q+HpVK�j����X��8��|���4a{���?g�C�e�ZVWs��5�cusQV���7̜շS���z�A�X֠��5�x�\ZZ�e���p�;��c�_Ŏ O�#,��숻��H���ȴ��a�Q7��c�\'�f��YGk>\"�5-��6Ys�}�e͎5y��5��q��q//�V#C��Ӥ�����k=k}y%k��ژf�6yZ�D�֎��NZ����e\'5d\'�}d��u��(�ཟu�ֳNo&���_X�sX�����~�D`�N=a��4����`笟��i��y+Ʋ\nBX��c�X/�Ŭ�R�]���.��`����\'׳K���j���jOe}GT��sK�el1��7�wCͮ��ή�g�%���ӭ���\r���z��%�\Z��]��bC�k��\r�Ɔ�Άi=a�F��a���p�R6B�kۿ��G���f6�B�n��a�m��hO6:d;���nn�c�xx�[۾�q�6�s6.o-����M�Mg�.�`��lٝ�-vg�R6yR��{2���vϚC��i��k��B6u�^6u�&�@�$6m�y6�r*�qQ�f��fB���Cl���lN�9����q�=:a9{t�i�hJ>{�M{li {l�;6�d){<��7^ĞаcF�^�la�h��Y\Z{:`�\0/ٳ���g�j�Ŏ��?ْ�Z�ܖ��b[�ܣ��3�H[���ߏd/gT���r�r�y��Y`�j�d�]�d���a�O��ސG�7��FH={��j������։��uVW�T{k{�T%���2��܅}���0<���ia�����|�G��G͟�ǚ����A9lsJ�\\��}6��}�Ѓm�S̶<7d�Lb�/�Ǿ�7�}yr<�J5�}�˂}mnþ��}�Ɉ}k�ξ�2�mosf����~�=0��r/�y�+� ��~���~��RZ�~�hد�9��$�;|����>a��Dz��yl��6��Q����̟��]���\Z��`��{�}6�k��}��d����}�ql��j���,�_��(-;�9��ĺ�$��栦\\X�!�w9d<��{�8��s�2�#��p��/�x�)\')7�꩜�d\Z\'��q2���0�rP��j�)�p��3��;�1Mg9VgǾ��8������q|]�Rp��5��a6�n� �9�e\Z�Y��4�pN{g7(��t�0�c��\r���tc�9�3������A�T��K7��nؑ���P?nx�7b�=7�d,7�$�y��Y�͍lX�M医�q&��Q�߸Qm���]n�n���׳8S��3\r.��4���/�����qm���C���B��ш���Y�9ǍO)�Ƨ�qZ-8��M�!��`$g��7��.g�����tgoQ�M��M�l�&_���⦞�খ�sS+h��%�s�R�MSdr����,_�����87���x��xt����7�` 7w�Dn�9[n�n^�1n�L�,��-�Vq�ɜG�.�S&�<��&*���Vs�fq�cnrK<�9��͜�[��u9��0�Л[\Z,p�n�r~z��C��?,8.��8�P\'r�+>q��,��}���2n��&.Xt���B&�q����дR.���[�-�֣��?�� O��hn�wc��L��b~����Ŷ�q[������ø����r,����%�]�%U��u�q�T�=N�ܞ;K���r���s����\'��_�ʥ�{q)����4>�K�˥�7������w�N�e�C��?<�37�;���(��+�c=��[\\��˻����^����]���p\'�m�N�Ý�Z����\n���>[��iW�aϝvsg���Ύ ��Y���\\�[WR��;�Ý�>ʕ���R�5W�9�+��+��̕\r+�ʦ[re��s�~����~pHWA�s�fusWor�[��ʯk��������ڸ돓���܍�4W;6��Y{������Uqw�Nquh&wO��3b�{��r�l��\n�Ñ���9g��QW_�kx��{t��k\\��kx�=+_�=�\Zõ,�3b��2��g?���\Z�2�6�vژk�Y̵��>�\'�ci��l�1]����:�p��ݟ�����u5����}�t羖��\'vp]����C�չ��֪�+��g���7<����p&�q��r�8s}��p}���ڄ�����!<�Z�CR��.L�Gz<�Q��w 5�Q� ��o籧n<��\'G��I�\"^4��m��E{�x�ÿ����%�N�R�^�S�K��TFO��\nx4��L���xEIO�l�sy��m������y��g��l=��k�U\'�����_����:s���?��7�!G���N��S~x�2~��_��L~Ğ ~�{��r�7I+�M:�QF�ѱ�����4�oZ�Λ>�ď���������͔���S��p�bzo�k�[�i�-u��W��V�8�jl\"o�� ?�f??�-��Pn�[�o�mjLy۠��w��)��=���%����Ϟ�O�O�Y�O)��;�����3����s�i�)��H�e�-�e�����û���3D��y����C��c��j~�~V/»����2������y-n�|����K�����������^[C��\'G�+\'��N����wJ�� �?ʄ������~[��#�U��`��:`��k8\"_χ��!���o/�Plz�v���l���L�#b���g~�Z�9�_�/���G��##��Q_\n������T^�oju�7uM�7Gf�[v�4��[���~����,>n�A>�<��K���������|��o�+����D�+���6���T%�B�ݦ3�=��^� �O�S��-����|ZA�V��?�U�g��Ye����|��>��4��v �Sp�ϩ��iS�1�w��U:��2>����.\'���\'w����z���������*�`�_pm_�8�/h��Om�O���_��G��.�K~�Eu�|QgI��5��%���� �ف�|q�;�$2�/)ß{_�_�j�/4M��L��eG\0��!�����_���Wv����d��+�N�zjm��ZG݅�g�7�b�[-e�m�`�vsgxg�߭���\'U���V��.;�?,�ׯ;����7���7�~�7���?��\'�\r�S�`��*�j9�o�Hᛝ���\\��-����U��=��/�����9|k�:�%�/�#���3�W��6~\"�f˿���U�oR�os���!}�}�;�c�x�=�wV��m�\'^����_�<忶�o��o�|�.���wG��G_�_�&z�<_�Uy�o��_ÿ����M�����\'��kU������y~�F�LV�*p��\n�0DnvR���U��_��B�Wa�Ω�WU��*��QEh�T�{\\%�\\%����;��o�|���\n�T��*�<LE{9����*�d���zU짗*��J5�P%0E*�h�J�)RiN<Si�OUi\'�ViW����R��t&�lP\rƽT��N��L���u���K5S��ҏ|�ҿ`�2��\Z��_e4|���b��dE�jT�ը�tը��h�T5ڋV���S�^�W�юP�KRT�mT�T�ݪ�K.��V$��%IU���eS���|������~�DD���p���j��N����*� [���4����ʱ�Q�}�j�����Z�������4��y�9��C*���Y*C�������Dž��7�WM�V�X8_5s�t��Q��ٵ�T��j�{�L�{�B�{E�j�q��Ts�|UsZUs~��榾Q�\\���w^5��j���*�;�*�#�U�R-\\�Q���jQ�?���c��\r�U�ӎ����Z��C�}!D�d�r�Ϗ*_i�ʷ�F�,b�j�V=��ڵ��#�T�T�*�Tl<�Zy�*�*�8^���Y4d@��S�>w^�F�*d�2UHB�*TK�\n�ۤ\n��\nT�Uk;W�֫�U�\'���ǫ6\rثb��-͜*��j�/�֪<U©o�ĊfՎ�4ծ����8վڥ��McT��ݪKf�����\"�ҵ�U�#T�{TO�,���l�*;�W������ѪcU^�\\�Un*��}xTu<�Fu�V�t_�*Xf�*(��:�_����\n��PVu���U�m�T������JNf�J*���u�S��\0��&���{��b����`��b�0U��v�%+Pu)�JuY�[u�4Cue�Օ=���ꉪ�>a����T�_T��kCM\\���>Zu��YU�榪�o������E�{χ�?Q=������Ϻ�jX��j��TMFI��쟪NjtTOE{T͉����=�����K�T��^���^f��^�f�^�<Q���O\r�6�����Toՙ����-|�z��U�����`U������[�9�Tu�fU�L�>�Y��\\�[�����q�o\r#Tߞ�Tu����[8UO�LՏ������?�OUq՟�TS�ū�~W3F��_j���\Z8`�����fj��\Z�ITCǎ�W#���qG5qA�&^T�E&jq�F-s|����S��j����zW�V�\'Պ�j�G���LU+����}j��9\'�j��Zpثf5��?�v\n�d�D=�N_=�q�z��,�~�j�A�B�����%u��A:�bC����E��#��R�4�U�|rFmqLmtF�6�NU�M���&i\rj�Wգ?�MӖ�ǘP�7�S[�S��?���y���V�{�Hm9a�z��<��)>jk&Em=[_m��Qms���P�z���ģ��v����[m����PO�Q=�@�zJB�zJ���A�K=UO��R=��\n���yj�mM�ic���oޫ]���3G�S��袞�+U�>4\\�>���}I�z���T�Q��;w�z깝��3�����6�=_4��.T/��V/�+R/��]��T�Y�^�ڧ^|B��v>��E�$�^��$C��T��RW�Kwک�2�j���ڿ�:`x�z�j�:P.V���S�Z���9�W7��W��kC�!y.�P����V���k\'�Q��4T��J��G|Uopx��Z�����Vo\\j��4�zӼ��M�\Zu��Bul��:��0�V��փ��q��\'[���Iu�������\Z�z�V^���Iu���΅Uꝗc��CN���Q��8��xLV�-�U�;V�N1��S��S��U����>b�Nox�>��U�Q4R}h�|���v��#+�Y�z��U6�A��\\���=��y!f����\'6��O<;�>���� 2Y}��Ku��hua�����*��Cԧ���g��Y�u�c��$�S]�ݧ>��Ͽ�/�lT�Ű��D�E�`�ŷ�\n�H�%�9�����˳�_�R_�9��,2S_����~���[[���ǫoLQ߈[��q㶺v���|����\n��c�w�W��%g���_W���~`��r�����F�<Q?�����t�$Y�%�Տ�����7^��H���d��q�~�wO���~ʠ��竛�f����U��P�ܽM�jo���X�n�0R��n��4j�߾�V���T����n_�F�~t��c���� u�@����~��ӽ{�/\'���Ww9����W�h��{Ҷ�8mQ�t�����W�k�^��=SԿ���,�P�y�Q�7W���x/Q����2|� ��F �ZB�r;k#`�� 8�C���#�<o���� $�L%��FA��G�j���{�l�\'A>�TP&8����e�����s\nA��_P�\"�ό��\"A�褠�\"LОD���� �RA�;EB������d��!�w�I�����~�-A��Z��d�04�0��G���0<A_~�Gހ\nF����w�qe�0�r���-Xh�c��\ncw�c���c���3f�������0q�pa�RaR��0�+^�|{GZ���Y�o;*L��.8\0����K\'�\\���H��;N���S�5��V�Hp� fW�s�R�yV~¼�¼�W��<�\r��Ǹ\"���.,��E�2_\'xu7K�G���²�$��\\/�� �:���3���B��oª��4�W��S����_Bp���z�au�aͅz!D�B�D!t�h!4�A=�Q�V-DD���l+!��n�&�Mq6\\6\"�BT�F�pT�4�#9&� 1�҅���揃�-��-2��\"�m����a�B��B\\�8!�+C��8_�o/�{DB�~RHH�*l��-l �Y��Z�$ǗB�l7ag�wa�����?��=�W{\n����_!e!���R\r��T=!u�;�쒐&o�� g�|#d�r2�!c�R!㷋���%d�˄C���C�ӄ�+:�,�OBVJ��M8 �1��#1O�cs{��Q˅�5�p|�X�Z!O���!�Z!�Q!?!Q�OsNoN�b�SnW�B3s����Q¹qB��&���r�sB�A�P��D�( .�9\'\\�9_�l6K�\\�O���(\\U���Z(T�� ՟��ٵ��2�fr�pjn�lnDX ��,����-��p�r�R$�Yr\\��(�Ed�]�n�p��F\\�w�]��W�g�p��\\x��P?�U���s?��B�Bc�\'���Oh\Z�Rx<�Bxj7Dx�b��tO��,�UhY�Vhyn$<��*<��+���.��� /�\n�8{�S���k��6c��v-Vh��,��o�-�\"�k� ��B{���~�7�C���Y)|�>\n��Ä�\Z��@�:��M/G�6)B��J��2Q�v-H�\Z�@辒$��z�0B��.�g���S���UG�Y.��!\\��F}�\0�Q\Z�v�x�O��k��\rdد��j�\r�J���נ�^h�a\Z��\'\r9�L#ھQ#�H#M���ov�ȯ5h�Ofkk�5��~\r]sH�TO�(�?k��75\\3��>���M4��_\Z�Z-���@#�M�hE�4:��4:/Ojt:?h?���EFk�N��i�5����Nr�0JK3l�\"���1��+4F����\Z��QS�(�Q�Q�M5�~�\Z�1��Ќ ���~��,��<��|S�ƢCK3�@�f��rK�\Z���\Z��y� }C4�I�56\r5v���Nة�k\\��2�f��͔��4{-5S��4S�M4N��s��su���/��.��L�\Z�K5����L�f��R3k�g���qQ�q�tT�|�f���\\�f��GA͂ߗ5��4�4�ς4sfh���B�4^�5��V;4��͒ٴ�y��Mح�۰S��|�fEt�fE������[�&@{�&�i�&��C���f��}�ʥ�5+��hV~]�Y5�fռRMP*� �x�Y����y8oǑ��Q��ܹsg�:w��I���(J��B�D���6!R�f�RJ�}�\r%T$K�҂h��~|��>�<s���=3�!]7A8�PL���9N8�u��E�Q�%���R��^��R��8N]@8�P�p�c�̯=��� B@�,!`�!�m?��g=��\r����z΄��i�K��KM��[.����B�� �PD�~��p��#B�Y\0!�҂pã�p�7���G��v�p�X��B����/�b�-&�@9�����+�����GH��IH<�KH,p%��w��wf>������lB2�EH�r���\0$�z�Rk���MV� �n��a��5[K�+8C���YDxH�$<t[Dx�Hx�̛�ݘ�8?��c����F�-�E�m�%�C�������6SB��vB�ٕ��BI�jB���P�~�P�oK�=�Pw{1���FB�E���B}-��p��А�Gh�&45|$<��!<��Bxq��ţ���yY:Fhnr\'���Z�i�V�aB��XBk�,�s\n�Ցτ��� ��)�J���������τ�%#�ΈM��,+�[b�K�O�J�E�6�G�.�J�>F�Y]O�m!��>&��� }>K }O� �Ǭ �g��\' �D����ƕ��U���.���v�5�âۄ�ԣ���u��� _� ���E�I%?�$� a�Ϙ0�N���!�ȯ&�YM��\\J�N�5�@�]XO�s�\nav�0k�G��WB�{���y�]$��G�Z\'���D�v*Q�ˌ�<�@\\����0����CQ-v\'Q=%j~k$.٫JԚ�!.ݕB�~F&�H�u�^u��u�o�z��zy�����+~>$��~���H\\mH��ྋDH������\\�d��r~��JDC��o D:�n<!2䜉���D�=D��\Z+\'�\"�#�ȹ����6!��l���i�@G�(�!�_qm��Lj(��D��(�=E���݆DY�?�@N4N\"��\r����D���D#�Z�q:qͯ@�:���h\r���\'��<q��n�R��~܇�QE��q �h6�C��K�|D@������;����-�%�-E^D�Q��%�����n4q[V&���h��A�i� �n�L��0\'ڍLw�E�ݿ�h�Nܳb%q��*qϼ\"с�#:\\8L�wW��i���ѱ�Jt��Dt*�#:��]� \\���~��&�%�G����\'�xL���<N��\r�^��7��c��-#���#z��H�y��{������\"���%�͉$��p!,8Gر��4@T�A��#�S%�[��x^=�x��-�����\'��\"b��)�ŷ��K�c�K�����p�e�!�U�ib��lb�%gbh�1��C���\n����<E��F�t=H�at�U��x�.��Q��-��A��%ƙ�!�9�!ƽ�BL�|A�S�EL��GL*�OL�DL~�?_눩n����iG��.i3֞\'fx�Č/�����̽��̣��,��ĻW�����W��7<$fW����9�E����Gy��/�!����J���7tb����~�XXC,��%�!b�m*��cJ,�? �\Zx��~b��NbU�&bU�b=x�X��!�s����Ħ������ωϯ� ��V_�?\'��Q$6o|Cl>�Dl!x[����u��]�_��߸?#���;U��_���[�;Ё��N%�*�+d9���jbw���>�g,��1Ԅ�1\\@�v���=��t+�?����(�8�j!��=6�op����9������#~lj��6�腝�ѸR☑�8�*\"~��&~m�\"~{&G��}�8�n%qR/q��qj�\rqjN@�q\'N��$�\\nE�iK&�Zu��G\\B�5&�:L��2&k��{�aq~=��\"\n�\n�\0��%�q@���4�P��\n�l�T���\n����_@��Xx�X� �Ŝ�F�Śu��x@}�����깿\0��\0͓�\0����NX�A�g\0+���N^\014 �]\0p-\0�o��a\0L���\0)( �/�m\0�]PLz� !��{�g-�Էh�s�zF��]�|�Z�i\0Sc#�|0?�\0��v�5�`n7��\0���\0_��g���%� � \\�\Z^�˿\0�j#\0�,�C݀�����d�: s�d�y�*�?���5��K �\ZrV8\r����\0klk�u\n:�:;�$�ظ/�1/0��0g�������\0��4�r�%`k�f`�I���\nX����f`�C��C���ۀ]��\0۵i�ݭ����+س;p��꜁�˾{]ـ�|���#��8��⁃=����M�a8<��\0\'�O[1�56�wN8�>A�/�0�[t�;}��8�q8����N���> X�~���.���ρ���E@����`f>�9L�f�@��6ຎp}kp��3i�\Z�L?D�~\"gK�<[��� JM����Z �z�D_KnG5\0������d Vu�%���\"�8�% nj17�$�@�$�����;�`���[@��J �g9��Hi����i��@�����xt�<K\02���a@�m?�ap�W p���&���\0V,\0����9N\'��{!@N��H��u��|_\r䙎\0��a@�m�`�P�|(���< P�<��%v�R�#�L�\r�\'�\0Ur����@՟d�fWPs#\0�]C��\r��@c�f�i�w���<�DOͷO����s�fݣ@�\Z3�E�h�SZ�7��~���v��@��5�c$xk�����~��B��.t���ځ��=�8^�6+\0�3q@�\\0З�����0U`��\0�����YK�5`�q;0v+��\0�>_�������h$�U^�*N��i����<&\"���t`��\"0�����L���i���?�o�o��9������`��;`>����A�{�A��g@�hGPE(.�] ��A�7�@�����]+P���TI5�@�@*�9\\\r.�p�\\\0��\0u�ՠ�&���ԣ3@�h9p���\"�$����AR�4H�a$D|�@���%>i��A�y(�$f�L�� �@6�d�� �k�f恼ϋA�m$(��E-(�}�7Aq\\6(1>J\n�@��)P�T\0�b�U��j�\Z\Z�����@c�u�xKh��� ��=��ہk_������p}�����q�7p��qpch�11�X<n5*��?�3��r����ƛ�VW����[�u��]hn?��9���MmO:��9�@��.pϗtx,�^w������\Z�#|e����N���S�3�4�:M���Q\0t���z�&2@���a�!���9虙\0z-��-����\n*�Ǐ.�7�ǻV�\'�+���d�g�6���}\0�f^��r@�N{П��?����Z�O��g7(��3`�w0��R^\n���^P\0�T#�B�A��o{��4��B� �\\�^;�\rn�����s`�\r30�9�\Z/o����K��`� {0>�=��>L�d̂wJ���\r�`ҏ\r`r�B0E���7�_�����;���`&�\0�<u�J������O�������)��o��Y�� �a�y0�3�[�̭=>QL�����\r�<�80�2������9o��{\r,�|,pY�F�q��`���`��,�\0�����p,,Z�-��p.X��\r,\n�=��y\0X�q+X|�,NI�S����`��dg,Xr�\n,��K/[��y{��כ��Y:X��X�� �%��ei\n`��XN\r�\r}��u����,��\0˿\r�忽�\n��BU�01+�l+��+.T��R����`E�5X1ZV.�+�?+�|��_+�*�f�*$���V��~�����č`5:V�Վ�`��u��9�=�\0����ןR�:\r���o��aX�s���ft���`��J�>��O�ە��N.X?�\r6��>�\r;���B>�P�l���`�C>��l;6�l�5�&�X���\Zl:��4[���%�%f\'�҄��H\Z�+n#�*\"|�6|5� ���of��i>�;�\Z�X��c��`�J/ؽ��n�\0~ �?~K{�L�����Yp`I��bU��C���49d\n��?G[��\0�������d�_j_7�_ͪ�����ׯ[�o�?�o�g���\\�N^0�@/pJ�N�?r@p�p�>N���ӹ��� �מ���Q�w�:�����s�/����;����U�W_��B)In;N�O�$$��f�b���ؼ��q���8���h3I�/���w���Z����\ZICI�8�4\"�$���$�.>iɕs$-I+i�n�R�A��;�$�$MW�N$JZ��KZ�ѝ�������k|��7�#�`�V�)�V8�#�8y�D��H��&$ �L��%A�~%:�Dɧ����Z�DSN!1-�I��S$���������OH�o�$i\'��S���c\0$�5�0����Z�D�I����I�%�$\\K�yF20I緑Vk˓V��%�o������u϶�LT]I&�I��mH��$�K;I�eI�+�H�JI:��6*��̨�Hf1>��s$s5Җ��$z�\"ˌ�������(Ɇ���E�U��d�T�����@Y�=gv������KH�$�W%��B���!$G�D�o��Ϳ$��$ע$7����]fJr�1Gr��\'R-$֎&~I:�Āt<���-�H�6}L�>>H|^\Z�|�\"�3#��}$�/�K:e<C:uӗt*F�t�)���p#��$�[I�c�IAy3�F��VޤG\"I����.��!]y�N��ȂtM�@\n�L%��;H��I���들��������K�[�I�?�b��H�nV�����D8����tg�*)I��Rޠ�T-����)3���崒tWN@�>D�/zO�oQE�V}H�^I�_Dzh]Nz}��h����4���!��I�����D��<�FR���rR����?��T�q�T�ōT�p�TvCL*k�F*� �[���I��Ǥ�l�T�d�T����s���AR�@��^O��ΐ�O�\Z�\"5��#5�n#5>\"5=�!=��\"={���l�����,�y}������f��V1���:�5��z�R�#Lz��\'�����N\"���!u��.�\0R�;����H]��I�o�z�\"��y���R��]R��R�ER�+i�\Zip�}Ҡ�;Ґ�+i��i8��4��>/�K\Z9<O\Zy�K\Z���4:�N\Z�\"�M�\"��{H\Z�#}9B�����Y<$M,U#��C�v\Z%M?�%��r$��&��H?�n�~a\"��|ҟ3ڤYG5Ҝ\n�47�E�˹I�[|���Q�?\n$�L\n�c!9CoH^~#$�Zp�$�� �|7�\r�b\nRٺR5k�T̓���+���Т�!�G5�Ā4��CK��@KZ ���֍��Ve���gH��MH;��ܔ�\Z�V�I�V\"��6\"���\0f\"�{S���5 �Y\"��/+C�g�B5�(kl!t���C��f�����ļO�X[�!�o\'�&�C��|�\'�x�� �w4��Ԇ��!��\0$X� <w@��fHPA���C��$�g�M4!�h�gЪ�hՐd�md0c �&�@��&�a�\0d��5d|��,͆�r�5k�Кuh�:)���Z?C�6(�6�t�6�C\'�@f�7��bh�?&d�P Y��B��F�V�uж�!k�e�:( ���?m��Ͽ�v,��v8iA6� h��;dG�\r��w�B��}:|h��Zh����~�vh�<\n�\\��\\�@n+C �Pt��\n�t��6\n�Y����6��<�A^�!/��.���\\�����Kg �� ��q�O�do�|��A�q����.���C~�L!�ծ�)��T�:�ÆN�3��MP\'\nr:�{?���]��.X*C������f�b�R���kХ�&�Ջ��բ�P��6�\nՖBa�(�I(,>\nk��[����s�z���\"~�A����I�nL����_A7�Z�-� �����%+l��p(�{=o�\n�?%ЯA 롄��PB_\'��#��J.��R��@��\\(��8�q(\r�<�L��y�\Z�9��r�����Bw+��lN4��`\Z�\r���A� |�q��{�喤@O��e���}��{�oˀ\n��A�ˠ�`U��v*�X@���rr+Ty�*�C��$T�<��U��]7d5����B�iG����z!>\r����^�f@�BA��o�^7P[�1���~�u8OC闠��P\'�u~��?ϡ�����Ї��P������+�d$�>e�B�\'5��4/h�*hh�k����s�4F���Cc���[��EЗ�a�۠���^ZMT;A�Ф�,4�=M]Q�~�&Aӟqh&?�����������\n��^�B_�A���r��d���d��cd^Y�?Y��i�b��b�$Yy;����NV.��*1Yd�;qd�Ka�o��j�XdM��䥣�����e&5dm����!�N�;���d]����-Y�ʔ����B]��\"z����O&����7���Udp8�=�N�� #���h�:2�S@f-����2����V8C�摹�:�ܴd�]52�\"�g�����y��� Y8�N���-�ɢ\"����,�����di�m����,k�\'˦2��d��l�w��Cd���\Z��W��&��2\"�)zL^�s���ky}�yӦ>�9�\"y�����G�l1��l���Z� ٺ�-y{9N��\"��!�W\"��_$�^6 �]�N�}LHȃ��Ƈ��UG��\r��Hv�1\'L>p8��Gv�N������{�.�o��%��#�Z��n�$dw�7d�c\Zd��Md�;�ȇ�ɇ?�G�@~��Zq��T���_x���\"���O��#�|~��C�!�T֓}\\�o�ɧ��#�6�\"��_B��\">1\'曑�r��V���m}F���M�7E�����|�j�6�j� rH��\Z?�z�#9��D�%�]��bk�/Rr�˿�HY���O�K�ȷ��hM�=kI�=�M�]�G�u�C��C��G����d6CN:MNF���ݔ�)�r�yr�9}rƏ=�̀k�̩rV�)��a�|�]H�_|���x���l�����m�ȏ�7���M,#?�n$?�&�*�\'�ٓsItrލ��IrAw��b!�(%�\\�lA.��ɥa��y)���O� � W���;���u��1Or���\\�B\'��+�k[-ɵ����\rz��\r�{�tr�H�9�A~1# �T&�_{�����m�-����,��| ��b9�+���W٪�לHr�r[�-���3�=w�����C�͉�BG��A�=���m��^5&�W���kv��{{��3�<�X�<�H�]\'�D^!�\n��G\r��ǚ����z�x�m�q�/��;��^��������\rwɓ|&y�,�K�!I ���!�m!���&�,�I��y��s������Ώ�kn��;؉�\'ҁ<�6C���@��S&��j��J?���ߟcF�f����a��)X���[���G_��7���L�p�^`\0+�߂= �Rb���4�|�V.ԆU���U,`���`ե��Bx^h`��҅5�5�o�K��K�l������a�1���Ͱ�.5Xgy,�cy^�b#����5��u�m`�b���#��y^iy\Z&�`�W�W����0���{\r� #0U�S7���ܵ0uj3L�i�iR;��P3�0��IS8c����^0;�/�qp�9�/�\\�L���a�-� �(�,��¢�*XTd �jG`1��hX��,��K�XjO�����U��a�Ui���%l��Z_\n����5����e�ɞ������Sxc�\"xc�&l��o�3\n�/��1�`�ؼ��X��z�����m�3l>[?����]�|xׯ��-�0l�V��;a��x��!� �\n;8�os~��z`�y 츐;K����&�a\'� ؙ�\nvj�]�v�A�cص�vc�������1��x�������Rدq>e&��x��go��gS���G8 �2�\"��pPR��[�\r��x\0_��˟���ކ/ހ/���K�7�\'��gX�w��p�u��Cá��0�6tt�0�7V���~��hX����V��c�>�q��qR����`8�^!���\rNR�\'���p2M\'���Q�p�}}8��\0N�l�3�P�^N���s����lZ�G٫�\'{��O���U��n �5^�d\0���E3^pI�)\\��\Z.�.{�.?]\n��*���&��R���᪦p��ڷ�X\rW_>W���5�T�\Zϗp�L�~d\nn\\�7.���4��&������,����_���/�p���tq�_�-���֗ pk[\'���)�*�_������O���n_�n�;�N���\"��uL�sr\'������A�k_ܝp��?-�?\\2����}�+�~;\"<С��R�Z�<4֭���t��b/x��<���\0�i߀�/���cR�� ��W��\r�ظ�׀����]�ɇ�_����gxnH����c���)���mR�Q)r�(�(��{,�le����eeA�%��eE)���<���\"褨l���ܱ��T_���vS��)\r�P>�BY��EY�{���RA��I�,1֣,�S�ܵ)Z^�]��ro�Κo��c��Z\"Eo8���s��ⷄ�2g3���BL��5Q\0G&��8A�T�R�_Z(�f\n�B>�3HA��Q��&�-��m�1�Ia��S؇�P؞w)�,O\n����m7����\"�~L���ms(�k0E$*����RD����4��\";7Kѷm��Ч�Zɦ��=�����ȥ�^��b(�!O)F�~S�v|�]��Q֦l����4�R֫����Gٰی�)(���4eӬ!e�!����g�ś`�e@�,G�|y��5�$P�N��X��Pl��(6w)vNQ�Rv��S�u�)�i)%\')��({��){;z(�v�R�59PT\\�8_�S\\L\r).M�(��3���Cɑ�Co_Q<��R<4)��6����y�!��� �g�&�A��u�+�8?儖�r�z�r�2����{�5�{����I�Q|E;(�K�R��w)�FՔ�/�(g��)g��)g/�SV�����av����s����U)�O*P.|���\\l̡\\2*�\\���r�7L���H�BO��e�Z|#%Tp�Z4E s�C {��r�ˣ\\��@�I����aN�l���`�Sn\\�J���r�%�s�mbG�~1B����״��p�%�1���<UGI�J��次�����/����(�ՙ������]�L�LJ�H��g%� �d�J��\0ʃd\r��%J��v�#� �cI5�q�9J�������R�ң���P*��ʋ:�*�eJUy:�ک�R�R㺟ROI�� ��羣4p�)\r^*�F5SJ���q[���Z�S�E���_)όH�g{�R��S���(���R^>|Fi\r�Mi�<Cy�Bim��m�Di��Ki\'P�e���:�����M���_R�O��tS�(={�)=])R>>xJ�8u��+�Qz7��|�[)�fVQ�VQ�z�S��\"(���(���|�eG�z�2fQ�\n�)��;(��g�o�c�����ɴK(?2C(3E��_kc(�6~��2;L���Q�Ŕ�����*DNo)\"wJQ`�Ŝ���/Di����\"32�E�.dQ���N\"jGO\"�5RDc�����T��,q܅,y�,۪�,;����h��!:_%�����D7� Y�1���\"���Q;\01��-���-�,A��_���*|��!�2E���+�L=�0��\"��5k�F�؈��>C�TE��nA�9w��\"��A��F~3 ���K5D����DV�E �� K�!�#C�9��b��1��1�?�u+/ �.\n�u3�u}�M}����$�1u�EֻT!���Mg��7d���|�1��E�Tq����s)ȶ�?ȶ�d�J��v�G� ;8#�N�nd�nd��ȮKk�hĎ��m�A��ݍM��JE��\n�Q�9�=��<���G��!/|D\\/f#G�#G��G�c��-K�hn�h�#D�� ^�\"��#�6� �ꢑ���q+��V�D��d��[�xz ޙg������3��\'F���S�`䴲=r��7r� �<��Go?E���H�!=�|�?$�Vr�����.��|+rE���\\���p�hr�drm�r�m ]�]��~����� a5�ٍ��Y�DX�O.�k7u��z6��<r�yg\Z�U��D@nk[\"�Y3H�c67���\r�F�~�D��ݑ��v$�4��t:#�=?��ې��HF5�d.��d�Hf�-$�� rw�(r�};���B���H�V ��;�<9�y�IG�4����F$�s(RȯC\n\'�\"j?R�)r�B�� E)�HI )%BJYqH��Rک���) �!H9�)o�����D��\r�jf$R�Ӂ��#��R�! ���Aj+!uH���4<�\"�\'���H��R�i�w�y�\r�\"��\\qy�錼:W��Y�D�ƞ\"o�r�7�EHZ�tH\r��6�-�>�^/y0y�P�tg/F>�Ȑz+�s��S{�h��|,��|�Cz�\n�\0�Q(=��=��nO䳼�o2��2>�| �D��o _o/D�%�F&��#�ں�$��R�F������d&���dv#3y�ώL�W�}�7z�3>��V!s����B\'��\'�?�fd~�2�2�h*g�U�G�\n\'�q�wL��Q肧�QE��bp���U�hD�u�ʤ\\T��U�ۊ.��D��A�¢�Œ��i�a>�j�F5���jT�O�����Tˤ�2�.�5D���:!���Ityg-��;��p8����EW�E�?�4�B��(�ք��{Q�(��0r�˞����M��&J;���\\P�8������Q��3����_D�*THiG��T���?�@EW7��gr�Xx�RQ�0T4]%|����A\rNk��>�Q�\r�XE]sv3�v��6�]�H��}�]�5y����څ��و���]��n���faC��4���D7?~��k�@��F���G-�D-��P+�����Ժ�:���jÊEwff�v�}�/Ծg?��a��� ����3}�럃�3|���K2EAOԱ�6z`�>�n3�Cu�����8��y��R\rPׄ��� �cS8�q������-Г7\\ѓ�n���5�s�\n�I�G}���ү�DO��z�t��t�\ZdW���RA�/�^p�F/�X����@4���/�[�ge蕠\Z�J�\Zz�;�^ݐ������V4�g\r�?��/�G�-�ш+\Z�F$�7n��7J/�Q�4j�4*���m�ޜMFo\r�Dc�K�X�^4���ma��h�M\\T��qމ&m�A����k�Д�B4�s���M�|д�h� 4��0�1[�f�^�Yn�ѻbW��\"�u��R��Z�hμ1���9��&}�q1�+�Cs��\'�h^�Z��-p�E\r��Hw��Z�g��m@����%��hi�6��nZ.߇V���e0Z�ڌ��b��M�h}A&Z�2mPjC�hӗV��*��6}��}q5m^��\\�B[z��V�0���Z�}힊��?��\'i��E�h���ن�]�}�~+�>��b���J���%h��=\n�VG�lv�=��hϫ}�G�ګu�����E��`��D��-�ϯ-Б5�蘬\r���Z�~I��~�tA�+���DB\r:ɜG\'���)�i�G����O�<�g��y��~������y�����й����[��X!�2@�ɳ��T9����RQ^��.����ܐC]8^H]�iL]�����O��GQ�л�K�]�j�Q�*�Q�?j��ZRWF_���v�TP���T\0��?\n��ET�G&�\\|�\n�8I���¹7��**%�����AE��5vT�-{*�͒J�������5T��wT�B7��K�v�P�#�T���}�KeG�S9�(�sn��fP�mnTn�w*?#�*��Nb*T<ݗ*V;@���J`�*�բ��E�U�T��)�A�o���+���q����h(�j��B5n]J]��O]sĀ�.�E5�{�j�N�j=Gݼp�j���e�:u�D��qբ5�j�S��m�r�Ճ�T��b��-��+��E�5ԝ��]�#Tۆ�T۶/T��e��A�=�4u��i��˩�RRS�>S��\\DuVҤ�m���U�S�-(T���T�!-ꑅ۩/S���P=W��z��z6K�^FjT��6�c���=��z\"��z�K�{h\r�G�\n���7�ϱ�T�[���ܷTߗ�T��T�u��~iO��q��SY4����=��g�LQB<���\"��:nR/�?@��lA\r6Q��q��Q/+Q�W�0�=Cԫr�ԫ�*��\n���*��q�k���Ѕ���otjX�&5�<5�l5B��z�&5*��\ZU��\Z�7�z�t�zs��\Z-S��K�1���X�5�\Z��BM0�GM�7�&:�P�=��gr�)�5�T�~j�=.5�~<5�4��~�����F�ڮB�W����-�� e��ES��L ��\\)5�?���j�q�2�q.���]:57x-5�=�Z0?E-�t���zP�\"T��S��˩�S+����+\\�6���6r�P�&CjS�O��.ꋒ���\"�ͱ\n��Jj˨9���eC�W�_�m�7Q��j���P�SL��5j��U�wY|껗���R߯l�v��R�6�S?�5�~��G��XD�;O�oXG4u��tR�\ZS�����ﻨ#_⩣�G����1���q��o��S\'�7��ݡԩiK�4ɟ:#w�:TRgܮSg�A��U�?*��?o�sE�s?���ߠ��P��/��;�:o�L��?H�;;B�P�ɇ���Th\nCki��4Řy���4%�o4�C}4�Oq4�o\\�J�\rMe�8M��-�z���\\��(fm�x\"m��6���I����ޣ@�8�J�8����H�,��-ὡ-�~N[�|��E�Lӊͣi���YӖ7f��L��V�ޢ��i�m\Z}��[A#M5��k�h��4D�HC�QRiԬl\Zݠ�Fwס1L,h��.\Zs�v\Z3i7��P����a�#hŷ4��$�����}I���i��4�\Z?�M��&�J� �\Zh�Ɠ4��4Q?MfA[U�@3Tҧnw��;O3J���B�5���ik�\\��7���v�����mD^�6��hM��6��L3��if�3i������i�il�y�m�KmK|6�b�f�0�f9.�m[�Cۖ���}I�fe�����ʣ�k��I�]\\D���ىSh���i��\'h��i�v54�\r�=W���{�u��2i�\n4�2O�˃�4�g�47V�-h1���}�@;�_O� �yީ�y�h�\nh���|.��V��S ��X1��<�<�vf���s��Ȝ$�N;ww-���g��A�hW�]���\\�J)�M�^IҤ����E��m���e��H��|M��SH����V�5-�2�v�����wƁ���������[ci ��JZ³tZb�;ڝ���W���aZ2�������Ԣ�<FK[�@�8oD��;H�ҒвV�в.?�e}���=���)ܣݏR�e�Kh�wh�Zi���q�h����Eh�r��hO���\'�iy\0��?��Vhy�VUC+|�G+Z�B+j��@��Ciš�i��JZ��\'��F�V�M+O���G���7��EZ��JZ��VZ5�/�&2�Vs��il�խ�Dk�W�5t�=54�=_��9ڋ�S����h/���ZV��Z���Wr���V�h��N�ڼ\0Z{�Z\'����9u��6֟����m���\"Z�76��d,�Ck-�w�NZ�\'�6���>q�i�$�h���i���U�h�_�цC�h��������M�:@ykHg;��w\rо�*Ӿ��Ӿ��}��}��D�J�M�WiS�$ڏ��)�6ss��+CD��I��U��)=C���I��^A�C�i�]�\nOnҕ�ҕ��te=[�\nTCWq����Bt��et�ɗ�Ŗ��g\n�K�\'�Zz|���G�e�t�]������}y� ���k��\n]om}@��X�G_yl}�G�m9t�\'�ޡ�{�t�M9EG��S��Ԁ::��\':}A��EgT=�3�/�Y�W�M%�ʢ��$ӹa\":��r:oY���)�7����YG����t�F�t�]v������nxr��b��s�n��\0}M���V���VRL_����N�}���$�\'�dގnz� }��>}}�}�ޕt����f�_��]m�[���-��ӷfs���ѷ�Lѷ�q��_;�wHl�;v:�m�vM�t�i�����O���.�%�,>�ɫ��A���Jw�ʠ;�H���ݠ��v�<��~�s\r�S���Lwǿ�ݻv�wE�OLЏ�o�=m@�\\��B�z�@?�J�{�Qt�S�b��w(ݯ6��M?���~J�J?�@��M\\��Փ���@���{����9�/_S����b�t}z��)=B�I�Ҭ�G�%�o�ң���j_�����|����z�)wzb�jzby4=q�-=�)���BO+룧}4�gll�g���3>$�3���,Gc���Tz��.=��g��?�-��|�?�9F�]�O�˷��xLϛI��?]H/�?���-z�Q �0�8��J�^|2�^� �K87��=�g�eƉ�.z������^U�J����^Cl�נ��\Z�Jz��<�v��VGD���Jo��Л7қ�?��<�Go�� �W���3]�ߩ��LS�m�lz��.��\'���B�`1���7z�ezO�Vzϕ��~���}��} \n��\r�~�jz�9}`�C������k�#5%�/�N�/�>ѿj�п�{O�����=��{��Tj�\'4=�1E���A�d�y���w�5����_��k��w����C��h�/���}L�w�1�2��^2��72��,f���d,|,�P;��X�%e�Æ��v����{�%���%�=Z#bƲmڌe��1�-��)���c��(��d�.�������r�:���:kf��D�9Pw�A��c�&�Jw2�hfPG3h�$��.w�AOAOSY��<��`/�18���]�8�!������3DnCt߉!�aH~�0��O�.����j�ƪ+�������O1V��?�?bn�a��1�/?c��-e����0��a��c�V9�W�a���ؔ2��TBdl�\nal���ؼ�����>��1Ɩ��ː��b��c�kgƎ:C��:İ*;w�`��a+�`؎0v�-b���p��0�:_g�-��ؿ5���\n�NkƁQo��0��<��8���8�c�8X��Bn�n�4��xƑ�9�#�7G��ax&S�o;Ƿg�q�q��o��z�ۣ��#\'���\\��a2�����Ʃ�x��eq�3�rgs\ng�e\0��A���W�_�A.Ռs���2�ծ0������]��fk�$��sKW3�1B;���9Fx�$#��Lj�Ǹ��.��7�M���F�v�� F��F��XF|�OF|F�� #��aF��;F��#���Hm�g�A��t�9F�����r�����q��Ƹ��f�-+d�-`ܻ��q�,����x� �a����[��i�`�e��,b䯛a����(�c�3\n3-E��r\'�5eA%)��f�Q��Q�;�(���(_��(?KfT��<F��=FŗfFep��9�Q^ƨ���Y�ɨ b0j�2j�\\`�.��h��f4b��\'�g���f�(F�\r�V�.�k�N�k�������=w7���(��ӌwZW]�F�u�ѭ��ѽǗ�2�W������[�h�c|�2>��e^Vdv�2��<��@,ch(�1���1ܓ�?�5Dc��1/�W�:����Mv��b��}�U�.dL�S��S��?�2~����K��㌙�L���o���]�_��:�?�d�luc�3�1�(d̹�1�ާ3���3�6��t0���1��1��2d#L��R��#�r�)Se@�T���T�b.��0�#1�e.���T�g��X����%0�>0�6�1�ɖ3�i3u�3u⽙:�N1��&0���L=VS�s�y\rsœ�̕��L��=��T�����Lx�� ��a\"U�L��:&�V�dʝ`2�i��.��a2�K=L� L�ɿL���L�c���)�f1k�3�嗙x�r&^q�)Ja�f�������sL�g檀@��8�7L����JLC�!��4�tg\Z�0�ն0�)IL��ML�%�LSL������.�2͎�07�37{d3�h�2�p_2����[��0-�3-o�2-�obZ�ran�2��d��`��IIf�ij�;;\\���;���FL��L�ok��71w;�2�?`�Jf:0��ǘo�3�.�c��]��\'\ne����43���e�x�tj�b:[,d:_He��_ld��tӼ�t_x���t��0).f\n�gz��y�/��a���H&3=^�`z��fzY�3��ڙ\'�G3}}���g3O��2O���<t�y:�y�}�y��a�ي^f��|f��tc�y~P��g�y�!�r�m�����+��!��̐_b��0f��0fI��*��,����qc32o7��af�b2�V���36^�������Ws����1�$92��(����)�<fj�bf�fj�3�2�L�>�L��g�{t03o�`fu0�q�3���1�K��O1y�1E,b���̿Eb��cD`��1��ʙ�3��1K4?2K^R�%�5̒i1�\\m�Y.ę�ݻ���c�5���5�������Z�%�z�8f���lH��l��f6�0����Mv̧����^��}ߙ���/\n��� �u�)�}�Vf͓���|kq����컧�����=�p�`<���2��G�C6o��V�̑�1��_�JsL������%v������M�P�~��9Y\01�֨1<ΜY5�� ��;�9{N�9���9;��97���G�9ߛ������ mg)<�c)Q���5XJy&,��2��\"K�FKu�a�����b-*�b-^�Z<��R�z�ҀY\Z�<K#�(K�` kI�k�v0K�(���e-��tڱt߶�V�o`�YD\'C0^�ubX��\']�aQM�Y�c1,��?,��,��,��m������b�U�X���X��,�2��ަ���8b\r/�>�o���qr,�HK�%4���:Yx�K�ː%Q{h-`ID�X�$Kz�K&eɜ4Y�z,�E���^�j�-k���,����5�fXk�d�[����މe��4�,��2?��eq.�ey,���h\rk[.�*��ڎ�em�y��{��l�X6O��t�nd;�*c�mg9[����Xο/�\\�8��@���ۋX^^+Y\'��|��Y~c�,�^���R����c�b^Qc��Y�㝬��&��G�wϲ.�{̺$�b]��e]�na]^��z�b]\rNa����Z��� Y�e���-u���7Y�����+�ƚu+�+zQ7+z?�}/�u{9��.��c5+�����i)+��J��X�=��܃��(�����\\���)��.�ʺ���zఛ�����( a=�*c=9�������U�*�f��c��e�Y��ݬ���BV1��x=�*��f���g�/���^1s�U)��Uu0��XU�ϱ�/v�j�i�jW��jc%��kKY�������tV��4��z��`=3Lg=7Sg�p�`��:�z�ώ�����\\��je�a��=�z���͟�;�=�{�_Vł���������[��5h=�\Z���\Z���\Z���\Z�d�F��Y�a�Yc��� klc�ww�����&*XSZJ���q�TK\'뇚kz��t�w��/�5��f�̔�~���� �@֯gѬY�7k�r,kvf�U(cͯe���棻19�L�� &o�S����?�M�1�yS��T)J���\0[h��-_�-:�[ԶS#�aj\n�f/�Ԛ���ʉ��LC��4�0́dl��l��lIB�u��JZ�-�8�NW?���.l��1��у�P��Vl��V�`+�展.bD��J1 �1Ҋ��v]����h�l��`��{kɰǨ!%�+F�n�ї8b̔Q�9�cm݂�-`������<�ƸA���y��q�fb��9L� �~�D�\Z1�H&�։I��`��V-l�V���pQlu*���Č�i`F:f���Wnj�s�����;��I���S�ִ�a&9�0�eN��!l�uf��4fn�\Z3O\Z����a[�aV���#6f�����v^a;��0�?��)ۥ�\r�mR��\n���0l�����;�p����ۻ s�\"��*yl�Nl��!�_U��\\�肹p�b.��A�s�\Zs�>c��~�\n�^�;\Z��Ղ�W�߅��ñ�#}�������a;�݅�Zk��ݢ��=�ag?Ƃ�a��T,x�2,��\'vI9�D��]:�]�7�Bޟ�����)�Ǘ��;[�{X��\n��n�a7˞b�Y���,��S,V�����w��%\\��B�b�E�3ݡ�bwRcIW+����X\n[K���4�/,�o��T�e:7c��K��E,K���p�ڣ�e�����ð{�S��`�3��3�p {�o�=���r�*cO���\'�QX~�+��aM�X!샕8c%\nX�Z����h������\r&Xͅz�Vb��ec�K`\r�5��B����kT�Úb$�Si��5{�܅5�a���X+�k��ڈ�ͥk;Z��5�z.֡܄����oðw�۱����&�Xג�X��fM`��c=�e�G��X��\Zֿ��wB��c�ا6wl�HA���ؘ�����v��.�}_9�}?��}�z�M�ObӐ6�w�ο��D^�f��b3��Ϭ��\"���\'�z4���5�w�M�o�%����3����+�a�m�g+g/���^��^p~���qc+�ͱ=����c���l�+w٪Z�ت�E�E�l59���Ɖ��������������-l��\n���=lm7y��w[����φ�k���;����:��+Re��%�W\\C�+�K�+^]ef��[6�a�&�m`�����-Oؔ�8q|�F��?���l����ʦy��iC����l�N2�پ��*�bc���|M6�ޏ��b�+�8������e�]������%��Ҥlv�-k�g����_��\rl�����\0�h�$�hp9�b{�i�mr\nc����Mß��Hd���d1��4�fo69��pa[n�Ŷ���VNl+#����m�K��~����ٟm�ƶ�^Ķ-wcۙ��U�=h�υ�Wn-{_h{�:{��1�����b��ZU���Z�����2����/�}H}�HU+�cl�}�y�}Lo�}\\�&��ؖ}b��Dv�Dw��2���r�/S��[T���c��.f����}f�$��K������/<�a\'�/�6��8}d_���W�w�C�?�!�d�0���Ȏ��Pg�fߚ5c�6�g߾�Î�g�1�q��7��#�q�W��o�fB�I/���\r��4+v��v��o���B�ݷv�{��ގ-�{���j���4�����K�uj؏(U�Gv$�c�)����\'��\'E�b�9vq�]��.���.y��.}Pͮ44`W��U���jT̮�ZȮA��V���g��/$����L�݊\\b�\n#�������m����n3�b�g��Zg�7��;���[�2�;�:��G���=+��=�!�1�ؽ��}��[����` ���[��;��ѫ���b�;�=Vq��m�-�[�*{�<��Tc����Q���b ��\\,{.p{�f{��5���7���0{�B�#g��#w�Ǒw�(0�pܞs�.�(��p���r�W�sT|!���x<�FsTs�8�8�p s�Ɲ8��ws4.l�h�m�hĿ�h\"!�%�-�Pβ����\0�Β ��!Ί����8+��9+ۣ8+�28����!�9$�Mh1�zp�d*���9��AF�9�6��)�C�>��;�q�{9L�y3�����a�Y���9�[\n��n/��ß���A�0WU��Kk8�f�8��#3S��6�sd>�9�^����c4q�o�9��Z�5�u�uԥ�}:���-g�zs�F7��`(��KgS�������c�\'g��m�\rVű����<ϱ�α����]�ʱ�\'r�6s�M>��g|�P���y�q9��qՔr�j�8��Vs<�Vq�n~���Up�\Zs�Ih��W_rN:�x�{p|:�8�Vt���V��Y�)I9��3�ӁP�Yw���N�vι0��s��Υ�&���՜��tN�(��q��>q�+\0��3Nd�%�\r�)�\r�����<�s���m�ù\r���*[qbo|�Ļ��$h�q�p�Wr>��$>Y�I�o�I�V�ȟᤄ�sRnDqҗ&q2G�9YY���z�{o�8�&J8��$���9���i��#��Q��J#Σ���\\�vNn�SΓW_9y�~q�^Np\n�+9EF9Ŕ\'���8%�c�R�N�hNy�SNũN��5��lƩI�ũ}��S���~�nN���q��i��q���q�&p�z�q�)l�<[�y��y����B��b����g��Б�*À��-��pެ�8op�\'�8�/8�S79o����I9��p�o������}:���9}�˜��n��e�8��5���&�@�7���Oew9���8�^1�!���a� �0k�3�?����+��}�8��\'8_��|���|��$r&�7r&�9�O�8?V�i�2���4��1�Tș�)��yz�����U���U�g�U�p��L�>l�.Қ媛��g��j*|�.��jor��8su\Z�q�������su�\\��\\��T�\n{�J{.a�n.��K.�u ���l.�/�w���g����q!yw.��%_yͥ���R�����..3S��R��Wjq��C\\^m����x?�\n\r�s��Vsq�\\�\Z�Jp%�Lq�������k0�]�q��:����z��zP�k��\\Ï�\\㼧ܵ�u\\�g��۷s��<�n�暑�p7��q7�\Zrͯr��r��T��v\n�V������\Z߸���r�?xr�����y��uȏ�:�p�:�s��z������rø�Oz���m܃��܃u����n�/pݷ��Jz��C���#�\\O�s\\ϊN��� �)�{l�^4��Ο\\�L���v�)6��|�L�9���S��ݦ܀�?��cz�����Gn���%M�x]�)6��u�Z(�{�ۄ*�\r=��\r-m㆝�\r{��{�q#u�}�܈!=n�o.7�ώyc�{��$7j�K�2�V��mu�{[y�{;�(7��unl�?n�IWn���po 7��\07qW7q>�{G����M���&e���M\'+qӛ�H7��\Z7k �͊���5Y��k�ɽ�/�ޭ�p�/�ν/<��N�}@��>\\q^��}�����2�����[���d�\0�Ɉ7��-���Nܢ�\"nQ�\"n1j�-qr�Ys��ܲ�~ܲݮ�\nCSn宽��\'���Sܪ����ܚ���Z�\Z�nv�ީ��pޚ���۔\'�>���}�ś�<�3�y+��B�;��=�%����H1�5)��f3�m??��0��v�J�vL[r��Թ]��p?�Awr{O�q{�+r{�E���>�.��9nt����;�lw`ʚ�Iu��k6w�I�/��{�p�k���/�sG�rG~���]�~Qcp��N�~����Wǝ���sdTrq��l�3�b��x?���&s~=�������2���z!�O��9�y��>���N���2��YO�o��2O1>����S�n�)[��-��-�2⩩+�/X�SP�S�~����[����mu�����[�W��e���U��V>i�������\nx��<�g-�|\Z�x��+����P��q�Uy��z��Ƿk� ����<����ȓ��d�v�V�\\�[���g���\"*xF�;x�6�y�G�xk ��u���!o}f\no�}�\r/Bx���[��6�K�Y��ͳt2�YV{�,?<�m}D�m��o�YE��3��l�+y;/*�v^~��e|���V���3���1Ϯ�$ϡ�>o���}�q�}Jx�N\Z<�k,��O]�A�N�yg�+o�����}�;�wT=�wtb\'�+���d��U}���s<��y���]�_v��\0�4��;�ёph/ b/(ЋT��;���w��}ޅ�L^p�5��eOx�\\y�_�]Cx�\r�xWثxW�syW��xW��4䅬Y��W�����¼2y�^����y��\\��8v��#�u\"�My�������zȋy�ċ}(����x�N����y��ޝ�$�N^�/�侇�ǽ��do^�\\/3x/3�/k� /�$�w��!ԇ������o����ż�jy��x��jy�M����i�|����yEwTyŢS��\\�W�1�+�}�+s�������Kn�*���*2�y�jt^��?^t�W��ƫ����>�Յ���I[x�&^�s8����k�������o�%z��\Z�x���lry]\r����y]�>��md^��ݼmއ�=�/��zLy}�`^ߚ#�������~���O���O�x�ν�\r������\r�xC��y��B�0b�v��\r���>���>���z���V2�~�ϛX�&���M�Xϛ�b�)�ߟ��|���2�x��N�95U��QK?�1o~b-o~ފ/�L��_\0�\n:�\n��Jzb�R��\nP�W1��D��Uz�|�����������|5�j�ں2����V=�W�2�k��\Z�>|�._s�&_�c7���,�\'_W���Z�:�W��,3>q�>1��d-��.|X݈O�����⣄A>J�ʧ.$�`\r��Ƨ]��3\"I|Ɠx>s�\n��~���~�g�~���s����+d>/Մ/H�����%��{��l����| =�/5k�K���^�|����UAy|�m#|���|��?|�_�|��U�56V�5������שL�t䛘��ק��7�?�=�⛕��fu\"�Y}-ӛF��ac��s/��;|���mr*�m���V��|�3��ٓ��GB�;#=��l��]��|[~��0�6<��;� ���|�I>��C�C���*���a\r�i[���*��s�|7���6�}W��Q��:*�c�ߣ ����<߫��lG\"���4��Ty��u���s|�Xu�O�U��V%��Ԏ�Ӛ�p��r/��S\r��M�@�K��������}���~c�u�?�E\Z?b<�I�Ǐ�?ɏZ��G�i�o�*�ou��G?��_����Ï�������0?�Y����D~�\'q��IF�i�N�ӗ��3����Zʿw�����f��?�����<����E��os��t��f�P;�_���_�V�/���/\r�?Z�/�䗾��WX��W�������&S~ŷB~�~��-��\Z�W���kV�ױZ��&~}�������[o��2�-��-3���CM�7�n�;�;�����:���~�w��?�)�?���W�l����N��E��}�h����-���G��Q�g�1�����G�f��R��f�����/5#�/���_W:������q��n�o��o���os+����\'��\'o��u�^N���k���\n�ύ�?\'���������S�ǟuB�s��s��������q��P�@a�^��_�X#(~�(Pa��X�T���9w�^�,:c)P���y�\ZCG��{�%�Z;���hϞ,��@�{.G���.�� V0�\nۿ�q�\0�V\0�|* ��* �� �cog�b�\0�b/@X�:uL@[�A@K�06 �\r�,�\0�]/�n��R��s\'j\\�[I�|#|�d��f���G xg.��ѓ\0��{F ɍH~/�\"��.�V��%0�|(06�k����K,�������p��:o��3�\r�`���r�\r�O6>:\'03�\"0��&�t5A`�G`�\n�>X)�֔!��X��%�~�?7�gt6�I�˦�]�[�w��VS�]��S��^S��n�`��}��:��,~W��; �5\n�/o�n\nJ��҇�7m7����=/BpX1Yp��Xp��Bp䬞����e��Eq/��/_��XQ��x����V����;�\'�纮�\'�I�K��o��l����h���s�G���4�������i�er��ra��Ϡ �\"Opm�I�> ���Tp]�\"���D��R}A�U�����B�-�`A�LAt{��v?]c�7Hs�L��\"H8E$l$f� ��e�$�$AR�� �?U��z[�2�H�Z�!H��d.\rdrh���@�}�L��L,ș��\r\n�<�-x21!Ȼz]���}f�<AѹA�%���E���&YP��t6LP� �Q;Ay����FAe9]P��CPՒ �q�ԦX�GB\r�PAö/��\'!�&�:����\n�9.x�N�*IК:\"x��*x��M�Gоp����S��� �~\'��.xg<+xwQ[��ΐ�]���M��/���A7\'R�mp[�ᨇ�\'�@�s�N����〇�7EY�w�Ð����Ӊ\\���>��m?����s��}g#yy�ѕ)�q�@��^A0�?&��7\'���)���L~�Sn�ߏ~L ��?w�tI�.����fM� f���i 措\n�*����%���\'��X(�vG(�n �{pP(��^(�/T��i\n��.��!\\�-T��.��\\��}_���P�}�Ps��Q(Բ����Z¥����~�Ƅ�i�P;�M��$�=tB��L��x��@�\Z?\n��uB I7 Ɇ�BxK��b$��5�!��\'�U� {\\����Bla���(��B����Nr+�\nEN�BiE(sx$�M\Z��w \r盄FDU��Xhd�^h�g\'\\+� �M2��z+\\8 \\7.��*��N��p�n�����<�Rh��/��VZ�ZN<n�Y(��E�m�Nh��Rh}\'B�]�p�Q��F��fU�p�E����p��]��n��>e�о���E�^x��@���5�˖F�KK�Нh&t���\"<l�Hx8�Yx��oᑵ�B�@���O��sE��õ�cVy�c{��\'>� OZmzG}�k�?M �hf �ԯ�\n�AgJ�A%#�s�[���K��G��K���E /��^1�\"��;-�� �2�[x��Bx�Tzh�0,S$�+�?#��� o,[\'�A} ���S�;H3]\'���c� 5�m �;��Ii�d߽&P�VvS��6O�.�\"L��\'L�f`�������^��� �o& l[.|\">�>��$|ذ]���_��a�0O�(�;� �7\\�_�#̟����G����{ ��Ƅ��Qae�5a�ڮ^�+��Յ��56υ\r���˄�#a§�����.��������=�W�!�״{�7A���f��P]a���wk��� �4��]m�®�Jaw���g�Aa�n}a��Ua_�.�P�r�v��q�����o�ϋ\n?o�~;�X�-�@8e\n���(\Zj��\\)�u�p\'�;> �K��*\n�����Ο��W��r�{p\ZW0��+�=�+�~���V�U�6�?���|����o��K#\\�EW\'��\Z�]�Ɓ|i(�tr\Z�a[�:��r��K��u��zK�p���\n�8�R�_�����]��8�\ru\\�a~#���ѥ\"�\ZMé�~�.8�]�G���ΐ&���q�eC�ߊc�\\p�J�;ց�δ㼚�8�n�����qA{<.�g��Q�q����銋�]���Gq)U���e�\\&����ⲟ������q#�C��7:d���kL��kܦ�5S�ڶ7��q7�z�-���S|=�o� �7���7�;���f�-p��D�,l�)�7ۧ��:ŸEYn1��-͛qK��)�V��Z)ŭv qk*�o?��m��M�� ߕ��jw�w���mc�p�\"\'|���������r/��|��w���F�{5��z��}Խ���\'�c�|��_���3����V�;]��.�\r��pWB�h!���ڰ?��?���!ډ{���{�}�{V��N�^�p��K\r��u<@ƽ ��-G�������u9~��W�,�?�#����\0x?6��\\��\ZŃ����^����sv~�H?�=�_0\'�j��p:~1�/5�/�����O����ݻxȝx�t���Ყ��\"�Xq��x��G�~�߈9�Gi���o�D�Ѻ�x|�?<�tO*>�\'˫�)�?<���ُ�����\\�Y����.���-~O�~|�?T��s���z �h�?ك�;��y��3G�-xQV^�2/�m�c?�O�?��0/�>��N���x�)\n^�D��6�k��x�����7��ǟ�;�?ϐǟ\0x��5��7�ڊ�������q�k�i��Xo�Z��Wn��Gn�� x��|��_�6�;t��»L��z��U�[����x��l��FV������>�؏]��;��U�e����)|��G���_VR�\r�ד;��>ᓬ�T���\'��x��ŭ��\Z>�� >��m�\0��=������sk����E�N��{@����b(R���6��\"KEOu�^f�����m-6\ni��-y�Z�dJ ��Y����iݽ\'Z�4.Z\Z�A��T�l��hYn�hY�L�C� � �-�[)�u�����i�Vp�E+|�d���Y#\"<; \":ω@��ܡ!�&1���TQ�9�(B��D�T���K1*����D��\"Ε1g _�UPqc\"�\"oq��Ǭ�2��xzD|=��=��H��U$ , �CD���\"���H4� �uu����E�M\"�q-��\"�=�\"��5;��ք��֡�\"ɜ��x�Ȥ�h���h�1�h}�/����\r\\\rцu��\rGE�n�6vN�6�^(2#։�v|m2 m�� ڲ�G�%�_d�j(�X�\"��%�\n����X-ڶ�]d��Ud��O���.ڵ�Jd��Ud\'�\"�R\"ڳ�(r8�-rHI��\\+�G[\'ڷ��h_�1Ѿ�����)�%\"�g�D���<��D�kDE��س\r�[٢e����j�I;W�ɸw��\rA\"o9+�w�s��Se�i���h��e�3�1Q��i�9��(X�(��(�S(\n\r���ѥS����k�.�P�^QX�}Q��<Q����:k��J���D��#�x����Ǣ���E�n�ݦ�D1�jQ̦nQL�5Q��Q\\P�(Q��莩�(�!J�:��+����Q*��(5�K���$J��D�{�E�7D�iE�U4Q�����kѽ�gE�|�E��E���,D���4n=�+�(��\\��&���>%ѣ�E� QњLQQ�Q�gQ��sQ��QqX��d�Q�����뱨��**�o�wN�*G.����U��jd?D�jlQ?NԔ�=�0=�/=��=ϖ����Z<E������bD���36�:�袎�F�;ޔ�]_���7���,_�ݲC��[�G�\r�� \Z�\r}�w}��U4b*\ZՊ����:��B�DckD_��E_��������ݐ��̻E?��E�Zd�L��O���wb��O�Ѭ��h��h��\Z������a�X�7Y,3\'^p�C�H�$V�;(V�ŋ��ċڈ�,ŋ�4ċ+8b��/�\ZLw�Fb�X��.���J�R�2�ҁa�%Abm$ֱX!��^��J$ֳ�+^��%&��������b����\r1,�õbx�MLq�S����41�r����!fP11C�.f�g���#��41��[���.�2|�l�!1{xD��pN�[L� ��wE����Z��g����1n�*���N�K2�Œ�?b)rF,��$�\'�����c�7]���ū]TĆ[֊\r��\r�͕���\'�k�*�뮠b�{�b���b��x�I��x��V������.��\Z�b�v9�٧���(�y�������ko�%;Ll)m[�2[�[7���;Ήw�P�;���|�V�k��V�Nl�G��JSl��(�s�V�@t;X�\\������\\X��;�N����z�b?u�\\��UG vC]�n��ć��Ň�k�G���=�{=�_qH|\"VO|��d~��{w�ػ�0(b�{�ž�i�S�B�f?��ħ����x&���&���_�R�\ni�`~����F�ՐVq�Z��8��Ef�/�?7�[��pq�Hy+T|C�8���ͬk��[W��Yű���q�;��֟��A��=�hq|�%qZ,N��/NH�/N�k�=Jĉ��;\n=�;���I��Iw���\Z2��չ��h�8� \\�N��_*gTE�3�|gY̊��3�wW|�5�,�_Bg�͈�����Q=��a�c?X���)�}�G�����8/�y�+�N�Ņ�\nqa���p@Q\\4�V\\<A\\�∸L㹸��uqy���\"5X\\ٲC\\��P\\�Q\\{k��Ay���q�3�]�g�s�g�p���\Z�K%%�K �\n�/���������[8�������ׯ��mo��m}>�7{T�����dq���\\�F�Ni��ko��k8_�a����^��ÉqOa��c̨�cv����H<p�[<t��x��E<��&�l�D<�RK<6�\'�M���ēf��\n-����?��3\Z�♞r���1��\"��g���W^��ϩ��?�\nij���s5����]h�S��w:K��K�OH��Jq�D麶D鑪D�����F��\n�Du�g��\rC5_�J��l%���$�g[$�;$�owJ4B3%����%�K%ZNY��cm���^7������]�k��8F��K_B�.!:�K�s]h�= ��E��H`-Dӻ%��5����q }w��a�Cº�X�q�J8k$�͗$�=�ޜP\"��+��xI��I�UZ%h�����pw����w�1q�ĸ�)Y#됬iO��4ޒ�n���\r���]&YO�&Y߃I6�\'J6]L�l��K��k%��f%��XH�t�I�\rkGL���u����7+$6��o$�����%�՞�؞�؞.���J�5Kv+zH�O=��ל��1�\'q�o�8�\\��s��>!q�D�8[�J\\N$�J6OJ����NI���%���%�7hK��H<��$�|�Q���/KrB�PrҨKr��[�_�� � ��2�$���g��6^rJ�����)�i����O�$g� əۇ%g>�%g+$��$� ��s��s��I��I��씜+�IΫ=���\\( ��/ .], �%H.�H���J���IB�3$a\Zɒ��DI��I��亥�$�$�q�$�\Z-��\rJ��$7e���.ђ���%1Z$I�:KI��2Iܡ���`I<�)�s�V��U����KҠ I���$]�$+3Q��$Hr�*M�P��ᬚ$���j��F��qE�k�\\�}S�� ���H\n��$���«ђ�xSIaҬ���h�RR�{,)I�%��ޒ��1I��CIEx��2礤����J�ARm�%����.��4�\"J\Z\\+$\r㪒F$H�8yR�t���)���i�P���(�|9#i^\'iQ�%i)�*i}K�v3B�f�I{��������佋��}�C�)CI��|ɇE)�m���D�#�*���/��{#齬/��ז�.JD_%�H>��K>u&J�V�J�7\\�[NH>J���yJ�$c��������%���I�_0�LhޔL��$���d�n��H��?%�O]��PL�믒�AP���\\����@�ߒ.�ߩ/����R9�T*��H�tR�p��ta�D�HiN�Q�.:�]���C�f� ]�}�T�}D�ie#]��A���H�H��Z��I�nI�^�K��\\�j�uI�v�K��s�ڟiR�|�T�e�T��$]~�TW��t�,%8}�F��������R�~D\n��H��\Z)8�)%tKI{��$ǍRȓ%%W�Ka8\\\n_�&�+˥��)�K*�J����[3RZl����U��Öb�R,kD�\r�KyOܤ��{��y��W�/��J�����d��T*#��Ke�ER���}�t������R㿇�k�nK�]o��+Ӗ���nH¥j�I7�n�n���?��������M�Rsz��\\`\"�b�[�ŗ\'��)���\"��C��m���S]j�*ݾ�n�Օn��G�CYU��$�q5@j�\"�u���e&J�jR�w�Y���V��M�m�:Y8J�\\ǤR�>�Kp���\\zp�Q��A�mX��&u���ڤ�t�`K�_W���R�F9�1�Wғ�5��iM��?\\�gH���K������m���i陧ۤg���J���_ܥ�w��J�Ul����/\r��,����r���Hz�\Z�^�I�^uϔ^��,\r寒��Pix�H\Z��-���/��Ko|��@\Z5,���C\Z�jP\Z��#���K�zH��^H���ISU.KSeKӔy�4�4�%C�,͌�%͚����s�fۆI\Z}�>��F��J&��-��ɐ\rI�����`H��r�Ŷ��2tRZ��[Z��K+�b��\0i�i%<!��}\"�Z�I���Vo�V��H��KkNK��z���祵��IkgWJ�Һ�5Ҧ$�]�җ�Qi������:ik����r��mFQڮ[ mw�����I;�VH߾�!}7�.}��+�Z*�&�~�F�4Iڳ6]��T*��Q��EVI������l��鐲�t��[:t�t(U[:�N�~~{W:B���:8Iǔ�IǯJ�|�_�`�׀5� gX:q�V:��Nf�Kg�H�ґ�J)���z&�-�KW�����O:��F:�/�S���mQ���L���)��)\\��)9Ȕr�ɔ �eʏ�e*�.���}2Տ�e���E��e�$�L�T_��P#[��l٥!���*�N��L�O�l9�D�{f�LO;^�B�l$/[�c�l�a���ʀ�<xtPF�(���AוdP�^yℌ��-��l��ݝ2ꦅ2:妌~�HFv�1�e̓�2�Q��e�&cyre�g?d�G\'���U(�5��wKe��wd���\0��2���L|�#�5�d\Z�2�y٪��j�#3�ӻ$[�]$3)T�����6~{,3{_)3��WY�,bd�K�e�Ρ�mG.ɶ��.���(��Ge�Kd��ze�m�2���e{0_ٞ�0ٞ��2�2���ӷ�2W|���y������X,;�\';tz��F��C�/�ȧ�<��ʎzʎz��<IKd���2/E�츪Tv���DO�/�m^&��-���������|�8��PH�Jd5�T�>���|��I�\"*�V�HV\"# EYY ��H�J��\"��������羯��2��\"!�����!^:�Y*�S��t��EwC��e!~���U�\0�Ð��ڐ��<H�l$��r�;$*| ��~rG6r��H���]�/���z������C<H�͐(]MH��DH4-\nr����:��q\0r�\no�I�w�d�\nI:4I��$�[ARԑ��܃�G2��GƋ�GdG��Q*$-����^�>�yjt��/�<�<�-$z�-��o3��o,C\n��LH�� �P9R�6R$B�l�!E�� �i� /��A^=�)����\0)�{)[���H�62���y���R�\n��Q\n�Z��T�x�6Հ�M)C\Z.hC\Z<`��i H��H����k������l�zw �Zp��qX\n�Q��� ��O�m{��\\����=\r������2��\r2dL���]��!�F��a�d��.=Ȉ�dT^2v�2�_\0�&��])���T2����LdžA�ST!Ӄ<Ȍ[,d&�䇴d��\r��TY�yC�m�,�{\r�um+�w�d��\n�<u�j[Y\r�BV�.B�8�C6�Ő�Cs��g!��@�>~\r�wo���ȿ�`�D<*0��%��d\rT�X*�ׂ�<S�n���Zs*��ݾk��T�$�{�g U#�@���\Zw�\Z���ҡ��h���P��P���P��!P\\ T��\nTw�T7\n��/��=o����w�@�2� 5���fN@Ͷ�@�<��:=2�(R�Z�k���\nje� =�� =��$�8�\r=y\0\nI�B��Н(�\n{���bBg2q���T�b�B�3P��>(�F;\rJ�����@A�(�DJ2;��j�R�uP�(�U �3���2�����P;�>qʾ��!�r�Pn��@\'*|\0���>~��G���#良�Pk��Г�/��Ԙ��vnP[��Pۋ���2�PG|���C蹓f�sE=��+Pg�6Թ\ruQu�����t�@]��Kz*�K����JB//LB/��A݄���f\\��0,�j� �ƀ2�S.�ַMP�X%�2z��<��U4�54pY\Z4m\r6�\rƞ���>\r��BC#!�����;��л�f�w_�F���>���l\Z4Z�\Z}�94f@\0�\r���?j�;�O��&����.h��sh�Bh��!h�Ї�hJ�%�#��\0�*}����&4mv��@�������!��x���L*�IB 4���������\0ͥ`�y���<\'h^|4�\r�7�\0�;�o���B�R��whq�\"�8h+��q9�$DZ��\0-~}� }������A��F�e����h��9��4h�!����7rw��������76к���sg�\r�,�\r�K�&�oЦh�&ڲ&���C�̡�n\'���z��eh������=��3G�]ڇ�]W��]�Ю!hw�Oh��Oh\r훔�~�x�yQ\r��E�~��: �:�z\r:$����@��\\�ãI�QMK�X�:��L��օN<����N��B�Ctl�����y������\n�U�Y��t��t}�����/h�߰L����I7L�7L�UL�&=\0�je�6�V�� �0�\Z$L��/L�}&�� ���l�EKؖ�k09��0y��0�L����2LQ�\r��YLI#�|Z��Ry�*u�J;S�S�����vj�v�Ca�\Z�aڒ�0�+7a�)�a:F]0���|�w�L��l;� ;�3Pk��T�`F�U����{�̳�`�u�a�B�a�Fp��K��}0�ni�1]�qӋ��`�߁A�2`��;08�\Z�̀!?_��Ս`�t�H{��?���90R�4����k�菮��Ga��0�\rcz�1}Ca�=0j��c�oax����W��N0��\rL�V���]x���+L|�L|? vn;1��v������N���\rra��!ؙn<��>�S�:�b���zؕ�0w�װ�*?aWuR`�^��]7��� v�\n��\r��:�1{���9�|�L�����&��;\Za��)�`A8,8�#,���U��Zf�BQ���?XhM#,�s��6kXD�8,�-\Z���R��i��ݓ��+_��Y܅ŝ~�__�=�0` �TXB�,1\r�%���t\r`��ðG7��R�Ka��<Xjc��@,M����K�܄��a�#c��j�\'�?aOTzaO�27�e��=�+²sXv�-,/ ��V��+��\0���$5X�X�1/X��KX d\rV�5\0+���~끕�݃��v������L|`e�-�2�YXyr�b;VQ,{]~V)J���\"ao�zaU\"GXU�3X�V�,V��\r�;��KW��i��M�`\ru�ƙ���[�`�q���<�{ \r؇�c���.XG���n\0���-X��/�~���p#X6x� 6t�6�7+ȁM̙�&�ra�z���)�N�TO<l�� l��:l&z��\Z쇽/�G�l ��l7��5�a����`������~���~#�U��V̼a+�Va�w�����Z��+�a��9���;a�&n�%�7�����n���F�c�˚p9�E�<R\0�o�o�\0W�n�+���3Zp�ye��\\)�+|�F=|��\Z|\'�|\'�<\\9w��B��f\\���z��w������N��w?�5ͳᚐ�p-�4\\�V��|O�2\\۰�����# ח��� ��^�響�識��h�\r�~�����\Z���T�^�\r�Ϳ��u�.��,��[*�]��@��?��8pJ\r�x��x_\rG=�G[n�Ѭp��[8>�N�h���2Cp��~8��%8��:�w\0�������p��}��I8�,n�]��4h��\n����������~����N���=\0?́�MK�;���M��Nt���~qk\n�UI~9�/���G���u�+���+o�W����~{���$�հJ�����N=��\r�M�0�f��f�9�����[}�^�+s��Ӈ������A�3�`�+��x(�!<�.��ք���z���NL�#{�#�Y�c����3�� ?x��~x�<��ix�D��&��n]x��yx��ox��~x��q�ӣ����b7���xnV$<��mx^�&xއZx~����x����px�-^R��yZ^:U/�WU�W?<����yl��Ɛ�Esx=�/�mr �m��Q�o���8�9��\'��~�NP7�oM��?|Z����;z���Y���m�η-��x��sx�&�7�\r�;��������r5>p�>p�\r��.~�\Z���%�G)u�Ѻ���{���3|�e >V;)��[���?>\n�|>�F�OA���W,���^��JK����\02|Q�_���[_|���H�/��/eB�+N��g��\'����g�M�\0�R�4>��xHg�Y�e`˛��ܕj@�m7 7��w= (���P���6�=�\'�=�ؾ�P����g ����j��\r�~@e�\0�~������0�z�I`W�/`7xؽahտ�.{>{��{E�ޭ\Z@_a�k=�4\0<;X*\nn\0F�ˀ��$`��`����w��̀�;\Z0K����UG��\ZA������e��6X�]\0�\"�1�R�X�p|�p��!\0��@���YU\0�R��>�?�\0�?@~�(�,\0��`������\0x�%\0�����\0O�`z7@��H�V\0�� @>�\0�7���\r��v ��]�<:�h0�_&�]�;��\0!����R\0�%��\"8Y{8-�����98\0�����r\0���3����p��8_+ 89�g��\\H.�W\0�(���a�ʯ����6��?n��7���[\'Wi1��x�ޱ��w\\%�p�=�)�\0���_�[��a(Y\0��@�4����;��\0wt��8�\nDV16@L�p�};|�]���q��xO ~QH��.�I� �~Hf�\0��H��k��\nE��\"H��r׀�z7 M�\0H�\0Ș\r\0�\"�����Y�T�٣\r���3��C [F\ZȽ\"r�zo%���ׁ R���(��wt/u�����W[���q@��P��\nT��o&T�*�N��<Pu�T�[���긣@\r\n�� ���C@�j)а���f�T�9�7М��Em�G��ځ��X��h�\'��`t)9\0]k�@w��#���4z>\0��H�s�\'�_a|�8|�j���� ��K�>C�ٛ��=�V�����5`*�005�۸���)0}�;0��\00=m �.?7�?5��#���c`�H\r����j��<,�f�����t`e���kҷ�5�`��!�^�\06HP`��\0�%��4�ċ������B��\'��aB��\nBv���NB��b��4b[s(BQ_�x#���4B�$�Sr/B��P��C�����҈]��\r��n���c��=�ڦ;:/:5|�n�B/2��b��7�6boN:b����_ā���\r����<���Q�I�I�ɣ ��QY��.\ra6pq_�0O�@���G��@X�(GX<��8j��8J�B�<��<�<+FX9�!�<U�=.!��\" �!�Aw������ ��7$��@=݄@\r�#����-��*�#��p��[1 A��A�݈ _-EP��=�d/���(��솠� �7,}\'�`OU!8� N� B��B0�!< D]c�\r�5�2��M;�)B�TD�T_��\'�� a狰͔Gة3vu�]�\"�ޢa�:�pP G8�G��?�8C�F���A8�<@\\�#\\�?.���� �+�:n����Q�զHĵ�/�kk��S/�\"���\"n��7�!n��@�,�����.��\Z�eQ���:��f �^#���\"|��S���\Z�������#��5�}C���5D��_D�V���\rqgp>���x�\0y$9g�������\'#�]�E�JC��=���Q��mB$�\"N�G$�F$��#��I�. R�_!R���<��?i��#���\"�c��fē`_�S�ۈ��4ijE&\"�H\"{*�C�����E�4/!r�v!�̯!��ш\n\';o\"�8{%������#J\r#�&e�D��^D��oD%��F�\0Q�2��`�����16�Ad�hqD4<.C4� �$kM�pD�\'KD���; �_�C�X�\\F���@��!�F�m�$���h7B���шN<��A�s!�\r�#�o�\"�__l�_AD��U5 �U B������C��� Fۉ����.���툩]͈�>Y��\01�y1h���!殧!~��ra����Řį�<�R�>bپ\0�\\�X��A���\"��=@�/ 6,����m!��)A����Wn��7v)qm)53���@G�\ZHY�6rKBrk)\'�Bʹ�!� .��8�H�r����/��B��\"w^x��Y�T��D*_�\"ջF���AjlnBj8!5F\"5/H#5_!��!�� uMj�z�k�{���G���KېH�`^i�Gi�\0i��4\"\r Mբ�f_7�GR.!-�u�G�|��fH�gG���1��7\"��H��9$43:v �Ӎ�s��\0�#���D�C�_w!qR&H��i$.+ ƞA���d�m$y&Iy;���}B�V�\"�zp$C�ɜ1D�%#��d$���� v#9��HN�7$3�͑��q���)<�)�;�K6 Ŕ���y�i�T�it$�v����0��Sy�v ��c��6�35�g�aHǫL�9�\Z�E�y1z�R���a�Fy��yY�y��g䕯ϐnk�ȫ9��K��;�7��\"o�Aތ1C�J�#oM�Ez�� =����\0�3�����Y��ߟ ֯\"wB��u\"Cj^ Cc ��!#��@F8b�>���*LdT�dTk2\Z�M�C��Aޛ|��e%!c/\"�d���6!h�G&X�!⺑ �}��ڏL�iD���\"S��#S*/ 5^E�I-#ӐBdZ�12�b��|��Cf�ބ�,���z��̪f#�ۜ@�~�|q�|Q�\ZY���,<��,��F��mC�<�,�iC��YE�R� ���2�Y��B�=،���AV��#+R*�����O�o�5 �L���C�j�1d́��S���_�w�!T�l�7�l�2F��ތly��zW�A�4�\"����5�C�(��L=����+�e�Ǡ�ȏ_���w\\��Ȏd:���Y���y����@vyU!��א�w�#{�ӑ��� {�j��#�����|r��9p59S��[�*2@��C�����V�A~7G~�lC�܅#g�7!�E\"��Ց�I��s�C:r�2��#��}u���S�\\cB��+���{Q%wP�v<Em2�CI:*�$�K��~Fm�YGm���N\"�d�CP�R(���(�$j������������m=�x��R�HG)�Y�v�5�vr`(�@1Jy�R!!P*��(���P�Ue(�͏Q\Z.u(M�h���~�V�<Jke�s��[ێ�S5F����cPzQ�F�P�6I(��+(�E�>�\\ԁ\r��T�\'\neh�2�k�2��2=�2�g�2�F�>�@�_�GRSFj�D���:���pR/�C1��/e鱈������.EY�����Q�[P�D���QL#�5�J���$\"���P>�(Tm7\n5��B/H�0�P���(\\�\n�����D]Σ�q�P��R(Ra�\"2C�RTP�R#t�2�@q2tP��(��h�pT%�9��uC��*EY��@��8���ġlhn(��\Z���-(;�Y�=�ʡ�:3n�:+��:{�r�ي��ЊrZ�D9��.�\r�\\�\"Q.�}(��%��r�A���F]�`���{��b� uu3���,uss\"�G(�fL*�3u�}��[���y�צ��-U�Wz�k������ك�5^G�>C��tG�?,D�;��Q��Z��FT��*�u����&C�hE�SŢ�eG��NA�_wF�:��4D%HY�\Z������u�P�w��R�֣RPS��v(�Q�\'ԣ�T�)T��鞿���ͨ�? *K��zf��z6��<S��N��}:*[�&*;�\0�#��ʍ�D����%�<����� *�Z�\";U�3U�]�*Q+G�t�A�jY�J�2Q�6�Pe�_Q�\\T�� �|��8����CU�Z��C����&���˨ڑ�:W!��^�����g�ag��u�4�zǸ�j�B�p�P����Q����OjE�.�\\TwQ,���ST�foTߑۨ>�c�� T��j@4�\Z���gQ�\ZΨa��ᦧ��í��c�Q#�F)gP��TPcSq��Էj\n�_�� 5u��e�B��>���WD-�M������Q�{���Ԋ!���ZcP+)K��� ��y;�?�Kh��>��M�ehɜ|��]h)��Th(Z�cz�j4Zֺ��F8z+�,z��h����uZ��V�ЉVX@o[>�V�JB+����]�ۋ\0��o��N�rt;Z�#\Z�R��V龅V=~����&w��~��5��uS�q��1=�ִ%�5����F��u���u�h=�E������O�Ц\rh����CW��C��aqڒg�>�&��<�FC^=CC��a\Z��0�\Z~�\rĝC)Ј�P42���2�Fͪ�1��И��hl�#\Z���&Jͣ�\'����4I5M*�B����T���KE�j.��n�hz�4��Ds��@��u��i��{%Z��-��-ο�>1GA[k@[�j�O�Z�m6h������ ��]��oh;Z�N���a�vhy�>�d�v,uC�\'E_\Z�/�B_�=�v��v�?�v�B;��/�D����]�F_���v~\n��\r�n�v_;���倾a7�����&�=���^Z�^����;\'��w�o[#Ѿ�L�oV-��2: �H�G<َ|U��`��DS��P�4tX�}���N^ A�w=FGy���������0t�a:�*:.�������~�����B\'�9�N��G\'->D?YC?��~�B@���@����=�+{�O>)��z�3�*�����g)��g/9��/���ߣ�g����9*ѹ>t^��E��ş���t!�]h�A���D�B�ѥ���24]��F�o���fЯ�ѕ�k�J�qte�i�r�Tt��1�*�\n]U�EW���{H�\ZQ8��V;�v*��B�n�F7?F7�E7Y�D7�z��!\\���~?�n�}�\Z%F�>z����ݦ��Vd�no2Bw\ZDw���? �П�^Aw�v��\0�G���k�E����,<F����K���a+>zxh=�==�U���A��]F���[\Z���=a\Z���������\'��S��ѳ*�蹪N�ϠI�ϻ��?z�0�^�?�^>��^�C/{�@���F�����A�{�迈��(_��i1f�LfS�w���i�T�̆\0��f�C��>#W�#C���f[�f�A��L;Fi�fg�<F�vF��+F��ZݎQW����b\ZFS�\0�6�т�`���`t:�1�W������}G�0�\'1��1�́,ḰzU�vc�5cx��1�[�1�rƘ�bL19����0�N�`��9�݃�0ga,\Zl0Gyn0���`�U�b���@$�0��U(n�O� ��0�J���� �2T�\"�� �3���\"�apcV��\Z��7Lb6G1`\'CZ��P�\Z)CG`�f����2��E�Y4��eb���1�-� J#<2�}��X��ÜTm���?r�`l�a;�.�C�̙�A̙��9�>���Y�����f.��WWUk���2�-n���(�X=�\ZIs�^���l��٘��� ���Y��0y��p\\�x��b|<�1���0���_�@�o��wL�s��yc\"O`>dc��a��1A�Z��2L(�J���;��pP�DNc�\r�0�TLܿ L|Z>&�*��r�hx�x6\0�8?�Is�<�y�R��Iy\'�I}i�I��a24I��W���IOL��a�S5��L��/&�!���&gq\r�����W0y��1yBL�nŐ�̋�0�buL��`LQ�OL��)���Sr�y�q��\'S�Պ)��{yc^wGc�|lƼ�ż�J�Ԋ�c�:%c\Z�ј��lL�R2�I����)���}�/��R�i��i]�bZ�a>�6a���1=%�1}7\'1}�g0_�*0���0���1�%o0_ݛ1����%���-̐ 3��\r3��\'f���(���0Ōw`��b&�a&fr1S\\fʉ��؆�����Ml�����,��c~��`~e�a�J7c���0���1�����KW̚�K�if=\r�^��]�l�����t�s+�y\0+Ř�J9�J];���b�T��K��m����*z�۾��*ʝ�*�<�������\n���&v�+�U �Ī��ê �X���:�����Uv�Z4V��?���V��v�!��L>v���;֏���Ww�_b�Z�5���\Z�A��jVX�kX���X��籦U�f X�%-���]�?X�Wu�C�6�Cg���5���ܰG�naa+�Xx`^�,faf�X�9,�2��Emv�b.\Zb���Xl� �pyK�pK\Z�~��~,�f�&3���Wci�X�6/,�J�1��r��rM���S=X0��E`��|�P�+|c�EaEe�\'��Xk���� �dd֦�:���3�)�F��P����<���\rĞ�S�={y�蜍ut����ab��O�`�Ō���X��%��c���)�u�0�\n�9\"��q����`�&r�^k>X�L���Z��]>�g�{;��;�{B\Z���\rt�`���`��`��\\�!2�!��ؐ�IlĶ�HM,6J|\Z�� �(����6~�Gl�K�+\'���\n6��;lҏ}�d l��6��56y<�0���}tS�zĦ�}�>��f�[��o�`3We�906\'L �r�?��bk0��;��dl�B\n���>��|[�>[�؊-�0Ė�kþ��a_eIb�X�\n��؊���\n[1\\��������V6��V��`�{7ck�-�5�]�����l}m+�~\n���¾\r��6\\��mh��6�MUV����wğ�w��-R*���ؖ%�^���/lK�:��g#l�lk�Klk�3�M�mgVc;����W��lO@��������;��;x1\r;Xe��<�=���a��{b�7R��/%�cͯ�S�۱S�wag6!�?bag��a缾b>�.��bS���懰K�ؕ�a����\0���*nK\Z���\'��\0\'�/\'���y`\'����q5��F��2�m����n;�m^�ms�m��)��qۧp;�q;�Gqʇ��T���T{`8��pj�qj?�8��s8�=18��ݸ]�q����up{�>�t0n8��;pzS�8}�<��>N��$no���(n�(g��\ngb~g����xę�1p�aX�u;��Ew��4w�+w�ކ;�w����A\Z/�`5�8��=��>��Llq��Z�Q��rq��G8���`A���p��ӊ#ٌ��ك8���Rꅣ���hkn8�},����2�ı���~ǮpƱ����p��A8��8!�4N8҈�)�įcq��L��\"�\ri\Zg��;�w�&�y��$���F�m�V��!m�}�c�})�\"�Q~?Α��觊;�G�9��9�qNo[qΰ����8��p���W�[�����[-�ቻ�[����������cpu�8�=��e�p~��8N.@�\Zpb�\"�t��$�a��M)����`�\\�0:8�/G�\"\nCp�s��M���M�{� �{,%\\܍~\\��;�dz5.�n ��ي{���K�Ԋ{��=�Q�=�=v�åA��\'��q����on�g�q�����ߍ�r��r�,p���q���qy�P\\���9���[qZ���ꋸ�I+�K�/��{]q�j�W7^�^%|��+��*�eq�ٸZy��9�k��]��4\\X<���k�{�=ZõO#pb\\�7���N\\o��p\r\\��=\\/��\rډ���#9�>���=��[���-nPY7�م>S�yi��ىyw7���^/n\\+7�>�1�}���}��p.2��f)�d�ܔ�s��v5�T17Ca�f�(�f�!��_p?�U�~h�q��F���q��ɸ�e&�g(�[\0����E�c�҇Vܲ�0n9\Z�[~��B��VA��/ܟgŸ��0�z8���m8��6���6f�q����_q�f����ozp/��^�f/�㏗��.P�R��ͪzx�/[�����j��������r��M��&��ea���3x�ox��A��0�:S�W]��� ��^��]($~��R���]�n;m��� ��^��*9���^-�ﻕ�����o[�߿T�?�4�7�T������qxc(\Zo|Zo|�\Z�8�o� ��\0o� o���77ދ?T�?��d�o�>�?Ƥ�o���㡖���<���a��\']��_C�\Z�x\Z�~��\'���IE9xR�[<�l+�⤋�z��i-�x�{?�6�g�N��\'��|���P��2ؔ��nD�7�x��SAd�i�:�6h3�{��x)��R9�®���k���6���1��9�)�\"����FŻy��݂Yxw�5�{`9��v�:\'\n=1��4��3�����5y�M�x�P\'��9�U���{�}_�+���A��$��Q���W��x|p�\0�Y�s����h;��<Ћ�5�G!y�h�1|̏|�o|\\�>�����������|B�K|�\'�Ã�����F��A��\0Y�c�����7}����g�N���a���y\"�>k��9���ղ��՝�������0��/:�/�؋/~��/!��_Z�×�\\��;������O�+�L�\r��<�oަ�|��U��՛s��[\"�Փ��\Z�<|�9|\r�)�f����3���`|c��y�k�;R��h1��m������b|k�;�u\0��xm�=��%�{>��{k�>W���\"�sa\0�s�v��/��P�\0�7~�(?ڑ�c��*��c\r�q�b��G\n��u���m��&�\'U�d~�~*D?�x?=�����gXe�9I&��M\r�gy\r~A��>��}m�DQů�?}\'����k:����2��g+�z�V�?�s��M�7�n6�Bk�fs��^������W�6�U¶iAQPFPl� (N���CJ�B�R @P\n�\"��\\C��}���5@P��4Of4�n�*��p6��/ �%ho�K�\r{AЛ�#����WZ{/�����.��}�%��~F؟��=�A��PΆ`��&f\\\"�f�~<$��E0�W$T%9F��+%��� 0�\"ȟ# �v���d���3c�!`�)��J��gpʮ��:o�H����+Aq/�(5L ��B��\"P+�h�#ڽ�V����G�|�&p~�����Us? ��w��$����ęL��J!���Q���+�F��p\nM8U��p:*�`�M�`�z�`�s����eF8�A$8�.�_�� ���.�_.Ğ#8E���J��W�\\z �>���وpu�9�b�u�k���\0�#�:�#�����}���]F���|.�|�/<��� A�Ƅ�M�$�RjB��fR a� w�s �ubB���\\�!D�&b� �do�������!iw:!��@Hz���c���OHY�NxԲBHmxDx�\Z �IN�_&��J�<*\"d�� �?���\"A�s�=��(5B�tB�oB^t#!�ԗ�߸�P�͖PdRG(*�&�p&���%�����+�vB��O�k��m#�R��������AB)�����9��ފиExw{���Ox(��Khu�Ah�)\"���\'�� m�TBۥ;�v,���S��+�K�è�\"�_�� _� &Մ�a��\na��a ��0�jO\Z\n$�L #�Ƅ�|��M�0��Jo{D��L���\"�0ٜK�>�L�1�%�j�%�em%���A��%,(�<F�u�_u¯&���[Y��8a��:��CEº�/���\r9+0���y���I�7\\G�pN%n�\\#JY#����$JGe�.D�@}�ll?qˑ-D��1�|����/q�cQIz��Tq���qg�<Q�x!QU��O�ew���ZM�9G��A���Q?�O���x`�@4D�����F��m�D�M2�C�a�CMX��o_�GJ{�GY|��o�D�����`%N:CD��/g���}D�\"f��9?Hĸ|\'b\\� �fDB�6�(�@$&��CzDRq\r�\"�\"Ұ����D�Qw\"�Ld�c��7D�b\"�&�3K�nw\"r�\"�a�7�K���CD!��h�J<�K#�\0KD�{%D����v�OU3����O�#���H�ӵ=D�\r5���k����6�!E�x�����Çx��9��2�xqLLt�^&�Ʋ��S����p���9ѝ�Jtg8�˺��u(�ՂW��������*D�K\'�Y�Dω/D/ ���+�����L$���%�ϊ�AS3���P�0b裗İ���w\0\r❟�Ĉ��C%Fޯ F)3�Q�.�\r���Q�=�b��U�iCb\"CL�\\$&p�I_]�)oƈ�\Z���S�^�*3?��_���m�z�\'���\'����W��w> f�]#��D��0$���G�zI,(/ }�&1%�T~%���!��t\"��� ���&�>-K|�v���ʎ�&�)�Zf��r;�X�@\"֍�%ֿ�!���Nl��ج�HlU�\'��|I�p߈ئbOl�#Il��#~<dO��,G�h�$~R{F�{T�=�<b/&���Λ�Ž�د�J�/�\"�s#�[�Ó}�Q|6ql���-���3�;֒���i��}� ��� D<q#E�2�J�:[L�����a�����,T�8��8��qNSH�[�&�,�H���L\\�I�}#���5q�\0qe�q���=J\\�?F�Ѓ7�}��d<�M�w�M7��M٠$� J����}�@Y�bpK�\"(�\Z���e��7;Pqh\n�����l@%׃��%p��p�_P9LTyՒ �Z�uP�F�YP#��X�w_15�4P��Զ}�(�������hp�=p_�6��f��&�7���;�*\r�AC[6h��\n\Z�dA�D�xc4)���w7��;@�QU�`�h�� ��-H���*���X�\nI�B7�0���a�� ,o+����� B[\"� ��\n�B�� �\nĎ����X����Ab�1n���:�dS�I�*+R�L�T�\0�v��ͪ�� �(��A�9d � Ț�\09�$�+8rW ��%ȟ�\nl�@�S5(4v\0E�r�h^K�\0OXS�SN��~W�63�3��,CA{�\\�ڗ2@�v1�p�?��Y:x���-���[����v��3�!x���|7/��\r������d�l(x�9����\"��~\0��Q^���75�7�c��gM����7���*;A�<��\rz�[@o�\n�a��\0��k��zv���\'�3������k`�0���*0���-@�w�7��O`�aY0Z��9.�[c���X�c`��50^�Lx�\0&Z�]j�$�0)�>��/|�z|���H7�)r��!0��>r�O-L��\r�N7�i/���\Z:��i7���f�Y�O�ۀO�{����L�H�&E��p0;�(��e�$��9��`��0���#�\0����v;��G��9��II�P�Xx�\n,�g���tX�s,Ye�/�2�RU#��� ����,D|�V�ukd�5A�`m:�۳�K��=~\0|�6��\r�!`���`�\Zl�n?\0[;(��X�-?vA�v�\\��8���~Bi��������J���S������2�_���=���<�5���x8���!g88�>}�\rS}��i��}tp�]N�\0�����C����s~8\rϽ�Y�b�A������\\��.-���z���[�\r�P�D�]�&���l!�4ڑd/��䤴I�\\\"I~LDR��$)��\"),rH��bI۩X��Ҏ�4��%$ej4Iy���{�DҴ�#i����I{�H��%H:�\\�.�K���1Nڧu��/2�t��O:P�L:0D2t�&G��L�#��F2?��t�Ճt���t��\"��d��8��\Z�tO:��#�#2&YB<I�� ��\r�JN�d5J:~n�t��\r j��ϭ$�_�H�N\"ȉ�ԁ����$�� �V���/�P�{I���$\\R 7�\"\\�$ұS$��8u�~4$�L��$��{�ؕĮ�#q�I�K;H<�)�0�$����I\"~#It��tB^�t\"c�t��0�d���!�t��d��G���%�V(\"��SI��c�lo�_�.X�.dM�.���ՍH�oI���H��RI�C�nJ\'�n�#y4Z��:X�۷�$� R��$)��4�2�F\n�#�h��4����HQ���;Hҽ�vR��)vn�]R܋bR��R|�%҃ě�D�dR�<����OzH��D��O)�J)gHJ��G����RIy���6��r���_���E�3����\"R�11)ە@�}M�{Lz� 蚐\n�\n�jIE;ߐ��\nH�ˤB(�tY�T��G*�+Az}�5�u2�T�>A�\\+$�1�$�醑�,FHՏߒj�ɤ�k�Iuk��ӓ��t Ro�Yj��t#���!����r���ҝJjY�#�?�@j婓Z���>l�Cj˄�ڲ�H�/�H�f�O���>� u=�&uC�I�qOI_�6��̮���dI���I�UHa��o�!�&ҰUi8҇41;O���4�w�49�$M�=\"M~L��&͜�\'���&��%�<cE�����i^� i>����t��h����E<���H���AZ��I�R*�ՠR�jz3i��_����!�����WIݷ��ݷ$K��%�\0���6y�d�d�L?�,;�BޒPGޒ�!ˁ�d9j;Y^2�,��JV� +�\\$+>o\'+�ْ�+����Kޞ�BV��K�I#+W4���O�U��U��UU{�d5�R�nC&Y2Le�����Z0G��Y���;F�1\'�5�I���l\0K\"\\Y% [��Y��&wk�&��&��fg�f�d��m>����H�\'٢<�|�w�|��3��J��-���ߏ�!ʞd��m2d!���#������ddHF���Qrw�h�\Z2����Q�$���Kdr�L� S6�Ȕ�x2��Nf���9�2g\\��u.\'�uc��2d��\r� ރ,̸EN�\"��k��>�O:��g�u�dk�G�+�)g4�6�O�M�F�-� ����Y)䳮4��\"�<��|!}���{���Gv�;I��O�8�Cv��\"�4�\"�\n!�r�Ȯ�t��\Z��#�|���|Yv�|�~�|���|�ѕ|}��\r���<�|�C���&{溑�5\"�>`\'٧B���\'��\"��&\\^!����f���w���$��O�C��ɡ�prXl=�ΎEr̵o䘛S�{Փ�ѻ�qug��ƒ�f�����+�����-��I�,r�cgrr�U��-&��f��8r�T�1T����*9��9ê��d�/�Ih���K���dr&y?9sΞ��V(9�_Cή �p��9���ȅ�Brіnr�!�\\�q�\\|�N~�ҙ���}�+�C���e�7��!��z�`C�� rUf2�Z��Z҇\\�W�\\�H��ǐkT��뼤�o1oɍ��Ư�M./�Mo�M����y�Z����{���rk���O)r[�#rG/�ܹ/��_���ɽGB�}}���䯼���&䡚���3��Í[�#��x�� ���\0�<:\r\'�u���~{�߶�$O��\'\Z�ȓ���e�i+yF�N�9M��M�={�<�5�<\'xD��ZI�W�E�oU#�zM�enA�����������$����ku��+n�;�)���/�4J�����ź���Y��ŭ��%4��p�E��1E�\"e��&�sK%�7EU�E�ZLQ_���ʣ��G�H{J�M,��.v�h�8R��(:u딽�\Z��&��6ʁJ8�p�%�0��b� S���)F���1�4=�b�N�bFR̃b)�e\\ʡW�#�K����}?��)��z��̗ȥ\nP�\0#|\n\"P�������(�#�(�i\'\n�� \n�l>��_����g/Qh�W�Gi\nc�/\ns�Ha�p���La\'�pU����� E�Ղ\"�TD��PN�QN�Pl���8\\�M9�r�%�rVэr�|�r�Z�r66�rN��r�ݓr>V�r��C��Ԇ�tԑ�lt��⺓�p��c���p��\Z�O�L�E�R��rUz�rUm�r5�O�vH�r�|&�Z���y�\r�`�ͺ��mg(�r�O��)p�xz�)^���E��;��/N��KJ�UJP��4�_�RBj(!#є��)w��Q¹�(w�6(��$J��tJ�jJW����)%�ۄ�\0YMy��My�K�$JR�(���(Iy��\r<%E���?By�@y����0%�����ˤ�_\"P�Kz)��w)R�����$W��Nɼƣd�<Hy�W��Ϡ<�(A���Rr:�Sr9a�|�PJ~�ʋ�.��+�BD-���-J���%!�RښIyu��Rv����N�x{���D�R��Gy���\r-��Ƶ�R�\"O��yJ���O�e�Sjۺ)u�r)�j����(o��)\r=2�f���f�ʻ܇�����(��~ʇ�Z�݇(m�(g�(m?)�N��Ι6�\'�J����#��\\���)}�PJ�嫾e�&�2���ZR�m�!N)eH��2t��2�2�*�s��*Qƶ�Q�|.RƯHQ�=�@��|ǺQ����38�T[e�ʛ2#s�2�7��â���j ����٪\0�hJ��g���|��|�e�9��g��ϙ����g��M�\ru����ĕ�~����*!�@��Lݔ�@��.U�us�Z��[d�� �m]-T�N&u��T���T��ZTU�wTU�(��WTՌgT�MX���:�Z�!U-�=u�V���)����&ى��\n�j������Pu>��Q��z�!T��KT�Qu�2u����MT���TH5�{�j�͓j�=�jvL�j��=�T�<8�О�a]%�a&��U7��\r��i-��kT��p�Ѹ*��#�����\nM%Sa����WM\0�hϳTܖ.*�� �0�H�4*����f@�H�R��R��\n�4�g*}��$��2�PY=�T�A*����R�-��v� �\rU�;O})����Q�����̩�S��9b��U\ZաX�z��\'�(W��`���WTGX/�ܗ!�y��\Z��ڨ��R��;�N_�S�}ͩ�5�e�A������T��\'T��}ԫ{c�W���W�˨��S���E�d@��TO�y%�z����p���NJ�#����K\r�ԣ*yP������%jp�\Z\ZTA\r�v��� Q�^����&Rﴼ�����w���יԈ��Ԙ-Z�{�h��X�O����Ը�[���z�$mꣷ���/vRӆ�S�卩���L���RA�l��f�:Q��W�>?�����5�+���z���Ǣ�풧�7GP������2���ԢW�Ԣu9j�Z��/�Z�{/����Z&S���\n�(j�n>�\rz�J��Z�T�ZRk�,j=}��V�O}r����1��{��t�@m�I}�B}77B}�J}�{���_���c�vj��jـ���R;cj��I �Ι��O�J�����.�\"jWZ\"��U��khK�o�s��m��)�`�-uX�u�t�:���:^���-ʆ��EH���D����:�!��c��:{iu���:��G�o|H]�B�����w��66�.��ԥ�{����+�Q�U�u5���R=��}u�u}�#��u�fu{�����=��O�#�_�-��HMs���&�;L�,1M��@���&#���X�Ҷ�AѶ��ж����>���5���h�\\Wh���iJ 4��K4�Fm\'3����MEc��҅�����Iv�]2t�.�R���*MS�M�q��`h{�n�Pi{� �=σh{z�hڨV��W M��[��a,M_!��W��$m��\"m��%ځ4e�A�O�a�4�(�\r�x�\Z�d;�f�G3�𧙥���z�4s�@�a�\nڑy4����f�D�Y�ю��� IT\ZH�[�Ӑ�4�4��\Zq�\Z>��M:id\Z9n�FQ��Q�`h4�4��<�x���ј�&\Z[���Χ�Wo�8t�ƣn��������i®�4:�&\ne�N�<���>H;y��fs=�v�Y�.ɍ��r����v&���F�#܀vn�)���v�.�v��]څw�4\'�_4g�I�sw\"�b�(�r���n+ڵ�6��苴�q���Ri����n-n�yd��<Q�hޙ�i>����|��[���#i�[�i�����W���e:-f��އ5Z�ZlC-�g-�\"K��פ=�>�%�/�%�i������}ش�-�-������AK+�@ˀgў�ߣeI�hϥhϕ%i9�KZ�r\'-Ϩ��wN�{�Fˏ���0��^�+�\n|Uh��i��Y�B�\Z���=���>Z��3ZeR>���+Z�\')Z̓&Z��wZ��YZ��\\Z�,�V�~�V7��V�%��@h\rBiZ�)ZS���G����F��,Ok���ڮ-������@Z{@�}��ֱe/�#1�����Y�@��N��Ӻ���z�G�z.���e+�>JӾ�֡��|H��8I��w�6pq�6�ԡ�D^��ʹ���e�w�����\ZmؠM>q�M\r7�f\rgh�6C��hs�hd)��eڒ�5ڒ3��Tɤ-T��)�Vշ�Vw��V{n�V�i�_h:?��_���\\��c�ʷ�Rh��7�T]n_?]��*]�d}��]���(]1Y��c�V���te�����b�AW\r�OW�lBר�B�>ZN�~M�~��~���p�;���O�Ѷ����q�n�SJ7����.쥛=Ч�:N7��L7ϹD?����O�[pb�g��V8k�UP-ݪ}�v�Cg��p�#�Uӑc\rtT�:f�\Zk�EdžܤcӴ��Zw:�nL�M��5:��N:��-�h��_��I3:�I�N�3������ktƩY:#���z��Ζ�Dg���9�t̓��B�\"��yj�K�tލB:A�4҅~��?1t�i5�8=�.Ώ����O<���$U�m�u�6��3�t�G������M��o/ӝ_��/�x�]�]�t7�U�{y3��F)�7��qc+�c���)}��u��6S�N��E���ߤ(�� }���o��A�A�`�9z��6z�=�E���G.xУ��N�c���:zܿez|p���]��w\Z��UzB�)z��/z��,=��=�,��*%�����G\\�?n�HO����裏���3v��������;��Y���y^�����Zf�R�yzi�^�I/� ���aD�E���C�-�Co�ť�����_��w�&�?\r��w�_�w���{��轂��؋�ބ(zo�5�g�Vzr(���>7GH̤����p��[�>�>��E�|�>��>^x�>ިA��m@���F��&A�8y�>��L����v5��[\"���G�>}��_���}n�}.ב�hv��h�M_t���ܣ/Y��W��+�髚�UC��{2�u�}���!q���i,�!�Ɛ���،�a��`Ȥ����ه4��bc�aCn�6C>���&z�Pt-`(.80vj1�O�0���ʕ{*e�Zc���c�\Z�)C힘��+��%{���4��ih���dhY�3�H��z���%��MC���=�`��|��{R��7�c�{)��}$\Z�@V�a���0�\Zf��`��d�R��G�A��������c*�c�D���m�Њ\\5�x�0����#��&q�ǞA|Z�\0�2�B�O5�����|����>`��3��2�!�֡ꌓ�x��b�ɏr��p㴧?�v�>��Їᠾ��\0{�p�d8�|d��1���g�2ί�2.�f0��_1�:*N\\���\n�e%��Z&ɸ�¸L2g\\��g\\�2ܼ�2�uv0�s ��A�Ur�a\r�V��cڋ�=u���ȸX��~e���3�363i� �`F��#4Z�Z �3b�?�b�-0\"TQ�����M���=��F��{_3�`U�x��Ì�F�YF��8�����[��G��� ��Ͳ�t| #��������Y�7#{����l��1�`��9�\'��yR�ygz��͌{\\\"�H��8.�Q�#���J����F��SFE6����fTtU0^�92*eW�%�?�op?Ui\0���dT�z2��\\�����6F��Q�g�}^`��[2�{�o�)1�z2o߿c4�63\Zk���j���w5���Y�{\r�{>��l���c�ú��`|d�1>fJ1�S����N��Ss?�ˉ��\n���x��M�b�D�3z��=ջ}O�}���z�W�����R�\n�1�.��ng�<�g�o�1����÷w�����I\'[ƔQ+c�a�&<c�m����ke�<��|�1��Y<��X��b,\Zb��]��Ҍ?��?��k��kU\n��3�\r9�ߴ<�?{\Z��:�)���ܔp�)�u�)ّ�܌�aJ㤙2Ԙ���[/1���3���`�a�1宾c��\\g�k\r0d/3\\ƙۦ��G{��P��i4s��:S�r5S�7���e�]]g��f1w]�f�&�ܕ�������=S�Լ��|9���^ej��e�Od�s������w�2�BN0������.� ��4�Q�4Jqb\Z5�1�c�&���&�d����� +�Y�=�Cs̃=�L�H}桞8�^�aZ�\" �i�h�<�{�<���<ڢʴ�6dZ�leZg0��ckL��L��`&�(� ���x�L�&\"܌�,�bb\Z�����=;�8�*_}�I�e���L�e&�5�ImKf�%�Lz�I&[�,�ݭ���U19��L��,S(�a\n��1E7iL���\r��^�*ȴ�O2���v��L{����t�x�t�9�t<��<�/f^hz�tBW3�M͘��̋��L����K�b��Mh��L�K;�n���6�kC$�_��׳��\"�7�dz8D1=��1= W���|�^�AL�^o����OV&�w/��w����Q������g\\a���3������3��2�̀�k���qf��3lh�yG��N�93�y.3Bq�Qw��MbF>xʌ�d1��1�D�Cz�{���\"fl�k�}]�}�rf��g]̌s�`ƹv3��0��3Ĵ3�����f��Sfr�W�Cw3�I���M���Έ�����1��|b���TNef^�af�֘ϰ^���3���̜ߎ��#̼�Df��f��u� }���̂t_f��%����,\\g�h3K��1K�L��\n>2_��a�Z[c��b�ǜf�)0�\'�0+�}��G��o��2�s��5Q̷F�o�n1�f\n����l�c��evR�2�o>fv?Ybv����y�a�9��_\"k�_�=��K�̯��-j�!S��^s��-�Зg̡�T�0��9b��9�Hc�EC�ceL�R�Cs\"J�9��9Y(���˜v�ǜe?a�ݙc���e���\'<�KyF������\Zse���e7s��s�͞��1��n��p\'�\r���ϒ��ΒT.bI�����Y����K�dɳd<n�d\nY��\ZX�n�-��,9�W,�w?X��z���/�m2*�mj��m,\rֶ�H��r7k{�C��r�q������Y��\"����7K�&K��R/�f�z$di�a�Hf���t6lXz��Yz�p�ޠA��p־=�X�o�X�5�AC/�`��`Y�e�e�Q�2jmcC�,�+,��L�:���`#�e���2O�b\Z`q�Ų��:*�`�aYM&��5>a[&��7���/�X�-*,���K`!d��3,��\nQ��B�g����0�,P\'��ob�Yd��,JQ����E���Y�o\'X,\r�א�{���7$��R��v�%�a ��Y⚝,��əK������~���<���1֩[{Y�M�l�O��Uγ���r��a9�]a��J,�%֥�b֕7�,��<��e>�*5�uu%�u�q�uC��.�u�R�����\\�dyC�|^<f�|+g�&��|�JY�G�X~ҫ,��wY~�x�����<+Pc��f}��\n�wa�9�ʺ�\n/8º��afˊ�~bEt����~cż����u��˝�̊?e�{�Y��a���$V�r+������J�$d�$�e�ld�Rg�Xiv��4_VZ������W�������?��XOUa��_YY��r�Xy>���V�YV��!V~N<+2�����U4��U��c�:Lf���f�k���o�*�Xo��X�5��ze_V�iKV��;���ղ�?��H�C��1Ǘծ��jO�cuh�:�9�ΑJ֧ϷY]Է�n�3�Gc���������L���J��!r����YW���~� �k�b�5体5sb\rߵg�}n`�M)��S�Y�/ر&�YS��X��tx�lj���f��d�RSXs�\\�\\�%k> �5�u��Xg���5���d+�Z��a�lF�Vbw�V��YzGY�\ZY6�%t���o�7=mdK�dK��R!|�T�q��v)��.��&�-sʝ-s;���)��Q��|[n�[^Ǝ-��2[��V�}�Vzq�����U�yl��l�_*l�j�ϗ����ze���\'��>���fc�(]`��u��ٺ�T��H�����{_]�@��m`�6���؇�<a��a �f[D.������>gC?`C�ٰZl�|3�g�Qҹlt���)`�q�il�������#V�x�e6>�\0�(��\r�N����lR����+�\"U����eS�9���Zl�=��wd�F���l�p6�*���W����9�r6ǭ�͍���f������[O�|�E6!�-HXb{٢$<[4�Ķ�f�>�V�}��mk^Ͷ]�̶Md�e���6��>�c�v���g;������4��c?�g�`;��f��\'�����f8lgf2�9o7ۥ��v�c�/5d_ַd_��/;�e_��d_QWf_�mʾr2�}mҎ}m��}=ʀ}À�����0��=[�v�=Z7�^cW�3��w���o�>�3l_;�;X�;;D���f��Ƴ�\Zz�w�\n�����wO��w���\Zؑ�4ّgّY$vT� ;�S1;�� ;:4�}�g���}��;��O�bǟmb��hc?��d?hg\'Z�`?�5�~�ځ�8z7;m�yv��4;�=�����\'?�ٙ<v����윁\Zv��\'v���dvn��G8��0���?g�_�����~Qu�]d��.�lg�6�Kn��K�O�K\n�K�o٥���W�X���v�s����]am�~ӳ�]e���6<���\Z�=���ew���\"��]���n���ϱ��ϟ�_n|b�Mg�#ϲ���N8���o���e��s]��a{���=�6Ğ@��\'�N� �\"{�� {��+��!��Pg�O�@��c*{��7�b�\n�7����s����&{i�<{i{�0����\Z{�i�����Ud�鷱�NE��9#�\r �F*��*�g���3�����G�Ñ\n��l�q��pd���{�-��9re\n��u�|�b$����Ge�Ge�G�m�Q�>������1�h_��Xpt/�p�s�*]����쳻������g�5.��k��}\ZǠٟc��\'�Ls�c���sС�s�Y�cn�㘟��r�����s��C��,�<��8�q=ut{0z@�����>q\09\"H]�\0����e����d�Ag>�`x%<݃����pR�\n���L�J�s�{��ÝC�rHK6r{>��ΡX19�oF�Q�>��a�wq��Nm ��*�p�,�!��s���U9\0��sć�8�*��.����kJ5�:��s2�(�t�\r��2�>��A��q�a�9��9����x�q�X看+�\\�H�\\xJ�8�<�8K^�8��\\�R�q��r\\*s\\SќK���z��6�����k����-K�S#��IM�x����\\p�xw�s|n.q�n�r���8�~\r���DN�\'X�\'8�7\'�=�\Z�z߃��ȹ��� ��q���N.\'z��sυɉ�8�˜��x�e\'�X#\'���E���{p����K�<hs���q���s�����a�#\rUN*��I��Is9�I�f�I�W�-��_�ᤧKq2���kK��ga�,]NV�SNV�\n�~N6���}ґ�T�ɟ2�H�����9%iO8/�t8����(NEn%�u�N%���SM��T�v��m��]�ͩ����/xrގ 8\rw|8\r�e9���fE\'N�3�:9-�*8�����|Nk��C�;�C���a��-a7�l��t����v�-N�(�������to��`\n8=I�9=�ʜ^�0���!No�N�s#��B��q[Η���~�ZN��ǜ���Q#gXj�3�{�3j���/�-�rƝ�q�sќo\r)��\nQ�ᅱ8�b�TI:g�Ug&ۅ33���c��3KP�,z�r~5ks~\'\'q�dĜ��`��KG��Οu���&οx��^��HW����re4V�2-S\\����-�B�\\�W�SW����x*��}e7W�w�W\\�\\>�U-W�-\'s�KD\\\r��\\̀c\\�(_�v\\4W{H���k������5��ݿ�{�V��O�5l��\Z|�\Z)yp�ʑ\\c�)�qT��L ���I�I=�kjr�%*��3l��m��v��G�-��\ZM\\��\\�#;�V�6�c��c�(.B�=��EDn�\"o�s1JI\\�)s��ń^�b�̸��R\\�\r;.�3�K�j���Ԡ!.m�Y.3�/�ud�US�e7*r9�>\\�z�{Ą˽��rg,�B��\\�%W��8W|�\"�\r�毀{*2�{�+�kkv�k���kG\r��]�:�W���ܳ�g�Or�Q��ָ�º�N�T��맹.��k�2���Ҿ��K��+w۹�\"�Ոܫo�s�El�^����`[soTfp=a\\���B_n�)Gn@�n`�n�8����\r9��\rI�↶<��I�˽�v�{g�7<����6n$�ʖ�F}Fq��Tn�)On̪ �>��{�9��`,�����&*�&��&{�pS�/sSf�rS�����fn��\0nz�]n��܌���\'��ܧF\n��(47�j��5����B�����͎q���v��B~qsӃ��UJܼq\n�����E��p_��\Z��}��7���nY�\n���ny�wn�u�k����%\'��)ܪ�n��*��Uͭݙǭ����|�֯�r�:����6��6��6�]�6��p���p�M&��v��i�6��r�2��{ݸ��ܮ����|n_~#�s-��e�\n��z1�K�����e<��v7��E�k�w��|u�;���⎮�厝I��ap��ǹ��Fs\'��q\'߈�S^q�*�qgo{sgs�ܹOw�?�}��ĝ���.��r7up?��>�����|�w5����]Wu�SC��0��i�_N�ߑ�$��r< �7OR�3O�X���J��9Ϛ����\'-cɓ��ȓ=������S1<��<ş]<�hގ�W���ry��^<�<���<�:O�X��������N��ힼ�ӄ��i:��4�\Z�4���4��xZ��xZw�x{n���x���x�������K���/ y�d�y�5�|��3��<��<��1֑gLu�G}��G�L�<�<���$�[ޡ����y��<q:�J�,�J��;&?�;&<�;v�\r�a����y��<�}�l\"�U�üi�a�y��e�\Z�×k�H�%<2�ģv��J<��*=7�ǔ��co]�q-Gx�[<ᶝ<q�4�D�,�D�-��Z魯\"�fK����$\"x�;�l�Z�m�Ϯϳ���s���;�?�;[��([�s$\\�9>L�Õ��5$�ν?�s���9Ÿ���<��5z37�,�wY��w���A�/���[�x���\'�\'ɘ�E��y�h�]�<��D�ߖB���=���}��H&/@�/�/p[%/��|���Bgya�h^8�����wWR����E�fyQ�^T�/ڦ���/��ݗH��_���K���#Uy�߯�Jx�.�����x�w����2�>��V��y�4� yϊ�����x�Lx9�]��\n�E�_^�i3���W�k?�x��ĸ�Wbb�+�����佔��+���:V�{�U�{��W��+���Uh]��t�U�Pyof��\Z�^��;���ּzh����J��\Z���5�n�\Z�p��e����k���{g��{|�עz���n��z<��v�ֵ���>���庛����kx}�6��!b���/:\'x_O|�\r���\r�������7J��:��~|�f�țD(�]�M�����f ��j����o���\'xK�xK�o�>`yK�y�� �\n�7o5��[�����[7��� y�#�����n�7�,�%kj�R�D���/��o�>ȗ��˛x���l�˷4�=T��yk|Ś������R��W�J�|叇�*�k|u0���w��q����\n�k4��w�\n���r|�DK��3|m�p�6-��ͯ���:�~�_���\'���������?���?�R�7z��o�@�@~�MȪ|Q(����m�����A�E���ݭ��IP�ձ�|�ۡ���\'�@�q��G4����ck|�7�U��Or��{���O|��%4��\'��)2�|J,�O���+��齉|f�>�{p7��k��7��&�|��i�]�2Z��._T2η���&e��~���|�_X��;Er�.���#p��\0/�[�%����SZ�s��֑�|��Z|�!�c���)��D-�=�|/�b�W�q�Ws�������~��\r���B��;�A�1~��!?��?��G~�oN��e}��]~Ϗx����\r?j���Gq�Qm��\'L�=36���4��p7��\n����~�>?N���$Ǐ���_G�����<��?��%�����I����t�>~:�:?C���/~f����$~��a~��E~�7�܆6~S��W�����O���3�/��os�%�~�8�K�/������K�W�G�e�3�e�����N~��-�Jsu�ˋ���o��#�\Zݯ�\Z�2~���V���~���x��5k~��/�(�����o�~�Htⷫ��pO~Lj/�sܔ�I �w�M�{������S�_�����]�C. ���m��\\��)��>�?��������;A�sr�O�����g����RS��~��3o���������/\r�ZR������_�״���--���� �0[Re(�����\n�@�뿜y\'���@�\"T ��@��@���@Ѯ_���(P�C(�$v�\r�T��4i(��*��*�T��j�O Ԋ������]ý��L��J�U�#�����莬 ��E�\r</<���\n��6f���B`n�[p�h��y����s��������\0��.��� �(�\"V�Y� ���|���(yM@�2�ʅP�N@�P�/\n��\Z=[@gx����@�N��R+�|p����6 Y��մ@��/�~\nN8=X���nX�|�\nNi�l/��\\�CF��}��̶��r���V[p^)Pp�n��ϐ�IF,p�#.\Z<�v�.�� .���O���Ox����!$��5��Ͻ�-4�G8K�*��\' |\0�_B���� �t� �:(U��z��`*��^~RMp�j� bR_��H\n��ľQ�7�\'���$��&\'x�oC��� A�X��$HvO<�n,H��&x��$x4R H}�\"H͑<F_����A����6� �W� �(��-�� �?\n�D^�������ŝ����$��^��B�SPq_[�3S�zD$xc�T�ZT��\nj��6G궤 �/�ԧ�!\r���FkA��h�/ �-�-\'���_��S�3C�v�<A�|���v��7�Cз�J�w������ �W1؏\'��C3��潂��N�(:E0�,|y �-�ߵ� �_y$��8-�hG �<�3�7 f*�?r���ٞF�B�i������|���\'�i%�����5�%�z���k\"��o�Pr���KBi�?B�8�t�/���O���g�̹[B�0��L�p�Z�PN�P��E(ׇ�\' �_8����f�Bڐp��sB��x� �pG�pgF�PU�&T}rA�.qS��8T�;�U�/�.4r�)4z�(4�\Z�p����Z�8����cPW!hB�M�0u\'!�x�^#�g� ��B��E?)D n QW����J!��\\�����k�{ !�%��2i\"!�J��-�r����B븭B��I3\r���ᩲ0�����CUh��Ex�iQx������U����Q,#<\'8.<(<�*<*]�%�\"(�B�e����^m\r^�bo|�)�5yE�1�z�hz�tzˊ��+��~0�߂�0pG��.EC��Q9�pSYa�o�0B�Zu�G}�D�V\'�y�)�G{\"�?C�-N\nЍ�|� ��Ħ(a�I�l\'L��&�\n�7~\nSU��i�Aa�ۜ0��>�\\-�T?&̌�$��f�H\n�k>/x+�F�f��\ns}¼O�¼���2��m���EK(aqȐ���a���қ��WY6²�2ay�����7߄U�U_�DŽu����xa=灰^\"|;E6>6|6�]6�6m6�P���R�����/|��V������R���/�*;�m���6O_a[�oa�����Q��-쨶v�N �I?������#�O�~=El�F\r3L�#���#�������Q_P8��O8�\Z,�&]-�ֳM�m�M��<Z�=�T8a!��*���I��p2��p*�N8sG �y��p��p�%\\����g\n7����E�^�ąѦ2?�dr�hs�_���l�}�ۣ\"�=4�\"%R��m��)��vx8�v<�)�1%)�I,��T��D�^�\"������h�+S�1�%ڍ�)ڣIi/�� E:\rd�~�!�*w����P\"C�\Z��Pd��NdR?)2fE�_��\n�D�E�ۊE��E�����Y���E����f���A\"�D��o\"x� <3MD��Ua\"��J��aZ�-B_��0/�E�}�\"�H���#Yc\"0FGN��H�\"��o�5QD���͚\"��C��\\��Pq�Ԋ��~�P(�^Y�Y��YԊN:T�l�5E�s�E�?GE��J�s� �y7�?��B����5e���G��닢�[��.E�+t�[���=\'�vxMt}��և�\"��ȋ~A�P$� �J�o(�/ML�lF��B�LE�(]Q����i�(⢽(jo�(�N��>�\'���R�ŧ�=ȋ%�6�\rEI.Ң��K���4ѣ��D��E鐇��������F��)�W��y�(3[W��=R�@e����_ȋ���EٝQ�h�۽�7JD��\\Q�PQ�����pTT�+-*��.�J��^]y.z���uQ�&���&���)�{(���5���\Z��\Z�D�����$5ѻ�Q��Q�iIQ��9Q����l���ĸ���Q?�U��\Z\"���G�ײh\0Y.\Z*\r\Z����.��K�Dc��Ec�Ѹ�f�x�N�WL��R4q�\"���D?����D�v���EE�ܞќN�h�iY4�[R��V$Z��~���M<Ѳ��h�5#���+�d�oZ-o�].�V�˔��e����ʰ�[�;��rpb��,��/��Z�x�����o��JǴ�;X�wX̉w\\?#ޑuJ��(��++#ab�y��XM�T�f�K�����.�5�Pb�k\nb�!�X��X�&�=\'�~�\'֛m��m�ʼn�n�����={V|��ؠ�AlԵKl,Rl|�]l2�IlV�&6%�����?;���i\'��p\\|�����+C|l[��X��z,_��C�N��Zb`����\'F���t��xC\r1��+��w� �*�Dg1��,&��%��%�T���.�\"f^Q����\n�b��\\� ���m���e��$0-�|->u��b[�)�-o�����nLZl��Ylo�.���+��N;xb�W�bG�{��=��ߥ��+����J�S��c�K�y�+�e�+����@��}dV|M�.�v�\\|�i(��qX|m*��xM|�/]|�\Z]|랬أ�M�i�-��7{\Z���$�ד(�W�N���ύ�1\\��XQ\0�e�a�\"єd�\r�г��{?v�+-+\"����\"����E������w�9�w�\0H�\0!!;\0!��Ol@�x �(�?\"6�\"|�\0�7�z7\0Q�J�(�u@ԛ̀��e@4?sB��{b>*\0b?S����^ �H�(\\\'�\0n0�8c�A\r\0�\\�\0�/h2�[�y�l���779�9EI���)@A�@����^�$��D|P2�Tl\"\0*��*�e*_|<��x<�x�� xJ�<M�����ɟ��Ԭ%�]=�u�Ծ�\n�k\0��\0�å��u�F�@��C@kV$��c%��E�Q��4� xu��$�mm�F�\0�__�(�\0zY�>�^@�, �vc��0�0h�N�N����\0C�#I\0#��\0�z\0%�e���x `,A�ex\Z0�L+&{��ɥe���f��0�\0�=�=�R4�6���\'��&e���\'`��3`�O��s�P{�(g\0X��Xv�XA�VVϾ\0�v�\0�֎\0��\0֛&�D�Fm(�ߡ��c;���@9(_ ʿ\0��*����\0����s��-��恛�Հ[,����[-�mzw��n��jI�Z�R���\nP�P��i���(Ш�Ш_h|��84h��hv��{���P�29�:phŎZ˅�;wm_,�M1@��{tࢁ����F�\0��k~*���:h:u��N�I��-�����.�g���I@7��@��s@w��R8���o��G���O@ϦC@/6�[x��ӷ�K�ڛ<����Vt��v��e`���s���m��=\0^t�^|g�8������0H�,0��I���@@���M��{�\0��@h�3 �f)���aQ� ����b����h �Ļ|�?�Ӏ��@��@ yhH����iJ7��XK m2H[2����f*�m�\rd_\0����-@��=�g#���?@�K>Pr�(����=J7��!ao�!�J��o�!���c��7>��C�߭�+>�W�g�1����$0�z0���X<\0L*=L�I&C���7��>�k9G�i���������o����c��1߁Y���p`����`v�0�q`��+��1�yI��ys�|�_�{�Eཨ5`�X��\n,�(,L�,l� ���:,��\n,������>�,��\n,��V�2��=g�U��\'��jK��2\r��XN��w\0\no\0w�o�;���\0l�G[l��K���S��ؙ���7����v\n��|�� ��~��5�M>\n��|��|�k��D\0D?�Gv����~}�����$�o �y���;\Z8��pb&8Y��\\��2��������ni~��\0~���ٕ� �g��39����$�Z]�O�g��(G��[n�����_r������z���\'�ߴ�?������7���mׁk��7��A2�7 �� �\'�ͶQ�͒<�����}&�-�%��b%�Z��z�u�����%��:�V�~�V{H��\0�q��#�HwS7Hwg1H�a����\0\r�O4�<�\0��\'�4���d��d&x2/e�v!�A�� K�.�%\Z�}��c��sE���g�dmb��v\0�S��3U��:��k�B���~�wIAN[UAN�AΠ��%U���?���7��#��e�@GЉ�� ��� ��b��B\0�dq�d�=ȧY�:#���ځ�V���7VA�mt@��@�Х^((�4�S��$S���00�&B���A_��$�A�xC�\r�D!I� �`�i��p�= ܭn>g�_�D�A�S� b�,�bW�8Q��AT�W *�>�:���@�1�i�b(�ػn�8Z@� �m�\n$LpIr@!��@���@��Ѡ�VyPX�QPd8t��uPtc(f�(V2�C��/��@ ��A�r���($�z\"�:� �z���YЍ�<����i������2ʼ5�*leߺ\r���\Z�AyQf�|�&(��P��iP�r7�^�1���9P�� P��TPrt��t�����0�86TR� Tje*���>�N��*�@��QP��УS���m�*u 艷��w?P��S��P��/P���Qj\\� jzXj~j��j5r�&��Q���� P���|��J��jp;��j7���ԕ�#P�O���͵Po5�g��{��n|��_��V:h0� h��c��h�*4��\Z�z\Z�~\n\Z��\r���*h��c�8�)h<�\r4�\r��a���M�G��B��������r�ZN�\0!h�����o\Z ��Yd�\rw�����<�������V��{Z������vm|�\r�q9�%ɀe�+���`��R���X1\rV�,+A�J5�`e���hxˡO�8_�V�:x[@x[�#x[jx��i�������f�V�����?�\Z��5>�k:��5����Z�`���`����Λx��QX���ق�R�����`}�I�~�;X�l��\n64��\r�.��XO�Fq/����`��\'`�{T���s��d�O�`��;`����=�z��!�{_Y��G���ߒ��N��{�>�/�@���GU���ر�\r|Ķ|��4��� ��� ��d�1)��,�e��9�l>^{|B�{`=-������^j��f�`��w�y�w/ |�R�Ӣ\n�Y \0�&ڃ}��Oi3���:�g�&�Ϫ�������#w�χ˃/,�=����!��Yp��~�e���\0�乀!��`(b;G�Z�50��Fi���A��o�`|@+���w^d�D �\\T��0����&��̔���E0����\r�<~�y��wl�~�ž?��%`i�=Xڎ\0KǮ�C^p�!C�P�:p(���8l�8\"b��\r��4GN.��*���<_���1�=y/~N��\'zn\'����)8\Z8�C�\Z����*�Z�&�EC��S�7�E�o���o\'L�oߛ��D��S1α�&�sݢ�w!�໘dp>\n\\�\r\r��w|�r\r|��.�>.r:.fe�K������ep�wp�m�����6�\"��F�+�\0?֚W��\0?�\0?9�~�`��-���^?�*?[�k���9)���S��K5���)p��mpC[3��\\�i��bTn=�ܚln�H�ݬ���_�����_�=w�}�\"���fG���w�o���7,pO�op��7ྀ�;3&�]�4x��x�f+��y<�}�\0<ڧ\0��b��x�X���<�v��<��0xb�#x�KOf肧\0�_�K���v����,���%�(�R-�<���zx��\0�������I���]փ�_�(�nB4@�#_B�o�CT�� *BT~�@�x\n![��l��l�� ��q�f^Q��A�J� �uS\r�6���&��2������B�H� :DKȎA4dǧ���6Dt\0�W�\n��R-dg��`i\'�P�1�\01�:1ꉅkUBL(���I��p4�t�u�Y�>��9bNy��ŇX�WA�,�@��ݭ�ؕA�Z���g�[k���د�B��C�]���CC���>D�8��8y@?�B����ߵ�c�s�5�=�q�}\nr<����<�DjC<�5 �\r\'!�3�w|\'�d�W���:�\'�(��Qȩ3\Zː3� gm& ~�{ ~V���$�9���m6�K��!�UZ� R���@`�L��3!����D}�`�\\ �eOn�>/�@�E;!�C�ҋ���:�B眇05f!L�*�W\ra?AC����~���6D�� �q��_��0P�D�m�Di�@�>�B�\rS!ѻ����Ó����w(H\\�7s �y?�����$l\n�$�P!�r$HJ�:$UJ�\\��\\�V6�� ��� ��hH�]kH��<$k+����&@���!w6�!�9���g+ yv|Ƚ�� �n�C\nN�!�� �J��%HI�-�t�)H��:��g�G����nV��Ly��� UlGȓ�ʐ\'v�\'�Z���TH������\Z�3�3�fHm�+H]/R�%��F\Z��H��KH��3H�B>���yy��\r�;�&�1�M\n�c��5q��5�yg����C$���(Ȉ[ d�\0����~����$�3�\'�K\n\r2~�d�9\r2��|=��L�C��\Z��숀�fdA~R\n ?�yB�7�!�A-�_�� ���E���Y��Y.xY�?Y�K���!+�ݐ��ӐU�K�U�*$���C��@�!�!�J.Ce��P�}��r�P9�E���T�f�$�*�gB��PPeeU��6\0T�ݒ��N·�:)BU�>@�4EP���F�T#����Y8�8\n�AuEw�����z�ǡzm>P��H����H�0��|7Ԩ��Լj.���ˇZ:9A�h�Pk��Pk���>�m�\0�]�7����c6�`�k���C?��;�@_�A�<@C��ҁ�8=�cu���:p���C��4��3���.��zP���s4�k�S��nu���\"�I�z2�=9q\0���\0��s�\Z�ԏ>��,�%\rz�g;����K%���A�P@M=�Caٷ���,(��E�܄\"יP�)��7C1CuP��)��%B �(�#JJ�%���RP��Pft\'�����\n�JP�Pqy<T�9*�)�J&��5h��4��Kh�M\'hh�ahX?\Z�\Z�m74R�\Zik��x����߁FU�A�l��^E��F�hC�G������\\hb�4 XMEC�\"��)�k�2�5��������n�tYUh:��EhFX4c����fiiC�Q��mhL����{�4/lZ�x-h�XB�B���TGh �Z��Z�r��2���ZE�\r}B�\n}��\r}�~?��XhM��fzZ{HZw�6�>�5���Z���<���R��N0����m>���\r���\n�05�v��@;�B;oX@_݊���\r��j�\0}�5�\Z�\0��d�b�C�Bd�ݟR�o�;�=m�оi/�[��з�Ϡ�������kM�ۮA?���8\0�T���m����BǺ���7��7�A��D@\'O�@\' [��O��_�=�~�|\n���:s�Eҡ?�������\n�A3�y!��fb��X%t � ]>�|\'\Z����ߡ��k�п6<�\Zq+t�]&#��m� �6����Y��事a\n��0ū\Z0�\Z�Jql˗�V�6l���m#�vb5Lz\r��+��i^4�i)�t��azr\0��ӹ��Q\n0Y#������&�� flS3N<3�`��K`f\ZJ0�>�����]�ư��P����0��V�=E��������.�A�%ء�����y�v�s9�s�*s���rV�y�����\r� 7��V�NMD��<���������a�0����st=�EKX�����;\rD�\0�%0�`��\rCV�`��[0��>����öl����(�d�T!��\\���W���O`�w�&�n� ?킉t�a��k0��i��m\r��\na�Z`ᖛa\0�ȣ�aWN�î�Dî�1�%�{K���R���RG�`׃6î���n���t2�ej>�eұ�,�c�,�}X��>X�2,�p�{�(,��ސ+� �8�еV(� +�+,��j+2�+�\r+�� V\\�\0V��\Z���V�����V.���K\Z`�:���0X��:���Ju�J ��O���N��ThÞ��aO�o���c�\Z2���{��\0k�kh�\rkxk���u���\rb`��>�q-\r�9z��S��\"�l�R���c�������w���h؈{#��5��v�fa���`�N�>�ρ}t��}y<������M��þ�?�M�<�}��n�}�b�f=a�s`�C؏�#���|�\\�:�w�\0lѨ�x2�J����u�mؿ���M�಼U�l�\\�]�D�W�q�Ż���\0��\\W�����@�j�~��� p�)_��M\Z\\��\\7j7\\��\\oA�7� ��7R��=� 7�J�_�71���>���݀�:��M�\'���p3�Sp�W�p��)���|��ܲ_��q�R���[�m���v8,�^�no����?��0�W�����w,i��t�;�=\nw�ˆ�8��.퇻������&��ݷl��J�{���1~p��l�����~�M~�� h �����\'�������p��68��9��fp�w;8FC���N����I�pWN���3j��\Z8�{���ο�M��b<.f�%�kp�rxH�ixH�x�Px��@x��,<�><�K����\Z�\0�5��,��c/�ᱍn�8�]��:x��2<^���w?�O8O(<OL҆\'��!��7k�o���� ~�e�v�w��z#x�m;<����.������/�x^(F����ś��������5?x�P+��:���^>��i����X��+MQ�G���Ǒs�j�#��A?�6\Z��o�\\�7\r�|�7/��7�[��Ԩ�[8�V����:�NU��8\n�Z��z�\n�z#�mq���@�����F��\Z3��B���L�p�|$�\Z|��\n>��\Z�\"���h>�\n��&ÿ~��g@�����C�����9�A���\'��X>|z\r���/i<�/}���W3�k�D�z�K�FP�)!�x��-;������ߴ��?R��_ \Z\'J�E�^o����[T_ ���P5�C��C�\'�\Z������B�Db��;�W�n��\'4;ë;3m��+&C+m�a��D��&��e�y�Q��C\n¼Va�v���e��M�u�,��X8�V���m?�ػֈpPA8�-D8<�G��E��!]݊8��8���$�\Z�p� \"���A�F#\\�� ��k�#%3�dzY�R�����jC�~�\"NM�!μ�B�%���ш@9\"�RQ@�C\0\\J@b28䇀��szt�>f�\n����U����űAIf!(�T���\'��D��SE�S<��j� ���\r!�\\A�r��&D��#\"TJG���B�W1W��1�F1�.!b���5���D��vD�d=\"�\"��� ��{\0�X��Hb�\"�nC$w^@��&#R��\"�i+g7�n nܜC��E�ƶ\"ҭ��)����$D�z=\"�,�\r��Ȟڄ�!}Dܕ�FܝSF�iA�Cy#\n����z^$#J�%�\nM3Dŕy�c�D��{��O?�!�s�ϫ�\r+��F�1Dcd=��h\0���wѤ�hr� Z.�\"�!u�N�Uī� ����W�]r��O5o�A�����}A�\rtC��WF�=s�A�1Tk�x�c��������q��vĤEbj?\r�b\Z����ލ��9��?C��N#濔\"~9mF,��@�~��X<Y�X�7 V,1��K�U�&�G��ރX���\"6�m�_!��X\"eT/#eʔ��vJH�������A\nr��N䖾)��X:r� ��j\0���\n�n��T�\"5��\ZS�H��7H���H���� &H�=�H}~rgz?�`�?��/u��i��h1�X�4��\"M�G�&�5H3w1��&�Ŷd�E�2�r�i�$�G���GZ.#�Y��6QH[���}{!���������!���#�N\"�̐�?W�.9�H��V�+_�f��OFz:�Bzũ\"�2�#�֍���>�sH�z1�wmy�&y��<�y���1�,��\"���o ���C�79�<�y^\0E^4!�/�A\rH�H`\0 ��#A�$��; �H�&�v �WCB�͐0���D*�\"��H��Q$���\\����9 �a�Hj� �v+I���S}HF�^$��\r��[{��#���B��H��8�)�x���BJ��Ҳ��mod�.2d:\Z��E��GF�AYȈ|d�Ȩ�_Ȩ{6�+Y�+O�ȫF�7���$Dƽ�F�\"����&2Ͷ\Z�V��62���/�L�\"A�� ���pdV�5d��2WP��{H�,E�,!��l�E�C�E�$���5yd��,��\0�x�>���t���}ȧ�5���9duK�vYK�E�Jݑu�#^ _4Z\"_�G6=kF6�6 [�� [hQ�I7�5�ٶ��N�Gv��\";a{��#��.�C�%!{]�!���}��o咑oC. �5�ޕ���i]��,rd�2r4�6��i��d��T��Gc�g,��E+���X29֔�|FN22����)�(��Wo����w;1r�E�B_ �s�q�ok,������Hى\\�UF.}��\\q>��;\rB��\"\'��N\"��D�*�d��dɶ(y�\nJ�y\Z���R��R��F��4Q[����~Gm���V��\nNG���Qj�VQ\Z �[�Q�N�(�^O�ގx���.���K��2�܄2.�B�E���L��P��\"P���QV!�=r\n�=*�(��(�c���=�>������Q=�P�6�G��A9Mw���=QǶ���A��s��P\':-P\'&�Q��Q^�[PޏE(�V�IG�$=�\0��BP�ͨj\'P�G]���\n)��~�������_@���(��\n������`��(�&���A�:P�=�Q�� )�EnqGQ6�P�b6�v&E�7@љWQ�*(�gJ|�%IAI��PҔ/(i%d�B�ڢ\"���\"��b\\mP1��Qq/\nQ�ߨD�pT��(*��*�J��C���B]���I�P���� P��ZP7�W�nF�E�؎J�Ƣ2���VT�� T�tT��ZTf�*k[*�-ug���D�gW��+IB�?�B寞F[W�J���J��Pe��P�]P��* Z�ʸ:ԣ�8��׳��+QO\ZbPO�e���7P5i*�ZgT�U�c�\Zj��^�QM;�����A5��Z���Z�P8]T�r\n�ed/ꕠե����ס��sP��7J��7�����A���i��n�wƝ�w�!T�7��~6j��f������}�����&�Q�fn�7�P�/�>��>\'����E}�\r��PQ_B/�����zo������+X�f*P?�kQ��Q�o#Q���Q��P�!�?O�Q�\r�P���Q�_P����?����q�������Mq�Л���rg\'�r;�\\wZ���GG+�c��~D���[����8�Foyy��\r�5�\r�ꞀV������:Q��oB�5I�E�h�e�@fm�ICV��\r_�@�mE7��f��fg��s�ܣmq�mQ���(އ�����C�� E�L��\'z�g������9O�,���<�ϻ�&9���ɠ��m�./��n[ݎ���~�����ho��j9�Q�����\'}rG:�g\Z�چ�=��>���>JA���F���E��A_<i���IG_��A_R�/�y��T\"E2tߠ�l4`�\Z\r��A%�Р�h��#h��\Z\\胆|8��)lEÕ2��=�hx�\Z��F���|4Np������A8h�q4э���3�4�ch��/4}��fچfz!�̌}h�+4�F�(_��o{�\"�M*F�\0fh�&ZP��E���h�A=��2:4��P�GG\\���\\�����FG7q�1]t\"\"�rj:V�N��B_WA�o��@��D�>��N\'�Cg�UCg�:���\"tn~-�n~:OE�/���g�],@����S�Х�貸Qt��]t��Wt����J�����g��G?x�ljj�\'�n�S��a�)t�-t-!]���g�h@7�$�_Ԣ�M���f�\\t�$�w��Y\Z�5�����3�]݊�q�A�p���ׇ���F���A�����YlA�+g�������1�@!zg�����n���CA��f���N���:�m9=�d=��\0���F�| =?s�[��+�^���W2�+op�5���u�i�d�/F����#�#ۏ����̮bd~�a�-�0������(]�b��c��vb���c�ڪb��tc�KOb�?��l_wǨ]Ũ/b�n`�zoaԃ1Z���g�0:�X�n�9F�7�����������\\J��cm1#,c*AbLG��]}�K��KMu�U�c����l������!a�ʜ���\n1��\n0�9��ӯ1���`�)a[e0G�Z1Λ�1�]�;�9�c/�%���M}�9�ǜ칅9߂9���9=vs�n;�La��.��Z�^]����>c.݇c��b%���qU��SK����b1�G#��l�);���Ơt�1��0�\r�A+�Ơ�1�^\\�s��Cr�Ð�g0��w1�zC��0�0�c%�*�5�p��bx�0��R��HF(�cD��1b�\r������ ��b\"�D!�a���\\��`��v`��.b���c���1�Wp���͘xL�?L�m/&����6�I��Ǥ&R1i#9��L�$����V`���0�����#���7��)3VĔ��)�La��0�8�ʿ�GD�S�혧���\Z+0���Sk�Sk�ԕ��Խ��oیi�`^��0/�1MzL�K*���*�E��i}�ƴm�i��yu0����t�b��(a��(̛�vL��#�����Y�b���}}�yk�y��:�p���[�=�����eb��üR0�~�0��O�0cc��/��0��`&�1M��I�\\�d�f�mf\nU���Z;��z��Z�\r�u9��L<fz�ff33례�q[3����\n�k�f�o̟&=�bFf�k�b�?fY �,g�aV1k�&���0�Z�#f�ِ��lأ0�������B�2���p��yM�|�V��H>V)f���\0�y�\r���4v�#�}�V5��UM��U��j<\n�j:\ZauTc�:�o�;��aw��c\r�ձ�>�X�;�I�\Z�d��vk�X�ݵ8��<i���Bb���j\rX��^W�=^�����j{`�m��~�0w��;�CMaXg�\n�1�;�p���݁u��ĺ��`��b� �|���w��\r֫�\n{2����3r�{��%��E��)�_�s��lֿ&pj+6��\r�ş��ρ��3�X��,��\"������б!,|g:ᨅE\Z�â|��&-Bc1[\\���X�}6�c�87,��,��\'��b�e��²���Y,;���Pna�e�X�w9,��2ñ\"�T���J�~b%,V\Z��~8���Ćf���\0`ÆIذy46��^���P`#��FrƱQi�+(}l��BlL7ՎM�\'a�Ʌؔ��ؔ�9��sl�9��׃M;���y\n{#�{�u����؛+�؛����\n������fd�c3�J�Yav�;^S/&�ܽ����ln�Nl~�#�^��`�\"�����\Z�-6����c��������mؒ���2p2��^�}x[[�ލ���>���}4=��*c��2����\Z$[��[��[�j�}�m4��}���\Z׆m�+¶�b��R�mK�Z��A�؎�l��}�·������.�{l���b��Mb{w�`�:�¾�`�����Ya��|��_c���v�CN�ؑ�����5�\'��ر8�X�\r��H��q+�KT#v�Nv�\r���\"a�Z~�~}׀����������M`g�}���I�o`�8b�8�x{�|�v�p\0�`2��]����`�Ұ�M}�\'G����c�-o�ɘ+�6��d��qʞU8�tܖ�Z�V�E����p�.)�oR�����v�qj�9�Zf?N��!��^N�����i���v����\r��|��Ƿ�vR��v�`q&Π�g00�3�ۍ3���c�?bq��B�i|�,� �,i3Μb�3O<�3����5�Y���|��(\n8�$m�գ�8��8m2�6�۫e��;�g���O�Ҍs���\\z�;��x�w�%\0�t+\Zw�n�,�s��I�8���s ��o��n?���,�ɒw����8_�e����8�c��W\r��_�G�����]h���ػ�,��^\\�]�\rwyWT�A�/� j�8�+jP��N��q0F?qP�@>�!>2p�}�q�[x�P����Nh�p�8�uW~:\0����#H_�gpd�\'8r�E�G9ꋣ��hή8�m\\Ǹ3�c�U��n8��@%\'8�z���.8���8q\'��yJ>�pa[4q�)p�n\\Dr.r� U�������=R��M���ͭ��U���m�ŧ��l�p p w���*�N*��j��q��a������ʝ�t�\n\\�u.#�����.������O����=q����{A[p�\\A�>\\��v�}�\\�� �`bW\\ր+���ggq�Vp���1�=��{z�W����=�Yz���\"��uW_��k�s�x���y\\�����ǵ���Z��pm��v�p\\{�g\\g�g��z���W�~�^͛�/���\Z�ۿ\n�}���<���o�\0�7{7�)7�w\Z7�q7��\rG��o�FVq�=�p�!������Y�O^,�T|=��7������������fиY�S�Y�)��s��yIs�\\H�ϔQ�ߺ2܆�\nn�u3��Cm�L�i�l�m�G\r��]�W����������/��*�S�-���[[��Y�«��U���j��x�}X���^c\Z�הy��)p��,��uV��;b��zz9x}X^?�+�rop��7\n;�7�F�H����S�xE���:~l���~�>-���L���=�V��v��~�W�wH5�;���/��;d��[�GvJ�N���ge�ǐ{�n^\'�n��}����^�\rxߚ/x�Y�)���3�w�϶=�ik�L��\Z��k^w �/���AV�� I>�z�r�\"��p����x`c(�1�C\r��}x�OB��*�pg qQ�lǣRS�f3<:\0��*m�c\r�x�T2���O�;�\'����W��<��<Ւ������rx��r<��<�#�gM���N��l�c<��ϋ��x�kx�\"/z�+�K�]������6|��,>�J��ϥ�#��Sy�+7��W�� Z|��\0>!�>�O>q�,>�%|r�\"8�O��h��\\���9E��O�o���o�!��sX�����\Z&>�����>���>��$�^_8��k2�����_엍/a7��|��e�����z�\n�-|�����Z�_�`��s]���c�����]����͏��-�������L������1|��<|w���z>�w[3�h������~��,�p�����?����Q����?����O���OI�O���>�_��_��������\Z>�ώ4�H*�?���d���r��su[��i��B��Q��W��僋��z��m��~�����Q�G�t�KPF���&(�?Gج_I�p��Rp��ݷ��=�*a{���\\CPM�#��9T��j�^��A!A3b���ޟ�=�J� L\'��t/��������v���\Z��~��s9a�[=��B@���$�F�!X5hl6y�C {��{����2��Y�}�6��\r?\"��#8~\'Q�&A�#�G\"{ G߸�y^�cL6��\Z�ݹ�p�6�p<�1��M�h8K�,�\"x݈$x=3!x�U�Iw �%`��S0�� ��Ww �߈ g��~�q?�)�����v����pnx�p�z�p��+�u�pQF�p�\Z!�D����B��B�\0�iK\0��`���s\n1�! իȷ�k/[N%��\' �k^b�@ryJ ]#�:, d�<y�K��v����� l�H����%p�#��h���� ����Q�%A�bM�T�&D�#D�o���Q���+��v�ܩ&\\)9O��aG�ڙN���K�^�\"�{+����<2!%�3!�~�p]őp�2����-p�V^ !��\n!=�-!��N�4� d&-���١�;˟ w1���s=���\\B~L(��|n{C(.�E(5F(���dі�\n���R��Ⱦ�P�YOx2�Nx\Zu��t�(��>�P�J�+i\'<?:Ghd�$��T!�x%%�ұ\"��Q!�.yM�~&tO�d� �<CzG��_�o���\Z� ��R�`z:a$�&a�Ε�0���0:L$|8�M��~����u§)8�s\\��ѓ��%��n�d�*��%�7�e·�U·j6a\Z�I�>[@��K�#��z��\"_�܇��y�\Z�B�w�����G�E ����GXZ�#,���&��6@�2�\"����D�=`�|�9��MQi�>q��c�-Dg���m���H+�m<8Q��Q�dB�� j��A�4�F�<I����n\"j[��S�D�Q<D�m��!�ĝW>w��\r�\rJ{���D�����0��ɘ�˗I���@��n\"Z��G��t�h�ljh}f�h�\'�Z�m�S�v-�{!\\���\r�}��.��o�U�c_��2�������#��Ot�iHt��Kt�{Ety�@t��Ht�?G<� C<�-�x��1��u��rѳ��}�$�8��\\�,A���.%�a�����E�������/��\'^TGU∁�D\0c�\0A:D��4�\"$� ��d\"��Yp��ʘ$��u�h�ḎD\\�<���H��\"R���;\"�t�Hkw\"2�m��!:������$�rg�l�DN�\"�[�N�v�y�<�P��(\"�\'����cDq.�()X%J!��R�Kb�Z1b�bؗQ�I�<=C���G���%FE��c�1�Hb�8��I�En!�9� �u$&�>%��Q\'���!�҈ij�Ĵ[���.o�;oۺ3�b&e���x���kC��7\'��#���ws�b^n%1�n1�� ���X�.\"�<�\'>xO,~��X�RM,�$VL||�0�C���%֘7�)�!�\Zш���Ć�⋼Db�l,��`�e�b˽Xbk�Kb�F#�� �؉�\'��h#��;J�f���z�=*��=vψ=�/�}iaľ%4�#��ۜ8�gq(:�8�+q$�����E�G��c�G���8��7q\"h?q�G�<�A�� !N{���#��U~#��7!.P����b⒊q��L\\� ��Wv&�k�בB���<����\"iӦ��M�H�E$�G�� IiFRp\")�^!)\"�H�\\Iq,���@R���H��p$��b���+��x#i���$��D�z�I=���i����EҊ�\"iՔ���\nH;��$��C$�i\Zi�ri�Y���drKB2��K2�[M2�P&�!.�veg�,о$��b�7iwXi�\r%���H�z�&� ;E���L��* �9�\"ى\"Iv\r4���+i���@��`��0��tD=�t�Or�&�4ד\\������}_�<�y$oݽ��ǵI>��|�h�|�BH��H��ƓN�>$�q�\'��P ]P�#�[%�zL\n��F\nV�L\n�]L�|ݒ�{�<p���F)��@FI��}��� ��$�x- z� :����U%��H��1�ĝD�2H\"t!�a�$�O�ԛD�G��\\%=�#��TAb\"�*��VGH��ygf��K}Jul����$��$I�)IR�\Z7D\n�\'�_��\"�XRD�ҕ@\"�\n�F��r\')�ܖ�C��Z�b�~\'�e�&I�G����II/�H7�H7��I�&٤����%Rf ��}{�t��%���rRn���_�Iy~Hy�UH�&��kq���֝T`��T�|�T�hGzp6�� \"�T��C*�� ��\'�J&�HegHe�E�2�\0�,G�T>�Tqj�T�X%=��TE�Iz�OzJS$U[=$�l�$�,&=�>Mz�@%=?����#�ɹ�����yO!���+���Gj^��ZeVI��!�V�:�=N�`��q;�����.��\nA�\Z\"���zL�H}i���\rWR�-�Կ�@\Z�$\r��%\rm]\'\r��N\Z>r�4<PA\Z��&�\Z��F��F[�H���P\Z�O�ˤ��\n҄O%i�k%i��O���@������.i6�in��7\ni��Y�҂1i��=Ҋ��R7LZ�NZ�-%��hCZ��JZ���{�H�Y�?72YvSYn,7gG��0�� ,�Ҟb���d�k��m�C����dM�d�\ZY;Y��� YoBHַ�%룐d��K䝤\"������#�86�l�\"�Z��M���f6L��s.ټl�� [��$�a������w�6^��6c&d�wȶ��dۉl��B ١i��%��o���g������%�Q�/䣟`�k�cQ�c��d��ep7�uM>�݊|<ŋ�}��;�C>9�F����}��}��d�OP��Ƿȧ{w��l{@>� �EZ����N��� 8�9p�¡��M�KG�ȗ��o���+���rp�_���T2�S�1�!�:24i�}C!�c���؇d�))1�NF�� �ި��U���zdL����9��r02��*����Lf�#����F�d�P-��}?��QGf���Y�)dVH8�5iL�\\��-�d�|���8���C���k�di�o��ʚ��/9��\r9�����|%�D�R�D�v�B�Y�\'�jg����.���D�k\"\' �)Ԑ���%�Βo/�%g\\O$g���3w��3��䬮d��`r��%r�Ȕ�S G�Y�L���y�0r^�9�<9��4���/rI�����QE�ʎA�:�C~��4�9�iV�Zޙ��(�\\ۆ!�y����O��W|\'7Lˑ��!7�f�G��Mh>���ܬ`In�D�[�ޑ[/�%�f�ɭ+���*���E��o��*�K����\"���W~���.`5�M�\'r6��sg��߾J�\'�n%�Ƀ��f\Z��(������Rm�T�?�\n�<�QA�QSK��nH�)� ��s�� �\'/z-��\Z��ˌc��i��A?�\n�$y#m/�_|.E�o%EN;�\"�nF����(U�li�l3�~ʥ��Τ��S4v�P���(;��St1-�>#��P��������A�i�?s��� ��\Z��.�&�bL�I1����wPL��Q̻:((V�-k7��6���6�f�A�\rt�؍n��S�R�����~@9\0.������F9,�r�K����h�7��\'���c{��c�1����[���/<�C&��yq��\\F9�i�r���d�C�/f��[�E9�{�r�q���0��*��7 ���ݡ�P�p�(�&�s%E���ʥ�\"J`�EJ�!\n%��%X���^j�@PG(0v(>:JA��}�k���\n��=�����X��k)��\n��0�XlL!�s)��J�\nU@��fR�wS�(̗�֕N\n��y\n�t3���/�����(�&�lE�\n����(a%�b%����_J�8%�7%6j�w�%�d��谛�8��$הSRe()]�k���k��)�<G(i��)�i)ZRn|��\nQ��S�R��+)�EJ�?����(y(\n%�H�wb�R�M)�ͣ<\0���l�O)���m���Y�R�҄��{ޔ�E<�|�\'�ao6�r�\'��Fyl���ÎR�4HybmA��bSj�)u\nw(u�\0J֎R���+�Q귟�<���8���$/Ki�\0)�z(�?(c)�m��Ι\"�K���,��.��J�s���u�۷�2�mKy�0��~�C�x{���-eL�H�Rp�2y]�2�:�2U\'C��B�|��@��C(3�)?,�(svU�_\r�_��)�(F\')�\'�)�&����=�Uo5��e�k��n��@�l��S6Xʿ�9��o�/���(>U�{�*OJ�*ظSp�T�3�T%�3�� U%ϐ���g�_�j�j>NT��TM��T�T݆cT�&U�tU/�#U/�)u\'%�������5��U����TӘj:>L5�{M5o8L��C��L��dA�,9M�l�j�ӎj}7�j�}�j� �ږ8S�,Q�Q�,��DR�{P]~n���?��^�Cu�6���`��T�u���z�R��S��zZdM=���z���O0�������^P�@�@٠^\n̥^B����[��y��l���t*Dk�\n}�GE�%Q�����G�T�\'e*j:����b.S�؇�x/��B%���\ZQ���^1�:��J��Ҋd��vs*�s(�~b�:J�K�P#AT��\"����AP��P2��\n�G�B�*V|B?T�J�TIw(5�ʋ\ZzN\rO}K\r�I\ro�H��+�FW�Sc{�q`j�A25��r�JMݩOM��RӞRo�4So��R3��S����Y*��¨w�3�洞�g��_TQX����`jI�.j�wCj�^��F-�����m�Z���VvS�\\�>�S���>}B}�ʐ���YjmC=����#�6��/�P�jܩ��7�m���>��c�kҙ�{���_dM0��<���]�����_�S�=�ԑ�ԑ�z�Zu�N���=�:��=u|1�:@�~E��h�~kPg���3�9�L����%���>����\Z���m�É:W�L�Gܡ�6u�.q�Q��ǩkwP׆�R�#����S\"�?�c��gi�p4YSM^H��gbi�)4�\'�4�o���㴭�r��ji�rB�jB!M���y\'Msl���|E�k~D���D38�A3\0�h0�����;͐�fH���yь\Zv�L��i��t��� �|s*m�5E���Z��4�e4��W4��4�Ek��\\?�nƘf����ϭ���v���`�.��}�@�I#��w��t��YÊ�RHs\r�NsZ���_���٠�yJ;�����:C��y!Kh��34o&�vr�(��L.�G�D�Y��|�,�|��h�)\\ک�+��^��3�:ڙ (��\\J�/<E�����@;gL;GѦ���J;oͦ�)ӂ���0��MQ�˦i�!x\ZL�#\r�s�m���1iHY\ryX�����04��\ZZEíw��1_hD\0�F{�����1u�i,�X\Z���V�ع�4Ε\Z�h�3����&� 7�4��q�tږ�MJE��ѐ��#��i��dZd�4-jԆv\r��8��\\��F|��W����iI>bZ�c�k�ߴk�Jii��h�_��n��`V�n�O��:IKW\0�2��2)�h�}��,�-{c�vg�ZN�-����=TG����1��C��\n6li�[��W�����fZ�v/Zq�\n�D��V��J��h�����_��������i�o7�{C�Қ�=�?A�nI�=s��=ü�={�E��ʥ=W|Ek��\Z�� �az/�ae���!���o�5�m�5�Ok�\r��伡����:HZ�T\n�e��+Uګi�k�Z�>>�+ܚ�](G{C:D���O�9�E�}}��w�J�+�L{{.����F{glK{w\\��.|���3m@ߒ6�~�6�F������K�i�+�h�\'Y��ϿhX�h{Ri�tKi����}���}�~I��a�6XK�H�����&�lЦ��McҾA�h��4�w����l��\"�6[,O��}A���~]��2�~��-=9J[j}I[>�B[y�������Y�hk���u�z�ș���D�h{L�Xh�����}u�˕i�+�t%�j���JQ:}+���� D��4D��_G�h�Eט��5�l�Z� ��5�6Lז��*��u{��\'��� tCS���,�h��k+��˶��ۣ�ne�O���B��\ZG�L�[�~�m���T#�]�8ݮ7�n7J�[�G�+I���\0�2^��u�G\\At��<�So����� �=h��>w�~(�{�N�=)w�}�tύi�����N��dL�e��}۰t�?����OKE�3����=��t�&ݿ�HP�\\�M�뢟����d���3�ͨ�{+��O�/);�/%��/��Z���Ӄ�S�y��A�t�+:�N���#7�ѡ^tLP 3x����K�>o��D:��7��/��N�~��Z�t��U:�?�q�-��(�Ρ��9���t�c}�pAgW�Ņ�t��a�T)�.�Lӥ-9��hz��z(�$=��nr�ζ�_��_�I��_�����?=�\',��\',�����{�ӯ���i�A��6=��\"=��==e=�W\r��N=�f��[\r�߽}��wp\'=O��q�����������E��>��ҡ���(��d?z�\'��������_��o3�\nN�j�m���jt&��L<�٩i�3I=��u\n��Go8�Eo�j�_���_�p�/������[���-���V�jz��?���Nz��.�s��e���U�F�?O�6����_�\r��f�0a���kN�w���,��A�>�� m��6�/;~����ǝ��\'���7��\'�������P��}^v��G���\n}���|Ӕ�\\B_Q��W�����W���W��W���^�5�\n}�h���z���SJ�Xf�x#2�\n�}�w;r�\n��\n-R����b�I�RbC9�+cs�\"c�M?c�2c�5e�����܅�y�Ш���L�eh�3t6�1v�_g�������1���F/�3�����H��E�iv�l�!cW�òc�|ên�a}}�a��ú�c�3��wh��wÂa�%þ�+áuc������~�\r�\04�q��S�!�G�^��4Ƒ�$�Q�J���H��KƱk�W8��:���G2|<�2|}��1����3Ζ�1���䯌�KɌ�+&���ی��=�s�Aƹ<�ҹ%F�\\(#��>��JP��\0� 3�Q���3`��(�ST�;�9��~�g_�=�d�?�3��NQ|�A��f��V1��4�=.���`0>1sGl�-N�#��,C<q�!mA3B/1\"��3\"���팫Y����|F��ˌ،F�kEFJ�#�H�\01�T������w2nP`�,Ke��,f�j�e�z�H��~�#������ʸcg��_b����8������WF��\r�0��q�;�Q���Qԕ�x��Q\\��Q�q�Qb��(��(m�e�2���3��O5J-��N1��!����x�h��f4ƴ0���3Zw�0Z]��\"cF{�wF�5��!㕎��݊f�Q�g��^c���e�u2����g��CoI��匑m!���;����\' �����Zr���ތO?��1>�3c���(Ƥ�<c:P�1��ɘI�Ƙ�����������e�2�a�r��X�|�X�Y�����zʙ��{��Vgl@v3e����ϭ�r�3�g�*V��-{>3�F~en����f��Tߕ��`gjT15��fj�����Ǚ:���\\<sǏ+L=�_L=�����$s\'��`��f\ZNc\Z+m0wi�2�v�gZ��gZ_ 1�&\Z��r;��\'��D�C$������<�y�ɚ�h��<rǜ�w���t�>�<&c���0]�������_LoD�;���N{�<�f�x��>>K�Lߒ�������g��L�ӿ�*�®���l�?���$��O�L@3� ij�`n\"��DŽ�J�poe&<K��X)a\"}ҙ�\'MLt������1�k�L��I��gR�ә��E&�����f2Ho���L�����d��e����,�����S\Zb\n>�3%�\\fH�yf(�3�;��8s�`̼\";̌��Όy{�3�̌�=d��e�U�3���q;���]��}��$�,f��93��of�m&�z�7�\rs�����[�̌����N\rf6]��N<ͼ���b�y� f�T.�N\r���-�Ш�Y8�̼�1�^g>Xg���3K`�̒�rfɌ-���Wf�{1�R�\n�r)�11�Y��ʬ�[gV�f1�މ`��Ù5?��5�G���J�ϝ���h�&o\"��e�Yv\'���3�M���/�ݸ��Nrgv\'1_mQbv�^cvA��]Y���ef���K�b��_���������On��cV̱*�o��8�L�9/�a���1�L�1��2��_0��^̿#���1��c(kS�-K�;�%w�K�������Z{��MV������^��R���R��bim$����,m2�����ڑ���Ua驯��X���X;�IJ���f��ϱL��<�,����B&��هe��dY�\'��L�XV b��!u���,;�(�^�D־�U����X� �����֓,��/YGV���N���XǰYǾ��\\R+Y��Y�ì���,����7t��ߒ�:G3a��L�.&g�ಂ�;Y�7e�.�JX\0S]� �x6�f����,����t�s:�B\Z��� wY*�����\"�ճ����19ÊE��E]�bqY��a,V�A{;�Ź����x;�,��v�\0��%tmb �Y\"�K�4�\n�teE �\"wڰ��YW��YW5Ŭ�I�XѵlV���wŊ;��Jֳ�w|`%�h�R��R�Y��6XcXi[�Xi����*٬���[�ڬ�\'%��Ù�L�^V֎V��3+�~#������r�m���HV^�6�`�+���z�q�UlN`��ֲJ.γ�丬2\n�Un��zؑ�z��Ī8�Ȫxd�z$��Uu�ͪ Y�7��j\r�Y����f����{BVKB��p7�\r5�j��cuDmau�g��O��.�zY=�\'Y=�&���\r�;b?�߀�ꯖ��k�YCvy���ì�6���wֈ�N�ȡd֨F\nk�W�C���\"k�ބ�EF���_/k���5QYǚXA��4\\XS�Y�o]m����R��i��C��U�O�5֜�<k�7�5��5k~Ŏ�g�)֟x�߉��i֚dk=�k�k��������iv���v���V���V����\"؛7�7�|�*���-�M������9���l�S�&ē�����ZB��-�;v�wV�e���`�ay ٦ƛ٦�l3��l��l�8۲���;��mcz�m�p�mg��v� f�+b��b�_gJd; ����l���ze��:y��&w�}�(�a{v~e{)H�^;lom[�w�%�w�N�i�g�3v@���쳅=쳕��g��.���Q���sg��Krc�K:��`b&;��sv�����\r?6`U�\r�!�[�P�l�y6�F\\�a#U�٨��lt�G66Z��W�b�=β�(96Au�M\0k� M�l��16�Y�Mv�fSj�,i0��7���)�c�l��l�h�[���-1�eK�ؒ�sl�H[Z�͖v��Cɇء���a�w�#���#o����Q�l��/��h��옿e���G�qS+�P;��Cv�fUv�A�\Z�N�沯[���\'m�7Wmٷ�F�����w2 �|o);���pފ}?��~�v����|�]br�]�Ƀ]�[�.W�g?Ե`?l�®�sgW0&�U�Xv��~\Z��]c��~��®eE��������-��U��^f7_f���ح�Zvlj-��.!����V��9���S���~k�a������������N��Ln����G>y��ǜa����~�������Ö ��c2��6�c\r���G��\'�ϱ����S���o��1`O�Q��>�w�6��\Z�ϻ��}�_A��_Ir셳7�쥑�액0�_eS��c��\r����\\�Y�##�ˑi��lJO��e�r�Q8����j���G!������P{������|�6G�R����l5���\n��l�}�l{0��n�َ|�Q�as4�8Z�~q��st����b��78z?Z9�679��`��Tg\'�1f�8f��9�!:+7g\'�c]�X?0��\0?sl��q�4g8v �g��g?����w�C���#�E\Z�`/ǹЃ�R��qy�q�l�ad9ne�9��9\'�9N�/-�w�u��9�iY�K%笧\r�l� ��Č��S��#8p�O�s��\Z9�N@o/�RP=�RL\'������<�\0Ɂɐ8�G�8���\'��[��!�yqȖ���2��*�P��s�WW8�uWM5�C���0�i��MsO��C�-�9�c_9�eW���*GD7戾�sBg�p¤j���O8����g8��[��t2\'�G3\'!����Dž�x�I�>㤍s97-87��9���8�Nz���>(��(z��N�ʹ�1������p�r��Zq�_�9�\n�8U\'8���O9E������41��S(��勜Dz�9��o9�\',95��:�1N#�yq�%�O�ņ�i�B8-ɏ9-7z8-��VGNk��\r8�i+}�i[��t�9�����b9�\n�8�/9���9]͖��noΛ�LΛ_#�^��ӛZ��~��3��yk㼍�伣p��^r�os��r=8CӜ������X�+_8����8c����!!���s����GOY��g�9��8�g�9�e΄5�3y:��[\r�����OoI���zʙ�����͙=�ę���̲�_S-8o�q���s���9K_�sV,�sVNpV�9P���\n��[�հ3�5�Ά9��p��)��+A��ެ���ĕ�_�ʍ���R�|IWٿ��<9����U�s�� �-�ܭ ���NB��W8W��������������Վ���8�ru��p��s\rBV�F\rv\\��X�IB%�<ĵ��Z����%qme��v�_�{�)r�~r��p�E��>krB���XM�C�ù�Uk��Ho����#��ܣ�&�s�^��.��\\��Mo���=���{��?�q�C�qi.�����*��\'�^�zx�p=�I\\�?�\\o-9���D��ړ\\�����\'?q��zr�6�q�q���\Z����\\�X����m����\r���=g2�=�=/P�^���^�����GFp��\n��?�`�[\\���x��c�и8.� ����������\\l�_.��a.�]��Q����.�ǥS�p���l/.�� ��&��),�r/ ��F-��^\0W8��Q�ͮq�yd�D;�+���J_irC�����0�#7��$7r�ĽBs�^��^}��� �#���(\'rc�Ǹq?�q�s?�s��� 9nr�sn�nʸ=�\Z>�{m����ʽ�t�{��Ͻ�ȽՐ̽g½��f�_�fڸ�\r�YVmܬ���� %n��!n�P7OΒ[�^�-<\'�-�[��g�s��m��4neF����[�)�}���>\r�>�1�>3Z�>s��>W\Z�6�!r[��1e��B��G��[�r_r�����?s���s{κp{�����`y��]gw�\'�;b���m�w��?��}���`��DL�~����^+�!�x�E����7wj݈��s7��3�[a#w�{�;���Lgq�۹qW�|f9w�Zwac\'��_\'�ҳ=��sܿ\ZO��y(�ڡ�Z�w� ��m��(������/�/O�xOf�o�W�|�A�B���+e�6t\'o[vo[{2O�O�t��������u>��l�]�y��<S�<�_�]��y�\n�y�\0�:t�g��̳�������dy�� �}{y�fxGd�yN��<W/�xM:�c7��yy��[\Z�sy����yU��:3x�^�N�N��\0��ΠA�3�L����v��1û0�]T\Z��n�w��òx��&x��{y�G�y��P �%P��by��<�E4�OZ��#<�+j����!�*<�b�����H�N��U:<b�t��l1�#W��(�c<��C�J��L���4���wÏ\'��� ^��j�xB�4O���rx�D���O����|1ㅾ��E��E�)�E��yQp>�J_��e^�g/��K�L�Z�R�n�/O�nD���h~Ļ5��w;�2/��/��:/�?�ˊ����*���;���;Kxw�������=���k���|��;y�w�~�wo�� x�w�+��=H<�+��U^��U>��{�<Ϋr�«z��{z0����~^5��W��WÈ�ժ��D�\Z�^�=�b�i����ע�k���$��0y��L\n�������\0yoH����h^o���_H�\r���\ry�[y�1Wx��yc��/\Z�x_�xߣKx3ɏy�Ɠ���x?2輟������/�ޯ�o��2ޢ�s����_8��w���z&o� ���/��TST\"S�4_.Ć/Ϯ�+x�e�������Oe���`�ʷ�-�l�[\"��[�\'�[��[���~�o{������W��䫷*�5���5=��;�;�uw�z��|}�6�a�o�S�7�7�f��;��jd�q�o����|�\"\Z·T��-/���7���F|O<��X�o[r�o��ķ���o7���S����-���m��F<���A���d�!1�X����-���i��+&��\n����w�?����?��ō�ܐ�?v\"��y��>��٬�?up��5������3�|�$?\0����?\'��?�\'�>��>��6������y������#|@�Y>��·~�aO���ZC|��$����}=����ǟO��36�>�N�O�)���T��|Z<�O�����|��3���0��D��3d����|)� _�z��-����\r���ԓ�a���H�;~���պ���X�E~�?q����7��,y�O���W����T�����N,��\0�t�����by�zu�9�y~�C8?w�����/3�����>�K�w�K�F�e��r�?�!$���a����2��=�_���?��j$�/��kr���_����:�N~��2���1~ü\Z���~~�:��\"��oY7�iD�ۇ�������7�_˾�������w������w��/�+�Y���L��!s�pp0�����\'��a@��ٝ��|�?Ꮕ���>ʟH��L�5�3S�?�n���������z�_���C���o�+���+CB�\ZB��F��ȕ^ȕA�4��X�@�]�}3@��i��X\n43���MZ�.�w��\'���킝�%����?@mB����\\`�)0���wFr�F�R��%[`��D`�����̇�قݡ�V�o{�6��}p��>J`� �{N�u��_z+p�O8����~�ws�Y���%8���Z/p�2(p��G:.�B��`���G�N�-��Ix��,��^,89�(�)��T=�i$�Y�F\\�2\"�Dy.�O� ������\0�(\0�������fU\0�=$�x�2R�xA\0z �3�O�\0��,�\'% �:T�W��,� �^NP_:\n����s᳀U�\"`�8-��H��g�[���W �*@�G���N�(�@�m\"����t���{U�.���D�����\\=�K�Ċ��8� �N� �FC��I��|B�HX$fn�~��ϞR�����!��_��gy�?/\nn������[��NA�Z� �t� �|����$ANP� ��� �k��n�A^�1A>v���f���K��`$(�}ܷ�ɿyf �J����e���\n뷂�\n��Q�@�a��\nLT\n�$�ճ��N���^\Z���s��OY�&:\\Мp@�<�G��K�.x.��,�x� �dr��]���/\'/���W?A�����rX�kt^��� �c��5�OWy~�A�`�#^Q�X� F�G�s�>�?|8/|���Q�co&>�ɣ����-��F��ogv\n���\n�s ��߂�N�L\0]0-�Tzf�>���b���@�Bh�`፫`��_���_�,���%���&�A�\nPo���S��`�P��}�V�Y�����4��\\�P��[���\\�~�Q��vX���)�.�j�� u��B��\'� ����iB�FK���CB�KyBc��B�\\� �Hh� 4ש�מ�28*�Uo%�\0�-} B��vត��ֻo\n�SIB���6�Nh��]hwZWhw�F���H��(�O�:xB����}�t��S���g��de��Ο:^�#t��N�\'�N�6B�2�йH,t�y ]�yB7W��sx�ɞ�B���B���?=_�?���X\nV./�^�^�R\'�f݅A. ��`����V�����BP�m!���.P�BUnawBػGB���B�W�$�\nQ��BT�P���/���\r_�؏}B\\.I��z-�\'V\n �_�$�!�i!$�\"�d��B��LH~�R�O Y�.!++\\�M�&�)\n��Ba��P�n�/�C�f��=�aa�J��\n�Hxu�Q��!�ɫ��v�\n�����/ S��}ׅig\Z��7O�;U o�b�7so��f�f��\n��:�3;a�IyaNj�0OFF�O���6��K�Z 뫅����\"�.a������Ea�팰�-DX%jV� kb��gog��+a}m����V�|W���地i�幡�Ê\"�x$��/K}�/_;�_��v?�{v�{�����o- �I��.L�XC8�$%:?:m~��~��F���pl�R8�Z _�-�r�$��\"�ڑ(���*��(����p���pv��Ɋ�w���i�pp�p\\�+/�}*�ݭ$��rQ���,\\�H�M~#\\E����� �}=*�Ԗ\"R85.R��P�0�N�x�H1%V�X1\'R:)R¶��ʓDJ߶��~m��m5\0��;��ߞmO��5�T�>�t�_E:�\"�|�hǎ����s�Ȁ��=Z뉌{~�L;��̯͉v\r\Z�,�lj,-\"��N�ŝ\"+;]�UHd��[d\r��l|�D6,�mXd�,�;�Kdo4.��Yd���hC��@e�����P����}�Êˢè�����i�ѡ\0�s�?�1Ɉ�Uy��5&R���&r����Պ<�@\"�s���բ�cY\"�f��?��o���>�u��l�_��H��MtN�Jt�|Ct�����CQ�,J\\�-\n~�]�Q]��.ȊE@�r�f�d�G�k�\Z�D`/��.�*��/��]\"�9R.S�̿*BGD�T��ᔫ����D��&%=CD�.��؛\\E�6W%E��FD���\"���H�C��\"���d�UeX%�z5PSzK�)J� J��%W�R.N�R�/�R�Ei�OEi?zE73o�nV-�n>ݶ6�me��Ew�ʈ�l�4�����\n���_��/\r�T��;��J��R�WQ��K��;����f�\n�����vQE^T1�@T������eѓ�EO.�=�|Z�!��D�^D�u1��2��?��$yQӢ��E�OԢ_&j]:\"�P<&��,����^�^PE�~w�^�rD�\nD=�E}�w��)Ȉ�>���6��%�Fb��$S����羋>>�}!����͡���h�ݒh��1�%��}��}�i}+< �N���qE��)�ٿ��4��W��k�_*\n�_GzD&�D˶OD+�����*���k��G>��������V��Յv�ZܜhmH Z�6&Zg���&��.l��P�\\�m�\\s�X�}�X��L� P�D���w�����߃��IbM/�fY�X+�X�u�,�.4먿���z�b���(�Zl��.6M�M�cŦE�b3{%�!b��N�ŋU��U�n%w��+�xOA�ئPFl33(�M���t�U-�ŵ��\nR�~�b�����x��K�uw��͋��?�y�+v\n�#v��S|�`���E�3$J��Y�f*v�[�֧�O얈=vˋ=���^nb����ްb�h�I�W����S�D�fS��>�]����� ��s����^�šq��q�8(�8�G8{UD���ƅb�����/�T�P\\�\Z?+��t�:��asnb�f�E�%F+���GĘi��\"�\rĉ A���M1�(&++���b��y1��q1Ͳ]L�}+�k.��~���@k1��W1��sO]��j�>6��۾���X�.�����Ž�b��-q-�^��敋ö�ő{��Q���W��W���q�_��\Z�� MHqR��8��S��Y\'��������5�i����\r�>߲���[��z�3���+�6sg���{~�sFN�s��s�t�y�qQ����z^\\|�[\\\\9(.�&�K�ω+ߊ�> �b��5�/�gԛ�:�q}�7q��5���Bq�����eUܴb/n��� �c�mL���q�s��#PGܑ ���w�_s��~�{[�}Φⷼ{�W��ߖ����CM�����g�C�}��L���\'��\"����!�����\nD�ْ+��:,��)�\\pO����(�>�$��rV����xflV<{&K<��*�]\"��&�k}!�kg��]�Ŀ�6�J�+���?�q�i�x9\'P�W�\\��+^�So\\&���8I6��I䯜�(��(Q�$*V��/9�������G$[C�%�~ܓl�� ��-ѾrI��8W��wO�c�U�s\"љɔ��)��J�P};�D%1�x��a�Q5Ob�f��h�Sb4.1�ђc{%�B��䝅�d�[b��Gb8,�5}Vba�.�m��X���h�%6��ͻ�[3������M�^u/���U��Rb�\\�_���\0�KrdjF�l}F�Z$q�H����_ �x\Z`$���%�>���,��u���T��덑�T�u��1��19���DI�)��^��ג�ݒ�?%�${�K�\\�H�.�H\0ƉЎ?��+\'A)��`2_J��| ���n%d�\' e.���.�7p%�n���X�ֿ]v����+a�>�p�H�rQ^����D\0\0I�D y-ԄID7$��U���$dO��+�螕\\i\r�Dm���<��DH�G%qubI���$yG�$u~��ڋ����_�$7�F%�I��nI�$SrgAM�K��.�왔89H\n�K\n�I\n�%�����F$��%�l$ŲI��gIY+ER���<��%�76I��I�\'$�{�$�y���0Ic�Ic�����%ɋⳒ�3O%M��ZwIӜ��Y���%#i��+iS5��9B%�~\'$/�K^}��t\'VH�lz#�)�\"�)闼�����(pcH�\'%�� �!%�d84F2����h!��T$��gT2&|!��|�|�|)��|5���|����$�v.�o*��~h�w��dF��d��d�m�dV�d���n��xɏ�Ò�x����_;e$��z�?�Y��b�d 8/YJ�I�%�$��H֔~I֎VK֮�J־�$kS.��%��cR�i�M��RYA�T���T��T�TI�t�u�T�c-UiL�n��&U�ǔ���\"���J5�Z���o�:�T�{�T/IW�/{N��Q���T�ât����$2S�kǀ�r���y�n9��U�t�$��.�Ԧp\\j�= u�aJ���K���I|���̒r�:�b�G���c�S�c�\rR�n��ۀ�x����鉕�R��F�W�{��\\��dV��w�RzʠJz��Gz����L�M���Iϗ��K/{K/ٖJ/5��J���\0{)�cJ\nB5KA�3RXƠn~V�� ��O��f���/E? �b�Rl����HJPt������R����luPJ�Q*%���Rjj�L)s�C�Ҭ��,ä\\������ͅ�\0<��*QFI��\"Y���Df!Q��{�GeSv %���\n!��H������</�9��{������s�9{�\09_U\0��;=��\\�{@n�}@��K@�Y4 /np�\0X�\0(�\0r���\0��8\0��\0��@����1\0L�\0k�����\0��\0��>\0�~5�R1�\\\00ڏ�q�\0n�����$0\0Bd@b�\n�\\����\0�_\Z\0�\"���4�=�5@�\"@��ǀ\"�P�\nP�,����n�(��\r(��(���3\r\0�JV���JMg@�T7���:�v�:��>(��b0�ic �!��L�^�F:N����\'|@g�\Z��\0�2E\0�;x{u\'�-F���$��o�a��N�G��S�3@o�<��v�_�\n��hk��\0�PH���:`��0<��R7q:�{ӕ\0�^� ��L��L2\'S�/���\0scJ���������J?�+���\0�]\0�V\0V/���T�T\"��w\"i7_n8x����ܤ^T1�n>��\\3T�TM�T������_�\0��f�[c���v}jujm��w8��p9ԃӁz/�;�\0\Zv�v��FK%@�Y��������c���/@����C�O��n�@�w��#����Nm@C{�.�Ψx��Б�<ct��\0�Y��S��@w�c�G�c��c�3�o�����]�g�����5���I������йM���ہ籯��\Z/6^l��؟��[���+���N/����/`�S:0��o`��0��c���,�d�nf���^�k�>�^}�����܀ �0`\"�>�c�I�?��)0eL[�L�� L���(���\03����[o\n;�ٯ�s^�oW2�y���wl�\0P(�l\0z�\0A�s���X ����CO���E ��rl��k@x�x�\"A\r@T�^M⭽�D-K �0H��\r$b���g�@*h�:�Ȋk��@�%���n�rm��\\/)����&���@���@�:)P|���%�n�t�&�L�(;:�oh\n|p�\nX��+�d�3���?K���5�G�����jϣ�Z���ړD�co!��E��}F�����́O��k{��¹���p�f��g\'`+��r�u�K<��H`\'�%�s�9�`W�\Z�kp��{<�{��f��g�I�G���9�\0)�E�\Z�%�9��pd�\'p�u���R��7p��-�k�g�T��p��y�788��N|�~�h����:N=o�XZN�g��n^��{�?#�|���끿z܀��?!*��- ����5K{�ڿ� ��X��2�_hC�e��IC�2���D����9��v���\0R3�R��Uw��y� ��x�z�I�V���>�9�x\nҌ�i�R@�A:�>�n���� ڡ��o��\n�u`dX�d��Ø ��X��D�ɩ� �)��_$ho�>��wо<�Y�I��P�y�:�EtЛ\r�4�YiYm��z�d��:��\nt��g���:��Gd�=t�K� 4���ܠ� �_gA��A���<����x /�\n�W��I5��h�w�(��\n�>u\0����|AA�\Z����7pP�r$�|���Ѕg�Aa�����@ᛋA� P�)(�\r����VPE�����j���������\0%�Ԁ7�AI�W@)0Pʵ���%P�`��\n\0J=z\rtc�,(��3(��1(�/\Z�ɉ�|�8o�\\��Y��-�\0�Y �s+�j�>���gA��@������5a��a��@^n�/�r@D������h]A�a\0�]�0I �s���CAB�a�(#$��$6P\0�6s@r���S\r*(oV:�\nAŧ��J鑠2D���\Z��5�a�K�#`?���OPm�)P-OԈ�\rz����|��z�\nz!��([j_+u�n��2�D�@�Y�z����P���snh�4�����<hd/\n4�\Z-��j{�\r�4��0h��(h�54��4�l��}4}�hƥ4{:\04\'��=���������1�#���VM V}���� X3������T\r����$�:���ی[��[��}[\0o/\n\0� �>`����l|�l���\Z\Z�������+O�{f��&\nA��`���`�q{�+�����Vw��/�`[�n�m�ض��.�||�=�q��gB�ÕB�C�81\0>iH;m�O a`��`7�[�{�2���;��2�̍�`��X����R��5�K*�> �Ϻ���̂�\'��AY�� �^p�h\n8�} 84o�/UGz\0���ς���cN׀c��Xo*8����F\'Z�\0\'�~_kf���>�S��i�d�4��Q��C�~�\n8�J|�8��?��m�\\�,8��|w~+.VB��08�^Cg��|�\n���QG��Q�3`�}F�;��s����0�Z,��&[����`�g\Z����2����`��=`:�\Z�ت��\0s̭���`�����`AX�i\0�-%��jn�{�������[<nH:l��e���[��*��y�G_<��Tp�h\0\\|\\�HWǶ���!��8�i$�T�\0n�xn: \0?ف������`p3�\0�T�\rn�k\0����RQ\0w<�w�@��Z���:A��I�o5�?x���[����Oʑ�>x\n�O�WX���\\���<�z���xd3<�-�`m�����.��kx\\C��_Or.�\'_��lO�z�g������Y�9��x���:���������/�i�߀��ך���!�ޏBL$E�y�\"��XŃ�?��0i Q��ٜ��l��QcMC����}��\'/A��`��w����;�M�2D��;DDZ�˼�[?�3���<�wɄ��C�u ��V {�����AL�� {�CL�-B�m? 1GC,^�����\0�X�GAϸC�6�=9Z=�nQ��$)AlC- ���}��x�ȉGg!�j!n{��\Z�{=�#|\0���C�t�A�LtB�l� ^��\"�F�a�@|3�!��H��\\H�^2$�� �)�\\2��\\JC.���D�I!�_k ��?C���@�;-!qkF���0H��k���%9�Z�zȵ�y�u�q�uHZ�6ȍ !��\n� �C2r 7��!Y� Y3��슭��qHNk8�v��v?rg;\n�������-y�ۦ�C��\0N@���� ��@���`ڲ�lA;��`e��s��!x�C�#��(�Tl!7@�\nK�A,��L�y�Ah�� t�!�O�r�j~ a�A� ����A8� �*D�^���f \"�\Z�42\"��\"3� ����y����# �=�!ED1����dR��Rfy��Xy�6��l�Լ�������#!�\r>�� \n������i�x\nҔV y�R���I���XAZW!��@Z;�@^�\'A^�{ ]�HW/���.�an�|jS�|�� �գ@z}4 �OA��!�>�\\H_����2�U �2ԑNo�|9/�L\n=!�ߓ ?�: ?B.@f~�C暝 s�\"�O�M���M�y[m��\"���;y/�w�mȟᓐ����鐿�q��?r ���!�>d��\nTq�/�Ju�F�T�PU[����O���y�-���G@�kc������\Z�Pm-$T����A��Q�n������1T_�\"t�it盫�]�H�Ab �5�59��pwB���AM<���辣������9�-jэ�8~z��=�!��!���=jEp�Z�s�GlУ��P�-P�o�P��P�d豟iP;�7P;� �~�7�a��!, �� u��:U��:o>uֺu=�\nu�v��ƻC]����AO�u�au�����zn|�T#Bϰ��ޱ\'���P��CP?.�W��;�@dnА�%�s�=�s�����Cô�@�A/]J�^���(���wh�-4!�M�M�~z]��z4��?M�.��~r���Co�j@3R����[Л\'b�Y[j��.�����y���;8�iAA�Pp\nIj���Aa�����l�b����+PB�(�����Z�Է:P�.�3�2\\������t���?@(���߀r���<��PI*ԫ�\nr��O�x*\r*Q*�JnhA�oiP9�z�����.�ȴZ\Z�-}m\r}����Z���C�2hU��Z+ Z��=���`�u��LjF��5�ɖ��\'���\'����&��s��Fm��B\0m\\�>�v@���@[�|��Z�-���Vy\r��4�:�ں��4��\rm�=}9�}�}�X�8�\r}gLJ��_��d�~��~j�\n��{\r<�:��b܂c���ow@G��#�q��:\Zh\r6��.��ce�X �5�1tb:y\r��XBgb�B���\r�B�zB��C�e@�f=�+��Z]t�c���t���[�[�w���lc�l#s�i�\'�J�^��C��+�0���0�m/`jϘ0��qؖd0lK)���L=U�N� ӹ��U���?��(��1>3�+���a{�m��!a&�\n0�۪�}s�0��a�G)0�6��5��a�����`�,��,vh%vX�b܇Y\'��s0����a�7ra\'���;�S�aN�oa�.`��^��$��|�y�����^��aA�s���߰`x=��Z5;�vA��4��\"k\'aт���M�`16���X��,���+���U�`q�XX��yX��CX���(#���W`I�$��n ,� ����Y�e��a7eʰ��氬\n��4,;B������\r�Y� g��`G-�G�!��a��.0�<��g��e*���a��a0�?% �FVq���n��9�a�9%�F��cl�c��\Z�WƤj�X��`��{0�ws\r�Ż�x�0�F��c��`��s0�r/L�u&��IF00iuL��L拆ɿ���S^���K�����;}�؇�\n�����Fa��a��\n7eXէ�\Z�.X]��1��\0��\r���5�N R�3�n�ss��~��6�<���T� {io{y/�1�ֽ� �\r{7�#�>��S��}�~���\n���,�}��s6|�lT�\'l�_8l|�O��l2�6�7\0�!�¦w��f\\�`3�j��lN��s�\r�`��zq\Z�xV\r��0���i��;���Oؿ��Zyl����X��w��_?�W�l�D��r�\\s\n�\\��k9 �5+��[�w����ޅ�\nn�74��6$��<��ໃl�{���\\��*��l��k��=?7�\r7�S��X���r�����_��̂~���=���?���Z����?V��k���pG�|���S�9�{�ܽ��v����n���}����dN�Ͼ����:w�A��/<��B1~���X2\0��v�\r<,� ��<�@&�ʂ�j� x�a���w��z?�)�%�4<�o��˅g����u�g�^���\0�fK����sZ�wx�+�<�c���T8�����/��O�a!��� 8�c����������$8v����G߃��p��8�N:���xFp�\0N�j�3�M�02\\&���p��9\0������,c�\\��k���g�ll�\Z��9��ŋ�v:��W���^y��Zt^��8�!�^����DX�7�19\no9�����\Z���f��/W��]���O��8��oʊ�o����� �߉*����=�����?�,�u.�<|��(|��G~^��~섏�����>|��\Z���v��>*|��I�T�\'|Z�|f8>�z>{p>Z����������� ���p����jy�Xwt���P�PG(:�F(��/�!��qBl�h��KA��n\"�0����\Zl\'�&���1���Bl{Ѓ�l���|���@�L!�¢z��������!v�|B�!v5�#����X���n�q�=�xB�\'�\0���0��C�|�0��A����؏��0_~��p!ȶ ,mH��jI��ZQ�#�O ��#�6W#��DX���Dmĉ����\r��\'K�\'�i���)��)g�kN\n�t;�y�q��8Bx����o�v��o��#���m���*D�a.\"��ID��uDP�DpX\"D#q.���@��B�N� .ToE\\��D\\�Ba^�0�\0V����?�������BĜ�C��X#��C��IE�E� �����f��D�.D��iDe\nqݧ\Z��g��%����H�#����qDF��q�\n\"�L\rq�=�&���\r�u7q��<\"���F�Y_B���y#E��wS\Zw�)`|x��G�f#��UP��n6q*�:t�?E\Z�D�_E8������~m�]��<\\�`2�#X���ȿN�?�n9�Q�7���\ZB�HFHK�!�*�{��K:�����I�B���g.���D�\ZQm�(~=�(h#J~�!J!pDY�&�<�\0Q^�xXp\nQy�x\\v����dr�Ty�x�\r�X���HG4~�E4�#�~; �e�ψ��f���|/��x���0m@tl@tߩEt�%��g�oI:����=��!zJ�=�0�ć��O���{0�g�/���e�P1�YB�@�(��+)�����q�ĸ�/�x������ڏ�1���=�E�>�A�]�G�Gu#��>!~M�#~;�\"��\r�B����%���k_k����A���N�C*�KAn<��ՆT�E�M� �@�\"�U��ꫡȭ�ǐڑ��{��1܌��D���4LX�4�!�k#�,@�&t,ҤE�ܻ��4�>�4o=�<�=�<�!�D�D��AZ�K�6M�H��sH�ǭ��-���\0���%骑�<����X�<�\'��B@z��!��.#��b���l��l��R�2��2 ����!C���42Ȫ��Z�y~�\ny1��bV12��F�+��K���d��cd~�g!�_ �,9 cz��qs,d�����Td�y���]��3�d�d�t62ug,25�L�9�L+���!����Gf��#o\Z�\"���Gf5^E�N2A��C��vG歗\"Yא@F�tD��0�c$�3�ع�Dv ���H�)$2��f\\C��Ր��5$�t��߃$�r��[���ۑ�k�Hڞ$-�2��c�dԌ#�9���o-H^��\'\rF�l��cP��f=R0y)�>A��!Ep4R���������\"R�+FJ_B��!eI�H/)�d����|p|��xY�� ��T�\03�,h@!Vi���xdQ�Y�Y�hE�h� �vN �\"���r�Y�UI��U�#������j`��Y�b��c�#��#�А\rcRd�U&�Y�-��N�����]Ɛ�A�Ȗ�\rȶ�3�vc)�}��%��\n���8��Zg�5���y��z�Ev+B�o��o�#�,#�W�����!{�!���?���G�}���6\"��nB~��G~;=��X��OF�l& �ga���Q�?-uȥ}zȥ?�r�r���\'�o�*rm���p�KF����TMO�T�L�T�5���&Q[�`(��(�GQZ{!(�7j�����=6(��Ԏ��(�ڋ��5Q���(��(�ݨ=!�Q{�P{��Q{��P�NԠ��(3��~{j?\Z��?�e�\Zu��\0��{M��u\'��I�կc�#]��s�(k��(�X�M�Ա|���/ʶa+��;u|��DK�d�8ʹ�����d-�e�\0�^�r�D����pP�F;Q^�V�Ϻe��-E��K�P��\\T@�T�>KT�5TP�8*��*�� *�4���:��\n�BG,*lvuI��<�u%\0��\" b��PW3mP�w��F�?ǡz�$߫���0�u�Ǩ�k9��WP7���_(�2L�Q���2�\\Q������XԝDKԝ���_���m �j���@�\n(p�Mx���ֿEA_�D�ӯ����(䛛(ԡz\Z;��J��(�(ʐ\0E5�D1zx(6��1(@q�Q��7(���O�E ��C JQ\"�$J��%�{��&�Q���(i�%J�[��� @ݻԌ���z@/B�j���:�J��@��&�J7��(�������\"ԣ�֨J�T�2T�t0��>U�P��n\n@�l��z��z\".C�_����P\r�hT�u�ƂxTc�)�y������\0�-�ն����^>�@u�N�:���:�ߠ^{�C�����܈�z���n��\Z�g/��#���P��Q}.���D��$��V9��\ZM[A�?@M\0��&ݭQ�����Q��G\"�T�Ԍ�]�O�u�y�n����/�=�_y2��.Ԓ�\"j���w�>�_��/���)��f�Z[pE+�\\�V��ިv��U�i�+z�I�z,Z�H ��\\�Vod�5�\'�\Z�hM.Z�����֎BkC������b\0h����;��9+�^�G�L�E�R�Għ�\rB�8��<&�F���ݰr�*�4��/1\r�o�m&��ޟ2�>h�m���zދ��~�>�FE�&C;�����\'���\'\'F�N�Q�SQ�h�KhW���ӱR��B?�J9�#�>�����\ZB{�ڣ}ѾF.h��_E��E�;\n�~8�$��i�D�[ډ�;�]>��`G_��/�.�/,��/���/f[�Â���6��K&�KtĬ��?}9�}�}y�\0%���V�c����_F_-���My��]���S�D��A���M���]i@\';����G����ߎ��շ�4�ZtZE4:m��������8\Z�΄}F�t*Aߤ/�o>��o���A�lށmG-2�@K\ZԜ��ע��D4��\r�D�y���h��h��b4*��F�ч�1��1�h��I4�Y��G���ƚh\n�\nMy悦û�,�{4�����\"4G��s���SC�mG���\'���R�x�-�*CK����/�{�Ѕ�<t�]��C�m\0���c��M���{���fs�G�����ԭ��\rtM�&tm]��~��]n��݄���%�G?��~vg\0��j�,UA7ۍ~a� ���!�j�nE,�۾��;C�ЯE��n�{�7���o�&����������t��A�@�+z�\Z=T��es����� z ���1z\\�=�5����B��EO�|@O��BO��CO�1F�X�EϼT@��;��>A��?�^8Ԏ^LE/DF��?�i,��ѿ/r�K������+��B�F�G6FI�)f�i+fc�f�H>f[�Q���1�a�]�1[ۺ1[��`4�0Zǣ0گM1:3$��fG�c�^�5F�f��̮�*̮��]�o�kӵx�>�5�YE+�\\1s@Ѕ��c_>��jډ9�����X��k�;ƦYc{�c{cg2��_��9��㠰�@��L�Ŝ:��:��q��q��qρb<v�`<�V0��0g��c��b|�9`|�`�1�H_L�P.&P��~��7�:`�7+cBԯaB��c��mń2h��\Z���m���bL،1�Rm(&B�s�\n&z�2&v�W���~&��L��&��&�&�r&5�I3z�I�����b2�_c2�Nb2�0���1��\0L�6�����u1����@�|)�+|0��Hr�I�?�u�`+�b����\0C��Po�ah�z�)��.İ\ru0l�3��q�5p��0B�6FL+�H�f0�E�l�1̽�;��+ɘ`0�1*��\'LI�%�����.S���y��T� �Tݱ�T�Tw�cj��:��S���I��3�1�UP̋�S�V�Lk�UL;r���J�\r���#LG��s%�塃�z^��Nـ�.����ü뾍y7ߋ�y��������o)ӏ�b�ٝ���M��C9��ke�/�0#;�0�s����\0�7Qf�*3�ֆ���$fj�3u%3�!a~q��|��Eg��9%�ܘ.�v:�����k�����ynf^�,����>��eI�,�Oc����,\ra�\Zc0�1+Gl0��!���0kS��G�\n����waCj����a�X��=ư�a��\r]7����*��]�cU���\0K�j�v���v�6�v�4V��V��\r�-�v{�7��5����cu������;�bwy�`w���\Z<\n�\Zj�`w��{>~Ě��`M>�c�.���k��5{��5�߈5�\\�=t���k�뀵��{��4֖������>݃�K���oH��l���ƞ�HHÞX)�:��`��X��T�#A�u6vƺ��b�΄`�7(b=\rwc�z���۪��?�سN�سسE0���6lP�lP�=6x���\r�ac/�c/�$`�6b�F��a���H�*6r�{y]8�r�yl��zl�]�n����f���_�$[l�)6i�{�769$���\"6�C{#�&6C.�fZ��f����h��\Z،��\0��p{��67���\\�D:X��{,Ў��{c![V���`,b�7i#¢?�Ģ�a�w%X\\�a,xK�o��\"�d;,����w�`�6,�Y�i����`y�\ZX��W��XVx�+����Y����������b�?��>P_�>Y�-;��-[s���ecfLb���>zS��TL�V�.c�2�a���j��ؚ��غ�bl]n�{[����{퀭���}���ɻ+����3��1tlӡ\0l���U�}6���j���E�-�LlK�lK�\n�\rރ��܄}��}������?�Q���(��n-��)�}�~�GacG��Jؑ�籣�/����ѿ&رs<�X�-v\nf���c\'v&�\0;���P7������c�)a�����{ұ۞`������b�p\n��B�x�n��)��qn��K��h ���S]�ũmD�����O�q�^�8��e8�S�8�o�pZSqZ��t�������q��Q�]�,���v��G6��3֝���o��v;���)���=����݊3M:�ۧe����37z�3�>�;h�w=�;d>�;�3�;��.��;�g���=�w�=\nw4�g���`��i���>y����٭_��˧�m���9&v�g5qN�FܩG8�i=��}�p��Rpn��8w�%�{^,�3�w�A�WU7��ί����?�p�2.�f.��\\�%�=�1�Ev8.�Y!.����_ي�Ծw������� �lC����%�sp �tqI��⮑Fp��pן q��q)jԺø�+i�����g�qY�[{����rJ\Zp��7��V�\0��8P���!z3pH�Xr�6�$=S��?㰌`.�Wo�ß��#�n��}p���8���؞�#�>d�ȴ\Z��G*�q��8D���K���ñ8�]��N(1ĉu�8�w8�H���pd���X.�8��+q�����J�\r�S�U4k�*��*�N㪵h���\\��*�v�*����c��4p���pO����[��o��}�=M����k��=;u���k�Մk��µ��}�ŵρp/]jq�*n�:���^W��^�y��2S�u�9���d��?��}���}ܮ��5|��-z��&��g�o�`+7`�&;⾤�p#:0ܘl7��+�[�?n������xq�c�7]���~v73��)T�͆u��?\'�*Rq���q�ܪp�~���q�Ǹ�?\Z�pĎ�?�Oq�i�V��W�k�x��\rx�/��������Iī���U7^ë>l�o��Wكߚ}����א��k,�k��6���^�R�\r���9������uܼ�:)Vx�L^��^����\n~�sxC�<��xÎh��o�֍7f=��yk�7 ��7���7i��7�f�Mk�xӧ�x3�ތ���������[^��[�q�R�a�x+�Gx�M�x�6W�=��?�:�w0��;D�a��\'�Y�O�U�O^�v��N�`��;%����)�!��&���w�/�{�H�{���}��1�~_?�A�A�� \Z\\D�7}��9��LJO�/���k��õN��C\Z����Z�E�H�=�Hk|�� |T�7�JS4�J�\r/��D+⯺l�_}��\"��U� wF� 3���ۗ��տ�S�x����,w|�� �K�>[��m����\Z���ϩ�o��߆���\\؈��]��=\Z��3������=��������4�ǃN,ࡵ�x�y\n���O�#N��x��C<:�\0�s��`����0��OXނ\'F��I��xR�8��7������<c�����ώ���7��.^X<���{��2��.x�*^�\"��k�}�.|e_�o3�t�|yy4�a�!��4\"��j_q�5�2�_�v_���!���4�\0�p�\'���lu�\\�\Z�Y/\0���3|ۛq|��?�U�\r�{�G�����o���=��O����-��y���㇎��Cn�E{����X� ~L���t?n\r�\r�?�j��,���\n(�O������� ~�gD��oB�st ~a����7���O�EJ ���6~����Y�_��WO<¯^UƯل��9E���p6a��v��6�&k!a<����A��NPG�B�4��4 �Z�C ZI��\'݄m���(�;�^�1�^�S���J���U����6�`\"v$��� ����L0��\'X�,�= X�+��� ��>�G8d3I8l&\"~\'^~D8\"���j 6�: �T��6$���y� c �����#\'����Ip��\'��u#����<�B��Q��.�/��I�-�!�����BP�!��J~~�ܟA}�G�0�F���@B䛻��;+ W����+ ��|B,N�=#�1q�.�ڷ*����״� �L!Y�@H��R۟R?���4.!�~+��BΎaB�؋���F���@��L��\0�\0��Bp��\0�N�D��\0�P��t��Ӊ&�h�.#>V�Z!�I W�(�QeB�@;��@+�K���_��W��\n�i���2��}�^�-�ą Ȏ\"H�xizAZ�K���D(��#vrEn.��N��;Bi�?B�组2�u�r�V�C#9�!�P��$Tv�#rB���D���� TO>\'��u���y,�IA\0�I�/��p��3��\"!�0-�m�� ���W��կjB��,�S�+�r2��d2��^���DB����JHW!�8����oF̦ #w�9alw\n���ӄ��ׄi����<a��%�bG飄?�>�e��_\'��6��&*�c�҉��U�+�*�*D5��D5�^�\Z���e�ETߟDTg�՟�&j�\ZK��ZkG��g����uCW����D]����ؓ�CVJ�˽E��nLܵ�q��qW�c�A�s��q����K�t�hz}�,��,�J��Fܿ�O4�����D�_��=\Z��<�%�-���R_���z���F�K��>#�M핖����{���\":�M��t��n�S�ID��&����k�u�k��m}�ݯ��{���q��qo?�̿!���ѷ��x�]����?��rݓ2�I<�A��Ϛ:�H<�UO<oeA<_G\"^��%^�zM��$F\\zK�h\'F�I\'F�m%F�F�� ������W[������8��k:R��(b��6�Rb:�1�\01��41���Ek�ʹ<��)1+C�����3��x�`�x�k?��P�m��;���\\�b��GĻN��w�@D��l\"D�A�L�$B=�0�;D���DD�Dd�7�PJDN��ZSDB��H�Y wI�:Drl\"��v�H%�6����D�&\"�5��n�9z���,��C�(�#\nD�/�����kQr*�(�:G�fe���ݝ$ޓ�!�wI$>�숏��\n��Ċebw�XQ�L�ܖA�Dvk�k��:�b�%�A���H\Z\'>N|��Al6] ���[�Q��N����j�kM��vb�=-b�7Mb��\Z�{�:�&�[���{��� ~��%~z��ط#��经�W����ؿ2J�l�A0M%��G�]�����ǧ �ɀ���Jq�p��s�q�L�UiF��;��؈%��%�F!�K[f�Kv=ĥg�ĥ�z�2Θ���N��CD\\��\"��?FR8�CRX�\')jPI���HJ�ד�G�$m8�L�p@�x����k*i�xIU�IR;H\'���\"mY�!�3��4���|I�%���j(�.6�d��B28�$���$$��$��$c5*�i iw�$�$��d� �SH�5�$3{�l!���Q�~����$�$�O�ųaҁ���9�p�G�ա\'�#�*�Q;\0�(����$k��z��d���t,\\�d�L$��+\"/�N:�B@:y}�tr�8��>�)8���:Hr.��\\��$7m ɝ ���|>��|�H�A$������ɋ��x֟��E\n��!��#���&]��HubHa]�H��H����K�qRd�3)��<)��)�B�tՔF�z̝�0�����<FJ��MJ�F��~D�^�I��\"�t��*)y[)U?����\"�� �t�Sp�t��/)o�0)/��tw�P�: x�= ��D&�ߺ� ��Hp\Z �� ��A�VD�pUH�s�$R��|��D�!�jw��E�$fH��Db) q��I��0�@�*I2��$���xCz��M*\0��\n]�HE��I��H%�AR)�2�lg\r�<W��H��T�>E���\"U/I�{���>�H���KD�\'�����\Zp�����C�������n���L��\r��y�H#餮�xR����Yқ��7\r�HoWHoO���e4���%��In�\'}��#}��K�$�%�͑�ko�>�<&\rl@�ܯ�d$�@�6i�a�4�$\r[�Fc�Hc�\\Ic�����t�V�Q3�My����~釧 i~Gi��i�JZ��EZ��A���@���C��M�7����N����NV^��7��!�\Z�&�RDd5�Od���d��&�7ɺ�O�;���(d�N2Y����!�ܦL�ϓl��&�.�\"�n�&���D:��@pdTy�w-��U�Ym��B6o�M�x�E>���R�%��K><�M>f� �V ��\"��p�옂 ��1K>�@>E�Av������!�4Ȟ�d����3������~��7���_��\0%r��ur��*94��|�@-�B�&r� �6w�~<��\"_I�%����W���h�c7G�cU���/��5�����xor|���EN,�LN��%_�������\'7���+��}��H9c��!�@��#�r� �z�DΎ�%�j���4Α�zf��{F����P�MT��Md��c2��u2�m��8���䔐�M�d̉�d\\�#�K&�y�����P2\r�$�O�&�E}d��%2C���T���2���\\) �\\�d6&��@��_���d~�%2L��$�6dI�^���,y��,��$K��dٛcd���ތ�|��%r�. 9ș\\p��\\�bG.��\'�Ʌ�*���JrI�\\�G~�\\�H��\0�+{�U����rMru� � e��p���L6��r�y_\Z������KrK�-�6In��� �T�!�<I~�F~�� �#�H~m3O~�O~��C~gM~7���s��i�<�Sk��E\n�OIN�[~H�M&��&�ד�-�Ƕ���q��!��\\4y��<u����Gy��(y��<�Z�<�H��� /�Ǒ��\'��\0�����j�W��9�{�JQ��AQ�P��Q��zQ��wQ�/P�-T)���(*Kc���C��g7(\ZM\nm����(�;R(;��}����jS(���P�R�R�(F�c�Y>�x�N1��M1��@1����?{�b���b������e� ��K9��L9j�I9jiK��0�XS�(6^(6u���i���k�m�;���>�V��P��L�8h>�8NZPNJ�)N\r���u�w/)��vS\\6I).�&���(n0}�{@���ʙ��)>��R|�$S|�(~����S��)g>R����8J�8%4Ȇ&ES\"��)����K��ȤyJd����J�J7%ff�r�0�r5t�r��(%��yʵ��(ɐc�e���3J:LI�O�܄NRr��Sn������kRR\0�(\nȦ�v5�@l�(��]h�7\n̓KAXS��M(�^O\n�����H��bT9�8=@��R(W�P()\\\n51�B�~�B{�C�_��0T(��_(�\nc5�}IaoW������\n\n{�N��=D�W)�7w(��Q�м�\"$���S��(�(b�\"�=A�:�)r�Mʃ�vJ��_J��*�p\ZI)�eQ����R��li�R��Gy(��<\n8C�8hO�ϡT.n�T��Q��)5&���J�� J]�\"屽;�q�6ʓ�5J}�]J�yJSJ\n������Jy6����Ji%�)m\Z��vw*���MJG�[J�n��ɐ�ӵB�Y��|�͢|\"\\�|ZPz��S�vFP�h4��3�(��I��K����U��<ʗ}��/�Q�LS(�����x��[�(� {(�\n�Q���)�N���]�(3)s�|����ZE���O�}W��<��g�)ʒ�*e�OY\r����U�*D7S�ҩ�[����T�#�\rn�ԍh-��VE��\'��\'���ߟ�n�PU}U�j��[��[d�ԭ1���_�:-�:/���\n���/S�矦�>I�w��5UPw*ʩ;oS�����:��F�c��1�{�wS�,�S��`�{UvS��vP-�v��R�H��<O=L0��R�+̩6��S�6��v~b�]\\��z�q\0������?TG0�qN��d�Fu�Ȧ��Q]�A���nROo�P=l�P=\n�T�)�3�\r�gd/շ�+��E�[���\rM���o��{���{�R6�P5�`�\Z\\8L\r?L=b@=WM��-�Q/ms�F�?A�r�J��r�\Z�S�\Z�̧�l����Pc�q\n�����j���.}j��aj�;,5�j��:IM�Ѧf�S3�OQ318j&���9�z�Z\n5K+��e\'�f�ʩY��Ԭ���Y?6So=��\Z>M���E�~QM��,���P�rs���iT(a�\n3]�Ҩ���T��TL�e*���͘�_J%�\Z���dU\r*9v�J!p�T ��S��*�g;���K�#�\\\r8��u����\n�YR�O�\"�h���U�T@��;P��;���ԩ�����?Q�]��7.RA�EF�Ż*�%�C���,��\"5�Z�YI��O�;G�ַ�>��Lm�VS-P�����3$js��yR���1��\"���ҞOmS���/R;P��N�K��dSj��gj�\0��킦�3料{�F��������gF���VO�0�~���~����Qw;Q����/��/����h[�+�7u[D�$�Q�4�Sl�I�1�I�Fm��=�@]�1�.��&|��f��.��R�YG��xԕ�o��C�u�4E�$M)RHS]��o?F�P�N�P�O�X��\rM����З�VO�غ@ӌʧi��4;�iZl]����v���`��ccM�LM�� m�m\rm<�fh�D3?���O3����i����I��y*�7���i���a^�OWi�i�!H���,�նc4�S�4+*�f��/���U�f���f�=H��ov��4�}�h\'��N�i\'�ݣ9��М�4�{4��Q���/͵���1��S�i�ôӑi�_inʭ4w(�}���Q�����=����<�o�@;{8��N����h!�1��Z��Z�\Z�y�$���Bڅ�L��Oڅ�C���kiC���9��Zx�(-Bk��������|u���L����ŭ�����i�zwiI��ҒܬiI�O��\'\0ڵ�M�k�Oh�ެ���ޢ�^�J�@Ci���,�DZv�-[��v���v�J�ݑJ��\\G��P��]��@/�h��X\Z����H��!�7��4\Z2�CC9�2h��5\Z��\r������\\\Z�|7�p���R�F-��ш4�����;I�X~�q-h��X���&\\!�$f�4�F!M���V�F+�\n��������g�i�eᴇ�i�ljiU�+�*���V�S��8����5OkL��5�l�51�h-UbZk��-ə�N9C{i��,����N{X�u,o�u��^��^��I{})��F;��f8���d���C��\\�}���}i�J�!g(md��6��6Vz�6�}���$�6^�I��A�@�Ѿ���\r��U4��<�6KT��J�h���hs\n��\'h�%ݴE�T��⟴�K�i�/���V^��-u�V��ikW�hk] ��L.}=� }C�6}ß(�g,}k���q̀���B�tH�� �ѷ��oW���N���R�;\r=�FDS�qU}�{}���~�-�E�g����~0�4ݒ�F�:��n� �n�#�n��J�;��nWK�?XN�O��3�����\'�w�\'�<��tW�O��9���E�;ϑ�ZI?���{�[����Wq��՜~6)�h�F$N�CF����C/�_�T�_8B8O;�M������/]�G�d�//eӯh>�_ ��_9WO���5=�J=�Ez�u=r��[L�]MO�{NO�o���3�)��I=��5=�D\"���,����&�6=��F�-�f����qe��M�mI=W�@ޣ��&�!W�Е:�G�Dޢc�It.�N<�N�Ϧ�6��SC��i���\ntf����Ogo�F��9�*� ����L��̣�N�_�t{+]�{]�TN��r�K��2/E�\\�-���~_��~�|�~?������˛�u���\"�\n�X=�^�H/�����S����dz�n%zU�?z]�%���)��k�)��E��TWzˮ�V=mzn�=!��j�9�g���G���k/��F���6����r���p?��y���pz�FS��S�ϥX���?}\0�E�[� �����G�#@��/c��fg�W�u�>�� �;h3�G����A��� }�S4}I���I�[n���/������C�鿻{�KO�їC��U��+�p�ʃN��X}���*렯~룯�2@ �§����\'cl�u����\0CyГ��2�ؔ8�������P��`��U��f�ώ��k`��eh��bh\\�`h�734;K���m�2t�o3vL]`走;����;c�\0\"���%�0w����E��_���T���9Z�a�`�8���8 �f���8d�84�̰܄fX�V噌�JG %�)����k��\"l��3�bvO�3���*���&�1��qrT��th�����p^�g�2�d��f�~��p����~��D��$s�����x��U���,bx{2|.g���d���0���0����F/�j�qa5�^�ʸtÈ�G3.g�dDY�aD�j2b�2b�w2bsD���8F�;cƵ��T���\\F��8#��~F��+��o0n�gd�O�O\"�#7�#�y�q�r\n��f��?��Eܯ���{��}���˙e�$i�F9�Ƞ���`�{3ytc��`��g0��fp�\\@��c;�Ke��G3�C���!��dHܡ�5S���-���Ƹ�l�x��:�������v�`h��#�Q���Q������F���R�7���z�Q}�Ȩ�x˨!�u���U3�u��HF��F�CF}�4��k\Z�q��hR.f4y��[�/h��Vƌ���|F��5�s�1�u��LF�f-��Ggt�w2��0�$3�fY2���1z@��?͌��F�WF��V��GS����A;�`�1���1���1R�f��a|;��v#���ac\"�ȘX����+c��aL1�0���,Θ�a���3->0c�0Ss�BK�N���ս�u���n��Z��yw���X�R����w��>��Pfn�f*+h0U<r�*c]��3 L\r�D�&����x���h���t��#�S�H2sgA\ns���+{ӠM�i��f\Z�1\rG&�F�X��ؗ���s��LS�,Ӭњ�?I���3�b��l��L\r�0�?\0���9�*��i���im��<�6�<fX�t�q�����t���<5��t9�t����ӝ���)b�q�b�y������_b��0c����Wf]�٢�9�c��z�y�7���ɼh��y1%�vj��Z�~����q֙y��3���%b�OD2��3��3�Mg3���ʼ~;��|O��BWc��<�i�`�$f�|>3so3s�3k���M�f�~��ha���1��0#qL�F?l>��0!ۨL��[&�f �d���h�\n�GbbMԘ���L�>�0w�I:��$]D1I�_��7yLVB\n�}� �}f����erۇ�ܑ5&��(�?T�e�?W���b�toS�Ec�W�g���|P��|���5a�~3��X2�O�1K�]b���ìl�`V~D0��J���\'���͘��0�C�1�:�e6��0��j��=��ϗ2�s��/�3[μ`��(1ۃݙ�{���|��hf� ��&���&��s�̞���4C�Gmgf/���O�g~��fl|�p�b�<`�1�2�1�:�3�f#�_���6�0��b��&X�����s\ZaΙ�1n�1n1�Q/��똋���O�o�柭��?���?�Q�e��̿*�+��������Y�7&YJ�X�HXN7�6\\�b)Ϟf)/`m}��t���I���T�`mZ;�R�.e�LV�6��gm�^bm�0`�>�e����Ԕ�,5�,�4K\r�c�uͰ4#��4�/Y��Y,�K,���]^J,C�6���2�f�b��3��2��b�<��ڻ��ڷ�6�씜���!�|њe���:�C�u �� ԁu�됛�ux��e�`Y1:XG�XG*-YG\r�lT�X6=�,���1�\\�m�#�-;�e��븎)�6� �8։r���z��@��L�f����\\ߡY��39.,/�����.6f��(�����^D�)�� sVЁ\nVp+��S�:��:���u���:?oȺ�̃u�e���\n�<̊|t�}̊\rs`]\r�źژĊ���x��H������fY��oY7\'lY���$V�˗�;5�,�5��_���l�B1X��I6� ����=�a�w�(�Y��pe�1��Όňta1�X�qG���]�e�Y��e��?YfK��ɒ�Ia̰݃�c���?�t��_@YX����+���u�\"�[�\"b���*��c�9�*\r��*���*����Y�am���Y�,�Y�o�*�.��C6��cV\rϔU#DzjF�Dž�YO:�YO�X\r�+���DV�FEV�6eVSP�)^�����z��zV�c5��j�?�jm}�j�eu�qY�X��L��;X�k��a���WY�RX��KY�>[�z�Y}�s�}k��\Z ��<O��|��\Z�������\"��u�d�)k�8�5�g�<\"�f}{Y����o���8k!ɉ��y��m��c-a�����K��%l��lEk[)�[�-{��B�ri:{��\"{c\"���ˌ�i�\0{�[u��`������S��yΞ���+[s��Մ`��nb�:U�u���\r?�w2|�;�l�Ooٻu��{��ئmlS��m���m�6��g��){��el˝f��1��Y�&� ������m���>,eob7�>����C�v��b����>Ub�v���I�}��,��A���$�}̜�yd/�,d{{H��i!loI>�G\'��cMb��e���]�Rv�%v�\0������f싾��0�#;������u��Ȍ�n6�vT[!;��&��1��ESv��\n;FE���Ύwlf\'� b\'䩰�r,٩G;٩�z�\ro�i��7��7:���~�3�K��:���zd�-�$;��1��N��ؽ��t�]m\"x �\r�f�)lH��\r�5bC6��:m���1bc����Ml�b�8�c��ٔ��l��lںlڶh6���ftI�L�ClN�0�G�a�Z��|�%6�v�-��a�����: lٛP�<?���j�Ώఋ�c�EJ��k��3v1\"�]b��]���.ߩ�~xن�(O�]%bW��gW�/a�la�kg�~9�~���~�Y�~B���_��ֹ������Ϩ+�g������k���S��B$�mՌݮ\"`���`w�屻���o\Z��o�}a���g�.f�؟�7���C\r��1��؋�책���,w�T�\Z{n�>���+����T{�Ă�P����*g�ٴ��z�����+{m�^�������QX.�(�n�(�欷��l\\��ljT�lv^�l~�Q���Q���Q�s�GVq��wq4�~�hjq�eޜ�9�q�8�,G9�c(>�1����,Nq��Gp�o��ϟ����9��\\�@��+�C�C$��C\r�a�\n��S�Ï�9Vͽ�#��8G��r�:er�==DZ;�ʱ��q��%G+(���%U�q}P�����p|^��ɯp���9۹��8� �� \\�s���`���s3RN� \'lb��)�a8ʼn�n�DJ\r9��8�ͼ8Q�m��(\'��\n���se9�MY�D��pb��9�~�9 �����$뗜T�9���a9GN��m�������e���C�[?�99�*��o�8��9wr�p���q�iq\0�#9��e��Y�8[�`\'���W&��o���8D����!��q�˶��C� 琕�8�0�z9�C����pn�����;{�%�\n�;X�����nQ�G|�0G̥r$��{g�s��ip\n�8Ec���uf�R�N�q}N�62�s�S� �S>���h�5��c5��֍S�©;3ϩ��<ya�y\Z��<���4f�p\Z[9���s\ZGwp�)�8�;[9/�K�����I���-����+����]M�n�(���sه���:���y��k���*��\0�Pi<g�����l���8� �1����@�x?��m� gBÔ3i#���8���?��G���#��l1�7��s�Y�9+�g9+�[9+C8�.m\\���\\��\\�}�z���\r��\\e�k5�f�Q���WS�\"W3�պ&�j��:�a������\\]�wǦ��!۸�\\CB�p�5\ny�5��\'���3��5I��5�����ݐ�/y��o�9w��q�y�2�\"̉{���G%����Q�.�u�A���&�m��^���=��\'�!d3�a����X�=yz��t��ҵ��:f�=�s݆np�I\\]+���멠��z��p�6=�z�3�>�b�Y�]ܳS�\\�u[������Y��;Mn��x�+7�\'n��8n0l�{��\r5r�^�p�{Ͻ ��^���{q�7���\r6r/}\\�F�����s�4?p����Yn��w�u�!7%ܒ�z��{�e7]|�����{G�!7�Ľ��������Fsa�u\\X�5.��./���s�Q \\�b�d�K�I����\\J�~.�|�K���K�q�q\\D�e�¹,\Z����������PD㊣�qŠ�T��+]J��3�r�q�����ާes���������ܢ�n1��[\nR��sn|ϭ�&q+l�s+��r�vNs��>��>�|�}\Zg�m��m�Y�m�q��z��6xs�+�ϵ�p��r�ͧ�/,�r_�����/q[�q���/�vq;4�r;&np;w�p_�o�]��ݵ���6��h��a~���R��D���9�۫����r�w�s�[����-��`� n�;��;�6��)�~�t���p�&��_�#��Fh��z�X2�;`�;yN�;���;�r�;�p�;� ���Yǝ���]���.�^�.���.�7r�����.i��U��ŤqW�w���;x��j�x��yJ{ZyJ�(�u�<emO%�#o��H�z���5��������W��){��K�mK�@<]�1�~�*O���@��~��IyF�I��3�u�W��7*�vm��X��}v�Q�y���̝Fy�C<��?x�0��_:Ϣw���;���Y�?�Y�)��C���l�Bx���.<�Ǽ��C��:��v�x�ҭ��&y��1<�b0�C=����y���x>�v�|��<9���p�xA�uyA�5��일�4/\\.�E|<X�bzfyWսyq��y��fxI�VxI${���y��]_��%��K�bxiJq�4e/ލ�\n���ͼ�)/�[�����n>��e9���y9��x9��rF�yy_��\0(�Z���S�yண<4Ϝ�yu�a�[x�`-i�#s�y�C{y�L��6ȣ�L�1n���W:�c[����<>��)��q��y�{�<~��\'8{�\'�j�IͶ��{y�v�y���x����{���W^��o:ƻ����f����W�u�W8��+�H�H��J���\r��/t����*F-x��,y��9��%$��p�W�W}i=���&^�駼�쳼�S��8 �n�ƫO�=%\r��xOWO�\Z��x\r���:2y�,�y�o%�5�f����4�{u̔�љ��TV�u:u�:;�x]w7�>��9&ཉ��)��{+��{���]�&��\\��Y�O���O�O�`�oX�=�q���c_�_l�ϩ�;��ռ�T�,t�7W��}�)��V�Ҕo���\0c���y�U�x���5S[��9!o������W8�WXY�Wq�o�\'�UmY|ռZ�*0��v]���Ր�5ҙ����\n��q,��i*�k)-���?�__��,�u��;��;ڶ��3�������)|�TG�Ag��-����;�vK�ő.�˷ w�8��������?���p���E���1�X�\n��g�o�� �^a�^i/�~�\n������5߆�ZR�w��wK��M����u��a|�v�Lf\r�LV=�K���_�ޟ����h�}M��;�!:��W�\Z��r���§0����k���If�KiQ�@??�Ɓy˂�����m�+2 �j4��ލʏ+�����\'��-� �q��0o~J�~j`%?�e����;?}�=?#����h�3O��o%g�o��g_~��~|��%PX�=�n��f>��22Y��,%��T>\\y^��G+���||��pp�OXv�tA|�n>��ϧ2���~/>���q�g:�r>s)���\n�����4>;��ϛ�w8��w��%�O�%�W��%=���o�{�~�}�n��H�A��3�_�m�/4��vA�E��E�����K���r�~�p$���_~u�_�1ï��ͯ3��?�L�?��|��+�&,��ܺ���Z�%6�߮x��nv��~���X6��͟��>���;��t�ͫ���/�o���j��;��=��]3����>�U~�F}�����#5�/;��/�5�X�����C:�����?�T��������Z��?�^�?q�?���_�\\�_x���{{ i�6�%���4����_�:�_�M�ռ��N�[9 P:�C�4h(ؠ<)ظ�F�V\"P{Fl�U�>�M����@}q�`�z�eL�}[O���R��)��I`�W`�S`�tR`��-0.�p&c��\ZZ�}cOf��O)�ނ}@��s9�Cy��C�B��c�����(*G`s��V��n�Z`�:+8�(Hp|9Rp��,pH�8\n\'/�b�s��s���i����u���������[)8ۏh�AΊ��� TtPp1\"Jj+�Qp�d��Rh� r�%��z$�j^*�e�\nb+o\n�?�\nj8���hAR� ��G�z>Z�Z��>�.HW6�[ 2�7-\r7[Y�\"A��,AN���3��$��Apg�� ����n��\0�*\0�<\0��@���.�*`�+����b\"$E��2 @n�7��\0�&�� `��B�?��V@t�8 �+�� M)V@sF h�%�LC�8;(`\\�0`�L�Z��&�,�� ����I I�Hjb�� ��l�@.\n�3� ��f\n�7��U���A��#�=����AAŊ����EA�H��zF釠&�CP��<�\n\Z�\r*_\r���Ƭ\\��l��+RК�V��%X�jIQ��_�ی��fAׄ�����:kAϠ��ހ�o�����`�<\r�j F�]#��#�HѸ`���=S�M}�C��/tS�W?�~LL\nf�����F��m�����߂E��b�~�R.T��q�`�R_�\\�*�[�-X94.X j�H/V��+�Y�!G�/o� 7n��҄�?U]̅[�:�\Zs�V)R���Z���)ԾS)�Z����*� w��w�ʄ;� �z��B��z����p��F���д/�w�A�Gp��W�Y9Fh�&4Ob ��-6�o��d�#�m�#�\n�]Z�{�ֿ���\\�v�m��i�B���L�����Sx��_x�t]�*��;�=�X\n=�n\n=��B�c�gB��B��U���)�Ya���Ca��W �&ap��0���0�gQr)<��Wx��B�0�h���(O�sD1^yW(��n�x����rs������i������Y��¬��[.�&�0�`���v� �0��&��TT<%T��\n��H!($N~5.�^�����3���;B|�e!qC���s��,���*�3�Bʑe!�]H� Y����ʅ<��B�����&���[ʄB+��1\'�>�\'��n����&˄���3�5c�B�a��ea�a����/,���k��2�Na�����!,\'>,�*|4�%��b*��� +KJ��k�g��ڣ��Z�7�Z����C��vXWX\'c�jYº��§��;w�/�� _���Z��/� ����o�:�o�����/?�Kء����뚄�*��þ�a�p�Ոp�X���J8�E8j ��R���cM��c/˄�>_��K�o(�T�p�r�p�e,��]�p���ᢚ�p�p��C�c@��˧���E\n,�H�^��&K�x�_���Q���F�������=��/S���zn�H��_��W�c\n�F�����t3�D;�l��D�7D�7��4]dT�\'��N�G�_dZ�)2[,��Z���,/E�,�%���䈎]�lDvj\'D\'��EN#~\"�#e\"�R������X��U�MK��)�(y��yYy�.���/�|�V\"��8��;C�Y�碳f����D5BQ�Ӣ��Q�I�(x�[��X��Gt��Qh�gхEC�E�Q�At��Y�U��Q�r�(��H��*%PsEI*��뺖��@�(y�W���Ґ���\'E7z\ZE�x��*{Q�K���.Q��eQ6�Pt�6Ot��V �W�^���D�ub����S�v�a�aiE\"l1V�m��A\"��:�^���\\�foq�~�8�BE��q��y����H�Ŋd�\"��\"y0Et?2O���I��\n�@Q��\nQ��XT(��w��pM�rF��yLT�*U�l�^���m�mJ�q�E�!���Q}V�4�M���\rыK|ы�E/D-�oD��Z���֖���{\0Q�6���8I�ꗡ��uJ�E�ϯu��u����$��L���nʼn���E�����/D��D����˔D#������E�q����D�\"�� V�h�\\A4��B4u�h꧑臞��\\4��(ͽ��M�~b\'E��k��U��藃�h�\Z+��s���\ZO��d�h��&�ZM��Q���\"V��|�X齷X��Q�Q�\'Vq�U���)D�5h��m\r�b�c\"��h�XO>$ֿc,6x�Tl��Vl��!6RB����{ۻŦ�Pb��W�A�Ň��%�Ķ��b;���^A*�����O,���`(vN�.>�\Z,vQ��X��]2Q��1���ϋ��J/��j�b��b�cb�뽙ػ��O^\"�W^���oā�@q`�^q�Y���_�8��84�HZ�_P~\'�|/�VG�S��7ė7�_�(���%�2� �K4����։Rʼn�\r���i�t��̷��,�9q��q�AMq��-��2-�� qn��8�&T���C|��,@ŀ\'�b��3b�����Ü��a�1�qN�\0��Qn�b�Ee1z,W��b$��JӜCĴ����/f��9n{��y1?�+����9�>�\"|������]qy^���%��RsH\\i�W�����U����F��5�ĵfw�g�H�ӝ�O���\r�lqC팸Q��j������y�O��A���_\'~�PK�z�_܆�����_�,~�6wh�įu��]:⮒_�wW��=��i���Bq����?�x�t�x0U<��v�OHBēC����(��}�x6�xv�*���&�i~G�d$�\'z��9��y��W��}��W�M�x�K��K����\r�� ��վY�:gK��=O���C�q�D�i�D�D�vmH�6�/Q7;(QΖl�3-��d\"�Ȱ�h`��1��z�D�)ѿ�\"���,�5^!1���K$��-%{4H����t��{�\'ٿ:*1�>!1Ϻ&9\\xYb�\'Gb%o�鮒K�&��J��>J�>�H�W��� %�7$��\"$Γ6�S���S�H\\�$.U��=u�����&�kR�B&�a)�u��ǧI�vJ��-%!�\Z%!�ɒs�W$�O`%�Q���E����[���$I��N�� �®�D��K�`p��Qɵ��>�d� I��ԆI\Z(Ik�FI2�%��BIfF��} �U%�~�!��[\"�C2���P�O�� �3U�܍?#���N�;(`%� d� L�&^��3t%�G��F Z#C��͓���z ������nK�%���BE�ȦI��c%����!@���3#%�ˎnC���bT\"\Z9,�\r$r+{� �ț7J�P�܋R�\0�% ���I�gI�I����\"IiA����c�G���G) ��=�$�Œ�3���T\rI5�JR{%MR��\'it(�4�J�z2$�4�I��I��J%�����������=F��{Nқh#�;\"�7���[`$��Œπ>�@�dt�/�L�H�|/�H&�H$?l:%?J�J��|�LC�H��$3=��YZ�d�����wɢ��d��X�8!��ɥJ�6$+N7$��=RE�mR�@_�b��T�~�t��t}��6}��<O���T��C�%gY���\\�e�]�e�W�n�&ՄJ���R���Rm��R�?=RJ�t{��t��g�.e�T��#�m������|�Oj�#�m�$��c.ݣ�.5y�\'�\'Jͤm҃�~�CZR+�R+�����Զ_(����J���jR�\'S�S?���8IOO��z���z��I=1�R�.�����G�ԧa@z��M��s�4$�4D�*=�tG\Zz\"\r+ �^�u�FlM�^�)�N�Ic�JcRPҸ�ai|I�d,M�n\'M[Jo`¤����\rҌ�b�M�;Ҭ���[<7i�N�4�V�4[�Bz;�+���%͛dH���B��JaOiRTD��{\"�~��פ�#R�SJ>W(�4��Rm�Hi�VR�g��!h�2�<�L�V)�rF���\"�I��R���;C*W����\"��GQ����4�z���tEZ��IZj�\'-m��)�I˝]��ޮH\rzH+N8K���5��5Q����[�ڙ���ۏJ1���K�k9��k鳇2鳶���#����s��|�P���D��zP��C��~,m�\n���DJ���/Ϟ��� ��ڷK;��J;�<���{���N��/�����x��N��ݥ;�wY��A;�ԍ�=4��8I{I���c��_��[���ҡ��ᇯ��>)ұ�� ��{I:s,����4���6kHgW�sK�ҟ{:���J��H�T�HW=�JWkӥk�e\n�X��j�L�x�l���l��G�ťT�~�K�Ny)S_x\"�\\-�i�\rɴ�*dZWA2-��L[sA���*�)�m��!�5ȗ��.ӯN��Ɍ�5eƨ\\�I�W��k�};5d�o��,,Ų����R=١�{d��V2���2+�z��l��j�!;�%�Y���l`�eDz@��=2�ͳ2��p��g��O�6wN��̝����ܕy� �y\r��|m4d��|��-#�o9[�)��]�,���W�_�,P\r��d!G3e�^�B��d烃ea[����D���l�E�̗E���._�Ȣ�e�3�e1�s���;d12�,��,N�/����%$���eI��e�1�dp�,�_�,��B�ˑ�<Z\'K\r���&\nd�T_�\rD��F��,��9YvK�\rQ��yxU��Q��>А���z���\Z�]�IأP�G�`�2�|U�M*�����2\\M��h�$#&f�H��2�My�9*�����\0�9%��1�:d�k&PƎ� ��e�*]����L��$�|�Ȥ%s�{�hٽk��6����\n�~�\nϞ�9$Ȋ>�e��s�G��� ���@V\rO��X����;d�reO��\Z�e���ƠLYc�C�3���y����㻬�G,k��]��A��,{I��^�ܕu�h����%{gsX�n�A���a٧�{��C��?Y�b��v����祟�����l�h�\'�S��.�l�{�l�]��ǽ���岟�e;�d�7iȖ���O��8�������������\n}�r���r���r��O�}��\r��r]���@�Jb�|s�&�*�\\��\\�\\c]�\\㰓\\�+�Lȵ��Z9 rm#�\\�|�\\��\\tC���\\�X�\\�Ԉ\\�U��@mTn �\'7h�.7\n*��~�P���>��N���J��T�Dnj�*7�B���}��w��Ϳ���N��I��8�mY\'?4�Jn��#?��)?b�$?z�Un�������������1厼2��`���6s����r\'L��>F\"wiV��\"!r7�g�{�:���v���\\�W� ��rwy��yP:B�^W��/��X��-K�,c���q���d����%���y��:��Vy�[��*f@��*����G#�\'<��ϲ��ȓ��ix�\rI�<��@�1�]~S9@~�T�<��%yN�oy]I~{�K~��yn��<��q94�ړ\'G�?#G#9r̶Krl��۲N�3����9^+\'��$�?9�#���˩.UrZ���� g��09�g*�y��9r�sE��C�\\�&U~�|�?�ZR�G�~��=�����%��F�+���+�\\��M�U9���ٻ�B���pM^��]�x� �O^?� o|��?�{,v�P����Uy�����y;JA��$Z�Rb$EC�;V�ʻ\"�]�W��33�w\n��w&��Y��<��I���^�ܐ���@y�쨼�I>�.�h�*����ȇ2�ɇ���1�Q�X�\\�U�E>���\'���1\\��\\pQ\0�)#IeF�(J��J�M��Jf��*Ɉ����*)�H���x��>��|���s�s�;�܈���j��9���s::�s�ǯ�q�w֝���v�8��#��}�sV��s�ڵ��������?o�:��Ot.���k �z����������������\0�U�\0��E\0�\\>@�@Su�e���1X���m�\\l�D��l��l>|��D ،90Rg�|�����Q�\0# ��`Kf`K����[��&`{�*`��I��]����\0���\0+���SK�5�y� `�]��\0���\ZM�\0����?b���pؿp8� �0pQ�\0pK= �Y�d�x��xi��\Z\0^3�q�-�\'V �x�C1\0���t4~EB�Z 8�}pJ?p�^2 HU ��N��qK\0Dݲ��}�Ά�Ǿ\0\\�\0b���-@�d >�\0 ��O#.Q���V\Z ������\n�\"H\0$:�$F?\0$��$��H=s\r�\n=H�|p��g@p��a7�&mp��\0���Tn�\0�]�(ȹ\0(��(�y(\Zz\r(ax\0�9]ܿ�p_zP��T��\0T�U1l@՟x@�mC��/�����\n�!\\h�\rht���f�M$\0���4�����݀�,[@�Wu\0P\n\0��@�Y\07\0��@Zc�@\0j3\0��\0�,\0�\r �H�\n\0��]\0=����x\r\0�w�\0��w��E�=��\0��=�䰫\0E�.�r�@ix��\0�7�\0�8@wg&�����P\r`d�*��`�o `|�\00�30ud`��\0L��\0����(`��)m��<`f��Y\0��\0�~��*\0,���D�,��\0K��%|��d������P��Pu���h?P���6T\0��U\\C�\0�:����o�:F@�w!������^7�\07�@�C@�7W��+���ǁ;��\0w��wG�\0Z��\0-��-{T����6���o3ж����p_�*С���o�Q� t\\��.\r�w��C��x7�˗X��]���_�dz�@ϭA����Ǯ��������Z}�@��h� ��@��T��\r������\Z>�>)�J���_�\0þ<�_���O��\0�X|�����\0F���/^8S� y�]G�Bl�q;��N�x�b`|x��n�U�R��tC`b�W`\",\0��\nL�ӯa��PS`:�\nx�O`��g`��~`�� �~`��C�S��;�/����� `ap)��y��#�G#������g�2X��%�!�XY�X}o������q�5��E`m�z`�<Xw3����I��\0?[-�[ag�/��v��@�q�\n��bwY\0�\0 #�@b>H��\0R&\n�T� �� ����c�\'����Z@��E���Z�,�:P��������.^vK�\0���{����!�ۙo�w�L�0,��y��h�P�\Z�QE��|�T��y<8n�\r�,\'.�NU���d�ل�?���?�R�?�_��٣o��o���ԍ���~����{2�r� ��z���H������^���V������<��ԅ� \r����7������a�@k����@h�A�����B�@��\Z�f��a�o�Q��iOh�#\"h�����Bd���;��; �vR�֓��o\r�^b�1���~���`@{?l�i����,MA�鍠�R?��e&�\0Y]\0:2��\Z�r�������p w�+�Ǚu �X���|��A�ڪ � ��>������y�T\nr)���ԀB�.�BσB^m�}*ERZAg9XйG2�9>t�j=�1t�/� ��/(����\0��t),��t��t�\rt�_�j����P��rP�9(\r J��e��2\\�@Y�O�rB�A�)-��7��\'�����<F(���N��]�P�,�\n*����RA���Ϡ�EGA�{�A�Q�A�}CA��oՄ^�^ŀj�@u�P��NPyԨ]j����>A�sU@�Y�A͟�@-\ZAm�(���y�Wn@�8;�b�J�@ � ��_�A�Tl���B��Aȭ�@���A��&V&��e���tqD���7��k��(�`��D�����{Al�� �V4��� �jqo�x�@�gM I�=H�h\0���@�E��:��ԽFԷ��u�7�P#��YP�E�_1\Z�Z\Z $���A�5A�DS�� ���ˠ��\Z@�Q��<h��;���$з:4�C�w�\'��j#��(]�\\�hA���\r��-����T��K���>���\0��\n��S_��v6Xe\rVm<^���v�=X�8��+�nm9X�\r^�6�1&�o�l��xu��\0������V�`����b��]������/�����=�ւ���mo�=���}�(l?| �|�!|@v�hs�� >�����d�=j�Gs^��~�>~5�m�����&ă����>!o�~�%��\'H�������� s)8(���2��[8B�8��\"���e��;pT� 8z�8��$8>~�RD3��� p�����)p�� 8e��r�8}�3p�ŋ�t�[p:9 �?��g�#����Y/�P��,�v�͇��[��l8;�-8\'�:8�Y �}1�]�\0�v����{�G���� �J�ip�k}p��up�;p�m0���\\w[\0�dnH�7��OU�������悛Rހ�X�হV��7Z�f�/���fpk�f���c�y����: p�[0����k�������`�N?0\"���D���g���/���h0��Ư��/S��}�`ZR ����B��)]`��0�n�;��IO��U`~X(��<\r\r����4�t�X�,�mw]IwU�\0w�:�����;�IP��z��_�o��q��#�O�(C�����4���<��m��/�L�\r������g�^��J3x�\0��=<{�kW�}d��1����_�?�?bxY�\nx����)���hAV�n���@V�!jq~�#/ ��!Zwa����:Sk����\r*!����9\Zd�>� �\0b�(�\'�BLK ��\rS�Z���L�٣)ȖG\"Ȗ�~�E<���6d��K��+��2s�F����Ő��w!vٶ�}� ���8��8.�@�3m .����SqM)����@\\���v���Q�G�*�vij�9\n�B�>�B����x�N��;��R��v���������9���o���C�@�Ai����\\șo ɐ��\"Hdf$��_��%��wHlO%$.���+$>Ur�#H��\\H���f��~\\r=i$�O���y����-t���OH�V$��\0r{�yH�ދ���S��Hm��4*�.\0)�<5���B�?�C*i�!U�t�#�U�� ���Z�.�3��-H}�IHC@ �!�yNT�4W�!/��A^��A�&� /��{�9��$@����� �q\'��A�@�!�ҝe��\r�\Z� ���0�eA��U��Q��-�o*��k@DiG R����D����!ʑw����ޛ,Hߥs�7���v@Ȉ�0d��A�2��M{�>�t�\ZdLC��B&Wl Sw} _O�A�l���%AfL�@~��C~� �*�!��9}3��z+��wG!� �����!��i��b)dEUQ@U�l��Ĕ@U<��c�j�f���P��l���v�ڧ�P�V��~T�e]����%�g[�ɃnvH�n�@\r��C�܍�nyI��g�A��\'@�m�A���A��9ݾq+t��)���)�����e,��v�u�>�5\n����g[t�?�vW7Զ������[辭��}B�}���*��]G�K���+��z���Z�u���У�b�GCҠ�t�c�@�c-��P��.P�gfP����\'�NAO��@��f@�ߋ�!G��y#�Ї��ao����36NгK[��lg��zC�hO�|�\n4�=\Z�Y�����aA/�B�z�C�Є�$��^���ռ1h�B+�Z��Z�4i�[hR�hr�7h�(h\Z��~���~ �i����As��Co;@��\n��J�]�Iha���cZ즀�<|-y�-i[�߸-�r�>j�V���VfB���j��F�\"���}hm]��U=��v���\0� mdNA�~��>�5�>�)�6#���Lh��\r��3���z�m��m����/�v��C;.�v�p���%P�P��c(*��B�y>P\\�k(��7�zi\0J�pJ?uʈ���{B9��P^�~(�y\rT��Z��\\���P�g\'�4r*�b�_�U�A��c����A�ݕ4��th�N\\9_�h�\n�m[ ��UB�DC\'5;��Zv��,\0tr�*���2�5E����O�s՞�};������� ��\\t���4ʆ.}��.�z]f�AW�-`�hLu�+Lu������\r��\n[����Ӧvô?ށi�����\r[,�~�������f�u���[���o��s\0���*�<�5��f���H�m���E�Y��Y�aVm�a6��0�ga{ҁ�=�`{]E���k0��`v��~�B����=N��\\;��)�=��l�a�x�a���Z �yD梭sᭁid�\\q�0ׯ�07O����0����r�ؿ.�q�0��a\'��`�X�G8,Hc�R������w���Ā�9tQ�1Q��;[��:Ȇ��0�]Hք���T��b��.\n���a�S˰���+;��U�`���a�vm�]�:���.,�K=6�x���v�=�s�v�����㎆�A����a�vX�ǵ��iP�]�\r��I!�d�-�t�\rvo=\rVv�V�� {�V �Ui���`�j`��j@A��y}X��\ZX��N�ӸX�Ӈ\r�綍��!��f��e}���\Z�e�A�˪Ў\0%�a��i�X����~�� �����Z�0�K1�F��QL�a�`�`���`��0��u�v1���~< ����Sa���0�1L�S.߄u���`}����i��ίa���a�����7`��ZaC�ذ)\r��46�7�q�>��qu��e8l�����|�6�\r�\\����~<������}][�7����W`\0[6��V��p��R�jcc�fe\\��I��-\0|mf*\\;�z\0�Sl_���{<��,�8��\r��oZ_7���M]��av��;a��?�w0W�wE5���0�{j}�{\Z0�=�^����B����_���g���M� �p�W��p��Y�So&�pP/܅�\n�\"m��\rwo��=�ep�ֵ���cw��ޫ0�V_�\'|��Oj�Oy��z�8��Tx@a<���zX] z\n�t��`��/��?��0�f�p\0~�-\r~�p<�p~��,�B�/x�f<&��s/<��<>^~ >\nO���_s���n�SF��4Swx����d<C�-<c�IxF�=<��9<c�~�%����)p�g��9�X��+n��H��uO�w����俅�!���H+�:Rx��=x��-���C�=kUx٭��G��c0����Ax�/{xm�Ax]E=�A�7��7���~4xSW ���*���xKD3��a\n�����^�\Z�)��5��r�p��{p�)�O�#�4��;�p��NHÉ�kp�����=N�3R��Y��pk�]\'�s�#p~�Y8_�.��E�G�b�\\b��z��eN��&p�b/\\��+XKpe��;��8�:�\0ޟ��o��D��E\0|� A�?�u���:�Gk�O���?=�3r��m��\r��dž���[��� >�/���/�*�/���)���q\r���U��F���9�y�܃��W0�wS=�����߿�\n����K�5��B�1��t ���Ch�}��<�@��t@�u{�X{������R�I�\Zb���0\0\"Ly�3�L���I�y�a�\r��c��j%��{aY�@XŀV��k,�7�!®]a7t��$��&bf��0���0��2�\n����ѱ�8qh�� b�8\\��p9��p�a#\\=�n��w��a��Q1��?Bxp#G#\Z�:� ��_���\\A��!�M��� ���7\"@����!9!¡[���#\"v\"�VT �Bb��1���D�WD��FD|+\r�pu��v q��-��z)\"Qu\nqm8�t�\n\"5h�Zփ�n����h���Ddu�\"n&��W#��#��e��hDξ\ZD��SD�YMD��>D��VD��!Dq�\n�d�FD����E�}Y��U�(�(�DTD#*�=BT�;vnB<@� �L��#U�~��C���G<�!j�<O�e!��*B<� ��v���uG!���b�x��x9uѮ6�h��\":�|Ct0^#^MZ#�\\�#fB�����i�C�e��G�2����#��`�5� ��GP\"���U~�B|D��k��]�m�+�E�(Xߠ��X��#���1�0l!�<���u#��\'�����B�F(�G]�N�T�w��7���w:��,A���\"���C=�{fbp�!�\n�:1:IGL��CLJ_�����Ի������ �_�����\"~�E��\"~\r\r f�as4���}����?x ~O�!�[���+���F#���;R�#�u����\\�� ��1\Z��w\Z�G)A\Zp�H#�e���rt�s�r�����u��\n&roO�vw��\0i�?���A�;G�߾�_������ #�H��<�������K-��W�#���=�<�>�<�WG��@_.Ez�+�>�����(�����ȓ۽�\'ۢ��Cd�\"�>\Z�&y������+d�y��d�y�@ƥ��q7c�����e�K6�+3�ȫ��-=�k�dҹ$d��;2������\n3B�1������3+��3�7���W��Y�\n��?d��gd�������ߡ�̯?��o9�,x��,4�B]9�,v�G��� K�A�ӽ��1�{�|��YiR�|�|E֩� ��\r����y)�yg5�9}�ܚ�l]\ZB��A��ۏl��C�C�\"_�\"{J���Hp^RBB(\"$4�&��\0 C�#*NH�O$��*�EbrL��)$�I�d|��d�A��m��>H��v�8h )��<��\0� ��3��܇Hi�.����~�����#�|���HBvy� ��\n�����Α��1rD�soA��\0 G�?�S�I七r��M䄧����D�ANE\"���EN�\"g�s�?\r�?����_1�Ş%�ߝ�1(�K���\r�Uj�P�<QjA1(u�qN��HWCi��Bi������Pkً(�3F(�G�P�/C��Z?CmȯC��Bm4��28MGm�����e|x5�8�ez�j�!Ԗ�I(}m�ž�̿�]/�P��Q�2C�ͻXԞ�u�}���}ޣ(G��P����\0�HI=�H���;��d�-�r�oGy3Q�P�(�\'Q\'�&Q��D�{��+P��6��GP!����*<\'>?�:��E��y�:S� u���|\ry�u�/�}�������\r��u��\r����;P�=V�.w�PW�MPW�Ũkڣ���T\ZA\r���u��*������u�2�fd$�v�?T��-T>�2*�މ��UtoU��*�_A����.��ʷ���O�P}e���PZ1��k�P!��Jv �:2U�@=n.D�l�@�Gմ�jK�j�~�zH)���p�W$����j��jԼ�z�a�)�\n�t`�l�qT��n���j��Z�P-�[Pm�RTu�![B�ʾ��ܴ���@G�Q {Z�����:�P�\0�R\r�6mC��BPx�Q��>\n��!� D�(�K��1E�@Qgף�P�gps�E�0\0��>E�,>�O\\P�\n\'�p~%:�%��@���d��\\����@)�6(%���؇��<Du{�Q��M�>\Z�&����$�_�5�V�\ZP�B\rn�A\r&�P��Y�w�H�w��Q��Q�csQ�P��:�ϕ|��a j���\ZW�A}���rQ�T�P��7�f�P�♨_ 4Ԭ6��u�\'( �t.��n/j��Z%���^B�Z%�Wq�hu�.Z��{���hM��5���k��k_�Ak�|F�@�뿽Bo:R��,����k���ߢ�=�&�:���i�=��Aڬ���P �|�m�3�6/�G[L%����Do�}��&�#�(z�]?����=J9zogz/�:��z��m�-p�oh�_�h�x5�a�5��ڻh���5�#�\0���5��+��d�� ��蠏&G{=Ġ}�h?�T�p�I\'\"�Tv8������X��#:p�$�CF��a�Ч�5ѧ���#����\n7����BG�3C_p�D��F\'�B\'�Ġ�4nC_i\ZA_����ѧ�IQ��ۅ��DtZ�Nt:���Gg��Fg�^�o��@��چ�@gc�й�|t��3�;mbt�$�(L]T\Z��W&@�Oy���*�6t�\0�(]]�B?�-G?�>��YLGן)E?Q�A?�1C?���� A���F�8�n��_-|GQ���h��U4��\r���Fj8����h4\r��4=@�4�и�h�M�\ZC��oCS�o���4�y/�{��_��\0�т���B�(Z��?�3��3\n-9ك�m*D+X{��P-�������.�Dw���=�z���}�����o�t�!�0#����Ϗ��?���c���1O�N\r��i��5zJ�=�S��z�D���F�8�A�\\A�\ZBϢ��||�suN��E���E���+�փ�0/̪cZ��g�`����Dc�zcfM��~�ִ\r�]��~��Y�)��#c֟ ����1���l\n��l�Y�ٔ��Y�fsn0�U7���7f�`<��1\Zc���\Z{�UP��4��X&\\�X�?`�b�1V\\ f�E1�*�ϳ\Z��������}�90f�qP�8��8��1�R�1��g4��m�����i5̑�E��q-�ղ�~H�����9jd�9V�9�7\Zs�os��㣛����M<����]0��0�͘������ɘ��L��Lx�^L8�-��&��&b�>&��&�yl\0�B�&F�[c��[��((�\\S?����I:��|,��Ĥha�m1���1U17��0�z{07o217��c��b�w�b\n�L!�����m��)��S܇Ĕ�aJ�1e1�0e�����0�Ṽ���vL�O�*%\n���y�&c-_�<>k��1���,cj��4�ڇi�b�y��4��ļ���v���`9�]\'�N;�y�xD�\0�5��D�;rz���@CL10n59��Ay�cP�^T, ��߅A����&l��܊������bp9�ܐ�`�C�����l��_`1�-NA�O������{�����0��;��;���k��y��M+�I8f8�3�a7�#��=�������B��L����D�c��]0S=����N����\n�@��u����f���Y���9�Y�ۃYn\'`����7w0+� ���U���S��Oܰ\Z�x��qvͱCص}&X��#X���\r�X��O�M�l���k�A�5.:�5���5E�b�^�c�s�c��]X�&��N�������]�z�VK�ֻ��։NX�d��d-��#��[��o��?��=`��8�=贄=x�:�`�m��3��y�X�:�3�1օ��z_���\r�Ӿ�=��{,�\"��9���:֧��=ƞ��ƞ�2Ǟ��w-b�`C◱��-�0\Z6,�\rôc�8&b#�l��%�s�8�s�$l� ��b�-�^��^J��MH3�^9���Jr�^�X�M�m�M��M.��M{폽��\Z�і��1p�Y����cs�K��m����z�m�Ul^�nl��1��[�-j��-�a���`�/a�t>c��Ͱ�yll9P���*�>(��}�~[i!�V%?�>�5��W_������!����ϳ��-��̻ؖ�V�|lke<�������e�K�K��Nc,@oh�tz�cb��R�P��XX�f,~��]�E�wa�/˰XKH��%��c��X��0�\"������~�t\r,�~�5��m5��j���f,� +����>�c� _�RM��\ZV�)+ₕ�걊�h�Q�U�6�*;خ�9lw�lwc\'�g~�w���1v�$�0��&��0���15����sؑv�\n��F���=�Q�5؉���_�دt���*�?���+�sӳ��V�E�5�o��4u쿇b����!�\n��R9�S�ڂS}��[e3�S�l�i|Jŭy=�[{�-N����X�[�g�[��[OH�����(H��5ٸ�s�8���q�N`�qg+�D��E�ۢ��ۊ�㶒��_Q�m���vcq��q�o%8�oWq� wq�b/�\r��s�8n��n_�>�q�)���i;w��!�i:�^.���[���8�}�q���|/�|��8�����eop��\\��.\\\0*��\">� �q�=wq�wv�B;2paz@�i���3,\\Ԧ\\t@\'�|P�|��d�����ŭn�]v�]�[�����Klv�]���l��KNK�%��K�؎K�x�^��Kލ�~���`.2��Y� ��w����7������Gj�\n��ኍ��J&�pe����;\n\\Ŗ6܃�T܃S�p�V�*O㪴}q�5���V��걽�\'��m\\ca7��52�q�o�p-�0\\ˮ\\^���7\\��^\\��Q\\�d\Z���m�u�p�Rp�R(Hd� �pP��8�,b�!�?�C��a���(Q�q���8�Q������cZPp̔Fs1��[±6������p��N8�K=N,]��(<q�n!�n+\\w�3\\�d\r���(�_��_�½=t��<�=��k��d��qv8n|����}��r&���}�g�>�M���o\\�}�2����TG�~�G�~F��~�Y�~\n��f-��f/U��p�p�&c��}˸Ň���?�p+�p>x�2^e��js���\n�6��װ�kN�k���k.��66� ��Z�0���0��,��M!~S�#��t��(��� ��Oo���7�c�4�Û����nۈ�*D�{F�3��;4T�;�e�]�_�5C�V�\n���\nކ��ߓ����5�;TU����;�X�]t���|��.���Γ�n#�x�?����x��jx�IG���x�8���N���b]���A���F���-���=� �)|��-|�<|�]|��%|��->�e ��\r��ag��X|��<��f>�e��|�\n��(�b�N|�N>�5� ��?���\Z�� +)�˧�X|�_�e�L\\�ɇQ�G|���E���t��s������:���\r��W�w\'��EQM��|i����B�}�����z|��|�Y|Վ/�*�\n|�k&�\n��W ���~�����k�3�u^Q�:����o���72��y����j�O�K�O� �֗��mc����^����� 3<�*�m����aa�xD����#ڶ�Q�cxt�4��\'\rOjWǓ�l�SU�x�P<�/O�w��|��-x�J7�Y�g�P�9vx^��ي�,�N~x)���x�[^���2���N�{vr�=���=c%�^p1��>w|�-����-���k�����\Z��w\'���{���?�#�b�\'݃��Y��ϝ�������/���\'S��.o�]-�Oϖ�������Qu?�}?��Pp\Z� ����}�_�s�����]���_��OPybJP}\ZBP3t\'�+a-�s����k�l ڟ?֝8AX��!aC�=�����D���B�3��i6,�A���,¦�@���u���W��i�њ!��a����1��x��dE���1����2��V\"a��i���������=�I�O����=��p�@��p�Ap�� ߢ��S?\\���!��f��Ƈ���K�Ji\'[�$_s�p|0��s���f��;\ZE��N#�؟E8u�!���l�CݕBWN��N��Nϼ\'���pf���H8��@8[B�Bb�G������<�ź(B�)!~4�p dJ��F�ZSK���KH��IH}2EH�YG��<���\ZK��^O��$#dV�\'d\"b7��&d�9@�~����fE�)8O��_C�L\'�1A\nw�&��KxBɥ�RB�-6��?��9B��KBٮBY�:��D��!T,~$<8��P�jBxt$��8>�P�5K���D�w�\"<{J\"�((\'��ڷ����.:� �����τW�v\0����Q�(&�o �C�� �#@>d�?-�_�<�����\'S���M�s�j=����E`��%��k 쇚�� �g�G����C!K� ~�%H����� 2OB��ۄn+�s����!�zO&zS>�L~%�H�M%�{�J�D��FV�/� }� �I��<&|\nR\'|��\"�\'�&��Sw� S̭���W�i�_��ф�w�R\n �\rބ� ¢�_�_�K��iz�����߄��)�kA�U%ljk�k�_�Dp�vc\rq�^=��h��q�T\nQ7{��~���TN4Hb\r�V7�\r�x�\Zo���ƞ�Ds;������1������\Zq���SsD�<9�{�h�jJ��S!�xo#��&�-_O��&��#�v�D��&�O�D���D����3���W�~K%:�$:����W�Γ��n���n�zD�6��z�[��]�J�[}q��SI�\0�w�\0�Zb�X%1�܋�N�� ��l!���#�^�#F�}\'FA�c��1�ċ���$��+�+��k�%b�m:1��$�<G�î3i�ě/]��p����ω9��Ĝ�?�\\����>�mͿ��{�Ăk�ĻvF�b���R�6biv��D6��7��)�C�Uć�6�G��:�b]�6b��G��\'��͡�z�$��\'�Ӑ+�g�g��\n��gM�M&pb�[b��b����<�/Z#�/�����{҈.���E��D�2\"�B� �P�k\"��F\"<��A�MkD�oD2p7����fMd1�̃7�L�.\"��3\"�w��ҼBdA DV�n\"g��ۯI�E�X��o��\r�D��=����(��&�����]�^b7=���=M�ȉ��X�[s7�;�g�wAD⻤Z�;�(q\\B��G|__O�L�@�D��!��yf#q̧�8��N�zu�����8M�L��Y@���@�9M��K&���$��l%�o�\".��$.��J�3<H\\<VG\\d��n�I�[F�۲���G\Z��oM�r��œT�Hj\Z�$�W9$u��$�\'�$�>)I�?��i]H�f� �3H:�I�_%m0.\"mH�?<H��6&�!m���6�H��OH�BG�Q�dbgO2��%�>�@2��!�E�&m��$�{Y��ï�,n����t�v?�H�4�#Y��!Yх$k�{$��^�q*�q� �P\0�t��E:��@r��&�l>Fr1�#yT�<@kI>�}H>�E$��\"��l��k�߁-$��S�֓N�Z�I��vRp�/Rhx\n)�ę�3@\n�C�N�ϑ\"6:�\"\"�Hg��I��_�.�KI1Gϓb��I��`Rt\')�A:)�DJ(�DJ #]��!]]�CJ�J!]{FJʙ%eD��23\rIYHY<I�*�Hَ\nR�D\n)��E��UI���K*R�#�D�J��J�����;E*�8C�8�T�قT�#U����-�jTI�S�I\r�-�Ʒ�IO[�H��<ҋo2R�h��f�Kj��Ej�`Nj7�Dj�Gjۓ:�O�:�Ɛ:��^�i�^��\'u6>\'u��!L�H�V% ��> |�Og������ �gI�{ {�$���#!�$�u7*.���M%�Ϸ���OHx�L�j ��(\'�~z��Ɩ$r���\r��q�Y�Hb]��8W�I�7&$���@��,���I��oH�f$I��/I\\q�$��E����� I!�BR^0$)��$�mRIN�����M�Y#\r�ړ�ص���0��O�`1���Gҧ�����\nҗ�i��۾��4H��H�7�I?��\"���K�+<C��@��OZX�MZ��\'-@��ǝ�|0��&�t+ȫ�ɫ���W��&�E��Þ�տY�5�N�54��Z�O�Z�g�k\0�:f~d�V��\ryȺ�t���-d/yS� ٨ōlD⒍��&!��&��dS^\0���:�YV�<�\ny�f�8c�v�G��\"���s���Ȗ�.�-���V9�!�lM�B��U���@�6�w�{a�d[�\r�n�*��-�l�!#�י%�癐���EA䃇ޓ^\";�t&;*�GJד��Β݆u��7��CG�G����9N������dߚ��Vx��)r�h59��Mr����\"�e��O:���y��9ԥ�v���p�|:Ї|��Z�iz��� �쉵���.����!_(�c�����^���ɗX�+���䫥t���K�k�U�ɷ~��+ޓS�ȩflr�zr��+9�W��>�Ň|�*�|�Q79�j/9��K��!g�_#g>��o��K�w���@έ}A�;�NΣ��=$߽jC.,�&V�-��\"r��yrWJ.��N.ݭG.\r�A�o{�\\�:E._�N./X!?\0= ?�1!W��!W{��Ձ����5�^�k�����D��D~Z2K~&R#7 �/|�[u�ȭg�m�W�m���m���]�vCr�:��y4ؖ@�\\$C�D2d�@�����10����h�H�V��qo��;2q�=�T�D&#^�)&��82&3x�dv�;2�5��Y�E�,<�,,�\"�c�b��d��Yr�Yz3�,�V!��Z䮱Jr�)�����H&�f�ߑJ�C~E���Q�,�g�/���/C��ɝ����s�{`��\n�3����?�?6����m\"�\\l!�~�B�<D�E^Z�N^zx��wQAQ�Q���9LY�a������KQۀ�h���h�dR4�ߡh҉�5R2e͏#-�Z��Ԟ�������N��C1ḥ@�R\"(��S6C�R6c)�g�R��|���o��L0)�u)���(��g3�!��e[�m�n/#��OŲ\nF��A�v�XWGPl��RlД}z(�n(��a���G(�f���(�G)A)��$ʡ/)� �0�H�g�J)ŭ4�����;����E�:�M9���r�%��Gӣ�,�P�0J�����?O)aM�3��ȓ�������R)�Q.�8���8F%!N��0�rYc�r�O�� �r�\'�r�h�J��U7k���l�U�Jb�(%�HI�RR>�Q���P�*�P�8��7J�YJƓ\0J��vJ�o\'%���)�L����Ꜧ䅒(y�T)w>q)�c��7Q�>�F�;�H)�{L)2Р�x(�m](���Q�AJ�k5�Z�6��|��X/��I�닠�)\r�[)O;)��])M��&�fJ�$���\\<�iJ�&�ҢSAy!����0(/��(��/(�uYp� LM�@��S ��)��}~%���k���}���P0Ng)�L�@R�%�)��\na;�B��J!k���fP�[7Ph�-��\n{�\r��͟�M��p�7Rx��(��{��Q�`�0Et��\"m?I���D�y�R�=0J��6J���7�0��Oy]�A8~�2�D�����P�����fSލ�(#g�)#7�)�9PF��|����YlJ_u�21bK��L�LuާL��(�v����8�Z�w�c��Mu����ٔ,�1c�B����J��U=�R�1e�JY�RAU�?I�l��jNR��V�Z}0�Zs U;Õ�3����a;U��U��\nU�U?τj�!�j\0�B5Xj�n^mF5\"�Q��RM��f���-}�抷T�/��۶�P��]���]K��t�j�G�LΥZ�P����Qm�=%�Խ�-�v+�T{�\Z�=�՞E���I=�x�z�)�zp��z(e��$�JuC�n��T��.���ST��1������z�&Q�R/P�P}2iT���a{��:���z��=��S�+�����U��>�L�jT�z�c��uj�iCj4�D��Sc~�S/n\\G���I�/Х�W|��/� zS���pjҟc��O��$j���z}�{jft3���[���������n���Ps�w��C���B�y�~ԼK����|E���Ij���\0�z��$�n�cj d�Z�˔Z��,���-j���Z6��Z~ɄZ�H}pݓ��C�Ð��*�U�*�gj�����ּ���\r����9Ā�|��ڢ-��|�Q;7��NQ!FUT��I*�\n�K�\"�����T�_*��Jd��|{���N*5��J����,q��a�T1JD�8�P���Һ�T��j����ʦ�P���n��[~���O�A�R_îRߤ�R�����US�Q�f�Q?l+�~�L�~�O�J��6����W�X5�:��K���NR���o����(�o�*�7� ���Ju��B���u�R:u�l��{@S�1��~��V��zPIS��ix=�i����\n��y̥i�.�i��i�&Ѵ��i��i��i�va4��ӴM���i!�(�!��&�f\ZC��ʏ��J7ӶhShAc4��(�k����3�VLm����3_h;}��v��,�,h��J��Dͪ�<�\nSA��L�#�J�U}K����]zL�+F��w��{�J���v��v���\\Js��B{ќ�i.�ڑ�4�S�4W�$��[��=2�=>��^���^�K�cӼ�^�Wz�|��|���ۏ�\"h\r�� �JZ0h=-X|�v�H�v�>�����i��E�w�\"9L���y[Z�k*-�4���9-���Q ��B�ھ\r�kcdZ�,-)�LK��BKMɢ����ҫ/Ю_��ݠiY���#$��9�[�c����<� ڝ�HZ�!�T��V�F��`@+����7Ch�,CZE�\Zڃ5{h5�*-fh5�=�\Z������0���%Z�Y5��=���EZӪ/��#ڴ�ὴ��|Zs���PN{a���b��UPA{��a����R�C{Eq���j��o�O�@EWh�1\Z��A\Z:O�����y�C@\Z��O�Nu�p4r�n\Z��?�z�F�6��%L\Z#J������?�\rјJ\Z�t������/��Ɖ��q��h\\�q��J��k�4������E�4EY\Z��=���5L�ʦu7m�u/��zki}�>�k�>o�/Ox5C�\rA{�XE{\'\'ӆL{hå��������N,�j�6�CӦ̹�o{X�o9�i?^�ͼ���$��f\r�i���Y�I���>����\'���7�C�+]C[I��<,���9�WI��u:隃�k�@t��7�:v��/Q�D �\r=�麱�t��;�=��7&L�s\\�;��s��=醙[���э���9�t�YC����\nH�!�K�1��I��K��[��K�����\0���m�k���}�M���ϸ��2�18���}t{l.���q�Ä\Zݱm�~H�Hw2_�;=}K?���QB?�cݕ3Iw�WGw{�{�[�=��ѽ^N�}jEt?0�DS=�7N�C���a�dz��ez��.=��\r�L�-=�=b�=�ː����SA?���kH���L�Xɦ��A��9O�����N�h>����<�\Z�EOJ�KO*\r���l�g���\'��=��v�o�ޣ߂��o1��~a�ـ;�O��ۼ���<x=��\r�N�\'zAm8���4���}z��]za����3���\'���D/�z���R����\0MzŜ�jG�Z�C�~�Hl�(�d��9�z�?�Ɲg��ӟI��&GzS�*� VFo��ҟ=�?�~Jo�n�7�z�[�?�[���V������=��/���8��w���4���֟��#��*f;��h3��I�@��ot�7Qt�D�ƌСB0:nE�i�� Ut��f:��{:ʏK�D|�c*���:%�G�`�t�t�x:iG>�fB��iЙ��L���J�Eg��9tW:�MB��}��At��tq�g����.9r�.��K�S���te���4��� �6G�_G�����\r����#?��:.�ݓ��/���>�w/}��C�wwo���h�L��s?��뉒>��>S�>_F�o=O��������K��/s���o��+�W�C�U���dc���S�z\\C=�\ZC��C�pC��6C�����X�36���\0qb��elL^bl�~`�gk2B����=���\n�����Ð��0=�̰8���:z���T���4���0����\"��M �Z�ɰ>dɰ�3�~�d��0삅��OY�u��A�Â-�#O���EC�_�ka�}�u����qcãi�qtg2��C�X��X�q�#��+\\����2N�\'�!�S5w�F���jF��OF�F��*�d�����d�3\"\"�0\"^���(�(�qn�Gƹ��ݏ1곌ح�=-qV��K�T ����m��]FFx #��a�(B2n|b�*qf�m~��e�/�3��a�<g� /1J����K�7�1��q��:�2@!��B�Q�1Ȩ$�3jn�f� 3�����\'u�\r�M��ͺ��6�/�Wmƫ{����\0l�^���lÀ�ob@ޘ0���+VD�6��0p�SbN1���\'��ގAo�eПe0F�����Z3��і!��b���2DW�2$�O3��0�ay.�!���P4�]E�nH8�GS��ӛ�x�9��fO%��:c�$�1Hg}��x����1���{��1�n��+`|:̘��ڜ�V�̘��1�0wW;�����a�߀4���|���l�\n�\\��f��a������Rg��%1�Qw�̫�?$1\rO��z1��v2�[��K�L3�N�y�s[�������Y�ȴl�1�JW�6�w�{&���62�_f���y8�t�����j�t�A�.K��#��Lז�L7�\Z�{�%��7��:������iLo\'\r��G!���y���g\0f�0=�<{�yҊ��7ie���a��2�&��z[���A-$f�\r�y���4����f����ͼP�f^���[n3��=����e^}��y��L�ve&I��QY��>��17f�3�B;3�Ây��3����\"|g��ʼ5t����dfOlc��0o�0��0�M�;�qf���̂�Xfax ��5�Y4�c��`�1K_~f���f�I�1� �̊W�����G�Ϙ�^��,����\'���g�-̦[��矮2�k�/F2���י�{_2�+O0���2_nb�:�0��L�L�)� ?����<�D_�c��왤�LR�3��Ȥ~��d=f3ُN1�[��\"��LQ�]��_�)^eJƘLY�.��SS�^���?�캬��J)avG0{�����!�_�oRt���������c�wX�p�s��s�����%2?\Z3�tW�cN�̱�̉!�Kp(�K���&>s�,�9�Ng~E�eNG�������B�ߏ�0g��3�O0�`=̅�u̅Z/���&�_��r�<s%|��2��ZUm�Z�6��:O�Z��d��b�4XU,M�)֚�Xk��X�kD�u������֗�Y�_t�6��to�a�(f�i�6����q%,���͇�,��,��8���=,�.֖���d<�B-��5�k�\"�v�[�\rG�N�4k���,��UZ4ˊ�Ͳym�ړβ�Ȳ�V��Xv�9�}�kX��X�L�W�`9Z���YNo6���d9�sY.)�X.MB������*��ֱ�j�oh˷8��d�N��N�<�:��/��+�)��\nhf&��Bڔ�Ц+�PI+�L�&�d�v�cE$�\"`Y�s��Yы�����.L�fń�Y1���u�XqG�YW.}e%\Z���U�7�J�Hf���Xi�lVz�GV:Ǖu�<��Q�̺q�+3W��zy���&��5�ĺuF�u+���n\0��1%����\\�IV��%�v<+�^�U�Ⱥ�s�U��*\\~�*zi�*����w4�u������*W�c�?��*o�b=�/d=ȼ�z�قUIA��lX�[�X����z�V�[]��sGX�TmY�\r�XϷ뱞��6�%�KKw�K���z��*���i���\\�c�^f��(X`�v�ςn���lx���ς��`\rr8����c�\Z�Y�Nj,���m��=�e�����Yd���+�yZ�b�F��A��K���%ܛ�c��Y�KZ̒�;�d ,��Y��(��%qg����z�[�����\Z�aY���XC�X�w�>n5e}>c�n��F�-X�F6��~���� �kB�e}a�dM�N���B�7y.�;�\'��B֯�O�������kQm\'��Sֿ��Y+�Y�j�O������w+[#ɞ�i�YS����ֺIek=ck���u6*�:M���l��I�ưv�&���Ԙm(�a�;��(Il�I8{˭�����ۧ�wbw�w���w��w�e[��-�6��6g�6���*�l[2�.ڗ�/�%������y�cYۑ���俋}�S\rۥ��v��e�&fqd�䖰��R�~��*\Z���\'��O鸰�_��h�\"�c��I;�jLv�:v��쐵�쐛N�Iv��y��s��g\\��g�2�yJvij+��v��9 ���1�70;f����Nd^b_Koe_{�g_����t��N����2�j����L�N]x�NK�e��:Ǿ!ag��a�z�cg���9���9�oٷ�,��\r���t��+���������;��þ�e�����*؏�>�ڿ��@����]���n(�c7ܯa7�<`?M�f?%��<��2���<v�D.�y�\r�9%��ƍ��������ְ��W��v{ ���Zaw�\\ew4�aw�b����]�l�H0�bþS�p��!����`c����;^��;����^l�w\n���&���W���aC6���Mk�˦��Y�q6�j\'����C��|�p���[��a�ν`�=.�寊�J=v��ݝ��~��\\����{(�>{�>�=\\/a�O�b�/�a����?�����|u�=i5��Aʞ������a��{�Y�̞u�Ȟ�yŞ+>�������{֜��I������v�\"ރ�4��c//���rT�d�#8��|�*A��ʹ��j��Y��\Z��Q����Y����u�,g��gm�1g��Q���j�:[>g]zg��4�� g��0��ѵT����~����;�٨���h�����1x+��S9��p�ɧ���qs�]��8J��yg�Jg��g��gg�;g\'y������^���ͱ���X%��X��ñ�����ds�v�q�u���g�9m����%�#bǑ��sأ�s8��0��q������#�xXn�x�@9���8G8p�6r���x��p��5�x9>Þ_i\0���� ��� l�� r��}_�_p�V�s���p�`��6ND�?\'�I0�����k9g�q��8�C9�V/8�ns�hx��_���w:���Ur.���\\:�ǹt#�s�ϖ�pj��\05�\\��r���9i幜��97�[8�f��;�9�@�M��sSD��z����19���\\6�����sg�S47�)Q�sJ�frJw�sJ�����Gwqʛ_r*��9b�a�\r���^N6�S%3�T�xr�aO9O�=�����˜��z�S�!γ����t/NX�ӢS�i٢�X�q^�p^�M8�OZ9}Ϋ_��N�@�9\0�0�����tq8�] dZ(����3��ER8�^��)ҘC����N\Zs�9%��ô:��s8�_8\\w��#�u������ Gԭɑ�r8��`�Lp��<��)�⼆Mr6[q�p29��Μ�UU��+��Ѭa�\'���X���@θ�#gb��d�f�W��3�&�Lo�Ι~V��3�E�j��.���s殭�,�P8�\0��G8���_\\�@���3W��U��r5�_s�^��j��s�}I�n(@s���r7=K�\Z��sM^r�t�s��r�]�ǜ�>���*���Nr�������q�\nww�e��;�d�k_�ڈ��{�ǹ{+G�Vc��øJu�әz���a���ko�u0��YQ�=�r/�x\'��c��듺�{���M��p��� T87��n��inX�7ō���Fuq��˸죹1���1a��1��X��s�{Q?�{������˾r/Y��^���&DqR w� ���#��L6��A7���rg57��M݁�&1�i�ܴ�Zn:���f7b�r3�Ǹ��Tn�,7k�˽iWʽ�6ǽ���)��7g-����-���Ev���#Tn�c �~3�[���[���[�H�VG8pߦr�FU�\r>�܆���N��/�͏¹ͣG�-�w����mk;�/�x���H\'p�\\��\'\\�kS.(���\\���D.$m5»ͅ��B}C���M\\XU+��r�縈>g.�B3)��EI�s�\n8��� ��#R�$�$.�E<���K���e�U���$.��5.��.o�s.�u\n�?����q�����n��W��+��v�\'�]\'nu�����МۗX�}m��}�����K¸�~���D� !��N��;�1���ٸ�;r �px���p����#�����\r�x�s��X�W���=����`ܙ{��]?�봸�˸�Wq���.-p�����-���ۈ�N����C�i݊�i��ֺ��֦Pyk�{�֥�t֍�6l��m8n�ӵ���K~�ЇxFf<��H��}��A�3_��gncʳ��Y����\Z�vt\r�vμ���γ\Z��&��l*�x{5sxv��}�!<�5|���T�f�@_��.�C�#� �;R��w���s����n��?��<�<xGO�e$��ry^�a������b�NXHx\'2!<��x�qv�\0�9/H�/���I��BG��p� �t��w:=���\\gʋ�X�}��Ŷk�.n;ʋ���K0Y�% �y ?By�_��]��K��t��5�y��h�n��ݚ��{y�f�\\�6���x��y�_N�\n�<yS��1��BS8�Ȁ�+��ʻW\'�UD��*�w��|�U����\"x�x5OCx5+��1^o\r�e��3��2��vl�׆x�{��6����kc�k;��x��1{��J��jx�I����i��a&by�&O���{<b�Sq�#ui�(fOx���<�l���G+��h�$���h�1$�yL�Y�Ӄǚ��qv��%�<�׃<�iOX�*�<Q9��u�7�����S=�{�j�{����u��g�y���xC���w��F���Fp�g�\\ބI;o�=o*����/�+�7#o��)��>����\\��7w�~G�}�[����U7�U�j�W��Wg��W���W#��\Z�o�5�\'�kR��C������;���E��\r����+|�S|�7i|�_5|���-����s��[WW����o[\'�o�\r�����η0�V�?�֗=�{��|ۿ��_���}m����c|�z����l��wv��.C�#��M,�+�w����̈������\Z�xH�x�+�|�J�\r?��3?0͎Ƞ�ӣ��~����R��S����GN�����/HV�c_u��0~|�?~a#�R�!���^~bE:?���O���g(>�o|�gz��o�=��j.�g_:���6�g?��g��9����>�o�.��r����������c~��^�{�����������u�#�_j������ǯ�k���k�}�\rW��FC�qƚ�$?�~�\"�eʃ߾i+�#���Y�5�!c?���6>,�6K�#�I|ԏ�|�ȋO�k�\'P�� 3�|�>9c��\"��������t>=�*���gv]�s�&�\\�F>�>��\r��\r�|Qv7_|x�/�p�/�����\0�l�����W�\n��Iu~o���W@�v��{����`��0��~�F�?1�����&�\Z���g�4��%�1����c=�����_֟����3���N�g���!��V]�8�_r��jU���/�\"�+�z���*�&��/ՙ(����u���E���FC���@˳U��%�z�.�xP��N���@�T����@�h.���������\Z�ax����(01�*0Y��� v��v]�z,�}�%��,ߛ\n�96�l{6�l��؝}&��\Z�wN�;��8�L 2��_NIkn?<���*8�tN�3+8�Z-8�Epl�X�\r-�vP�nI�+D��:/��=*8�W�� �j� l� ��fA4U\"8??!�`f��*���͂�5�1[ .>�!�Ó�������lA�Y� 9�Q�t�|W\nңM�Q�ׇ��\'�\Z5�\r�H���6A���[�=��u�9]A��eA�p� ���v�yA�i��`�:A�����セj�B�A�ӂ���tw��4Y ��$Vp?�,(3�����u��/�\Z ���g�� ��� ��-�2-�g�Aǩ��WS���W��t�j�\0R�C\0��@���\'��g��e}Z(�N ������P�! �j��~�G�(\n��T�S(`CN\n�3z���ё*��� ���@<i)�1H��tt�@6�,P@hś4A����WeY�w������mc�@J04C��S+�F��q�\'�/I?�SVӃ�7�����^�x�[�x�(XZw@����\\�z�p�6m�jߍB���FL�P+�Z�]�&�9� ��!�P�&���g�|j���B�P{� N(4��E� �*�fd-�շ��0���)[���h w�b���r�6{��6�½�w�v.�B�VB�`-�~�|�=,WxP\'t<#t����\n]l��\ZR�k��Z��me����]£�m£k��l���7�z�L}\\˅\'�ۅ�;�\n�|���Ha�9�0�Aa��0h*��E��%ݲ\"k[\'<mO����Y�Nx&bBx�͊0\".Ai�#��?\"���F�Fx ���/�c�#�ج0a,�Xx1aE�h&��#L\\^�� L� L��.L�.�t��m������۱���{�[Gx��+��k»*�EW�\nKm��.�I���>�vg\n�*��V��V\'�V�Vw�r��Io���j@����<>#��<�-*��RዊDa�]a{v���� l�\n;�P��+����B!��<|M�� �E~\"��\nQ���؍B�gG!��LH���DI.�4��֓*d��̇�B������,��:#��\n�\0m�P~L(��$��\'���BY0U(��:��J����S�2v � �=.\n{xU���^�ma�}��o��\r�Dدc$p8%|��ph�Q�>+A�1 Z�1�]8�?(�\\%�<�M8f,�;w��� G]��O8!�N:�N�>NAO�i~<\"�~\"N�v ��d�7���� �pf^[��pvS�p�J�p�S��%\\\\�,\\,�/\\B^�k �HD�n?D�ٗD�<BDj:f\"5�r��C��C�Q�i�N�4>�4���5�^��1\r\"�\'kD��DD�7Dz��M��\"#��\"#�5�I�~�ٹ\n�ֺ��m�K��-m���A\"��k��l\Z%���A��?D��KDE\'D4�\r�E���!������U�B���#r7��ܝ]E�o�E�2E�E��m��\r6�c �E�5 \"��\"�\rX������Y�W�\":��(:e�\':�l%��\'��r�jDAGv��RE�fE��E���Ξ/�N\ZE��.O�/f�xp�e�(Q�O�8)���%�#�R�D��LO��x%����-w���rUJE��ˢ�����D��%���������\n߿$��Uw�������\"�D�����ƿ�*l=D�;7�E�D��\ZE��3E5�ץfw���z����]T���I�H�\'z�5\\:+z��C�,�F��XԴ�S�T�+z�\'z�!���ڞ6�^J;E�7��d�͟���E��W�^-��\0�\"p�W��=L^(B�E���f�0��E��\"��Z��a���\n�E��B�zI�\'qPE�2;�!D�^#��[��\"aU$$�Eb�B$��!��GD��}\"�լH�G��R墮�(Q����\'�D��E�PE}8G�k�\\�z,zQ-��+\Z����M�Ε(\Z�h/\Z�g���S��+\ZY�+\Z5���1}�G�>O�D_^ES��D�#N�f���f �����9c��_�?H���|ѿ�}���bU�\n�*���%5��+�X=)�@]�9�H���x�E�!p�x��^��b��.-�h��\r��(���f��[���x����h� 63y+6�n#6�Ɗ-���m�2�;Bߊw�?�.*[n�[��[M�[�v��7!�*�Ų�0k�Ak�qX��Sc��B���@�\0��V��*v\n:!vo;_p�����y���m{�{�ǽ���*h��K���*���\'�۞-�{��ȫ���$>�_M|�4K|�Q�ؿ��ؿ�Q�zڈ����!�gš=/��v�#6ƈ#����~�G/<��:\">�4T|qDUϙ_��)NX�N���J�PtT|��\\|��L���F�rhQ���\\���[�V\n�Q���ahq:fZ���%��{B|]!�<\ng����.��>��7�g?+��g,�s(��ۂ q~D���e���5Q\\��#�_�ߧ��e����⇞�ʘQq%x��Ꟊ�Q���n����G\\q\\��,M�h�%~vyL�7?�wC��I�<�G�r+T�2qW�2�^���S��e+n��+n��\'�(ŋ*T1@{A��p�b�����\"�U���1��z1r_��#S]�H�B��^�x��(i�],ƙ8�q�Ą�)1Q�&&iʼnIf\n1}TL/�\"f�ً�W7���b�K���W$��s��<ł:�Xl$���H�X:�˽�݇��=�V�}s��o�J�o���FS�\"�#����&=���l�-�4���`�S=�6��_(��W{�gF��_\\��^���)�B��x�cF��p���h^��$^\Z�-^3��8���V�I4����F��*M��h�n:O���H���:������X7Mb�\\�ʖ�X����bILG�$[�-%[�%�%�|��/��Z�d�>�d;�X���d�/�d����ݿA�l�dO��d�H��.�ZbUb\' �wEW�%9��ıd���V;��}��%\Z(qy\n�i�����$�?%nU%�a�ϕ#����H�\"�H�e�J|��_����{��h���I��ߒ��RI� sI(�]��J��D�DnW�D�<$��9I��ՒsuIt�休��b�$�d�$^�Qr�*Zri�%��\r�$��K�9H��KR��$)��T\0E�V���8��H?�u�H��|�\r�$ӯ@� ��~j�䛑$w��H\n�z%E�%Ż7H�_?��%�jZ%�m~J�����s$��k�\n�7��5���=V��w��*��*�;ɣ���FmI\rꑤF�\"�=.��,��9���!\Z$��A�\'��I\Z��%�;�%σ�%��rI3v��%�@��=���H�t�<$��` �Z�FN�(~I1�d���ʕ���$�}L����g !����9IHyq��\n UsIB�\rH� *�pfoJ��-�E\">zH\"��Id:Sy��D�J�(W���4WHz�r$��+������� I�w��u`��5E_�F�)y3a y�<!2���VJާ�JF�[%�:$�zU��k,$co5%��[�o)��o�$�\r�$��(�˃��-7$����F���/��K�_��vH��h�,������%Y�J�,�����HU�I�UZIR��6���/RM� ��+�T��T˸B�uw�t�3G��&]7n#ՙ�H7`�F6J7L��zwI7N����\'�t:I�y�\\��;W�������tK�}��!�Vt�t�އR˨�R���։��=?�{�R�DM����8�a�Rg���%���W)u�ɔz�o�z\Z����2���(��=��~���!鉐Uғv[�\'/����$\r俗�9KC�\nih5M\Zږ&\r�쒆-�K�1��3\Z陵��(�4ꢷ4Z�WzA.�@N���є��t�q����I��`����z�ui��4s�J���-�\Z�-�i�J�=vUz��[zS\"���Q�o����,-��,-��&-�n�Q�J���K�U����]��fi�P��)Lzo�Bz��Fi9���B놴bz��A�Ci���Jw��:�\\Z]�#�ђIk�\Z�5���fmi]B��.SUZ�@��;�J��K��J����c��eǤ-�FҖ�K�\Z�/ʶH[ˣ�m��6���ݶD\n��#����R���\r�B=��4)\"�[�)בb���X�c)�Z %f�I��+R��_ʯ�\'��J�WK��,��_-R�gg�rnJڛ�,��\r7�o��K��Kڤ��K��(�C#P��]��aG�ǘ�ҏ�$���t����K\'L�e�Y:M�NfJ��2�߮ ��UJ��I��y��P�ғV��\Z�rƨte��texX�rrJ��h,[=�M�>��iH�d\Z�d�S2�t�L��&��*��/[�-Ӷf��Sd���dzV�2�=z2�_�2}��~��L�!S��YKfp^f�� 39�\'3�w�������2s�\Z��5Ef���vخ��Wf=�\"�����2�ٺ�l�/��\Z��w9��G�d� ١�DzC횲C���߸#sVK����dGʳe�o���4�d�d76ʎ��yekȼ�U�&�˼������N��Nm���JP��[Ȃ~_�۱e��*e��0Yȝ+��q�,��~YhG���ޥ����En@�\"wg�\"ö�\"��eQ�7dQOʢu�ʢ���b,zd1n����b�I���,�L�cN��C_&�T�E�\0��]=�T���_�T5/K���*��\\�+K�#d�7�ʮ��d`o�\rٌ,��,k�Tv��,[,��d��WdynY��ٝ@ٝ|YA\ZKV�.+RM���}\Z�Mm����e�AY����2�JVIΐ=z${�FV=�TV��F��\"^�0ʖ=��.k������N��.��nK�+�Z٫�RY�aYg�^@�\'Me��a�H��|�rm��,L[��0��d���d� ;>�TFH�\'#9!ed��ᄌ��K��1Kd,�\nG�N�ӣ�|�P��LTU,�0�e��G2i�N�t MօL�ua�Ⱥ��zt�e=���k�%��+p��\\����\r���F|Wd#��>���>\\Y#et��ԙ��k\Z��2�싪�lr�!�dO�lr�G6u�l��}}�,�uX���U6��$�-\\+[(?)�]c+��Q��p��T�/�\\Š]���+W��!W�Z/��5�T䚽b�����5OU����/��,r�v\r�>�.7�Pn�\'On|?Nn�<\"79�Bn�N��\06�M�\\�[8H�ۊ��;���;�?�;K���]�y�]���ݙ䖁�r�$���-����ܶTEn��D�q@n{N~0�M~تO~���:<���Z%���.�B,ʽ�.˽�O�}6��}�=�\'V/�OE����ʃ�����,y�ZyX��<L9#w[�����{��#�u�#F��$y��5�cJ�����h�����u��+�ظ:y�e�<��D�0�$�����\n���*lQ�h2&O<%�懑_��*O^��\'�h��!�<��iy��\'���4���4%U��H~�G_~����z�M�Iy�I^X�V^�L /BR��G_��k���Б��1�W�S�U&>�j������S��>Ky]ǰ�q[���zT��k����Ny�-�,yǟ�Ρ\n9@�/���T9�Ǥ����W��ñNr��\Z9b�iW,G��џ�r��)��ߐ��夶e9yO��,{*g����ٟ�<Ҋ�osT.�\"�ʅ�Nrѹ�r�o�\\$������req��;�Wޓ�$�m���7V�������a;�|�~Q��%��_\"�8n\"��%�|G]��\"�@�O��ȧ�oȧ��˧W��� ���0���R���w���n��b�|�pH�/2U�/;J��MV�.�S���+4�Ph��P�Mx�X�c�b]�C�zU�bC�.ņ�}\n�eU���I��e�����;�V�+=�&nX��\\�b�s#��Mk�E�Q�VU�b�v�bk]�b�J�cnjb�w�bg�k�N�y�.��՟r�u�n�͕�]L��>�Ka������,�%[��z�:�8����!>��o���/;Dqb�XqB�Kq�s���93ũ��\n�\"�?�R��W�{C��L��;#S�ei*\"�N)\"Bf��|�Y�m�s�k�+.pr��0��/(�(�]��H�#P��Q��e+�߁*nl�W܈�Qd���)���ZE���\"�f�\"W W䭼R�)�Gw*\n����ڊ{6`EY�zE�Ȩ��ꩢr���iAQs�����BQ۰��Kݩx�_�h�&)���M),E�����5�Nd��uH�&*����:��3ζK�;�7�W�ۂx�=^鬠�;+�8k#�F���`�+Xj�\n#N��6Rp}���[\n��Z���V�*D�\nq�B��U!9ѫ�]�)d\"�����D�PV_Pt*^߅*��wz��w؊��G�b�b����Q|���b�ǏE�O��1�b�L�b<�T1�uW1��G�eC��S�brݢb2��v��ǹC���r���}��4w��/�y�b^+J1��]1��b9u�b��L�2S�T?�T��T�.�Q�5�*�(��5_+�B��u��J��\'�(u��*\r^*7K��_�)��\r�-����-6+w}MSZ�VZ��RڴQ�q�(��5�������J.Ly�h��`����fVyH�t\nB(���W��R:G7*]�/+�h�T�)]�KJ�h��c״���Q�ZWy�������G��OyJy\"��<iU��4R������t����se�]�20��q{�9�Nz{A:���f)�f���V0����3qהQ�\'��~��\Ze|�����*�2��]�e�@yŦEyu�2q��21�2�p��[e�v�2IJQ&�*���(Sc*S���g�+3E%�̏�ʬ����Z孔!e��eNܴ2牵2��#e��>�\"����,hW�t�w7;(�kR���\r��n\'e��[彏��Q�yʲ�te�%����S�ڥ|�?��`+��UV���Z�ce��S�d��l<��|\Z�V6}�S6{�(_��)�8���k|���;��� �vZ����O��V��<vV��QS��ઃJXQ�.G+�W�ȭ딨�X%�,L������U�(�\'�*�l%����ز_IjIWRd))#cJ�W����[�p&)�B%3SW�9a��_+94��یU�rM���R�З�~/SJ!J��V��s����|q�RQt_���R*��(���}������۔}��6���������Cʱ�)�D1Y9_PNe�VN�\\QN-\Z+�?h+��(��Gqy�s�u\\()�!M�BFȈPF ��R��(�l*ٲGT��R��V��}��{�i���<���ϙ��{�rQ��rɶ�W��~:�Wtj�_QO�_��.�u�.���.)�.|�wE�w�������@@5.��7P���\'��wV��V�k�M\Z%�������=���Ӏ\r�\0m�E�δ=@ג�Q�V�N66�hlj�\0l~��\0�}�U���%�����oB\0���\0�^�r�!���~1`_%p�-\n`��j\0�S�\0��\0�O.\0���\0�5\0�J�v&`�p8��8�808�{p�����;<8V�8~n���.����ַpr}�k���+���.���Q 8�8��w� �s��/H\0A�s�\0B�^\0B\Z��P���R�ũ��к�p�ˀuS@�m\' ��\\]���s������`n4_�4����|���\Zws���\rH3$��eM���߀�sL@�m5��!#@�L�����6p�\r ��s�\Z �I4 ����u/���N@q�f@�\nP6�T�8��d�y�����u@��9��w��n��9mw\0\r?g\0�j���k�7=�8��\"��b��t����~��MI���M��6��w�{\0����F�\0���m�F�_O@��0@��q@wS.�CF��|�m=�xD\r��d�c�ࣸ���$` ;\n0�|�|��|-|���6c��0L�Nf���A%`6�\n�;����,� ���vp�)�ɷ\0���\0�7���O���\0$<�t��k���WH� \0J� �R��N0�\0B�����!��,4��\0��\0�=�0� �i�\\=�p�2X\"@~��X���4X�{�x X�2�м�*��@�ppձT�Z�$Pc�-Pk�\0���j7m�n�n6\r�;�\0�H�/|n+9ܾ��g_p�\'phx�p�k:�6�\0�h�h��h�3h��\0Z���N��Z�%-�Z�Vǀ�[]�6�F����@��@�G5@G�3�Q��S\r謦t�|�r`\r�R<�X\n�� �H�ztgO��=�oz�T��z;�^5a��6��^��3C�@j0�m`p�s�9��Zkๆ��`��+`9\rB��h�@�W�R`�w`��`�05�\n�>�P���Ƽ}��8�k����``�?��kO�Ii�ɍ���:�LB#�·\0ང���%�l�^`v�0;� ��j\r0wi���\r�_���\rN���߁�O0����7��%I���\ra�2���:�\r�PO��.Xw�\rX�(>��\n|:u�,d�\0������;)�i`�l�|�|M-�q\Z\0�����,\0�yM\0;�Ӏ�����d�`�~`�-�7��Q<�ױW��:��%���R�c�_�G��5P�q+��\"p�,�^������Q�+3�k��ky��{����~\\�m���D��r �� ��\rNr\"�.@��# Z���� D��D�� $@\"r;��;�}��sʀ�0�AJ2�����V ���,o�^X_r��Gs@��@Y�-P�cP�k�dc&�KF�������t�˪�U�L�z��z��\ZbHcbh��h�1h}d#h=��Ai \0醀A��6�����<��Az�%�V�g��_/��O��=��4m��\r����Àv:��|q��U\0�%�\rڭw �ǏڻZ��R2����> :�sd���y����̫mAC�@�ԪA��u����?�l���0�@�Gg@����X�9�1��+r�h��|.4�|�׃�<�\0����@��i�����΄��U��g�A!�cA?�\0]�\0\n�4\n��]�q]����\0��\0�nNN�bWo�=I%0ށn�����%�%�\r%W��Rm��R�$�Ґ?A�*�;1s�;�k@w�������/A97�r���׃\n&@��AE�Ϡ�N��W�A%_��J�\ZA%$�T *��*�*�@�AU�gA58}�C\nT��T�\rz��T�z��j�}z�\r���\rz�q���Ԛ+�����;j�r����y�q�s�#��Y�6ǀ���@���>T^���A�21��m�A�\n�`�\Z��4��8h��4�)��\Z���(W�&z�@�>/A�\\E����A�N�wY�G�?�Ǘݠ_�\r�߬}��?��/� \0Iܷ ��k-� oR@P���K���L\n8�� ��~bt���@l`��PqqC �%���\0A��@�\0G�u$}~$s&��;��Q?�*�w�Us�����;���̟k8�5U��u�`݃��w���l�ޖ�o�g��-Ɓw��*��h`����&���\\\"��i�.l^�d�����6:E`ۛ`{� �H���6�`v��;�\0��_���{�*{�?�.�O7y�}kg�g����Y��\0���\0z68p&H]\\����n�����k�Ϟ_9�|%G��]G~\\_�odۃof6�c��c�qep�\'\'���26\0�RF�o_�\'n������Ԟ�ല0pZ�p��\'8]f�\\7κ0~g�b�����y�(p�6{pA�!p���/pi�sp�\\~�\0\\q�\\kg��\\ץ���?��~\n�7�O���g\Z��g�,�sO;����7g��kw���6����M�Y��t��+��)!�W�%��Nq\n�\n���/��;l��M\0p� ��b3�×)p5\Z�|�W8�?�xX�?;Y���W�G.��G*��Q����(k�h�g�gKS�WU.���:x�!�\r�OD�������x��?�{��3�\n��+��nK�p��p*����_����p������`��G`�}6^�Fg�щ;���00~�5O)\0[�`���`R_��6 ���S����V��[�`��C0�D4����:��6���.O��z(�-l����r0;U\r��[�����`��W���o���mQ�Q3; Qg~�h�WA4�L �_� Z�L��E=D�R���!dS�1Ȗ�U�3��C�}�d[X.d[�)�.���\r�c���\n1l�98�1��b���������Ds�#�b}\Z�\"�b��)�J�rX�b�e���bC�?B���q���8z�8%/C���!.��!��B�p� n��{�A��v����{�ě�r:�$��H`I7$�dTD��[��d�\\����P �2!�� ��B\"�� W���9��k�i���d����gHTr;�FG8�f�\n�&�\Z$�P\rS}w�<�z�V�\0��W����$G#Hҙ���}H�H*$=�$�k$�z$S|r�t䎟+�N�}�zHv�/$o\0ɯ���J!��!�� ��鐢��b�1�Č)�&��>�)�\n�T.B��9�������z���?�!Oml!O=[ O��C\Z}!\ruA���u��yxȋZ\'��(�IOҜ�y9�\ny�>i�s��١y�.�\r\ni}}��Q\ritҡ��� ];!]������^ȇUM������C����o =�$H�S�/����2�2�12\0�|�2��$d�_�X�2i�|;��X�L��Bf�r!~�C,� _�!�S���k,1�x{�:����\n��� ���C�6\rmB�\n!n뇐6d@�;L!�S�!� ���a=N�pv���$�ȿ\"\Z@Ĵ-i� D�\n�[kB�WCz�E����?�P��,���c�Z=��o]��C��Au=U�y��-���[�@�<�ny����-��6���t� t{�:��cto���\'�}���&C�9\r=ح5����\r��ݬ����@͏jA�36C-j.B-����+���^@�bP;q:��~�Zu ���z�\n�������PW��P�Yu�0��@O�s�\'��B=�;�>�\rP�g��� =���wv�o�ԏ�����@�٨A�)^AC��CC~*����Bþ�C�}��+2h��MЈ��Л���h4��;譇��$�,h�\n����eZ��� ��V��\n�]��慴B�B�?f��~������\nZ֫�V>C�d�Ї\'�C&�Ak�.Bk�&�ڕ%h݅ih]F\Z�n<��\r��� ��C��/@��v����C[f����^C[�۠���S�m3xh����Ю�`h��9h�G:����?8Ё �s.tpe:bk�B�bT�c�3Я�@���@��@g����{Ԡ?}��?oFC�T���_��.օ.���((H��B>A!}P�V(|h\0��nE\'A1R(�d�����g��\\<�� JlN��$Pҭ�Pқ�P��(e�V(�m=��W�`H����Se�K�r������f P��WP�R2TJ��v|��b���)T����k�*�����+Хu��Kա˾���G-��B��N��T�<a�ƹ05���`������E0�\'��&��0=õ0=Alki#Lv7l�؎�����a{l���v��A��F�����;\r�Lv� v����]�ؽf,�L4�a\003�o0�t��雰C��a�����~ì��a65}0{�9�}f?�s���9��_aΤ#0��(�� 0�O�07�,�#�\0��\0;q�&�T����G�/7滸�]\n���e@���4,��ˁm�z��� vnv.�#�|!v�y�<��B�v��vI6���E>��M>��)\"a���aOK`WwG®=� ����\n�E��oа߽`1!JX��,�����|K`h�n�n[[o�R�v�RbB`)�)X��,}� ,��� �S���*�x=�4��� �E�����v0a�Z���rX����ˁl�\n����C`E\\2����xTV��+5��f���]�U�a�!Xe�&���7���C�/����=��\r�_��8{:�k*�5:a/6���a���`��6�^��j5��y�ھ.���>�:l�`�`]�ᰮ��n�����[���jX�37X_��#��\Z�>��\r8[ÆN�\rݸJs�\r=T�F��`�]��1}��5>�����.l���u�m:6��=l�6\0�K�����Kn�;���I_��W߇����Za\'7��\r�g\n�6�!\n�a���a�6x����S� ��/���Sa̔,��#G��>�x�J���^���L�����{a\nI&Lٿ��>�r������>W{˂��D����u�5�#�k�n�5���l�����u��p�n\r���(\\��.�N�\n\\�N9|cq|S�,|S���)��UW�[��[~m�o���o��߁~�����w�#���v���9��wy�<i����<\r�F�N��G6� �&ܴW7k����O�澥p��:��� �Uv��+n}���nwan� ~��;��tᎯT�G�v�O���ɀ;�]�;�;?�+��Z��]���ݧt�\'���v���\rp��st~j�m�)��w���Lx`e�<�\n~q��6}\n��C���ˋ0����\"<��\0��!\r~}rE���g��c�c\nl���D���D=x\"�8<����x���O���낧�F�{��~W���z�������>��~J�?���������\n�?�\n����Rx�w������R��<7��u<��L �_+S�oj���+�����m\'|�m[x��5x�a:��m ���xǝ���x�����������P��#{�cG��c!.��������ʏ�O���N���\Z�§ɽ�i�W��\\>��>� >�*�_����I��[�����2�����k��m����\'��UppM�+����.&p��p|�f8�\'�[��7�����\\�&�`��\0r\r.6��i��D\\����+O��+\Z�J�u�\"d��_�.1u�K��*�6��)b��xĚ�����Z�q�fIB�w����s���k�i�$B�M��x�m���w���3�A^!bϋC���c{I%#h �xd\r��=��\\��WC��7�U�q�M�k��0���8�G��s\n�ؼqt��l�p��B�.!u�����1�[���-�=Z�8y� q�<�yl��_\n�^#��r\0�k�\Z�Ǥ��5��]�\"�hq~�8��d�?��8�Am������E\"�EI�s9��\".�V#.����#B�ȈФ����)���fĕĕa�>��`D�*)\"�R#�FD\"�����H�H*�@�\\@!R�3��*w*w����#�,�(DV��}��ܛ���s�����8��(~�(�F�N�\"J�`DEZ9���oDu�D��\'��ǵ���n�Z�v��u������� �k���E����\r`\'�s�\n�E����9�=�J���e�&�A��>D��D��D�ˈ�ۣ��Gq�.�����~��чF|�F��G\\�Bfd!��~ �9�#Q7�\n�au�/�R��*bb�b�W�D�y�Tfb�u1C����b����A�\0]F,|�E\0P��p�cD�;�� �ߏ@o��@\'��O�����AA�X���<���i>��,E~g#D+_�A[�tr!�4��T!�������0by�IJ+�pC�K�#U�F�*KHu�\0RG��y�\\불�r/Cnx��Ԏ5G�N�F���%E#u�8�H=YR�d R�ӎ������]r�Jr�y\ZrW�$r��b�ޅ�H��kH��Fȃ�����5H��(��%���U�ãsH�M\"�mH6Ҿ����yԝ�tJ�F:e�#��.\'�H�{vH��I�����;��ǯ�\"]�_ ��#=����HϭiHϏ�����Ez�� ��f��\r��gba�35_�g��H��}ȳJ2�B2�\"rm-���������O, /_�����yդ\nyU��V׀���\"�\'g\"�?�����BFO�A�\\����V��)hE�ƮF�N�#�i���Ȅ=�dJI2�J�����tE��JA�})Eޝ+Df% �YH2?�52_yY��,�A\"4�Eb����������eO������3W�5 9Ⱥ4M�# 䓓��OB-��7#���.ȧ���bd�Z��$U�+_�͆�73�w}k����!ߟ�B��y��|���>Cv�lF~`�\"{T�Ȟ?doٗ5�쫲F����\"�^�#�۾ G� GP������g��kx� ���C��Q5��T�ԗ7��m��46���-�+���UB@�>�9�|5��0��r��G�5A�\nT� �ܮ��uw#�7\n�p`���Q�D���K�H�T\r�Ď5!�$��!��2�$/<F�{�H��Q$c�ɐL\"��Y${\\�!�FrS+�܌�H���R<���#�cאR\r���BJWF���H��sH�)��!�x�r3�ܟ����5ߐ����h�2�\rr��3�?�\'JE @�ڜ�RHD�Ʃ�֨�EihrQk�Y�4�~Bi�-�֑x(-�j�>jCdJ��Jg�;Jw�+��d j�zԦj�fJ��+J�/����7���}��������P�ڹ�\Z���_�>L j��n��2��2ʓ��]֡Ljo��\'�P��7�� P�!/P�����(��P�ƧQP�Tw�Gt2��j&��\0�6�k��r\Z�I�@�Zk�:%hAy��0lQ��˨�\0*��,*�*�\\*h��\ni�E�@o�B���B?1PW�7P�47�\"�\\B]��n$P�{w��v�PqT$*~��5x\ru;T�J�ᡒ�?���P)���ܙ��._Ce�E��g}De;@��P�lT��TѽQԃ=2T� �L�UY�BU��D��:��٢j{$�Z�fT-���;-A�ŜB�\r�A=rA�_.B5<�\Z���\Z3rQ�R���E�^m��Cq��M7P-!TK��2t�v�6�]G����}�+T�i���������<T�W\Z���#��@?���)T�����#j�t58��\Z^&�F��D�R��1\"�V�[|#j*I���V���w�=���.j���/�z례�Q��1(л^x<�rD���P�6\n��D!M(���(��y�t\n3݀��JQء�(�-�e�])(�����\\��[�Q̖�W-��Dq0P�]`�J%�\rD �zP�=(�/(Ű5j)F���.j�ڊZar�*돣Ug���w���˞��L��5�]GkXZ�58�I�h͞{�uI�\r@�J���Zǩ\r�smZw�/z��z�$z��*zs�>�l>z��0���;\'��wi%�\r���#��}[=��oі�c�V���7�6�\r�67���ʌ�v�\rhǧ�h\'KK��vQ�������_��]�hh�h��hV.�����_~�O�v�=.�=�Ч��Mh�O���\'ڗ�\r}F\Z���i����B�����V��������!{�����o�ז@���e��Wn�@_50AG�FG��DG�=BG�7.��7G+�q^/ѷ��ѷL�з�c�ۛ���[-�ę1tZ�gt��itzC:#��A�@g��Fg�i����y�V�<Q(�@#]���@��@C�.=Շ.}쌮LwBW6��+�Dtu}�f> ��T���,�V9���x�~��~|+�6�~�S�~A<�nګ�n���_��_�{�~�1A��ny]�nx�ߪ�C�]��~����/��X�}�RA���?Fנ?V=CZ��Xg��7���LoE-I��*Y�a�M���������2�(�=�@�EmC�Oף?��j���*3ГFc�oN����8z*���~�[���c��v���M��=�п���G:��04p�7\Z���ACT�����0H\Z���x��F���z~h�Ƥd�1��h�(\Zk��?�@��8h�w[49��<����BS�.���14s�3�}��fǺ���.���\n4?�� �в1<Z�.-�ҋ�����n��n7��u�P@�J.�j��Q�Ca֬a4b�0�v��lX>��5�Է��P�`�P�0zt�V�~���)��Ƙ$f筯�� )f�����w!c`b�_�b�+S0�\\0F�f㵶��C�s�0&iw0�1���1�W0礼�e�`���<�i����T ƙ��q�i�9���cwa�q/`��\"c\\U�c܌o`����4��L/��*\n����`��20~J)ƿV�ߡ� p����b���`�\'V0�D0�G�1�e[0!�e�z�1��1�ݗ1�\'va��0������ݘ(`��.L�w&�\Z��p ������I~��I�I�����`2��b���a�>`��<0��]1�;�arʌ19o�09��091yArL���{S0�\0��mY���+��+L��eL)�!��Lyc(�r7\0S�҉��0�T�7c�g�1M\Z1a]��<\Z�c��\'QL��rLØ�?�i��b��ތy^��`�y!.�4k`��;1�7̫�s��iL�L�ͪdL�����t�\01�ea�J}0}=6�~L��\"f��)��d�d\r��Rf��k�5f�v3��\n3e~�d&�ǎ��\0�ϔo�_�,1��c���a�0s�O�?0:Z�o]�Bx&����`\0N`�,t���@\Z0���Vk���2��`���C%ߴ CQ��PF�j�4��z��n�a�2°�F1¹N���\'F�:�G�`đ@��R/F^}�Tt\r�L��S+Ī�Vbկ^ê�OcW�nƮ�Z��p�j���j���u���upk�z�*�5��N���\nvsE8V��{�֛O���bw?����\Z���1=�ݿ��)�\Z���\Z2�&C{����X��F�)�k~�{�Y��Z|��n����jcm�����X�T����>kO�u�?�uڥ�u9V�u+��u=�=��.�w���QU���C`O3����b�o�:�Lu2��k��Ug�gM���� r+6�[6��f칼^칮.칟/�NUb/��^���^���^BWaC������^a5`��ݎ�v|/6��C�\'O�7Y��a�X�*l<�6�?�h����&�K��w/aS�ܱ���a���ރ8b��9`�o#a���:as��ؼCl��#��)[�w-������-�Z����V�[�Vq�V7�ck�b���wbk?\'a�c�\'�/�a���63��C���]웓�ط������;p�ß؎��؎���ﱝ]e��/�.ClW�Clw�!��]����չ��5���a��%b�����ء�ء�Q�pPv8R;r�v�Ev�,\0;Vو�|����;᥆������?����c�f�~����;kJ�����?���?����:��;H�;&�;���[u;�ԃ]�6��{�2��� ��(,�A�?^ÂN>Ăo�`7�c����s��x�<�`qKȋĒo��� X��*,{@��S���b9��X��VbP��X�a%өXɯ�X��Q�4�\0+K8��~���fb��a�;l�J����]���.]��._ڇ���ǩ:�©�W��u���yV�[�#X����i=�mV�t��6��q[���dY�j5�^��_n�mS��ۦ�m;�\Z���;n��\\�q;����q{���m�����pƳ+8c�9�A��8�\Z)ά��������y�q�F8���8F-��+�¸�;~�w�B2�u\r����ݍs�Y¹K�p\'|�q\'h#8�H=�\'Tw�p\0�y\r�g�?��y(�\';�Y�;��w��\n.�`.h�!.x�M\\�2\\p��B��Eo1.�.4��� wٸwE�w�D.�h2�z�Y�/\0\\��.j� �u�Es�p�+���.�=C�����b�q14.N�.��.>��u�w��#.�]).i�#.9-��ՊKـˈ؉���2�O�2����i%��w��g�q9Ɓ���\\N/��w�������[��U���q%�q��U�2O\\yH���%��.W�����{d^�{�~\0��9W?k�{�����5,;�^�!�Z�p�p�\n\\q���:\"pIո�� ܇xs\\��]\\O�K\\�\\�R\\�3\\_�m�Ǻ7�����\0=�\'M�@�n0�7Tv7���1:���[�,[�&���N��&�p���&K\np�F��n��M����XX�fpwq��Ÿ��K��t��=�_{V�~����\n�q�k�Gq@-�~#�6����q��885��:�Cn��y>8d�>9���Iš��p�+8LE\rCY��Y8�G|sG��Ȑ8�G[w�Z��麅��\r��4_6��ㄬ8QK\ZN�����l�ɺ6�_�7\0q�xܿ#���Fx�xU��X�WO�kX��5�F�c�h���^�)��[~��*�����M��[�i��D�w�[�wk2�}��|�^�cxC7*�0�o8�o�5��/\0���\0�(t=����.o�l�Y�M�u��?ě���Z���� ��\"ޚ)��(��x��m7��D����[���ֺ�~:�wYul1��ar-�t���������J|�w\n>�v ��ć|�_�ߌ����_u�C�}�_�2�G�+�G؟�_\r��*4����9�(�1|T}|M{�����ck��q��I:~���O�j��:[�\'�w#��w��Jl�Cnⳗ��9\r����_H8�/\"?�)�ŐD|����|�H�/���\0��U��*������Y.��Y��5�\'��O\r[�O���Ķ��#���h���f��42�y��y�|�S_|��|��;��{/�oN�w���֗��A���p|{2ߩ���!�?����j?�g ?��,~t�<���W���~rs~��?\r?��������^u��M��xȡcxh�5���ur���xD��Yģ_����x�]<�{Oޯ�g:a�LJ6�U���Ϟ*����-�|����i%x�6�%��6Q��xy�^9��ئ�_�q�T���7����#�t�\"���TmM����5 ��V��H}��� Ak;��A�#膟\'�>�$l̙$l|9O�BЏ�H�o��1����v�~#�2�G0��o��`��E0�M0�U�����\" &���� �����M3� �|ٙph8�`iz�`���`�ٗ`]�F�� ����wR�-H�`7�Jp��#8m\0�On!��E8v\ZMp�=CpmzEp��Jp+|Lp\'�N��!���M8��$��*��;���\0k!8ȅp>d5�ŷ��oa���Z��m ��e �ЮB��NB�!|[4�rK!��A��{�5�$D��7r 7`����LB�n!&���N�z���� �BB�!�t��.!�l_EH�\"d�\"df�2DB&��pG�#�=B\'�=��p��E�7�E�>-%�o%�o.$p��)��_�PF�#T�F���\"T�n\"T-Z��ij�#� ���k#<��Jx�f��xn�P�\'Գ����w�� ��&������yZ�6�=�n�C�?� �}$�@�������z�OY� �ޜ � C��a�4��D�Y�W�넯��d6�0sDN��E��у��\n�;)��c�\"a�G�\\$̻��#?�ޯ&�m<D\0� �7M�Ώ\0�RI���eZD� �\'�BwPY\r����c����K�Z��M`F� �\',gD������\n� ���{�hAdNAe�z3���O��W� ��G�5�a�E�*a1ɍ�4���l\\BX)�V&C��U\\`�U6_�jST�j�q�����)QR@\\{���.�0Qǻ����%n��D�b�B�ϿA�o��o!n��\"n���W9w �Fu\r>��t�f����M���O�\"8dN<P�E4Z�H4Q�@4��I4��H<4G��x�h� Zʮ�▉V5�D��ND+`�pt1��\r�F�N<r�ѡو�W#:FM]zw�ג��n�D��D����C���`��;u�4�+���F��=w���?J�+#�V�H<�J�D\'�>I%�v��*ʈ^G��[��&7�\"��[�\'D�pl\"�2M�j�$^�$Fj�\"^����{����x�I1���\"b�S1��bB���\01�Y.1�EL��GL/�K�8|��9�B��˅x�h+1ˀD��L\'��sC�E۫�E���bW,�x�N,�q#��qĊ�zĪ�_��!5���k��m<F|��B|TPN|�^N��XO��u��`nGl(�%6�xO|�A|s�*��+3��{��.�[\'����7W;�F��w�����ލ�^�;b�?-�� ���b������J��YE��\"���y{���m�����ϼ��#��w\nq��&��]q�.���ğ���G��q�q��VI�|\"�.A�t�0\"���$��BD\Z�#\"�߉��=D��)\"Q�O$1��\"O\"��&�9�Md��#���%r�QD^���h\'����Ljb=w��wQq�-QQ7AT�]\'.>{N\\��#.�� .��\'.o�%.�\"W�fH*u9�U�$U ImMi��{��aI�p��n]\'i�����7Ika?i���$m�=i3�i�I�S������ �.�u�]���M\0�����F��/�[=ҁ�\'Iƺ�$S�C$��գ7��PU��l9�·I�o�!��!^%9wΓ\\ߒ\\����Av$���$Ok��7��H�X^O:�\"�4�$���&�:�J�R}J��8M�~9D:�j\'��#��Ր|�mIAU�Hw�&]\Z�$]��%��!���!]�,#]1�$]!;�\"�H��ȍ֤H�K��BIQ�|R��~R4��ts������*$�W���H�U��u�-<)�ȅ�����O$��#I�fH��Iv�����;�9�;G��)\"eU���սI��䤂=Rw�T�cAz�M*�&��]!U�7�*�7�j6G�jO� =Ҟ!=��O�/2&5{�$5_t&��v�^��Ajit �I�%��-\"���Z��Z1�c�I�VƤ�SR���;�O�;O��>2I�U:��oA�1Y����o�IS���`�̏��b���M�qJ�M� �aّ��Y��I\0) �A��`�K$؈: ����IȔF��D\"x�%��$��$�)�D��K�:ؑh�_�h1P�VHb�i!q�o�8�\0�ߚ$0% �I��1$1�$�-\'�\\�$�l�$WƑ�R�2����~���_JZ���Vb�H��I�Nz���ŒUnl\"�Ԕ�U�d���ZY1y�)�ƤYUN�D�~!��;��|��g���{����[ԭ�[^\"o%������m�E�V���#\'�lH6�M6~K6}�\'�m5#��K\"��A��i�d+{>�V!��o%�ޠ�|�&�a���K��I��ޒ|���슑�=�dt�$�D��\'�\Z�$�@�ȧ�m\"�6M$�nq\"�Z�ۏ�Ϯ���J��hr��rP2��t�l}��Ў�F�|��/9�`,�By���.r��r��#9�ԃ�H���`.������Wݓ�W/���9꒯������&_��@�RQ���0�fkɱ��� g���[���[�ȷ����R���Brj�ir��仝=���6rn�5rA�\\�$1N�ܭ\'����KZ�ȥf6��xCr��!r�y5�\nJ���k*]ɵoRȵ�(r�i(��0��4q���7�!���9�A��|M~�&%7o\"7�`�_)ޓ_w��o���۞\'��=ɝ���jr��`r�r���4r�0��f7��@�%%]\0��rϓ����3������^M�di\'y�b�{�^�ψz�� �oO8�wT.�۟���%.\n��@2(���3�`�.2�B���H\'c�rȘ��d�s2N��L��!OL���_d��W2���nI�(-��K�dF�2��%��!�� �%s5G��c�d~�Y�ֈ,�8G�:����0Y(j!�YT�d;�,[h#��\Z�J�Q�2#��Ȇ�����������R��y%`E�MY�-�hL�Qֺ�)�S)���uw�R�j�P6�_��@эxO�-AS6�S6��l>mA��e�/���ԙ��beשk�]-ʮ�(�`-����_\0���ޢ$��FO�������)�z)F1���g7S��)��_S,�=+��W|�:�r�j�b�C�m��=Ҥ8�\rP�fRuvQ�z(.��)Ǵ3(n�J��A�9J9a�H91��r�/����D�P����J�{p��חM�_�E �ƺP�3�(�S.�S.�\"(��K(�GR)�]�+�2�U:�r� %�3%�#�]H�y0�rsОCs�ĒĔ��1�m��D�U�� \'J�C6%3�$%SlO���d��dYܣd��S��P�b�R�@J��?��j���!�hd�{���R�J)��TlɡT�=�T��T�r��l���\n)5���ƪo�g~�g�9�sa\r�ņ���(�9bJ�\"��jKyclOy{���N#��.�=�]�!�4������S:��R:�F(]A����wC\"�/ӊ�W���ѓ�_$�|�ߦn)���%iS��)�\0*e�eTe\re잂2��-e�m��D�sz9�s�\r�+ʗ\03ʄ�j�D�^�D�\Z��m�7�4���˔��)��D�m��.ߢ|�K�|�M�,�-R���\0�(�o\n0�8�y�J�TwS ��(0��ػ�xx=q�AO� �x\n�͚�%S�+O)�,��y�B>6J��U��_�0�S�Ic�G�b�)�k�)��O�0��_H��S$�I^\'Er�\"\'��(4�)�������EYL�,\'R��(KEA��U��]ʿ�Ô�Z��KT�����U%�5�8�5W?P5R+��S4��z�y���U�W9u��9��O��?4�[v.P��{G�+m�n���n��Pw{�R\r6n�\Z�\\C�7���o��jd�I59�E5�Z�_�Z��jE�������w�v^��v��TP�q�9��T���T�y3�˱I�q�2�k�*���1�+�(�MυꮒCu� ���dD=Ո�z[��a�����>#�i�W�� ��5�̿6�����G&�����k�� ��멁�ߩ����s���i���G���\'��tMj��Sj��m굍`�5�����FN7S��^�^���F����4�Sc\\J��/Ʃ�jb�-�5���nj���Ąij�_��}Ԕ��)�%Ԕ�,j�sWj��.5-�IM+�Q3\n^S3�FS3\r�R;�ޏ���>S�~P��ja�Z8X@-�+�mΠ�<�>��>�D-=J-Y�-R�O�����NQkQhj������q�f�L��ԧ�v�S������\0�Om�v���\r���7Nm�j����D}��OmTS��\Z�]��S?�Q��P?�^�~*�@�զ<��=<A>��:�*�:��Q�%����>��8*u�F��J�Z�D��B�\"\ZPg�\'��\\�{3ԟyԟM�?��Q瀫�Ǎ�ׇ���T`�)*XG���\"O��<�b���*��H�uyQq��T�L��H���T�V*�Hen���F�PY��T�7��aJ�M�\nt���TY�{��m\'U1y��xF�������W���M��K��7KS�6��\Z<�����i�M�h9Lӄޡ��8A[����fN�\Z#�6�2i0/i��4�~m��\Zm�����4m�|�V�*Mȝ���*m[� m�K?ڎ�M�]���]Km��w�h{��QH3���\n�7}�&��\r�,���R:�,�.�,�4+��4[��>���v�p�vtA��+�93�i.ճ�c]z���8�k�:��q͝�B;Q�F;y�E;��J���y�ZM;�M����}�:��i�v�hM;cw��g�I�Lh�ӂb*iA�oi����X]�y�v��J��N�$�����]�h%���c���8ZT}5���dڍ81-FTM����۬O�%4��H��L�/�Ĥ9Z��DZJ�-�H��j�@K��@Kj�2v�e\Z&�2���2��hw�i��T���C���в�|�e!�i��/���$ӊ����6ZIv�4e�V���g�ЪިѪӝhul;�c�c���[�ǂ��\'��i�fZ�l��n��,�-�Q)��Pګ\rګB8���e$��\"���A{�Ў�6М�>ܟ�^�@�|3M�*cк�W��;hCt�Hnm�>�6��J����]m��m����u� �k�9�[L m���6m�C��K�y�\0��s�?�i���i�\Z�F��4��\Zd�\Z$�\r�֏\'А�1\Z�w�F�x�F�DШ�`\Zm-�ư�1=�i\\�]4�\"�L� ?���4�_Mf7I����\'�4��w4�6���0H[�<O[�@�����2�@_���\n��վ���b�\Z�z��X���g#}�o}}9�������Mת�O��yK�I����g���b�Ɛ[�M�^�����[�����/O�w�;������Y�ro�!ʑ��\'����.ݤ�I?�=�n�7K7;QK?d�H�,�O��֠[M��Qh�u�Q�5͖n���~�AJw�Ew�,�;z��#��Gu\Z�N���N4���a�3��YaJw�(�y��zq;�M?qo��tϊ(��A=��O��o��~ָ�~��=�W�АF�zH<�����:�C~��_�r�~Qe�~��4=\"�>=�=�k��t3=R��~}�4=*�=���I��O��%��㣵��)�_���u�ۏ�����Z�I=m8��.W�g�_EϨ-�gLb��Zz�# ���q��z�P\'=�C��C��&���d��L�����e��Bx\0��y=��T�^B���7�ѫ�������?#��_�O�_h��_@x�&}czSZ���Nz���-�-�^�7Z��7{��o����z��Iz�G&�����ǘ�k������@���H������P0}t�!}���X}\"ɀ>eRD����\\_O��A�5�D�;3M��XL��С��t�\':��:b�C:�f���{�����њ:t��k:z�:�@�D���\rt,چN,5��-�Db$�H\'�T����t��I:�C�.U�i{�_>t�~\'��~��xD�3(�t&@g�l���>�ً:�Y\r�[I�1��]t1@��?C����t���dm�/�}�/�EЗ���K�^���E�J�W���f�j�\'C�\n�PK�`�u��b�jc��#�Z�n�f� c�E�z�\\�v�j�� .C\'@��=����1t\'����5*��?�N0vDE2v�_�ػ�+c���ax͆a�bJ��}�w�C����f����X���Q��3����g�#�#��G4GR60�,2���O��Yo�s�?Ù��p9��pI>�p)��8.|�p+�3�P���\r�n�G7�q�5�q����y���څ`xeex=���0NO g`/~����������\0#P�d eY�f�{��8_2�)ud\\���t�#TNc\\s~θ�NfD�3\"��He7�zQ3#ʣ�c�Ĉm�0�\Z��ڌ�5��{�ɥ�)�9�T����3��5�Nw}�w���9]���{������|�FѼ\n���x�\0�x����Fپ��2����\'�bŨ���QqgT��3�=�3jgԌ%2ju���GT�u��\'�>3�jE1\Z�[MZWMM0F�@Fs���{��od4c�͂�������nƻ]?�r���������8{F[��=����%�#�����p*��\0�腕1�5�1�2�\0��c���1y�1t��v�ι�~��1�1�_�}��1��%c\\K��80>�j3>�M1��_�_�ɖF��q�8�1����g�X��\0���\0��e��g2�H�%p�w��@n��@=00��20܍,`�\'1p���[���|�A��0(7t4m!�v��Và�N0��*�ܕ��FbpLZ@�;���|a��c�\rR�1���!�P�P�f,F82�f+ϲ+�g�/�L�OG��n1U/�0U�0U�fL���LuX s��~��#0s�x\'S�D���e��dnn<�ܲ~���ٌ�?p�����ܭ���g�s����+�~�\Z�=���ML��A�AX�t����i�\rg��ҙ��3�G3�N2-��1�sL�w�m��-I�iw��>~=�>w�i_��yd��h����1��k0�K�1�,3��72]�73ݞ�c�[�2O(T���*L��ϝG��!טgT�g0UL�){�Y=3�Y�f@�>3���y�Ƽ�e��?��Kd�[���G�1�i@f���r�?���W-��W�.1�b1��`F�\"�ћ�1�c[�љư��7k��i\nf��f��3A�ļ���<:�L�af��c�1��̾S��ny�̆�ي?�\\q83�X&3����\'��,R�b9w2�<f>�$1K<��R�5f�m�J�Cf��:��}�ZӉYS�Ŭ)^b�o`�~1낿1?��|r�����w���0�l�/g>�z�|�w�)��|�e;���l�$0�<�`�=Bg�~Kb�_�`�<��}f~8�������T\r�����{��ٯy�9�*�9|��;ǜx����<�9�w�9��b��1��t+��Ek��|�c\"s>}�9�g���)g��� �(&�� ��΄�1��wL8�#!�0q�<&��;&� �I��$�{2��\'�D��II�3�晴�d&\r c�`�L�8���?2����LNe�C����gr�\'���0����)��)[e�`�Z2����!sE��������R���Z�=��������y���ֲ�/6����Y:�V,��X�t3��,o�&c$kS�kS���Y�Omf������:`q�e2��u0��e�²�}�uH}�uH+�e��`��Y��j,[�!��œej�H�k�������rz�r\"�Y�YS,g\Z��R7�r!N���س�y�r�?�r�g��Y����S1ˬS#,������}�\0�̵�,��&���V@�+��9D\Z��UVH�\'+$;�R7Ⱥ�4ͺ4��\n_�e]�9NJ��eE�6���Ċ�n`E�W����n�5b�ܙ̺�����\\�?`ſy͊_4b��^e%f�`%5�X�~լ��qVJ�YV*(���8��~���i���,�be �����Y�sY9m�������T+���в�U8_�z��;�t�=V��lVe�wV�[{V���U5��U��2��`�:*X��o��\Z���\0X�����92��O�ӒU���q����)���� ��~���1��w\r�kW���7�I��O�Xo�_X��W���S���dV�\"��ի����>f��c�U(Y}ʝ��k���+;X���Y���q�^����/-�o��X߈6��7Xӎ�XӤ������8]֏�W���X֯�e��UP�\\Hkn&������5�\re�G|d-��g-LZ�\0�;Y��,�\0��~��d�i�,h�~��XY`���P�7X�Y�3�E�������`��,r�\r%ˢn!��\"m+v�����M��^�X�{WX\\�q�\ZKP��%��%r-g��.�d\nM�\\k\'K����4Dz7��3��,�YK��r�/[�t{U��:^�V�a���ׄ���q�\ZZcl��R�Ƴ`�Z��ډ9��W2{��m��ԇ������t`�&M�7�leo��go����Ϛcoߴ��������m`��6(>�6薲��&���:��������؆��l�,&�@�2��T�6)+b�Ta��D�;�f���e�ζ�/e[E[��b�����`ۘu�m��l�p=�]\"�md��HdMub;>e;�R�N&l\'�9�ٶ�}ܸ�}Be��OLe�Ą�=��ا��l��*�w�;���>�/��j���*�\\�_�y�L���z���{��E��!���K�v(�;�e;|����:�J�?���$;\"QǾzx�}m��ڿ3�H���h�/���ɎI�c�|mf�뫳Kٷ�؉����^vꛭ��0v��v&��}Gr�}gy��e���}q���Kb��a�wO��\"��@vj��x���IvѬ��O1���W��3��+���Y�\nO/v� sv��zv�t-����p�~8\nc?�a?r�e?�hd?�a?�7b?��~����t�;v�-5���^�gI���즵f���K�H�����Wv;دg^�[�?�[��o�*�o�߱[#�mH}vG.��]�����������7re�3��O6;��.��!\'���!���\\���{��Q�t�)��M�lZ7{�%��k�,{�r�=�}����+�o��\rx�����۰�?N��;��P�6��Fl�����HJ>���F߹��\n�x�q6�C�M6�d�r���\rl�%����^~���S�܄&6���-�hc�%���\n��le�4{i���$��^9���2y����G}�g����գ�8\Z���k�8kՇ8�qֽt嬏dp��8��\"���\n��6�ު���*g+(���%g��g�m.gІ��~��W��cT��c�{����*%�\Z�s0;�spv��m�c�Õca;ȱ��ϱ|~�c�c�>�9,{ȱ�Pʱ1����slW�8vDz8vi�<���_�c]/�x�s���&ǥs|\"�s��-��$�㖚�q����B=�x���x�q|,9�>�8��Μ3�8g�9~&f����l�l�9N��vN� }Np�n�9����\'�f��!(\'I�\\��Ź\\��ʑsE3���\\��\\MZÉ�l���snf97=���/rn���Ā�9�í��Ċ͜d�=���;��5DN��\'�l\'�d\'��mN�,�ݱ�=�d�}|\'��]N�`\'Gt��_�)�_�)����b8E½�^}�Ev������<�ȩxy���&��0>�S�{�S��SgVǩN�<Z.�<Y-��k��4X��4��q���q^q���9M\r��6I�W�78�\r�8-�\'9mW\"9mm�v�`N�ԓ����_�z�}��X�9=/�9��ɜ~��O�X��������J�pWgtl+gl#�3�{�3>;ę�!p&x�7]\Z�,�3��~Ιn��L9ę�L�̐��ٶ`�w�?��8�O���_Ŧ���9������uO9��G8�w�9���8�� ��A��]8-�`^rp��y�ou��\Zb�9�l[ˡ�94}mp�y�+�9z��\Z��p�8�!�@�!GP��`�9�8�G�W�#�ȑ r92���ش�����w�\Z�F�]eB�Vr���\rs��]�o���Ӈ�����ں��ur���c��sg�� ���s���Zd��סp�͒�����J��#6ܽ��\\C\r�!��5\\��\Z���\Z�sMsMX@���A���3״�(�t��k�j�5SFrQ��Vi�Vm��V|�u0��uȺ�u��纆�p]��q݊�q�#�����K&\\��o����Z��`P�\rB�q�k��sy���P��X��d�#��КC��FKn(6����Ↄ��+g�p�4p�M�Eܫ)xn��7nԫ��h����+���7�\'rc���X�,7��6�-.�{��M<+�&�}��+i�<n��7��9n:Ǔ��5�fl5���\\���r�[Z��3���n��in�J7���_��-:V�-��rH0�b���/�[~�<��\\>��I����>:��}���d#���1��T��P��mX��6��6Rm��)��M�ܦC-�W�+�w��VV4�=m������,��˚ە����%q$R�`.�;2�����Y]����!����;Q��;��zņ; ��~s��ΘjqgMqg �٥���?\"�?\"M�?w���Z���K���;_t�;�SpN������s�]>\\ ���UゑH.�~��w���p�K_��$.�ћ�TTr1�F.>:�Kt��%��d�.��.���eq���~.�w�����\rjs���\\��%��W\"s�J7K����\\��^��rW��P��ZOe�3o�O��U�ڴ o��r���K�5��<���<\r�=�Z�!o�j?O+�.O������t��x�bosJ:O�Io�o��L�v�������g�����֗����];�3ܾ�g(���w\'��?�\rϨM�g���3i]�;�)����;�(�w��+���g�.�g�\'�g�oų�`ϳ�cij�e�<�<���y��~��nz����9��9&i��M�V����yNh �i)���s�r��2��`m�y��x\'�y\'75�<��*��|_��|������m%�9�.��.Y#y���ya���m�+��yWi�x��y��Kx1�?�bd����5�X�w�/��\n�U:���x�����+f���^�^0/u�/\r<�ˠy�2��xw^��y�����xY�xY��y9Iq��ͺ���r^b/�p�^�퇼b�\Z^��;^�����+�+��c\nx�^Ż*^��+�҆˫�ȫ&���o�����I���:�����y\r\'�x\rm;y\rދ#R��K�&����#��i����Q^������t��1$�u^*�}�g�p.�����׃$�>��>1My�\"x>_x%��Ag��F�`�&ox��7S����A���{�/���&�Px�B�y��wy��`��\'9o���m�/�����9|1�O�\r�B�o���W+��w1�PA�\0�y�P���A<P�V�f\0�˙E���zHz�~zb+�z��G��1�l�1��ط�y�=v<N�/c�����.�y�͑<~HO��O�Z��$�D�\r<�AO��Sh�y\n1������x�o�eoQ,᭔y�UvY�U>��*b_���w|U-_����_�9��k��5ͪ���T��6.�ׇ�lN�78M�Ê��F�������[7�o�B��t���e���4��]��߃���w�o�q��_^�?�j�?�ŋ\0�`��7���M|��\'|S��|�*m|�ߥ|�<��5��2���v�����l��|g��%r����wKQ��f�=�Z�=�\'���O2n�OJ��O���މR������\Z#~\0Џ�1�ʾ�?��1������+��������/m�ſ�O�z��*��6�_N��_���Gl��G�n�_�������\0�z�~Lc-?v��ۼ�;\"�Ǣ���Q�����1~bu5?鮂��������;��K\"~�?��m��EY;��t�����p��M�+<���9~�*\Z��q#�Qt�Ij�)F�o���7NJ��ҷ�,���[L�/����Z濾���\Z��c�����d�����o_�w���w�z������L��w���{���h~��&�ȳ �h�c��<�?������O�}��N�ɟ~RşM���� ���*�N����p��ҋ�r� ��|Г>��5>tM Z��CQ�pB\r�����c�_�c��X��|l���]�\'�1�E�I�����|�<�Ϡ�O�|�e>�=�5���Ս��C_��|�_#���@��e�j�L�V�.Xsy�`͓�����-kwi�>�].h�\n��U�u;=�>k\n�[\n�\\��ͮo[��l�~/�J�#��!�g��٦\n��}��)�j\" v���.� vwi���W��\n�&\ns��>�����z� LO�L�����Z���.�yA��\\�$�x�K`����������)�^�,��(����Xl9�Y��vZ�uN�j\'p���nu���\\m�7����{���G�8#��N]x-8�Z�Ţ�a��ϛ7��\r��kA�K]A`]��ܱ(����z�o)�_\\���\nB�B``A�#��(տ%�w@p��KpU�Yp����zt� z�����AL�� F�)���~��� R��R_CiN:��`;A�c� �Q� � S�&�S�*�{��nA���<A�a��@#BP~{��2㨠ƷJP�U*���<��<���/H\rvY���P�3U����1sA�v�+�Z��}�WvF�� ��m����jA�%A�G���$hoLt�)t>� �cmnh>>\nz��z�}=�F���:A�(D��z(LhU��]_�*U�%��\n�� �.���1_����`r�`Rj\"���(��.��!K��,H�K�I0�wF\0�\n�iW�;&(+��`O�p�a�yI\0��+@:����U���;�+\'�\Z��d�C@^�-� &Է�4C��fW\'`��X�� �!>v�U��X )},�f�t,���%�F��G,9,k� Vc�j��ժV՞�\nպ�B�3k��ᗄ�Q�\r^p����B�}.\'�z����z�����;;�����}�=�B#�o��LCh��Qh\"�\"4\r+��͓M�_3�V� B57�\r�[h�Q&�_�:n�&<�s��l����i��9� �X�B��d���q�L$<q{Vx� <�f.<��z��>zzB�3��8��t�f��9ᙸ|aPՈ��aHA��b6Oxq.Yx��0̵^n�&�<�*��^w^G���\'�Q\07avLxC����Kga̾ta̩��X�,a�}¤��䶫�dn�0��#L�R.L�{+�x�,�b\"�{�JxO7_x�K(̆���掯毬DE �l$¢w>��hka�I��4�BXͽ/��֢ͅ��[º\r�u:@a~DX\'�*|��)|��6�c�ϫ�_��F\n��U�M����Wy�Vc��}f���麰mz��}[��=x���6\\��\"�)����W?�tl��#*X��R8GG����C���;�T�p��*�q�(�����?���i�>N��k)���\n�������ݝ!�8&>&�Z��� ���(A���$�l&1 6��#�:)��k��D�y!�ꀐ|�Z�h|\"dm�����.!��Q�`�k���W(���\'\n�N�B�]���)����~�ʿ�\n+KB�p��g��\0�\"�N�tjT���W�,��e��u��rE��}Y��F�h-�h-eQ�>-��i[�tdS�M�lі#��-+q�����{ 2��Ut0�GdֶUd����ZthS������8��W��\'�D�9�\"{�-��N��א�-Lt��)rz*r�Q���Ɗ\\w��\\�D��9\"W�e�[���]���C�Etj����?��G�7�V�M�N��(��K��(:�#:;��<�����?D�n������)]H@�.�.���%�PZ�/�ܻF�qTA�$��N����];T#�vU!�4�-�2|!��Eg鈢q�D76��n���n�Eqt�(�G�(q!J�z)Jv���Ê2�2�=\\���(;fT��h�(���(�,*tM�D��D���R닢R��Ҷ�ҟ���h5Q���r=���ל��=)���OT}>_T��=L? �M.��=YZ��=u����h�^ly#zQ��<���+�+9+z�}\"j=^\"jm>&z�m�͚��3�E^ˢ.�\r�.��n@��G�]��-�?�!�w��>==\'�D9/\Z<�\rm<-\Z._\r���ƪtE_���ɣ<�d|�蛱��� �v䈦=D��A��ߢ����`�hna\\4�;-��,G���F�o�LE���\"pP�~A.�\'��\rX:�%��a�uD����^D\\�\'\"}�&\"?�ћ�DLK��u�IĶ9!���6{�x�n�L�H�� 8a\"ɟt��i@$-RL����U���U�S�Um�ū~���9�U5�Ī�qb�\0��3\'���5;��\Z�z�Z���F�xC�w�n|�xc�Q���m�;�[������;�Ļ�ĻmO�\r��_{Vl���+����b��Cb�Sqb���b���b�z���g�-�Bl�)�;՟;��+v���O�<�,�#�S�]���4q�g�8��J\\�.����ig�CDc���/?_J9!��C|���[��y�Aq�_�������2A�J&���\'����o���o�u�Is��$C���$NNM\'?8,N��Z��_�\"-�%�S���i���;�6�eBq�^�8/tX���C\\xIM� \"I\\�k����KhqهNq#�88$��; ��tY\\9e+�rŋk>lx-~\\�^\\��U\\O~+~�:)~�$7Ԕ�H��^���g���l���f��⦅O�f�qsL���qW�+����Y8q˶_�+��o���j��������;J�;���~��}Uq��Mq�琸���xp6Y<�.W��[���\'��_4�\'�k�_�O�\\O�\\O��g�G����Ŀ�<ĿWΊ�m��+�¾1ШF��C�����HR�]�J��~V����\Z�D�!1y{��ܳY��Yw%bVI�>!f�͋E��)�;�ŋ�|��I�{R��U+^�JT~LIVGI46�K4\r�J�d�p�D��D��dS��d�Q7ɖ�A=A�D�c�d��k�]��-C�A�>�ނ\n���}Yc#Vbz@ ��Y+�LN�X-\\�.CJl\Z]$6�L$�Hl��Kl�.I��7I�Ӓ���%�|��eq��u����i���S���s�I[K�gk��+k��瘣�]�$��@8��ߑ}* �2��ؒib��C��L��\"k�$�\nQr-�Y�Qrf+��2-���$���&�Y�Y�-����*aIn��Hn�hH��~���$飫%�M�;��;ѯ$���Hrn.Jr\'$yF����.I�QSI��I��Iak���P.)n��wHJ��%oK*=�I*r$U}a��Վ��8I��D�D��fܓԥa$u�ڒ��I������:�䉞���8V���#y�攤�<T��� i]AI���N���{���G�)�-N��s%��$H�Va%c�%���d�K2��d2�E2��d���{��dn9T���wo�@�YJ��=8�J�jBH0\'%��* �5VB:�EB\Z_���%�c�J�r뎄:�!���HHXׯJ���JD�?$b�i��ݨD2a+�7�J�$��p�źC��]֒�Cw%����U�M�U���U�T5�@�f\'U�}�j@�H�J�.�H�YK��^�ͷ~I���I�`̥ۦ RN�tOv�\"Uz��/5�&w��&��RӧR�ن�R����վ���w��X���Bz:/u��&u\"�J��K��Б��K��W�\'��^��ϸ���/��G��#��u����U�Ҡэ�sQ!��}��!�I/UKÃ�H#���W}�W���k����u��p�F_9*�騔�LђƉf��7B� M҄n�-/�&u�m�`�m�.���$��Ҕ�\\iʋjijb�4mRW��%M��-ͼ�NzǧWz7��I�4��Yz�Vi^}�4�{��薕�xs�����_ZڰNZއ�V�H+wOK+[J�,ӥU�)Ҫ7����ZҚ��҇�\r�:�Fi�O����Y��x��11G��%}�J�u+����H�\'�H��I��K_�aK�W�H�?����r���^���,���dH[x��G��$Ki�k�V�:iG�giǭ`i\'�W��p_�}�R��M��7�@��B���]��?�GoHjZ���ҡG:ҡA�t�p�tD0-���~��.�V,��,C�����tP�k���ۼ�W���]�`=%]�H���J1Rȵ�R`I\n@H��P)�E��E���jt�X�)6e�w�,�_����I �\")��;)�3XJM;\"�V��R�:���o�!_��\0H��R�F��Ӓ��\"�oR� ]*�Ke7\r�ʄ5ҥG�KP����)�Z�l�Cٚ\r��u�e�\"�d����æe��2��/�\r�d��2�e��v2��2�@�l����;2}�q�>r����o�T!3L��&_�N6�1�e�o��+ 2�u�2#���<Vv�n�̴�+3;�!3�3\'�H0�Y����z]vh���J��0AOf_�/�_ˎ�\'e�2�W)2�[Q2�ޏ2W�n����[9W��-���T7���/�y� ;ů�����|ZO�|���3����52�ɲ@�bY�|��\\X�����͏d�S�e��h�+�Q�+HGYk��*��\"Rvm�^ٵ�����e����Ȧ<Y䈁,:��,:��,�(�%��ݚ|,�\r~&Kl˒ԣd)�e�������;�,��\r��,�Yֻ]������!Y.2L�W��#�e<dųBY��HV��IV:�%+��)��\\(��{KV��$��,��\\�j�Kd���=l���n��re��N��Ų�?����rY��;�g��d�z2d/=�^5��^�e���eo�Y�6k����FY��eY;�)�d��z�7�z�1����eU�\0\"L6��I6�&��}�֔}[̓MUȦiWd��u�YX�l�Ô���E��k���n���D���雲?�ò�b�_\r������� �ɐ��d��{e(?C��M��W�p7;d����NF�+#>���U/����d�p͢FFÒdt�z�8C�Z�#c��+c1��8;d@���Q(pjd���e\"k[��U�L��Q&�J��/�ʔ\re�jt��mٿ|3ٿ�;r�A�|�G��`�|���|MN�|�\\�n����u����w�ɵ�dr��A����\\\\���|��q�4L�c�|�`�|��\\�wPMn�#��,߿n��\0���<Vn�G[n�=Wn��/7���<�+7�~Gn֝-?�l\"�\\;+���,�2�[\'��o������?�#?�~[~�6M�P�\\�@���l�Q����?˝N4ȝ�F��^�O�j�OH��=7��=�\n�&f�>�<�χP��r��&r_�g�Y�X\\ȗ���+�TxF� C����_�)���I�Gj��on��<a ��ԓ�T��qE�����:�<�g���A���J�$��\'���S~?��@�����S���ۣ�yIpy�K�<o�D^��,/��G�K���K+��ҡ!y��:�O�ȳY�8��I��k��!�Y�ZP�y_��U��m\nY��X ױ oe�����m.��v׃��fy���C)����;+;����n����Y�A�Z�a�I��}�|���|��S>*!�Ǣ��c?��/��ɿ��Ol��O�˿�ȧR�g�G�g�nȿ�u������ݑ�AS��b��� \\�ה*^� ��Tɡemr褳��$��J��1r�~��p^�zC��_��cw1�X��w�Д��l���R&\'ѳ��\0;9u&g�N�3�l��<�9Z29/맜�a��7œ���\"��HT,����� ��5\'���K���w���˗����D�J��|�v�B��C�20�X�Y�6�U�o>�P?��X�q�B�8D�a��b�D�ic�bK-X���K��}H�-�b\"I�36S��0M�{U��,]�絧��}D�/o�bߧ����\n����N������K��H���{Ta��Ha�Q��=ܧ�=械ߴ�p�R�p�)���pR��p�5Vx�7+<�9��C^>�\n/?m��p�¯�C�ﭦ�*�^sT�y�@<S�nU};��g)r�).�G*B+S�bEx���2�Vq�cJqe(Xq���\"�n��Fq�\"v�@����7lR���Yq�r��v��\"�q@�t�\"��\"EU�H�>Td\0���)��R��~T�̄*r34��ˊ���k����]Q�IWQn��(�)��*�G����^C�J�\"Eef���u��ꨨn������x���^K�챢�l�⥎��U�M�k3�����-$�����{o[E[t��3?N���蚹��ި��p�W�#�S��*>��+���(jl�����)��bt��bl����}�dزb���y���ի��wV��=����\0��T\0\Z�\n��\Zb�@�R O)PK�x��\n�6a�\n\"篂**�)k|���~��Fg*����]�k�V�\n�B�;�PޥP��R(f��3j���\0Ŋ�7�J#M�RP�\\u%^�j��T��+�w�+�]t��^���D��a�\\czN��3N��S���S��أ\\�5�Ԣ?U��W�5+u�Օ����=+7��Qnn�Pn�LVn�JW��v\\��ոr�TO��v����_��OJC�r��K�>-�r���rߵ*�����8���� \r�<ȉV���T��Q���T��S*;��tRZ�VZ����(mΚ+�N*�c�v�E�}U��(#N�l-P:Sݕ.�T����k�/���\r���\\選��rئ�B�P�l\\�<�$V�~}Ry��M�\'��<+��pWԅ*���`�z�9�t��ʋ\r�ʰ����AG�W[_(#��+�\no)�K�)of�S��(o�T*�\r��o�)K��+���5��t�)��y�2��2�1[��mV�emR�w�*ߤ(�����Z�)KW�(K�}ʚ�\'�5,o��ov�ڕ|e퇲NT>�ݩ|�{M��蠲!�W�H�R>�8�|~�G�\"gV���|�6U����������_����}T����O�nЭl��Wv�R�݉iʾȫʏeB�r���?��T�UYQ�\Z�#���#�p�-_�%��r\"���k��r2���D~UN�Ӕ�lu��W�k�)��)3��s�m���-.J\0����J �����WBn�)a�KJ8���U�ܥP\"[�(��J��q%�앒$\nP�m�*)&�Ԑ%�\\ɜ����u*��h���C)��O��X�r�!bq�\Z��x >��EC�+�r�Ji�4.��8\\CK\"B ����N�II�H���T$\r�%�P�T$Rtҥ�z�������ѠPz��n�ng@�(%虳z��C���Qe軣���@��(�����hP�-/��ˠy���g��Z��`�|W����A;��=]Л�z�,�~�_R\r��`�F�]�Q}r�p`<�=�۹`�c$L�5�i%\'a��50c�\'�N��yf`��1Xt����:eX��\0���]����y��m�-=v���`�k���0�e,P+G�����,}4\n����n�u\\���*�e�n1�_<��﯁��R�^�`����t�Y�|����d�;i�C�}��g�F}?�=6���&���q:l�U��D�6u��Nm�9��>����q�aot*x�B D\'B�o@H����*84J�L����p�D�g?9eD;�A�_eS}b�,�ؽ��\rq�VB��E�wU���8b$N2�$�H�Rgg���P#87k=��}.��Az�\\H_<2�l�Kw��2o��~\\��\nWՕ���pͰnV�@��T�;�����p�3�7�Id���c.�=}��\n��BQX)<�M�G\njP|�<<q_�����=�y���TCx�\'\Z�;~��I�b�p�\\�\0UGW��_�+\'x}��F�@�Q&����4j�B��h��_��@���p����2�M2|w���:[�O�w�s��|z�3��*`�v���֚aOY�J�\n�tB\r{�.�>Nި|�\ZU~t�/;��8`�\'���/�A���q!v�����Q{P#�7��W����hp���Ge����q��8Ƭ��tG�KG��J>�kU� /\"pb�\Z/Vt�)���$�M��I�6N���iW4p�h\r��Q4�[����,`�Q��9C��Wh~�Z\\�-���)Z^|��izh�2���F�2�*�C;�l�/:���p�K9.�\r��U�!��i�=tz:W�MD�wQ�\Z�=\\��G���8=ߏC�/�Kw5z�rB��V\\�7�L\n�5���?{�g��M�Cߜz�߃~���I�1@�?nL��@�+�9�n�x�[�bq�_w���p�5{��o�{����m^���4�4��_p?��3���x0�\Zr���6����%x8���ã�Nv���q�0�[������w�\n�}��#�y�&<��$�C����ɚ�0��?�`��=1c�[��/5�eW+̲�YS�zK=f�`Nb��o읆7�{���oM���?ǻ5���e��{���e%j,�B�Xd\\�����\n|��ş��I?G,�\\�eϻ㳄h|�� ��\r�\n�`��5+k�cո]�ҿ_V��X]�\rk<W`��I���o�b]��5��?N��3���������n`Ky~Vٌ��\r���FI�~d�w~H������3\0�t$�{ȓ�I�4�?��n.��}�r�\\E=�3Ii�g�5˔z��B}�:H9/�T��P��i@�Ѥ�M�Ҡq�i�r�\\[B�����5�\"i]J!��H{Y霉�a]7а�wIo� �=n&��d��L�!/Ȱv>�\r�L����%�4�0M*J�)�\'iʢd�^J&�$���hځ{4�|+M7/����d���溚���dn�L�H\r&d9͐��m�E�}S9�,%��6�G���B��B��E���F9�ϥ�%\Z�ts-M;L˜��yw�ts�U����\\Z�@Վ�eyŇ��eZg�N>�䛹�|�O%?�0�����5���;�6X��Pږ@���}ӂh��ڇ(��?��K�|������Xc:��M��\'P��5�����2:��H�3/PTk�\\ tj�d��+��7�(n�1JP$JPk��E����l�(���Bg����>��J-��Ԇ:?���b�)�Q�5�S�1o�{A]�J���<(kv\"]u�@�^�� �6L�v~���B9���F�Gʝ|�r���[]����2���74P���T��Dz��Å:���*���J�]���OR�g_*\r2��s*�\ZHe��P��-���F��s���=U;���2�u�I�Gһ���L ���?fPÔ�(-����o�Rs�~����h�Km��Kj_��ګ��Ou�U����s@�\\ً�ʆ��p���];-X!��rSYq��?��Φr�=V�g��U��.���yɪ]G��SVmV�uXm~\'�e��A}����<�љ���АJ�Yp�u�M`��<�ڄ�eO`����`�56���#V��a�<�x ����#\r�����<�[��l��̖�x�<a�:O��\'�ڰ��d�<Ý\'���)�3٤L���^�3�&�i~ώW`��M<��[&�b+�,��p���{���^0��ZG��;5��t/_W�˃?�\r�RmŮ�&�_�ͫ��N]e��yu�-�qِ=��c����&Bx�e(�����ղ��&{\'�?��bʾ���O�oP��f.�@-\\~����9�]�wm��ݣ����Q����q�8~��C��8tq9�ީ��O{pؚt˨�6|�s&�ٕ�g#G�_��8ҹ�#�� c\r>�Q��S?sL�O>�x�O�[ñ�9V��Oo�����+�p�ݕ���I����N����My����(�s���y��|q���h��}�����Ô�8��&_��f��k-����|{�N��ѓ��w}��|�|�..(�̅;�\"�ü(~ؖΏۺ���\"��pu.7I��E\\�Ѝ+^�s��a~i;�����n���#f��g\\�Ńk5�s��N~S�;��n��;��m������>r��Hn�|�C�p��}�4@�?���ֿ����%�Mώ�Y~����^�g3�b�گQ�P���6]Q>Q\'�]���jQ�}!�eWd���5!Q�䄋v��h�g��}O\Z8Wt\"~�XO�)�ݎ2줱��*��4���$�?�C�_���Ā��(�E����H�<8(c*Aƙd�Dj�IˣdJ��Lm6��ފ�5��V�Q�buJSlU��6Ķ���־�w�]�T���)�[�dA�HYx�U��8�*�%�ʲԌeiL�8���ӫ4Y5t���T#�;�WI������ɺ��) _+KY?{���W��4L��ٺ3M�(J��z�i�(;�%��X�\'�J�z�LҒ��v�И>rx���\rk��x+���.�W���Z9�D5����?�T�P��X- +NH�XV()k^KJ`����\'�c�%uF��S��i#$ӭH��I��sɪ�\"Y�%r���6\'A�\"$\'*Rr�%ש@�ɝ�R�?T$���R01J\n\'ΓBUy�V*u\n�q��<��E�wIqM���HI�gy:�J��<$�cʤ��@��I�~y���Tx{HŶ�RY U�w�e[����BjޚKM�Z�=~B���;���N�E�Mȓ�9(\r�{K�ۏ�О%�.��i��|2� -�����f�R�+��H�_i�>G�f͓�g�k{�|���ʷ�Q�1�]:��HG�\"�n��K��\ZS�� M�Ч$a���ͩ�fl�?�wZjȑ\0','no'),('manualScanType','onceDaily','yes'),('max404Crawlers','DISABLED','yes'),('max404Crawlers_action','throttle','yes'),('max404Humans','DISABLED','yes'),('max404Humans_action','throttle','yes'),('maxExecutionTime','0','yes'),('maxGlobalRequests','DISABLED','yes'),('maxGlobalRequests_action','throttle','yes'),('maxMem','256','yes'),('maxRequestsCrawlers','DISABLED','yes'),('maxRequestsCrawlers_action','throttle','yes'),('maxRequestsHumans','DISABLED','yes'),('maxRequestsHumans_action','throttle','yes'),('migration636_email_summary_excluded_directories','1','no'),('needsNewTour_auditlog','0','yes'),('needsNewTour_blocking','1','yes'),('needsNewTour_dashboard','0','yes'),('needsNewTour_firewall','0','yes'),('needsNewTour_livetraffic','1','yes'),('needsNewTour_loginsecurity','1','yes'),('needsNewTour_scan','0','yes'),('needsUpgradeTour_auditlog','1','yes'),('needsUpgradeTour_blocking','0','yes'),('needsUpgradeTour_dashboard','0','yes'),('needsUpgradeTour_firewall','0','yes'),('needsUpgradeTour_livetraffic','0','yes'),('needsUpgradeTour_loginsecurity','0','yes'),('needsUpgradeTour_scan','0','yes'),('neverBlockBG','neverBlockVerified','yes'),('noc1ScanSchedule','a:2:{i:0;i:1734579000;i:1;i:1734838200;}','yes'),('notification_blogHighlights','1','yes'),('notification_productUpdates','1','yes'),('notification_promotions','1','yes'),('notification_scanStatus','1','yes'),('notification_securityAlerts','1','yes'),('notification_updatesNeeded','1','yes'),('onboardingAttempt1','skipped','yes'),('onboardingAttempt2','','no'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial','0','yes'),('onboardingDelayedAt','0','yes'),('onboardingLastVersion','8.0.0','yes'),('originalScheduledScanStart','1734319798','yes'),('other_blockBadPOST','0','yes'),('other_bypassLitespeedNoabort','0','yes'),('other_hideWPVersion','','yes'),('other_pwStrengthOnUpdate','1','yes'),('other_scanComments','1','yes'),('other_scanOutside','0','yes'),('other_WFNet','1','yes'),('previousWflogsFileList','[\".htaccess\",\"GeoLite2-Country.mmdb\",\"attack-data.php\",\"config-livewaf.php\",\"config-synced.php\",\"config-transient.php\",\"config.php\",\"ips.php\",\"rules.php\",\"template.php\"]','yes'),('satisfactionPromptDismissed','0','yes'),('satisfactionPromptInstallDate','0','yes'),('satisfactionPromptOverride','1','yes'),('scanAjaxTestSuccessful','1','yes'),('scanFileProcessing','','yes'),('scanMonitorLastAttempt','1734536263','yes'),('scanMonitorLastAttemptMode','quick','yes'),('scanMonitorLastAttemptWasFork','','yes'),('scanMonitorLastSuccess','1734536266','yes'),('scanMonitorRemainingResumeAttempts','2','yes'),('scanSched','a:0:{}','yes'),('scansEnabled_checkGSB','1','yes'),('scansEnabled_checkHowGetIPs','1','yes'),('scansEnabled_checkReadableConfig','1','yes'),('scansEnabled_comments','1','yes'),('scansEnabled_core','1','yes'),('scansEnabled_coreUnknown','1','yes'),('scansEnabled_diskSpace','1','yes'),('scansEnabled_fileContents','1','yes'),('scansEnabled_fileContentsGSB','1','yes'),('scansEnabled_geoipSupport','1','yes'),('scansEnabled_highSense','0','yes'),('scansEnabled_malware','1','yes'),('scansEnabled_oldVersions','1','yes'),('scansEnabled_options','1','yes'),('scansEnabled_passwds','1','yes'),('scansEnabled_plugins','0','yes'),('scansEnabled_posts','1','yes'),('scansEnabled_scanImages','0','yes'),('scansEnabled_suspectedFiles','1','yes'),('scansEnabled_suspiciousAdminUsers','1','yes'),('scansEnabled_suspiciousOptions','1','yes'),('scansEnabled_themes','0','yes'),('scansEnabled_wafStatus','1','yes'),('scansEnabled_wpscan_directoryListingEnabled','1','yes'),('scansEnabled_wpscan_fullPathDisclosure','1','yes'),('scanStageStatuses','a:11:{s:13:\"spamvertising\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:4:\"spam\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:9:\"blacklist\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:6:\"server\";a:4:{s:6:\"status\";s:16:\"complete-warning\";s:7:\"started\";i:5;s:8:\"finished\";i:5;s:8:\"expected\";i:5;}s:7:\"changes\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:6:\"public\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"malware\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"content\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:3;s:8:\"finished\";i:3;s:8:\"expected\";i:3;}s:8:\"password\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:13:\"vulnerability\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:7:\"options\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}}','no'),('scanTime','1734536269.4312','yes'),('scanType','standard','yes'),('scan_exclude','','yes'),('scan_force_ipv4_start','0','yes'),('scan_include_extra','','yes'),('scan_maxDuration','','yes'),('scan_maxIssues','1000','yes'),('scan_max_resume_attempts','2','yes'),('schedMode','auto','yes'),('schedStartHour','17','yes'),('scheduledScansEnabled','1','yes'),('serverDNS','1734508945;189;114.23.57.66','yes'),('serverIP','1732002491;114.23.57.66','yes'),('showAdminBarMenu','1','yes'),('showWfCentralUI','1','yes'),('signatureUpdateTime','1734278268','yes'),('spamvertizeCheck','1','yes'),('ssl_verify','1','yes'),('startScansRemotely','0','yes'),('supportContent','{\"top\":[{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":0},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Wordfence and LiteSpeed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Firewall Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":6},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":7},{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/#i-am-locked-out-of-my-site\",\"order\":8},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":9}],\"all\":[{\"title\":\"Wordfence Free\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-free\\/\",\"excerpt\":\"Wordfence Free is an all-in-one security solution for WordPress websites that includes an endpoint firewall, security scanner, login security, alerts, centralized management, and more.\",\"order\":0},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-premium\\/\",\"excerpt\":\"Wordfence Premium comes with real-time firewall protection, real-time scan signatures, an IP address blocklist, country blocking, and Premium support.\",\"order\":1},{\"title\":\"Wordfence Care\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-care\\/\",\"excerpt\":\"Wordfence Care is for business owners who place a premium on their time. Our team installs, configures, optimizes, and maintains your WordPress site security.\",\"order\":2},{\"title\":\"Wordfence Response\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-response\\/\",\"excerpt\":\"Wordfence Response is for mission-critical WordPress websites that require 24\\/7\\/365 security monitoring with a 1-hour response time and 24-hour remediation.\",\"order\":3},{\"title\":\"Incident Response Services\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/incident-response-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":4},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/api-key\\/\",\"excerpt\":\"All Wordfence installations need a license key, also known as an API-key. The key can be a free key or a Premium key. \",\"order\":5},{\"title\":\"Account and Billing History\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/account\\/\",\"excerpt\":\"How to navigate and use your Wordfence account.\",\"order\":6},{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":0},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":1},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":2},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":3},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":4},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":5},{\"title\":\"Using Wordfence Central Teams\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/teams\\/\",\"order\":6},{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":7}],\"order\":7},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your site’s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":8},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":1},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":9},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the firewall rules that protect against various attacks, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":0},{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":1}],\"order\":10},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, and shells that hackers have installed. It also scans for known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":11},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Live Traffic analysis, WHOIS Lookup, Import\\/Export Options, and Diagnostics.\",\"children\":[{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":0},{\"title\":\"WHOIS Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":1},{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5}],\"order\":12},{\"title\":\"Audit Log\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/audit-log\\/\",\"excerpt\":\"The Wordfence Audit Log is a premium feature that records a history of events on your site to assist in monitoring for unauthorized actions or signs of compromise. Events can include everything from user creation and editing to plugin\\/theme installation and updates. All data captured for relevant events is saved remotely to Wordfence Central to prevent any tampering that may interfere with post-incident analysis and response.\",\"order\":13},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":14},{\"title\":\"Basic Plugin Settings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/basic-plugin-settings\\/\",\"excerpt\":\"Here are our minimal recommended settings to set up once you have installed and activated our plugin.\",\"order\":15},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you will find the answers in this section.\",\"children\":[{\"title\":\"Compatibility\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/compatibility\\/\",\"order\":0},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":1},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":2},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":3},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":4},{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":5},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":7},{\"title\":\"Plugin \\/ Theme Conflicts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/plugin-theme-conflicts\\/\",\"order\":8}],\"order\":16},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available standard contractual clauses to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services.\",\"children\":[{\"title\":\"Sub-Processors List\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/sub-processors-list\\/\",\"order\":0}],\"order\":17},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either can’t or don’t want to run the full Wordfence plugin.\",\"order\":18},{\"title\":\"Wordfence Intelligence\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/\",\"excerpt\":\"Wordfence Intelligence is an industry-leading WordPress vulnerability database and evolving Threat Intelligence platform that contains over 12,000 records for vulnerabilities in WordPress plugins, themes, and core.\",\"children\":[{\"title\":\"V2: Accessing and Consuming the Vulnerability Data Feed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/v2-accessing-and-consuming-the-vulnerability-data-feed\\/\",\"order\":0},{\"title\":\"V1: Accessing and Consuming the Vulnerability Data Feed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/accessing-and-consuming-the-vulnerability-data-feed\\/\",\"order\":1},{\"title\":\"Wordfence Intelligence Webhook Notifications\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/wordfence-intelligence-webhook-notifications\\/\",\"order\":2}],\"order\":19}]}','no'),('supportHash','9bcd7876de6fdd69ab54e0da0fc4d2d5a1d728b7cdfa7b7efd5cf99a73a6a6a2','yes'),('suspiciousAdminUsernames','a:2:{i:0;s:46:\"/^wp\\.service\\.controller(?:\\.[a-zA-Z0-9]+)$/i\";i:1;s:55:\"/^(?:wordpressssadmin|wordprestadmin|jaime.besser56)$/i\";}','yes'),('timeoffset_wf','2','yes'),('timeoffset_wf_updated','1734542973','yes'),('tldlist','|com|org|net|edu|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|ceo|cfa|cfd|cpa|crs|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gay|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|llp|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|one|ong|onl|ooo|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|scb|sew|sex|sfr|ski|sky|soy|spa|srl|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|aarp|able|aero|akdn|ally|amex|arab|adult|army|arpa|arte|actor|asda|aetna|asia|audi|auto|baby|band|bank|bbva|beer|best|bike|bing|blog|blue|bofa|bond|book|buzz|cafe|call|camp|care|cars|casa|case|cbre|cern|chat|baidu|citi|city|build|cash|club|cool|coop|cyou|data|date|dclk|deal|dell|desi|diet|dish|docs|dvag|land|lego|lgbt|lidl|life|like|limo|link|live|loan|love|ltda|luxe|maif|meet|meme|menu|mini|mint|mobi|moda|moto|name|navy|news|next|nico|nike|ollo|open|page|pars|pccw|pics|ping|pink|play|plus|pohl|porn|post|prod|prof|qpon|read|reit|rent|rest|rich|room|rsvp|ruhr|safe|sale|sarl|save|saxo|scot|seat|seek|sexy|shia|azure|beats|bible|bingo|black|boats|bosch|shop|show|silk|sina|site|skin|sncf|sohu|song|sony|spot|star|surf|talk|taxi|team|tech|teva|tiaa|tips|town|toys|tube|vana|visa|viva|wang|archi|xbox|zone|apple|weir|wien|wiki|amfam|amica|audio|autos|canon|cards|chase|cheap|cisco|click|wine|citic|cloud|coach|codes|crown|cymru|dance|deals|drive|dubai|earth|edeka|vivo|vote|voto|delta|work|yoga|zara|zero|email|lamer|broker|charity|bridgestone|camera|career|casino|center|chanel|chrome|church|chintai|circle|channel|comsec|brother|capital|caravan|careers|citadel|claims|clinic|clubmed|coffee|condos|college|cologne|company|compare|press|contact|cooking|corsica|country|coupon|coupons|broadway|courses|erni|christmas|events|expert|fage|fail|faith|family|catering|catholic|fans|farm|fast|brussels|builders|business|fedex|capitalone|fido|capetown|film|calvinklein|final|fire|estate|cipriani|credit|cruise|dating|design|cleaning|datsun|clinique|clothing|dealer|degree|computer|dental|commbank|community|epson|direct|doctor|dunlop|dupont|durban|consulting|emerck|contractors|energy|creditcard|creditunion|construction|prime|bradesco|radio|author|promo|allstate|alsace|alstom|aramco|rehab|reise|amazon|quest|ricoh|rocks|rodeo|rugby|salon|school|schule|secure|sener|sucks|search|seven|smart|select|shell|shoes|style|analytics|sharp|smile|shouji|skype|sling|soccer|swiss|social|space|sport|store|study|stream|studio|supply|suzuki|swatch|amsterdam|americanfamily|americanexpress|solar|sydney|tatar|abbott|abbvie|accenture|africa|allfinanz|accountants|boston|works|bostik|quebec|accountant|racing|realty|reisen|abogado|academy|agakhan|abudhabi|repair|report|review|world|agency|airbus|airtel|alipay|anquan|bayern|beauty|berlin|bharti|rogers|ryukyu|alibaba|xerox|safety|sakura|sanofi|airforce|taobao|target|tattoo|yahoo|taipei|tennis|android|auction|tirol|tjmaxx|tkmaxx|tmall|today|tokyo|tools|ubank|tienda|unicom|athleta|toray|audible|auspost|attorney|total|apartments|trust|tunes|barclays|bargains|baseball|travel|barefoot|aquarelle|trade|bloomberg|tushu|barcelona|toyota|associates|banamex|booking|tires|tours|zappos|basketball|bestbuy|vegas|boutique|bnpparibas|boehringer|viajes|barclaycard|video|blockbuster|vodka|volvo|watch|weber|bentley|wales|viking|villas|virgin|vision|blackfriday|voting|voyage|webcam|weibo|walter|xihuan|yandex|bauhaus|yachts|cricket|fish|flir|food|ford|free|fund|game|ggee|gift|gallo|gmbh|gold|forex|gbiz|gent|golf|goog|forum|green|gripe|google|grainger|graphics|grocery|group|gucci|guge|guide|goodyear|guitars|guru|gratis|hair|haus|hdfc|icbc|java|jeep|games|gifts|help|gives|here|hsbc|giving|glass|global|kiwi|globo|gmail|host|ieee|honda|horse|jprs|house|kids|godaddy|itau|hyatt|jobs|homes|kddi|goldpoint|hamburg|ikano|hermes|hangout|hiphop|hockey|hitachi|holiday|hosting|holdings|hisamitsu|hospital|imdb|immo|kyoto|health|kpmg|lipsy|hughes|info|kred|jetzt|locus|hotels|hdfcbank|imamat|hyundai|helsinki|joburg|infiniti|jewelry|jpmorgan|loans|lotto|lundbeck|memorial|merckmsd|miami|hotmail|lease|homedepot|ipiranga|homesense|irish|koeln|intuit|legal|lexus|lilly|mango|market|marketing|marshalls|mattel|healthcare|london|lotte|marriott|media|insure|jaguar|madrid|maison|makeup|ismaili|istanbul|homegoods|insurance|luxury|markets|institute|mckinsey|melbourne|microsoft|pramerica|praxi|juegos|delivery|digital|lawyer|cruises|dentist|deloitte|democrat|diamonds|directory|domains|exposed|farmers|fashion|florist|flowers|forsale|kosher|leclerc|lefrak|express|walmart|yamaxun|youtube|discount|flickr|flights|exchange|ferrari|ferrero|finance|fishing|fitness|engineer|firmdale|football|education|lacaixa|latino|lasalle|latrobe|download|fidelity|lanxess|xn--p1ai|xn--qxam|yokohama|zuerich|discover|ericsson|feedback|xn--node|equipment|futbol|george|kaufen|gallery|furniture|gallup|fairwinds|fujitsu|juniper|frontier|garden|kindle|genting|cuisinella|frogans|limited|firestone|fresenius|kitchen|komatsu|financial|locker|lincoln|living|wanggou|watches|wedding|whoswho|windows|winners|kuokgroup|website|woodside|landrover|weather|lifestyle|lighting|ventures|eurovision|foundation|vanguard|extraspace|vacations|verisign|xn--90ae|xn--90ais|xn--c1avg|xn--d1alf|xn--e1a4c|xn--fhbei|xn--j1aef|xn--j1amh|xn--l1acc|xn--ngbrx|xn--nqv7f|xn--p1acf|xn--qxa6a|xn--tckwe|xn--vhquv|yodobashi|immobilien|osaka|otsuka|pictet|panasonic|paris|partners|parts|party|engineering|pfizer|pharmacy|phone|photo|photos|physio|philips|pizza|place|pioneer|realtor|plumbing|poker|politie|recipes|reliance|prudential|redstone|rentals|protection|sandvik|properties|reviews|rexroth|samsclub|samsung|schmidt|schwarz|science|pictures|property|saarland|services|schaeffler|security|richardli|travelers|realestate|republican|restaurant|xn--30rr7y|xn--3pxu8k|xn--45q11c|xn--4gbrim|xn--55qx5d|xn--5tzm5g|xn--80aswg|xn--90a3ac|xn--9dbq2a|xn--9et52u|xn--c2br7g|xn--cg4bki|xn--czrs0t|xn--czru2d|xn--fiq64b|xn--fiqs8s|xn--fiqz9s|xn--io0a7i|xn--kput3i|xn--mxtq1m|xn--o3cw4h|xn--pssy2u|xn--q7ce6a|xn--unup4y|xn--wgbh1c|xn--wgbl6a|xn--y9a3aq|enterprises|international|monash|investments|lplfinancial|management|kerrylogistics|money|mobile|movie|nexus|nikon|ninja|mormon|music|moscow|nokia|nowtv|museum|omega|mitsubishi|nissan|nissay|norton|nowruz|lamborghini|monster|nagoya|netbank|network|industries|neustar|mortgage|motorcycles|netflix|nextdirect|origins|photography|playstation|productions|progressive|redumbrella|stada|office|online|okinawa|olayan|oracle|organic|shiksha|singles|softbank|lancaster|orange|staples|shangrila|toshiba|observer|shopping|software|supplies|trading|stcgroup|solutions|scholarships|storage|lifeinsurance|temasek|theater|theatre|tickets|statebank|olayangroup|sandvikcoromant|support|statefarm|surgery|systems|stockholm|tatamotors|technology|training|university|versicherung|weatherchannel|kerryproperties|vlaanderen|kerryhotels|williamhill|xn--1qqw23a|xn--2scrj9c|xn--3bst00m|xn--3ds443g|xn--3hcrj9c|wolterskluwer|xn--11b4c3d|xn--1ck2e1b|xn--3e0b707e|xn--42c2d9a|xn--45brj9c|xn--55qw42g|xn--6frz82g|xn--80ao21a|xn--9krt00a|xn--czr694b|xn--d1acj3b|xn--80asehdb|xn--efvy88h|xn--fct429k|xn--80aqecdr1a|xn--cck2b3b|xn--fjq720a|xn--flw351e|xn--g2xx48c|xn--gk3at1e|xn--fiq228c5hs|xn--h2brj9c|xn--hxt814e|xn--gckr3f0f|xn--fzc2c9e2c|xn--imr513n|xn--fpcrj9c3d|xn--gecrj9c|xn--6qq986b3xl|xn--80adxhks|xn--j6w193g|xn--ses554g|xn--t60b56a|xn--45br5cyl|xn--4dbrk0ce|xn--eckvdtc9d|xn--rhqv96g|xn--cckwcxetd|xn--rovu88b|xn--s9brj9c|xn--h2brj9c8c|xn--vuq861b|xn--w4rs40l|xn--54b7fta0cc|xn--b4w605ferd|xn--zfr164b|xn--8y0a063a|xn--tiq49xqyj|xn--yfro4i67o|xn--ygbi2ammx|xn--h2breg3eve|xn--xhq521b|xn--jlq480n2rg|xn--mgb9awbf|xn--mgbbh1a|xn--mgbab2bd|xn--qcka1pmc|xn--mgba3a3ejt|xn--mgbaam7a8h|xn--mgbayh7gpa|xn--i1b6b1a6a2e|xn--jvr189m|xn--kcrx77d1x4a|xn--kprw13d|xn--kpry57d|xn--lgbbat1ad8j|xn--mgbc0a9azcg|xn--fzys8d69uvgm|xn--mgba3a4f16a|xn--mgba7c0bbn0a|travelersinsurance|xn--5su34j936bgsg|xn--bck1b9a5dre4c|xn--clchc0ea0b2g2a9gcd|xn--mgbah1a3hjkrd|xn--mgbai9azgqp6j|xn--mgbbh1a71e|xn--mgbca7dzdo|xn--q9jyb4c|xn--mk1bu44c|xn--nyqy26a|xn--otu796d|xn--pgbs0dh|xn--ngbc5azd|xn--ngbe9e0a|xn--ogbpf8fl|xn--rvc1e0am3e|xn--nqv7fs00ema|xn--mgbcpq6gpa1a|xn--mix891f|xn--mgberp4a5d4ar|xn--mgbtx2b|xn--mgbgu82a|xn--mgbpl2fh|xn--mgbt3dhd|xn--mgbi4ecexp|xn--mgbx4cd0ab|xn--vermgensberater-ctb|xn--w4r85el8fhu5dnra|xn--xkc2al3hye2a|xn--xkc2dl3a5ee0h|xn--vermgensberatung-pwb|','no'),('tldlistHash','e3bae2216c5686cb06ade91dff3dccbae71f3096b5347514a1fc1ef76e747abc','yes'),('total503s','1015','yes'),('totalIPsBlocked','1016','yes'),('totalIPsLocked','9','yes'),('totalLoginHits','6081','yes'),('totalLogins','145','yes'),('totalScansRun','906','yes'),('touppBypassNextCheck','0','yes'),('touppPromptNeeded','','yes'),('vulnerabilities_core','a:1:{s:7:\"current\";a:4:{s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;s:5:\"score\";N;s:6:\"vector\";N;}}','no'),('vulnerabilities_plugin','a:11:{i:0;a:5:{s:4:\"slug\";s:13:\"wordpress-seo\";s:11:\"fromVersion\";s:4:\"24.0\";s:10:\"vulnerable\";b:0;s:9:\"toVersion\";s:4:\"24.1\";s:4:\"link\";b:0;}i:1;a:4:{s:4:\"slug\";s:7:\"akismet\";s:11:\"fromVersion\";s:5:\"5.3.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:4:{s:4:\"slug\";s:35:\"wp-live-chat-software-for-wordpress\";s:11:\"fromVersion\";s:6:\"4.5.23\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:4:{s:4:\"slug\";s:28:\"wp-reviews-plugin-for-google\";s:11:\"fromVersion\";s:6:\"12.4.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:5:\"8.0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:4:{s:4:\"slug\";s:11:\"wp-optimize\";s:11:\"fromVersion\";s:5:\"3.8.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:4:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:11:\"fromVersion\";s:6:\"6.3.11\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:17:\"wp-migrate-db-pro\";s:11:\"fromVersion\";s:5:\"2.7.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:4:{s:4:\"slug\";s:12:\"gravityforms\";s:11:\"fromVersion\";s:5:\"2.9.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:4:{s:4:\"slug\";s:14:\"envira-gallery\";s:11:\"fromVersion\";s:6:\"1.10.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:10;a:4:{s:4:\"slug\";s:4:\"soil\";s:11:\"fromVersion\";s:5:\"4.1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','no'),('vulnerabilities_theme','a:1:{i:0;a:5:{s:4:\"slug\";s:15:\"twentytwentytwo\";s:9:\"toVersion\";s:3:\"1.8\";s:11:\"fromVersion\";s:3:\"1.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','no'),('wafAlertInterval','600','yes'),('wafAlertOnAttacks','1','yes'),('wafAlertThreshold','100','yes'),('wafAlertWhitelist','','yes'),('waf_status','enabled','yes'),('wfKillRequested','0','no'),('wfPeakMemory','100663296','no'),('wfScanStartVersion','6.7.1','yes'),('wfsd_engine','','no'),('wfStatusStartMsgs','a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}','yes'),('wf_scanLastStatusTime','0','yes'),('wf_scanRunning','','yes'),('wf_summaryItems','a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1734536266;}','yes'),('whitelisted','','yes'),('whitelistedServices','{}','yes'),('whitelistHash','bf3d76dc05caf8623cb3fe01c1fc9e308e2f2ea37b826937d850fde361cdefd4','yes'),('whitelistPresets','{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]},\"seznam\":{\"n\":\"Seznam Search Engine\",\"d\":true,\"r\":[\"77.75.74.0\\/24\",\"77.75.76.0\\/24\",\"77.75.77.0\\/24\",\"77.75.78.0\\/24\",\"77.75.79.0\\/24\",\"2a02:598:a::78:0\\/112\",\"2a02:598:a::79:0\\/112\",\"2a02:598:2::0\\/96\"]}}','yes'),('wordfenceI18n','1','yes'),('wordpressPluginVersions','a:11:{s:26:\"advanced-custom-fields-pro\";s:6:\"6.3.11\";s:7:\"akismet\";s:5:\"5.3.5\";s:14:\"envira-gallery\";s:6:\"1.10.0\";s:12:\"gravityforms\";s:5:\"2.9.1\";s:35:\"wp-live-chat-software-for-wordpress\";s:6:\"4.5.23\";s:4:\"soil\";s:5:\"4.1.1\";s:28:\"wp-reviews-plugin-for-google\";s:6:\"12.4.7\";s:9:\"wordfence\";s:5:\"8.0.1\";s:11:\"wp-optimize\";s:5:\"3.8.0\";s:17:\"wp-migrate-db-pro\";s:5:\"2.7.0\";s:13:\"wordpress-seo\";s:4:\"24.1\";}','yes'),('wordpressThemeVersions','a:3:{s:4:\"mint\";s:5:\"1.0.0\";s:28:\"pinnclonesmalltest/resources\";s:5:\"1.0.0\";s:15:\"twentytwentytwo\";s:3:\"1.9\";}','yes'),('wordpressVersion','6.7.1','yes'),('wp_home_url','https://juiceelectrical.co.nz','yes'),('wp_site_url','https://juiceelectrical.co.nz','yes'); /*!40000 ALTER TABLE `wp_wfconfig` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wfcrawlers` -- DROP TABLE IF EXISTS `wp_wfcrawlers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wfcrawlers` ( `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `patternSig` binary(16) NOT NULL, `status` char(8) NOT NULL, `lastUpdate` int(10) unsigned NOT NULL, `PTR` varchar(255) DEFAULT '', PRIMARY KEY (`IP`,`patternSig`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wfcrawlers` -- LOCK TABLES `wp_wfcrawlers` WRITE; /*!40000 ALTER TABLE `wp_wfcrawlers` DISABLE KEYS */; INSERT INTO `wp_wfcrawlers` VALUES ('\0\0\0\0\0\0\0\0\0\0��\0\0\0\0','�����>�b0�oQ1��','verified',1734258126,'rate-limited-proxy-72-14-199-162.google.com'); /*!40000 ALTER TABLE `wp_wfcrawlers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wffilechanges` -- DROP TABLE IF EXISTS `wp_wffilechanges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wffilechanges` ( `filenameHash` char(64) NOT NULL, `file` varchar(1000) NOT NULL, `md5` char(32) NOT NULL, PRIMARY KEY (`filenameHash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wffilechanges` -- LOCK TABLES `wp_wffilechanges` WRITE; /*!40000 ALTER TABLE `wp_wffilechanges` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wffilechanges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wffilemods` -- DROP TABLE IF EXISTS `wp_wffilemods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wffilemods` ( `filenameMD5` binary(16) NOT NULL, `filename` varchar(1000) NOT NULL, `real_path` text NOT NULL, `knownFile` tinyint(3) unsigned NOT NULL, `oldMD5` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `newMD5` binary(16) NOT NULL, `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '', `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT 0, `isSafeFile` varchar(1) NOT NULL DEFAULT '?', PRIMARY KEY (`filenameMD5`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wffilemods` -- LOCK TABLES `wp_wffilemods` WRITE; /*!40000 ALTER TABLE `wp_wffilemods` DISABLE KEYS */; INSERT INTO `wp_wffilemods` VALUES ('\0�)�eA���s��U','wp-content/plugins/wordfence/css/wf-adminbar.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/wf-adminbar.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԧ_SZډ˴&nQ��W�','ܭ�3[=�[��]|Djga,X �n-H{�o','',0,'?'),('\0s����?�#��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayPush.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayPush.js',0,'��|�H��/�:���','��|�H��/�:���','��)�~�d��:}��V3Ns�FBJF����&','',0,'?'),('\0��G��Z�͒q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_setWrapToString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_setWrapToString.js',0,'����NՁ�\0k�G�r��','����NՁ�\0k�G�r��','�M�u\'��S. ��^�Bh& _#�0���㤛x','',0,'?'),('\0?H�\0�E}�����\"�','wp-includes/sodium_compat/lib/namespaced.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','01����vnG��\r�',']/r~�ʺO���C�c�xB��j/�o��U�I*�','',0,'?'),('\0�t�F��qS揃 Y','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"�k�\'�� \n\'j%�','��lb�j�\Z&v4ڦ}�AI��g��`��+�F�','',0,'?'),('\0�(y�����t0��1','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-copy.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-copy.svg',0,'#��y���A�i��','#��y���A�i��','�;}���س�|�KPƊ�L\\��;��_�%�v�','',0,'?'),('\0)4\nTY��d4G~�','wp-includes/images/w-logo-blue-white-bg.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/w-logo-blue-white-bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�Ȉk�|�Ѽ���','O�ɗ�o����C��A�/x����<��%4=?','',0,'?'),('\0/ �z�䍂�|� *','wp-content/themes/mint/node_modules/mkdirp/test/mkdirp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/test/mkdirp.js',0,'V�H�m�^���=H?/�','V�H�m�^���=H?/�','�*�o�ўe4���a^�P�������U:','',0,'?'),('\00��#�9���Z4�j$','wp-admin/network/user-edit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�d4VڋS~tɱ�ź','�o�ᕑ�\"t�y�S�����M8�!9/�?Y�X�','',0,'?'),('\05g���c�0�\"D','wp-includes/css/media-views-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/media-views-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y-�!U��ʃx�?','ڔ���\\d�L�\ZiK��8�93�{�#O�-','',0,'?'),('\08s�iZ��\r;��~\\�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/ArrayLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/ArrayLoader.php',0,'k��U�����R9���','k��U�����R9���','�*`�j�7*aX\r0�8 +�w{m��ꄉ�A�','',0,'?'),('\0:yJ5}����K\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math.js',0,'�F\06lه��Z�\r��','�F\06lه��Z�\r��','�iA$7� ��p�fj6��mn���V4,Caω','',0,'?'),('\0>����B�qG�?��ݕ','wp-content/plugins/envira-gallery/assets/js/envira-gutenberg.js.LICENSE.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/envira-gutenberg.js.LICENSE.txt',0,'sL+M� ��`�-}','sL+M� ��`�-}','w��N|kRt�=�����<2!�2������','',0,'?'),('\0B��C��b+Wr��','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/HttpAuthServiceProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/HttpAuthServiceProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�d�z[���_��I.','b\r�.�K@\ZQ��$3�N2���`ɲ^O �Ę�','',0,'?'),('\0C_\n��jD��@k','wp-admin/network/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P��/IGV7w����Y','�E���7]0�-i��Y�����6w~U�6��','',0,'?'),('\0G���M(��YlWz�!','wp-includes/sodium_compat/src/Core/X25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pZ�����:!�ټ�','3�l�@���o�-�3���S���Տ&�!��','',0,'?'),('\0Tp�� �)�~��u','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Exception/InvalidOptionException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Exception/InvalidOptionException.php',0,'�g�~?��`�a��KňV','�g�~?��`�a��KňV','|k\r0�\"1�d�����d�.��%=H�2�y&tG','',0,'?'),('\0Z�^���x��[>Bv�I','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/defaultsDeepAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/defaultsDeepAll.js',0,'�o}:t�ךhl�f','�o}:t�ךhl�f','�^�U]`�E��Zr��)�S|F�4*�j�M�','',0,'?'),('\0[|�b���g��_q','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/union.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/union.js',0,'��k8\r1{������','��k8\r1{������','2Q�]���#��[���e�4c��\Zz\\�Z�','',0,'?'),('\0\\s�TÐ��֘8��','wp-includes/blocks/post-excerpt/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-excerpt/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9���a�N�4=��\r^','�~�ŪA��W��w�@7�vz����4�_','',0,'?'),('\0^�m#�K��g� 4F','wp-content/plugins/akismet/_inc/akismet-admin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/_inc/akismet-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����hA(�K��ln�H�','>#Ap�G��K��ܤ����?�0��iIx3��','',0,'?'),('\0_�]��wgGS�K��','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ContainerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ContainerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~rD�5�y�E��:','��蛮����!Z|��L���x<A6�&��','',0,'?'),('\0m,���7���F�$','wp-content/plugins/wordfence/js/jquery.qrcode.min.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/jquery.qrcode.min.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Թ���Xp`me<','wP\0�p�zuYDS�z(W�ߥ��P�3$S����','',0,'?'),('\0p�0e��y��nm ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/toObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/toObject.js',0,'�*]���D��ކnq�f','�*]���D��ކnq�f','����ϧ_�]�cH��%�n���?y��-[W�\\','',0,'?'),('\0yP2��)���Ɩ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/drop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/drop.js',0,'+�]��k(ɥ>%�\\�s','+�]��k(ɥ>%�\\�s','y�������-�x0i�jK_ŏ��vs]j��','',0,'?'),('\0��2��� �Ky�v�','wp-content/plugins/wordpress-seo/lib/dependency-injection/container-registry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/lib/dependency-injection/container-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���r��ƉM7+D','�Yj���x���J��oq��!��bNgk�Y@�','',0,'?'),('\0�sf%\r%��ӄ�QO','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/connect_notice.html.twig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/connect_notice.html.twig',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DEE�h5�?� �.\\Y','A1�\rA����N�/��������>4F��`+M1','',0,'?'),('\0�������صȡ��','wp-content/themes/mint/assets/vendor/respond/src/respond.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/respond/src/respond.js',0,'�;]̉U�O�^Y��ڬ�','�;]̉U�O�^Y��ڬ�','&4#ef@�-kՑ�Μ5c.7#��a�#\0��','',0,'?'),('\0���;f��Q�=*Ǖ�','wp-includes/js/wp-emoji.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-emoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K2���~Q�L��el�|','��=Ԅ�DρO´�ZMP�~�>/l���5��','',0,'?'),('\0��\'�6&H�v�]��','wp-includes/block-bindings/post-meta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-bindings/post-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=n�=FU�*���J','���M���c�C#��Dʏr�2��e','',0,'?'),('\0��%ΥJ-�p��','wp-content/plugins/wordpress-seo/inc/class-rewrite.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�Q�-��4��F,�','ե�!q�Mΰ�)u81:ܓ�� ��e��F��','',0,'?'),('\0� \n\n� ���5�/R�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/lib/parse-js.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/lib/parse-js.js',0,'1a��C ��v�mJ˦','1a��C ��v�mJ˦','�$cm�T��L�L��(�*�lʎ턵�BQtD','',0,'?'),('\0�9�k5&�ٙ 7N','wp-includes/sodium_compat/src/Core32/Curve25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��43k�&t�8�p��','�j��+��JL¦�{����\Z��I]�ً�=�','',0,'?'),('\0�X��L�&����\Z�f','wp-includes/blocks/page-list-item/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list-item/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�--ªZ(�Ρ��RC','��?��5��࠰)\'�\\�DMh_�����','',0,'?'),('\0���\n�g=?=��)X�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/unapply.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/unapply.js',0,'դT$�d,x�w�j8','դT$�d,x�w�j8','��g;�g%��b�N^�0��|oz$W�r�Ԕ�IYy','',0,'?'),('\0��F,�\' ��v��k�','wp-content/themes/mint/node_modules/bower/lib/node_modules/wordwrap/test/break.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/wordwrap/test/break.js',0,'1$(� ^+��\n��p�1�','1$(� ^+��\n��p�1�','�5@�jz숚i�@�rf�9J>k��*�U��CTg�','',0,'?'),('\0�qO(\Z���~F��y��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~f��<Rq��Px�\n','��\\� v��q�ŵ�tRץV�5�~@����w�d','',0,'?'),('\0���bU�\Z��ޭ��$','wp-content/themes/mint/node_modules/hoek/test/modules/test2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hoek/test/modules/test2.js',0,'1���N;.��e�{;e�H','1���N;.��e�{;e�H','.�{[Y��/9[��Q��h�n�7�G\'��5wc�j','',0,'?'),('\0�P���Ww)���5�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Filesystem/FileNotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Filesystem/FileNotFoundException.php',0,'4{��_7x\'�;��Q#�6','4{��_7x\'�;��Q#�6','�I�\n�q�B��2��:VX7�;(�b��\"�\\,H�R�','',0,'?'),('\0�|9��u�e���@��','wp-admin/includes/image.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"_a�du�x��R��F��','Ws�]��1�b�w-%�.(:Ԏ�E����U�]�[{�','',0,'?'),('\0�AU�����)-p ȑ','wp-content/themes/mint/node_modules/redent/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/redent/index.js',0,'e+���hL�,��\"/2','e+���hL�,��\"/2','{���5߸5(���.��L{���+���ȲY�','',0,'?'),('\0�d��Ӽ�:����!�!','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/unique.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/unique.js',0,'�w �hbYԭ�0s���','�w �hbYԭ�0s���','BF��C#H� ���w�:8�7μY��HQ��i5�','',0,'?'),('\0�p�J1W��o�6j','wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/async/lib/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/async/lib/async.js',0,'� �M�{܂V��1','� �M�{܂V��1','H\n��m��K�9�Y�i�L�ډo2��!h�','',0,'?'),('\0�D�`�8R��ɲ%��','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��������<6�<','���,�=����Cc�jx�ffS���L�����\';','',0,'?'),('\0�/�K���|tA]���','wp-content/plugins/gravityforms/includes/class-gravity-api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/class-gravity-api.php',0,'���W�pL�i��;','���W�pL�i��;','�u�?2��j�%qx��,n���_?��r�y��','',0,'?'),('\0�K�%�5,�$ˣ','wp-includes/blocks/video/theme.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/video/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' X6�TcW#�\'�L��','D f��7��R�.�+��;�`1�-p:}yu6','',0,'?'),('\0���~([��P�o_\n','wp-content/plugins/envira-gallery/assets/css/images/icons/exif.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/exif.svg',0,'/�)�\n�V�����Z','/�)�\n�V�����Z','�����.��I�k���r�����<���','',0,'?'),('\0�w���]��m��>','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function.js',0,'2,A�˿(v́7h��','2,A�˿(v́7h��','U�\nJ�بE�7F<�t%�=��\'�0��3�-��','',0,'?'),('\0$r�%HM�� �','wp-content/themes/mint/node_modules/bower/lib/node_modules/spdx-expression-parse/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/spdx-expression-parse/index.js',0,'�t,mrd����<','�t,mrd����<','߾���ߩT�^�V:^C!H��)Az�E','',0,'?'),('\0�lDd��u^��Y��','wp-admin/user/privacy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/user/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�I���U{x1�A','F��u�X\0�og�:~��h��_��5��p�t�$','',0,'?'),('\0���]�G�Ls�/�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/lookup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/lookup.js',0,' �=9�R�� 0uI2���',' �=9�R�� 0uI2���','��i��ߓi�5�B��\"��Ga%��@8�','',0,'?'),('\0�v����ئ���ݞ','wp-includes/blocks/post-template/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-template/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.f浰�t�A�N|','�,Do���{�ĝ�3o��Α �Q;�w���a','',0,'?'),('\0��\r������J\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_listCacheSet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_listCacheSet.js',0,']��U���>(a�>�',']��U���>(a�>�','��\"������S�3��5p�n$�����a�','',0,'?'),('\0�\\�_�M��E��W�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_equalArrays.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_equalArrays.js',0,'&���.g�,\r����>Z','&���.g�,\r����>Z','ӛk;<q�I�n>�$�����&�n�����!','',0,'?'),('\0��l��\Zh��s��.','wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/utils.js',0,'�)u���[o>p�','�)u���[o>p�',': _�h\"Ľ�\r\0�M��F$!�z�U��Ռ','',0,'?'),('\0��$�X��G-�tUƹ','wp-includes/blocks/navigation-link/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-link/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ZD{\nő��5��9','ik�`x��𤡀E�u由�6����,�Q3��','',0,'?'),('\0� $���ә\0֫','wp-includes/block-patterns.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Z}�\n4Mb�H�zX','�tvD��U�l����\'h�ʲ�o�Awz���','',0,'?'),('\0��\\�����ş���G','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/rand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/rand.js',0,'QG��&�v�}�+A_p3�','QG��&�v�}�+A_p3�','�#�\Z��Ov8B�)����U��.������^��-t','',0,'?'),('�\'0桛�a/�i>','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/StoreToken.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/StoreToken.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"o9�\\�o|��>�ѕ','>Rh4i6��D��z@+���;���e��69�EB7��','',0,'?'),('[*��v��O��Q��','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Parser.php',0,'���h��9!C?̝�{','���h��9!C?̝�{','[�Az�P$���i�@�����g�9�4���','',0,'?'),('\rx+�U��ڜ���','wp-includes/css/dist/list-reusable-blocks/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/list-reusable-blocks/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�f�lG�8�ˆ�-','0����e��S�5��詚��{�1u��`B�','',0,'?'),('v7��bs�,�2m�Z','wp-content/themes/mint/node_modules/clean-css/lib/properties/override-compactor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/properties/override-compactor.js',0,'X[�?;>�7j1i��','X[�?;>�7j1i��','�w��3o�l`?ت��G�Db5����[xR�d�','',0,'?'),('x��e�o#<���JI','wp-content/plugins/wordfence/css/wf-onboarding.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/wf-onboarding.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/���{Ro��D{f�','�����;GN���I���=�\\|I���9 ��4^2Y','',0,'?'),('\Zף�(&D�%�0h�','wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W!���p�m5RHE�)�','�Ҟ�\0�[��U =��b��\Z�^��ճ��','',0,'?'),('/>����(��3�','wp-includes/blocks/verse/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/verse/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�ˣR�R|�����','�j/+�H���+��z*c��*��a�a�e�','',0,'?'),('hl�8��X����w�','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/SignatureSniffer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/SignatureSniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�VA.I~0��Wp��','2�c#N�o\']\nO��(\\EJO�\r�|P�T�','',0,'?'),('���\'�~�`X����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/ctorApply.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/ctorApply.js',0,'&���V7�(�Vw$','&���V7�(�Vw$','W��ħ�2�Pi�@uW����b�+N�0Q��','',0,'?'),('!s,��ˬ���>&�','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/auto.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/auto.js',0,'*��]��4�R�b��','*��]��4�R�b��','�Yz�!�uN7��Y�f�^w\'E�1�G��','',0,'?'),('\'������U��� �','wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/index.js',0,'%���rc�F*:խ��*','%���rc�F*:խ��*','�5�UM$g�@���eC\\=7���g�Q','',0,'?'),('1u���/�|ʐ@�y','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/ConditionalGet.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/ConditionalGet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j��@��t;�&�aG','[����r��� / ��vE�z���l�wV�nW','',0,'?'),('1��\0Vڲ����^\'<','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Pagination/LengthAwarePaginator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Pagination/LengthAwarePaginator.php',0,'�w�<q]t�Z�jYh*�#','�w�<q]t�Z�jYh*�#','HsV\0e�����7��C�^�B�m��%�','',0,'?'),('2 ���>J�ۑ���s','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/testconsolidator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/testconsolidator.js',0,'�n ��б�ќ��!','�n ��б�ќ��!','�:���n\Z\nCҦ�/�������9pD��PJ','',0,'?'),('98YoL��/�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.js',0,'�@��hn�D��njY','�@��hn�D��njY','��+\\/�h�4\"fΚ��|��?�hXg��x�','',0,'?'),('?o7�|uu���','wp-content/plugins/wp-migrate-db-pro/class/Common/MigrationState/MigrationStateManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/MigrationState/MigrationStateManager.php',0,'\"�\\G�Z=\n�Z��6�','\"�\\G�Z=\n�Z��6�','tn�ږm\n٥��7&wŚ=��˃�]<_�','',0,'?'),('?�B���y�\r9���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/i18n/en-US.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/i18n/en-US.js',0,'xN�R_��c�ā(�%��','xN�R_��c�ā(�%��','r~��՝�FR��J{��B��}H�2��#Gʼn','',0,'?'),('C��(�LC*R��\0','wp-content/plugins/wordfence/lib/wfCurlInterceptor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfCurlInterceptor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FHim��{X{bȤ��L','\\�O��q��L{��3��<���K�9��\n��=','',0,'?'),('NQ�\"*hz�r�w|\Z�','wp-admin/images/media-button-other.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/media-button-other.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ayO�1/2|� �{&]�','L�p�-�8��7�Q|J���i`1�O�2��c��','',0,'?'),('T�U6�qI�-�s[','wp-content/themes/mint/node_modules/hooker/child.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hooker/child.js',0,'5xfL����C���\r','5xfL����C���\r','^��B�)�t\'r\'z�q�3��d�=�-j��k','',0,'?'),('T�\r�4�}�^a@|O','wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-plugin-conflict-ajax.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/ajax/class-yoast-plugin-conflict-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b9<��ҕ�IrBzL�*','Ͻ��\"����_��Ħ��X%O��4�Ӆ:Y','',0,'?'),('X�ɘy_�7�XN/','wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\h����\'\n䷺',' �7��RG�$/����-i��Nm(�W�;̅','',0,'?'),('b�\'O(�������j|','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/random.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/random.js',0,'d}�����}RP$�','d}�����}RP$�','/�\0���h(�����\'�}���16�>U�Ռ ��i','',0,'?'),('l���>M�Z�iK�','wp-content/themes/mint/assets/vendor/jquery/src/ajax/parseXML.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/ajax/parseXML.js',0,'}n�G���T�K��','}n�G���T�K��','O��CSR� :��p�� y���xZ�����8�','',0,'?'),('n~�ty�#�#�la-','wp-content/plugins/gravityforms/images/doctypes/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/doctypes/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('p��t�\n��������','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/upgrade/network.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/upgrade/network.php',0,'�֤��jאܕ3�ٚV','�֤��jאܕ3�ٚV','����T��\r>V�$`�Gj�{����_m�8��','',0,'?'),('q�o}�{�X��ҏo|','wp-content/plugins/wp-optimize/templates/cache/gzip-compression.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/cache/gzip-compression.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݞ ��@0�_���b','\r�.}E5u��%�N(�\rn�\"\n��\0�J��','',0,'?'),('wޓ.�`�ۅ~A!','wp-content/plugins/gravityforms/includes/theme-layers/class-gf-theme-layers-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/class-gf-theme-layers-provider.php',0,'���6r���m��GjBZ','���6r���m��GjBZ','|pv��@pN��m���Ϯ�$�1Y��,�\\Iy�o','',0,'?'),('��\0&���F�*�I�','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/leaves.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/leaves.js',0,'����@�#��`��','����@�#��`��','��#0-eV\'���i՜�Cw��47-~- ��p','',0,'?'),('�/l3l�,\0�����E','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/vendor/jslitmus.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/vendor/jslitmus.js',0,'F���}]P ��IV2��','F���}]P ��IV2��','W���4��b�}�F�cM����+B4�y�5D�','',0,'?'),('�P!#e Erw�:\Z��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/eq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/eq.js',0,'�E�g���-[F�����','�E�g���-[F�����','�e��7�X�E\"i��G�Aj23��+x�X\'�+','',0,'?'),('��,]�H�4��1','wp-content/themes/twentytwentytwo/inc/patterns/footer-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/footer-blog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IҊx�=�\\���k�p','�h�\'� �v�fGE�\"*���,���� |�','',0,'?'),('�T�h���zP��r�','wp-admin/widgets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z���*N��p=���2�','|��\n�2��U�)j+���oL� �)���o�','',0,'?'),('�ϋД\'Ot�ʗM;','wp-includes/js/dist/deprecated.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/deprecated.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T@UJ1 +4iK��.�','��Y?�g���q���b6�c\"~lCQ','',0,'?'),('�u�9���5�EzV9','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/GuzzleException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/GuzzleException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��RD��H\\0�rs��','�\0�f]�WE�-]v��#S���WKV�','',0,'?'),('���N�-@�PPe��1','wp-content/themes/pinnclonesmalltest/vendor/psr/container/src/ContainerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/container/src/ContainerInterface.php',0,'�Y9PCB\n��l�P[f','�Y9PCB\n��l�P[f','�?q��G�-�<\\��6�4���1�\'�3��x��','',0,'?'),('���D�ƅ`e UK1','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/indexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/indexOf.js',0,'}�lb�7�}f��N�U','}�lb�7�}f��N�U','�A,5����Q%S���M�w�\"Ú\0��','',0,'?'),('�B\nF�J�����hN�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-theme-plugins-files.cc98a300.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-theme-plugins-files.cc98a300.svg',0,'6잯��r���5�a��','6잯��r���5�a��','��tk���ø�}t�J�oi�p-S�l�d��U��','',0,'?'),('����`f��]�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('��/�+�B椏','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randString.js',0,'2��7���F_c�2','2��7���F_c�2','Q�U(pʡ0de\r����0K!G���T�=é�|','',0,'?'),('�M�\Z\0l�B�F��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/lib/crypto.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/lib/crypto.js',0,'�@@�з��[��AS�','�@@�з��[��AS�','-6��/b�{��g!�,5N�=7( ��hJ���','',0,'?'),('���u3?�?�@)�\"�','wp-content/plugins/advanced-custom-fields-pro/lang/acf-en_CA.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-en_CA.l10n.php',0,'eC�j��0ݶx�a��','eC�j��0ݶx�a��','��ik�f6[Ϊ\0f�)�=��m��R�xB��W�','',0,'?'),('����y�џ�X,\"�','wp-content/themes/mint/node_modules/is-buffer/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/is-buffer/index.js',0,'�A,��6�˗�/��3','�A,��6�˗�/��3','�Mx�\'(�\0�6�2_~�n�dͿq�Qc','',0,'?'),('�ѥ�@g@e�;��','wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('�W�]��_��x�L�Z8','wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/README.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ꚛ�p)��Q\rv0�l|<','El�2Ycv�R�����$�^��\\�\'\Z]\0','',0,'?'),('�qj�\rd�����P�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/GlobalFunctionSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/GlobalFunctionSniff.php',0,'C���χ*����V�z�','C���χ*����V�z�','��X�#[\\\'VX8?�59�� ��V7���Vv','',0,'?'),('���vW;��ڷ`��','wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5?`��6\'^�\"H_�',')�n\n<�u�!*�Ɩ�œ7�4�5D���I','',0,'?'),('�X|_��wc�:�j��','wp-includes/blocks/search/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/search/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}�@�R�[����q','�H�p���������V��9�\0x�','',0,'?'),('ɹ�BX��v���qt','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/find.js',0,'d7��4e�ɩ!°@��','d7��4e�ɩ!°@��','ъl�PF-+�SԽO�>��wNJ�ʬ��F��[�K','',0,'?'),('�v�y�nC��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/readable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/readable.js',0,'k\"�~�sT���*aqT\\','k\"�~�sT���*aqT\\','oV<�e!;۸є��¸��&��Ӈz���_u\r','',0,'?'),('�㾏ǹ���%\ZJ�','wp-content/plugins/wordpress-seo/css/dist/introductions-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/introductions-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`L��&�EG���','M�P�r��kB�^�ʧ��w̪:����?M�h�','',0,'?'),('���C�C*\nr��a�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/lte.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/lte.js',0,'\\���K�p��_��|','\\���K�p��_��|','S+���|8�.���HRq͝~ԟ|�y��_�','',0,'?'),('�F��lc���]����','wp-content/themes/mint/assets/vendor/jquery/src/intro.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/intro.js',0,'P�Uפ��$W���\Z','P�Uפ��$W���\Z','�ec� �!+�Z��#A�j]�i�N\"\Z�','',0,'?'),('�/���O�S�D��r�','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-flow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-flow.js',0,'\"ح$t�rwϼ}�','\"ح$t�rwϼ}�','�|0���ā��g �۸HRU�O�e/�r�c:[�\"','',0,'?'),('�ex��Q��,','wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-category.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-category.php',0,'Z,�}������r�S','Z,�}������r�S','::%�bC�8�\\܊A�ȯ=�x�X$��)��Ϭ:�','',0,'?'),('�{�1�*hM3�����','wp-content/plugins/wordpress-seo/js/dist/externals/uiLibrary.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/uiLibrary.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$c\"N��n��Z{�zm','�@{�@f(Ooy��3\re��á�@G��蛡�','',0,'?'),('�}�$�j݁)sڇXέ','wp-content/themes/mint/node_modules/has-color/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/has-color/index.js',0,'��xtG#�\"m�9Vu�1','��xtG#�\"m�9Vu�1','�\0�����\'1�8U���\nS�N(r�uEo8ŲU��','',0,'?'),('��E?tB9b��vF`1','wp-content/plugins/wordfence/modules/login-security/img/loading_background.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/img/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�2��p\nK�X��','�Ύ%X�ŖF�����1s�;��L�zr璻','',0,'?'),('�kJ�o�9N�T8|','wp-content/plugins/wordfence/images/audit-log-preview.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/audit-log-preview.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��� � 쏪�]��B��','K:)��U��u�fw$�z��Ԏ78c3K���a�','',0,'?'),('��T\'���\r&�uR','wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._wp-admin.js.map','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._wp-admin.js.map',0,'K��b�G$o������,','K��b�G$o������,','z��p5�� �㐂�H�2��\n��Y�zo(n�K','',0,'?'),('닭�N��{=��;_�','wp-content/plugins/wordpress-seo/admin/roles/class-abstract-role-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/roles/class-abstract-role-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����-\'\n�P�iw�?','���$-]�(nhzdDž3��pt���Xl�s�','',0,'?'),('�:CC�wy�\nq�ũ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseClone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseClone.js',0,'���M�������\'\Z�','���M�������\'\Z�','�x����$�����\r:��3�g)S�t��eS','',0,'?'),('�Ͻ�F�ٷI=[��s','wp-content/plugins/wordpress-seo/admin/class-admin-recommended-replace-vars.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-admin-recommended-replace-vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hx���lM��ι���,',']�Էāj��\"��4L)oE=�d� ���h�ٱ�','',0,'?'),('Im-a�I�k\"��C��','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/elem-time.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/elem-time.js',0,'0i��[�7�oL�ل','0i��[�7�oL�ل','rq�~ ���lԳ!op`�>����\\�\r�@','',0,'?'),('쯑�/�D�oW��)','wp-content/plugins/advanced-custom-fields-pro/lang/acf-es_VE.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-es_VE.l10n.php',0,'�7�)Ҳ��b��Fk$�a','�7�)Ҳ��b��Fk$�a','�A��/�����1�:�V��d�Ra���V','',0,'?'),('�t��f�1�#�OkU','wp-content/themes/mint/node_modules/cli/progress.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/progress.js',0,'��Q����ݺWP(��c','��Q����ݺWP(��c','5�O�W���O����8\\{�B\Z�C�I���','',0,'?'),('��U���{=$e','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/array2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/array2.js',0,'�9F�7���Y�yb\r�','�9F�7���Y�yb\r�','@~gg���c��7�q��Y�!��g\n���\r�VuE','',0,'?'),('�_D���<����','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Pipes/UnixPipes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Pipes/UnixPipes.php',0,'$����mi˭�\Z�\\�','$����mi˭�\Z�\\�','��ݏ�mCz���ĉc��#�T�&EUy�','',0,'?'),('��\\�|L�h�2�w�','wp-content/plugins/wordpress-seo/js/dist/externals/redux.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/redux.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4IT�}v�Zt�.��Z�','c��KR���:�3��5��^l7����','',0,'?'),('<\0$�М?��-8U\0','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�V�%�A!����XP','� r�R9�Xͧ�o���H���nM�+�9$=�','',0,'?'),('T�c�-,\'���J','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\L�bV�Sd2b{�v�W',' ���bg�w<����y^÷y,<��{����','',0,'?'),('t]�ٟu��u��j�','wp-admin/images/menu-vs.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/menu-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q���L�,_�;1/�E�','G�iH|��)��E;��\"_�;ԣ4Իw�ly�','',0,'?'),('��~�w`�5;F㮮','wp-includes/js/jquery/ui/effect-size.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-size.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��b��2\\Z$���r�','�^-�o���\rf� ��2߽���Ά��f��','',0,'?'),('�=��q�\rljA+','wp-admin/user/user-edit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/user/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<D\0�\n#���E����','X�x�no�{\0���\\��䞿��e[��jZN','',0,'?'),('\'��Zf�V(�~|�4D','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/objects.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/objects.js',0,'>�x�>\Z\Zb0�4ׄ','>�x�>\Z\Zb0�4ׄ','�,��^M���1u���|�����m�B>e��R','',0,'?'),('*&5,qV0v�c','wp-includes/blocks/post-template/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-template/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��LX�#R��\Z��<','=�N�B��]���u9��a���+�855#��p','',0,'?'),('-��e5g����qc','wp-content/plugins/envira-gallery/assets/images/icons/youtube.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/youtube.svg',0,'���dT�W��pT ','���dT�W��pT ','P��G, }�?%r�Ƨ�dH�� �o','',0,'?'),('0\n�C��(ab�g�','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/all_bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/all_bool.js',0,' ���3�E�&i�c�� �',' ���3�E�&i�c�� �','Rr��Ab�R��_����c`COnG(���OG��b','',0,'?'),('3��r9<(�����','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream.js',0,'v���M�a��ugD�','v���M�a��ugD�','Jo�M:�G���.6U߾&ʚ*����$�','',0,'?'),(':��eǙ����P�','wp-content/themes/mint/node_modules/grunt-legacy-util/test/fixtures/spawn-multibyte.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-util/test/fixtures/spawn-multibyte.js',0,'����Fx��\"�2]1�','����Fx��\"�2]1�','`�n�\r�Nݰ�c��rl�F[�<]�N�?��','',0,'?'),(';f��\Z�=�sk�O','wp-content/plugins/wordpress-seo/js/dist/languages/fa.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/fa.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ś���+UDK��\r�k��','CH��0�lo�UD���2��SÜ�O{ml^','',0,'?'),('HC���!���\"(�','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�wyB���o�|��','��o��Jj$��sc��R��Q��c��伍F��','',0,'?'),('J�\rӷG>�����','wp-includes/class-walker-page-dropdown.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-walker-page-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����z`Tu��ϡ�','�s��>w���`�kP���䐆:x\n��qpe(','',0,'?'),('J��*�)N��{M�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isSet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isSet.js',0,'�F�3�\"�PWǎ���D','�F�3�\"�PWǎ���D','Zyub�\\�+��.,�\\ơ��c���g��q�','',0,'?'),('V���F|j/� c','wp-content/plugins/wordpress-seo/lib/migrations/migration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/lib/migrations/migration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.0\'�vyȯ\nS-�?�','�.�ݴ�d<jLy�pw��ùRϳ2�(� X�\0�','',0,'?'),(']h2Q�eW�\Z���S��','wp-content/themes/twentytwentyfive/patterns/page-coming-soon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/page-coming-soon.php',0,'���d��\rJ���','���d��\rJ���','�0�d�8�4�= v��вGB�N\Z��J>%3\"���','',0,'?'),('_*B�I���)r!��','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-backgroundposition-shorthand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-backgroundposition-shorthand.js',0,';�0�#��\nR¬lTl��',';�0�#��\nR¬lTl��','����.�as�� ��=�y�dYO����_','',0,'?'),('`:�@M�ß}�J','wp-content/plugins/gravityforms/includes/orders/items/class-gf-form-product-order-item.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/orders/items/class-gf-form-product-order-item.php',0,'�7Qec�V���҆��\'','�7Qec�V���҆��\'','A����EAvؿŔ�v�Ԡ2�j;�X1ӥә','',0,'?'),('c�����!bX������','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/get.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/get.js',0,'��K]��YF�|~�5,','��K]��YF�|~�5,','#; \'|�&��c�\rԞDA���s�\0/ʓ#','',0,'?'),('e�\n\"��_�y���y','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/themes/default.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/themes/default.js',0,'�6o3Е����*����','�6o3Е����*����','���>��3��3&��,�\"\rw\n�5e�&���','',0,'?'),('h�~�B|���]��i','wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/lodash/dist/lodash.compat.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/lodash/dist/lodash.compat.min.js',0,'�>}��WUn\'n�Rn��\'','�>}��WUn\'n�Rn��\'','Z��8�m#c�ZZQ��J��P�Hu�[Y��$','',0,'?'),('jJ��s�N��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php',0,'\'�=��VvB!b�\0��','\'�=��VvB!b�\0��','��|��_#$��#/$t��\r�뱝Ȏ`2@g~T�','',0,'?'),('p����_vˑ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/_convertBrowser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/_convertBrowser.js',0,'t|�U����́\r�heo','t|�U����́\r�heo','AR����[!@��%��d\'�JꏍQN&!�b�B�','',0,'?'),('q�V�DZ�ŭch�~','wp-content/themes/mint/node_modules/grunt-modernizr/lib/build-files/modernizr.load.1.5.4.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/build-files/modernizr.load.1.5.4.js',0,'Y}q)��I�Y�[Qz$!i','Y}q)��I�Y�[Qz$!i','}ņ�7#�{%�\\q��aW�����?��Ey�4��','',0,'?'),('r�ad3\Z���\"\nj{','wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.min.js',0,'�9`ﰗf��#���|��','�9`ﰗf��#���|��','ن����J��!!A��WL����R@�y�?�','',0,'?'),('u��s��y6\'v,��=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/3���\'���oQY��','�+��F��R�{�K[�&�4iZ�wu.�f-&\\�','',0,'?'),('v�4�S�J����','wp-content/themes/mint/node_modules/grunt-contrib-less/tasks/less.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-less/tasks/less.js',0,'�[x�H��1hx�\'�','�[x�H��1hx�\'�','��#�7�0/��`�\"-kRS�j<l�n:Mo�{','',0,'?'),('}�\0*o�Z55崹��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/partial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/partial.js',0,'����N��W��y�E','����N��W��y�E','��R���q�?�H����\'_������J','',0,'?'),('�\"�qUy���9�%Q�','wp-includes/class-wp-matchesmapregex.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-matchesmapregex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���%�`^`|j�\r','C����;�Zz�Z����F�T��{^�x}�Z','',0,'?'),('��ˇ����y���','wp-content/themes/mint/assets/vendor/modernizr/test/js/basic.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/js/basic.html',0,'�AQ�s%2����*�^','�AQ�s%2����*�^','�~ys\no�����S�3dǃ)�W���2','',0,'?'),('��&r&��=91�1','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_MX.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_MX.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�؋&TE�f�x�g�A�`','���㟧[k��+ݲ�)R\r���<���k�,','',0,'?'),('�S*E�m�X)�S��','wp-content/themes/mint/assets/vendor/jquery/src/effects/animatedSelector.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/effects/animatedSelector.js',0,')2u���-\Zd���S�',')2u���-\Zd���S�','�a�S_�w�}7;RƁ�ђ�&��v��H�E','',0,'?'),('�����Huz��)L?','wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/fs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/fs.js',0,';���}}�ښ7�z@i',';���}}�ښ7�z@i','i>�?�z��(&���&��lF=$���r���y�<','',0,'?'),('����߾����w�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isEqual.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isEqual.js',0,'��_��U]PM��PS','��_��U]PM��PS','a�V.����Z�|��Њ����͂r}','',0,'?'),('��]�4�Yfm}:P�','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/while.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/while.js',0,'�rBk��w���x�oU','�rBk��w���x�oU','���ܑ,�@�$�?\r6�����?�� TұBJ�','',0,'?'),('����Oi?\0<��\nQ','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/ExecTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/ExecTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0��Gy�����O���','Q#�f�y4@k\\5��,G|tJpPl�) *<V�','',0,'?'),('�w��2�1�^a��','wp-content/plugins/gravityforms/includes/wizard/steps/class-gf-installation-wizard-step-license-key.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/wizard/steps/class-gf-installation-wizard-step-license-key.php',0,'�r�b17��ƍ-�','�r�b17��ƍ-�','V�of���r����}�B�g7����\"٥��','',0,'?'),('��U�g���,A�l','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/IntervalTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/IntervalTest.php',0,'�f�P��\\�L��n�','�f�P��\\�L��n�','�h6�����N[H��eQHLϐyb\'�6�*�','',0,'?'),('�U\r��Z�R{*LZp','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mean.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mean.js',0,'�o����\\`\\��Ɲ8!','�o����\\`\\��Ɲ8!','_��F7|���~ײ�o���7ր���}G+�','',0,'?'),('�m����`:nۡ-�','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/oauth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/oauth.js',0,'��Kv �=��uZtS','��Kv �=��uZtS','~O�!��A��`Y�M�:��3��>�|�|qv','',0,'?'),('�ȫ( ?�b>��mr','wp-content/plugins/wordpress-seo/src/deprecated/src/helpers/wordproof-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/src/helpers/wordproof-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?k��\rFZ��ke�','ص�n ��^����K$3��HJ]�i�|�S','',0,'?'),('�A�נ5�q��ɱ�i','wp-content/themes/mint/assets/vendor/bootstrap/js/popover.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/js/popover.js',0,'F����r��y�~���','F����r��y�~���','�dm�U�yd䱸�5䒉�Ӯ���w/73c\"','',0,'?'),('���/��&3+�di','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isnt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isnt.js',0,'hJ��f�5ȵ�.�g1','hJ��f�5ȵ�.�g1','ջ�Ȕ��]*^ �@���`���v���{�','',0,'?'),('�W-� <������','wp-content/plugins/wordpress-seo/js/dist/languages/default.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/default.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CZj�\Z�P�R�a���o','w\nqެO�Խ��1�Q:�����p#j\ZD�!','',0,'?'),('ʍ��!ka��w�?','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/main.651f37be587e.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/main.651f37be587e.js',0,'t��|[&=�ݺ�u)�','t��|[&=�ݺ�u)�','e6w1�O�m~��ms�Z�̊���r\Ze�ˉT[H','',0,'?'),('�ơ��?����Ւ�','wp-content/themes/mint/node_modules/underscore.string/test/strings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/strings.js',0,'a�>|wZ�E��*\0���','a�>|wZ�E��*\0���','�b;�\\\0lcg}��(Aw�b�{[W�]� -6��t','',0,'?'),('� ����K i�D��t','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Zz�#H��','n]��x�������\Z_Ѫk�B�-a�&�̃','',0,'?'),('��?���7�ؘ�$H�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/debounce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/debounce.js',0,'�B����Ҹ��䒦�','�B����Ҹ��䒦�','Xq��n?��ɏK�)�����-hL(C84S9!4','',0,'?'),('���Ɔ���9���v','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/is.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/is.js',0,'A�A��<�1�X�F�','A�A��<�1�X�F�','de�#� ��ӮOI�/��b�[a��-�OFM','',0,'?'),('��:������6','wp-includes/blocks/comment-edit-link/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-edit-link/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':��S6����0 �iEo','��Oo�*/ѷ�8�?�/hh���\'�*��','',0,'?'),('ҩ\Z����q�����(','wp-content/plugins/wordpress-seo/src/config/badge-group-names.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/badge-group-names.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����j����>捶c�','`s2��[���+�,bK�lwȀ�1��\n�bDž}','',0,'?'),('��ɓ��r�V��%�5','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',0,'��,�oF�D:N��4','��,�oF�D:N��4','�jK�b��ʍy,`���y�5o��fڮ_�e','',0,'?'),('�V�I��0�p�&���','wp-content/plugins/wordpress-seo/admin/menu/class-submenu-capability-normalize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/menu/class-submenu-capability-normalize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���u� �|�$��=N','�L��O-~;��#�{uTF�Nue�3\"xw�K','',0,'?'),('�,2d��� � ���n','wp-content/plugins/gravityforms/includes/settings/fields/class-field-map.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-field-map.php',0,'��a̞�<��֛���','��a̞�<��֛���','��84��\r��#�5p��Lۭs89��}EW','',0,'?'),('�A�\ZC��&U�*�}','wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ʝa����7�4��6�','L~8݆v_�R.QTU�ѳb>�����I�\"�nB','',0,'?'),('����7�&��Ȁ','wp-includes/js/tinymce/skins/lightgray/content.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\PI�ɥ��<\\��',')�Y@�u&�Kg��\0?���\\F\'�X0�Lj�','',0,'?'),('ޕA��\ry�~)ш','wp-content/plugins/gravityforms/js/datepicker-legacy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/datepicker-legacy.js',0,'���~zŤ��}C1}r�','���~zŤ��}C1}r�','Q鮖�&,((�CjUhU�hh���\Z�#\0�','',0,'?'),('��*(��*�+�Wj�cp','wp-content/plugins/wordfence/crypto/vendor/autoload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3Կ:�V� ��U\'','���|<���P*tg�3�dYs��/������','',0,'?'),('�n��`�Ģ�XB?','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/tail.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/tail.js',0,'դT$�d,x�w�j8','դT$�d,x�w�j8','��g;�g%��b�N^�0��|oz$W�r�Ԕ�IYy','',0,'?'),('浑1�Q=�E�#S�)?','wp-includes/js/dist/script-modules/block-library/navigation/view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/block-library/navigation/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T�Y���=��s�','�t��*�(̡�����>U����RM�/e','',0,'?'),('�_��f�}c�Me','wp-content/themes/mint/node_modules/number-is-nan/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/number-is-nan/index.js',0,'�}�3ᾼ���OK','�}�3ᾼ���OK','��lE/\'���=�\\m�����oG��.G�','',0,'?'),('�߿�i��)Z� p�P�','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/dhe.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/dhe.js',0,'C=[�R�ɀ�2l]','C=[�R�ɀ�2l]','��`j_�NA������{����0Ԛ}ӗѻw�$�','',0,'?'),('�OKa�\n�\'����','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/ConfirmIdentityNoticeTemplate.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/ConfirmIdentityNoticeTemplate.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������~1}�~b�','+�y�gx�ᛨKk$c��߯�ӭ.��=͗!�','',0,'?'),('�˘�-$�����\ZJ;','wp-content/themes/mint/node_modules/async/lib/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/async/lib/async.js',0,'�ж�I!����sV��U','�ж�I!����sV��U','�Z�E�N�:����u&����\\���ɯ+','',0,'?'),('��0r�H\"�YK]T�','wp-admin/css/site-icon-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/site-icon-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��pL�%7�����','��J����.�H�z����[�bb<��3y���U','',0,'?'),('�J���g��)��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/LoggingTranslator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/LoggingTranslator.php',0,'Y7��V�~@��E��','Y7��V�~@��E��','_:�P�LH֨�j���D�:[i��d;-�','',0,'?'),('����`��uz\0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toJSON.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toJSON.js',0,';��r����1+�v�',';��r����1+�v�','�_.�I&��!�5��?��HIL{�)��Zїk','',0,'?'),('\0[��2�q|���','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seo-framework.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seo-framework.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2A�ӥ�>8@ո�','v���_��4��B�εmE�:g�]�H2:\Z�\n ','',0,'?'),('\0��6�ǘ�f\0X�2','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSlice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSlice.js',0,'pO���ޱoj<<ޅ�','pO���ޱoj<<ޅ�','��D##}K3���0�����ɟY�c�\"5�5\r','',0,'?'),('!�[�ذ��\n�g\'','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectionException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Rd�k��Q�H�b�j','�:���pE\0�[T;/�\Z��A�<�=KP%_�SG','',0,'?'),('�V��\r�E�8i:�^','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/short.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/short.js',0,'�d�,e}nq�âȼ\\�','�d�,e}nq�âȼ\\�','��kx���F%{��� �����G`�L�!p','',0,'?'),('� N���\rL`�4��','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/oval-question.93e3f70e.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/oval-question.93e3f70e.svg',0,'��Eyv������h','��Eyv������h','����2/~[�� �a���;\Z=�ᖈ�7�','',0,'?'),('Z5����(�<[�','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/interface.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/interface.js',0,'�w�a)-h��-�<87','�w�a)-h��-�<87','�A<U�%�*�2�N��0\\\rJ�E��\0�}Of�','',0,'?'),('?Z V6���o�q)�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/range.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/range.js',0,'�?��7�ԡf��� Q!','�?��7�ԡf��� Q!','�B&2����m@���&�ű�6\Z&�ʛ8s�L��','',0,'?'),('�im���\Zh<B�X','wp-content/plugins/wordpress-seo/packages/js/images/yoast_loading_spinner.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/yoast_loading_spinner.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F=B��Is$�\'8�','B�]�q�\\��;$�vm���7�V˄{J19��B','',0,'?'),('3��m5�o9O�Q6','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/Factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/Factory.php',0,'���xM����z�w�Q','���xM����z�w�Q','g��\'�u�n�9S[4��PiԦ�}�GKș҃1 ','',0,'?'),('\'P��p}2���~,w��','wp-content/themes/mint/node_modules/bower/lib/node_modules/extsprintf/lib/extsprintf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/extsprintf/lib/extsprintf.js',0,'��o\'h�g�Ҳ�|di�','��o\'h�g�Ҳ�|di�','29Fႌ��r�{�j�kq��n��y��&�_','',0,'?'),('(�9l1��5nq���','wp-includes/blocks/button/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/button/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\'�W�k��bS','�E���%r��|��O�Y?M�b́�#g','',0,'?'),('(���љ����\0H<_','wp-admin/includes/nav-menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�dz�}lE�,�t��G','I|��[W�*�����˘�\Z��{Ʃ̥�','',0,'?'),('*���jK-�P��','wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/example/dns.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/example/dns.js',0,'�9�%YJV�Am_� �','�9�%YJV�Am_� �','�a���L�����y�v�I�\n �_O9!','',0,'?'),('3x2�§��h�_','wp-includes/blocks/shortcode/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/shortcode/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>`��Y��<��','�ŵ3�J��}g9�x 1ʅF�����ސf�','',0,'?'),('4�%;a˼���?�S','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/map.js',0,'�qҫm&`�u\0�yi','�qҫm&`�u\0�yi','_��_��A���U� a^ԅ����8L���.���','',0,'?'),('5u- |wF�r4�%eX�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\n�������!h','������A7�KmCk5�+�7��ge쟣�N�E�','',0,'?'),('<.��4�v��c�\"`�t','wp-includes/class-wp-simplepie-sanitize-kses.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-simplepie-sanitize-kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jҹd�B�(gl��W�','g����j!؝��L\'�qp�G��É�o۷�Ęc:','',0,'?'),('A�����Q�DR8��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/guid.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/guid.js',0,'��I~��g����Z\"','��I~��g����Z\"','��<����]��+&��X��i�}a���M��|','',0,'?'),('Ek�(u�!���QU^�','wp-content/plugins/wordpress-seo/src/conditionals/admin/licenses-page-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/admin/licenses-page-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�r+�U��в�̋��','���a�\0�K����w6\'n�I�\".4����@�','',0,'?'),('PZ�xx���mJؙ','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/keyphrase-data-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/keyphrase-data-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�!��ђ���ͨ<�P/','�7���uC� �s��>v����Z���R2\n?','',0,'?'),('Vdު5�;��k��5','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',0,'�U-0�7��\n}m�\\^','�U-0�7��\n}m�\\^','d�Ta���߰`+�>/!��!��^bg$�\n','',0,'?'),('Y��˱`���*H$8','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library-template-library-grid.c7c7c659a26cfff2856d.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library-template-library-grid.c7c7c659a26cfff2856d.min.js',0,'�0�{�u�?������','�0�{�u�?������','\ZH�P3�|�5o7��������q�w�y��','',0,'?'),('d��C�%�t���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/MAX_SAFE_INTEGER.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/MAX_SAFE_INTEGER.js',0,'Bԣ�i~@]$�Oޮ�','Bԣ�i~@]$�Oޮ�','f���E�zI:t�bFD\"��8)��A\nۖ]�','',0,'?'),('i�PÙ��ld\0��','wp-includes/css/jquery-ui-dialog.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/jquery-ui-dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c����.NY��5��8','�à���,IXֺ��o�|�.�2d9r�v �x','',0,'?'),('k�4c����5<\"','wp-includes/js/dist/autop.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/autop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U�>��C��B����','e@��͂����8�=L�d\r��W�u�2�','',0,'?'),('wI��)6���Q\0��','wp-content/themes/mint/node_modules/hoek/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hoek/lib/index.js',0,'���^�����5�|�','���^�����5�|�','yge��3�p������9�Jtn:\n�Ø�','',0,'?'),('x:lt�VÖ0�s��*','wp-content/plugins/advanced-custom-fields-pro/lang/acf-es_EC.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-es_EC.l10n.php',0,'@�Q�%���W}�c�','@�Q�%���W}�c�','V|U�>Wͽ�e�U��~?G��p�\\�U','',0,'?'),('~,�%.k6����k�}','wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/BadMethodCallException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/BadMethodCallException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\2�Azx%7�8','�tp�D�b4�_e�9�M�n\\�/�fa�EI�','',0,'?'),('�mƱ]��4�J\0L','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/core.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�a�O��[�����`)','�E�M7?Z=�B��ţۘ��`�_�tn�;>X','',0,'?'),('���dp�{\ZX�]','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/pascalCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/pascalCase.js',0,'����w|��g/�\'','����w|��g/�\'','UքߧBc�[%\\��E��5Wf��D�i�t����','',0,'?'),('�E���\Z8��h-�','wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\'̥\'�_� �v���','�=djҍ?de� ��l����\r�=CK�Z�!','',0,'?'),('���\r5��&��dC��}','wp-content/plugins/wordpress-seo/src/promotions/domain/time-interval.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/promotions/domain/time-interval.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G˲\\(� ӺFz�g','̣Z���x�;\0���\r�7�F�2nNԓ�Vj','',0,'?'),('�r�|�bg!V�A�œ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/foldr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/foldr.js',0,'M�*�I��d�72�','M�*�I��d�72�','U��>_�p����M��ޜe�QfnT���','',0,'?'),('�ӽ�͠$ا�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isNil.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isNil.js',0,'����Fj�\r����','����Fj�\r����','Գ3J�?�f��?)a=,{�lp�b�Ab�f�','',0,'?'),('�uAm����s�,)DEv','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bf�y����y�','�Q���YpC�=�3�;�u����N���K���oՄ','',0,'?'),('�c��\n�6O���v)','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/inheritPrototype.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/inheritPrototype.js',0,'��D������`,','��D������`,','Z�\'�ӺtA\\�7��I�f���,(�-Q ��1ܻ','',0,'?'),('�e�˷ʺb� �1�8','wp-content/themes/mint/lib/sidebar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/lib/sidebar.php',0,'���g�&�(������','���g�&�(������','�^x��Ff�U�\'�,�X��@e��$�N;N��En','',0,'?'),('���2�qf[��#��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/parseIso.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/parseIso.js',0,'��9Q3��\\!��,��W','��9Q3��\\!��,��W','�sl���oB�Tq�}�p���\\Y�rw�b���j#','',0,'?'),('�>�\r� �� ��ƣ','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',0,'���l���cc*~j=p*u','���l���cc*~j=p*u','<&J#�s\\.�,G��$�lt<��I�W��5�','',0,'?'),('��^���\'ڥ�g4�]','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Command/LintCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Command/LintCommand.php',0,'Y[�� P�:�n�*�M','Y[�� P�:�n�*�M','�)a+�+��S~���ƮC?�]b�C�� �)','',0,'?'),('��J-I���.^��R','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/whilst.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/whilst.js',0,'n�{�M�����|�L','n�{�M�����|�L','N���l{U�ƮK����WU�}R��E�^�','',0,'?'),('� �\nv_И����L','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/test/test.js',0,'�+ѷ������q��','�+ѷ������q��',' �P�2�u�/��V��D���y�OZ�e_','',0,'?'),('�h�ռ�i��K#�c�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/getIterator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/getIterator.js',0,'��]�K�[�F���ѡ','��]�K�[�F���ѡ','���� ��S^{��;k}>�d^�\'��m��!','',0,'?'),('��b���$V��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/indexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/indexOf.js',0,'�aM������um��','�aM������um��','�pe��_�lk�k��&�Og$5\ZUt^�SG�','',0,'?'),('�N�.�!A�2�5�L','wp-includes/block-supports/utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�pm/�9��ljT� ^','���Wr������W[\0K)\n\n����.�^u���','',0,'?'),('ҥ�j!3,!V��>','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/intersection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/intersection.js',0,'#a�.� �k�W���','#a�.� �k�W���','���/�rΆ�:y��c�R@��ː\"�;�L2;�\'','',0,'?'),('Ԡ�&�7H/z�;Q\n�&','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/lodash.js',0,'�0ϸ���q�]�r4,','�0ϸ���q�]�r4,','��0H�u(��ق.�f���7��ㆥ8��','',0,'?'),('�WL��*�� S���d/','wp-content/plugins/wp-optimize/templates/cache/page-cache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/cache/page-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�&ɥ�W�7���','�!�gc���ڎ�8m��U��y��\Z�9���k[�','',0,'?'),('ژ��z����wZ�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/helpers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/helpers.php',0,'@4ߣ����p]b','@4ߣ����p]b','��kā��S[O���2>��(��nr�U�','',0,'?'),('ہl��f���83���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/eachRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/eachRight.js',0,'b��6���$f�%j�q\n','b��6���$f�%j�q\n','!��&��D8v\\��o�#ᜳΫŪ��$6��l','',0,'?'),('�\Z���^�H}�p','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/elem-progress-meter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/elem-progress-meter.js',0,'��*�\\yj��)Ƨ�','��*�\\yj��)Ƨ�','8S�T-Jn��Kv�&���m��l��A��=','',0,'?'),('�knxK�u;4�a�2\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/bindKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/bindKey.js',0,'LjF]��a��F�X','LjF]��a��F�X','~y\\X�C�G>H��\\��hR�� ��B�A� \r','',0,'?'),('�\'S��Dr��!�=���','wp-includes/html-api/class-wp-html-span.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-span.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�q��XM�_)��u\"�/','�o�4]����H�Om�\ZxRyj/����','',0,'?'),('�x#��*W`P���D�','wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':���ok���{ػ','cA[�^�r�D�� �ԧ�x�r����9;�','',0,'?'),('��9���䷳\n���6�','wp-content/plugins/wordpress-seo/admin/pages/tools.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/pages/tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-����yM�I�7i��7�','>�>h�01*(4�u�\r�hP�|�����','',0,'?'),('���?g�ͧ�R$Y)','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/forstatement.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/forstatement.js',0,'�8W{e�$q�0Қ��z�','�8W{e�$q�0Қ��z�','\n���,$�����Ӿ��:*�����*���','',0,'?'),('�t��v��4~�]h�k','wp-content/themes/mint/node_modules/error-ex/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/error-ex/index.js',0,'93k��~x�,�QbD�4�','93k��~x�,�QbD�4�','���26o�\r�Z��OC�k5\Z�ŷ�����x���','',0,'?'),('�d.g\"ጃj{�n#�','wp-content/plugins/envira-gallery/src/Functions/ai-image-feature.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/ai-image-feature.php',0,'���ކ�9=�Tq/�9','���ކ�9=�Tq/�9','W̱J`���b�iЛ��A�\\��L̫��8��','',0,'?'),(')���s�o2�PC','wp-content/cache/wpo-cache/juiceelectrical.co.nz/led-lighting/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/led-lighting/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('!���@|�4��n���','wp-includes/class-http.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���WQK\r��t�ǝh<','a�j��EXO�tf}�;g$�خ��4�4��Ѵ���','',0,'?'),('\'ڞ\0;��?�+VҪ�','wp-admin/network/edit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����=��#L�H���','q�/*߲3��x�S���~�.\']w��k�,W','',0,'?'),(',��ϰ�Kv�\"c�.=','wp-content/themes/mint/assets/vendor/jquery/src/effects/support.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/effects/support.js',0,'T��A���jJ\"�%f�','T��A���jJ\"�%f�','j���H&��j3&v��`�v��)���!#Y�@}','',0,'?'),('8\n�������k�M','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/visionary-led-lighting-for-your-home/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/visionary-led-lighting-for-your-home/index.html',0,'�֡b�6[ ��l��X','�֡b�6[ ��l��X','�����[�z⡡a��|�^��/l4�0ԇr','',0,'?'),('99ޮnUhzLBkM','wp-content/themes/mint/lib/titles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/lib/titles.php',0,'d��D����1�ޥu��','d��D����1�ޥu��','�L��l�\n���6DjEU�g5,p$�JF��TdQ','',0,'?'),(';pR9��+�qpծ','wp-admin/includes/options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l����#G��24�ͮ�','�QU���XA�jpnY�rp��o�K!KܙX','',0,'?'),(';�E�w�?����','wp-content/plugins/gravityforms/images/template-library/Survey.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/Survey.svg',0,'[H�]y�ܪh�\\��{','[H�]y�ܪh�\\��{','�In\n�y,�{�\\�\\��v�b�','',0,'?'),('?��|꺯��~x����','wp-includes/blocks/query/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�kт\Zr���x�Ӆv','�ӱ�9\rl��ܾ{K�bu#b`5;��0��BIl,','',0,'?'),('B�{�)�s��\'','wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-export.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/tabs/tool/wpseo-export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vC�)���N{',' ?��,��g�t��yZ�+��nݬȷ�','',0,'?'),('C��Yx�6���fM�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/bind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/bind.js',0,'�n��Ad���a�','�n��Ad���a�','p�h��eth���� T����(L��5�� I�T&','',0,'?'),('T�h�e��f4xU��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue14.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue14.js',0,'��F���1k�]�O�','��F���1k�]�O�','������+�s��fx_�Zv��&�{��1@T','',0,'?'),('U8�;y���1�0��k�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFor.js',0,'��~�[��]fZ�0+','��~�[��]fZ�0+','�T����)g�h�[BY�Z̨��K��/��ljT','',0,'?'),('[�\n=��*���̡N','wp-content/plugins/wp-optimize/js/status-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/status-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:�4�p\nF���','ɖ�*�+�j�R�.Pb:��7��\r�u���eI@','',0,'?'),('md]r�,��l��|1�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/debounce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/debounce.js',0,'�\rj���r�B\'@V�','�\rj���r�B\'@V�','+}����(��xf\n|L��� M`���:S4�','',0,'?'),('m�[|�.�q�km��','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/root.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/root.js',0,'4M�7슎�\"ܚZ','4M�7슎�\"ܚZ','��/�H:rj)ÆAy�%��ϱH �2rY\rv�','',0,'?'),('u\0�e&��$��O�','wp-content/plugins/wordpress-seo/admin/import/plugins/class-abstract-plugin-importer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-abstract-plugin-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�����[\Z�����4l,','�����v��G��X\\Peu;�-��]X����Խ','',0,'?'),('x��m���\0�~���','wp-includes/customize/class-wp-customize-nav-menus-panel.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ϩGh���UH%�b','l<U�qT�hi�/��7��\0}�J���g�Wb���','',0,'?'),('yiú\n�_Tz\\���l','wp-content/plugins/wordpress-seo/src/helpers/asset-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/asset-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']l�$�_��NL�*�s�','G��5w�1��O���+Z.O˦\n�+��F�;�','',0,'?'),('�܈�y��7@����\"','wp-includes/blocks/audio/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/audio/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P⋎���m�{tmo�','}/14�o|�&X�1����ͦ�O�8 �7:�a','',0,'?'),('��*.���wm&��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/forOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/forOwn.js',0,'���&J�7�Ė�\'`','���&J�7�Ė�\'`','_��(��D�pcx��1�U�\\�l�Fk^�c07\0��{','',0,'?'),('�l�g<���=�l�','wp-content/plugins/akismet/class.akismet-widget.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/class.akismet-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�Jf;l��bO$�O�','���^1z�2-�Ir����.!�WE7${�o|�','',0,'?'),('����K5�\r�l\'IB��','wp-content/themes/pinnclonesmalltest/resources/views/partials/comments.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/comments.blade.php',0,'ٚ��d#�=ú��<�','ٚ��d#�=ú��<�','���;���!GB�#���C����(�\\�̥','',0,'?'),('�ݪӻ�2d������','wp-content/themes/mint/node_modules/bower/lib/node_modules/parse-json/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/parse-json/index.js',0,'�c�O�U�k�l��לp','�c�O�U�k�l��לp','�)��@k�r����O��Ρ��w��!!\Z��k��','',0,'?'),('�)�4c=�*F�;;��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ja.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ja.php',0,'�C1�Թ����KM�~?','�C1�Թ����KM�~?','���{�>΄\rƇq�����^��xǙ�\'','',0,'?'),('�_�Cũ���4��&mf','wp-content/plugins/wordfence/css/iptraf.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/iptraf.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�bf.��\n�V[�xPh','J��-@ ]�-�� �cq���WQ$8�','',0,'?'),('��/���&�D�:��','wp-content/plugins/wp-migrate-db-pro/class/Common/Error/ErrorLog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Error/ErrorLog.php',0,'d�~H�sj��A�~`\\��','d�~H�sj��A�~`\\��','���t��(�\'��= 3��%�*NJ���','',0,'?'),('��.���zz�Z�Q','wp-content/themes/mint/assets/vendor/bootstrap/js/transition.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/js/transition.js',0,'���KJc�s�J�i�','���KJc�s�J�i�','�4���E��-�\01׀k�����(�My�)�','',0,'?'),('���\n�#�T��?��','wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6���@E-��mdo','̉Y��j\'��i�)j|E�V����l�F\n�L�','',0,'?'),('�i\r@�}lҏ����','wp-content/plugins/gravityforms/includes/addon/js/gaddon_fieldmap.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/gaddon_fieldmap.min.js',0,'F7G���l�p(VX�','F7G���l�p(VX�','����Ē8�A���]3�^������C%','',0,'?'),('�Ú2��d�=','wp-includes/rest-api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8���tu.��_sQ','�_����dO�pY�q��k��+��aG�VSP*-�','',0,'?'),('�P\0\'�0l���v�#J<','wp-includes/js/jquery/ui/effect-fold.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-fold.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R�3*����0:Oh�','�6��?Ǩz\\,�ܨ������6���','',0,'?'),('�����Yaߡ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/timezoneOffset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/timezoneOffset.js',0,'ˬy���\rya�|bU�6','ˬy���\rya�|bU�6','��R.�rv\'r��:7�m�,�D]��tG�P�@±','',0,'?'),('�s4G�����cs','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-binary-search.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-binary-search.js',0,'\n����s��5�&\\U�','\n����s��5�&\\U�','W1�iv��|3�YXq��/M�#���Q���t�;','',0,'?'),('������,_d�-G�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/defaults.js',0,'�J��a����0���','�J��a����0���','���@J9+M��SJ�e��v���K��','',0,'?'),('Ȅ���xy����','wp-includes/js/tinymce/skins/wordpress/images/embedded.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����p�N��y~�n\"','�{��u�x�\'����J�º@i\"H;�]6h','',0,'?'),('�58L(�9 �|�n\'','wp-includes/blocks/comments/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��2��\'N����{','=�Ȟ��=|k\nm��<���sq^P��i�fm�','',0,'?'),('ʢ3�*�J3�S','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSample.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSample.js',0,'_���.;�%��C\rt','_���.;�%��C\rt','�BZ��ǥ��\r~<e�~5Q�c�u��C���','',0,'?'),('ϚWqu_�8�~\r���','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~���\\NLfYl��Y�','�Y��L��EMֺ��BE}�7A�r�8�^�.gZ','',0,'?'),('ϴ 3P`#8^��Z','wp-admin/css/colors/coffee/colors.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/coffee/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e{�������#� �e','�{\r����Y���Wy���\'8��x�q�z�!=','',0,'?'),('��6ʑ����b�t>sN','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/xorBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/xorBy.js',0,'�ɺ{Gq�p�Ev�2','�ɺ{Gq�p�Ev�2','����s��~-U��A?s�i_�Ԏ�}b��','',0,'?'),('�G�#�;\"L�%���','wp-includes/blocks/categories/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/categories/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~����O(��Z-��','-�8ޘ8��� �Z�5��kċ8�~�Xb��ڰ','',0,'?'),('��D#�]��\'�S�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Files/ClosingTagSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Files/ClosingTagSniff.php',0,'^��i<3�\\�\\��\Zy','^��i<3�\\�\\��\Zy','���TwQc�ZL��Ʉ������<�Љ��mޭ��','',0,'?'),('��q�eP�>d��','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/NonStopableProcess.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/NonStopableProcess.php',0,'��ڑ E\"`� \r@ٶբ','��ڑ E\"`� \r@ٶբ','��A^\">\n��73�B�����qd�A\r��!9��','',0,'?'),('�]��𬵅#�.\'��','wp-content/plugins/advanced-custom-fields-pro/includes/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('�?��7���,\0','wp-content/plugins/gravityforms/js/gf_field_filter.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/gf_field_filter.min.js',0,'�ɾ�P�sW~z~o8','�ɾ�P�sW~z~o8','��IM�Ͽc�A��K�\n�&��2-^�7�X�5H','',0,'?'),('���{�:ܡ�E4�t','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/index.js',0,'���y�7�^ӂ���S','���y�7�^ӂ���S','R Zt\\r�J^�}�F�,�W��˶���hVm�I','',0,'?'),('�t3�.��^\0���','wp-content/plugins/wordpress-seo/images/alert-error-icon.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/alert-error-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dyѵJ6�hh2=Yظx','�S6]+��u^L1n���<�7���/M�z��`�f','',0,'?'),('����ט^?F�#SX�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isUndefined.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isUndefined.js',0,'��V���~oMY\n �mTB','��V���~oMY\n �mTB','A|�\\���५��\\òa\n�[���g�','',0,'?'),('��%Mn�^���','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/strings_standalone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/strings_standalone.js',0,'O��F�����#���','O��F�����#���','H[;c�/�l�FQy�gn3,�l<g6\rY��T��','',0,'?'),('�2Տ7�b\\E`M~�Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/test/run.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/test/run.js',0,'����@D�ω��\Z\'�','����@D�ω��\Z\'�','��CnÔ���; �k�W�|^������T2J~�h�','',0,'?'),('�H�b�\\#��MءS�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/container/BoundMethod.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/container/BoundMethod.php',0,'��\nS��9�������','��\nS��9�������','?����$�2>E;iKh��~������\rK�','',0,'?'),('\0�,�#�heLG�(}','wp-includes/blocks/query-pagination-numbers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination-numbers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xk��.Im���d�y��R','d�4E�r�N�s�>7\Z�d�l`qi������','',0,'?'),('�ʍxⰱ&��hI\n','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/exif-orientation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/exif-orientation.js',0,'Z�N�Y�m�w�s�`','Z�N�Y�m�w�s�`','���=�G$��q#EYe��?�E[{��ۑ���','',0,'?'),('G��1��i�t�n� �','wp-content/plugins/wordpress-seo/src/conditionals/migrations-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/migrations-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TG_��S��<&�^�','�܁�:¾����9$�7##���B��<�V','',0,'?'),('1�I�f����\\�`','wp-content/mu-plugins/wp-migrate-db-pro-compatibility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/mu-plugins/wp-migrate-db-pro-compatibility.php',0,'�\\�T����9�טg','�\\�T����9�טg','��-f��p����5��\'�^/C ���-�X�Б�','',0,'?'),('m��/�d�005/>�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-cubicbezierrange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-cubicbezierrange.js',0,'`�Bۃ&�W�q`','`�Bۃ&�W�q`','g���Z2�]G<�\0t=��3���vw�E=��','',0,'?'),('\"��N߬jj)��\0��N','wp-admin/images/menu-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/menu-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jG����{�>�^;$��','�2]y��#h���2�9�> ^s�\rH� \n��g��','',0,'?'),('#ô��>�3FO! �','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php',0,'���0��v�-��T8','���0��v�-��T8','i;�Hʳ=wR�m��:���@���6C|Q ,�','',0,'?'),('$@�⯑��\'N(p��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/LineLengthSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/LineLengthSniff.php',0,'ʀj\'`,7}!f','ʀj\'`,7}!f','[J� �oDa��\r����s�ڢ�L�S���v','',0,'?'),('3���X�G%<!>','wp-includes/blocks/pullquote/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����J���}�Y','�FF8�QΑyޖ/��W�-ͣ�Í+����K[�','',0,'?'),('8?�%�|�]y>���','wp-content/plugins/wp-reviews-plugin-for-google/static/img/sample-qr.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/sample-qr.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*�!Vcֈ@N��`f�','�a�8����/��>�ۂK�Eƛ���G_�3','',0,'?'),('9*I���Cc����','wp-includes/blocks/post-excerpt/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-excerpt/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9���a�N�4=��\r^','�~�ŪA��W��w�@7�vz����4�_','',0,'?'),('B�@�˱��\Z��\0\\�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php',0,'���������0.k�I+','���������0.k�I+','7�r�n�NТ�/6�coOS���)��ۥ���+','',0,'?'),('G�� �@8a���:','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/trim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/trim.js',0,'Ex$�V��b`(�?�','Ex$�V��b`(�?�','|dV�&�?V�<qim5_t����ձu��p�|�','',0,'?'),('JqRCN/8���l��k','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function.js',0,'�k�8��C@l�BH[','�k�8��C@l�BH[','0cO�iz���M� ����\'|vA#��]��r�','',0,'?'),('NW%�XH�Y��G}�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^iVHí�PuW\08,','uS�dj�F����#ڄ��^un��>�,g�','',0,'?'),('X07�aҟc���i]','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/map.js',0,'F�⢐y���Ⱥ m��W','F�⢐y���Ⱥ m��W','�ӿ�O\\��-m!M�0_U$��J�w\r\rO��2��','',0,'?'),('^y&��̃a��g��%M','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php',0,'E�VS�+^�Ʈt�uؤK','E�VS�+^�Ʈt�uؤK','��\Z�Yp�����D�������|��R���ɹ','',0,'?'),('m�phy�?繢z�đ','wp-content/themes/mint/node_modules/bower/lib/node_modules/os-tmpdir/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/os-tmpdir/index.js',0,'�pR�dl����ᇶ=�','�pR�dl����ᇶ=�','�*?+����?:_�(�����]��l$�X�3��t�','',0,'?'),('q���_\"�1�F','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n=���N��CC�','_�\"WaX���7#p��w�T���[O$w=�_�=','',0,'?'),('s��&^\"W���D=�','wp-includes/blocks/query/view.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query/view.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xIS��_t���\\�%^','�\\Z���?;\n��4c�wMz�:�`�?0j�,N#�','',0,'?'),('tZQ��Yz0����跫','wp-admin/images/wordpress-logo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/wordpress-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ư�y��o�8��8S�`�','bx�L�PͰ��=^���a�m���1i��','',0,'?'),('�)���E��)�K�;','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0w\Z�\"�TVej�l','W#�}�Z�~4��NU�������W�2����3','',0,'?'),('��5����6,7����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isEmpty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isEmpty.js',0,'*��~����mn����i','*��~����mn����i','���ExL`��o&N����_� (_�K��}','',0,'?'),('�����*�����f�','wp-content/plugins/gravityforms/includes/fields/class-gf-field-submit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-submit.php',0,'�\Z ��A3�R���','�\Z ��A3�R���','�h/�Z�mD\npud���`WHxF��k#��k�','',0,'?'),('�D�Pv��|�F\\J��J','wp-content/plugins/gravityforms/includes/updates/class-gf-updates-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/updates/class-gf-updates-service-provider.php',0,'���\Z��>���0�','���\Z��>���0�','|\n[��r��Kꌻ�ο�S�h��ٚK�2ƛi','',0,'?'),('��G�!1$Y��;�t','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/equals.js',0,'S�q�ş4-�\\m�j','S�q�ş4-�\\m�j','B���O���95�c.\r\"��`�!�ֳ�[�>p','',0,'?'),('�PS�ި�N�!��\\','wp-content/plugins/wp-migrate-db-pro/class/Pro/Import.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Import.php',0,'%R&���o ���Q','%R&���o ���Q','��~\"��Dj<����ҏdl��l��*(:qP��','',0,'?'),('�NM�i���C��[�','wp-content/plugins/envira-gallery/assets/js/media-manage.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/media-manage.js',0,'�&+�h<�M�d�}{@','�&+�h<�M�d�}{@','9���̩@�g�\ZַMh*�!�6}?�,uØ�','',0,'?'),('�\'5��wlW#S��','wp-content/themes/mint/node_modules/bower/lib/node_modules/intersect/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/intersect/test/test.js',0,'4�T�Lģ�q+����','4�T�Lģ�q+����','q��x^t���T&]fK%p\r6v�g���R�','',0,'?'),('���Xr�J�{w�\Z�?','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/652.f4d6d3465dc2.js.LICENSE.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/652.f4d6d3465dc2.js.LICENSE.txt',0,'����X�Ta�^�l��','����X�Ta�^�l��','?L;GС�5+:��+��&2�b�Y��2�Nq�','',0,'?'),('����Iu��`b�f��','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php',0,'!��lz�G�gj���+','!��lz�G�gj���+','850>s�:���nV`��.c���F��','',0,'?'),('��AP��N)y7f�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lru-cache/lib/lru-cache.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lru-cache/lib/lru-cache.js',0,'�U��H�<bH���','�U��H�<bH���',':�ۆ:\0��|@�]�NP�8Hz ����mV_����G','',0,'?'),('���e�bW�A0�d','wp-admin/images/comment-grey-bubble.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/comment-grey-bubble.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�*\'����t���F','7 ��y���U{����ԟ��`��]m��','',0,'?'),('���q�\0����|���','wp-content/plugins/envira-gallery/assets/css/images/icons/audio-on.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/audio-on.svg',0,'Y�Ъ�v/B�c� ����','Y�Ъ�v/B�c� ����','Nb.��\r/L\r_}��3I7hnx��Я0���2m\\','',0,'?'),('��ᱥ|���d��=','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/takeWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/takeWhile.js',0,'p�E>�x\r\r\Z����p','p�E>�x\r\r\Z����p','��������0�@*�,(��Y�� ��F.','',0,'?'),('��[���4��?�s','wp-includes/css/dist/block-library/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F���T!\0٥\0��','���Cڼd������tg,ׂ� ����,q','',0,'?'),('�*�����9�MKV','wp-content/plugins/gravityforms/includes/wizard/class-gf-installation-wizard.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/wizard/class-gf-installation-wizard.php',0,'-���T2D��YH[j�~2','-���T2D��YH[j�~2','�#�JG�:̡�C�=P�#�%&�O �\"VtL��bU','',0,'?'),('�$�4��ש�AG<}','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/OverflowHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/OverflowHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IE(�iS0�w��D','8�ח��@sRv��H�l9Q����}n��ԫ�','',0,'?'),('����HW�=N�O�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/EnvironmentVariableResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/EnvironmentVariableResolver.php',0,'�.*�����T�\'�o>�','�.*�����T�\'�o>�','��;���W������tY�&��<�:��q\\M�6','',0,'?'),('�Qj�Y%j˱�5���','wp-content/plugins/gravityforms/includes/theme-layers/framework/factories/class-definition-engine-factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/factories/class-definition-engine-factory.php',0,'�u?���P���l��','�u?���P���l��','�L:�-��k��Ĕ{@Ea�pҜ���tO�M','',0,'?'),('�\"���E\\ZB�Jey&�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/lib/util/rc.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/lib/util/rc.js',0,' xݖ��z(���S\r,',' xݖ��z(���S\r,','#r���ʶ�g:B�����9���>�\0Zj�XV','',0,'?'),('�t�C�2�KYP!�o','wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/minimatch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/minimatch.js',0,'�ZPj[<�[~��/','�ZPj[<�[~��/','۴����s(��l��g�K��_��s��:2f','',0,'?'),('�\\-���R;b�]-','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/trunc.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/trunc.js',0,'$S�i�h��cG�ۙþ�','$S�i�h��cG�ۙþ�','��*٭y�%����z�,��\n�]gf�r','',0,'?'),('�Ia�\n؎����a','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����>\Z��\Z+�,','*y$�MQ[q�:h�\"�)�XTC\0�\\k','',0,'?'),('ɧ�H����F��','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/ErrorHandlerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/ErrorHandlerTest.php',0,'IQ:ٮ�{���6^Z��','IQ:ٮ�{���6^Z��','\r�4G��7 ~4s�R}Oī�s�%^�,+f��','',0,'?'),('˝��}�K�\'�W','wp-content/themes/mint/node_modules/promised-io/util/uri.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/util/uri.js',0,'3��f&��i\00���©','3��f&��i\00���©','���;����o����^�cC3Nh�z*�l;#N�','',0,'?'),('�A��\'���\r.��','wp-content/themes/mint/node_modules/jsonify/test/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jsonify/test/parse.js',0,'sط�J�zE�G�\'sI','sط�J�zE�G�\'sI','�� �����g���ԙw��-��\0�9\'\0b�9Gl','',0,'?'),('�) b��C�GO&�2','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/isLeapYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/isLeapYear.js',0,'hWy��`M�b����o','hWy��`M�b����o','�B��Ƿ��b�1,Hl�\"(����Q����N>','',0,'?'),('�@n���H �Ag�','wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɠ)c5�4A�D��\0','��[���!�u�.ꗰ�~~���C���&;','',0,'?'),('Ԏ����3#�\\Q:��K','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/OutOfMemoryException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/OutOfMemoryException.php',0,'C���`J�f (��s�','C���`J�f (��s�','�6Zx�r:�^�����탊�e�}V5Y���)','',0,'?'),('�Osw^L����ealj�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toIterator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toIterator.js',0,'E��k�L�)S��toc�','E��k�L�)S��toc�','�υ����S+�1�/�)i&�����kI��','',0,'?'),('�d����V�\0ժh�9','wp-content/themes/mint/node_modules/less/dist/less-1.5.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.5.1.js',0,'K��j{���]��1�5�(','K��j{���]��1�5�(','�φ�v��h�`H�����*��>\r��rw�','',0,'?'),('����zr\Zm��','wp-content/plugins/wordfence/css/jquery-ui.structure.min.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/jquery-ui.structure.min.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�/��h<��U��','�n���i��뗅�N�vX�7�Y]�����D','',0,'?'),('��O�X���\0�7��','wp-content/plugins/wordpress-seo/readme.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Σd�ᇽ[�I���',' �uU��e�毮[�H��@��şSH����','',0,'?'),('h�h�������w','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Schema.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Schema.php',0,'X>���0<g�\0��1\Z','X>���0<g�\0��1\Z','��(��wߨ8�Ei��\\�h{aW�u�3��','',0,'?'),('@N��Vm(�t�g#�','wp-content/plugins/gravityforms/includes/editor-button/class-gf-editor-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/editor-button/class-gf-editor-service-provider.php',0,'f6{���rڭUk�Ħ��','f6{���rڭUk�Ħ��','�*��;�;t��ky�~��u��f�Ah�AM�','',0,'?'),(' e�حV�M��y�','wp-includes/blocks/rss/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/rss/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V����[�с1�i�','O�O���r\'(\r�M2J7������`�ً=�h�','',0,'?'),('�UKv0���Lr.Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/benchmark/benchmark.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/benchmark/benchmark.js',0,'�6��qnb�g�V��+','�6��qnb�g�V��+','\\���KN+rv��1��#�6�a쉤,��ަG�(','',0,'?'),('m�qPoD0�*��L','wp-content/plugins/wordfence/lib/wfRESTAPI.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\8���H� �mi�+','+��+�Ɵ���0��͂b�=���[㜁��','',0,'?'),('�?w6T��m-U�&�','wp-content/themes/mint/node_modules/zlib-browserify/test/zlib.test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/zlib-browserify/test/zlib.test.js',0,'ţ翍�ρѧD�nՃ�','ţ翍�ρѧD�nՃ�','�Dj���T�_AOV�@�qڗ\\H �e�','',0,'?'),('����7�++2��','wp-content/plugins/wp-optimize/vendor/mrclay/minify/groupsConfig.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/groupsConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5��J��\Z �A^}�a�','N��012v��M�\Z�Z|�x�4{�\'\r�>��','',0,'?'),('�|ߘ�/ ��~�V_E','wp-content/plugins/akismet/_inc/akismet-admin.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/_inc/akismet-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{aA>�jr�~E�Qu','d�x�5`E�a�����9��l�?�^��$i��','',0,'?'),('�N\Z�o��g�%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/cloneDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/cloneDeep.js',0,'������:tr����k','������:tr����k','�P����͎�c5�0�z`�ʐhq�~O�hd','',0,'?'),(' �,eO���z��Ñ�','wp-includes/customize/class-wp-customize-site-icon-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-site-icon-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B������� ��\nl&','t�Pg��ib5���>����ի�+�d*�QD�','',0,'?'),('#\0��TN�:�c�O�9','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createFindKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createFindKey.js',0,'q=Q���\r���a[�8','q=Q���\r���a[�8','�Gp+��>��S\'��\n@cS��I[�C��','',0,'?'),('%�X��>g��K�o[','wp-content/plugins/gravityforms/js/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('\'��N�8�_�\n�\"��h','wp-includes/blocks/comments-pagination-next.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination-next.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MC�_R��=<��R�','�� �a��\"���Q��+�ڏ%�m�3�{�p�','',0,'?'),(',5�Xp�BFdc�j+�','wp-includes/js/dist/vendor/lodash.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/lodash.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?��do2�E)x�','u��Z�\n�.����� ��R�J�|�l!�\r','',0,'?'),('.�8� �\n\\�d��','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromisorInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/PromisorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�GiO�Z����3_�','�a�[�na�S���;�Ѧ^,�\0�`�3�-�','',0,'?'),('/�e�IJ��O�\\QZ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/zipObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/zipObject.js',0,' ����W���䲨�#',' ����W���䲨�#','\"������q�z*���)��l2��\r�w�J+','',0,'?'),('7�c-���kЄ\"�`k','wp-includes/blocks/html/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/html/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�\Z�WZn���}tC','3$���q�]��C �A��BåOqc���t�Әs','',0,'?'),('8-���j/�XQ\\!�','wp-content/plugins/wordpress-seo/src/builders/indexable-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/builders/indexable-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6մ�Q�����','�2����W�6�/#\"R?�o���}��q�^ F','',0,'?'),('I������<�Ȕ�\n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/strip-json-comments/strip-json-comments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/strip-json-comments/strip-json-comments.js',0,' ��8B��/�3�\"�Ι!',' ��8B��/�3�\"�Ι!','A�^}2�Ϥo��&Y�mp�͘�0U�X','',0,'?'),('K����g�h�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/svg-filters.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/svg-filters.js',0,')T�2V�e�f�!/�T�',')T�2V�e�f�!/�T�','\Z��R�����Ɩ�Nl^��[�)��#�','',0,'?'),('L����m�O��\'4{','wp-content/themes/mint/node_modules/lodash/lodash.underscore.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/lodash/lodash.underscore.min.js',0,'���b�~&k]�z�\0!��','���b�~&k]�z�\0!��','��f�ّ~�L�HL8�P�2 lW^8�','',0,'?'),('N����ǕtN��bƴ�','wp-content/themes/twentytwentyfive/patterns/template-single-news-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-single-news-blog.php',0,'=�a�\'�ݳ�7�ޒ','=�a�\'�ݳ�7�ޒ','�\r ���!�����d�2�9b���x��m�','',0,'?'),('Q� ��(;ؠ|~R8�b','wp-admin/includes/user.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i�Go/2_�c\0�','ˇ�P���g\\̪��m�H�M�S��+[$�^@','',0,'?'),('T�]\\g���4źuP�;','wp-admin/css/admin-menu-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/admin-menu-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s���+���D��C','�%pI\ZI]u��.�\\�s��#�Z��h��t.%','',0,'?'),('V=~���qz��Ί�}','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/styles.00c062d7a219.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/styles.00c062d7a219.js',0,'�C�� ����v��','�C�� ����v��','���!��F*c��E�vsz�ծL�ɺZ��|F','',0,'?'),('Vp���4Cb���>~','wp-content/themes/mint/node_modules/bower/lib/node_modules/json-schema/lib/validate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/json-schema/lib/validate.js',0,'��h�\'-�Z��Y�_;�','��h�\'-�Z��Y�_;�','w¨��î���p�~H^=a�5�2�&��f','',0,'?'),('YYm�wlq���8O�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ObjectDefinition/PropertyInjection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ObjectDefinition/PropertyInjection.php',0,'(I@,�y+\\J���]�','(I@,�y+\\J���]�','1����V��w�hz�7�:O% �Q_Q','',0,'?'),('Z㟱��z�N715�d�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pullAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pullAll.js',0,'�5�y�2��Dž���','�5�y�2��Dž���','����Q!Y�RK���}���ߠ�ilz�L2_�','',0,'?'),('b���p�A�+�-+ʉ','wp-admin/js/widgets/text-widgets.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/text-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�<M�}��Z�?w','�l!O^l@�X(Sq����VO���}Qt��W�','',0,'?'),('o`Z�.3�Sjf����','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/App.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/App.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<}�Nl�S.=L��','\r0�G\r�S\'�Չ��zcv�qao�����{���','',0,'?'),('x\n�������nL@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/lazyClone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/lazyClone.js',0,'�i(�fC�\\��+�%L�','�i(�fC�\\��+�%L�','��b�|�N&Nt��k�rF-������h��O','',0,'?'),('{��#�E����','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/TranslatorCacheTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/TranslatorCacheTest.php',0,'h@r�T�2Ė�HqMi','h@r�T�2Ė�HqMi','�^��|w?%�s���s\\I���&(��l','',0,'?'),('|3�U��l�=���ݖ','wp-content/themes/pinnclonesmalltest/resources/views/partials/service-buttons.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/service-buttons.blade.php',0,'��ć�_���ǰ}5','��ć�_���ǰ}5','�Mi�5��O\0��\0�p�}���mk��l�0{n','',0,'?'),('~G)Mt�/�\rʦy_�','wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Command.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��H��?���\"����','cYnB��O�,�=J�o�o^��I������s[�w','',0,'?'),('�b���͕��+f3�c','wp-includes/blocks/latest-posts/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-posts/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1-DԢ\n~�K8�\0','�D��ҥr1��5�Wv���C��Дe�{%\r�1','',0,'?'),('�џ!���A��&','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/XmlDescriptor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/XmlDescriptor.php',0,'�~�5OŖ�\n��GPJCS','�~�5OŖ�\n��GPJCS','o��楯=�z0��D-/fw[X�e�r�H:�M�','',0,'?'),('������G. O�v','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.post-select.d8d935a97d454a19f0d1.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.post-select.d8d935a97d454a19f0d1.min.js',0,'�|��q��F(�$�/9�','�|��q��F(�$�/9�','`ߵ��h�h�\\��Se�\Z���U��z��� \n','',0,'?'),('�xjm�j�D�[��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php',0,'�\Z�a I���>�2� �','�\Z�a I���>�2� �','��}�ͼ�m3:(-�1q��.k\"��s','',0,'?'),('���%bQ�bM<�x','wp-includes/js/imgareaselect/border-anim-h.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/imgareaselect/border-anim-h.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z��,�ntZ^6�{Lp�4','qs�c��h���m-�%�x�\ZB��x�\'��E:','',0,'?'),('�-6�Yw@�i��=','wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Oh�����O<FҬ�','P�J�H���t�Ns��nd*F�\'WW�aq��]','',0,'?'),('��1��y�4x%v��$�','wp-content/plugins/wp-optimize/vendor/pimple/pimple/README.rst','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/README.rst',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Vց,����sS.l','� �Xi�|�#���Ȼ��\0�8<��Tw�<�\"9��','',0,'?'),('�~�zk\'�r;�l��','wp-content/plugins/wordpress-seo/lib/migrations/adapter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/lib/migrations/adapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��N^{C\\\"�6/�c','�ă��9XzH8�/O �ͬ�F���~�p�','',0,'?'),('���0,X���','wp-includes/css/dist/edit-post/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-post/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';���%)-�\\6��?�','3���Fo���n�7bU�5s�?Xc�ߨӝ���','',0,'?'),('�<f`�\Z�K(���','wp-content/themes/mint/node_modules/bower/lib/util/createLink.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/createLink.js',0,'T��]�l+q� �','T��]�l+q� �','��_#H*دT���VP�0������b\\;�^','',0,'?'),('�\r5 -|�˃�I\Z','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:�?좑�.\'\0C�','Y9�ƣ�����Y��l-[ �\Z����/','',0,'?'),('�0u�*����.�L�','wp-content/themes/mint/node_modules/autoprefixer-core/data/browsers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/data/browsers.js',0,'R�+�_�����`','R�+�_�����`','�9G��[&#�D!)=߁��t5Q�}HřK�2�','',0,'?'),('�u�ب@�L�8��','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/DefinitionResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/DefinitionResolver.php',0,'\Z�ǵA���`BY��','\Z�ǵA���`BY��','�4�E^z���|��E�㗹�~�0�4ڕo','',0,'?'),('��浺���4��\"���','wp-content/plugins/wp-migrate-db-pro/class/Pro/MST/MediaFilesCompat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/MST/MediaFilesCompat.php',0,'+\n.S:�K�U畑���','+\n.S:�K�U畑���','����� �+z�[<�a��*���Dvң�sUg','',0,'?'),('�+��ɚ�g�]��','wp-content/plugins/wordfence/modules/login-security/css/colorbox.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/colorbox.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<��w\ri�컎vL*x�','�N�b���\r̎�/?+\'��bi\'�W�$@�i\0','',0,'?'),('�o�\r��6�Ͷ�u��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toLength.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toLength.js',0,'����_��Wɳ���:','����_��Wɳ���:','��`��]�w1+6;��#�Wށ���e�C','',0,'?'),('ۣ��#z;��\n\\H,�','wp-content/plugins/wordfence/lib/wfScanFileProperties.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfScanFileProperties.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':���\'�B�(\Z6]��^','�� �(����&�f;��(��J�s��U\\�`�','',0,'?'),('���ޔ���(��@�,','wp-content/plugins/gravityforms/assets/js/dist/gform-image-choice.acd4db3f059ace6f0a29.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/gform-image-choice.acd4db3f059ace6f0a29.min.js',0,'w3֘ڱ��������','w3֘ڱ��������','3f#Sj�[1��O�Q��z3�����d','',0,'?'),('�[tˠ�~��K�D$�c','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue27.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue27.js',0,'Fv>���7�P�Zs�','Fv>���7�P�Zs�','\n�3o\\��ls�MT >/ٮw��;p��V2bp6','',0,'?'),('��i)33ܥ��s�*','wp-admin/includes/class-wp-ms-users-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-ms-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*dޔ��K�-7uQ','�Sf8_�kQ��*z�$CK%V1XXn�%���','',0,'?'),('\08����>�����','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/filter-value.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/filter-value.js',0,'Ƕʼ�O_&��O�','Ƕʼ�O_&��O�','�ĽO��/}�Ņ_�8曀:Ik4}��وL�C','',0,'?'),('��.nT@�Z�y�:','wp-content/themes/mint/node_modules/minimatch/minimatch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimatch/minimatch.js',0,'�H�R�B\\�S����.','�H�R�B\\�S����.','�S��C�y���w9��y\"�}V��l�s\Z��','',0,'?'),('\rP��)�4_\"��\'1','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\"���]��=|��A�_','kcب�/����^<���q�#H�tQ��MV��','',0,'?'),('�>��d����Y ��','wp-content/plugins/envira-gallery/src/Legacy/class-envira-gallery-import.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Legacy/class-envira-gallery-import.php',0,'H:�gt�/b����V�','H:�gt�/b����V�','�?x S$F��`�$.\"�8�.^}b:������','',0,'?'),('ؒz3�,Q�F�B','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/breakLoop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/breakLoop.js',0,'��q17^e�M��Eg�f�','��q17^e�M��Eg�f�','��gF��/T�\'e�����K#��Ҋ8��ᇓy�','',0,'?'),('Y,����8l���l_','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-direction.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-direction.js',0,'x�B��ܸ8:�S�H)�','x�B��ܸ8:�S�H)�','$,��8� 8>Z��R��<���MU���wS5H','',0,'?'),('��ʝ��Z�D','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/transform.js',0,'%�;\r����~*pc���','%�;\r����~*pc���','�D��\n\\%�u%�e`����Zb�J��{6��','',0,'?'),(' ۂ�G�A���0�r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/object.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/object.js',0,'��l�����s�]g$','��l�����s�]g$','>�\"5e%�Ubp�3�x@�9T{�e-����','',0,'?'),('#�L����8�{Z�','wp-content/themes/twentytwentyfive/patterns/cta-centered-heading.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/cta-centered-heading.php',0,'�u�2yګ�*%��[ ','�u�2yګ�*%��[ ','�w��C�;r��|{�����ݾ��g)t��S','',0,'?'),('%��������|�l','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-defaults.js',0,'!��އ�!�~�L:���','!��އ�!�~�L:���','CX&��]���ʗ���Q�gJ�ӂ1�(nj��','',0,'?'),(')`�����ԷZRKy','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/find.js',0,'�3�\'�\0�h����^','�3�\'�\0�h����^','b�>+�b�ԫ�:ː��*8�uWj���\\','',0,'?'),(',�C+4�)��tq��','wp-content/themes/mint/node_modules/less/dist/less-1.7.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.7.1.js',0,'q�F`��T���Տw�','q�F`��T���Տw�','�2˺�8�B<&�~pFw3�i�����h����� ','',0,'?'),('6:���}�ᩆr�3�','wp-content/themes/mint/node_modules/jshint/src/reporters/checkstyle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/reporters/checkstyle.js',0,'�}�����6�r�S]','�}�����6�r�S]','ū���:�7�V�_\'�bzA�w?ԧC\r��C�@','',0,'?'),('7�7��^%\rB�i�K','wp-content/plugins/gravityforms/includes/fields/class-gf-field-radio.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-radio.php',0,'�.��T���','�.��T���','7��T�5P�P\"�kyh(��}ƟAI�*I\0�','',0,'?'),('?��4�w�b��n��7','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseMap.js',0,'V���ijڨ� |�}ɯ�','V���ijڨ� |�}ɯ�','[��� ���*��d�18��@}�i�[n��� ','',0,'?'),('@�\Z����AX���N�','wp-content/themes/pinnclonesmalltest/resources/assets/build/helpers/hmr-client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/build/helpers/hmr-client.js',0,'�`L�6��?�L���','�`L�6��?�L���','+}_k2f�E��hlG�&��_M2x�,��T#��@','',0,'?'),('J�1A�|��*&��','wp-content/themes/mint/node_modules/bower/lib/node_modules/currently-unhandled/core.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/currently-unhandled/core.js',0,'.`�� }]ǞΒ#^�','.`�� }]ǞΒ#^�','�s�``ٞ\r�X\\\\�����\n܌+�g�����','',0,'?'),('R(�K�cRԙ%�{��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/mkdirp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/mkdirp.js',0,'ut:�0��`�?��)}','ut:�0��`�?��)}','�6}�/%����!!�BwA�D�\"�)2n','',0,'?'),('RU�i�>]ƈ���OB','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseForOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseForOwn.js',0,'{�X���3��\'���','{�X���3��\'���','�9���BG��i� �@Q��Ł��R��*Z��!7','',0,'?'),('W��H����49bZ','wp-content/themes/mint/node_modules/json-stringify-safe/test/stringify_test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/json-stringify-safe/test/stringify_test.js',0,'s��F������KU*?�','s��F������KU*?�','���1��9�*+M��� ��.Y+x��3��','',0,'?'),('gDv���q\nN!So^','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/replace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/replace.js',0,'@�f��I�:�^��}�','@�f��I�:�^��}�','F�����\"�sap��Kp\'cI� l�z�Eeu','',0,'?'),('o��� l�Ѵ�cd','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n���@Lj�wD�','\r�8�d�������8sڇ���6��F�Ȍ�','',0,'?'),('p�㧱Rk\Z��C','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/pkcs8.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/pkcs8.js',0,'�@u�چ;�*ȯ}̩J','�@u�چ;�*ȯ}̩J','z�K/7�>�||�H&�c#q�f>�%U�Y�3$m','',0,'?'),('r��-\"��Y`���;�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/EntityResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/EntityResolver.php',0,'+��sE��L}��>','+��sE��L}��>','}��ڹ���uy\r��V�zG��\nڴ�>�/qXQ','',0,'?'),('u�}y�F�Au�Ä','wp-content/themes/mint/node_modules/grunt-legacy-log/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/index.js',0,'X�z9��P�\r��k','X�z9��P�\r��k','~� �rz�̔h�u,:Nh��\\�����z!yK{','',0,'?'),('u�\r:��?��!�\Z�','wp-content/plugins/wordpress-seo/src/config/migrations/20200609154515_AddHasAncestorsColumn.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200609154515_AddHasAncestorsColumn.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�y]�e��%�x�t�','^N&��-��c���a�p��~�gl�\n^%�','',0,'?'),('wYCH�֥�������','wp-content/plugins/wp-migrate-db-pro/frontend/public/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/public/index.html',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('|g�p�a�>]����','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.3.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.3.1.js',0,'��7�.�9x�=Fz�','��7�.�9x�=Fz�','>���0Gpa��z�M^͖M�4�A(�\r(���','',0,'?'),('}X�7��1�Q�v','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_writable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_writable.js',0,'�ȟk�O����','�ȟk�O����','up \"<��3OAOr� ����ւ�[��,�`h�L','',0,'?'),('��A������]ט','wp-content/plugins/wordpress-seo/admin/admin-settings-changed-listener.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/admin-settings-changed-listener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��7X݀�:���','��m� o\'x�l8<�}�Qkq��0\"��W�U','',0,'?'),('���9�BM\r���i�\Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/slide/lib/slide.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/slide/lib/slide.js',0,'}6y�RW��wgOH��','}6y�RW��wgOH��','3/�()�R-�Q�nT��W}�J�G�?�|c��/','',0,'?'),('���#����h��[�o','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-vminunit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-vminunit.js',0,'�o�%�pK�6l���m�','�o�%�pK�6l���m�','�\n�Ci�{����ر�ߖBZ�eP','',0,'?'),('�Lýf���8=�f�B{','wp-content/plugins/wordpress-seo/inc/class-upgrade-history.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-upgrade-history.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~:����!~0�al�',')ؠ\0�s�� ��t�����(���q(���?�B\r/','',0,'?'),('���A(.ܾ�0!�','wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/3/select2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/3/select2.js',0,'�t�Q���,�j�[�','�t�Q���,�j�[�','�n,i��/��q���x�ǂ#u,���z�o�','',0,'?'),('�x��|s����K�a�','wp-content/plugins/wordfence/views/common/page-help.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/page-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!��YJ��Jk���','��\Z=�DBא�� %%A?O�w��*/�~u','',0,'?'),('�}�I��`�k��FW�','wp-content/themes/pinnclonesmalltest/resources/assets/build/webpack.config.optimize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/build/webpack.config.optimize.js',0,'\r�-\'#���x��D?�;','\r�-\'#���x��D?�;','���+��l;��+��pg7�ѳ��Z���','',0,'?'),('����@8�����q\'','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/EntryReference.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/EntryReference.php',0,'�8Z>�p�а9�r�','�8Z>�p�а9�r�','ʔ�v\n���s�E0����k��?k{&���k\\�','',0,'?'),('�{:����ƴ4m��','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Groups.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Groups.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!c/�n�=ڱ���VR�','X��jݷt|>��N/�8����k55�]\n��','',0,'?'),('�M�\n[%��rD�i<','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSSmin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSSmin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��@n�����ɔ7#B�','l�])ke��,ә�k�l7���ٴ0�˲','',0,'?'),('������Z��I�hl','wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-10.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-10.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%qC�`\\��Iǜ��I','�K��|\Z�0�A�,��+Ǒ��bf�ċ��鷭','',0,'?'),('���8QF�/�h�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/reject.js',0,'Ǩ�Uoi)����JV\"','Ǩ�Uoi)����JV\"','��k��K�.߶U����(�rUj��$^;K','',0,'?'),('���#���� >�7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I��m���LWyݓH','�\rfl�դ/�;l\\��\\.6��r�#P�[��','',0,'?'),('ăf����HH���','wp-includes/blocks/navigation/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�����֯I��','�H\\F7U[�{^\n��uD\r��4.�k��','',0,'?'),('ņL�G��P(�Ή�ȯ','wp-admin/js/widgets/media-widgets.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/media-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�rcFﱭC\"���[��','�%*e���� ��\'�>\\���ܲ��B��I','',0,'?'),('�9�|�\0��Wx(Y','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/wrapperClone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/wrapperClone.js',0,' �u :�Q)�gt���X',' �u :�Q)�gt���X','�ʱA�oz< ��\ZIg��\\F�{��','',0,'?'),('�����{�g���','wp-content/themes/mint/assets/vendor/respond/dest/respond.src.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/respond/dest/respond.src.js',0,'�4�*?������9@�','�4�*?������9@�','\r�{Ztx\Z�A7��R�!!�琏B˔ p�]','',0,'?'),('�=tu�ʙ�;��Ꮯ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/lowerCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/lowerCase.js',0,'OG�rUQ\"e�[V��!5�','OG�rUQ\"e�[V��!5�','C�)���k ����N� �[�����+ڢ��U','',0,'?'),('�?��#�P�����','wp-content/themes/mint/assets/vendor/jquery/src/ajax/load.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/ajax/load.js',0,'7c�\0;�\"L`Yԭ�','7c�\0;�\"L`Yԭ�','>p�u��P:?U:��yz�a5��r��nŲ;O','',0,'?'),('�Y�/�X����,\'\0�','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5��}�y>b�2�','���f�\"Z��p�ip�S�Ӂ�\"oyI�q�0','',0,'?'),('��mXG0�W��a2O','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/minBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/minBy.js',0,'Cz�0t�\"ESu��','Cz�0t�\"ESu��','���2�̵/b�\n��:�6�:8��ߡ_��W2��','',0,'?'),('�<�p�~��Az{z<5I','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/fill.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/fill.js',0,'�.lqH$j���Zob','�.lqH$j���Zob',':Q��5mZ�Ȼ2\0�J&?]�r�c��Tx��|','',0,'?'),('�(P�d�n�o�l��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/parse.js',0,'��Ʌ�Ҁ��>���`','��Ʌ�Ҁ��>���`','h�\n�89�ҼUģ��&`�X�[�g���%H��','',0,'?'),('ڗ�T���7�','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/chaining.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/chaining.js',0,'$���K�k[W���]|','$���K�k[W���]|','��[^<�����I�7=_�E��\06<!�','',0,'?'),('ܱ\'Q\Z�\'�6��(�','wp-content/themes/twentytwentyfive/parts/header.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/parts/header.html',0,'&��k���S4�ow','&��k���S4�ow','Qy�kԿ�(Qd.&��Oj�!���J{���','',0,'?'),('�&� A�H��)�I&��','wp-includes/js/dist/vendor/moment.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/moment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W$o�b���\\��fiY','���Do���� Ju�hH:�4��}h;E�','',0,'?'),('�%jgahv�+#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/rearg.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/rearg.js',0,'��c/!���㩓�@��','��c/!���㩓�@��','>{u������nY�����+]���*x��&G','',0,'?'),('�#�o�q�l�\Z�T�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/invoke.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/invoke.js',0,'�������+��Xy','�������+��Xy','ܷl�|3��/E�Jel8\'�/e�#�Pk�G ','',0,'?'),('�v��x�����<�','wp-content/themes/mint/node_modules/promised-io/http-client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/http-client.js',0,'��Y�b��6(k3��/m','��Y�b��6(k3��/m','Z!*&0y��Y%`����w��\n��~���W%�','',0,'?'),('�cY�F���}�j`��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3����b(浏К','n;�<�� Ǖ�-W�t��]��<�s���u�','',0,'?'),('�_�3���gq�T��b','wp-content/themes/mint/node_modules/autoprefixer-core/lib/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/utils.js',0,'J�r\nnܻIiꋷ�','J�r\nnܻIiꋷ�','AfV4 GO�}Zd��ߋ^֚�\0v��8���+�','',0,'?'),('�*\\�E<<���M��','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/ev-charging-safety-tips-for-kiwi-homes/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/ev-charging-safety-tips-for-kiwi-homes/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�;�U����`�pM','wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/output-engines/class-form-css-properties-output-engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/output-engines/class-form-css-properties-output-engine.php',0,'Lh\\�ѥ�x�뜕�','Lh\\�ѥ�x�뜕�','��h��:��A#��-�������B��$_[�','',0,'?'),('&��2������','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ylh��w�%Re���','���\njq�W�� �v_�#�� f��~��R�>','',0,'?'),('hQr��jӤ�K�','wp-content/cache/wpo-minify/tmp/js-b8a01a9b.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-b8a01a9b.js.transient',0,'�/9�xqrp-C1m\Z','�/9�xqrp-C1m\Z','��6fX)����ꕿ����9S���k�]m','',0,'?'),('c�{�v�\Z���\n','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Assets/ManifestInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Assets/ManifestInterface.php',0,'�S@�R����oc\"�','�S@�R����oc\"�','��]H�;S��[���-6as.X�%T�aY��`|z','',0,'?'),('�k~M���I_�۹�','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/into_stream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/into_stream.js',0,':iP<_N7�+�]����',':iP<_N7�+�]����','TIԳ��Y�`(2�4�Ysm��id��M�`','',0,'?'),('��Ԗr�2��bJ�','wp-admin/js/site-icon.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/site-icon.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���2�Խ���Ǎ�|�+','�o��/I�Pi�x���Լ�6ԕ�x�U[�! ��','',0,'?'),('!$ğk��1��-�M�','wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-bom/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-bom/index.js',0,'͊��R \\��q8^�','͊��R \\��q8^�','��hrJ<�����q�kqs�\Z��n�\n�l�˥','',0,'?'),('#�7��r�Y�\0��i','wp-content/plugins/wordfence/views/common/status-tooltip.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/status-tooltip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F��fZ�؍PIR&i��','�EQtY�=�j.#eW㈤A3QcP��T�','',0,'?'),('&#�p�J��h��','wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�Čd<v��WJ�m�x','6��R3��]iJ)o���.g�1�&�lJ��\"��','',0,'?'),(',!#Q��P�[;����','wp-includes/sodium_compat/lib/sodium_compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z��\Z�a,МX��$','P����W�&��O��!\n[�Y<t\n6@�=&�','',0,'?'),(',��E���?aIn���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/forIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/forIn.js',0,'�L-$�^���/�MP','�L-$�^���/�MP','����^��������k�6��}+�T��','',0,'?'),('-�m�|RA���N���{','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-page-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-page-template.php',0,'@��|���(�k�U[�','@��|���(�k�U[�','P�a�D�CR��sTb��u�ٶ|>B�\n�ar�','',0,'?'),('2��(�yh� p>�ާq','wp-content/plugins/wordpress-seo/css/dist/first-time-configuration-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/first-time-configuration-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.��n���O\"��','���-����7j}m�j-D^q�_J\Z���/q','',0,'?'),('4��ہ��;�0�.*','wp-content/plugins/wordfence/views/blocking/country-modal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/blocking/country-modal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(G\"n�rPi�)߬�j','\r�FA�me�a r��-�w�Y�E�u�����u','',0,'?'),('5\n�iր�3,ٞI�','wp-content/themes/mint/node_modules/bower/lib/node_modules/duplexify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/duplexify/index.js',0,'���2�\Z��\'Jv��hVQ','���2�\Z��\'Jv��hVQ','�g�����*x��m���Q���s*�ye(��/�','',0,'?'),('8(�K�L._\'%���','wp-content/plugins/wordpress-seo/js/dist/languages/en.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.h�h�/#����E�u','���_?�0��% ��:c��}����Y�$�','',0,'?'),(':뭲c��RPe(','wp-includes/rest-api/class-wp-rest-server.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/class-wp-rest-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���k��3����OX�','��*\r_� Yݬ��!�Qv��)\0œU-�Jze��','',0,'?'),('?G��2�����ڳ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toInteger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toInteger.js',0,'�z�P�����X-�[','�z�P�����X-�[','�|7`�|Y$팥�&&f2����!XN��U*`','',0,'?'),('K��xP0&���O:p','wp-includes/blocks/archives/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/archives/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rv}��\')4~~�','Ƹ�C�YM����a.L���8�yQ�v�q�I�','',0,'?'),('T�oH?y���D���','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/CacheableDefinition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/CacheableDefinition.php',0,'2m�!gӾ�\r��Ēs','2m�!gӾ�\r��Ēs','������\n�B���H[���MM,[t�ނ���','',0,'?'),('Xt����Is�L�-�^','wp-content/themes/mint/node_modules/readable-stream/writable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/readable-stream/writable.js',0,'d�Ίô�~�J���R�','d�Ίô�~�J���R�','��<Bxm*r:������\n6�����6�[{��p v','',0,'?'),('X��\\§�a<4$p��','wp-content/themes/mint/lib/activation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/lib/activation.php',0,'�>8 ����t��9','�>8 ����t��9',')�r6y�Y���l I�,~�_缒���r7�\r�','',0,'?'),('c�ė_��\\�L�\\','wp-content/plugins/envira-gallery/assets/css/images/icons/audio-off.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/audio-off.svg',0,'-$F���2sl>��C�','-$F���2sl>��C�','���o,�O|B� F����\\��(Д�v�j�ǵ�e','',0,'?'),('d���Њ�)�\\���:','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/nonstring.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/nonstring.js',0,'�����ͦ���3�2F�','�����ͦ���3�2F�','WlI.+\\�K��7.�5�ݥ�[k�F�{f0�[#','',0,'?'),('e؟�v���笪�Ej','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �UwYI��I�}�','���ݠ\r��ڗU�D�PT���V+6��^:2!���','',0,'?'),('g��#�I�M�vU�?','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-other-files.eace2a2c.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-other-files.eace2a2c.svg',0,'ז}�����[��]','ז}�����[��]','�>?�\'=�{�c�+ �e�-�A���{���','',0,'?'),('k\0\Z���{ ݛ6�','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i��hbΊ�,���b','S%\'7�^V�)7�$�_+�V`�9�����D�','',0,'?'),('k����b��gS�','wp-includes/js/tinymce/plugins/wplink/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wplink/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L��Y��(L��cs��','~��[�j��f$��Hgl�6�9��Y�ڛT�','',0,'?'),('l象p�| ��c:�*','wp-content/plugins/wp-optimize/webp/class-wpo-webp-alter-html.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/webp/class-wpo-webp-alter-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Od\0�vz�<t�)�%t',':c�Z[�ؒ\"�d�\'5�}��J��r�+w','',0,'?'),('vnٜ��Y� 4J�yKm','wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreSite.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreSite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j���YP�::SI�\"','g`ر���eW����c��[��]�Pi�','',0,'?'),('{�L�7��3TcNE','wp-content/plugins/wordpress-seo/src/conditionals/addon-installation-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/addon-installation-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>���\0ȭ�TjF�','nՋ\0�K�U�][�U}�C�B����','',0,'?'),('�\n��E�c�U����','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver.js',0,'쾰z���Gq��','쾰z���Gq��','&�`= �mB\"�ɚ�0y3�L\r5:���n6�','',0,'?'),('�|�Tli�ud�76','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/fonts/livechat-icons.eot','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/fonts/livechat-icons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ټ��{Inf�66p|��','ya]��{��䇓���|\\��آ������\\','',0,'?'),('��xE���F�������','wp-content/plugins/envira-gallery/assets/css/images/icons/cross-ai-modal.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/cross-ai-modal.svg',0,'�/P���YF�g','�/P���YF�g','���9��떝S���w�*���R�n<$m���','',0,'?'),('��C����i�QT��vO','wp-content/plugins/wp-optimize/js/wpo-images-view-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/wpo-images-view-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V��L���br��=�e','\r!I�Լ�/��ո�ÔvN҉�N�ֻu��w�R','',0,'?'),('�Ҿ�}</\n���f\n#�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/970.185a31a710b6.chunk.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/970.185a31a710b6.chunk.js',0,'Fõ��E�=�e#�C��','Fõ��E�=�e#�C��','߳�����%s�G�S9��f���4�����J��','',0,'?'),('��i6\'�йL�\Z�6','wp-content/uploads/cache/980e5a7544081e6b7ff5d9a54357abebee1d5e10.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/980e5a7544081e6b7ff5d9a54357abebee1d5e10.php',0,'�9�����e��','�9�����e��','V}B�Èj[;c_����E[�;�w\"�w3�','',0,'?'),('�aY�A$6�0�(R�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/set.js',0,'z�\Z�U_�c���','z�\Z�U_�c���','�\'�xҎ��yLҲ8�Ƽ�,���\Z��[# >','',0,'?'),('��R$60jw��Im��7','wp-content/plugins/wordpress-seo/admin/import/class-import-status.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/class-import-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K���9<3(�g�','�T�x���-��P�o����A������','',0,'?'),('�;J�t��=�*���#','wp-content/plugins/gravityforms/includes/orders/summaries/views/view-pricing-fields-text.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/orders/summaries/views/view-pricing-fields-text.php',0,'8-V��9�7\n�zt�5','8-V��9�7\n�zt�5','���W�t�7�����6��W��~�fa�d�D','',0,'?'),('�u��ޑ�pk0a','wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@����-mb�ja','(�kɗ�Ɍ��0�\"�����v� e�]]k���','',0,'?'),('����57��D�;TkC','wp-includes/blocks/social-links/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-links/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���?��dHS�Dc7nV','������=BC^5��q�}�o��� }��J','',0,'?'),('���L��.�\n�w;[','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/dashboard/widget_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E 4m�Y�>�`��','�#�_�[Ѹ��@u�Ha�(+j>V\Z+�q[V','',0,'?'),('�C�R�V�[�@F��Ϟ','wp-content/themes/mint/node_modules/node-uuid/v3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/node-uuid/v3.js',0,'�!+*N�z%|����','�!+*N�z%|����','ʏ���87 �S�p��v��z�8�~`����','',0,'?'),('��\0��l!�f','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/partial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/partial.js',0,'cz�_U��q�S-�-','cz�_U��q�S-�-','f>��M�=�JW��&k���3�Z��迢huD|_','',0,'?'),('�4���Vfo\'k�','wp-content/plugins/envira-gallery/src/Utils/Export.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Utils/Export.php',0,'�$��Lc�Hzbj!�X;O','�$��Lc�Hzbj!�X;O','���{t�� ���g����`hc��<�Eb�','',0,'?'),('����s�\\��۟','wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/AbstractLogger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/AbstractLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L��je¢����0�','$�Q�5�P2�v��\Z���i�$�RE�}��','',0,'?'),('�ήϽ����,�\Z','wp-content/plugins/wp-migrate-db-pro/class/Common/Http/Helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Http/Helper.php',0,'��\r)�oDOrC�cH�','��\r)�oDOrC�cH�','�Z �2I�HErXF��6&��f�3��q�Ԙ','',0,'?'),('�&,4�X�a�\\)h','wp-content/plugins/gravityforms/includes/theme-layers/api/fluent/class-theme-layer-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/api/fluent/class-theme-layer-builder.php',0,'�F��G_�거�v�y','�F��G_�거�v�y','��5�O�Ȧϟk`~�;� x�^��,�J','',0,'?'),('����g�~�w\Z�hh','wp-admin/css/themes-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/themes-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-JQ5ڬ@Z_i8�','�����L�?I؉6�ޱ��\r���U�o��','',0,'?'),('��ؒ��jY��i','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Cache/LockProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Cache/LockProvider.php',0,'�2��<�n�V�X��','�2��<�n�V�X��','�a�*|�<��4�Ąn:�X��\ro>\"sS�%s�','',0,'?'),('�X�N Z�2f�I','wp-content/plugins/wordpress-seo/js/dist/languages/sv.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/sv.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1E.�u��|7\n�kGU',':\"�m�S\0{���ܻi������+*��4t','',0,'?'),('�����B�����\r�1�','wp-content/themes/twentytwentyfive/patterns/page-landing-event.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/page-landing-event.php',0,'��I�Bp�!7�lJޢ','��I�Bp�!7�lJޢ','V\'N[#��x�)S<����3�<?�_0��W�-|','',0,'?'),('�]�R ��(���j�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/bindAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/bindAll.js',0,'̺b\n�4�P}����','̺b\n�4�P}����','���+\06��*Y����T����3�Os�j4s�','',0,'?'),('�u���u|�z�jC�d','wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/InvalidArgumentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/InvalidArgumentException.php',0,'}/�X5$�9��/�e','}/�X5$�9��/�e',';��5b��G�S��B:e}�����!q|z�6�','',0,'?'),('���;�GZ÷��AF�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/makeIterator_.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/makeIterator_.js',0,'�6S�+wTԅX�','�6S�+wTԅX�','�(L;�$��r��\08�N�v=�����R��,','',0,'?'),('��\Z�x�pGk\"g��','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/normalize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/normalize.js',0,'4�IHM]�_l&c�m��','4�IHM]�_l&c�m��','4��E�y� :��7�?��Cv���w)-','',0,'?'),('�^�Y�c��1��','wp-content/themes/mint/node_modules/grunt/lib/grunt/help.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/lib/grunt/help.js',0,'��93#�8�wU��]xH�','��93#�8�wU��]xH�','|4��:����5��ue�S��xW\ZӽD�t','',0,'?'),('� \\i����x��(0�','wp-includes/blocks/text-columns/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/text-columns/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���+���+��R\r��','$��Y�|e��q�Ѝu\0df��DbtF��^� ��T','',0,'?'),('�F�}��1���','wp-content/plugins/wordpress-seo/admin/class-remote-request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-remote-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%~�t@��=n�w�','hʊ{-��I\0[��|�&6fߚa\r_�+n`','',0,'?'),('���C��wE�:\'�g','wp-content/themes/mint/node_modules/pako/lib/zlib/messages.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/zlib/messages.js',0,'4䟝���b���Q.P','4䟝���b���Q.P','���u���\r\\��l\\\n�.�mSZ�Lۺ��t\"','',0,'?'),('ܨ� M�pC�u��_�','wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/utility.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/utility.js',0,'�n�\n�����Qdz�','�n�\n�����Qdz�','F����T�&Ҷ���eS~y}����IY','',0,'?'),('ݐ��x_��?Q��+�h','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ServeConfiguration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ServeConfiguration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ѐ��OW��d','��\\�]�~[(]�\ZX�[�k\\�D�\\?�i�O�','',0,'?'),('�ͥ`FJ��S�u','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kz+U��Ÿ(�5\\','8:��o�I�9,��=zDk8;�{A{�\Zij','',0,'?'),('��.�dFY�Gʹ#M','wp-content/plugins/wordpress-seo/src/loader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����2w�K�Y\r���','�a�{,G�����1kCR,H���^C����','',0,'?'),('��*�&�,47l�K9','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/some.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/some.js',0,'����e=�DWE�_','����e=�DWE�_','%����w�s����8ߕS<�^� 46n�PԌ�','',0,'?'),('���CF�]\0����@','wp-content/plugins/wp-optimize/optimizations/optimizetables.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/optimizetables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�}�r\"tj�)k����','��D5FU�,qJ�qsR��F{[|T�mY.\'','',0,'?'),('�*���d�P\\�ֿ�\"','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-follow-all-303.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-follow-all-303.js',0,'�\nJ�.�,��g�q�','�\nJ�.�,��g�q�','�blQ��d�?t37�yJH�18wEL1','',0,'?'),('��r�\n���\'��','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js',0,'��\0�~ۺw��f6X','��\0�~ۺw��f6X','s-5�f�P���t��K}c<C~�(�C�P�-W�','',0,'?'),('w���;��I�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementById.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementById.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܱ�4�1��^q�V','��{��7!(a�Cv������2���Pȁ','',0,'?'),('�~!��y\"?�����','wp-content/plugins/wordpress-seo/src/presenters/webmaster/pinterest-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/webmaster/pinterest-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','蕑��$���I��','��Y�\r�m��v��RP�A��>�oJa^Gq��','',0,'?'),('���O�3�=���','wp-content/themes/mint/node_modules/coffee-script/lib/coffee-script/rewriter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/coffee-script/lib/coffee-script/rewriter.js',0,'=�?0I�3�Ѷ�O ϧ','=�?0I�3�Ѷ�O ϧ','�C��A�����8��0m�Nϥ�|L�..','',0,'?'),('�_H�=D/���VD','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/removeNonASCII.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/removeNonASCII.js',0,'�6hX��5%�ĮQ�','�6hX��5%�ĮQ�','J#H0,��k�\"\r�̔h{���a�4_P��','',0,'?'),('�~6���QjXko��','wp-content/themes/mint/assets/vendor/jquery/src/effects.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/effects.js',0,'���\Z~㎜� ��','���\Z~㎜� ��','9�� p�=��}����5�\nD���K?V�M��','',0,'?'),(' ��ep��Z��r�','wp-content/themes/mint/node_modules/natives/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/natives/index.js',0,'\"I�lr������\\�c�','\"I�lr������\\�c�','�įkT��!n�1�_|i��y�51�n�\\`@��','',0,'?'),(' ��\Z�1%h\ZN�Y�T�','wp-content/themes/mint/node_modules/less/dist/less-1.1.5.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.1.5.min.js',0,'߰��b/��⼩\rL��','߰��b/��⼩\rL��','q��V���Y��3\"�#�����Tlӭۣ��','',0,'?'),(' QW���~-�\0d�','wp-includes/class-phpass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-phpass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n���eI-c� $.�NE','B4����)���eU��,9k�p�>��*}[d�','',0,'?'),(' ?������q�uM','wp-includes/js/mediaelement/mediaelementplayer.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mediaelementplayer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��5�)��k�y�~','_Dt�3ג�3p��a�;9,�\n�ig���C?3�','',0,'?'),(' \n7�0��ڃ#�%O','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/slice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/slice.js',0,':�e5�Rf�f��',':�e5�Rf�f��','��D96�|�E4(�o\Za���\"�E��','',0,'?'),(' ^�Ch�T�I�a�','wp-content/plugins/gravityforms/includes/template-library/config/class-gf-template-library-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/template-library/config/class-gf-template-library-config.php',0,'�b\"6R���x�>V�','�b\"6R���x�>V�','W�t��l�g�\'5��2���M/14��� \n','',0,'?'),(' �֢��i��w��','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.3.3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.3.3.js',0,'���{���1{Y&B�','���{���1{Y&B�','!6<��X�9�?�J@#��,n��j:nD���','',0,'?'),(' ��8�BK�q�\Z\0�e�','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\\�\Z8X[sA3�AgA','@4s����#���fR��LN���ٞLD��:�','',0,'?'),(' ���x��ȼk�%��','wp-content/themes/mint/node_modules/tiny-lr-fork/tasks/tiny-lr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/tasks/tiny-lr.js',0,'�5ގ��1z(POn9%)','�5ގ��1z(POn9%)',')6���D��p�{�{��V�)�C/x��.','',0,'?'),(' &��᷈P��d7A��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/de.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/de.php',0,'xn�ݚv�(^�n�\')','xn�ݚv�(^�n�\')','��\'�T�[\\����y �9�n.]�2�b�y���c','',0,'?'),(' (�tu���NC�D','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/reverse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/reverse.js',0,'�U����J+=��l','�U����J+=��l','%$\"�R� ���)���%$s2����P��X��s','',0,'?'),(' (���;�;L|=��','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-taxonomy-change-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-taxonomy-change-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n��T��┬�ʁ�{9','\'�����هU�aa&�&\'d5������b#��','',0,'?'),(' ,��/Օ�!�gy�d','wp-includes/js/media-editor.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/media-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���nu\'�s\0�@�','�.�e�Xwh���!�s�t3��H�\\&3�-#���','',0,'?'),(' -oؙ��#�/�I','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Rfc7230.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Rfc7230.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v���h֧�Kc ���','P�v㽘�r�a��M�E�%U.��BH�A�����','',0,'?'),(' 1/t�0�}Y���>�n','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php',0,'�\'��с�5R�v��','�\'��с�5R�v��','UQ�Iei6��9�w ȧ��ߟ�p8�~r��','',0,'?'),(' 1�\Z]B���u���5�','wp-content/plugins/wordpress-seo/src/routes/importing-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/importing-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\�o*\Z�g��&8l~��','F����z��<`��[>z���;�S�U���lY','',0,'?'),(' 2�p�<(X�\"�ݵ�','wp-includes/blocks/audio/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/audio/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C�u��Ȁ�c4B�)','(4�K�qb�Q�X�{d��*�P�\n�z���','',0,'?'),(' 5D��P��y�\\��>L','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/removeAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/removeAll.js',0,'ߔʶ@�Mj�_�1�','ߔʶ@�Mj�_�1�','�>����K+� ߜ����L9�a�y=�ͮ�E�','',0,'?'),(' 7�������f `','wp-content/plugins/wordfence/images/sort_both.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/sort_both.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�m �8�f�|�Y��','~�%��ۉ�%���>����Bl�o�u�I)ȉ7g','',0,'?'),(' 9��BWGK-�R�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/FnStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/FnStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E]`+�F3N9Ԕ\0�V%','RF+�o�u e?*�Q�m�M��M���M��+','',0,'?'),(' @y>��tBü��-��','wp-content/themes/mint/node_modules/request/request.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/request/request.js',0,'���+�9�D4ol�t�','���+�9�D4ol�t�','Bϻd4�\r����(�\r�c!\0������l�F�`','',0,'?'),(' B~�w����u���m�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/compose.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/compose.js',0,'���i����E���5�','���i����E���5�','������8b�mmrƧ���]\r��Ue��3P�','',0,'?'),(' J�����;uz','wp-includes/sitemaps/class-wp-sitemaps-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sitemaps/class-wp-sitemaps-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@\r�����-9�0','L�L���{��������V�G�5n�X�ߺAP*�','',0,'?'),(' P;���d��i��-4','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trimEnd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trimEnd.js',0,';ֶ�#8�r��<���',';ֶ�#8�r��<���','�ء�����%_��+\":�ٟ���<�Ms�Y','',0,'?'),(' P=N>��b\"j:~[Q{�','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�We⎆?��N��t','n4��<��Fz������_�5��kig�','',0,'?'),(' S_yan��5?��b�+','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/TextDescriptor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/TextDescriptor.php',0,'��iw+�=�4@��S','��iw+�=�4@��S','��t?��b�`��]w\\�Q�¸�a�+Kt\nR#','',0,'?'),(' X�t\\4vNI5��j��','wp-admin/async-upload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/async-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`qEn��쐐8|�\0�~','$~�+ge���n�~�u$/\0C\Z����wśB�.�','',0,'?'),(' [:�s�:���&M�=','wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/json.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/json.js',0,'�Ok�\Z���[�&�_��','�Ok�\Z���[�&�_��','�\n%XH1%X�PSr�ߞR�v���nG^@','',0,'?'),(' [<��h��*�','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test.html',0,'�;��k��3����S�','�;��k��3����S�','����n�p�\Z��ݔ�����9�}�� :���]\'','',0,'?'),(' c��牠Dcy�L','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/result.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/result.js',0,'0E�b��QfpRY','0E�b��QfpRY','�{|����_?ӭ�\Z��2��ߖ[��w&��1u','',0,'?'),(' lLL[�v|�[�:�d','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/lib/util/proxy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/lib/util/proxy.js',0,'Oɼ��7�|�o o\Z�P','Oɼ��7�|�o o\Z�P','ȍ������60Rԍ�\\�h��%���Yy�|b','',0,'?'),(' t]�9��\'�����','wp-includes/blocks/nextpage/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/nextpage/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ei�@��F�F�\Z�','�-!`�,#á���l៳D�TD� �v�8=Y�5F','',0,'?'),(' v�g��_\r�����z�','wp-includes/blocks/comments-pagination/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\���(@�>��QD�v��','<�<j�J\"��� ��c��-3�/��GR�','',0,'?'),(' ~���ީ�BM�fbw��','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/oval-close.55372175.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/oval-close.55372175.svg',0,'�I�b�1D���l\\�H�','�I�b�1D���l\\�H�','�*��$ڼ#�9p]�L�o�a?\'����W��>��','',0,'?'),(' �h�Xk%�>���{N�B','wp-includes/js/dist/viewport.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/viewport.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Mz� ���#>�(H\'=','�!b�Rl�X+��\"��kQ�#o��hH���sߣm�','',0,'?'),(' ��R�)�\r�{��t','wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-count.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-count.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A��>b6���Z6x�','���^���T�.`��K���EB!CI�*+1Y1','',0,'?'),(' �!\\�$�y�&\r�','wp-includes/css/dist/edit-site/posts.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-site/posts.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��g��E���߲��\\','M̬����64���N���\01M�̀<ݎ>m�','',0,'?'),(' ��M�j�\"�J*��R','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isElement.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isElement.js',0,'�\0d�[=�a�\rظ0\r','�\0d�[=�a�\rظ0\r','X���r-,�pe֥���3}��p�%k��~�','',0,'?'),(' ����F�>�','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-post_object.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-post_object.php',0,'�@8�@����N��\"','�@8�@����N��\"','m6��L\'�WƧG�ƕ���=i�3=c�^�eO�t\\�','',0,'?'),(' ��֍u�4��q7���','wp-content/plugins/wp-migrate-db-pro/class/Pro/TPF/Manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/TPF/Manager.php',0,'�>���r?�\n����','�>���r?�\n����','c�>\n����u���}�;��\0��$���!k','',0,'?'),(' ��\r�Yk�cJ[��','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamWrapper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamWrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]����c�\'��{',',o�_TP�6G�2\">��\Z)g{�X:v���]�U!�','',0,'?'),(' �Z.X�$n�<s���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ClassDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ClassDeclarationSniff.php',0,'�vc��F���3̢�% ','�vc��F���3̢�% ','\0N,8�P�F6�\"�t�Eu���\"v\n����i�','',0,'?'),(' �I��,���!D�','wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LogLevel.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LogLevel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"aB�]9\r9��xC','n��Yy��\"\0�����\nd#.eg5�6�d\\��>^','',0,'?'),(' ���/1�\nS#��','wp-content/themes/mint/node_modules/less/test/browser/runner-main-options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-main-options.js',0,'u�f��E���4��','u�f��E���4��','�V�����a�S��U�\r>�+�(ޞU�}�','',0,'?'),(' ��;ȓ���\\���Fr','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isArray.js',0,'��V*}����G9','��V*}����G9','����(���ɗ.�=Y�p�q�9������~','',0,'?'),(' ����r��X��o}�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/vi.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/vi.php',0,'��{Ͷ���^�','��{Ͷ���^�','gsS�|?��P�}�W�Æ3�=��S�z\"��','',0,'?'),(' �f��y�����$pp�','wp-content/themes/twentytwentyfive/patterns/logos.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/logos.php',0,'��S�owYE`D���E','��S�owYE`D���E','_���թJpsyV��ov=�-9N��,P}c%�','',0,'?'),(' ����\0\0�O�0','wp-content/themes/mint/node_modules/bower/lib/node_modules/window-size/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/window-size/index.js',0,'go��P���S�n�.3�.','go��P���S�n�.3�.','6�e4�/$���w5ՐTE诩��V��)�:�','',0,'?'),(' ��j�S͉�kDܙ:F','wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/modernizr-1.7.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/modernizr-1.7.min.js',0,'R��R��B����Z��','R��R��B����Z��','��{��y�D|�4�$w�;��Urk�;���','',0,'?'),(' ѷ�r�ݘua$��t=','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findKey.js',0,'�=�c��]�*=��','�=�c��]�*=��','��>j�wm��� ]ے;�\"��;>�4OxT','',0,'?'),(' �2�[�4�*���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createCurry.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createCurry.js',0,'A\rOZ˃��)�W�\'','A\rOZ˃��)�W�\'','�K���/���y��R�UN�[���{��8bFȞe','',0,'?'),(' Ӱꅑ��������c','wp-includes/js/dist/escape-html.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/escape-html.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���H��g|������','�!J���.l��il䕓J���|v�B�O\r','',0,'?'),(' ��\Z4Q�`��yh�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/PropertyLabelSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/PropertyLabelSpacingSniff.php',0,'���Ҫ\r��Uۮ','���Ҫ\r��Uۮ','8���Nĉmp���1���.�����Q\n��','',0,'?'),(' Ԋ��p_�z�ʛ','wp-content/plugins/envira-gallery/src/Admin/Onboarding_Wizard.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Onboarding_Wizard.php',0,'���DR���`f\"��','���DR���`f\"��','3QN��2A;�CU��:�ι�pf9b�5��լ�1','',0,'?'),(' �9��fވU�f���','wp-includes/js/tinymce/tinymce.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/tinymce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xl����̡C��kn','�Zk� �6|��{�*\Z��{�H����iܝk^','',0,'?'),(' �HAxO��E�~�![�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isFinite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isFinite.js',0,'<�%�M*L�X�����','<�%�M*L�X�����','���k��e0�:����U��L��Z�u5bi','',0,'?'),(' �!��UB,�&�D��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/FileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/FileLoader.php',0,'ӻ�\"�R�`���k��','ӻ�\"�R�`���k��','l���\n�����(��[V�� �4�7��','',0,'?'),(' �y�E��;j���','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/dist/lodash.compat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/dist/lodash.compat.js',0,'O�����\r�Y�\0��c�;','O�����\r�Y�\0��c�;','�CZ#�D��c�����A��\r��3���L�s','',0,'?'),(' ��Ih�B�pO','wp-includes/blocks/heading/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/heading/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ưe3�9�y0ki','l)���b�)�W4�5��<w��?��vc�h���','',0,'?'),(' ����09��-b��ͩW','wp-admin/network/users.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������̰�����','y�K�V��<��\nO�F�\nf7t2_� ����','',0,'?'),(' �G�5�Q�ǜK�~@\\','wp-content/themes/twentytwentyfive/templates/search.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/templates/search.html',0,'��b�����@WN�U','��b�����@WN�U','G\'���HR��7z��.�\Z�0AiK�LM���w','',0,'?'),(' ���?��?B��38','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/test/index.js',0,'����[�<�,(`�>','����[�<�,(`�>','\n������02���[�){A�N�h�\"�&Ws�1�','',0,'?'),(' �/�?��^��E�Ց','wp-includes/sitemaps/class-wp-sitemaps.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sitemaps/class-wp-sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~[���]��=!�ذ���','�0a���\0��<�Eq\ns�1��Z�F�����n','',0,'?'),(' ��L�l_�\'�jc�&','wp-content/themes/mint/node_modules/less/lib/source-map/source-map-footer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/source-map/source-map-footer.js',0,'4��@��9#EUTI','4��@��9#EUTI','����Mo���]��w�B�{4i�į�sj��RQ','',0,'?'),(' �c-^q͗�j� o�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ClientException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ClientException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}��7`�cZ���','ti�����n �O/�\"\0kߓ�A/��.��','',0,'?'),('\n�E���n%�z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/namespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/namespace.js',0,'�V>�b;]���f�','�V>�b;]���f�','�kȆ��-�O�&�n���9��jۮ��y�_','',0,'?'),('\nZaG�����f','wp-content/plugins/envira-gallery/assets/js/settings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/settings.js',0,'8@{u��7�:-�6','8@{u��7�:-�6','m�:���r I��n�e��G[+r��x�����','',0,'?'),('\n\r����ͥ�9I�[�g�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/loop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/loop.js',0,'��s��6����M���','��s��6����M���','�<� ��}�y*�.��w��?�FH~�\rK��#xR�','',0,'?'),('\n� 6��4R�9���','wp-includes/blocks/social-links/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-links/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','У��}�@c�4����','.���+�x�+�G�n����ݩ��M���|�~�','',0,'?'),('\n\"�\'�࡛���ܹ�','wp-includes/blocks/blocks-json.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/blocks-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޫ�I<NjW��? M��','�\n���\Z�O��G��IHVy�X��HKF�cD(Z','',0,'?'),('\n#b�R��u�Yb�k�','wp-content/themes/mint/node_modules/clean-css/lib/selectors/empty-removal.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/selectors/empty-removal.js',0,'}!�0�m�y�[�','}!�0�m�y�[�','��#�U��N����·y�ʬ�B] �?w�P��','',0,'?'),('\n*�jَ�����膳�','wp-content/plugins/wp-migrate-db-pro/vendor/phpoption/phpoption/src/PhpOption/Option.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/phpoption/phpoption/src/PhpOption/Option.php',0,'�%��tX�k�_Զ�','�%��tX�k�_Զ�','�N$�ꓸ��P�,��;K���֔+�R3��','',0,'?'),('\n6��̋L��[�k!�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/__.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/__.js',0,'�3p��ҽ�2�\rҒ�','�3p��ҽ�2�\rҒ�','�K�W���Tg�Y0�m����a���o�+}','',0,'?'),('\n9�M�I-�n�0��','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-info-red.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-info-red.svg',0,'V���6y��ъ�2n}','V���6y��ъ�2n}','�X����&H����Ǫ��FM��}�Q��]','',0,'?'),('\n;�R�� �\rx�E�Y','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/QualityOption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/QualityOption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s.�OL|� D�,��a','�T�[�0\0���\Z�LMYk�ٶ�\r+\0�^$n.','',0,'?'),('\n>�S\'i\'�ic`','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/string.js',0,'�[;�8���:O���9�','�[;�8���:O���9�','7u�ҷ�/���3��M�X\'�vń\'�3a{','',0,'?'),('\n?Q\Z��l�*Q=(���','wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/bool.js',0,'u.T��$�� ���=5','u.T��$�� ���=5','�W�6���k�:*&�w�����s||�WE','',0,'?'),('\nRiF��s�Gf��O�y','wp-content/plugins/gravityforms/js/conditional_logic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/conditional_logic.js',0,'M):��?�6t,iAZ��','M):��?�6t,iAZ��','CZ�%��>� =�=�\01O�@zk�����gf��','',0,'?'),('\nS� ��\ZN�o����','wp-content/plugins/wp-optimize/js/jszip/jszip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/jszip/jszip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%�LܶLW�z�','\"�{4�_�h@C7���>��?�@����3','',0,'?'),('\nT��/\\9$Y�U\n��͌','wp-includes/customize/class-wp-widget-form-customize-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-widget-form-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�D*@6�{τ}��','�+֓zi���@����^F%5�qZg<��','',0,'?'),('\nX��ܨ�ح��T.mB','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Optional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Optional.php',0,'����>��\Z��n0 �','����>��\Z��n0 �','�\\�;�W?�NJ���.[��0m�iA>�b�A�ք','',0,'?'),('\nZ-�\n��Q\Z�ZV�Q.f','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/lib/mozilla-ast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/lib/mozilla-ast.js',0,'�>�W���j���','�>�W���j���','�Y*dFI�!e���=I����B_�\'�6��AC','',0,'?'),('\n`�\Zq&lBMY�6��G','wp-content/themes/mint/node_modules/bower/lib/node_modules/isexe/windows.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/isexe/windows.js',0,'VE�\Z���� �\"�EB�','VE�\Z���� �\"�EB�','6\n���NR�V�y���Z����\0P�gC}���\\�','',0,'?'),('\na�n\Z&����k�ɝ�','wp-content/plugins/wp-migrate-db-pro/class/Common/Replace.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Replace.php',0,'r)�\nr%@�Y��q�L','r)�\nr%@�Y��q�L','c�`�]�qV�2 ������\"�͡=��','',0,'?'),('\nf���Y��4&�L�','wp-admin/images/se.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ȔB�`��.}\'7:','Y������\"K��{�U���r�:2��JL���','',0,'?'),('\nh�w��-!P!`><�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Cookie/Factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Cookie/Factory.php',0,'��L��C�[*�)�-�','��L��C�[*�)�-�','��j�$��(�n���]�~�j��q@Zؤ��\'<y','',0,'?'),('\nj�x��n�q�Qh2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/uniq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/uniq.js',0,'��T,%�Т@�z�','��T,%�Т@�z�','�7|�����T�{��/E�[��=�*�t�&/x�','',0,'?'),('\nt�d7�{R�S����4�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hasPath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hasPath.js',0,'�(C<�G�?N�� �','�(C<�G�?N�� �','���~p�H���p\0\Z���k�J�qtm\'^�@','',0,'?'),('\nz�ŭ�}�{�.�u[�','wp-includes/block-supports/generated-classname.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/generated-classname.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1H��RO#�/���}','?����!��jCo�u�c3e��IB�=\'/�Ka��','',0,'?'),('\n{X%N8w�2?M4C�','wp-includes/css/dist/format-library/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/format-library/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O 2���t�O&t���','�|3RV���Y�b��yf��CEh ��%�5����q','',0,'?'),('\n}��\'٩B�3�9�:�','wp-includes/blocks/table/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/table/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U*N.y�^���Ϗs�','�Z>t>7^�ҙ�_���ͧh���������v�k','',0,'?'),('\n�$���p��P*z[','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Classes/ClassDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Classes/ClassDeclarationSniff.php',0,'����&x�C��','����&x�C��','�+�l��r!k\npko�KN��\"U(����q�|','',0,'?'),('\n���f�Ӆ;{�t��','wp-includes/class-wp-role.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���G&�c{�����','��{!џ�a��mT�>T��l�A��R9]�O\Z','',0,'?'),('\n��\0k�~�g_�<�A','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/lib/index.js',0,'i��Mxj������\":��','i��Mxj������\":��','�\\�m�\r]\"\n���h�9\\#.���9�T�H','',0,'?'),('\n���b-�V�:��|m��','wp-admin/edit-link-form.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/edit-link-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�3�g��[��vj','�JX��A�0���_\\4l�p�,-��:','',0,'?'),('\n����F���\'��8�','wp-content/themes/mint/node_modules/clean-css/lib/properties/processable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/properties/processable.js',0,'�� !ѕ�k���nYsA�','�� !ѕ�k���nYsA�','�h�[Q������m]I�Ųh�{�U��`c�E�','',0,'?'),('\n�����#���x|]','wp-includes/blocks/site-tagline/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9s�+2c�1�\\�%�\0{','��Zk�R�⨈�\Z5�p�����m\\�nz�','',0,'?'),('\n�ҟ�9���8���x','wp-content/themes/mint/node_modules/get-stdin/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/get-stdin/index.js',0,'�-��EN�1�ű�u\'�','�-��EN�1�ű�u\'�','v�O��v�ݜN\"�{��[|4}����','',0,'?'),('\n��NNM��ۑ4;�p�4','wp-includes/js/customize-models.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�eT�o�\n:ם/�0','0�Om ��.>j><��f��:���o�^��','',0,'?'),('\n���Q��wЗƼ��','wp-content/plugins/wordpress-seo/src/actions/indexing/post-link-indexing-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/post-link-indexing-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KYJ�$�q\Zn�/<��h�','���l\n�{i� �0�K��*����]o�ҌDA','',0,'?'),('\n��@,fu���g1=,','wp-content/plugins/advanced-custom-fields-pro/includes/loop.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/loop.php',0,'Uc���D$)>�\0��','Uc���D$)>�\0��','$���y�$��5UAQ�6T�WZG0����(82','',0,'?'),('\n�W\"ߐxn�G�.�V','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7815d9.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7815d9.min.js',0,'p#���\"�*]`1�','p#���\"�*]`1�','\0kU��2�g~��Kqn�G�J�K�XD�K��y','',0,'?'),('\n��ִ|�O\0���$�','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/TPF/Cli/ThemePluginFilesCli.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/TPF/Cli/ThemePluginFilesCli.php',0,'1[\'�\n�ftL�L�vR','1[\'�\n�ftL�L�vR','�^�� �3�F@�x�������}��%U�6>y','',0,'?'),('\n�ծ�����p7��l�','wp-content/plugins/envira-gallery/src/Admin/Envira_Notifications.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Envira_Notifications.php',0,':�7���+Ӭ��Y��',':�7���+Ӭ��Y��','������ ��\0�XĀ@����*��nW\\��[','',0,'?'),('\n�1�{�,�P��*V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/randBit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/randBit.js',0,'��:�B���\\�*N,�','��:�B���\\�*N,�','X\"\\��i|�`�Ӆ����O�řmŹ��;','',0,'?'),('\n�8͚)���}��g�','wp-content/themes/twentytwentyfive/patterns/template-home-photo-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-home-photo-blog.php',0,' �m{����� �9�',' �m{����� �9�','ɀgI?Yl�I��e��/y��\r�-Ω<S�\0','',0,'?'),('\nɬf�sSA~�֯��V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/concat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/concat.js',0,'��w��Iq{�ݭ&!{%$','��w��Iq{�ݭ&!{%$','��{)��v$%� �{rp����#wպT����\r','',0,'?'),('\nˇ���P :��a','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trimStart.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trimStart.js',0,'�J7\\F��\'�v�{���','�J7\\F��\'�v�{���','D�)}Gc��ܿ7�&<e��Z��~�b]��y�','',0,'?'),('\nђ�ø*V|��h��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random.js',0,'B��z��M��me�','B��z��M��me�','������RK\\{A��l�-߸�:�k�P�#VtW�','',0,'?'),('\n� ��_{�����','wp-includes/blocks/audio/theme.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/audio/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L@إm���_���YF','e�7�K�V�ӧ�i�d�ƍ����9k�y��','',0,'?'),('\n��h�c+�T%\0y[H','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LimitStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LimitStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�FO�D�Q�6�5f�','/���\'�|V\0����;jk�k��,�@���虩','',0,'?'),('\n���w�t��. ���','wp-content/plugins/wordpress-seo/admin/class-option-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-option-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\"�����|P�t}�','��5=J-���H�����X����!4���p�L��','',0,'?'),('\n�@�g��+T;V��','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ίU����\"�\"��','�:��Q��o �硛,+�Q���j|3���ό�','',0,'?'),('\n�\r�B��p̭','wp-admin/theme-install.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�P� �1H�\"��S��','ɥ<��ć�^�:#<��vt��B\\k� +�o�','',0,'?'),('\n�\'|���kH��-��\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/stubString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/stubString.js',0,'<�\"Hi3��H��ː^','<�\"Hi3��H��ː^','����r�+!����1x�1b ��\\���V\rR','',0,'?'),('\n�QV5�adצ|��F��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/inRange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/inRange.js',0,'���&R\rA��G�ɓm','���&R\rA��G�ɓm','��B������W\"�g(6�S��|8\rz�7��µ','',0,'?'),('\n��:�X2�L��nc','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S��ɛm���E�}Zh','��-y��.�=�U��6�\n6��8h&��9#','',0,'?'),('\n�Gƙn��\Z@1+U]�','wp-admin/css/revisions.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/revisions.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9�vZ�$v~�x�','����\03���O��^�_Ц���V�;��','',0,'?'),('h[��6�=P;9��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/reject.js',0,'5�\Z�Ed� YY�N��','5�\Z�Ed� YY�N��',',�S\n��#����Ҍ��[y%\Z�&��sR�','',0,'?'),('G��H�\Z{�g��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/CanResetPassword.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/CanResetPassword.php',0,'�����Ϋ���x8�','�����Ϋ���x8�','k�%���@f��\r9Z�#��U�M�+��','',0,'?'),('�I�Uל<GƠ\rS�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/head.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/head.js',0,'E{�́ ��>�ީ','E{�́ ��>�ީ','�C��H�DG�*�`PНŴQ�e�K!��','',0,'?'),('\nH�e�w�&�����o�','wp-content/themes/mint/node_modules/is-arrayish/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/is-arrayish/index.js',0,'7��o^�2����n�','7��o^�2����n�',')���}?u\"7F�_�xl�D����3���\Z�A','',0,'?'),('\0$�\">�Xuآ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/dropRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/dropRight.js',0,'h��3�JV�[i','h��3�JV�[i','\"�=�}�����9,�H���HYS�y�h�R�M','',0,'?'),('�L�f�\"fI�_��N','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/transform.js',0,'�i9���p��ُ�oBP','�i9���p��ُ�oBP',' ��C��RjL�&=��*�E,uD:5Z䨎�L�','',0,'?'),('\ZE�������','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Event.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Event.php',0,'�����<��m','�����<��m','��\rDa�@��~�UfQd����,gi�W��','',0,'?'),('��A6���/�','wp-content/plugins/wordpress-seo/css/dist/modal-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/modal-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!օ���G�C����','�>�����O酵�U��.x S�t�DS+<','',0,'?'),(' �� �6�.+�:w','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lte.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lte.js',0,'jڙ�ij����1,�OG�','jڙ�ij����1,�OG�','��8��pN;��ss�O�#t*�EB�W,�V�,','',0,'?'),('\"w%�_��K\\��u�','wp-admin/images/wpspin_light.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/wpspin_light.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��$����n��4H{��','-*z�n�D�,\"aH�K�H�rޱ~\Zy��\Z�%�','',0,'?'),('&c�YD�#�P{+��','wp-includes/js/jquery/ui/effect-blind.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-blind.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E\Z6��yF(d�ߝ','x�/�ׯ�H���#&.�\ZZ(�H��Vr�Ѫ','',0,'?'),('\'�)gl�9�#����','wp-content/plugins/wp-live-chat-software-for-wordpress/languages/wp-live-chat-software-for-wordpress.pot','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/languages/wp-live-chat-software-for-wordpress.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\'��ek��W��','*T@�Z���~�\'a\n�\n��T�U5\rr*T�Or�','',0,'?'),(',+E&*tӁh�g�N','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�7.��Q���\r�V','\'/.\rf=�П&ō�ܐ�5j�!{\0�W�QP�','',0,'?'),(',������!MCJ��','wp-content/plugins/gravityforms/js/jquery.maskedinput.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/jquery.maskedinput.min.js',0,'�n<�c5�`��|3�','�n<�c5�`��|3�','\rӍ�\n\r)�jE��p%\'�z0LL����|S��Q��','',0,'?'),('.j�nu�\0Z���Q��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/EvalObjectFactorySniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/EvalObjectFactorySniff.php',0,'��<5��ye��͌(�','��<5��ye��͌(�','��4�wٻEݖ�����y���[�5���#�`�F','',0,'?'),('1�\r{ц�nDe��P]�','wp-includes/blocks/home-link.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/home-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ir��0%��\'ygO3��','t0R���y�%�gj���/:�\'v0写Q','',0,'?'),('6��iNql����_','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Factories/UrlProviderFactory.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Factories/UrlProviderFactory.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�\r!��^[TT��','q;��*;XI=��Ogs qu��c����!#.�','',0,'?'),(':j��(v1�x�m','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/curryRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/curryRight.js',0,'����5���b���/Z','����5���b���/Z','�D��>�]�.� ���82^�S��c\\�S�','',0,'?'),('A`�k{�n���/*ScN','wp-includes/js/dist/vendor/react-dom.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/react-dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(��#�=m��tg�i','G:��Z�t�f.=_Y���\nju\\�1��;�','',0,'?'),('Aړ�Np�\"%���Z','wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/qs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/qs.js',0,'ӊn��j��o�w�','ӊn��j��o�w�','ɭ �h���թ�a���[>m��H~\r-�A�]','',0,'?'),('C�v��<`8���M���','wp-content/themes/mint/node_modules/bower/lib/node_modules/ini/ini.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ini/ini.js',0,'!�{�͓7��T� ��','!�{�͓7��T� ��','K���2z�]�!\\͘��* ��o�5�\n\n�X&','',0,'?'),('H�`\0N���gzr','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php',0,'~�k�D�769����[�','~�k�D�769����[�','���d�U%G�������9^BS=^�u\')�(��','',0,'?'),('M��Ri� ��ΙT=�','wp-content/plugins/envira-gallery/src/Frontend/Standalone.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Standalone.php',0,'\r��N1����*���','\r��N1����*���','���b�k�����mE`�D��gC=Ȟ<���','',0,'?'),('P�h�ui8V��\0kU�','wp-includes/blocks/post-date/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-date/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?�e�7FZ�=Gm{','��\n!x��`ѯ�2M���ི��Wb���','',0,'?'),('Z��v� ��2��*۱�','wp-content/plugins/advanced-custom-fields-pro/lang/acf-el.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-el.l10n.php',0,'p�}Z�b���E�-�\0','p�}Z�b���E�-�\0','��^��\"h[�S��rXC,=�/�K�j�}�','',0,'?'),('fSb�2^����A\0�w','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mixin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mixin.js',0,'ɵ�5\n��ϫ��s9S�','ɵ�5\n��ϫ��s9S�','��a����H���/�\0��҇�y܍2G���','',0,'?'),('g+{��n��}��#','wp-includes/SimplePie/src/Core.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ز3aݩ�0)��_�S','���760�w8��([���o�W��K��4d���','',0,'?'),('i�E�$��ڄ+� �I','wp-content/themes/mint/node_modules/domutils/lib/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/lib/stringify.js',0,' ߛe\"5��@~�{',' ߛe\"5��@~�{','�)��g\Z�$�g�,7ʘ�}:��N�R���6.8','',0,'?'),('k�ß/�V]h+��','wp-content/plugins/wp-migrate-db-pro/class/Common/TPF/Manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/TPF/Manager.php',0,'�[y����5{=K��','�[y����5{=K��','�> �~�C��(Z�9Pʝ.���.H�','',0,'?'),('ob#�w�;Ri����\n','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�o����SG���','w�vөT��V�{��$r`��oN.��A(�D3\n�','',0,'?'),('p�젋��pŔ�G��','wp-content/plugins/wp-optimize/includes/class-updraft-file-logger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-file-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`���wX���\\_�','U9��K���3�ט�ɬ����/�t��','',0,'?'),('vD+��j)�$�- �h','wp-content/themes/mint/node_modules/less/dist/less-1.6.0.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.6.0.js',0,'�Ii��Nv��iNc','�Ii��Nv��iNc','4ɸ�Y��]���\r�\\�S����6�=����','',0,'?'),('x�Gb;]�ʦj��J','wp-content/plugins/advanced-custom-fields-pro/lang/acf-id_ID.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-id_ID.l10n.php',0,'Wx��z�c��ϟ:','Wx��z�c��ϟ:','���V�ګ��+A�����]$�tcy\\�Z','',0,'?'),('}4�;Es̵�D','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/include.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/include.js',0,'!юߌ�i�xk�}�\r','!юߌ�i�xk�}�\r','�&�\"{%-�|��Vv<ڑ���\ǹ��F��y','',0,'?'),('}6�q�e�\n�Dj�Z �','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/led-lighting-for-workplaces/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/led-lighting-for-workplaces/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('}spK�� ��:�','wp-content/plugins/akismet/views/setup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/views/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�����O�KJQ���','�S�u��);�\Z�Ld2-V�\\;0���uW�jN��>','',0,'?'),('~��U��\\�[)+�Fg','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php',0,'��o�R�,F��\ZA��','��o�R�,F��\ZA��','t�S.�rl�g���x祟#ܒ�G�e��,���','',0,'?'),('�����Y����q�','wp-includes/customize/class-wp-customize-partial.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-partial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�)fIf8�X��KO','Im�g\0�W�?T�,m�9r���Lm�y6�@�y<','',0,'?'),('�������%����q�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/MoFileDumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/MoFileDumper.php',0,'4����^�(P/���','4����^�(P/���','X���\0<��=dfCm�5�5�v��!D>dZ^d�','',0,'?'),('�ߒ�go�\0m�����','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-salmon.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-salmon.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e��<\"���w�\".x','�>�;�CS�4�QX>qXO��sm\Z\Z��','',0,'?'),('��)�)��}�*�]�','wp-content/plugins/wordpress-seo/admin/roles/class-role-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/roles/class-role-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʭ �2w[�eAyb5�$','��VE���OhۃO�NWZ�.(�`��8�K�R','',0,'?'),('�\"���0_��fз�','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�sh)~G�R�wp,',']傼�S���#����`������<�Y��','',0,'?'),('�.�XO�ۂ܇7��','wp-content/themes/mint/node_modules/less/test/browser/runner-rootpath-relative-options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-rootpath-relative-options.js',0,'�� áiC7���ul','�� áiC7���ul','�9b)���\n��IYiE4%KFTx�]�M���P','',0,'?'),('��-+�!+f%�&y','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ForLoopDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ForLoopDeclarationSniff.php',0,';�7�(W�=��\0ͯ\n�',';�7�(W�=��\0ͯ\n�','��~(\\&bų���d��cIU����7�PI�','',0,'?'),('���,H(b�_F�O','wp-admin/admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'[~���7��.�_x�','�1�>��#��\"Zө�Zѩ>n�4\'d�^!�s','',0,'?'),('��HVե�d��p�Vp','wp-includes/images/media/spreadsheet.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4���\0T��̇?�','����v��)�\n�6Zl��2���В1�!+ �','',0,'?'),('�V�u�I ��u�3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/sort.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/sort.js',0,'��f���)U��6�\0p','��f���)U��6�\0p','�I۲?�nS�--��W���~�c㬾���\r��','',0,'?'),('�j���iI�0Nj��','wp-content/themes/mint/assets/vendor/jquery/src/queue/delay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/queue/delay.js',0,'nR���&��F����R�','nR���&��F����R�','U���~!� ����w*M�=�Yހoq','',0,'?'),('�{����/�쉉�','wp-content/themes/mint/node_modules/less/test/browser/runner-browser-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-browser-spec.js',0,'n�9&�A2Y~��R�L�','n�9&�A2Y~��R�L�','�Q����2GC�����9����,ώm�bf�x','',0,'?'),('�5�Å�ƌ���m�','wp-includes/block-patterns/query-standard-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-patterns/query-standard-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','у��B��U�CL�{�','�:�Τ~���&�\r�CF��+��I�q_�e','',0,'?'),('�z��?��W ���','wp-content/themes/mint/node_modules/typedarray/test/tarray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/typedarray/test/tarray.js',0,'��a)���xi<(��&A','��a)���xi<(��&A','ڷ\n<f�� l��w\n����(��Q�Uy�ʪ�','',0,'?'),('�ן\\dz^p��qT��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_stackDelete.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_stackDelete.js',0,'��Q���MD�,&N�T','��Q���MD�,&N�T','�q��� u.�k�=�Iԛ�u�!�_mW��','',0,'?'),('����������iR�','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Store/FileStore.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Store/FileStore.php',0,'/�#8����r��W','/�#8����r��W','.��5��8�����pC\0��3r�:�^H ','',0,'?'),('���?=�7����7�R�','wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/endpoints/class-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"^U����f�i���','\"Do��$=�D�������9��1Qᜋ!\r��&�i','',0,'?'),('���p+�=¡�\nh0','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Minify.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Minify.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�8&�p�����=�','ej3q1K;1|?�Ǯ��V\n#�o�W��\rk�{','',0,'?'),('�V�(^ -O�\ZT0�{','wp-content/plugins/wordpress-seo/inc/class-wpseo-image-utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-wpseo-image-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�O��;\\-��3�)','x|��CY�5c��:ܤiJ�r\\�G�c�W','',0,'?'),('�����?%M ?N�','wp-includes/js/dist/vendor/wp-polyfill-inert.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӷ�F�^�pt<jQ�','�76G�zms��qz&��Bȃ���� s��','',0,'?'),('����V��6T<��','wp-content/plugins/wordfence/modules/login-security/css/admin.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/admin.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JXlX��+������',':�5J�pż�� ���W�\"��{Ozk','',0,'?'),('����K��7��X�)l','wp-content/themes/mint/node_modules/bower/lib/node_modules/infinity-agent/http.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/infinity-agent/http.js',0,'�?[�k���ҤeJI�','�?[�k���ҤeJI�','J��欞n?���l� I������\\�`o�]�:','',0,'?'),('�ֹ{��A<|�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/timeout.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/timeout.js',0,'%<8��\ZI����r�Ņ\"','%<8��\ZI����r�Ņ\"','@���o�woӜ �7W[^�% �NH�]�E�zF9','',0,'?'),('ǰ�[\rZ\Z�h�� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findLastIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findLastIndex.js',0,'N\"Puɇ&S�}6����','N\"Puɇ&S�}6����','Tv3oi��!Wڝ����~���$��Y�p�','',0,'?'),('�+�.-G�ByN�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang.js',0,',���A��n��Ng',',���A��n��Ng','�{������)��^��2Ki�#V:/�%BF�U','',0,'?'),('��S�,[�S=��)�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/forInRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/forInRight.js',0,'�W%�6�`ח*l�','�W%�6�`ח*l�','o�Q�H\"��w�M�P1�ee�\r�(��Qzż','',0,'?'),('�>��Q�r���K~��','wp-includes/blocks/post-content/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-content/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�^��{�V5*M','l�p��[xu?æ�\Z�K�W�6dt}1W�6oh`','',0,'?'),('߮`��\r��=�','wp-content/themes/mint/node_modules/grunt-contrib-concat/tasks/lib/sourcemap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/tasks/lib/sourcemap.js',0,'��0�6w�p�30cD�','��0�6w�p�30cD�',';|�ٲ��gS�AL8\\�X��Zm�����','',0,'?'),('�\\א\r�!����&=O','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/array3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/array3.js',0,'y�ܤd��(��r>�P','y�ܤd��(��r>�P','�ԉz/W8*:�r6�K���Vt���ќ�{','',0,'?'),('�:,���m��I�QB','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsByTagName.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsByTagName.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B��\n4xl�\'�%�t�O','���ƶ_����3����&5�V�9u\"�qь�','',0,'?'),('�kO��Ǜ�?((�͆','wp-content/plugins/wordpress-seo/src/helpers/import-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/import-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m��Կ��,)U�X?%�6','�l�fD�ps#\r�&�@?`J7Qۺ� VA(','',0,'?'),('��X���e/Y@>�','wp-content/plugins/wp-optimize/images/notices/keyy_logo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/keyy_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �\"o������)�W/','(�i.ثo��?bF��CE�v���wK��','',0,'?'),('�\n��UN~���\0m��','wp-includes/js/codemirror/csslint.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/codemirror/csslint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��M_ϱI����l�',']�ih4F��ò�\r��U����WEK(�P�d','',0,'?'),('��L�����W��Ȕ<','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/index.js',0,'���H�Ihhc�M�з^','���H�Ihhc�M�з^','��(b(�T�F�>¤�����1�w�U��88','',0,'?'),('�R!.|w%�[og��I�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/toUInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/toUInt.js',0,'�W���_�O:JT','�W���_�O:JT','�R�j�x�q��m�N�3��\'B3m�ahb��','',0,'?'),('�c\"ml� �Ǟ>o','wp-admin/images/wordpress-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/wordpress-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N�%�d���g���p','�\"�u�j-QE\0��[�gL�Z5�MD�:','',0,'?'),('vm��o����bh��e','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]_�#D���\0��','\Z ��ے�%�4~N�~Gh!b��:w��Ɍ��\'','',0,'?'),('[4a��?f��L (p','wp-content/themes/mint/node_modules/bower/lib/node_modules/nopt/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/nopt/test/basic.js',0,'�IG��r�d\Z^4YI','�IG��r�d\Z^4YI','Zb=�e����#2��>�ٸy;m�ɟ�3/�)�n','',0,'?'),(' c�vR!t��Hv�J','wp-content/plugins/wordpress-seo/src/presenters/rel-next-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/rel-next-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-,�;��N9x[�=','7Ո�P4�����x�������ǚhkr�/�d\'','',0,'?'),('�%,S���9�Gav','wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qP��W��l-\Z�\0WU','<j�8jR�;� ��x (N:i�u��w��U�3�','',0,'?'),('���7����\n\n���','wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Exceptions/WorkerAttemptsExceededException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Exceptions/WorkerAttemptsExceededException.php',0,'@^����Dc���dp','@^����Dc���dp','�c#�߅��&O��]��ƊeA)��z�M���','',0,'?'),('$%#��_�U�_d�','wp-content/plugins/wordfence/views/options/option-toggled-select.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��|C��w@��m�','5�ã\0ӊVb�A�Ň���.Z�;Mz�q]��','',0,'?'),('&�<�Z.i)��� \'','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Terminal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Terminal.php',0,'5O�F5�^��T;B��','5O�F5�^��T;B��','�����K�O��R��\nI��y9���','',0,'?'),('*�O�������i','wp-includes/customize/class-wp-customize-media-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-media-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\+A�Di�:cсS�','��Xa������RPX���xH�~v��n\n�@{','',0,'?'),('7�.O��ĉ̹�aI�','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/loop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/loop.js',0,'�:���R�ɇ�\Z�','�:���R�ɇ�\Z�','�V?���U8\r���|*/(�4�f��]�','',0,'?'),('D�� �2��K|&�','wp-admin/css/nav-menus-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Y��j�n���','�\'�S�\"�{x+�j�a��6��B�T��k�','',0,'?'),('H��C(\Z¤X�=�/a','wp-content/plugins/wp-optimize/templates/images/smush-popup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/images/smush-popup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J��0W��vWP/�','�qo�A�zF��_oOq�*���؝�U8���a?�','',0,'?'),('Q�10�����G��,','wp-includes/sodium_compat/src/Core32/Curve25519/H.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x} ��pc��K�O�','(H>�0�}���8:e�)T��N�/�z�','',0,'?'),('V��~�\0I�P���','wp-content/themes/mint/assets/vendor/jquery/src/core/parseHTML.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/core/parseHTML.js',0,'Cn�_%�X����I','Cn�_%�X����I','d8!�{�9��K�Oq>�B�s�_�(����<���H','',0,'?'),('_�S�G6.P-\n��f','wp-content/plugins/wordpress-seo/js/dist/externals/relatedKeyphraseSuggestions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/relatedKeyphraseSuggestions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�||Vba����� k','g^+�\'�h�h9����[�&�~~��p\'y��lZ','',0,'?'),('b,[�B�/߄���]','wp-content/themes/mint/node_modules/less/lib/less/tree/url.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/url.js',0,'C��:�\\A(:�,�1��','C��:�\\A(:�,�1��','a�T���;I�F�1�wP���i\r�$�_�','',0,'?'),('dW����9Ys�[��','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<�EF�C�\0��8,','k�tv����+�#���?G�^-閪R�-Y�\r�y','',0,'?'),('e�Q�.������&','wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/dist/source-map.debug.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/dist/source-map.debug.js',0,'_��_�=���NJ��','_��_�=���NJ��','��(ëEJDn2A5.\0��W�E��F���','',0,'?'),('f�̜�#]�7�*�.�','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/home-battery-storage-is-it-the-best-option-for-your-household/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/home-battery-storage-is-it-the-best-option-for-your-household/index.html',0,'w��x���1��qԌ','w��x���1��qԌ','���#:�?}���f��w�\"4�4���t}�]��','',0,'?'),('o��f\"!� =p�eA�','wp-content/plugins/wp-optimize/images/logo/wpo_logo_small.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/logo/wpo_logo_small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UYc�6<�����\'��','���]�+������M.�J�A+�����[�\'Y&','',0,'?'),('q�F�K���I�>��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isMatchWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isMatchWith.js',0,']_&y��S<�\0���?�+',']_&y��S<�\0���?�+','���i&�����ϒ���8G���H��','',0,'?'),('s��,-�ɀ�A��r�','wp-content/themes/mint/node_modules/minimist/test/dash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimist/test/dash.js',0,' 4�3��Ū��?�',' 4�3��Ū��?�','�Z�OH�߸�P���P_�Tn7fvT&�Jo/','',0,'?'),('y����\'��K}��k','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/crop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/crop.js',0,')�5t�D߰�����u8',')�5t�D߰�����u8','Kx�;�xc}�`��3��Y��n����Q<\'�','',0,'?'),('{�M��i�i2n��6�','wp-includes/js/jquery/ui/effect-highlight.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-highlight.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�l�ۖ)��S~|�L','���F����z���mUT**`��@��U','',0,'?'),('~/�%�5!~o��i�z','wp-content/themes/mint/assets/vendor/jquery/src/var/strundefined.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/var/strundefined.js',0,'�E,��S7��\\�Q���K','�E,��S7��\\�Q���K','�F�j� ��1��O��x�R]���D���','',0,'?'),('��b)����۟�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseForOwnRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseForOwnRight.js',0,'��0�r�\n�G��PF','��0�r�\n�G��PF','��DCp~���~�&�4�.*gI�H?˱#�','',0,'?'),('�|�K��x��\\\0��','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/index.js',0,'��ݷ�<��v#Ý�','��ݷ�<��v#Ý�','R� �9ͽ��WP�|��n�8&�0���~\0$,','',0,'?'),('��P>�Fބ=�_�','wp-content/plugins/wordpress-seo/admin/formatter/class-post-metabox-formatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/formatter/class-post-metabox-formatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f�T�*���>�G �d','��Vܧ�*b��?����Z���Y� %G','',0,'?'),('����<{��Bz','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/select.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/select.js',0,'�g�V4�]Pڸ�� ','�g�V4�]Pڸ�� ','�1�\0R~bV\n.���~�R�[k�G��y����\r��','',0,'?'),('����\0ߒRE��\r�6','wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-options-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-options-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���n|m\n�;���','<�*p�&�z��#��t٧�R���8i�\'','',0,'?'),('��H_i�\nZ9��$g�','wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C���2�\\8�0��','ME�Ie_�sZx/��|��;�J��z·���M�-','',0,'?'),('���s�s^G�x蔛�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g{�Z����OϢ�','����;���@#�X�ҽ*ȭ��(z� ��&�','',0,'?'),('���,����\Z�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/calendar.2c8b6ac1.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/calendar.2c8b6ac1.svg',0,'�X�LBz��w*�MF�sg','�X�LBz��w*�MF�sg','w &�`p��+s8�_Ns��;Y��d ��XC�','',0,'?'),('�3��{��1�w��','wp-content/plugins/gravityforms/currency.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/currency.php',0,'-^�ZY �f��T���','-^�ZY �f��T���','�KRj��O��������Pd8̳����\r��','',0,'?'),('������+j�?,-','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function.js',0,'�8�.��1�譡��','�8�.��1�譡��','#���!FΚU< J�?{㶿��)����f֭�b�','',0,'?'),('���T�<�AՁ�&�k','wp-content/themes/mint/node_modules/bower/lib/node_modules/ecc-jsbn/lib/ec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ecc-jsbn/lib/ec.js',0,'��&��]�8��{?.�','��&��]�8��{?.�','��6�W��<p+�Y�=ݺ��\0(������/���','',0,'?'),('�\r6��\Z͌�����','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3�<���?=����','ڢ��;?c<I�;�7&\'%[La�Y�h��r�','',0,'?'),('�!�V��3�1t��s-','wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u��3N�O� �V��',' 8��1$^,�B>�`&]�3D�� �\"!��','',0,'?'),('�K�~G��j�t[4','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/module_dir/zmodules/bbb/main.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/module_dir/zmodules/bbb/main.js',0,'�8~X�űTv�9_��','�8~X�űTv�9_��','E�|D�ڄo����l�xd�kо/]�ѐ�P�','',0,'?'),('��:�iiR�¿lp&[!','wp-content/themes/mint/node_modules/bower/lib/node_modules/loud-rejection/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/loud-rejection/index.js',0,'2��>�/~�]C* �L�','2��>�/~�]C* �L�','Y9s>a�j\05��Jb�ϧ�C��?�ѷD��1','',0,'?'),('��+4�ٽ!�i(�s�C','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/partial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/partial.js',0,'�5�H��MԄs���','�5�H��MԄs���','�R�!��8�Ւ�}��\\�v(���>����T�','',0,'?'),('����&LͶ�1Y�~','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ClassCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ClassCommentSniff.php',0,'�ɝH:���}6����~','�ɝH:���}6����~','ƿ*ja���O���x�l\0�$�E������H��|','',0,'?'),('��A��Fk�','wp-admin/js/privacy-tools.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/privacy-tools.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȅ�h\Z��W;�K\n��Qj','��|9�n\n��Ȭ�������uO/C���݄','',0,'?'),('���&�]z�.�','wp-content/plugins/gravityforms/images/gf_block_preview.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/gf_block_preview.svg',0,'�Ӭ0F��0���{?�','�Ӭ0F��0���{?�','�ɷ<��8��ƴ�X5lM$������v`/0','',0,'?'),('��\n�P;�\'<��:�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/max.js',0,'CH��]\Z7��\n���O�-','CH��]\Z7��\n���O�-','-0�}NXwl���SH�芁��jB�3�|�gK','',0,'?'),('�\0@���/ю�W7� ','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/if-not.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/if-not.js',0,')f,Q��)8�$C(�I�',')f,Q��)8�$C(�I�','F��mBX���#�6XH��ǟ�EB\Z��d�Zq@','',0,'?'),('���W��l\n�Sxc','wp-content/plugins/wordpress-seo/admin/class-admin-asset-location.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-admin-asset-location.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�A׳��W��ȑt','AL����U��k(��5Ɖ\"�M��8��ٍ�','',0,'?'),('�Z�u���iigԄ��','wp-includes/js/dist/nux.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/nux.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y$?jW+|Uc��.�','h��\\3ì�r��4\\�;9��כ��O�Qϛ�;','',0,'?'),('�:�Sao6��h��','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/README.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��U�vr���I�-8','ݮ��T�qʇ�4��m�:K���^v��cI�','',0,'?'),('��;X\"�`�uɜ','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-form-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-form-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@��%u�7Ygcm&�','��}E�ֳ��$-���Lj�$���T����V�','',0,'?'),('�ɽ�������','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/mangle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/mangle.js',0,'b�;�q��Wt`�Y�v','b�;�q��Wt`�Y�v','̻e�d�neC� +�\0l�á����bFe�@�f\Z','',0,'?'),('��d篆bd]','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isEqual.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isEqual.js',0,'H� �%X.8eY�C��D','H� �%X.8eY�C��D','��Fr\\*)��|��9A�H�!}a<y�����','',0,'?'),('����qH���,5�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/license-checked.44034878.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/license-checked.44034878.svg',0,'i��#�:Æ7,os\Z','i��#�:Æ7,os\Z','f� o,�\n��l��=+B������Ơ�i\n�b7','',0,'?'),('\rR����$��-LD','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posttype-defaults-settings-importing-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-posttype-defaults-settings-importing-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����\ZW�_5\n��','3D����S��I;�͂>U6S�jM\'�wѱ�0��','',0,'?'),('\r}�0��V�\\x��_��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/set.js',0,'�J�|����','�J�|����','5T���}�ĥ��9xT!%+��x�ZX�)��sy','',0,'?'),('\r�5R*~�1�*� ɹ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/index.js',0,'�i��S��|��_�+��','�i��S��|��_�+��','�@��F�\0�o �R&����Z����m���','',0,'?'),('\rܹ͛�}C�L��R)','wp-includes/blocks/file/view.min.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/file/view.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u�0{o�s�^.j+','��l)�g�L�A���.�m�H�,\Z8zr��X','',0,'?'),('\rS���&=�{��\'7','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/retry.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/retry.js',0,'!�zq �&�j��E{','!�zq �&�j��E{','����h����hfH�鈽�j�.��h�','',0,'?'),('\r\n9wŁ��L��c���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/functions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/functions.js',0,'O�ԂP�H钧_��W�','O�ԂP�H钧_��W�','1�p)Jǀ�~��{6_�8f�%�{��','',0,'?'),('\r�g�����e��','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/mapping-list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/mapping-list.js',0,'�=I�e��&�:�ށl�','�=I�e��&�:�ށl�','q:H�J^��� ���8�I�J]:{z\0���','',0,'?'),('\r��Ts�Z�+m\r#','wp-content/languages/admin-network-en_GB.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/languages/admin-network-en_GB.l10n.php',0,'zsa�t)�I�X�t�!�\n','zsa�t)�I�X�t�!�\n',')}���v�����#i}kCjɈ��K�]','',0,'?'),('\r\'��: a���F ','wp-content/plugins/advanced-custom-fields-pro/includes/forms/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/forms/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('\r(m�4g$@P�`C�\Z�','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-true-false.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-true-false.svg',0,'94��T�v��\ZɥY�y','94��T�v��\ZɥY�y','�r�`l�Y�j��q�[p�ԯ�o��.��By�JM','',0,'?'),('\r*WUh�\n)��Sh�μ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/keys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/keys.js',0,'��%ɶR;TE(f� �','��%ɶR;TE(f� �','CNn�\rNjܡO}��p�\'�z�j!���9�����','',0,'?'),('\r0��G0�xU-�Y�','wp-content/plugins/wordpress-seo/src/general/user-interface/general-page-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/general/user-interface/general-page-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�.3�!��F��)�','pk��FhA�w�3� g���R�-(� ��j','',0,'?'),('\r7ɟ���\0;d�KK��','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/collections.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/collections.js',0,'���[qw>�����','���[qw>�����','<n.Cy�韗�5��b�E��W 2I�%�ϋ:�','',0,'?'),('\r:���FzI�vj�5','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/safe-string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/safe-string.js',0,'\r�V�$\Z9άr�*\"�O','\r�V�$\Z9άr�*\"�O','���Tu5Ҳ��I}�=�0��L$4�(Lu��H�','',0,'?'),('\rD�{Ƹe�td��7\Z��','wp-content/themes/mint/node_modules/bower/lib/core/ResolveCache.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/ResolveCache.js',0,'(�FeO��1�Q70','(�FeO��1�Q70','������{j�Խ_]0k�xpR@WLO��q�','',0,'?'),('\rEP7�I�<m����g','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/i18n/de-DE.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/i18n/de-DE.js',0,'���s���A��f���','���s���A��f���','�y�;6�R)�\r�k���I���&V�~ZI\'(�','',0,'?'),('\rN��=�z\r�-��F��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/matches.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/matches.js',0,'|/x�=9cЃ�=�\0','|/x�=9cЃ�=�\0','] `�HP�*h\"y5Yc��!�mR�iu��=�','',0,'?'),('\rU�j�zh�2/�9�fM','wp-admin/js/application-passwords.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/application-passwords.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�]�!E���VYS=��','$p9�#o��,:�@|��Z�\0�ۻ۵GU{%','',0,'?'),('\rU痍F�1�oN]�{�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �ewP��x8���','\'�f�5��q�2mW�Q4B��p.F���l��\Z�$','',0,'?'),('\r_��\0I�=���lg57','wp-content/themes/pinnclonesmalltest/resources/views/layouts/app.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/layouts/app.blade.php',0,'�TN��\nbu\Z�Ȩ','�TN��\nbu\Z�Ȩ','blb/���&�6PM|�k�~�a\'ë��u�+��','',0,'?'),('\rb�{y2��`�!�/���','wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/file-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/file-test.js',0,':�tS!���h�',':�tS!���h�','��D��|<���ΉsK���TdAyջ�/-','',0,'?'),('\riв]!:��L ,��','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/blob-constructor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/blob-constructor.js',0,'B�{�9��h�@V��l��','B�{�9��h�@V��l��','���1K����#�omt���x#Y.���$��A','',0,'?'),('\riR^c����a��E��D','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/timezoneOffset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/timezoneOffset.js',0,'�/��-�[�g\Z.n8','�/��-�[�g\Z.n8',']FWV}#:n��6�\r�8�}�#���X��*�=','',0,'?'),('\ri^���X��:�Z�X','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/randInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/randInt.js',0,'�u����wKH���w�','�u����wKH���w�','g5A�\"�-�Y�kp�Q�\0<A,�|k���','',0,'?'),('\rr\\�|r;��?����J','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/has.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/has.js',0,'�����OA4A���b�','�����OA4A���b�','��erd<37_=]��:@&��&��@RB��','',0,'?'),('\ruE2��@�ļ��Y_��','wp-content/plugins/wordpress-seo/images/support/support_forums.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/support/support_forums.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z���Mq��\0�','�t\0|&�<\\�k�6�\Z��c�S���݉�','',0,'?'),('\rxݍ�^���\Z���<;','wp-admin/my-sites.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/my-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/�t��f�:i��s','�6�����K��\\6��qXF$P�B �C�','',0,'?'),('\ry��U���@ۿUB','wp-content/themes/mint/node_modules/less/dist/less-1.3.2.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.3.2.min.js',0,'2s:�J�����x�\'','2s:�J�����x�\'','zh_����\'H&X���q�m�b�e�7�.\'Kf�','',0,'?'),('\rz�����D�D��','wp-content/plugins/wordfence/views/options/option-toggled-sub.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m�����_�','��RȆF\nD�~H�08),:llW�n�\rc��','',0,'?'),('\rp�fx�\0��=.\\�','wp-content/plugins/envira-gallery/src/Frontend/Posttypes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Posttypes.php',0,'���BvF,��L#�','���BvF,��L#�','l�\n�kmj\na��\ZX��*�Xpݴ�&� ','',0,'?'),('\r����X����+�-Ta','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ����O>A�+�=\Z,','��U�s����D�MÙ�d��(�\0��ā�~���','',0,'?'),('\r�vN��[B��&��SL','wp-admin/css/common.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8�����@ݴ.��','�\n\"��D�VL}w�|�i�\n ;��v\r�A���','',0,'?'),('\r�����d��`��kG�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/ConsoleOutput.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/ConsoleOutput.php',0,'4��zͤ�g{g�dS& ','4��zͤ�g{g�dS& ','@�AZ`�AU�����e>�d����H*��','',0,'?'),('\r�ܳcT���Bn�','wp-includes/blocks/loginout/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/loginout/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�nm�%H��L�zd��7','Xr�a!�Q{Q<N{��\"�۷Wt�S�g�,�','',0,'?'),('\r�W� \nZ��f2z��e','wp-includes/js/dist/script-modules/block-library/image/view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/block-library/image/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>��P�I>ͥ','�=2R,w\n�\Z`E&��q��m�|�}�l҂;͢','',0,'?'),('\r�u�j�%�DQl��hע','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/tracking_code.html.twig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/tracking_code.html.twig',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�/��C�\"�Y�','���n _ы�t����F�����E;}!*','',0,'?'),('\r��<�:� -{��̖H','wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.K�H����$�M,���','��q��NCd���?�#�\r�g復�ie�-[��b','',0,'?'),('\r�,�F,�L�v�; �c','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/Bulma.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/Bulma.php',0,'�.�y�×R>��<�','�.�y�×R>��<�','\\�����-:�Zb$�h�2�������#��q','',0,'?'),('\r�ҧxOz��z���h','wp-includes/class-wp-customize-panel.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-customize-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>���ׁm���U','����IJ\0|�U�ޭ�����w��� { ','',0,'?'),('\r��:�:���HH�:d','wp-admin/css/edit.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�B^/� �=uE;�','6&����h��1h\'���/�8�Z��2����}','',0,'?'),('\r�ހ��c$�Z ��[�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/toInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/toInt.js',0,'�K)��vG�Ubd��v_�','�K)��vG�Ubd��v_�','�WA�&G�EvA���8p�G�(y(4\"�i7m','',0,'?'),('\r���ȫ���h�z��sr','wp-content/plugins/wordpress-seo/admin/class-suggested-plugins.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-suggested-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~d\"�e]�$��@� $�','�k��Hf�t\r0��P\'�$�H {\"�9�*/ٙ','',0,'?'),('\r�V���l���`X,��r','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/partialRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/partialRight.js',0,';im}Q�pS.�z36�',';im}Q�pS.�z36�','D��{�Ž �A�7p\r�=����~>�3','',0,'?'),('\r���gh+o�=ayņ','wp-content/plugins/envira-gallery/src/Admin/Importers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Importers.php',0,'XO*����ۺ�]�8��','XO*����ۺ�]�8��',' m����3T�g����o%.>�tD�a\'�G��:�i','',0,'?'),('\r�9��_FxՋ��D','wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/test.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/test.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԇ9��n<�p��c���','<��3\\3��`�Qo���\05���&Z��b��','',0,'?'),('\r�q��!s�&�e','wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/3/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/3/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('\r�%����%�yS�`�','wp-includes/js/crop/cropper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/crop/cropper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����H.s�o����','�py����,B�����G��-�t�����=�s','',0,'?'),('\rѪ1s1=��`(�y','wp-admin/options-head.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/options-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zI�. �Ќ(j�Sn�','g���7�@MGѧ���\\:��o�Vg�����ɠ','',0,'?'),('\rҗ�r� ���\n�\Z','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�@���ޯ]��&','7aP��\\T����\"S�z���J�&b�ٸ®D�','',0,'?'),('\r��{W��u�s�c�\\��','wp-content/themes/mint/node_modules/exit/lib/exit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/exit/lib/exit.js',0,'PEٞ/� ����K�','PEٞ/� ����K�','�.�<SL�j�tc�g�Kj7ct8.j�s�.�b','',0,'?'),('\r�����3��5\0s|��','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/head.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/head.js',0,'%g�߶���e��','%g�߶���e��','���~\'W[��� ��g������ʺN�','',0,'?'),('\r�]#�� �i4�QCR�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/whereEq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/whereEq.js',0,'\'��類L}�P=��K�','\'��類L}�P=��K�','{��0�>G��0�}4�\Zf\\�O���n\0p','',0,'?'),('\r�����TD��p�','wp-content/plugins/wordpress-seo/src/helpers/post-type-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/post-type-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$��=�b�x�0,','�IE[rV<~F�w�˾*k�ϺF!K�x�TW\"g�','',0,'?'),('\r�ĀAU\"���ٖ�\ne','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/dropRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/dropRight.js',0,'f���Ն�RƆc?9','f���Ն�RƆc?9',')���)�d2ڍ�,<F�S�����%Z�A@��','',0,'?'),('\r�/.���b6Y2ս','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��2�AOBb��c�VW:','}�P�_�F5���5C�^7hl��!TX��g%�','',0,'?'),('\r�q^ѪL���%��J\\','wp-content/plugins/wordpress-seo/packages/js/images/wordproof-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/wordproof-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�MS�^�h�\\<�&\\�','ne���²FG�ƏV\"N鲗T���kI�#�V','',0,'?'),('\r�����Va�F','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LogLevel.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LogLevel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^��K\Z�+�l풊.\n\"�','߂:7?����⟈l7�E���q$�<','',0,'?'),('\0e��STjK�E���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createBaseEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createBaseEach.js',0,'��2dG��ˬ�� �','��2dG��ˬ�� �','��i���k&��:|B+x����ډ+�;�-','',0,'?'),('\0���=�WqTj/','wp-content/themes/mint/node_modules/autoprefixer-core/lib/selector.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/selector.js',0,'�_�HeЯ���F��','�_�HeЯ���F��','n�I�s]�q��}4�5%�;�x��ro2j/��','',0,'?'),('��&k�9�?r ��','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Directive.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Directive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'��N[�_��h\n���','T40*�މ)��\r�q �c����\\�U_��','',0,'?'),('��`�b^㱑z���','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/concat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/concat.js',0,'�A�!���g���;u�','�A�!���g���;u�','+j�\n2:jeF�~U\\�ߥ������TU�','',0,'?'),('V��A)� ^2����','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js',0,'���ɳШH^�e��J','���ɳШH^�e��J','�7,����l8iK�g�`��N�7w#�`X\r','',0,'?'),('��_҆��K�]}��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/inject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/inject.js',0,'�SO���j������e','�SO���j������e','���A�\\��f�4�0X¦2}�J3�.��b�\\�','',0,'?'),('�F�lʕ�JC|A�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/writable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/writable.js',0,'d�Ίô�~�J���R�','d�Ίô�~�J���R�','��<Bxm*r:������\n6�����6�[{��p v','',0,'?'),('���$xV;��\"�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',0,'���!��H��h���','���!��H��h���','�9.YlS������A�XN��o*b���l','',0,'?'),('��)�U?3j;�jh:','wp-content/plugins/wordpress-seo/src/integrations/front-end/comment-link-fixer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/front-end/comment-link-fixer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aJC�ﶡ\n�)�ñm,','agF������%�Vw&Sx�Šz�yޭ���.^]�','',0,'?'),(':*�+i*�i2��}Q','wp-includes/style-engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/style-engine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���=S�=w=�:�','����vI��^��Y\\kSw:��喅��=heR�s�','',0,'?'),(')��.`�.��}KQy','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/takeLast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/takeLast.js',0,'��\nL�����N0�<�z','��\nL�����N0�<�z',' ��J�Y���RR+��^�>�ܗ��B��T�\'��','',0,'?'),('0qM�fY���N@�g','wp-content/themes/mint/node_modules/htmlparser2/test/01-events.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/test/01-events.js',0,'��vY�����9\r�;UC','��vY�����9\r�;UC','���F����_�[D�Z��Oa}�n���9Sp��','',0,'?'),('9L��:ʞ\nnW�p�','wp-content/themes/mint/assets/vendor/jquery/src/var/support.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/var/support.js',0,'[�9n�O�\rp*��','[�9n�O�\rp*��','� �l���xBfk�!�u$��e�S��a�����','',0,'?'),('9�j�&p����X','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�j��f�6ߺ��W','T�m8Mʃ)o��lSB�t�t��ѷ�m1Z_�/=�','',0,'?'),('?��y\'f8t���ƃ','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ح�.놲��V�F�','v6�ƾ�^^)r��!MLN|4����w��1=��4','',0,'?'),('D�g\'����Y%C�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/deepClone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/deepClone.js',0,'�r��<|��4G�@ �','�r��<|��4G�@ �','�{���DDGW&XI����U\\�Hq�xg','',0,'?'),('H�b9eU��|�X�','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/node_modules/assert-plus/assert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/node_modules/assert-plus/assert.js',0,'�Dw��⭺yI!t$�\"','�Dw��⭺yI!t$�\"','���یGBɏrd�0�\nPрɄ��+��L«-V','',0,'?'),('J`;�p�6M�6�\\*�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/dir.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/dir.js',0,'�yb�ڹ���-w','�yb�ڹ���-w','�#�z���N�W�oa����<����{����qDO','',0,'?'),('W7��{(��;:P���?','wp-admin/includes/class-bulk-upgrader-skin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-bulk-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��C���n��oZ��O','��<����yJ���J�!�jA����\'�8te>�','',0,'?'),('Wb�&���%C�,��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/InputAwareHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/InputAwareHelper.php',0,'F�>cB���6;\"���','F�>cB���6;\"���','Pc\"��q���c��8��n� E���A\r�9��','',0,'?'),('X��H奥(�:�Z�','wp-admin/admin-ajax.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/admin-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&M�f Z��xhiQ4�R','$��G]�4��j��n�vE�hh�2\r.�\n*>Y','',0,'?'),(']�p��0�$s,��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array.js',0,'e[FK�ێ��iP s3J','e[FK�ێ��iP s3J','��b���j�TR�~�V�4��G���F','',0,'?'),('_�\r- ����?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-json-comments/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-json-comments/cli.js',0,'�G��Ζy��O|7o�','�G��Ζy��O|7o�','݂yb�]+��UQ<���Y��Ac��t�q�','',0,'?'),('a5�ͅB�_��s�','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y�tP�>Ra�S�@-','u{4���s��J����3�H��6ow�r','',0,'?'),('e�HB� ���:\\F3%','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hasUnicodeWord.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hasUnicodeWord.js',0,'��u8�i�Σ$0:�','��u8�i�Σ$0:�','�6L�Hr��eū�1�_�����4yyu�U>','',0,'?'),('f�����G$se�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/runtime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/runtime.js',0,'+�\0r,��s��-�iP�','+�\0r,��s��-�iP�','(A*WOHP�Į��\n�>C�D��U�Hg��','',0,'?'),('fY� QO��KCIU','wp-includes/css/dist/patterns/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/patterns/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Ƿ�w-�m+�','m\"W���G�e��|�AwX�\\�����DO��^','',0,'?'),('go�s�V�;���\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�n���1����oVb','C���T�(��N+�,��TN�C����`ީ���','',0,'?'),('k�C�L��J����i�{','wp-content/plugins/wordpress-seo/src/integrations/admin/installation-success-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/installation-success-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ij�N���|\n�֝�~�','4A�1�ZLx�/�h��C�]�S\nR��uD��*','',0,'?'),('o\n֖���@Ɇ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/cond.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/cond.js',0,'g;m�|P�����','g;m�|P�����','$lT��5�\\9��UD��b ���ZbH�F��c��','',0,'?'),('s��(�\rk�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/kindOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/kindOf.js',0,'�e�剞�\Z>f_�p�','�e�剞�\Z>f_�p�','�=?�_8�\\�\0�@�\\Oa����yp\Z�c�','',0,'?'),('v�\'Li�x�Z6�','wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ProcOpen.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ProcOpen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~xM Ȥ�:�W�I','�HmG�v���) ��=�ú.�i�]59�','',0,'?'),('��������l% �','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSetData.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSetData.js',0,'��\r�DNn3uw�%K','��\r�DNn3uw�%K','-��С/$MfBc� 7�������4�','',0,'?'),('�3}�t�ܽ��','wp-content/plugins/gravityforms/form_list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/form_list.php',0,'�D�R[m�Ds�j,G','�D�R[m�Ds�j,G','�_c[�2V�O�m�S9� ��}yy��:�V�','',0,'?'),('�m��8ڝ��6�XG�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Filesystem/Filesystem.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Filesystem/Filesystem.php',0,'J�4Op\nʛ�#_��}','J�4Op\nʛ�#_��}','ڭ�5��hЬ٠�H���:#�����e��t','',0,'?'),('��g�#@�:b�','wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-commands.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*_Z5�Hv櫟`KM','B���ݲh�Ƒ(�#�nW��K�ɄV��*~�','',0,'?'),('�h�r\Z����;%e�-x','wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G�J��u;Q�Z6��','����\\MU��KhQ�w�C��i�V���J\'','',0,'?'),('�(�ݠ�`A�x���','wp-includes/blocks/post-author-name/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author-name/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q��T�b��l�G','7�.\"����\\�;�j��-��h|_�%','',0,'?'),('�����U��)��ʀ3G','wp-content/plugins/akismet/changelog.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y���2��}��9','��L�I�n���*(2�b���n��ĄLv_���','',0,'?'),('�\Z�t0Nԡ1���/�','wp-includes/js/dist/patterns.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/patterns.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����٣��tyt=�g�','P�\Z!B�O��J�nD�\'f�|�<����j�hx','',0,'?'),('��u<�\\�_��}T','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Factory.php',0,'!�45}s/jx�.�','!�45}s/jx�.�','��C#�V)otc�xE�R)@,\"�%�\\A�','',0,'?'),('��o+F���0Hn3�hJ','wp-includes/blocks/gallery.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�h�Η(̸q�[�M[',',}Pho�B��%knG�Xo����|����ٰ%','',0,'?'),('�Svr�@����c','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findIndex.js',0,'C|f��r�Y��k��','C|f��r�Y��k��','a,h�?ɦ&�#�������\0���3��֞�<','',0,'?'),('�%��K�����\Z�','wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.underscore.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.underscore.min.js',0,'73t����\n���ލ�\\','73t����\n���ލ�\\','iH�}��~��u�6�Gp���4W�VQ�k','',0,'?'),('�j���/%��zXz#','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/no.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/no.php',0,'_w��>�����|�','_w��>�����|�','9d����0�خ��g�� R�s��!����Y�','',0,'?'),('��Hqۏ|6��8e<<','wp-content/plugins/advanced-custom-fields-pro/pro/fields/class-acf-field-gallery.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/fields/class-acf-field-gallery.php',0,'����_�f�\\�U�s ','����_�f�\\�U�s ','�k��R�Ȳ: �C;H�0b{� ��v�gY����','',0,'?'),('�)G/�ɒ�xe�O�5','wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-BoldItalic.ttf','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-BoldItalic.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6\0H�qx��ژ����','y�3���?}�ϑ�*5�0v��J�~���@�','',0,'?'),('ƃEG~��Ի�|','wp-content/plugins/wordpress-seo/src/helpers/schema/id-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/schema/id-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<�@��a��.�E','�]�y��m�KMª�\\ڸg�ʘNK���ә','',0,'?'),('� ��C�Y���','wp-includes/pomo/entry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���%���P�g\'O$�','�<��d��+���w*�M�$?�5��C�vԌ�','',0,'?'),('�>�M�8� ٵ��|','wp-includes/images/crystal/archive.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/crystal/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S����I0An�','L��%X����O�+��Aa�!�S�\\܉�&���','',0,'?'),('�ۏfw�Z\n��8��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/upperCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/upperCase.js',0,'� �>��?�/u��X ','� �>��?�/u��X ','���y�7�\r����C�(���<�)3J�n�R�l','',0,'?'),('��v�=P�8^�$+��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isArguments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isArguments.js',0,'H��ԌΙ�ސm�rkv','H��ԌΙ�ސm�rkv','Na~a�!�bC\\!|��ߠ�bO$ҵteﺸ\n','',0,'?'),('�R_��F-1��fDžr','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isArray.js',0,'�Z�S��t!�����T','�Z�S��t!�����T','���#-7}�a87��\Z�u����n��g���','',0,'?'),('�N��*<>�L��V�','wp-content/plugins/advanced-custom-fields-pro/includes/local-fields.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/local-fields.php',0,'��3���m�`�*�o','��3���m�`�*�o','�|�ā$��u�\\�+�\07�\Z�;)B�k�klq*','',0,'?'),('�Hd�����o�CZ','wp-includes/sitemaps/class-wp-sitemaps-index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sitemaps/class-wp-sitemaps-index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{Zɬ��>M�hʢhO','\"l�EU����d�(\Z�Z#TO� ���\r>g���W','',0,'?'),('��\"\rJ\04��\'i�','wp-admin/js/password-strength-meter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/password-strength-meter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʃ�D����)�a�n','`��)C�E�L�d�X\\�&F-�V7�+1�SA','',0,'?'),('�=�m����ϛ','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',0,'��٢j���@��\nN�','��٢j���@��\nN�','p�v��$�L���,�*��ʸ/��;�R�˥','',0,'?'),('�F�ڃ�88jp�','wp-content/themes/mint/node_modules/less/lib/less/tree/rule.js.orig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/rule.js.orig',0,'�Ӻ���K\'� ��C�','�Ӻ���K\'� ��C�','<�]��ed�\r�������Ϥ���#[�','',0,'?'),('�ԫ#N��KAy�','wp-content/plugins/wordpress-seo/src/config/migrations/20211020091404_AddObjectTimestamps.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20211020091404_AddObjectTimestamps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':��W�l���3F�&�','�����~\'�)!�p��x���F.�\Z�jn[�','',0,'?'),('\0��ߴ���:�HP�','wp-includes/css/classic-themes.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/classic-themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{5�g�j��\rp��� ��','p8e�@e���S�\0�,}Chw�\ra8\073�k/','',0,'?'),('g�\Z�����:���','wp-content/plugins/envira-gallery/src/Admin/Review.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Review.php',0,'���D���\0]��R��','���D���\0]��R��',']ڹK����~Rɸ^�k鰯إ���Ʌ�B�2','',0,'?'),('�*�(��lmJ �V','wp-content/plugins/wp-optimize/images/notices/sale_newyear_24.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/sale_newyear_24.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\r�\"�n9٦##�\0��','�OrF�6,Ng���}`��ƻ����|l��z�','',0,'?'),('��mө��;�S�8�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/ObjectCreator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/ObjectCreator.php',0,'Z/}�1{ j�P;\'���','Z/}�1{ j�P;\'���','N�����\\j?J����<Q����l�MB�K��','',0,'?'),('rQ�����3�]G','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/tap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/tap.js',0,'rd�:�[1S�j>3��s','rd�:�[1S�j>3��s','/L\"߿�AݲN}iya�\r �^��c�H����','',0,'?'),('���\Z����d�-�','wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���B7�&�]��NDd','�@H����M;ﺾ�5 i��\'��o�5V�','',0,'?'),('\Z���\r�\\��9\'�','wp-content/themes/twentytwentytwo/inc/patterns/hidden-bird.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/hidden-bird.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{*���WQ�Ma���!�','�R�2=mى3��]���KiѡGzHJ���','',0,'?'),('��p�1\'�l� ','wp-content/plugins/wordpress-seo/src/conditionals/xmlrpc-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/xmlrpc-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','51+34y�|��.Y�','��N��Nm[r.I`�W��o\\��F���C���:!','',0,'?'),('%R8�;���&Gcؓȭ','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.6.2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.6.2.js',0,'ϡGd�yܠԅ���َ<','ϡGd�yܠԅ���َ<','� ���m�Lr#W&��p@C/v1~�tr���','',0,'?'),('%ql�����\n��N��','wp-content/themes/mint/node_modules/readable-stream/lib/_stream_transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/readable-stream/lib/_stream_transform.js',0,'� nQ�ܪ�r\0�����','� nQ�ܪ�r\0�����',' ]5���H���?F\n�;\"�_��j�\0�]�','',0,'?'),('&���DA��z5�~','wp-content/plugins/wordpress-seo/admin/capabilities/class-register-capabilities.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/capabilities/class-register-capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m!F�V�Ȧ�����z','ER�o4����r0!���fR�^�:p��d.�Ո','',0,'?'),('\'haU\Z�q�`����ug','wp-includes/blocks/navigation-link/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-link/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Gd��o��W����N�','�U�%�}n����ϼ���y��whV���','',0,'?'),('(p~�ɺ�T���~��','wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Connection/Local.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Connection/Local.php',0,'T)_$�YIA�2���]�','T)_$�YIA�2���]�','+И���~��#�0���5%�dژ\Z\"\'��','',0,'?'),('-�\0�4\Z�LpgA��K','wp-content/plugins/advanced-custom-fields-pro/pro/fields/class-acf-repeater-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/fields/class-acf-repeater-table.php',0,'�+�b��D0+�H�T��','�+�b��D0+�H�T��','x\'^���d~���G��?iTX���|�pa','',0,'?'),('/�z�+��+F%�]','wp-content/plugins/gravityforms/includes/template-library/class-gf-template-library-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/template-library/class-gf-template-library-service-provider.php',0,'YP hGw,�9�:�kñ','YP hGw,�9�:�kñ','Ds;���P�Z��>�)i�)CV��@�#','',0,'?'),('/�ޕbuɀ2�>A�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/unionBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/unionBy.js',0,'.:d��Ӽ=�]5�7\'�','.:d��Ӽ=�]5�7\'�','\'�$��!��).�C���Q���Se��\0C�\'�\r[','',0,'?'),('4=+�@MH��TY�','wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-background.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���y0�=�I�v�]','%�ͥzE_&�����!z�?��#`+~� ��`','',0,'?'),('5�߭Mƻ�cժၫ','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-states/radio-active.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-states/radio-active.svg',0,'>� ��I4��7���\"�','>� ��I4��7���\"�','s��ʇN�����,�p\'�#���Q�y��SS','',0,'?'),('6���f�7�w�cA\0','wp-includes/assets/script-loader-react-refresh-entry.min.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/assets/script-loader-react-refresh-entry.min.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����p��:P�p��`','n�ƿ� �UC��։�:�e���/��<��','',0,'?'),('8��ٛ1Z��뺫�','wp-content/plugins/gravityforms/includes/class-gf-download.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/class-gf-download.php',0,'�*�0�ߏ�����N�','�*�0�ߏ�����N�','s\'!��~���펱b�:�V~~�1y|��^�','',0,'?'),('9��nR�6��Jd�*','wp-content/themes/mint/node_modules/grunt/lib/grunt/event.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/lib/grunt/event.js',0,'����>�G�6h�1:�','����>�G�6h�1:�','��>���d���)�JhPW[|��U��z%H��U','',0,'?'),('<�d�ɘ\'�?�','wp-content/plugins/wp-optimize/includes/class-updraft-php-logger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-php-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a `���zgV~Y','4��\r\nܸ��\re��U��B�T�]�o`+�','',0,'?'),('V�F��a�lx��jط','wp-content/themes/mint/node_modules/yargs/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/yargs/index.js',0,'r�o�����^r���','r�o�����^r���','ݺ�<\Z�9G�vx���\\��mkBO5Oa�','',0,'?'),('\\�����AV*籿','wp-includes/js/jquery/ui/slider.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'w���4]*��k\\��','�Qr0m��o�Y_�N5T�vAs�9��\r)��','',0,'?'),('`ŭ���ìc\0��u��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/date/now.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/date/now.js',0,'d��)3�9b��Nk`*','d��)3�9b��Nk`*','�.X&9n�^���>�Q����\0_�7!�U�','',0,'?'),('f��T�؉���*��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesInjections.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesInjections.php',0,'�>�́��Xz��u','�>�́��Xz��u','�!#� c@Zp�����ܳ� |�7��<','',0,'?'),('o��En3Pـ!w��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/ChatWidgetScriptTemplate.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/ChatWidgetScriptTemplate.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���.�TN��','������\'ՠń�=|Bg�Tꯦ���E','',0,'?'),('y�m�V\'���Em','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver_sync.js',0,' �|��M����\'�',' �|��M����\'�','aМg��a�@��G�K�ʻ��wL�信IӎF{','',0,'?'),('|���{:���C }','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/ComparisonOperatorUsageSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/ComparisonOperatorUsageSniff.php',0,'}�7��\n�\n^x��(c','}�7��\n�\n^x��(c','đk�ֹ�n;���6ë$E+żb��?�wM,�(','',0,'?'),('��M���X/�&�w��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Factories/ApiClientFactory.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Factories/ApiClientFactory.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z���]\0���,��','�,�W�G3��k�m�U*��j�4��ɻ��d{','',0,'?'),('�V�W�b�(a.��<�','wp-content/plugins/wordpress-seo/js/dist/academy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/academy.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�$�_��C�E�\Z��','\nW!l�ZB������\r��Y�!>~�b4�','',0,'?'),('���!��hG�a��','wp-content/plugins/gravityforms/includes/merge-tags/class-gf-merge-tags-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/merge-tags/class-gf-merge-tags-service-provider.php',0,'�Q��l��H���ǝ�=','�Q��l��H���ǝ�=',';��F<��uב7Q�iE�skAeWG\0)Kd','',0,'?'),('�c��nx�Ժ|�','wp-includes/class-walker-category.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-walker-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U?��D�ԝ>\"6m�','K�o�_ƖR�j�Dܩ�z�VL5��\n�z�V�','',0,'?'),('�h��zu7OT�De�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/SemicolonSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/SemicolonSpacingSniff.php',0,'�qr6]�}�/X��','�qr6]�}�/X��','|]��h,Ж��K�@�ix�!G`�.$�[','',0,'?'),('�ߏF����i����','wp-content/themes/mint/node_modules/bower/lib/node_modules/http-signature/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/http-signature/lib/index.js',0,'��.�(e���k�Љ�','��.�(e���k�Љ�','�+��M[K$�֞i:�b��4iJ��u�.�','',0,'?'),('�A�vAJ{���SI','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/dataview-api.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/dataview-api.js',0,'�,-���p&< ��jz*','�,-���p&< ��jz*','?47���)�*_7ۀ&�3�R}�AS.�H���7B�','',0,'?'),('��{�B�Mwv0�Y��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/setImmediate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/setImmediate.js',0,'�W!�k1�B��$��','�W!�k1�B��$��','�L��F(���+��]}��� �Eɏ����qB','',0,'?'),('�K1qv@zt`fu��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/MAX_SAFE_INTEGER.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/MAX_SAFE_INTEGER.js',0,'����t��٘xb U','����t��٘xb U','��\ZIʈǑ��݃��H�Dx5� 2���C\0���','',0,'?'),('�����n��Nd','wp-includes/js/hoverintent-js.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/hoverintent-js.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' p��.`�u76��?','Y!�:\nA��ː ��ګ�Zg�,=�|����','',0,'?'),('�]�*�.>`E��f�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�F���h�瀁1-�','6!o�m��ݎ^�.�^@˨��v7� I�}��','',0,'?'),('ç��`��� \n��B�','wp-includes/blocks/post-date/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-date/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=���a��V����','��C`��bH&2*6Թ(]3����\\��nڶ}�','',0,'?'),('�?��I�&uQ�Q�','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z-�Z����Oz�\Z��H','aet�ΎY/�������K!\r���u>��','',0,'?'),('ƅ&E9��oZ��9�L','wp-content/themes/mint/node_modules/shelljs/src/cd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/cd.js',0,'���P�^�f.�w�','���P�^�f.�w�','Of�������c5�\n�w�K6Ԯ�<���','',0,'?'),('�ݡ=��Nx��K�`*','wp-content/plugins/wordfence/lib/wordfenceClass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wordfenceClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q;��M�u&�D6<�x�','K��\nX���Vfp��Q5��Ɯ�K��6��','',0,'?'),('�O>�Pw�^�Y��X�','wp-includes/blocks/post-template/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-template/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�9�¿�(Vq��$','��$�U��$�g�@����It�6�<I����!�*�','',0,'?'),('���6Kd�Rҧ/�N','wp-content/plugins/gravityforms/assets/js/dist/assets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/assets.php',0,'qX�y�ɫ%�R���:','qX�y�ɫ%�R���:','heNK�Զ��N$@���P8Mv)!��Zh�ꀋc\0','',0,'?'),('�i}���)]M�','wp-includes/blocks/term-description/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/term-description/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>��DS�1���*��','�s��+�=�ǃ�t�t��G�wD[4�� ���)�','',0,'?'),('�(7 ����y4����F','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php',0,'\\��eŸ��[�y�qL�d','\\��eŸ��[�y�qL�d','D`9��2��x�z��7��1=%�g�\"\'�i�','',0,'?'),('ԍVzT�\0�D\Z��wbN','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/first.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/first.js',0,'��6��v;W8ۯ�x?�j','��6��v;W8ۯ�x?�j','��S�ĩ\r�z�B^C�Zgc�ĸ�G�<���nhۗy','',0,'?'),('�\r׆B��t��(�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/eq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/eq.js',0,'S�q�ş4-�\\m�j','S�q�ş4-�\\m�j','B���O���95�c.\r\"��`�!�ֳ�[�>p','',0,'?'),('�ʡ����W���B','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/zh.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/zh.php',0,'y��j3�5^?��떗','y��j3�5^?��떗','�b��Z���f�Y�rrX���\Z���','',0,'?'),('�뷎wh\\Xs����l','wp-content/plugins/wordpress-seo/admin/pages/network.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/pages/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� D�y��ѨI��*','��:��N[�R:6��=$�o�?GIs*wp_~,9\\','',0,'?'),('�����^G��u+','wp-includes/class-wp-scripts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`�݄�G%���K','�!�7�����Kϒ�v��N0��z�G�����','',0,'?'),('�rJ�<p>����Z�','wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o���\\��2b�,R���','�ʦw;2�g�/�� �o(@�\Z�ﵫ�>ؽs�;','',0,'?'),('�F��ݔ����m�/','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/reEscape.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/reEscape.js',0,'��!�E�������','��!�E�������','�f�T���7��6Pm���ΛC7�t�e�\\��S�','',0,'?'),('�&/�db�d�q�2/','wp-admin/includes/class-wp-community-events.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-community-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_��y����BW�O','QA\"ʀ����R�o�v���g�3�ց�p#̈�Q','',0,'?'),('�%w45�X��泞','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t��^I\'�]!�����','��Ǧ�bt�5��f�����c��kd��m','',0,'?'),('�bZ]�J���V�\'d','wp-content/themes/mint/node_modules/bower/lib/node_modules/error-ex/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/error-ex/index.js',0,'�y>n~�҄X���e8t','�y>n~�҄X���e8t','�k�̶vcp���l�P �G�qC\n�?���.�','',0,'?'),('��{o��7o\\�i��','wp-content/themes/twentytwentyfive/patterns/page-business-home.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/page-business-home.php',0,'�sl��tA��Pڲ[\'','�sl��tA��Pڲ[\'','�^�º�ĵN��?֗�l��,~;���%9F�u\n','',0,'?'),('����vjk��-����','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/users.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/��^V����u���ݫ','j~�&M��n�bO�Gb�;����ڟ��o�','',0,'?'),('\0��]�a�v���CY','wp-includes/class-wp-walker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+�d\\-���$�5��','��j�WQ����O�W���r�SU *�x�d�Kj�','',0,'?'),('�?H�����h�D0 ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(j[��}�B yVy�KR','�,�4AX$s�s���y��E�m�P��Y��<','',0,'?'),('���NVԱ��z�Z','wp-includes/js/jquery/ui/effect-shake.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-shake.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����1P=�O�','��w��5 4nWe4��;K������!XX�','',0,'?'),('�+���G�$ô��','wp-content/plugins/gravityforms/includes/async/class-gf-background-process-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/async/class-gf-background-process-service-provider.php',0,'6�����S��¯�-�','6�����S��¯�-�','��D��u� I�|����>\"\'T\ZWu\'�L��V�','',0,'?'),('\\�ElT�\0K!��','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-pull.cb4ccd00.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-pull.cb4ccd00.svg',0,'$��{��o�bl{','$��{��o�bl{','�1�/�j��s�\"r�\n~b��Vr�$�\'?�+[','',0,'?'),('z\0��3h���d�*','wp-includes/blocks/post-template/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-template/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;�d�/m[��','G5�)gTV��k���C��s�e�p��\r�+(','',0,'?'),('#��AK[����UO','wp-content/themes/mint/node_modules/qs/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/qs/index.js',0,'g9%�*�����nN1h','g9%�*�����nN1h','7so�x9n�&X������\r��!\"�]�@�o��ݴ','',0,'?'),(')��_�J�����','wp-includes/js/media-models.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/media-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�k��J �����:�','?ٝ�Ϭ~��\"=�9^\"^�<8Vp�L�jx�9�a�','',0,'?'),('9�zh��!�9Pmk�','wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-link-indexing-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/abstract-link-indexing-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����������','���p%F�� ���~��-ȀU���X�','',0,'?'),(';��FQ��3cE^','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js',0,'��pJ�Z�\n�<�ڑ�(','��pJ�Z�\n�<�ڑ�(','�屛�|���b�/�v2j{��V�`bի<� �','',0,'?'),('=�[:���\r&�F��E','wp-includes/blocks/video/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/video/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C/h�,<�����','���NĻ���7E\n{etI���=�&g�t','',0,'?'),('?���϶�^7:y��','wp-includes/blocks/paragraph/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/paragraph/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R�H�������� ;','��i7j��;�W�;)��.ET�P���t8�','',0,'?'),('BE����2!LUY^�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/indexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/indexOf.js',0,'�S<��ZS�yFT�E','�S<��ZS�yFT�E','�`��c�a-��;1��cL����o��n]�x','',0,'?'),('B�8dYFH�=��%','wp-content/plugins/wp-optimize/js/wposmush.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/wposmush.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J0����N���P\'�','�GK+��:�X>O�����l`����(�','',0,'?'),('E\0x�L��8IF��','wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/examples/varargs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/examples/varargs.js',0,'iCH����Z�Kb6#��','iCH����Z�Kb6#��','�ק7��מ�z�����8Gi\\�2','',0,'?'),('E�鴿�k�L��:H','wp-content/themes/mint/templates/comments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/comments.php',0,'��;3>7��z���u�','��;3>7��z���u�','�p^�jJ�:[K�_q�=B.����\'��\Z�Tned','',0,'?'),('G<7e�t�/�W�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[f0L�ş��\r�{VW�','��\'&ܔ[m`�ϊ�c2E��%�W�GW�䉷','',0,'?'),('G~�X�� ޙ��8�','wp-content/themes/mint/node_modules/bower/lib/node_modules/load-json-file/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/load-json-file/index.js',0,'���]}g��֯I{�','���]}g��֯I{�','Tp����NKd�Qkԃ,�G\"\r�\"�U\'W�4�','',0,'?'),('L}b&�۵�b','wp-includes/blocks/separator/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�\0��E�S�i�A','�Y��Q��;�f*��V��s�`���.�wN�zd','',0,'?'),('MiU9���+��Z��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isNumber.js',0,'�c��`�l�k�^�ʍ1','�c��`�l�k�^�ʍ1','�K�mק�I]�v�و)�_J����P{X','',0,'?'),('R罺�dx:���̪\";','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/seq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/seq.js',0,'���]�\\���� \"�','���]�\\���� \"�','\ZE�?4��9\'� ��(���\rZzY�KZ�{','',0,'?'),(']\r���_�m���ݤF','wp-content/themes/twentytwentyfive/patterns/banner-intro.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/banner-intro.php',0,'�n�]�e���訤��','�n�]�e���訤��','�^��\r�V�u��)<�����r�8�D�','',0,'?'),('_��O��.���.�X','wp-content/plugins/wordpress-seo/src/editors/framework/seo/title-data-provider-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/seo/title-data-provider-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D�}G:�\Z8�~����','�Y�Zq�M��C���j����z��p��E�X�p�','',0,'?'),('`�&��锥~K3/d','wp-admin/css/login.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/login.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�LQ%�2��','1�13�,�i3�tG��kʨ�r�aN=�\0w���t','',0,'?'),('b���O�G�U๑\0','wp-content/plugins/envira-gallery/assets/js/conditional-fields.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/conditional-fields.js',0,'��.�(�{��e�Y��','��.�(�{��e�Y��','�~`�~**��0M�x��W��Gl-Px%E�','',0,'?'),('f��9g�H;�7lZ','wp-content/plugins/advanced-custom-fields-pro/lang/acf-bg_BG.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-bg_BG.l10n.php',0,'\nw3�0���FE��[_��','\nw3�0���FE��[_��','�0�ҕbD���\r��g�\n����BV���@,}�','',0,'?'),('g�b`��V�K��>)v','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isNumber.js',0,'zg��q Ө?�}�b��','zg��q Ө?�}�b��','�\'ɃjB�S�G��u�K0�;�kf�\Z\"k�Y{','',0,'?'),('lv\n^V�\nR���','wp-content/themes/mint/node_modules/promised-io/oauth+xauth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/oauth+xauth.js',0,'�R{�f@]�h��','�R{�f@]�h��','� ��.�1��%����I�IğW�{���G�','',0,'?'),('mǶ\0ܫ�jDZJW�I','wp-content/themes/mint/node_modules/spdx-expression-parse/parser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/spdx-expression-parse/parser.js',0,'����:�z}�P\'��','����:�z}�P\'��','��W�\0��q�ck.\'�{Qs,}Pn\Z�X�v','',0,'?'),('n�����Į�7�k�A�','wp-includes/css/dist/edit-site/posts-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-site/posts-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F^�%��\'��)$','K����ӿcelIG�B<kj7i,�^t������4�','',0,'?'),('w\\��\\�G��oaR�p','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/mug.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/mug.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('|N\"W]��i�=�A{�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php',0,'�Ep(���|ٌ��s/','�Ep(���|ٌ��s/','oqN6��BC1k{��L�NkW����*{�,�','',0,'?'),('|~V(��e�+Mm�\\','wp-content/plugins/wordpress-seo/css/dist/score_icon-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/score_icon-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JZ�F����de��','2�tc��zf�j�dcSwn����P@��r�uz��','',0,'?'),('��_gJUd�IM���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/without.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/without.js',0,'���t[_��d^�','���t[_��d^�','Zș����c��ud�G\\���J�̡�}G��Cn','',0,'?'),('�P��5��+p\0LJ{','wp-content/themes/mint/node_modules/less/dist/less-1.1.0.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.1.0.js',0,'4 3��J-�O�a','4 3��J-�O�a','/<���粣�[���\\�B[�0_a�b{�}r��','',0,'?'),('����Cي��h���.','wp-content/plugins/envira-gallery/src/Admin/Gutenberg.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Gutenberg.php',0,'¸)o���\\�$�>�&','¸)o���\\�$�>�&','!�I��FW��T\"ϡ>���À�Q�Y�ؐJsNC','',0,'?'),('��E�_*:6`I�t���','wp-content/plugins/wordpress-seo/inc/date-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/date-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T��]�i�k��4�%{','M�:��C��Ԗ,0��0����\\�|3���','',0,'?'),('���ґ-���\r�{,�','wp-content/plugins/wordfence/lib/wfCache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ن��a�Ag5�ZS\"��','��Dg]�<�M*\"L���E�j�N8�/d�\na�','',0,'?'),('�~��L��*�,�<:�','wp-admin/includes/theme-install.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R����#��l�u�A','�\'����P���֔\n��3��tǜV[�<�','',0,'?'),('�b}z���b��Ʋŝx','wp-content/themes/mint/node_modules/less/lib/less/tree/media.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/media.js',0,'B�\Z��������+�85','B�\Z��������+�85','�\"��O~)�A�7$$N@i�p���D;}��W','',0,'?'),('�\\�\"cR���;�','wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/first-time-configuration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/first-time-configuration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\�[�NS�#�㱪�','笶�qc��o�@���~_;���@��e���:','',0,'?'),('�D�.N���p�X�P','wp-content/themes/mint/node_modules/bower/lib/node_modules/dashdash/node_modules/assert-plus/assert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/dashdash/node_modules/assert-plus/assert.js',0,'�Dw��⭺yI!t$�\"','�Dw��⭺yI!t$�\"','���یGBɏrd�0�\nPрɄ��+��L«-V','',0,'?'),('�Z�����������','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php',0,'��1�A=N��rZ�','��1�A=N��rZ�','��bi�@gu���0�Ot��\\��h��<���@ ','',0,'?'),('��M��{B[F��1�','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/src/ImageMimeTypeSniffer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/src/ImageMimeTypeSniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��RA˙�\"��','������2!�@*>y�38c��)����\n�','',0,'?'),('�Sx��4�@o�w�N','wp-admin/js/widgets.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�A�h%Z��2��v','���O�嶖�3��HD���@�R�\\*.�R��P','',0,'?'),('����l*l��I�O�','wp-content/plugins/wp-optimize/templates/images/lazyload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/images/lazyload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���X��41��-','G�!�1O�i3�# �;<��z�Ckɛ8�s��','',0,'?'),('��T]\\�{�}���76X','wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/lib/_stream_transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/lib/_stream_transform.js',0,'� nQ�ܪ�r\0�����','� nQ�ܪ�r\0�����',' ]5���H���?F\n�;\"�_��j�\0�]�','',0,'?'),('�ڤ& �M�KQ�o?','wp-admin/images/freedom-2.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/freedom-2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\"� 0�g�H>��D','��\"@Y�D�]\\�qw�?�\09��B*�7���','',0,'?'),('���:m��[ݢ�:#','wp-includes/l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�uP�;3�����t','�f�q�.T��O�g|�l{����~�b��m�','',0,'?'),('ʝ���\'�P�','wp-content/plugins/wordpress-seo/packages/js/images/logo-g2-white.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/logo-g2-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a��q9d1�e�18','�o���O�\\�6��9�/0�,d�.ջ��r�g�>�','',0,'?'),('������<O7Ч\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/bufferClone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/bufferClone.js',0,'P9����ߧa�>Q��','P9����ߧa�>Q��','n��\n����2�W��B��svN��,�R���','',0,'?'),('�I��\\j���x���g','wp-admin/images/date-button-2x.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/date-button-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?���a�0��9JQ\Z�','���*�Q����_(G:*��ηd������.','',0,'?'),('�H̺|�����[�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_assignInDefaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_assignInDefaults.js',0,'�M�\'|A:o~P�-�=','�M�\'|A:o~P�-�=','���2FM\\��ޚ�Hܻ9���/6�WM�','',0,'?'),('��/����{�)X�I.�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/findIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/findIndex.js',0,'���\Z����Y�;Z','���\Z����Y�;Z','��3k�����o<)�0���p^c�����k�','',0,'?'),('���;��i�0��J~�','wp-includes/blocks/columns/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/columns/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=����<�^��\\k!�H',',�4��#�ZTUF�&�g � R�-^��JO','',0,'?'),('�zIʳT=��sa�','wp-includes/blocks/comments-pagination.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@pc�!�[�^Q⢺�','�m\n���k1���4�����3q�� Ǩ`�Ⱥ�','',0,'?'),('���j7r[�,��Z��','wp-admin/upgrade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f�H^o��@��o�','��pB˸,R�q��]����|%�|��\r��=q-','',0,'?'),('�^����jr�J|,���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/eachRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/eachRight.js',0,'b��6���$f�%j�q\n','b��6���$f�%j�q\n','!��&��D8v\\��o�#ᜳΫŪ��$6��l','',0,'?'),('��.gRx�ȑ�8\0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createPartial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createPartial.js',0,'����f�<�Z>��f�','����f�<�Z>��f�','�(q,������\\�\"��r9f=JY���x=� B','',0,'?'),('�\r�)1Fqt�[����','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__toString.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__toString.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����2C���nT��','w��i�$Z��k��\\�v&���< V<�w���','',0,'?'),('4��B�\07qoB�o6�','wp-includes/blocks/rss.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g�<5%�#�6��|�B8','F�?��)=S`���ݠwF�����Վ �$��f�','',0,'?'),('���\Z�,�O[���','wp-content/plugins/envira-gallery/src/Compress/Compressor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Compress/Compressor.php',0,'I]�ͽ��{x���s��','I]�ͽ��{x���s��','�O_PҫPP���7A�j��lM�\n�\0�I��^','',0,'?'),('�\'�����<!X� �','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EvalSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EvalSniff.php',0,'�c�Q�yt���\Z�v�','�c�Q�yt���\Z�v�','V���� +��$�Bg��Yދ��4���,YA�','',0,'?'),('\Z��lm��@��','wp-includes/customize/class-wp-customize-date-time-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-date-time-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�Ӟ�^JmO','��U��\\���>�齨t>�V7��\n�nՊ<;R','',0,'?'),('�-��\'g���P�\\�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�V�#ҹ���4�','Gp�f��Hv����\Z��x�8����1C�[�4A','',0,'?'),('z�o-�`�<���','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/redirect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/redirect.js',0,'��)k���gw���U�','��)k���gw���U�','G�j���\n�%�L�@��U�_��R�/���?zց','',0,'?'),('(0�e���K��3^�','wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/select2.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/select2.min.js',0,'3��QVZ�x=٩�M/','3��QVZ�x=٩�M/','y\\�=��ɇ$���=e���[��~8L���','',0,'?'),('*��5PO���u>;i�','wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-taxonomy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-taxonomy.php',0,'�����<紱o�','�����<紱o�','� r�����\0�_��wL�=��vw՚=&�9�','',0,'?'),('2�tu��6O�G)�%�','wp-admin/contribute.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/contribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѕ���^��V��_�O��','�@ž�;�&C|KK��S�p`��S|��D-���','',0,'?'),('8�W�5[i�k�z7�<','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/at.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/at.js',0,'\0z���?�dN�Q^��','\0z���?�dN�Q^��','�i�������6�\ZK�-;5M���0��','',0,'?'),('91��\0�~k�ӄ@','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map.js',0,'�ntyr���kxE�\Zm�\r','�ntyr���kxE�\Zm�\r','���d\Zbd<G� i����0}�zL�Y�8��;��','',0,'?'),(';�I(�.����m#5','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/PluralizationRules.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/PluralizationRules.php',0,'�Z�Z ���Ѩ:�w�','�Z�Z ���Ѩ:�w�','�_����&��,����u�\Z ~�$ה���qM','',0,'?'),('A �W��9�\"�L','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/base.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/base.js',0,'\"�&�$R\roZ ��J','\"�&�$R\roZ ��J','L���A�a8D��`UHL#�;�p�t���','',0,'?'),('A���0Ce\rҊ�','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard.e7457a0963f9d450298b.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard.e7457a0963f9d450298b.min.js',0,'2ͦΆ��\'�ښ��j�','2ͦΆ��\'�ښ��j�','�&r��~6 �}\"�z����C��?�#�Ht','',0,'?'),('D�8hFޛBViR�','wp-admin/css/colors/blue/colors-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/blue/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�&aTvx}*','a��C�B�@��TmTQ�z�z�C\n;�ʿ�V','',0,'?'),('L,\Z\"�\0C�ʡ8y�','wp-includes/js/dist/primitives.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/primitives.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�ށ�>Wj�4��d','����:�w@��{�s�w訧�ٗlicbn�F��','',0,'?'),('W��%��~\"hb���','wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/index.html',0,'��鑁�I�1}P��','��鑁�I�1}P��','^&G���Ze4�����✣�QJ�-aEYV','',0,'?'),('^��C��H/.N�JB','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/trim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/trim.js',0,'y�����ʶ�^�j|�e','y�����ʶ�^�j|�e','x��L���R�^��E��=�O��us�b}&!','',0,'?'),('_uȓ/���\r�tࢊ�','wp-content/themes/mint/assets/vendor/jquery/src/effects/Tween.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/effects/Tween.js',0,'�s|��~,����R�|4�','�s|��~,����R�|4�','�J����?�m���!���ZZ��n[����-','',0,'?'),('j�����LF�훞H�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/InvokerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/InvokerInterface.php',0,'a����em�Z��:�','a����em�Z��:�','� ���\'6�H���1c�r^f����-��','',0,'?'),('j���q.�*;��2','wp-admin/css/colors/sunrise/colors-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/sunrise/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����.0��7����x','j%>��@�<X���ش�Nx�DW��=T:�','',0,'?'),('s]�Ϸ���5<�B3n','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/progress-section-check.2e9bfc60.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/progress-section-check.2e9bfc60.svg',0,'Zt0n0����\"����r','Zt0n0����\"����r','���U5ߛT9h� ��:^��|�w�ɪ��V�Q','',0,'?'),('w�es��i<�O�J%�','wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���h$nsbc�y��','\nD��g$��2��- �!n7�#��\rK��7ۿ','',0,'?'),('xĦBT�i+���!�R','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php',0,'� �sѧ`D]|i+�f�H','� �sѧ`D]|i+�f�H','J������;8�ު�3���}Gv%�1s��','',0,'?'),('yh\'z�����|8?','wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/test/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/test/stringify.js',0,'��JD,�ұX\n��.','��JD,�ұX\n��.','_j�v�V�&��O��Z�i��(؋�r&��O�\0\Z','',0,'?'),('�����L��bqv��C','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokens.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokens.php',0,'�\n�\0[�;�3�d�>��','�\n�\0[�;�3�d�>��','����p��s�1��EN.�s(�0�$����','',0,'?'),('�\"j�Yx��#��','wp-content/plugins/gravityforms/forms_model.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/forms_model.php',0,'����o1eǗl�','����o1eǗl�','�P�8����ݐ&�X���R\"��7e\'��','',0,'?'),('��>�`P���@��߹','wp-includes/theme-i18n.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/theme-i18n.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����<ӟ�Hs��`HJ','�fi���.�U��+�U��]�E��Ϊ��.�3','',0,'?'),('�Ը��%\ZD�y�Z','wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>���?C�{��+�2_�','#G_�HR�珹\'�u�$�9�vE�O�KE_p�','',0,'?'),('�)Tɺ%�:l�E�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sq.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sq.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��j�H����% \Z��','��S�V���a� l�O�y�\r�,�.H��','',0,'?'),('��sn�H׳t��','wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php',0,'�6>T�nr\r�1?R.�','�6>T�nr\r�1?R.�','6h��Pcˮ�>�q�4i/\\�z�6��B�����','',0,'?'),('�Z��d*��Y��ژ�','wp-content/plugins/wordfence/views/options/block-all-options-controls.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/options/block-all-options-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�w�ٻI��A�{�[','�/�o��Ѷ�ω����O�my\Z�wnJɋ��','',0,'?'),('���W�q�>V!�Tt�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_deburrLetter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_deburrLetter.js',0,'���0����_ ','���0����_ ','�4�>n3���5�\0T��l�o7*,�1�','',0,'?'),('�s���9�\"�?','wp-content/plugins/wordpress-seo/admin/formatter/class-metabox-formatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/formatter/class-metabox-formatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:FH5���ra��','���+���u�\nD�Sf��0�~ �\'A���uQ{s','',0,'?'),('���j�Qʉ����','wp-content/themes/mint/node_modules/coffee-script/lib/coffee-script/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/coffee-script/lib/coffee-script/browser.js',0,'��e�Z�E��ǪE�','��e�Z�E��ǪE�','�2����<���Vnb�,��<%�_��f�%� ','',0,'?'),('����#��]-�`|��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getData.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getData.js',0,'�4<��^��4�[[�m','�4<��^��4�[[�m','����\0\\ۆ1=I���O�� Tm�Ϣ���D�)�','',0,'?'),('���h�0@�At��.�','wp-content/themes/twentytwentyfive/functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/functions.php',0,'!˨L��Y��G;�1�%�','!˨L��Y��G;�1�%�','���E\'���E3?\n,�2e���I�R�\\�W� S\n','',0,'?'),('��f�w �33���','wp-content/plugins/envira-gallery/assets/js/media-bulk-edit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/media-bulk-edit.js',0,'�)��\0�>�h��-���','�)��\0�>�h��-���','1�F�v�w(��h�:�]C\r�x��[','',0,'?'),('�r�W�3���V','wp-admin/css/color-picker-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/color-picker-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�p�ES���c�V','�<�=\0�[Z\n2|닢��\0?6������������','',0,'?'),('�$��#)k�`��ф','wp-content/themes/mint/node_modules/argparse/examples/constants.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/examples/constants.js',0,'o~�]�p�m{�i�','o~�]�p�m{�i�','�.��Q\0|�;�t ����-붌�CJ��h�r','',0,'?'),('�g@\r9�b�Ϊ�W���','wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/LICENSE.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7F������H��\r�','3��{�a��\rI�C��W�fq���W\\@��^=�','',0,'?'),('�0��$t~Ca3�Dg','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/min.js',0,'\n�K�g�h �o�y=�','\n�K�g�h �o�y=�','�uIg\n��Ei�p��[�\\\Z%r�\\�B\nx�','',0,'?'),('�7v�oWUe&�/���','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/uri.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/uri.js',0,'��`wI�Y�/φ}!Ep','��`wI�Y�/φ}!Ep','>�8��Kkǒei�H\rFt-�8�,�!N�ݽ�\Z','',0,'?'),('�ߖ�W� �)��{','wp-content/plugins/gravityforms/images/hexagons-bg-dark-blue.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/hexagons-bg-dark-blue.svg',0,'����Dƙ��$?Y','����Dƙ��$?Y','�x�-��ݤ3j�wRjp�\0ռ���k6���n�','',0,'?'),('��v�$��>����','wp-content/themes/mint/node_modules/colors/example.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/colors/example.html',0,'����SK ���O��','����SK ���O��','|�����\Z}6�H3��HĈg�䗥vҿ','',0,'?'),('���῍w����[','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hashDelete.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hashDelete.js',0,',˱5 :�W\nP\r�7',',˱5 :�W\nP\r�7','e�\"{�p[����\Z�8��8�0��x�q8�','',0,'?'),('�{m�rX\n��^�д�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ClassFileNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ClassFileNameSniff.php',0,'�BRXe�n�E\"p|o','�BRXe�n�E\"p|o','\"\0�S<��R�y�&)�*�4y�W��X!:)3d�','',0,'?'),('�ힸ�����sc�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/queryString/decode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/queryString/decode.js',0,'S��>L�>/e��C���','S��>L�>/e��C���','\'���Y\\��tox�첩�Llt]���Kκ��','',0,'?'),('ub(|�T����i�c','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/IcuResFileLoaderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/IcuResFileLoaderTest.php',0,'K|�%-e�}��:','K|�%-e�}��:','���DLP�_W�3Ul�rӨ��$h��~�@','',0,'?'),('^E��d��PM9dz','wp-content/plugins/wordpress-seo/admin/class-admin-asset-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-admin-asset-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\Z\Z���H�JS�Z9�','j\'�Z��̱o\0#�R������ j\\TV@�C�','',0,'?'),('=�0mG�S�$�y','wp-content/themes/mint/node_modules/less/lib/less/colors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/colors.js',0,'B�1m^��F#�ֲ���y','B�1m^��F#�ֲ���y','�d�-���6�˻�M*�0emCh��s�T��Y','',0,'?'),('����,R[����F','wp-content/plugins/gravityforms/includes/license/class-gf-license-api-connector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/license/class-gf-license-api-connector.php',0,'��v� �)n/�E��Gb','��v� �)n/�E��Gb','��S����Y��Ƹ�\ZV��Ƨ�:��\'�m','',0,'?'),('���D�XM��(<','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/content-analysis-disable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/content-analysis-disable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�GE��a�.�p= ','��BF�l�^��}�ӡ�<�J�P������oa','',0,'?'),('_��{��x{��+�|�','wp-content/plugins/gravityforms/tooltips.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/tooltips.php',0,'���A\'ݑ9L�\r�','���A\'ݑ9L�\r�','ڮ�a��`��U�Ώ�VB�����\Z@W1(e','',0,'?'),('\ns�\r�\\7B_���','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/reader.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/reader.js',0,'�v��?��#2�9�','�v��?��#2�9�','$�k�����}����˥ނr� \r~����$�ċ;)','',0,'?'),('�6��Ch���♌','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js',0,'g�%�/SR�����_|M','g�%�/SR�����_|M','�H�Y�������_P�{�P\nR�{ ��=8^','',0,'?'),('(Ŗ�I���5@�\r�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',0,'����L�����JM','����L�����JM','V\n���#\n�A�@,c]:��a# ��a��\n&�7','',0,'?'),('0H�O�B4�J�{��I','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/alt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/alt.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('0j��I㆐h@=�6=','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/unescapeUnicode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/unescapeUnicode.js',0,'�u�O�Ġ����3','�u�O�Ġ����3','��z�w�D\rýW18!��_Yd�wC��D�e��','',0,'?'),('2�f��6Bw�^u','wp-content/themes/mint/node_modules/hoek/test/modules/test3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hoek/test/modules/test3.js',0,'�SE�߰��uS�[S&�','�SE�߰��uS�[S&�','�ݏ~��Ň�Xh�\"ux�*�̼\'�]�}.','',0,'?'),(':�X��2�M��~��','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���2�4vLhN�!��2|','���3iA(���p���GD��ڔ����','',0,'?'),('>�JH��mUbRܒ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/reduce.js',0,'rw�a�A]���\\^���','rw�a�A]���\\^���','?�HG���;�\'#R$����� Qib�5�','',0,'?'),('A/u���~|b�Y','wp-content/themes/mint/node_modules/bower/lib/node_modules/through/test/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/through/test/async.js',0,'v* #���`���\"��','v* #���`���\"��','\\�Y@~U���}��;�E��z� A֮�:�^�K','',0,'?'),('B$�e`���c;1','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/dash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/dash.js',0,' 4�3��Ū��?�',' 4�3��Ū��?�','�Z�OH�߸�P���P_�Tn7fvT&�Jo/','',0,'?'),('Br��,�z�XG#Nj>','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RequestOptions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RequestOptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C�c,�!d�;}`[n$�',']�%z�91�5�:��:����4VӍ��D�T','',0,'?'),('C�y��8�\'a���','wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q~�f��������\"�','p,�-�gW���Ԏ��W��.c�E����M','',0,'?'),('I�]�\'�ܬ[���','wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/examples/werror.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/examples/werror.js',0,'��V�{Rz{C�2i\Z<','��V�{Rz{C�2i\Z<','A�P�����u,VS�� �$���b��D���','',0,'?'),('L���8��\\�ݼ+','wp-admin/images/imgedit-icons-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/imgedit-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',��\'��6U�������t','�?�؎)�.l�����%�<�(�_� 6�`^c7','',0,'?'),('O��~c���\\�\r���','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/precedence.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/precedence.js',0,'U��D��F$�^Xv^','U��D��F$�^Xv^','���v��wa�ް3*<�h&\ZWS��\0S��lS','',0,'?'),('O����R�rK_�t\n','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/defaults.js',0,'dl����}*)s�̰n�','dl����}*)s�̰n�','p�DNK�YM�Pd��\n�g1������u�Rǫ�G','',0,'?'),('R\'�2���D��.��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/PhpIniSizes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/PhpIniSizes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�TƗ݇{� :�^�Y','N�(^��(z1����_o�mRbNᛌ�','',0,'?'),('V_���`@ӵ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isArray.js',0,'��V*}����G9','��V*}����G9','����(���ɗ.�=Y�p�q�9������~','',0,'?'),('V� �F�<Tp�*���','wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-prepare-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-prepare-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�39�BDk�]\r ','f\"�cp�V�l�+�;�N����Vi��D��� ','',0,'?'),('X�%S��B�4Z��','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/reposTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/reposTest.js',0,'��y�G+���n�S�','��y�G+���n�S�','�V�0N5��1�+C�vC{�rPK�6�^Zl','',0,'?'),('[��odI�:$0��','wp-content/themes/twentytwentyfive/patterns/format-link.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/format-link.php',0,'N*DN�O����M mf','N*DN�O����M mf','=��Y>t�G��N�{��_�ĥ�#�\Zt��','',0,'?'),('\\�$�=�9A�,+#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/entriesIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/entriesIn.js',0,'���߯�R]k��\Zr��','���߯�R]k��\Zr��','��U�4�ULBS�&��#�G�vEcB������0','',0,'?'),('^����\\x�\nB�4@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/lib/highlight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/lib/highlight.js',0,'+�����i[�|w��M','+�����i[�|w��M','������\r�l}S�v\"\Zȶ�ѐ-�!���7�','',0,'?'),('l� \n�����%U�P','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flatMapDepth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flatMapDepth.js',0,'GT��MO��˰����','GT��MO��˰����','��^���L9�.�δƥ7os&��`�xZ�','',0,'?'),('m�ñ�~���R�?','wp-content/plugins/wordfence/views/tools/options-group-2fa.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/tools/options-group-2fa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o���\n2���0���\0','aG�ִ\nOk�&1���`3�*��ҿf���_W�','',0,'?'),('p۞�2N<:Z�7�r�','wp-includes/js/tw-sack.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tw-sack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��������9>���','{�n]�\0ֈ��n�\r����<�w˷X)���:','',0,'?'),('q (�ھ�H�͗ՙJ','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/functions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/functions.js',0,'��;��(�@�p�w#��','��;��(�@�p�w#��','[#;�\ZZ�@�L�ڰ�x-�HwZk�c�X����','',0,'?'),('u�)8FG9�C�(���','wp-includes/js/wp-ajax-response.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-ajax-response.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĽԓZd��Gd��','[2������b� (keHzt��L�@�q��','',0,'?'),('�b��B�V�砵N�qr','wp-content/plugins/gravityforms/includes/settings/class-fields.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/class-fields.php',0,'�BV�AA��h�&_:','�BV�AA��h�&_:','/�=m#��L�\n�@A�\Z��0�]$�����n\Z','',0,'?'),('��pΈp�XR�b�','wp-content/plugins/wp-migrate-db-pro/class/Common/MigrationPersistence/Persistence.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/MigrationPersistence/Persistence.php',0,'t�`X��xo����','t�`X��xo����','�/��\n{�q��Iɻ�Hv�I�,x�3� d�','',0,'?'),('�]�4��������','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/capitalize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/capitalize.js',0,'N�F�hM�UɎ�d{�p','N�F�hM�UɎ�d{�p','LYP�*�_�\Z-rU�dES�-��&� �U���','',0,'?'),('�Y��|h�X��-iT2','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/after.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/after.js',0,'�b���H�dx�M��','�b���H�dx�M��','mS�:�[u����6f��\\x����7�\0{� &','',0,'?'),('�y�� U��_H*��','wp-content/themes/mint/node_modules/tape/example/too_many.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/example/too_many.js',0,'��\rh�\0���=ׅ5Lh','��\rh�\0���=ׅ5Lh','�_$i\"�sk���i�uu\Z�ЅqM�H','',0,'?'),('��;�$3H!�S8[_','wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-type-not-built-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-type-not-built-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r�2���N��ZH�\Z��','/��ah�kr��dMU��ҙ���h���Y','',0,'?'),('�&���O��Z=�Ds.�','wp-includes/blocks/search/view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/search/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�aҺ��f�DŽ�v����','Z�Jϵ�-\\�;{��ó�}?��H���','',0,'?'),('�˽�����Uq\\R','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/map.js',0,'I��9��A�FJ�G','I��9��A�FJ�G','��`���tЉ%��t�Pu&�g����~�r','',0,'?'),('��c�O�@�/�lM�','wp-includes/blocks/separator/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E`f�ʐE���','�\n�~ڹ�`7���|p���P�*�6�p��.','',0,'?'),('����9�~\0{@���','wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®���uM�����','�JE�z����ٙ6������)P��)��\0��','',0,'?'),('�lT��\0�^{un','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseUnset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseUnset.js',0,'�[��CJf/Ρ\\�f��','�[��CJf/Ρ\\�f��','��\0-]5��Ç��\r���]�WR�����^�f','',0,'?'),('�<��v]��5���3','wp-content/themes/pinnclonesmalltest/resources/assets/scripts/routes/home.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/scripts/routes/home.js',0,'��)��K��KPk�,:�','��)��K��KPk�,:�','�)�oZ���<\'摜xR\\�}��Y{�b�e�','',0,'?'),('���Clo�������','wp-admin/nav-menus.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����<���!= ��q','��79Rh:E�ĭ<�A�J�0�j���gm�','',0,'?'),('���?t�NR��R/','wp-content/plugins/wordpress-seo/js/dist/languages/pt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/pt.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�?6U;��u�83�Z','1�-\r��=�qIH��D��%I�.���F��;','',0,'?'),('���<��^4I-����','wp-content/plugins/wordpress-seo/css/dist/featured-image-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/featured-image-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�.� N�|8��b��','�Ī+4c�]�F�� �v�+��D��E&','',0,'?'),('�s�LVk�ȯY\0�m�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/cargo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/cargo.js',0,'�\0�U���_O�G�','�\0�U���_O�G�','����Iy�rO��{� ��<I��`���i�','',0,'?'),('^T�}5��\rV��','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.5.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.5.1.js',0,'�7;*��P�Z�އU�','�7;*��P�Z�އU�','ܻ��q�����\Z R\'����N���(:_{QF','',0,'?'),('���g�v[��[T�-','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/once.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/once.js',0,'�S7�Oi�X9���-}','�S7�Oi�X9���-}','�p�E$�M)��`^kC<���=9�Y���ex!�','',0,'?'),('���[s&i�u)�n','wp-includes/blocks/video/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/video/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A�+kΪYv~)��C','�]�i֦z ��q��-|k��ϣ�<�B','',0,'?'),('���2�(4K�@� �','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSet.js',0,'�ÀN6��1���%c\\�','�ÀN6��1���%c\\�','3�_�\Z��N�����+���~۷�8�','',0,'?'),('�us���z,��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NoopHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NoopHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ė�r���K�!�(��','א�B�m�\'�,�9�8�,���1�gs�z�V��','',0,'?'),('�&� Y�tz(�\Z��','wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{���3�\"��\\�Enj','�\"��{��xqc��*ׂNo��h9m','',0,'?'),('��2�HHM���Mu�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-nn_NO.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-nn_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b��\\�R�V��#~J','�۶=Agxi_<Ш�v@��N����o G','',0,'?'),('�ˮD383\\���rA&','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/lib/caller.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/lib/caller.js',0,'D��e�^��-����>�','D��e�^��-����>�','������\'������Z*��HA�u�ʇ:w��','',0,'?'),('��I<���U�CMdZ�','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�q���=��o-ɆJ','��\0��N�64gA��ܮH!�^Dۙ��*����','',0,'?'),('��-��i>bs��1�','wp-includes/js/jquery/ui/resizable.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/resizable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<\Z�J����g��>[ ','�P����-�sB��I�J��1����ށ�WC�','',0,'?'),('yTh��4��\0N�96�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-positionsticky.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-positionsticky.js',0,'��7GC�#u�G��','��7GC�#u�G��','sY\"��#��RV��\\\\�#펅)�b���\r�!%�','',0,'?'),('\nz5��ɣ�(,4l��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/TodoSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/TodoSniff.php',0,'DV!�\n�iy���?2�','DV!�\n�iy���?2�','� ��Ȫ�i�$�(��YHUl�g�g�;X5 �>','',0,'?'),('��Ȣ�b� fG@','wp-content/plugins/wordpress-seo/css/dist/toggle-switch-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/toggle-switch-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B}����b}_�W^�','\"vN6\'�k�����#��\'����¨��','',0,'?'),('�Rk�;X���0','wp-content/themes/mint/node_modules/readable-stream/duplex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/readable-stream/duplex.js',0,'��DanoI� M<I.�','��DanoI� M<I.�','ǫ��@���v���*1DU\" hT~����','',0,'?'),('�=�1���bF\0\'��','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-taxonomy/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-taxonomy/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('S�9��m8n�&`�9�','wp-content/plugins/wordfence/js/wfonboarding.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/wfonboarding.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8x+`:.^��A[)�T','�V�p�Po��V������:��CI\\R���d','',0,'?'),('!�G}��ym�N=�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/detect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/detect.js',0,'�]ǻ��XL�)�','�]ǻ��XL�)�','��?e��x3��%���Pi=��8tz\"F�%_RrP�','',0,'?'),(')��U����Ϝ��%','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Traits/CapsuleManagerTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Traits/CapsuleManagerTrait.php',0,'��x?MZ��y�+\r','��x?MZ��y�+\r','�y8�-����O�뻉 sG��C�r�w','',0,'?'),('.�<.�{��ګ�|��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/diff.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/diff.js',0,'q\\_�\'0a�ї��','q\\_�\'0a�ї��','�� 5�Y�B�\0́���7f��z�\"&��','',0,'?'),('4�J�-<O�iDf�.�','wp-content/plugins/wordpress-seo/admin/class-yoast-notification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-notification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)�e���䶚c]@','#���0Xm��d�D��\0!x9ikSҺ_k����?','',0,'?'),('4�b\\�.�>\"!�F','wp-content/themes/twentytwentyfive/patterns/contact-info-locations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/contact-info-locations.php',0,'�[�\n&�D^_�d�','�[�\n&�D^_�d�','���\\�ܼ�qC��|�O�@���%�������','',0,'?'),('6��K�B�]���2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/detectSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/detectSeries.js',0,'c��y�l���\0\"��','c��y�l���\0\"��','P&�UkQ�\Z\'إȱ�\'��(�J<�H�o�','',0,'?'),('=_����o�8MY','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/NullMessage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/NullMessage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;/ֿy���ܩ�\Z��','���.��7q/�@���|\r\\��z�x���W','',0,'?'),('E�H���.�L|�ch','wp-content/themes/mint/node_modules/pinkie/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pinkie/index.js',0,'��`������Pg','��`������Pg','C��5�\\IjI�x��K��W���uVj�\"n�','',0,'?'),('F�o͜0���4��~�u','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue13.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue13.js',0,'�����L1�X��','�����L1�X��','9V�w��y��.l��pAѨ�Y�CT����)!�','',0,'?'),('K�jy��b�e�4\"�w','wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/jasmine-html.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/jasmine-html.js',0,'I���NPE�͊T��K','I���NPE�͊T��K','��y�\"���i��o�0�o<H21�_>kA�','',0,'?'),('K��Tz�Nh[��3�\n','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Packer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Packer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Wi��+���|�ܭ�','y0�mk݈>Z\0\"����ޱ٦f�!�W�zi�5','',0,'?'),(']zJ�S3�\'�k�>','wp-content/plugins/wordpress-seo/images/new-to-configuration-notice.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/new-to-configuration-notice.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C(`��|Uv��w���','a�\'\Z��<zd����3�(�C�;x@`T��^��','',0,'?'),('`g��\'/�:!w�!�8','wp-content/plugins/gravityforms/includes/template-library/endpoints/class-gf-create-form-template-endpoint.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/template-library/endpoints/class-gf-create-form-template-endpoint.php',0,'q]����T�:n��y�','q]����T�:n��y�','l�����EM�{\Z!P��L�xey���A��','',0,'?'),('`�����ĭ�ӽoq','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/without.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/without.js',0,'��/d<� ����Ls�0','��/d<� ����Ls�0','*Ɯ´f�VS+�9� \ZNj�ǎRBL�I��','',0,'?'),('c�� ȵ�E9jz[�','wp-includes/blocks/code/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/code/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!��)���>�8���o$','�� %�B���*�0�Ess��x��-���\\s','',0,'?'),('h\'L>� �n�=�ɓ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toPath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toPath.js',0,'�_���mki���`�3fd','�_���mki���`�3fd','� �͍m��!�s�r+�>O\0��qi�7�V�IY�','',0,'?'),('i�~\0�v�@(mZ{','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/strftime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/strftime.js',0,'�̅���v��leJŘ','�̅���v��leJŘ','�um���2�+ͤ��ϻ\0�� ���̹���|<�','',0,'?'),('l\Zbyu����5)u��!','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/short.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/short.js',0,'�d�,e}nq�âȼ\\�','�d�,e}nq�âȼ\\�','��kx���F%{��� �����G`�L�!p','',0,'?'),('u�|� ����j�\',!','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-array-set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-array-set.js',0,'ƙ_�Q���G�p͒','ƙ_�Q���G�p͒','�o��VBa��EQ*��t�R�ġ��&�Z� ','',0,'?'),('w�7�v+�q1�\Z���','wp-includes/blocks/list/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/list/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�l(�����>�Z','� /Z�w=��u�i��K��w�r�$�VϞ�','',0,'?'),('}�|@qoӊ�eI/��e','wp-content/plugins/envira-gallery/src/Frontend/Envira_Tracking.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Envira_Tracking.php',0,'j�J:�4Pa���RԱ�','j�J:�4Pa���RԱ�','P��U�*�/����\\ #n�\nO���6�','',0,'?'),('������4Յ','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/lib/form_data.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/lib/form_data.js',0,'�����0�ʌ�5�V','�����0�ʌ�5�V','I�uI�H�N�)W��HM��`�p��-�IE>','',0,'?'),('����Li�W�2Υ','wp-content/themes/mint/node_modules/hawk/test/uri.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/test/uri.js',0,'��`wI�Y�/φ}!Ep','��`wI�Y�/φ}!Ep','>�8��Kkǒei�H\rFt-�8�,�!N�ݽ�\Z','',0,'?'),('��KS+�eA�@��','wp-admin/css/colors/light/colors.scss','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/light/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o}�!ʦ5�<�G�','�+� \r&^���<��s$��e:�%�����39','',0,'?'),('��Y7y6��+F�r','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/pages.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_6*�궎LF ?��ٯ','�[�7(j?��IbՓ�ew�|emj�Z�� �\r','',0,'?'),('�o��zrZ��}V@','wp-content/plugins/wp-migrate-db-pro/template/pro/beta-feedback-reminder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/template/pro/beta-feedback-reminder.php',0,'�b��� �o1��W�','�b��� �o1��W�','�cL�/e c�͐а��&�A����(�4x�','',0,'?'),('���E��\Z�HJ:','wp-content/themes/mint/node_modules/bower/lib/util/readJson.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/readJson.js',0,'�0ё:��x�ݕ\0�Ƥ�','�0ё:��x�ݕ\0�Ƥ�','d`R��;\n�����xT����Yq����','',0,'?'),('��e4�8��OGC�F!1','wp-content/themes/mint/node_modules/less/dist/less-1.1.6.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.1.6.js',0,'�\\�[��8�C�W�','�\\�[��8�C�W�','�i�{<�/d�(D}pL\"H�X˒C�L��))��','',0,'?'),('�����Fe� 57[�','wp-content/plugins/wordfence/lib/email_newIssues.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/email_newIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F�zQ���} ����0',']Ǜ���cI�T��)ͣxn%}I�mFb��','',0,'?'),('�D*;v(�.Ҳ�N','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-indexation-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-indexation-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��~�{S�%̅�e�','�sH��i� �|J�u��}Hj��-�\"����e��','',0,'?'),('����UNEA�g�t','wp-includes/js/customize-selective-refresh.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-selective-refresh.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���C�q�Ms�}�ؾ�','yʏ�0`Z��ݹz�\'�ա��~�px�~Q1I','',0,'?'),('��\\��ă�k��\0�C','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-time-picker.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-time-picker.svg',0,'s6�� �ݱ�.&8c','s6�� �ݱ�.&8c','~\ry����\r�)�J\\�wϛ.�S(D���V���','',0,'?'),('�vɀh�}u>�_J���','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/bn.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/bn.php',0,'5�Y�[$���YÍ�}4�','5�Y�[$���YÍ�}4�','$�Е@Ѽ��#�]��5���M�U�����K��','',0,'?'),('�A�o�!�V��ų`v','wp-content/wflogs/ips.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/wflogs/ips.php',0,'lC�db��.�˴�v','lC�db��.�˴�v','Z][W��P�}�,������7*�q��\n��Ƒ��','',0,'?'),('��������vo�8�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Debug/JavaScriptLintSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Debug/JavaScriptLintSniff.php',0,'�zjR�Ǜ���GN�','�zjR�Ǜ���GN�','$D�\\�D�5;�Le���iJ���9�>�j!��','',0,'?'),('��������/W\"�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidVariableNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidVariableNameSniff.php',0,'��F���hn��<(|','��F���hn��<(|','`:8>;V��Ӓd��rCA�H�Ť�e��','',0,'?'),('��e��0Uw�Dޤ�]','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/pickByCallback.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/pickByCallback.js',0,'cc̒�����Rd��?��','cc̒�����Rd��?��','�)\r�Հ������]�윶�4}���Q$�܌f','',0,'?'),('�3u�i?��sC��g','wp-content/themes/mint/node_modules/bower/lib/node_modules/sntp/examples/offset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sntp/examples/offset.js',0,'��,q�<�=�3���d<','��,q�<�=�3���d<','e����[��H涓P�IT$�c�!�C*��&','',0,'?'),('���8l\r?�S���h','wp-content/plugins/wordpress-seo/images/academy/seo_for_wp.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/seo_for_wp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F��L��H��6���','=��lC>�e�c��]����{�X�OI\nn��','',0,'?'),('���n ��*���','wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/test/runner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/test/runner.js',0,'���MoL@��Ʋi��=','���MoL@��Ʋi��=','͡�%�l�nT��{p��=H)��\r\\R�V','',0,'?'),('�\Zٷ�we�,��sm','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/sortedIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/sortedIndex.js',0,'Md�J�T����{W���','Md�J�T����{W���','�\"8��<j�T3��?5|e};�,%>���]�1��','',0,'?'),('����^i�����','wp-content/plugins/envira-gallery/src/Views/partials/metabox-media-upload-form.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Views/partials/metabox-media-upload-form.php',0,'�L譚G�ޘ-y\0����','�L譚G�ޘ-y\0����','�~G��i�`4��X�G@�:�]�1A�t���','',0,'?'),('��\n�����?�M�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue54.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue54.1.js',0,'xo�kX;�Q)��3�\n','xo�kX;�Q)��3�\n','\'¼&�w�_|� �\Z.�k��i���p�Z[�','',0,'?'),('������ԇ\r�S�N�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DisallowMultipleStyleDefinitionsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DisallowMultipleStyleDefinitionsSniff.php',0,'7��_���-s��.-','7��_���-s��.-','i���\rI{b��||�^?U�ӷb��ڱ��\n�','',0,'?'),('��ˢ���g���\r2.','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/isLeapYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/isLeapYear.js',0,'���hT�r-��X�)','���hT�r-��X�)','�\Z[��?iN�#Kw��`\"��,�(i6�ҕ�c�Z#','',0,'?'),('�t�YSQ/[��R�C','wp-includes/blocks/gallery/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/gallery/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�������Ɛ���','�ٿ��*m\Zk�U4Jchb{֘*K5�<Y�','',0,'?'),('j:����� �','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/last.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/last.js',0,'4E%��R/9`�fs','4E%��R/9`�fs','&���e�_����V�h��7gF�$|','',0,'?'),('��*Rv>��&�p�','wp-content/plugins/wp-optimize/templates/pages-menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/pages-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ř\"W�2\06лx\Z�','t���\r���$Ap��H��&{�1Gه�T�?','',0,'?'),('��W�����%�Ȏ�','wp-content/plugins/wordpress-seo/packages/js/images/motivated_bubble_woman_1_optim.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/motivated_bubble_woman_1_optim.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!����)~ �3?)','���-|$_�v�$�E�\nu,!�\"C�&?�A','',0,'?'),('�2�ܨ�\0\0� ѡ�','wp-content/plugins/wp-optimize/vendor/composer/InstalledVersions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Y$�R�\0�����','N�Rí2���H�h�&HX:b]��d̳���2O�','',0,'?'),('Ɲ!�OLwu�zB&:_','wp-content/themes/mint/node_modules/less/dist/less-1.4.2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.4.2.js',0,'�?;o�dd�X�C�','�?;o�dd�X�C�','��b������#��$�ҷ��q\ZޮA�V\\�c�','',0,'?'),('\ZOÊ �==�+I4���','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�gK�e!�\0\0�XEv�','�F�7�3����}��o�\"[�>9nfOM}����','',0,'?'),(' o��ƕ��t_��\0.�','wp-content/plugins/wordfence/views/options/option-switch.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iiY�>���A�٠�','�n8:��$��ר����+��\"z2�-H','',0,'?'),(' ��C�(�qO�aD�߄','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/examples/highlight-json.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/examples/highlight-json.js',0,'�l\Z�E8|D���|z�','�l\Z�E8|D���|z�','��zL��D�9�e�IJ/�9. PZf�(�C��','',0,'?'),('\"���\'�Q�<\rX9c�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isBoolean.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isBoolean.js',0,'!�a�/]�Tx�?�oy','!�a�/]�Tx�?�oy','M����!/�4y����\\�3q?$��9�','',0,'?'),('*W�iM����r�','wp-content/plugins/wordpress-seo/src/helpers/first-time-configuration-notice-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/first-time-configuration-notice-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����)�C���CE%','�\n�+������FX�͆��0Q�܇��3S�?','',0,'?'),('+�Bp��4A� p<��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lastIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lastIndexOf.js',0,'j�/�h����v�ٹ��','j�/�h����v�ٹ��','��̱�%�\r���n\\0�^!~4���V)����','',0,'?'),('3��X�9.�DS��2','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/misc.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/misc.js',0,'�\0_F@�|�� �d�O','�\0_F@�|�� �d�O','�Ǵi�y�&�E#�lk�H���bpG�;�\\h�','',0,'?'),('8��^�j`b$-���','wp-content/plugins/gravityforms/includes/settings/js/dependencies.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/js/dependencies.js',0,'�N���U_�� ��mJU','�N���U_�� ��mJU','\'�2s���C��#��yL\"i�o]{���̇��','',0,'?'),('>����J��˧��d�z','wp-content/plugins/wp-optimize/vendor/mrclay/minify/LICENSE.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7F������H��\r�','3��{�a��\rI�C��W�fq���W\\@��^=�','',0,'?'),('A��p�Ӽ���3�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/LowercaseClassKeywordsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/LowercaseClassKeywordsSniff.php',0,'E�D�\0~��� b!�R','E�D�\0~��� b!�R','�����G��EՑ<�#]�D�R\\�I(\Z','',0,'?'),('B5׳�P!��22��Y','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/ESLintSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/ESLintSniff.php',0,'ge�H�-��I�)�Y��~','ge�H�-��I�)�Y��~','>��Flj�Tޖ(`���S6I@����&�1�','',0,'?'),('C� \\C��ѲA�2�','wp-content/plugins/gravityforms/includes/addon/js/gaddon_frontend.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/gaddon_frontend.min.js',0,'X���83��������','X���83��������','HT�p[>M�>*��XH>�]y���\"��D��{u�','',0,'?'),('H���~{ppN)�聻','wp-content/plugins/wordpress-seo/src/presenters/admin/help-link-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/help-link-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@[TK\nմ�]/����',':��4��_��|K`N�\r:I6���oH ]�','',0,'?'),('N��H��4�T�t','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��W�[�\nL͊���DV','�K���xe�&�hL��u��pHn��b�/','',0,'?'),('Z.�X�\Z�63��م�','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-radio.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-radio.svg',0,'4��C���5]�@pg�h�','4��C���5]�@pg�h�','��q+\Zpa��.�}݃�`�Z�V]�8LP���','',0,'?'),('[\r%M�{/tRe��','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\"KS�D�P��^�H','P�E�Q��a%��yd�qp��?�X�M|�`','',0,'?'),('\\���\Z�e �)��Up','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȑH�\Zb�>V�D��R2','rћJԑI/�\nO�Y}�x��ņ����U ','',0,'?'),('^p��\0��j#\"Ĉ�','wp-includes/css/dist/block-library/elements-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/elements-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�sH���H㑡� �','/�hLLʭ�ShH�����J�Ժ4 � \"�?�A@','',0,'?'),('h���Ud�`P�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ObjectDefinition/MethodInjection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ObjectDefinition/MethodInjection.php',0,'$�3ӻƈ��_���c','$�3ӻƈ��_���c','��Φ�\\�Dg�sfe�W��Jӎ�R,40&;�v*','',0,'?'),('knN�,��8��3a��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/updateWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/updateWith.js',0,'�f����\n�vH�p','�f����\n�vH�p','��X��wS��@���`��M2L ,O?A{�>r','',0,'?'),('m50��:Gu�)�F{c2','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isNull.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isNull.js',0,' ���E9���{iJV',' ���E9���{iJV','Ϲ�v��+����i����܌�Sҟ�\n','',0,'?'),('w���+\0���2�R','wp-includes/sodium_compat/src/Core32/SecretStream/State.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zjo�\0��y,�*�}c','2p\"Wj����s�lf&S@�[�\\��\"W�','',0,'?'),('x@Ҹ��E5�+���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/meanBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/meanBy.js',0,'~M,r\0��ͳ�(�','~M,r\0��ͳ�(�','�SJ��/�!E��I�z�L��镴��k}��X','',0,'?'),('y�R ����/�Y�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/charsRightIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/charsRightIndex.js',0,'<���M��༟^b@�-','<���M��༟^b@�-','F��yGή\r�[Nސ�6�|�擛p�[+W','',0,'?'),('��Л V��/��1�^','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/abbreviate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/abbreviate.js',0,'ˊb���[ok�F��','ˊb���[ok�F��','A�}0VM��@�E�\"l�~�rm�t�6G�\'Nm�','',0,'?'),('��R���u���N','wp-content/plugins/wordpress-seo/js/dist/externals/socialMetadataForms.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/socialMetadataForms.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T���\n{w٭v�+��%','�_;����-�ݮ��6�C�L�=�a�R','',0,'?'),('����ة�EѡR4J','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-multisitetools.34c15ecc.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-multisitetools.34c15ecc.svg',0,'*�^��-�.7�o�p��','*�^��-�.7�o�p��','j�ݷƂ��B��!�y��8jq����Y���\"R�','',0,'?'),('�T�ܗ�E�8~��','wp-content/themes/mint/node_modules/bower/lib/node_modules/request-progress/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request-progress/test/test.js',0,'w��\r�e�!�gSEH�','w��\r�e�!�gSEH�','�C8�;��G�Z�F��w��I����.�','',0,'?'),('��m��Y�W[��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/MoFileDumperTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/MoFileDumperTest.php',0,'{A�E�;�/��a��','{A�E�;�/��a��','���j��\\V��ڇ9$�0t����@���+�.','',0,'?'),('�-��B��|tS^�','wp-includes/customize/class-wp-customize-nav-menu-section.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-nav-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ԡ�P�\n}�$','�vG~?t7\0��h�R,��|�]9��p�.J�w','',0,'?'),('�7k�/qz��j�/5','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/ReadableOption.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/ReadableOption.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`�Zz�@��m��h�','�8^��M�a��d�R���|�}L]_�(','',0,'?'),('��E{w �C�U�w�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Output/StreamOutputTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Output/StreamOutputTest.php',0,'K3˧�=A�8��H�N','K3˧�=A�8��H�N','#����rT��� h���J��%��F���[cp�=','',0,'?'),('�Wz�F��\0�[,�*','wp-content/plugins/gravityforms/includes/locking/js/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/locking/js/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('���q��u�%�a�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ar.php',0,'��HD�I�s����','��HD�I�s����','���R,�F�2�e�W��D\n]>\0pF��k\r1{','',0,'?'),('��\0��Վ�O2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/concat-map/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/concat-map/index.js',0,'��T�#��{>�Rs�','��T�#��{>�Rs�','�k;�k@����u>�w�����`�M`� �k�{T','',0,'?'),('��v4��,f��3�','wp-content/plugins/wp-optimize/includes/class-wp-optimize-utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����R{��S_���6�','�����P�v{4d=��Wi�~m̃��e�3��','',0,'?'),('��������~\n��','wp-content/plugins/gravityforms/includes/environment-config/class-gf-environment-config-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/environment-config/class-gf-environment-config-handler.php',0,'#�����O�w��C�Po','#�����O�w��C�Po','��s�0� 3n�x�D�d���<���','',0,'?'),('���&����*�DM','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php',0,'[����&lKS������','[����&lKS������','�N����Qa��5|���b�7i!��?e�rF','',0,'?'),('�}��\\I�?��Qo','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/pairs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/pairs.js',0,'�wY��!x���<�П','�wY��!x���<�П','��l\Z��� d��ON�����tB�������','',0,'?'),('�S˪�\n��B�V\"','wp-includes/fonts/dashicons.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/fonts/dashicons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_�3$_�n��5��X',';ʐ\'8�4aOoY8-U�62���K�qq�$B�x','',0,'?'),('�R�C�\\�;�2��\"5','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-file-sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-file-sync.js',0,'g����<ȉV�i+0��','g����<ȉV�i+0��','�{�e�VG(n�-�ȣ$e|�=�(su���W\"�f','',0,'?'),('�W3&�dymت���','wp-content/plugins/wp-optimize/js/cache-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/cache-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�r7a��b\"a)T~','K$�*=]xO�Nb��e��(�B��(�B2Z��Y','',0,'?'),('�h�jk��!��','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/default_bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/default_bool.js',0,'�z6�F.�9��SBk�','�z6�F.�9��SBk�','o�W�9��KC#�t���gV�6)s�T�\"�tF','',0,'?'),('�Y��?��l�V��+K','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/OutputStyle.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/OutputStyle.php',0,'h%QT�������','h%QT�������','ʞ�K:m�^[\Z2d�p�%)H���P�xj','',0,'?'),('��\\��h\Z��)Ġ�','wp-includes/blocks/paragraph/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/paragraph/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SJ����ǟLF���؇','}$U�b��k��>k���N�2�S���P�','',0,'?'),('�q�=/���1Z�M��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js',0,'�w��RN1�>ϥ!_��','�w��RN1�>ϥ!_��','���g�jD��;A�,M>lʷ��s�C �S]��','',0,'?'),('�}���My������','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/unary.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/unary.js',0,'�R f��*Aq�����','�R f��*Aq�����','}W7�����_��˔��3{�G���3;��_�pK�','',0,'?'),('���^�@#��d�Vѩ','wp-content/plugins/wordpress-seo/src/services/health-check/links-table-runner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/links-table-runner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rey���� SsŦ�f','78��[{�\"G���~�O� [��bhJ��Տ#�','',0,'?'),('�*Q. �-c�%�D','wp-content/plugins/wordfence/lib/flags.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/flags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i��c�磭��c�-','8�Y��CO���0�j{�\Zx��D�Ė��x�O�','',0,'?'),('�8j�x�˧�r�Δ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mapCacheClear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mapCacheClear.js',0,'�����ӌVջ���4�','�����ӌVջ���4�','�����=ѡ���?˹A�����ڟ��l/�','',0,'?'),('� �f&@ӎ�q��','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/script-async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/script-async.js',0,'V٨��|�� ���P{','V٨��|�� ���P{','�YP+�\0��\"���Ԍ�yk\Z�vjǏv�X�w��','',0,'?'),('����~�{f�$�j�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/extendWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/extendWith.js',0,'d�ͅ��q\ZO<|��','d�ͅ��q\ZO<|��','���\"f梀�@n�{�ș6��i�m��b�o�','',0,'?'),('� �u���?��� A�','wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-delayed-http-upload.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-delayed-http-upload.js',0,'�a��A��%���','�a��A��%���','&z�<��y_z*�J�-X(!���e����P��','',0,'?'),('� zmK쾓�A���(','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/countBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/countBy.js',0,'�㡂���ױB�k�','�㡂���ױB�k�','\"c�#t�[\r��� ��1���Ȧ�@F�','',0,'?'),('��-�Ƶ��t��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ObjectOperatorIndentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ObjectOperatorIndentSniff.php',0,'�����G�: ː`M�tQ','�����G�: ː`M�tQ','���.F -E\0����f1$m��#�0���~�','',0,'?'),('�۴Ɵ�\"\\��)$','wp-content/plugins/envira-gallery/envira-gallery.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/envira-gallery.php',0,'9�6(�5��!q���','9�6(�5��!q���','�D(UE�c������2���-���1-','',0,'?'),('`,�����+?4E:','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/IOException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/IOException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d^Ҫ�l�Ձ�[�\\��$','��z>ZL7܃��nۻ���C�4k�2�&','',0,'?'),('�6��v�?��\'��','wp-content/plugins/gravityforms/js/plugin_settings.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/plugin_settings.min.js',0,'��[�թ٬n��raҬ','��[�թ٬n��raҬ','8�uY��ʇn��� �H��tg|h��jP�','',0,'?'),(' �ex�>�T�ёBS','wp-content/themes/mint/node_modules/domhandler/lib/element.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domhandler/lib/element.js',0,' �͟�d@-���!j',' �͟�d@-���!j','��fe�ڸ��t��sL ��,�(��{X%�$�','',0,'?'),('\n M�I�~�YEO��]�','wp-includes/blocks/post-featured-image/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-featured-image/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�\Z�!��$Q�Au�','�fp��e�胻t�r[ŧsT��Xr�Ɂ�-�M�','',0,'?'),('\nE(4.�-���)��]','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J-��in��|:�b�\"','�&���#��%����MJ.��\"�7�d�d13�','',0,'?'),('(a+n)���%8[]�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-�>.��~npR ','�r�Ͳ�I�+�G�7\0�{J�#S�����YXa','',0,'?'),('��ܡ9�u_\\\n�9�\'','wp-admin/css/color-picker.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/color-picker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���x��Ti6���','ۣq��T��zu���Oi�\\�5ЯY�u��~=c','',0,'?'),('gG)J`�L�+i�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getView.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getView.js',0,'M�8gЬ����V����.','M�8gЬ����V����.','�����5�=�u��tg��nA������/','',0,'?'),('\'�y�o�)_��','wp-content/plugins/wordfence/lib/wfAuditLog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfAuditLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f���(�~��M��]%','�gt�����7��dp�f��j0Rn��9�;��','',0,'?'),('�KU�g0MU�/��ʇ','wp-admin/admin-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Xo��_���Բ)\n��r','�(�Z!.�e��TU92;�����ݏt5o�^','',0,'?'),('3uy��v�ӟ)W7�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/prepare.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/prepare.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zw�;�\r�������','(Ȭ��F5Fm�NM9���ö����|�:','',0,'?'),('�pv��&fgPq�(','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/startCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/startCase.js',0,'�w�\0{�UG@V�r','�w�\0{�UG@V�r','�����2us��|�2̀%{\n\"d\n8��`\'��','',0,'?'),('�.`i\0���?�\'','wp-content/themes/pinnclonesmalltest/vendor/psr/simple-cache/src/InvalidArgumentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/simple-cache/src/InvalidArgumentException.php',0,'�p�!��ʃnh�AM','�p�!��ʃnh�AM','���g�V����U$�\'�)9y%EI���','',0,'?'),('Q��k!K\r����w','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/themes/empty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/themes/empty.js',0,'�%�a�����0���ƪ:','�%�a�����0���ƪ:','����8��A��eH���&����P�<�','',0,'?'),('lo�Y`��a \\�r','wp-content/plugins/gravityforms/includes/assets/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/assets/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('Կ�Lb�,���n��','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/unknown.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/unknown.js',0,'hH}�]C#���xwڇ6','hH}�]C#���xwڇ6','���I��E@�#-\rǐ�V{Ny�%{��֖hc','',0,'?'),('����U^>�:n�@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getSymbolsIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getSymbolsIn.js',0,'�I���0��F�xm','�I���0��F�xm','�1�pO�ۈ�!��8IO\\��)kS�V2*m��','',0,'?'),(' � �� �-GVa�K��','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Exception/RuntimeException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Exception/RuntimeException.php',0,'Qs�PSRz��0w[-g','Qs�PSRz��0w[-g','����FI��\\O���˄��Ʊ[��?4{Y�C','',0,'?'),('\"�C���I�r�J0�','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:�Hb�~��r���','%T�rP�d�ž^c��ɅyԹ�Q�/��k��','',0,'?'),('\'U&C��� �g3��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toPlainObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toPlainObject.js',0,'V������N�R���','V������N�R���','�}무:�\Z�z�乫\\������K1�Q@','',0,'?'),('(����������{@','wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-searches.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-searches.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h���b�dEV<$C���f','}θ�4b�}�C�����qo�Ox������d{�','',0,'?'),(')>��,lT�q�Y�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/first.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/first.js',0,'�9 ��cX\\Mܹ�#_j','�9 ��cX\\Mܹ�#_j','��ş��֯V�T!!�^9p�=یu�˖�X','',0,'?'),(')�<���C�o�|�o','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/sign.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/sign.js',0,'j�D+�(\"6�p)X','j�D+�(\"6�p)X','im�����d�\rn�l���{�]\"��謑���','',0,'?'),('0�!��r�Bkݰ���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isUndefined.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isUndefined.js',0,'�J����\0�uy+���','�J����\0�uy+���','��Z5�$\0���O\'3busdj\'�(&�u[��','',0,'?'),('4;V��\'�/����f�','wp-includes/js/jquery/ui/effect-scale.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-scale.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_Q\n����VWs�','Q�ںc�X��ڿ�l bɯ{�{�^X�oʚ','',0,'?'),('5���h�^�l�)�$P','wp-content/themes/mint/node_modules/load-json-file/node_modules/graceful-fs/legacy-streams.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/load-json-file/node_modules/graceful-fs/legacy-streams.js',0,'b�Rܛ��p;&','b�Rܛ��p;&','z�a`�@e��M�- ��OF3�\'S��eS��7','',0,'?'),('7���OW\n@�a','wp-admin/css/colors/modern/colors-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/modern/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\.8\"���\\e�q�c','G�^��8����lV�4��D�U��M�Ɂrzzo','',0,'?'),(':�f�?bj���.���','wp-content/plugins/wordfence/views/blocking/block-list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/blocking/block-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�2�&s �Ԩ����','�ՏI�#��e�������r�`-u�W���QQ','',0,'?'),('@:��%l�b�N�t�','wp-content/plugins/wp-reviews-plugin-for-google/static/img/platform/logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/platform/logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�Φ�����K(q�Y�e','WS\Z�0P� j�Hƒ����e��(����Y','',0,'?'),('B��T���\r-��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php',0,'y� �l�oǙL�','y� �l�oǙL�','w(u��!��.<.�j `WW��<��|��UG8�','',0,'?'),('Es��&�1�I��Fy','wp-content/plugins/advanced-custom-fields-pro/includes/Blocks/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/Blocks/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('J`ɖ8i�5NGo���','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/not_enough_buf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/not_enough_buf.js',0,'�\\MS�W�m��a�','�\\MS�W�m��a�','�唎|w섧���m�D\"s��\"��kŏ�>','',0,'?'),('Pc\Z�)cң���\r�','wp-content/themes/mint/node_modules/cli/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/index.js',0,'6-�V ���$8�/m��','6-�V ���$8�/m��','U{VX���-�z�u\\��*%��T1ʁ\"���','',0,'?'),('S�W�C�t �ۿh�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/exception.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/exception.js',0,'�)����`,a��','�)����`,a��','����5gA�2��@j�҆�_�=���aM','',0,'?'),('i��z\r�*��K�','wp-includes/Requests/src/Transport/Fsockopen.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Transport/Fsockopen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','95h������^&9�U�','�����}�|IW��A��\r�~H�\ZH�!�Z��','',0,'?'),('m�\\K7��dv�kQ��','wp-content/plugins/wp-optimize/js/loadCSS-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/loadCSS-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0��F��Vo�,R�U�','�_�Ռ=..�b�-�P�\\=�����u-�Ht\n�G�','',0,'?'),('rM��Ä���e��','wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','((M�5�3|\r&�V','��_��\n`��\Z� �(�R�]j�A�','',0,'?'),('t�K�lC����Ǫ�w','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/valueOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/valueOf.js',0,';��r����1+�v�',';��r����1+�v�','�_.�I&��!�5��?��HIL{�)��Zїk','',0,'?'),('x�`Ğz�?����c�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/filesystem/FilesystemServiceProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/filesystem/FilesystemServiceProvider.php',0,'x�WើKp8�����','x�WើKp8�����','Q =�� ��4%�Hp�W$x/�Ƹ������]96�','',0,'?'),('�=����t�?��B','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/lastIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/lastIndexOf.js',0,'����ŵ�н�T��','����ŵ�н�T��','��]�7���%z�q;d7}��(i��\"(��\r�-','',0,'?'),('���a��iuUs<8','wp-content/plugins/envira-gallery/src/Legacy/class-envira-gallery-metaboxes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Legacy/class-envira-gallery-metaboxes.php',0,'�-��d5�[�:��','�-��d5�[�:��','#���Z\" h]XD��d\n�A�Zw����','',0,'?'),('��n<��\nSN�/0\0*','wp-content/plugins/gravityforms/includes/template-library/templates/class-gf-template-library-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/template-library/templates/class-gf-template-library-template.php',0,'��2��p�EiߎL�','��2��p�EiߎL�','�k���sy�ѝ�}��V��e;K��9>�I�','',0,'?'),('��;�*�F\'u����','wp-includes/blocks/code/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/code/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+v{�d��f$9���^','K鏬�/� �s��CS-\0�U�jh�s��5 �','',0,'?'),('�\"��}\n�oj�]���.','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/need-air-con/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/need-air-con/index.html',0,'��>l�RjV0Q���L,�','��>l�RjV0Q���L,�',')k�yCY ���x��鯢t[���O��7�R','',0,'?'),('���C\n���U���','wp-admin/js/custom-header.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݎ�\Z���\Zڸ���','��v�N����;d�V��5d���t�,�','',0,'?'),('�1N���m#�8�+','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-buffer/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-buffer/test/basic.js',0,'�d���æ�^#m�K�','�d���æ�^#m�K�','Ӱ��(\'�.>_��@�h�Kr�Ӂ�y���ym','',0,'?'),('��MS%��vkD�g�\r','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Formatter/MessageFormatterInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Formatter/MessageFormatterInterface.php',0,'@�n#W $�A1W �','@�n#W $�A1W �','�MK.pW�Hg<3V,��S��g�\0�0t�%�t��','',0,'?'),('��ic��d���ҡ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/templateSettings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/templateSettings.js',0,'Z��oq��ϧ�7D�{','Z��oq��ϧ�7D�{','�x�k2�q��S�D�(��{�ө�iL2$��)y�','',0,'?'),('�9�T��Cn�f�','wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/README.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q��u�VYh���h�','���;T��txİ�*�Y3,x-5��f��x','',0,'?'),('�X�Y��E�L����,','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ObjectDefinition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ObjectDefinition.php',0,'\Zn@A��/�=c>�Ë$','\Zn@A��/�=c>�Ë$','Z�X������Z Kl,�[\\����Z-�n�','',0,'?'),('�y4�ƨq��YK\r','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/BeforeValidException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/BeforeValidException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(���ɚ�ZR�0`','�!�`#h�v��-I�|�KM��c�I\'��$8`�','',0,'?'),('���+b�qhXrE�\Z','wp-includes/blocks/comment-author-name/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-author-name/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x�9\r�p\r���8K','��|�ާBOCo�i�7��7�=�_!��]Б��','',0,'?'),('�)���G�yf��Ҥ�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ᗳ��SP��4�b�Q','�\ZG�)!>tqC��m��_�=j�����*et','',0,'?'),('���3�A�{�T�o2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/run.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/run.js',0,';��r����1+�v�',';��r����1+�v�','�_.�I&��!�5��?��HIL{�)��Zїk','',0,'?'),('��@\"Q{�M|FX#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/quarter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/quarter.js',0,'w$��f%�C�#)fp\0Z','w$��f%�C�#)fp\0Z','�5��w��>��Á5�/}s��|�e��','',0,'?'),('����Wﴸ*��}','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/functions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/functions.js',0,'Vd+��\ZW`V�Z','Vd+��\ZW`V�Z','�߮\\�^1�FzN�to�z$�K��)�1�-�','',0,'?'),('��v�b��t�L5�B ','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/CSSLintSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/CSSLintSniff.php',0,'�!6 �6�z��;Z�','�!6 �6�z��;Z�','�9�OxI�D6��`�r���濲ɧ\\�','',0,'?'),('�t��-ބ�uя,Kw$','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedLastIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedLastIndexOf.js',0,'�/�u����vP��Y��','�/�u����vP��Y��','��J�\n�]ü����a*�C]��[�r?��G_','',0,'?'),('��ٕ2�*����NI�','wp-content/plugins/wordpress-seo/admin/menu/class-network-admin-menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/menu/class-network-admin-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f����1;!�9M%�','�;\"I�t��H��@���>!�L4k�����\rN��','',0,'?'),('�1V��J:��l���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Diff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Diff.php',0,'�ʴY?��4-�yO�','�ʴY?��4-�yO�','R�rWD6��w�}��>�q$�NY�I�<Z�','',0,'?'),('�>���F�ҍ1���b','wp-content/themes/mint/node_modules/clean-css/lib/text/name-quotes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/text/name-quotes.js',0,'*�tT�c�݃攋�','*�tT�c�݃攋�','���:��5�UIaI�m���@�Ja\09��','',0,'?'),('�`�l)��r7k0K �','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isStrictComparable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isStrictComparable.js',0,'uP��.������[}dC','uP��.������[}dC','u.�}��n���Ƈr��Iab&�߹?\"�x�Pf�','',0,'?'),('���4K�}�\Z���sS','wp-content/wpo-cache/config/config-juiceelectrical.co.nz.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/wpo-cache/config/config-juiceelectrical.co.nz.php',0,'o`o��Q��\nV��aї','o`o��Q��\nV��aї','5�D�Ѣp ��A�����r4�C�mg9��X�17','',0,'?'),('�!��u�V.(���j9�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/sentenceCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/sentenceCase.js',0,'��ظ��|*����z�','��ظ��|*����z�','y��U.b�kl��\\�KH�-�� ��5�9���','',0,'?'),('�-���]��J�㐛�','wp-content/themes/twentytwentytwo/assets/images/bird-on-black.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/bird-on-black.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]�\0��&�^���=','f��3���f�q��_5�nASJ� W+j���','',0,'?'),('�\'(7�*��\n�� U','wp-content/themes/pinnclonesmalltest/app/filters.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/app/filters.php',0,'��DmO���F܅','��DmO���F܅','a��j3Y�.�Tk�?Q�a�ff��7��*�>`�','',0,'?'),('�q�ߨ��}F[�k�(','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randBit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randBit.js',0,'��:�B���\\�*N,�','��:�B���\\�*N,�','X\"\\��i|�`�Ӆ����O�řmŹ��;','',0,'?'),('�=\'3���e!���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/indicesOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/indicesOf.js',0,';�x����h�)W���W',';�x����h�)W���W','ߞ��?5ji�`���B�b�+c\rsaC��b','',0,'?'),('�]YK�9{b��H�4<�','wp-includes/SimplePie/src/Cache/Memcached.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Cache/Memcached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qE4����5Dv\\',' ���k�\Z(�n0Q�jzN�����%','',0,'?'),('��B�ࢍ�C�ˇ��','wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib-write-after-flush.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib-write-after-flush.js',0,'�����E��Lt\rhg','�����E��Lt\rhg','x�?��mC7�ܶeI��z��,�v1aa�V','',0,'?'),('�\rg=�6�bC�[�߭','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/JWT.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/JWT.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŀ����,��TQ�','O�\Z��X_�N�P\r�tb�A�P)[��R���','',0,'?'),('�ֵg���~hF�a�','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/QueryTemplateInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/QueryTemplateInterface.php',0,'��ᶭ������n�','��ᶭ������n�','���Iܷ��՚��تj @\\b/�w}Bɜ','',0,'?'),('��K���UG[�K�n�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/dv_MV.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/dv_MV.php',0,'X�\'��+s,i}��\0��','X�\'��+s,i}��\0��','����#[�y���/�K��q-|%��Ʊ','',0,'?'),('�����n8��o��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php',0,'z���r�>U<z1x�e','z���r�>U<z1x�e','�2L�Y����6[���S��j��@K#','',0,'?'),('���窒�u��\rZJW+','wp-content/plugins/wordfence/images/help.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$N�;\'��M��� Y','���\Z�7\0��r/i��z;ki,�=L�Z�g���','',0,'?'),('�)����t\r�,�Jڼ','wp-admin/options-permalink.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/options-permalink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Y�#\\ۥ!�1@�I�','�\'B+qVa}�0K�f�é�*m&����j','',0,'?'),('��nE�\\n��z�>iP?','wp-content/plugins/wordpress-seo/src/integrations/admin/crawl-settings-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/crawl-settings-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)=�0�Rd��x��','���U��%\"�Nr��~>��1\'FB��4s�K�','',0,'?'),('? ,�؈�y*E��CX','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Elementor/ContactButtonWidgetURL.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Elementor/ContactButtonWidgetURL.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X��+\nF�u�$&��','���1�b�WRe~0����f���[n���_�>','',0,'?'),('Br�%����]�d','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/strftime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/strftime.js',0,'�Zޒ}���?2G�d','�Zޒ}���?2G�d','o�j�7�U3$+�i��F�/�Q͉>M3B48','',0,'?'),('\r�\r�X����_�2{�;','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/DisallowNewWidgetSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/DisallowNewWidgetSniff.php',0,'�pm�ǣ��=�','�pm�ǣ��=�','ߋ�5�\Z-Zó�Bj�Q �k�q��X����','',0,'?'),('C�?�x��9#� k�','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-checkbox.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-checkbox.php',0,'�7��X܋�(L\06M�G','�7��X܋�(L\06M�G','��ٍ�Ә�_��g�sm�\n�f��>�� ��At','',0,'?'),('Cއ��Mt�d���\"','wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-08.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-08.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gi���DŶ9���Gf','@�Ih���%r����\"ØX�(���P�','',0,'?'),('6.����՛e�$','wp-content/themes/mint/node_modules/bower/lib/node_modules/intersect/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/intersect/index.js',0,'s�g��V�O�L��','s�g��V�O�L��','ӌ�)���\0��~���T�5�٤f\"#R�&V&�','',0,'?'),('�?DŽ����:\n��X','wp-includes/customize/class-wp-customize-theme-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-theme-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z1ᗊ4�i��#','dt�1(�q��ڜ�(���A���^����','',0,'?'),('\r����Q�Q�u��','wp-content/themes/twentytwentyfive/patterns/more-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/more-posts.php',0,'�兪�N8HPuT͞�','�兪�N8HPuT͞�','侘~D�w���b��f�]�a%�$���ְ�&��','',0,'?'),('a���,.�\\�-\n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pickAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pickAll.js',0,'�\">:y@�Z!!Js��','�\">:y@�Z!!Js��','��8�^�9* t��Bx��o����ip�M','',0,'?'),('Տ���$0M°ș','wp-content/themes/mint/node_modules/promised-io/engines/rhino/fs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/engines/rhino/fs.js',0,'�\"_�ba��p�','�\"_�ba��p�','�6j�PZv�v-#B\Z\"Jޥ6�Q%\Z\"�M� �j�','',0,'?'),('��A(�}��@���','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Store/StringStore.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Store/StringStore.php',0,'�\':�A*W�ؚ䫸�','�\':�A*W�ؚ䫸�','Gm<�a�Uu�HК��5P�lkq|v���UC�','',0,'?'),('\Z��) �%iy�δ','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}+#z,��e�rEJ-','sf��q@��8�!yW�&ڔA�+/�uY���44�G','',0,'?'),('$�K��l���-)%n','wp-content/plugins/gravityforms/includes/addon/js/gaddon_results.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/gaddon_results.js',0,'c2�w�N����\0���','c2�w�N����\0���','���>�Z��\0�ͨwf�\0��s��C{�','',0,'?'),('�\"<�T�QȨ2�7x','wp-content/plugins/advanced-custom-fields-pro/includes/api/api-helpers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/api/api-helpers.php',0,'��qE��i�>�́�.','��qE��i�>�́�.','�6��Ts�k��\\�@9�\n���h�0ӘU�V:8`','',0,'?'),('���)L�M�b�Cx�','wp-content/plugins/gravityforms/assets/js/dist/admin-components.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/admin-components.min.js',0,'�j��%{nL)�%��','�j��%{nL)�%��','��>�/Q{�j�� �bbB/[�nΟ���ω�','',0,'?'),('&���o�KI����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assoc.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assoc.js',0,'j0,8|^1�n���q-','j0,8|^1�n���q-','�͕c�2��W�c#�r���\").A��^Q���','',0,'?'),('&��**����^�]t�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/precompiler.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/precompiler.js',0,'\'��F[,X��m�sr�-','\'��F[,X��m�sr�-','�+b��q%�._\r̮k�P�ַ,���pw�=','',0,'?'),(')�!j��l�S�\\IJ','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Automatic_Item.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Automatic_Item.php',0,'cf�+mRFNX�\'�>C','cf�+mRFNX�\'�>C','� +0���FV(�����l��{�WS�','',0,'?'),('-�>�=���J�3Ϲ�E','wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-content.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-content.php',0,'0fiq��#�����x','0fiq��#�����x','j4�Q�������\"\\���=�����T��','',0,'?'),('19���^�lد���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/Htmlable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/Htmlable.php',0,'��/�� �>�!','��/�� �>�!','ѭ�*��>���\r�����x�`P�?���','',0,'?'),('3�d����yj�����V','wp-content/plugins/wordfence/lib/menu_firewall_blocking.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_firewall_blocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@O<�.<)�$�ޓ��','\Zޛp��� ���>��B*\'��^����T�','',0,'?'),('5�b�e�,�+|�4�NX','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/FunctionDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/FunctionDeclarationSniff.php',0,'�Tgc��\"\r����&ա�','�Tgc��\"\r����&ա�','qP*f�pM��N�#�p#9<\\WKf�\0�2]R','',0,'?'),('>�\Z���?��d','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/search-replace-regex.3cf90f8f.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/search-replace-regex.3cf90f8f.svg',0,'��0�{�fA���z:','��0�{�fA���z:','3�^#�f���b���a۴xf�x��Y|�ez�','',0,'?'),('B��y$Cc�i�8+�g!','wp-includes/blocks/details/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/details/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z��$U�p��=','h��D0Dc���ErCQ��6&0�V�Lf�|љ\r','',0,'?'),('DU�xӾt��/��','wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/pause-resume.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/pause-resume.js',0,'���C�Ү�$+\0�~eK','���C�Ү�$+\0�~eK','��c��P�粧qA+ּ��kd�j,�8�_�','',0,'?'),('JD�\ZS�/�o��77/','wp-content/plugins/wordpress-seo/admin/views/class-yoast-input-select.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/class-yoast-input-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^�P��i�0gؓ','3\'7բ�s<����P���\":�ܷ�Ƣr�wV','',0,'?'),('N;Y�R�g c���9�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mime/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mime/cli.js',0,'�(Ie.�l�$gS�\'','�(Ie.�l�$gS�\'','A�z�2B��wX�0�x���!|\"�,�^(��J','',0,'?'),('R�r�r�(�ȟ��P�','wp-includes/blocks/media-text/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/media-text/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P���0�1\r4\r=�1O%','b��a<!��3ڞQ]3�s��#QM4���pE�','',0,'?'),('S�\rj^�lʷ~0','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/pullAt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/pullAt.js',0,'�*�n-����tPb\'�','�*�n-����tPb\'�','pAx[�%��,���r��Y�>̡&1Ȭ���','',0,'?'),('V2o�v���YUՄ^','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/Scripts/ContactButtonScriptDependency.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/Scripts/ContactButtonScriptDependency.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f!h5�����f�','�T���9\"�$�D2|��i�,�LQ�pb��','',0,'?'),('Wl��y:�\0Vn`�d\0�','wp-includes/js/tinymce/plugins/wpview/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��6-A�ī�[����','�lO��o�gL�.dC�ߏ��ֲ�n=��;~�!','',0,'?'),('W�t@HxT�՚��','wp-content/plugins/wordpress-seo/css/dist/notifications-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/notifications-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�m��|��9�ޭ','z�M�/���G}�(L*��1!��b\\�A(�T�%�\\','',0,'?'),('[�Y[���j��Lj�G�','wp-includes/blocks/search/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/search/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z��嘻�S','��-N�k\"�,[�[�j�_t -�X�O����','',0,'?'),('f�*�=!�rE�����','wp-content/themes/mint/assets/vendor/modernizr/media/Modernizr 2 Logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/media/Modernizr 2 Logo.svg',0,'6理/��/WZ*�cφ\\','6理/��/WZ*�cφ\\','�_����z��^�u�*��J�\n��&���}R�','',0,'?'),('gU���!�t�\0�R��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/CustomerTrackingTemplate.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/CustomerTrackingTemplate.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1x$1f�$�h!$�q�','T(�fOޠ��,��y�no��9�(��e�[�','',0,'?'),('h8�ʯn��-�� *','wp-includes/blocks/buttons/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/buttons/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}���!r<�����','��ն�,*�͖��>3���x\r6����K�5','',0,'?'),('m��4\'�^$Q)RIX��','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlDocument.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlDocument.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���CGV��`1+�\Z','4�Ҁ��YöD���j����ۣ�(yt����A�','',0,'?'),('q�[H\re�[�{����','wp-content/plugins/wordpress-seo/js/dist/languages/ar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/ar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-OR���٥D|�e��','���[^�)�M��UA�� S�f-CѸE��b\\�','',0,'?'),('y�z��¢z��','wp-content/themes/mint/node_modules/bower/lib/node_modules/array-map/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/array-map/index.js',0,'��Ʋ��K�� ��j','��Ʋ��K�� ��j','q�@�.�]��vu~��b~ta��r���','',0,'?'),('|n�M���m��','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/InputStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/InputStream.php',0,'z�������.LU�','z�������.LU�','[63�vv�\"]��B9�<\0�d�O�]��.���','',0,'?'),('�5��H0î\rE��m','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trim.js',0,'�Z$�<?�|5 2�u\Z�0','�Z$�<?�|5 2�u\Z�0','��V�v����.����\0��l��ՄfՋ%5�','',0,'?'),('�� \\��j�z(D�\\P','wp-content/uploads/cache/67ab832d838f1d16f0381f094d8da2f17d6e0740.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/67ab832d838f1d16f0381f094d8da2f17d6e0740.php',0,'*o1�\r�H.`�|(R|','*o1�\r�H.`�|(R|','�r���3�+�^:�˿挗Cנ2�����*}84%','',0,'?'),('�9��>���7','wp-includes/blocks/site-logo/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-logo/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j�o$�g�yԌ�','���I˝ӭ1��V:�G��R�������Yb�','',0,'?'),('����z#�[.oIdj','wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(��~��\rr�\0��.','�ڄ�g�cu�4����:�o�W_C�� 4:��1','',0,'?'),('��QW��Q�t����','wp-content/themes/mint/node_modules/multimatch/node_modules/minimatch/test/brace-expand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/multimatch/node_modules/minimatch/test/brace-expand.js',0,'��C1�����6� ','��C1�����6� ','j@�(v#�Z�GV�6I�݈(kr����E���','',0,'?'),('�,�4#��(�#','wp-signup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-signup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_��>�\Z�?����~�','��!<��f}�SNr}&�Qi�\\�=�\nU��^','',0,'?'),('��,��\\P~��0y��','wp-content/plugins/wordpress-seo/src/routes/integrations-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/integrations-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���p��K�I��5����','�SJ\\W�VPř����6���ޘ A���','',0,'?'),('��L9��}�X�)�','wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/statistics/class-statistics-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\����W����K�\0','�mH\\.�`����:J+Az���7�JQ�y\"x','',0,'?'),('�][\Z��\Z,�ztC�','wp-content/plugins/wordpress-seo/src/conditionals/user-can-publish-posts-and-pages-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/user-can-publish-posts-and-pages-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K?�H08�F�&x�@s','q��;W�����c�2:ڄ�P#�]�CO��{,�','',0,'?'),('�)�Pe��D��� s','wp-includes/blocks/group/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/group/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}]x�^E�����-��','y� [q�j\Z\ZO�2��;��Ja�t��E��mB','',0,'?'),('��9�H!��!%��uJ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/pick.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/pick.js',0,'���>G�E+:|���f��','���>G�E+:|���f��','�#AM�\rT��O�$[���Ɔw�}���b��R�','',0,'?'),('�v�+[.I$�]�T�','wp-includes/style-engine/class-wp-style-engine-processor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/style-engine/class-wp-style-engine-processor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ꏬVuGݯ��e�˟�:','��C_b%]�D��:�!��]b�е�����t��','',0,'?'),('�w�! ���y��y�l','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Debug/HtmlDumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Debug/HtmlDumper.php',0,'$��,��r�B�ii�N','$��,��r�B�ii�N','�$��N�b�L��O�N���1�f��\'�`','',0,'?'),('�.�6�D$_e��5HK','wp-content/themes/mint/node_modules/bower/lib/node_modules/buffers/examples/slice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/buffers/examples/slice.js',0,'mZ�WzuzL8�q�\'��V','mZ�WzuzL8�q�\'��V','jo��V9�~~��P@��X�_Nw��\n��','',0,'?'),('ǖ��d�!s<X��Я','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*�1{,˾�ʂ��','<�G���$�U+�k�L>\0h�ahB��S�-�','',0,'?'),('�l>���E�r�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayEachRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayEachRight.js',0,'i/�����L+���','i/�����L+���','�&5xT�h#^�3�`���4$�gb�%T�2�','',0,'?'),('ѵ���8]t�w$�܌g','wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o�����V?i\Z],�','�n�\\M���S�&!�� ,C����Gy�T�','',0,'?'),('Ӷd>�{u@�n\Zɿ�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-httpModule.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-httpModule.js',0,'E��pڎ�Cׅ�','E��pڎ�Cׅ�','~��w�\r3�g�m �k���؞�.��{���W','',0,'?'),('�^/�9��;e��j��','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/last-index-of.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/last-index-of.js',0,'YI�uu��æ�b�\0','YI�uu��æ�b�\0','k�|�7^�Wc��^�����ia���9�Cm�\\G~P','',0,'?'),('ۑ݀m�9��l�^�H�','wp-content/plugins/wordfence/images/logos/shield-premium.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/logos/shield-premium.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\r�-ȭ\nQ��V�','?mUL���-l��ZOI��,XS�M��ޝ-�','',0,'?'),('��~�|N�6�� <','wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/test/brace-expand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/test/brace-expand.js',0,'��C1�����6� ','��C1�����6� ','j@�(v#�Z�GV�6I�݈(kr����E���','',0,'?'),('݀*��[�[�MI+I','wp-content/plugins/gravityforms/fonts/fontawesome-webfont.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/fonts/fontawesome-webfont.svg',0,'�kR�UR�?�/RGP','�kR�UR�?�/RGP','�τ�=\'$����}G��\rk<��(�Y��','',0,'?'),('���j?{[��ho�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/mkpath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/mkpath.js',0,'���3R0 �}$4x','���3R0 �}$4x','O���om� �a?o���dS�ѣ�?���_�','',0,'?'),('� ]�%��j����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/insert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/insert.js',0,'�[�@�k�.@,�e%;^','�[�@�k�.@,�e%;^','6�b$�7�P��ja|[aJ~���RM��� �ʂ','',0,'?'),('�*沫�Q�N','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n\0�]\'];6��','P�[��M\\p����H�&̣�\\�^p�J�ȏ','',0,'?'),('�\rcFp��\Z>$��*','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/decorators.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/decorators.js',0,'~/uun ����2v�ʄ','~/uun ����2v�ʄ','F`܋���B��\Z5��y���-����\\��','',0,'?'),('������\0�V�d�W2','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n̬�\'�^���e�{g�$','�B�^��x^(�H@W�q�s���O|�to��#','',0,'?'),('�g���=�<�l\ne^�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lt.js',0,'����!5�r�ӳb�','����!5�r�ӳb�','�D!�^_��㣏8���4M��C��>�l�W��','',0,'?'),('Ã_]��s\Z�r��','wp-content/plugins/wp-optimize/templates/cache/page-cache-preload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/cache/page-cache-preload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{,���T��N�5B��B','����Qͽ�1�vk�H��]��=�j ��a1{��','',0,'?'),('�ۢQ���\\�( �','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/ansi-regex/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/ansi-regex/index.js',0,'�2�?<� #y�w��|','�2�?<� #y�w��|','x��[���(N�v�������\r\nG�O�','',0,'?'),('�\\�{����ԙ�UV�','wp-includes/blocks/navigation-link/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-link/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�訲���8�ϒ�\r','���� ��z�\\v�C�4��)a/Q1�ӫ����','',0,'?'),('��y7��MA�@���','wp-includes/widgets/class-wp-widget-rss.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9s\'钾�T� \n�J2','�A�B��m��q���A�z��iZu����\\���','',0,'?'),('hx��<�T5Y�FQ�','wp-content/plugins/gravityforms/includes/settings/fields/class-date-time.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-date-time.php',0,'H^��т�x�Cը?','H^��т�x�Cը?','U\n���m�i�x\nu���* ���g՚O�WY','',0,'?'),('�lk�68�#�-\n�%','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/zz-cleanup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/zz-cleanup.js',0,'#�m��s�I^�@','#�m��s�I^�@','v&�Q���t+wI��x�&�\r�H�=n2','',0,'?'),('���rw*��B��\"','wp-content/themes/mint/node_modules/tiny-lr-fork/test/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/test/server.js',0,'-vw��J8Vd�-��H','-vw��J8Vd�-��H','�w*���\r>k&�6Z��0�����棔��G','',0,'?'),('/g�t*�&�k�I�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/min.js',0,'�<��zq�⃧�G�','�<��zq�⃧�G�','2 H��t\'<�@��2�%ߙ h�y�8i΄&L','',0,'?'),('5�1��]U�7t��T�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/forstatement.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/forstatement.js',0,'fh��F|:ޘ=�W��','fh��F|:ޘ=�W��','���-o���Z���F P����\"�4','',0,'?'),('�^y�ͻ�.P�<�=','wp-content/themes/twentytwentyfive/patterns/hidden-sidebar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/hidden-sidebar.php',0,'`2;�9���\r4��7','`2;�9���\r4��7','�)���eL*�\n{e�8wx�6��0��ĺ�t','',0,'?'),('�_)0d|�6_�;n','wp-includes/js/dist/rich-text.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/rich-text.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:���Y�a��Z!�','�Ù�V\ZJ3w�QTd*�����g�W�V\n47�','',0,'?'),('O�]A��Tm�ӿ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/test/index.js',0,'��o�[p�LG�.��{6','��o�[p�LG�.��{6','0fz$�����3��LK9tפ�f06;䢣`','',0,'?'),('4��i���n-����','wp-content/plugins/wordpress-seo/src/presenters/slack/enhanced-data-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/slack/enhanced-data-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/;&�zS��`9��','�.\0�u��|�.d�P���Y�A�n������','',0,'?'),('!��.R�� |} ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/totalDaysInMonth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/totalDaysInMonth.js',0,'�M�{ϙ�<m�O\0#','�M�{ϙ�<m�O\0#','=���3��2�}?5�i��º�#n3��m��^','',0,'?'),('&6e��݁����Ś','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findLastIndexFrom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findLastIndexFrom.js',0,'�����6�l��/uIgu','�����6�l��/uIgu','���.��1�����l�s[����v���','',0,'?'),('*��9b/D��kYu�tL','wp-content/plugins/wp-optimize/vendor/bin/minifyjs','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/bin/minifyjs',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' L%�(�L���;','0�\Z>8M_�k��sс��~�]tc�A��x�A7','',0,'?'),('4�^�aӜK>�o}','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/uk.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/uk.php',0,'�ak��zi�?E�','�ak��zi�?E�','j�A�ϾA�OeGM��\r !N�V��9�D�/�','',0,'?'),('4$H��8��_��%','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ErrorHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ErrorHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.��͙��3��\0+y@sn','J/����t,)lZ��/��L95� �U�','',0,'?'),('4�b��?=i���2��','wp-content/themes/mint/node_modules/iconv-lite/test/greek-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/iconv-lite/test/greek-test.js',0,'���x��\r�f��F�','���x��\r�f��F�','3�\'C�f�\\ ���3=eg�C3�}���q��D','',0,'?'),(':��=F¾��g','wp-content/themes/mint/node_modules/path-exists/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/path-exists/index.js',0,'\"r���Vn�|���}�','\"r���Vn�|���}�','+�7ckG�R��u1 U?�L��|���RX��b�{','',0,'?'),(';�q��o�dƃ��G02','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php',0,'M���lO��u�G','M���lO��u�G','YDo���ji����G����Հ��s�Y�t','',0,'?'),('=� ��\\vV�����x','wp-includes/blocks/rss/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/rss/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+�c{�<| ����','6.bE8F;��]��8�Kr�˶�ӟ췊�\\','',0,'?'),('>>n5\r�!��A��;','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/registry-url.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/registry-url.js',0,',�Z� i�$c�<�_��',',�Z� i�$c�<�_��','Y�=����G��9# jy��~,�]�jq�<I!','',0,'?'),('>�^�\"���)A��0�','wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/definition-engines/class-block-settings-definition-engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/definition-engines/class-block-settings-definition-engine.php',0,'�2X�.c��!%Q�s ��','�2X�.c��!%Q�s ��','���v���Q�7�w����8��GSb� ','',0,'?'),('F/|��1_� ?8�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-fi.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-fi.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.����8V[�H,n���','�BIp� �R���г>`,�5�;�%\\P�)','',0,'?'),('O�t�\\��@VaI/�','wp-content/plugins/wp-optimize/templates/take-a-backup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/take-a-backup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!8��Y��t��','�+�67!�vh�C2tKd����&��iRd�s�]�','',0,'?'),('W+�0}h�8��P�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/reject.js',0,'��Lv5\"{\\��btAN','��Lv5\"{\\��btAN','���)*ټ3]r�z��O��{W��h�n�2w�A*','',0,'?'),('\\42�ё��b�I\r�7','wp-content/plugins/gravityforms/images/hexagons-bg-orange.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/hexagons-bg-orange.svg',0,'�c�|�8��ӵ��\'','�c�|�8��ӵ��\'','+ ;��&G����(��4�]&�\n��\Z�{�','',0,'?'),('_֩,�\'�e��~�)\'','wp-content/maintenance/assets/images/twitter.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/maintenance/assets/images/twitter.svg',0,'�O�e�pu[c����Qs','�O�e�pu[c����Qs','�R���(�#.I�����}�s�ZK}Q!�i9�','',0,'?'),('c�\n�_6=@1R�4F�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/indexOfNaN.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/indexOfNaN.js',0,'���e�C<�\n�Π��Y','���e�C<�\n�Π��Y','�s\0S�������J���WgM�g�9e','',0,'?'),('p���w�w�DA�r','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-form-submissions-validation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-form-submissions-validation.php',0,'���4��X��eV��','���4��X��eV��','Q��b�����FMni��\Z����ϝv3�9','',0,'?'),('~4��ʑ�6�<�[','wp-includes/blocks/site-tagline/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Nd�c�����/�.','��g\Zf�Ȅa���� x��T��D&?�<�','',0,'?'),('��<��i����Q\0','wp-includes/js/dist/reusable-blocks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/reusable-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w��Ϧ\r~J;�|�U ','R�+&\"%�(Z��_�� t�7� �j$���oX�','',0,'?'),('����n�b�&�QEUi','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver.js',0,'Di9 g��-�s[� �','Di9 g��-�s[� �','oh��\n<��a݃6�wG<��b�����j��7kg�','',0,'?'),('�Or��eLo�餲s�','wp-content/themes/mint/node_modules/domutils/lib/helpers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/lib/helpers.js',0,'�0�Ne5�rsЉW��','�0�Ne5�rsЉW��','2YJ�����1]��̃�[\'�=L��c��0�~','',0,'?'),('�`&%eF�g����d','wp-content/plugins/wordfence/models/block/wfBlock.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/models/block/wfBlock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�{�C�Ƒ�\\lk6\nt','���T�R�&�)��J�� q�-K\r�y�.Rx%�+','',0,'?'),('���GBh���8L��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',0,'t�&�r@;���f�','t�&�r@;���f�','�iifz�ΰP\\�B<Wٴp��2��,�T���','',0,'?'),('�iPd˗�9�t�2�k','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �`߯�} ���i','��5u�|�$���o-�3����=t�/2[�F ��','',0,'?'),('�2u�`�z�Fje($','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/assignWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/assignWith.js',0,'R����ې�܌_5�','R����ې�܌_5�','Ü�?�.�,�|�$����{(�D��Q�<','',0,'?'),('���E%N�����/_b','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlWeb.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlWeb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\��}*l\\�z�M�J�[�','�T��%Z)��#HcE���Ң������*?��V�','',0,'?'),('�M�ġ���wwK�N','wp-includes/js/dist/development/react-refresh-entry.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/development/react-refresh-entry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>��l��_T,��','G\r�f����n���y���YE\0��yw�E�','',0,'?'),('��+��Ü����','wp-content/themes/mint/node_modules/bower/lib/node_modules/minimatch/minimatch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/minimatch/minimatch.js',0,'�\"���8�ּ��','�\"���8�ּ��','jw;��h���# �s �\rg:�}�F@�K��d�','',0,'?'),('��_�ʎ�(�T�6��','wp-content/themes/mint/node_modules/bower/lib/node_modules/cryptiles/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cryptiles/lib/index.js',0,'�d[ �Ny�n�� \r�','�d[ �Ny�n�� \r�','��\\QD��\"�]��M��>���(�t�apc�','',0,'?'),('��y�2�S$�2\0���','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php',0,'C8CH^�_��N��@/\n','C8CH^�_��N��@/\n','�Z��%����>��\\�J�V\0NՀ_5m','',0,'?'),('�\"�sybNl-���','wp-includes/blocks/preformatted/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/preformatted/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S���G�{Ĉ]�5�1','_���pc)k���3YHL�IWO�P]9�t�S','',0,'?'),('�:8�Ia��øl�m','wp-admin/includes/class-ftp-pure.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-ftp-pure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&�}�\\3��J�� \0','�\nS�{U��Cdz$����y���a|8�[','',0,'?'),('��f\\,�t_����0','wp-content/themes/twentytwentytwo/inc/patterns/footer-default.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/footer-default.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<[�O<\"���D�h��','�n�%6��O��(�맇�P�-c���χ�J','',0,'?'),('����KqM���{���','wp-admin/css/dashboard.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/dashboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�J�qD)ۆ����a',' (ȃ(�gi�}b-W�N��R�� �!�_�T�','',0,'?'),('�ɂ3(`F�s�����$','wp-content/plugins/envira-gallery/assets/js/lib/layout-mode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/layout-mode.js',0,'�Eg�:��m�(Ƃc+','�Eg�:��m�(Ƃc+','_��鱶�ݓ[� �u�8(Tk�q�����`�h��','',0,'?'),('��p�CK��po��G/�','wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/dist/lodash.underscore.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/dist/lodash.underscore.min.js',0,'73t����\n���ލ�\\','73t����\n���ލ�\\','iH�}��~��u�6�Gp���4W�VQ�k','',0,'?'),('��!�1G\"�s?','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/awaitDelay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/awaitDelay.js',0,'�!`}����ҏE','�!`}����ҏE','��\n��uK(��b�˒uu�:��婺�8�Y�%','',0,'?'),('��sݜ�Þ3�����','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7&e��J�¡����W�','�%�p�䯘�88`���A@IW\"j���!U ','',0,'?'),('�\'#dO��\\Yⳏd�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/valueOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/valueOf.js',0,';��r����1+�v�',';��r����1+�v�','�_.�I&��!�5��?��HIL{�)��Zїk','',0,'?'),('�{xZ�c�\"�hb�?�','wp-includes/js/dist/dom.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vZ�\'��n&�s&Fe','hw<���U&\\�QV�5[��d���(��1��;�','',0,'?'),('�P�@����@8s�ғ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_equalObjects.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_equalObjects.js',0,'FQՒ�E�5<U�5a�z','FQՒ�E�5<U�5a�z','���=mv����/��˃l4�b�.����','',0,'?'),('Ȓ\"N=�L��.�U','wp-includes/blocks/more/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/more/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����w�.�,$�#>�','+�穩T^3=@��5��_���jzǼ[9+�N.�','',0,'?'),('ɴ�!�tv�E\Z�ߗ','wp-content/themes/mint/node_modules/uglify-js/tools/exports.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/tools/exports.js',0,'9Yb �O<����Ļ','9Yb �O<����Ļ','��\'��,o��N���$��8բ�����~�ATHC','',0,'?'),('Ф���8���n��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php',0,'�\Z`��A x>q��(bj','�\Z`��A x>q��(bj','?D9�kӢYl|�tY���%�u~ p3T�� k','',0,'?'),('��:�e��p���_?�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/var.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/var.js',0,'�H��փ�$�N�q��k�','�H��փ�$�N�q��k�','fzu�E�J��$6W���ӏ`�$��\n�-��','',0,'?'),('��ϝ��6=��̍�','wp-includes/blocks/post-excerpt/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-excerpt/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ե���L��`L(ҩ�','�BO���!7���R��?0��yď���5','',0,'?'),('��#G`D|aw�V����','wp-content/plugins/wordpress-seo/images/academy/block_editor.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/block_editor.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��u4�,3_k�>g-_','6@q|���^�SfS��ʁW��|Z�\r,=','',0,'?'),('�h����m�g�Lȉ','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/ViewName.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/ViewName.php',0,'}`c�]�o�n�tZD�2','}`c�]�o�n�tZD�2','#�����GI��x^�@���ZZ|��Q��y�}','',0,'?'),('��)���iٮt�v�J','wp-content/plugins/wordpress-seo/packages/js/images/icon-twitter.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/icon-twitter.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�쟚X�n�W��\'fP','��e��USq�����|��(v�y�V�%��3�X%','',0,'?'),('܋�U{���0�9�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/NonExecutableCodeSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/NonExecutableCodeSniff.php',0,'�7z��!���ː�_','�7z��!���ː�_','�rH(���w/[R0M�*�7�I�s3&','',0,'?'),('��W�MF`3��$��','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2��CECZ6���e�','\\W��.£���;\\ �K��[�zHEI�8��A','',0,'?'),('��\'1�5f&��','wp-content/plugins/gravityforms/includes/ajax/class-gf-ajax-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/ajax/class-gf-ajax-handler.php',0,'Ws9q�����c�\Z�W','Ws9q�����c�\Z�W','�u�U\"��p���\"d���P5\0�U|J�m*�f}','',0,'?'),('��5��F���bA��','wp-content/plugins/wordpress-seo/src/helpers/schema/html-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/schema/html-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���k!`�0��L�q','���t�u+/;Q?-��T��]�V{8��N�','',0,'?'),('��*�7\r��?�','wp-includes/class-requests.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0\Z��Nz�j�3','1�W~f��W����;\0�W�5�U��8��<�','',0,'?'),('���uh;7c�w�b�*','wp-content/plugins/gravityforms/includes/query/json-handlers/class-gf-query-json-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/query/json-handlers/class-gf-query-json-handler.php',0,'ڝi�lH��T=*�꤮�','ڝi�lH��T=*�꤮�','��{�G|�i�IjۖEDJw���u��|^��T','',0,'?'),('�ԥd6g]Q���O#>�','wp-content/plugins/wordfence/lib/menu_install.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��tLYN������','V۽��%���#LJ�o��s�\"M\\�>6�����','',0,'?'),(' WFL���6 .�','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-footer-118236ae.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-footer-118236ae.min.js.gz',0,'\Ze�y�m�~m�g�qm','\Ze�y�m�~m�g�qm','��m^^�@�#�Ԁ�\'x�?X�[�BN ���','',0,'?'),('\\\"I����w��\Z�7','wp-content/themes/twentytwentyfive/patterns/footer-social.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/footer-social.php',0,'[� A��2mF_��c�','[� A��2mF_��c�','���/&�{�bR]ZY0��O\nt���N��OY� 0','',0,'?'),('��WOct����}�','wp-content/themes/mint/assets/vendor/jquery/src/data/accepts.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/data/accepts.js',0,'}�: )Fk��ޖ�','}�: )Fk��ޖ�','���#��al\r<Ayz@��Hh��Ug��G�','',0,'?'),('$�H?.0h����','wp-content/plugins/wordfence/lib/wfScanEntrypoint.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfScanEntrypoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����+#F%I�A��','����1M��|P�k@�m_�W��vA?�v�z�','',0,'?'),('&�J]z8.걤K�*','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xՂ`��{�%_<y ^','T�/�[+\r�J�CDZT��v�C{zJ����5','',0,'?'),('\Z� �Y1���K�ς','wp-content/themes/mint/node_modules/grunt-legacy-util/test/fixtures/spawn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-util/test/fixtures/spawn.js',0,'��X�@�S�f�]��','��X�@�S�f�]��','��w�ڔdC~(;�*H�Q��S�}\"�\Z�|w��','',0,'?'),('�s��y��%#�r��=','wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ox�C\\��^2����','��Ve��/��V���+ww������$��o�H�','',0,'?'),('�of?�3�P�1�\"�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\"̤/O���Y��\'','�8�e�T�et\r j�P�/��J���<^�rӥz','',0,'?'),('#�6��4�7�N�3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/examples/highlight-self.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/examples/highlight-self.js',0,'�f\Z�/|w�*��Y','�f\Z�/|w�*��Y','_���n���ӄx�u/���ٲ�\Z �tO~��A','',0,'?'),('(�pQ)<2�U���E�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/parser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/parser.js',0,'x� U#��3+�Q�P-��','x� U#��3+�Q�P-��','z5�X�Dh��e.7DP��z[��d��F>ʮ<�','',0,'?'),(');�k�ոqR�V�m�z','wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/benchmark.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/benchmark.js',0,'����̵&�����','����̵&�����','C����Z�.Tv�ᷦ�5�/{|����q�EՄ','',0,'?'),('+�1�ur���t�8�','wp-content/themes/mint/node_modules/readable-stream/lib/_stream_passthrough.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/readable-stream/lib/_stream_passthrough.js',0,'�]�T��G����w��54','�]�T��G����w��54','�#��M��ֳM&[8O����zX`�����v�n�~','',0,'?'),('1a���������?�l','wp-includes/blocks/comments-pagination-previous.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination-previous.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0G���=���@\nK�','3��__\\�;_ ����+�윂ο�#Y��k�D�','',0,'?'),('3��9��v�&/�Cd�','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/MacAuthorizationTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/MacAuthorizationTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0ld��lu�O�:��','��[��y��\\��پ�8*�&��= ��','',0,'?'),('=,����˦gib]�','wp-content/plugins/advanced-custom-fields-pro/includes/Updater/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/Updater/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('F��e���}�(��','wp-includes/js/jquery/ui/dialog.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/dialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vk%�\0�5�X\r��y�I','5��%�J��)A��Χ�&=x����<�G�u','',0,'?'),('I�oCA#����Ϯ�>','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_stringToPath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_stringToPath.js',0,'Yn\\�E�?L������','Yn\\�E�?L������',']2Q��<e���QM�m�se�)t�@��\0#����1','',0,'?'),(']C\0�w�7!]�Z�','wp-content/themes/mint/assets/vendor/bootstrap/js/carousel.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/js/carousel.js',0,'�<tڦtI��k10g��','�<tڦtI��k10g��','�\\��R>�Ia�C���y�u��T�����G�?','',0,'?'),('g��bo��>gCb�','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/releases.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/releases.js',0,'Q��b\'&eE�E���[�\0','Q��b\'&eE�E���[�\0','�;�����v��x�\"\"1 �+��F�薃��m','',0,'?'),('k��[V�l��Y�','wp-content/plugins/wordpress-seo/src/exceptions/indexable/invalid-term-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/indexable/invalid-term-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n��v��b��','_W䰈�V�fP�0 �[�i�L�4+��S>�D`�','',0,'?'),('n(^Y�U�&!YJ9�)','wp-content/plugins/gravityforms/includes/honeypot/class-gf-honeypot-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/honeypot/class-gf-honeypot-service-provider.php',0,'��=�;\'��ae��','��=�;\'��ae��','�2�ƕ3h��dN�A�@�B���N��2�*z','',0,'?'),('s♼{DR�[�k�1�I','wp-content/plugins/wordfence/images/logo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�zF��ހW�\rl�~6','V�{��Q9�V ����J X�q���ڀc�','',0,'?'),('y�BɌ�l,\"�^��','wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-runner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-runner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h(�f�R�4\r\rW}�F��','��F�8�$R�Y�]�o�*�FtЏ�D<�E�','',0,'?'),('\"T�IJT��%C�+X�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isKey.js',0,'s#`�\'J�C\'_�6 ׯ','s#`�\'J�C\'_�6 ׯ','a�S��kB��5R���,��F���E�#73�','',0,'?'),('�1T���\rʤ/Ҹ�cl','wp-content/plugins/wp-live-chat-software-for-wordpress/livechat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/livechat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n`k,�]F�~�XVt5R','ۍnv]��Cz�$s8�t1�xC+Li��ڴ�%&','',0,'?'),('�8m�\nd7����4t�','wp-includes/class-avif-info.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-avif-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}n3�C�����v�80','[f�T�����L�9�x�ߎT9�S�\0:T�y��','',0,'?'),('����X/��\0�� ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����iJ�B�!<\0','V��4�^�C�D�\Z��������;��U�z','',0,'?'),('���}/�pS���','wp-includes/blocks/page-list/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Pb7rFΔm���T','ao�0C��H����*B�p�5��h\Z\r��j\rG','',0,'?'),('���f�FZ\"R`��41','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortBy.js',0,'�Y���QŔ-�CL���','�Y���QŔ-�CL���','턇*�{���FХ`��\rMϢ��}�_�*\0��','',0,'?'),('���0z�H�jٻ�','wp-content/plugins/gravityforms/includes/settings/fields/class-dynamic-field-map.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-dynamic-field-map.php',0,'/����V3v��','/����V3v��','�J��z��{4�ZH�X�Tl���l�r�5','',0,'?'),('�N3M�\n��S��0j','wp-includes/js/dist/block-library.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/block-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UH_�pI@��DqGM��\"','�A�7B���~]�hCI���&]\\�>N8���&�)','',0,'?'),('���P����)���Z�o','wp-content/themes/mint/node_modules/uglify-js/lib/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/lib/parse.js',0,'��5���pO�L��jv:+','��5���pO�L��jv:+','zՕM�NQ��ϒݐ��5Zj2�\\pa��@�k�O�','',0,'?'),('����[�0&�pc�Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/private-key.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/private-key.js',0,')���$ߦ4��\r�/P',')���$ߦ4��\r�/P','|�ȶ�m}�\n�$�W�#T�4afGdB\n�','',0,'?'),('������08Wa�','wp-content/themes/mint/node_modules/wordwrap/example/meat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/wordwrap/example/meat.js',0,'mٽŔb��9�\\`m','mٽŔb��9�\\`m','�?��1��ۛ���d`�/�T��g�G���v�','',0,'?'),('��g�*4�� %���&','wp-content/plugins/wp-optimize/includes/backward-compatibility-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/backward-compatibility-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jx֓*x�}0z��ث',';�������4�ˏ�KE����<��?�WrPvVe','',0,'?'),('��Qq����ao���l','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/GeneratorCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/GeneratorCommand.php',0,'�z�֔�ı+���\ne[','�z�֔�ı+���\ne[','+#��@\0�`��th�DE�z���r�2���ب�','',0,'?'),('��R�屽����{^�t','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/server.js',0,'M��7S�\\n��#��','M��7S�\\n��#��','GAō�$C{ �a��4䋸��7���J�r��0:','',0,'?'),('��[����:��t','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/unCamelCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/unCamelCase.js',0,'[��vp��E','[��vp��E','��t&�h�n@�\\����ʅپu����+]��','',0,'?'),('ðT�!��;Z��4�','wp-content/themes/mint/node_modules/debug/debug.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/debug/debug.js',0,'��oG�:W�-\n���','��oG�:W�-\n���','�a�\'�yX��T��V�\"Ʉۤ��C�(�]�','',0,'?'),('�e��-��A��k���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/ordinal.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/ordinal.js',0,'5�\\�q�bQ ��-TP','5�\\�q�bQ ��-TP','u�8>\"�y��=��q�P!)#�{$m#�j-','',0,'?'),('Ū�x8������ �z','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/destroy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/destroy.js',0,'�1���f�\r�x��','�1���f�\r�x��','KV���>�����A�J�f���;�$kF�','',0,'?'),('�Ρ�p�l�^�R\'�','wp-content/plugins/envira-gallery/assets/js/media-upload.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/media-upload.js',0,',���#$���/|��',',���#$���/|��','�u3�d��o?�y�\'�T���aF%�Q;Ayoz','',0,'?'),('�x(�ťܺ�.���Շ','wp-includes/class-wp-session-tokens.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UԔ\r��UK^\"�h��',',�ؓˑ >�v�>a�����\Z��e\r��v','',0,'?'),('�bO��>1��v���','wp-content/plugins/wp-migrate-db-pro/class/Pro/MST/Initialize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/MST/Initialize.php',0,'\\8��(�姲�����','\\8��(�姲�����','��1��0K�����~)\"�>�t��$�/H�H','',0,'?'),('Ԓ��A����r��^','wp-includes/js/wp-custom-header.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C@$ҷ�SE��#�','��\"�y�䓧��}��^H�z�%��Z��у���','',0,'?'),('��7��_M�C�o0n/','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/super_deep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/super_deep.js',0,'rʶ���Q��&���','rʶ���Q��&���','EJT�_��)�y���X\nXG�B���3����','',0,'?'),('֗9!�C?�29o1+T','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/JS.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/JS.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.JPn>���)ߥi�s%','�eD��ҷW�Ƕ�qv���Ζ�f\n�{��=}�','',0,'?'),('�:�r�w|=�z','wp-content/themes/mint/templates/list_cat_posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/list_cat_posts.php',0,'mJm9�{1�����X���','mJm9�{1�����X���','N�vl!*b�� *«\0�QA�<��k{�4��2�$','',0,'?'),('�z��a>`<��!�C�t','wp-includes/css/dist/block-library/reset.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/reset.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o���G\\�\n\'\0$�a7','*�ӊ��;H�0Tŕ`_���f�e*z3ϻ','',0,'?'),('�^0p����k����M','wp-includes/css/dist/nux/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/nux/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��I̘�w���+ &��',':˔�/P>���[�u�Rخ��{bG|S�yE','',0,'?'),('�S ����g N�d','wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!��<�d7�ˢi�','n2���J��찫0���3���v��ζ���k�','',0,'?'),('���h]��C���A*','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�δ��L���.��o','e��oَ�3��uϨ���y�����3�8\nؑ:','',0,'?'),('�Zfv��o�ʂ^�WT','wp-content/themes/mint/node_modules/pretty-bytes/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pretty-bytes/cli.js',0,'�4)-\0���{I��)j��','�4)-\0���{I��)j��','\n��<#1�f�ʪ`����j��č�\Z��<�','',0,'?'),('�0ܚ�Z�I�丱N','wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�oP/����NC.3��','�I�CK�]�sX�\0��Jn�v��j2�T�.�}hG','',0,'?'),('엞\"�?��\Z��M\n','wp-content/plugins/gravityforms/includes/class-confirmation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/class-confirmation.php',0,'Nm��@H��X7z8��','Nm��@H��X7z8��','��P�Z��Jn9�r{ͫ��}w��5BV��Q','',0,'?'),('\ra Yqo>����V','wp-content/themes/pinnclonesmalltest/vendor/illuminate/events/EventServiceProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/events/EventServiceProvider.php',0,'J`u�0J0w.-���@','J`u�0J0w.-���@','��p�l|��l.u;�ש���o��=�[V','',0,'?'),('�32�����㒻�M�','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-utf8/is-utf8.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-utf8/is-utf8.js',0,'ֿI��W��U�����u','ֿI��W��U�����u','� ���43�Ԑ�7�2���/����b�4�','',0,'?'),('�F�R�a�>�5����','wp-content/plugins/wordpress-seo/src/editors/domain/seo/keyphrase.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/domain/seo/keyphrase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A%h�9�?B���p','l�d���촶c���!�^&l��އUO9~.�І�','',0,'?'),('�3ƹܕj�bi�Υ�','wp-includes/customize/class-wp-customize-nav-menu-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-nav-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>��3׆�ꕰC\"�','a�t����o���9 � _�}B��t5Q��fR5','',0,'?'),('�y��O֛vi��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/max.js',0,'+��0�$\"_���>ڡ','+��0�$\"_���>ڡ','��~��F$�,~���dϹP�(��~�;�Č','',0,'?'),('��W^�T@L#;^[��','wp-content/cache/wpo-cache/juiceelectrical.co.nz/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�L\'�;�c�:��J\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/makePath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/makePath.js',0,'V��N�Ή�p]k�','V��N�Ή�p]k�','3lˤ�A�.�*j��L;E3�B&&�2��&��','',0,'?'),('��� �F[��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/MissingColonSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/MissingColonSniff.php',0,'�(4�?�����@be0','�(4�?�����@be0','ȫ��6��]�Xn��/�F��d=,�;���3','',0,'?'),('=(i\01ެ��Ppn','wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!K��kL\0�xAY9','�\\��Yh�-F��A��R���=>�,Q�̾�{�','',0,'?'),('f6Ȉ1�t�����','wp-content/themes/mint/node_modules/less/dist/less-1.2.0.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.2.0.js',0,'�f�g� ,�=SA��','�f�g� ,�=SA��','���`ȿʖ����;�0D/��z�f���<?','',0,'?'),('�Z��dc�ˌ�`d','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/rpad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/rpad.js',0,'8Y�#U��[u����w','8Y�#U��[u����w','� /\0��i(�^��eX�B)�b�a��Ԙ','',0,'?'),('\Z6B8��c����eg','wp-includes/blocks/shortcode/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/shortcode/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O*c��t��B��HV','����tpF���W�Cp>2[�}�h��v�p6�j�','',0,'?'),('!\'���V4)qԱ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/forEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/forEach.js',0,'�����=��0�x�:P','�����=��0�x�:P',']M�V���\"[��Z�p%TQ���f�m�u��)f','',0,'?'),('(��Y�yiR�sŪ','wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.widgets.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����+���\'L\"�','u*��N�=C��ܔ�K�Oy��^� ]�]+!�>��','',0,'?'),('*W̱���\n��,�','wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d�L��c��\'g�','��T>va4����Y��VV���u�Y�_R-�2\\','',0,'?'),('+�Ӄ��(�(���B','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/takeRightWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/takeRightWhile.js',0,'~���/�Y�كt���','~���/�Y�كt���','�H�߿X��-1�ߟ��|�_(�$�z�G�','',0,'?'),('<�~ZQz홎�e#��','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/index.html',0,'c-CS���jzW�gŕ','c-CS���jzW�gŕ','l�����4�fRm{Gm�ࠏ6�(���*���','',0,'?'),('G�+�y\"�{�L�9','wp-includes/SimplePie/library/SimplePie/Credit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Credit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�XkG��=5���r���K','��\'��G�\r�h�y�դg\08z�0���M�/4C','',0,'?'),('I�e��}�3;��)��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/filter.js',0,'���zT=�#o\"+�','���zT=�#o\"+�','+�����8�����F�N�G �%�p#��.k','',0,'?'),('L���C4 V�ʫ��r','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/queryString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/queryString.js',0,'{V�s�a����NK�k','{V�s�a����NK�k','+�\\�SW�>\\m98�p\rx�F���ԓf7?�','',0,'?'),('Q��\0�1[i��`�5�F','wp-content/themes/mint/node_modules/noptify/actions/collectable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/noptify/actions/collectable.js',0,'�K�H�_��v� .��a','�K�H�_��v� .��a','9G�-��\r%��~�Z��\Z��O�Ō[ $Y','',0,'?'),('b���E�����4t=','wp-content/plugins/wordfence/views/dashboard/options-group-alert.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/dashboard/options-group-alert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̻o��wG>p','�I�`I^{�Pנh�Q��e:sG^��8�sĚ','',0,'?'),('j;���_��]kM9��','wp-content/plugins/gravityforms/includes/addon/js/gaddon_payment.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/gaddon_payment.js',0,'�ޗ�\0Bz�P��Os�','�ޗ�\0Bz�P��Os�','>�9Ԅ�G:�] �֒Sh\n�7\\51`�w.HF�K','',0,'?'),('na��\'D�ϟT|�z�','wp-content/themes/mint/node_modules/text-table/test/center.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/text-table/test/center.js',0,'�m��\'�YpC�#l��W�','�m��\'�YpC�#l��W�','���j.�٬ �pX�۬�ٻ�����R�1��ʕ','',0,'?'),('n�Qx��~O��H\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/concat-map/test/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/concat-map/test/map.js',0,'���F)�R�\"KX�','���F)�R�\"KX�','�X����*o��\0��m�4-(�!���*�!�g�','',0,'?'),('o��~��0F�q�z','wp-content/themes/mint/node_modules/globule/test/fixtures/expand/js/bar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/globule/test/fixtures/expand/js/bar.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('v����W�0��h�','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/index.js',0,'�sI�V��gE��D%','�sI�V��gE��D%','\'&�\n V��|y���>�<e��;�6���Y','',0,'?'),('yw`�n�RqɧĔ�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/ViewServiceProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/ViewServiceProvider.php',0,'����ِhC�`�y�','����ِhC�`�y�','\r��*t�z��;\\������� ��BB��','',0,'?'),('z�#�K����Ǘ4X*','wp-content/themes/mint/node_modules/array-differ/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/array-differ/index.js',0,'@lAg�j�Z�fm�`6�','@lAg�j�Z�fm�`6�','^i�{�#�>�g`6��\'Le�Y�8�%�����','',0,'?'),('~��x���~���D','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema.js',0,'m�>��*�P��I����','m�>��*�P��I����','��)i��o�r�B�&K�F,&� �zُ��Ǹ','',0,'?'),('��ٲd&\n�M�GK�','wp-includes/l10n/class-wp-translation-file-mo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/l10n/class-wp-translation-file-mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y#��U �w�u9�1','j�pQ����(u��\rסp�Z�[x1.�:Ï��','',0,'?'),('�(����T��\'�|�','wp-content/plugins/soil/tests/Unit/ModuleTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/Unit/ModuleTest.php',0,'� � _�<=Q�','� � _�<=Q�',' 5ƙ9�U w��ÒLV)/������Kѓ�','',0,'?'),('��,=9���h�6K�','wp-includes/js/jquery/ui/draggable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/draggable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O}WBH1Q�?^�Yq\'�','��LP��C7�\r�Y��@ؒE�_��)�','',0,'?'),('�i���@[� \n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mergeWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mergeWith.js',0,'���1G[����+�','���1G[����+�','0�E��O���6�푵⥦���~�,U�','',0,'?'),('����Y4�WE_m* � ','wp-content/themes/mint/templates/category-blog-list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/category-blog-list.php',0,'��B��\'1_4\n�\\YHB','��B��\'1_4\n�\\YHB','ƯRug�:�D�l��)v�h�u?p��z$X7��','',0,'?'),('��H�S�ڕ���','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/examples/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/examples/stringify.js',0,'�����ˆ��˚O0','�����ˆ��˚O0','P�x���G�~���-4S���+�p��R���8�','',0,'?'),('��\'{�RD�3��lo','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/totalDaysInYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/totalDaysInYear.js',0,'���9�+)$$��d��','���9�+)$$��d��','bg�mr9~A��1\0����T� �,U�J�','',0,'?'),('�wqf�̏�o\Zs���','wp-content/themes/mint/node_modules/tape/example/fail.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/example/fail.js',0,'NW��y�:P6H#�N','NW��y�:P6H#�N','�\ng%��dn5t|�/��Ҍҫ��t��J�[p�','',0,'?'),('��{��$|�K\"(','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Tester/CommandTesterTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Tester/CommandTesterTest.php',0,'���0E�R���6��','���0E�R���6��','���\Z�PT�nQ?&ժ��c+�ʒ���5k$','',0,'?'),('Ȋ\r��zgܸ�Rv���','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_utf8.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_utf8.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�Ʈ�� ^�yhA~','t�*D��dc\0=X<PφD��(�% {B�t��','',0,'?'),('ȯ<.v��h�v� c','wp-content/plugins/envira-gallery/src/Utils/Skin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Utils/Skin.php',0,'U����\Z0Zl����','U����\Z0Zl����','�����C�1>Pp��̃�~IH��H��Z5ՎW','',0,'?'),('�UA<�, �e6��o�','wp-content/themes/twentytwentyfive/patterns/template-archive-vertical-header-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-archive-vertical-header-blog.php',0,'�ש!�|��H�����\0','�ש!�|��H�����\0','�D�Ļ�ĸ�@���N�U�[�<!\"�ΌB#��T','',0,'?'),('�x����E�I�q\\v','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I���Fa�͝25e�','$�<��2C�о���q\0�wꬅ:Q4��B�>��','',0,'?'),('ӯ>�mN��c���!�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/index.js',0,'H���v\']\" ��d�','H���v\']\" ��d�','11g_Y��r�\"I�\\p}H�_#\0HQ<ǁح[','',0,'?'),('�A�M�� ��[�\n&','wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/admin-taxonomies.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/admin-taxonomies.php',0,'�<�E���U��-��k','�<�E���U��-��k','8���5/Q �*�o���^\Z��mu`�7�:�','',0,'?'),('Կ,6_���xd�ʞ','wp-content/plugins/wordpress-seo/admin/views/partial-notifications-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/partial-notifications-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�?��I��2kA���','#Fʿ�=茴udc.&�/Ş�fD)���0,','',0,'?'),('���z�),[b�`','wp-content/plugins/gravityforms/images/icon-check-inactive.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/icon-check-inactive.svg',0,'a��#H�!o`��Y�','a��#H�!o`��Y�','t�T��)s+�SH��9/��|�l��u��!wg','',0,'?'),('��N�5@��G�o���','wp-content/themes/mint/node_modules/bower/lib/node_modules/update-notifier/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/update-notifier/index.js',0,'`�(\n#�If1T��t','`�(\n#�If1T��t','�p~��c�b��\'&��`(]��æ�U��/','',0,'?'),('�2�]Ly&�yئc%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/utils/screen-manager.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/utils/screen-manager.js',0,'-�R�ʀ�y��W�|�','-�R�ʀ�y��W�|�','[Zcs�x*�a��3���P��)���5<C-�-','',0,'?'),('�ͱ��`�:oNQ$y<','wp-includes/SimplePie/library/SimplePie/Cache/Memcache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�/é���QD','~j���y6��u\rk+&l����0z�d۫\\�','',0,'?'),('��>�/ᡇ_����','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l([qא��D#��','\\sٶ�hb�2.;�m`F��r^&�H-w �yV�~','',0,'?'),('�&UX\r�L4{����','wp-includes/js/utils.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��˺�XH_�[ϓ��','������jtS�d�J�]��DާQ����','',0,'?'),('�P=^` �Ya��{ƈ�','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/map.js',0,'��ޒ�A��s/�}\0�','��ޒ�A��s/�}\0�','ᦕ� �F��Ԃ(�9�4R������g�#_�}','',0,'?'),('���J�Q%�rLP\rK�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isString.js',0,'c�����m�fmU��l�`','c�����m�fmU��l�`','u=u��̖�mщ�&���n��sr�[h ','',0,'?'),('��@�:�!����.^�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/add.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/add.js',0,'^�qZ?(G�� �(�','^�qZ?(G�� �(�','�$K=3���4���|l�ɭS�5��`�~�','',0,'?'),('\ZmMcsr)�ԩ��','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/CachingStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/CachingStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':+��@J��<d|嶆�','Dc��\"�j����eq+ƞ��g垢*�R�f','',0,'?'),('\Z ,[m�w%,��|','wp-content/plugins/advanced-custom-fields-pro/pro/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('\Z֧��\\\Z�h�i','wp-includes/js/dist/blocks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BK��[x|�>�c[\Z','���͐�_:�}��@�H�\0Y���yK��sG/','',0,'?'),('\Z����f���h���','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Base.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n9�\\˹~���w�ax6y','=�sS����]z� \\��x#�ӂcE����','',0,'?'),('\Zy��N�7��\r���S','wp-content/themes/mint/assets/vendor/respond/dest/respond.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/respond/dest/respond.min.js',0,'���J=Iܐ�\"�\'','���J=Iܐ�\"�\'','��\n٠�Z��=f\'�7T��Q՚�٧ks/\rS=','',0,'?'),('\Z雖 ޠ�6>�~','wp-content/plugins/advanced-custom-fields-pro/assets/build/css/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/build/css/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('\Z�<�h���\'���','wp-content/plugins/wordpress-seo/images/inclusive_language_analysis.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/inclusive_language_analysis.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������5�.(�Ud ','�H�>~R�b�³s� .�t�������;h�','',0,'?'),('\Z��k]W��v&&\r�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasChildNodes.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasChildNodes.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���U<T�g0(E_��','�p��,������TH�졣�2�D7_��','',0,'?'),('\ZO�3F5K�;�@ �','wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@�q\\�}����[�','�[�T�n�Ejd�(�$�:!�h�Ν\0�s�><','',0,'?'),('\Z!Gs�g��!�m�=','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSum.js',0,',1�%�T|�-ˬֵ',',1�%�T|�-ˬֵ','�g\0�nɵ//\r������|��?�0�T;�\\p','',0,'?'),('\Z\"�{0Lޫ)�+$���','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php',0,'+��4 :U�F��c','+��4 :U�F��c','�h�Ih /���U����)q]JDy\"FlS�','',0,'?'),('\Z#�=�\\!��\0SrRt','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ClosureCompiler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ClosureCompiler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��gl(R�ZNE,�;N�','���<���4r����w��C1��sq��','',0,'?'),('\Z&�cR�< FiC�','wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p79�71�i��\'','Z\n��A78{Kp����A#��M|i���\r���','',0,'?'),('\Z4m������L�N�O�','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�x�GQrCl���M��','�}�SK�Rȵ�pw��E��0;�KY�f٢','',0,'?'),('\Z6�s��w*䞋���','wp-content/advanced-cache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/advanced-cache.php',0,'͐��p����miR��','͐��p����miR��','M�Zt�u�쀫��\Z�r��9V߭w���m','',0,'?'),('\Z=1��4\'�+~F�BO�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/contains.js',0,'�)��Ν|�m�>�k��','�)��Ν|�m�>�k��','�Ɏy��\rj�����*��KD�\Zg�j\rJ','',0,'?'),('\Z?�ǸƢ}5^p��','wp-content/plugins/wordpress-seo/src/builders/indexable-post-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/builders/indexable-post-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v�EX�_Ak�EQ','���:�^����TMŗ�ƤٖѦQ���K','',0,'?'),('\ZD38�y\0.�\0���n�','wp-content/themes/mint/node_modules/nopt/examples/my-program.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/nopt/examples/my-program.js',0,'(\"���R�]1�oEoT','(\"���R�]1�oEoT',':QX1=\0�\"ضj�Z(��E 8��s�/.��\Z�','',0,'?'),('\ZE���<�����re','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json.js',0,'�k�j�P�k�����s','�k�j�P�k�����s','�#�;r�� o�XkC*��J�8]��#�g,@�|','',0,'?'),('\ZRIgB�#Ā�w=-�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-fr_CA.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-fr_CA.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)�U��ז�)P5','���O�Z�6u&J���M�w�[���\n','',0,'?'),('\ZT�-X)�ڿ{�#y','wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.6.2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.6.2.js',0,'�C��\n�5�n\\�x�gc','�C��\n�5�n\\�x�gc','��c��ygmQK@���6LA>BE_)\\t�K�h�D�','',0,'?'),('\ZV�F��xIR�� ','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-http-signature.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-http-signature.js',0,'Ӊ��W_\0ĝ\0ȸѯ�','Ӊ��W_\0ĝ\0ȸѯ�','ԧh*�ԫ��k`�T�%��&���}q\'.�','',0,'?'),('\Z`v�o�xu���H���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/unique.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/unique.js',0,'I�~\nH\\��`�g�','I�~\nH\\��`�g�','�U��X���r�.=*���~�S�A�_�$�}T','',0,'?'),('\Za��\'��M;��ȭUl','wp-includes/blocks/post-comments-form/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-comments-form/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n`�R�k{�ߡ���','�/|�Q�g`�\n\r�\\jH�J�A�fK�Ѹ� ','',0,'?'),('\Za�4�W\'}~6�Ix','wp-content/plugins/gravityforms/includes/fields/class-gf-field-website.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-website.php',0,'�X,��l\n�(�EG���','�X,��l\n�(�EG���','h�_8hx��9����ac�8��z��k�`��9','',0,'?'),('\ZduXV���P��+','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/immediate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/immediate.js',0,'=/S�-���=x�P','=/S�-���=x�P','��̸�}��?+;(��p)q\0}�g)�}','',0,'?'),('\Zl�Zzp��7�`]5!','wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/quick-sort.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/quick-sort.js',0,'��u�n�B�5�X�*B','��u�n�B�5�X�*B','�K�f�`G��kê���FX�\'l��C%��g�','',0,'?'),('\Zl�k~��rK)4�J`<N','wp-content/plugins/envira-gallery/assets/js/gallery-types.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/gallery-types.js',0,'k�M��u�t���pl�\\','k�M��u�t���pl�\\','���<C �Τv��H\Z�B��Yej�g 9','',0,'?'),('\Zm>w�b�+�˳D��3','wp-content/plugins/gravityforms/includes/settings/js/select-custom.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/js/select-custom.min.js',0,'�U�u�S�M�7LK�g','�U�u�S�M�7LK�g','��/��xfp�u<��e�=���->�PD�)h^�','',0,'?'),('\Zn@���k�O]Ʌ�','wp-content/uploads/cache/1ded18e537c34ddbd8cdc6dbd4abc01f0fd6561b.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/1ded18e537c34ddbd8cdc6dbd4abc01f0fd6561b.php',0,'�u���\'�V[�\n�','�u���\'�V[�\n�','h��Ռ��zKy��S�@�E�Մ]����M��','',0,'?'),('\Zn�m|f_�?�B��','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/lib/resolvers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/lib/resolvers.js',0,' y6x�c^�t�����',' y6x�c^�t�����','�uA��+әzOhd�����\0�@U�+y�(q','',0,'?'),('\Zp�_�F+�PQ= !�','wp-content/plugins/gravityforms/includes/settings/fields/class-base.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-base.php',0,'���]��n�:�2��','���]��n�:�2��','g��\rҰFD�9��G�*�(~WH������','',0,'?'),('\Zp��㽻$I�lݤ]-','wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/acf-ui-options-page/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/acf-ui-options-page/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('\Zr�˽��X�|&B��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sl.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sl.php',0,'|��� �\'��R�Z�V','|��� �\'��R�Z�V','���]N]���W@�ԇ���ղ��I?�v�|�P','',0,'?'),('\ZvN�h)BX~���;\n','wp-content/plugins/wp-optimize/vendor/composer/autoload_files.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/autoload_files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���K/I�Kc�2~*','����DH����dIo�GͳZ�z�)U�\0of�','',0,'?'),('\Z|�6�f�,R�[�/��','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/upgrade/upgrade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/upgrade/upgrade.php',0,'}&ӈv���;)���$f�','}&ӈv���;)���$f�',',(A\\�����%���烮C%��܁3�E','',0,'?'),('\Z~�(k��;�k��^','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/underscore.js',0,'��<� b���4�','��<� b���4�','����������b��->T��s�\\����;\0A','',0,'?'),('\Z��d��rbh�g˻�r','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/max.js',0,'�3�f��ql�2��ơ ','�3�f��ql�2��ơ ','���;�e��\0�`��*�CO:lYyS��\'ue�A','',0,'?'),('\Z�W�%=�)��h0�*','wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._blocks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._blocks.js',0,'K��b�G$o������,','K��b�G$o������,','z��p5�� �㐂�H�2��\n��Y�zo(n�K','',0,'?'),('\Z����!x����t�','wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/example/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/example/parse.js',0,'U�в�g��e�4Gk�ȅ','U�в�g��e�4Gk�ȅ','LlҸ��\r� j��\nGJ�Y �;I�0%�\Z�gª','',0,'?'),('\Z�����L6N�1�;8�','wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����g��]��>p�','���u3}(%&Tf�_�\"dKi6�F�x�phl�','',0,'?'),('\Z�A�v����ϼ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/restore-cursor/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/restore-cursor/index.js',0,'�C@�P�4�i:.x�\'','�C@�P�4�i:.x�\'','l\rMw��H!�|��Ps:+�I�T�HA]���','',0,'?'),('\Z�� ��F�\\�`�&�','wp-content/plugins/wp-migrate-db-pro/class/Common/UI/TemplateBase.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/UI/TemplateBase.php',0,'��b����,S�IӓR�','��b����,S�IӓR�','�n�GE�Y����#6S9@�\r�4�p�>�� �','',0,'?'),('\Z�wG=��X�($���D*','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-entry-notes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-entry-notes.php',0,'\"�CMD[�C6���~','\"�CMD[�C6���~','\\<Ŏ��4@s\r�|\rpA�\r�z�C0§c�p��','',0,'?'),('\Z�Me�ݏ�E�9K��','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-chevron-right-double.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-chevron-right-double.svg',0,'�ݪ�\r^��\0��ː�','�ݪ�\r^��\0��ː�','�ա��u:�m��Io�q���^ɈU�I�,V','',0,'?'),('\Z�T���.�Ї���\nj','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/index.js',0,'H E���T�����`','H E���T�����`','��Ȑ��H�\Zk?\\�f:e뎢���@�I','',0,'?'),('\Z��@Pq��p@���v','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/omit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/omit.js',0,'r��\\rO%)\r�&H`�','r��\\rO%)\r�&H`�','�c�B�Q�D|���b0�$�� �C�G��x','',0,'?'),('\Z��@��kۦS��\0�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',0,'��H��=�u�]R9��','��H��=�u�]R9��','K���m�}D��S���7�ښ��L<ya�','',0,'?'),('\Z��^cv1F�s�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveStringOption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveStringOption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����1]]g�GL��x�','v�����p��3�:�8�(����~ :�U��','',0,'?'),('\Z�^�!��{�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/lib/decompress-zip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/lib/decompress-zip.js',0,'��0����]kpM�','��0����]kpM�','�0w�c�¼v��-��;�sY����Փ�a��','',0,'?'),('\Z��i��yL�Y��i','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/trim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/trim.js',0,'�V� ���\\��d��z','�V� ���\\��d��z','^q��&7jC5����Ն$�ܝ�K{��c�&','',0,'?'),('\Z���[���l��Z�','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_psr4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'t�\\}�z��B�ޞ�','f��U|��g�g��0\Z����9��k�','',0,'?'),('\Z�Q�e�{Ce?�j\ZV\Z�','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Pipes/WindowsPipes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Pipes/WindowsPipes.php',0,'��5ߘ\'��>a���I�','��5ߘ\'��>a���I�','��r3�5DB�6�h�YPt���1�?sj��','',0,'?'),('\Z�;5�(��O�O�R�','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ǜ����lm�D!','�\'�9�\r9�\0o|��\Z������|����0K','',0,'?'),('\Z�R��=�u�R�e�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/initial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/initial.js',0,'#�n�=�>ce��I�','#�n�=�>ce��I�','#q��Κu ��N��z��0�/�h)','',0,'?'),('\Z�܇}Y����dh�I�','wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block-v3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block-v3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h\'*%�Y�k1p��','���� �г� @iZ1��[��S�k*��m(�','',0,'?'),('\Z�tnW�e��8','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȶڑP\n�^�6W',')�������ܲ���q���2ÍX�h�Z;','',0,'?'),('\Z�%�;�U�f(���U','wp-content/plugins/gravityforms/includes/webapi/js/enc-base64-min.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/js/enc-base64-min.min.js',0,'ݍ�BX��x�+Q�m�0','ݍ�BX��x�+Q�m�0','ky$�i��y4�O��j�n�B}�Y����[','',0,'?'),('\Z֘�^2�8c����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/debounce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/debounce.js',0,'�\rj���r�B\'@V�','�\rj���r�B\'@V�','+}����(��xf\n|L��� M`���:S4�','',0,'?'),('\Z�xD�ʇ:�_�->�~','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Emacs.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Emacs.php',0,'[��t���Vo�[3{','[��t���Vo�[3{','3�g��\\�;�5e�ʼn�E�z-!�B/�','',0,'?'),('\Z��;����Jv�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__debugInfo.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__debugInfo.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�N�{n��d(�c�','��K�u�S��o�\Z ��~\nd)���nQ���','',0,'?'),('\Z��={���T�%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/min.js',0,'�h�+I�N��w\r','�h�+I�N��w\r','�W�%����t�< ���|g�r��k��@�4�� L','',0,'?'),('\Z�(ʬ?3�a�!�o��_','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i\Z+��Em5�V�^2','7�U�u�\n33a��<&����F�殺�?�','',0,'?'),('\Z�X䬒ϻY��_b�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/unzip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/unzip.js',0,'~\Zya/h�v���,��','~\Zya/h�v���,��','#�[�pI]G�9\06���AV/�9W�f�a�N�~�','',0,'?'),('\Z����)qtsCI9','wp-includes/functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Zv���w�~E�� U','�֖���hUiV>�h��E����3�jz�QE��','',0,'?'),('\Z�Cw��Y�\"Rp����','wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/index.js',0,'\\� (��K��\n��C','\\� (��K��\n��C','Z\\�\\�D;\"8s(\0�\']� ��\ZB\\;��W�','',0,'?'),('\Z�+���l�xק�[Ԙ','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/series.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/series.js',0,'A4�\Z�_��_����W','A4�\Z�_��_����W','��<ġ�1���UD�ܺL�T��@����\\k��','',0,'?'),('\Z�y��8R#O�y��','wp-admin/css/nav-menus-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\�����D�fU{�','�T���%S��2�ӫaS�7��r�\\A�����','',0,'?'),('\Z��j(�L\0��_q\0Z','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementById.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementById.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�Hu�m���','�0f��>͞�8x���{�`C���N[�/','',0,'?'),('\Z��\Z:\\��Rf�P�~3','wp-includes/class-wp-metadata-lazyloader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-metadata-lazyloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Rq6}d�l)�ل','KJ`�R��L���G%2�u�u�)+f%','',0,'?'),('\Z�X�_0�0o�&8\nu:X','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/WooCommerce/CustomerTrackingProvider.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/WooCommerce/CustomerTrackingProvider.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����9�F\'\n�','�̒{�psuJ�Y�jV�L��� 5��j4�gf','',0,'?'),('\Z�UE�s(��#E�p','wp-includes/images/smilies/icon_mrgreen.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_mrgreen.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$_��u�X|I%~$','!B���I1�mV�-���|ј�X5D�8���h�','',0,'?'),('\Z���/�̓��T%�g4','wp-includes/js/jquery/ui/effect-drop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-drop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�1m�:����*��','�jճ�:�2��l�϶G��B�%�[�~:v7�','',0,'?'),('\0F4�sSFM�6\n\\F�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/contains.js',0,'!юߌ�i�xk�}�\r','!юߌ�i�xk�}�\r','�&�\"{%-�|��Vv<ڑ���\ǹ��F��y','',0,'?'),('\nFNΡ�� ����','wp-content/plugins/wordpress-seo/src/actions/integrations-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/integrations-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_�BCtR��}��','��Q�\\J�|�`Aw�xJ�C:9�s�n��Ip�5ņ','',0,'?'),('\r�`��������','wp-content/themes/mint/node_modules/noptify/util/extend.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/noptify/util/extend.js',0,'f�3�=�.�ݯK}� x','f�3�=�.�ݯK}� x','b��c\Z^YP��\0��Z��Z���r�P褳���E','',0,'?'),('��1AU7<��f;�','wp-content/themes/mint/node_modules/grunt/lib/grunt/option.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/lib/grunt/option.js',0,'-�F�����*P0j','-�F�����*P0j','<GC��� =X�-3F3��\rn!�[�\\��ᔆ�9','',0,'?'),('p9}dZBw�NN�7`m','wp-content/plugins/wordpress-seo/admin/class-meta-columns.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-meta-columns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x)u���4��n�I','H��e�Vݎ��D��D�̦��\\�৲��','',0,'?'),('�l�5X\0�R������','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSortedIndexBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSortedIndexBy.js',0,'�щӈ���~{A;��X�','�щӈ���~{A;��X�','�g��ԃ�u�Z�1Q��-�b��R���z\"','',0,'?'),(']��|Uiw�3X�2','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/toNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/toNumber.js',0,'�L���\\2�E7�','�L���\\2�E7�','әl�_�X�\\Ni���*�\n��Qz���3�\"','',0,'?'),('�5�?O�<��Ӂ','wp-content/themes/mint/node_modules/bower/lib/node_modules/onetime/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/onetime/index.js',0,'\r��/p}7�s�b��','\r��/p}7�s�b��','���o���l�3�m�0_`�Qx�ޛ@��\0�','',0,'?'),('\Z���ɹ�^ëQ�','wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/test/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/test/defaults.js',0,'U�cĽ-¤���p�I�','U�cĽ-¤���p�I�','�wH��Q��V�d��$��vo�]�\r�(p�L+','',0,'?'),('�\r�\0��#uH��s','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFindIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFindIndex.js',0,'h�ʤz��ɖ��M�','h�ʤz��ɖ��M�','S���Tk�^ o<����� (5�^Ĺ�߄','',0,'?'),(' 8�a j~��\0��','wp-content/plugins/wp-optimize/includes/class-updraft-email-logger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-email-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G����I$g���jz','5��8@#x鈒!}��\\A�\nP���Z^��C�\Z=�','',0,'?'),('$�P�`��\0g�X�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yF\\����2���','2k�s��\\>��RI:nH�ȿDm�!zz���','',0,'?'),('&�������͂|d8�','wp-includes/blocks/pattern.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pattern.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$��֢�`^�R�I','�m��#��#�L�/S��_�t/� �*�I\\=','',0,'?'),('-�(�]�^K�l��X�q','wp-content/plugins/gravityforms/includes/blocks/class-gf-blocks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/blocks/class-gf-blocks.php',0,')�����@��Ny�',')�����@��Ny�','^�_���v��t��?�;�\"S���!�\'g���Y6H','',0,'?'),('-��c�<���@�VsZ�','wp-includes/js/api-request.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/api-request.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9����߿G7p6{�g','�d�6Q\\����f�:�����G`��j1V�','',0,'?'),('2���F�O�u�yG ','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/lu.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/lu.js',0,'/[a��iӫ��_x�b�','/[a��iӫ��_x�b�','�W�l�C��ߏ@*�����k�iJZ�z�','',0,'?'),('5(��{������X/�','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php',0,'|��`��0g ��7�','|��`��0g ��7�','��q�� xS����~�FɆ䖔Z��7��','',0,'?'),('7^��+��{��?�,','wp-content/themes/mint/node_modules/bower/lib/node_modules/package-json/node_modules/read-all-stream/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/package-json/node_modules/read-all-stream/index.js',0,'���Z*<w�#x� ��','���Z*<w�#x� ��','h���\'\"������|�Tي�0������*~','',0,'?'),('?����?���y\0l','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-activation-error-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-activation-error-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-�)X8��/�ˢ�','6�2i�zS�9I��q�R�Q��데��VjU>','',0,'?'),('E������DRpQ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/drop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/drop.js',0,'8��>��v�4�s۾��','8��>��v�4�s۾��','cq&M{������EQ����sD��i;�','',0,'?'),('Y\"�/j�ű�� 8�','wp-content/themes/mint/node_modules/autoprefixer-core/lib/info.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/info.js',0,'�͵�3`UC�?p, 0L','�͵�3`UC�?p, 0L','[:_W=���d:��� ���i&!�a��?��','',0,'?'),('YO�b&�_|J��S�','wp-content/plugins/wp-optimize/images/notices/sale_blackfriday_24.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/sale_blackfriday_24.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r��iN����&�ɣH','���&���։3�?�[\"��[\n�Ӗ�?��','',0,'?'),('^����}\\� �Q�','wp-content/plugins/wordpress-seo/src/presenters/open-graph/description-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/open-graph/description-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"1S9jE���K:�+ʊ','�[�K���ؙ8�n����/����/�&cg','',0,'?'),('_��z���9�݀D:��','wp-includes/blocks/media-text/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/media-text/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r�z��Y0+�tX�Ob',' ���R�ⓡ��-� K���m�me���R���','',0,'?'),('av�^P�.�G��Q�^�','wp-content/plugins/wp-optimize/includes/class-wp-optimize-heartbeat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-heartbeat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=���k%��yV','}d6}����(��=�R�,��BP�y�\'v����','',0,'?'),('d]��\"9��E�Ǔh�','wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/curve255.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/curve255.js',0,'���Ԋ�<�V۹�]TX�','���Ԋ�<�V۹�]TX�','7�\0K��S��7)���A��Q�a��Č9|�','',0,'?'),('i(cq��Z�5��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/ArrayOption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/ArrayOption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)�b\'���x�6ّ','�F��Sul?r�\"������Q�|�E5�a���G�','',0,'?'),('jzϞ�)��A�b셀�','wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P߬�����Д�','�}(0Ff��K:��L* ��#�s��6��bomv�','',0,'?'),('t�]��W2`�,Z','wp-includes/blocks/term-description/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/term-description/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>��DS�1���*��','�s��+�=�ǃ�t�t��G�wD[4�� ���)�','',0,'?'),('t����%�<e��6,','wp-content/themes/mint/node_modules/right-align/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/right-align/index.js',0,'��N�����J���','��N�����J���','�or�!c�[\ZE,\0��7\'�1^y����772','',0,'?'),('{�{�dg\Z��\n','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/find.js',0,'�#�|?� w���\"u��','�#�|?� w���\"u��','��P�B�d2�Rm��\ZJ�FXt{_��\\,�#�8�','',0,'?'),('�\"f��$�g�k/��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/contains.js',0,'�N��[�/e�L���cX','�N��[�/e�L���cX','NF ��Q�\\��[B�!{�Ӿ�\n/���Ϡ��:','',0,'?'),('�p=ƃ�>{��v�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/find.js',0,'��x�a�\0���','��x�a�\0���','e�cii\r���I�L��7㻧Hp�\'����tg','',0,'?'),('�G�����.*a','wp-content/themes/pinnclonesmalltest/resources/views/404.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/404.blade.php',0,'�h2���O.�j\0*2�','�h2���O.�j\0*2�','#�6�T��ɤ�\Z�=�dn��ԡѐ�E�-?B','',0,'?'),('�Lo��˃�Zh�{�','wp-content/plugins/wordpress-seo/src/helpers/meta-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/meta-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=8V(�c�Jl�CW��','u���FB�⺴�����|�i�䄃�>�i]��M','',0,'?'),('�y���!�\0pZ�[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>�����5��V�','yG#��\n��7�ڌ6�(C�����h���y�','',0,'?'),('����f�oj�e���','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Writer/TranslationWriter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Writer/TranslationWriter.php',0,'{���\\@�e�]Dr)','{���\\@�e�]Dr)','J�i>K���V�T-��0ÿ��@v˸Y�3','',0,'?'),('��r��z.��&�X��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayReduceRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayReduceRight.js',0,'���-U\"A7�͊��','���-U\"A7�͊��','2��ݷ�ݘ9Z\\Hi$p� I�>����\0-Vc��','',0,'?'),('�c���\\k����','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-pt_BR.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-pt_BR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�=��%\"nV�z{O','�s���e�,d5�\0e>O�\0ϑ�\n�a�<$�#','',0,'?'),('���-gМ�a�A=S','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/user.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/user.js',0,'�`�/1����C','�`�/1����C','Q�Yo)ET^r�\'wW�\0]��n�8@���h�X','',0,'?'),('����\0���%D�LP:O','wp-content/plugins/wp-migrate-db-pro/class/Common/DryRun/PersistenceInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/DryRun/PersistenceInterface.php',0,'�7�s)�BF��ߩ_','�7�s)�BF��ߩ_','G�j�8\Z7����U�v�R���WX��.','',0,'?'),('��E�ȖqȊ?2�H�','wp-includes/js/dist/api-fetch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/api-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O�\r�~^zu�0�b','o�L��g m`k�98Z�R9%o��s=�݈','',0,'?'),('�5pު�m�\Z��','wp-includes/blocks/separator/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٞ�\n��o�\'���','j7W��\0��6�$�e��~RI���p�%zP','',0,'?'),('ì�K�V�B�H�*�n','wp-content/plugins/wp-migrate-db-pro/vendor/brumann/polyfill-unserialize/src/Unserialize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/brumann/polyfill-unserialize/src/Unserialize.php',0,'�x}�u`�%�/�Fr','�x}�u`�%�/�Fr','@\n�VC��*LB�����H�2ޣ��WN,@P{�96','',0,'?'),('��n�dM�a\"X�?�','wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/jquery.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/jquery.min.js',0,'�Oxî�!D����0?�','�Oxî�!D����0?�','YrX!G+�T�\r�0���١��*���koj','',0,'?'),('���Яh`�%~\\�_A','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isNumber.js',0,'zg��q Ө?�}�b��','zg��q Ө?�}�b��','�\'ɃjB�S�G��u�K0�;�kf�\Z\"k�Y{','',0,'?'),('�V�E&�g1����w','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/lazyValue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/lazyValue.js',0,'����ڑM@���4Bs�','����ڑM@���4Bs�','A��������JEx\'�♅��R��\ZA}����','',0,'?'),('���<���|Q���','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-metabox.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-metabox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�|�5V�h��-VV','!*S]�4p2pG���C�ȱݠ.LeB+%�\"��','',0,'?'),('�#U���d��,1�','wp-content/plugins/wordpress-seo/src/integrations/front-end/backwards-compatibility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/front-end/backwards-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�ܳg\n�i]��R�','&AHo�ns��?̢\\}F�x7g[^����k��Ɉ','',0,'?'),('�`:�y:��\Zk\r\r)N7','wp-content/plugins/wordpress-seo/images/slack_sharing.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/slack_sharing.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���� G�@����w','���X�]͎ ���#)M�,eS\n:\'�9&3���','',0,'?'),('ֻE\n�<�B�[�,','wp-includes/class-wp-ajax-response.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-ajax-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QnK\nθfޞX��� �','�T�#t��E��ȴ|TPUJ����\0�\r�U�O�','',0,'?'),('�%�$�*B\\?7�</�','wp-content/plugins/wp-migrate-db-pro/class/Common/Http/Scramble.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Http/Scramble.php',0,'ڈ�/�J*ڿi��Z;','ڈ�/�J*ڿi��Z;','K�>�\'d���\\m��F�)r���D�Hgp��*wm','',0,'?'),('��Q�~ј}��C�&','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Full.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Full.php',0,'1�u��r�߇Dlz�^{','1�u��r�߇Dlz�^{','|ݱh�}y3l�l��ଚ���f�p5�V\\�3','',0,'?'),('���(�Ë��mr','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php',0,']tΫ\'��������2�',']tΫ\'��������2�','��Ӛa�\r*��?�ƀ�p����B�b\'�S�%','',0,'?'),('�[~:���MW','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php',0,'���[�ˢ� �K�Bp','���[�ˢ� �K�Bp','�=�Y5��F�ޗ7���Z�G,F�h}���V̗','',0,'?'),('�_C7[�����q','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isEmpty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isEmpty.js',0,'7v�e7Z�<B���#','7v�e7Z�<B���#','�ֳ���am���tY�쬑Br)\'}�BW��Ƭ','',0,'?'),('�J���\'�7�WK�Q�','wp-content/themes/mint/node_modules/less/lib/less/tree/anonymous.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/anonymous.js',0,'\"�!)3Uň�$�w2I�','\"�!)3Uň�$�w2I�','O�BjXq^�?��pe�˘��[w����g,KL','',0,'?'),('�$�?�z�oY}��ƚ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/xorBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/xorBy.js',0,'�Yxf�U^�z�t|<�','�Yxf�U^�z�t|<�','��b��<dG$\n,���(�8�j�MiZ[^�','',0,'?'),('�����\n���V7 ','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/AppendStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/AppendStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c 3ˋ�UOC��#9','k�&#yj�M�A&)�d5U �Bn���5����','',0,'?'),('��X���s�㸶Z','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Formatting/MultiLineAssignmentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Formatting/MultiLineAssignmentSniff.php',0,'� �\Z�24j�\Z���','� �\Z�24j�\Z���','�k�1b�V���Fo2*4��DƉZ��y�>','',0,'?'),('�*6�/y�~%�23','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Base.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Base.php',0,'/�F�<e�7����','/�F�<e�7����',')0&��遦e��{�|������XkX�����','',0,'?'),('�̺X�(j)G��w�7','wp-content/plugins/wp-optimize/templates/notices/thanks-for-using-main-dash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/notices/thanks-for-using-main-dash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O���\'zY͏��N��6�','_U�:��qbT�(�c���Z���ϱ�����','',0,'?'),('��������R�+�_(','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/MimeType.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/MimeType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ʐ�{���`��','��SЗ/�N�X���U�ѧV�E��i�$��','',0,'?'),('�[�\0��Y[cM�{','wp-includes/css/dist/block-library/classic.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/classic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��dc5��?�','�����?�\"4�AH�CǓ����_/�','',0,'?'),('�m��n9�F�6�','wp-admin/css/admin-menu-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/admin-menu-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�s<�� c��d�~9n','�kv�n^\"E�[U|]۽|��Ʊ��85&\ne\'�-','',0,'?'),('\r0��f�\Z�f�v�Y��','wp-content/themes/mint/node_modules/bower/lib/node_modules/isstream/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/isstream/test.js',0,'>���&�����sy','>���&�����sy','\n�>���y�>�ϩSX��9\r�{�i3h','',0,'?'),('��hBd\n1K�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseFilter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseFilter.js',0,'�!�Dz`�;瑾�6','�!�Dz`�;瑾�6','�M5U�CC������@����\n��6��s��\r7','',0,'?'),('�֦�Ab.X�q��','wp-content/plugins/wordpress-seo/src/repositories/indexable-cleanup-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/repositories/indexable-cleanup-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ɲ;)�<�M�0�ɟ�','�©�ݪ���\r�V��:����&,�N�\"��','',0,'?'),('!��C�5?J��+��P','wp-content/themes/mint/node_modules/bower/lib/node_modules/tweetnacl/nacl.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tweetnacl/nacl.js',0,'o��\Z�\nP�cS�Z��','o��\Z�\nP�cS�Z��','��X�j���)\n0�\n�U[�=XƜ��1���','',0,'?'),(')�M��^�ûoz�','wp-admin/images/loading.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��K\Z0b:��ד;u�','�V�k�~Բa�b!f�y�lm&v�3�Į��m��','',0,'?'),('/�\"C�EÚ7kH��','wp-includes/blocks/comments-title/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-title/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �]C�!�|A�JH\0��','��f )�Cھ�KG�\Z�C����ť L��p�','',0,'?'),('4%�IH�O��ʰ�L','wp-includes/css/media-views.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/media-views.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3�L�?)��w�x�','��Ҽc�d�.�N�\'�g��݅B\'��Ѝ�OV','',0,'?'),('<\0C�\\�-}����&\r�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/run.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/run.js',0,'axQ�{ɣo]^w5�g��','axQ�{ɣo]^w5�g��','Q�&�U��m���j��Xf�� ;���^�','',0,'?'),('C�/�;)��ّ�o','wp-admin/js/comment.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/comment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҫ]��ʇQZh��=1','烶� �x����Ѳ�\\�O�\\�nԝnh��^E','',0,'?'),('E���L�Y�^F�@��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Extractor/AbstractFileExtractor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Extractor/AbstractFileExtractor.php',0,'�5����YAX,=�Y8','�5����YAX,=�Y8','8q�C_r�P\'��2��r���4w\0���A�.� ','',0,'?'),('H-�F!|�J�+)u','wp-includes/blocks/post-content/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-content/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D�\rL�&���^T�L','?w@Q����wT�\Z�0��6\n�>�=�h','',0,'?'),('H��~�\n��x����|','wp-includes/js/dist/token-list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/token-list.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\rL}���d�l�\'','d��˵^�_y�Zĺ#c!�+4�(�ֈ�','',0,'?'),('Lf�:���)��\n���','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-wp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eٱ��uR����ܱ�]','���7�+y�6Ʉ/-�Ԗ0X.{���^�٨jh','',0,'?'),('S��v��]��$ů�','wp-content/plugins/wordpress-seo/src/presentations/indexable-home-page-presentation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presentations/indexable-home-page-presentation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����@�;ߡME','*�\ZMl��^\"8��x*����u��+������','',0,'?'),('T�gslF��ʞ�Ly','wp-admin/js/set-post-thumbnail.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/set-post-thumbnail.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�P�N�H�9e�@I','e}#����n�q�J�rJ��Q<d��Z�K�4','',0,'?'),('U�\\C�\rEc��H��','wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/lib/retry.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/lib/retry.js',0,'E�Q�+b^f.�IV��','E�Q�+b^f.�IV��','�����ҼQf�>��[^��22,2ӁX�U�D\"M','',0,'?'),(']�c@�}�$UP��$�','wp-content/themes/mint/node_modules/dom-serializer/node_modules/entities/lib/decode_codepoint.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/dom-serializer/node_modules/entities/lib/decode_codepoint.js',0,'�<vY-�u˩�@\n�','�<vY-�u˩�@\n�','�-�ţ[]�rwLQ�4���4(R���2�','',0,'?'),('a�@�WrQw��Z\n.�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ܑz�g<N��\n?o6f','���R����Eg�X3��JAc��!a�_��S{','',0,'?'),('g$�(PJ��@�4�u�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/Responsable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/Responsable.php',0,'��5n2����~�4��','��5n2����~�4��','n�L�oÖE�d��[.��ҡ�>���-�$�f�','',0,'?'),('kVM�n\\�4ub��&','wp-content/themes/mint/node_modules/which/which.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/which/which.js',0,'����k�*�<�)F','����k�*�<�)F','~;A�d�zj�L��Ā������GF-���To','',0,'?'),('z�|*6�S\\5��3','wp-content/plugins/wordfence/lib/wordfenceScanner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R�|��R-������\nj','m]�b(�\r��t�Ӷ���b����U��ת','',0,'?'),('�0Iv�9ܒ�x5��y','wp-content/plugins/wp-migrate-db-pro/class/WPMDBDI_Config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/WPMDBDI_Config.php',0,'SRV�x�@#�:ҹ�R��','SRV�x�@#�:ҹ�R��','$���F��e�*G��f+�Hd�6%\0g�RYf_','',0,'?'),('�f7�^����YГlwM','wp-includes/Requests/src/Exception/Http/Status502.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status502.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�G��dQ��t�$���%','ap 84�}bj�/A=�c^P\' WwAl�1��','',0,'?'),('�巅i�N�͘*�`','wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.js',0,'��\nGi\\�?յ� 0','��\nGi\\�?յ� 0','�\r�\'QZ|sDk�\"��Y�K�{g?�m�0y�\\','',0,'?'),('����\n^Ҝ�T���','wp-content/plugins/wordpress-seo/src/initializers/crawl-cleanup-permalinks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/initializers/crawl-cleanup-permalinks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㝓�<�\\��8|s�','��uP]�i)������VF�\r\"�ʍ;��žS�~','',0,'?'),('�=����\"��|','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/reject.js',0,'��(���V�yد9��','��(���V�yد9��','�S�����P#�;�sw�Zcg���_�YJ2η6','',0,'?'),('�\n$z�X�`�1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/charmap/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\��5^����','[�B�\Z,;��j�fe�MU�j|)�rv��>U�F','',0,'?'),('��=b�6��hs���t','wp-admin/ms-themes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/ms-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:1R] l�I��!#_J','7�E��H����Pu�����Z�b��G','',0,'?'),('���(7�I(���)','wp-content/themes/twentytwentyfive/patterns/testimonials-2-col.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/testimonials-2-col.php',0,'iu}mJ\nߤ2�JN3','iu}mJ\nߤ2�JN3','��h�G��~�\'U�`6���;_af\\Z+dR��','',0,'?'),('��ݜ����]�i\\��','wp-content/themes/mint/assets/vendor/jquery/src/ajax/script.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/ajax/script.js',0,'E\0Sv<�3\\�ԸSȄ�','E\0Sv<�3\\�ԸSȄ�','��#�mm}�{���J�����~��{�KhzXT','',0,'?'),('��\'��FE�A�vQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\r��5]xVI�\'�i�','��G��݅\'�!���Y�E�3��P5ad��M��','',0,'?'),('��I�����UzYWg!g','wp-includes/blocks/latest-comments/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-comments/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\'��À]�0��','��z]HK���aa�)����2���$���M�','',0,'?'),('�uӖ�6grH�acۏ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/namespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/namespace.js',0,'l�/+H`S[c\"j6h�','l�/+H`S[c\"j6h�','yc4;��{�O/ �u�[z�_6�/[��?bœ','',0,'?'),('�^�u[�p}`B��W1','wp-includes/blocks/table/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/table/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�M���{;r�D�Fy�','#\Z��\nlL��c�S�<�-Voۜ��k��˾��Ʒ','',0,'?'),('��U� ]E���','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c[���*�m�H� ','�\"�m�G���*�0���k�NCW��ˍrVL�','',0,'?'),('�0��TL����>g�','wp-content/plugins/envira-gallery/assets/js/dist/admin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/dist/admin.js',0,'�Q}0n���߮�9�','�Q}0n���߮�9�','��z�1�R�l�a�:��^j�IF1��U�k�','',0,'?'),('����!��T_�]�\\w','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js',0,'�<nۼ�\'<C��<�','�<nۼ�\'<C��<�','�L��\"t�5�~V4�C�^�_Ü�ەV.1vAe]','',0,'?'),('ƍp�=Z\0�S_���$','wp-includes/blocks/cover/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/cover/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�o?�@��À���:','T䴓��g0��N�Іu�>�r�����Jb�','',0,'?'),('�k0B��a��`�','wp-includes/customize/class-wp-customize-nav-menu-setting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǜ�\0�5��+�&̺WV','���owҏ]e|�K$��9rs�c�&�/��','',0,'?'),('��i\':�ו���4R�','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessagesManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessagesManager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�gu��F/Zn�eB��U','�|l�rJ����2���^�\'���6','',0,'?'),('�맼]}uP�Cq,��','wp-content/plugins/wordpress-seo/src/integrations/academy-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/academy-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ծ�d3߉�L-���','K���X�i���e��O� ���������','',0,'?'),('ܟ�ҿB∶����','wp-includes/js/dist/media-utils.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/media-utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n�9������e.J�2','��{EQF�H��$F��l*�#O*\\\ZMro\'','',0,'?'),('��Z1��q�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_memoizeCapped.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_memoizeCapped.js',0,'-�H����s�@ҳT�','-�H����s�@ҳT�','<[؇�c�#����/�~���k�� ��:�_','',0,'?'),('�-=Q�Cw�tnL�#','wp-content/plugins/wordfence/lib/wfBrowscap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfBrowscap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C�\"�+5�Ÿ���H','�,o�v���U�(wd���Ϩ�����O�H�','',0,'?'),('�i1����8�$q','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/default_bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/default_bool.js',0,'�z6�F.�9��SBk�','�z6�F.�9��SBk�','o�W�9��KC#�t���gV�6)s�T�\"�tF','',0,'?'),('�z��i�}����NR�','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/consistency.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/consistency.js',0,'��P�N�3?ڄ�S%','��P�N�3?ڄ�S%','�k%l��D{[���)����ۦ�L�tv��k','',0,'?'),('�S/y�;�B�C|B','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Command.php',0,'�^{� ��r2�]��','�^{� ��r2�]��','�I�\Z���]h�F�LQEA�$_>�Vc��,!�>','',0,'?'),('��xh��A=��SM��K','wp-content/themes/mint/node_modules/shelljs/src/cp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/cp.js',0,'��BZH�m�. Y�H','��BZH�m�. Y�H','����@$EHj_��b�*�b�/zU=(Ïfm�_ ','',0,'?'),('�����_\r��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BufferLogger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BufferLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\rP���ԙrNNT���','L%���Zk��j��Q9/���W���YY','',0,'?'),('#�*�>�E%�f/�','wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Bold.ttf','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Bold.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z��%O�a���M��W�','�}q{7�f4�y�}p�E��r��P�C�mU\n�F�','',0,'?'),('͑�}�P�� 0��7','wp-includes/blocks/code/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/code/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\JNPT-�7����]�','���<�/��lU0*ߥW�$V����vC]���4�','',0,'?'),('\n��O�_��;]/^��','wp-includes/images/down_arrow.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/down_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���V�~�o�YnG~_u','��h�8ɧ���p�u�{�9������J���','',0,'?'),('\'S��*��|��T��','wp-content/plugins/wp-optimize/templates/minify/preload-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/minify/preload-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P��ȯ!Q?,��','>�+��`���X0P@_\Z;\0��b�R�Q=��','',0,'?'),('HD���h:��A','wp-content/themes/mint/node_modules/bower/lib/node_modules/array-map/example/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/array-map/example/map.js',0,'�t��^<��U����','�t��^<��U����','�A�X�B�my�h��)ŭ:�#S��ŀޘ(','',0,'?'),('ν�}�V�+�tB�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��꤀�x�٠�%�cl','N�8,�c����ae����Οi<5p$���','',0,'?'),('c�)�����3=k�','wp-content/themes/mint/node_modules/shelljs/src/cat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/cat.js',0,'���}����~�[Z�*','���}����~�[Z�*','-���{�� ���k}e���������#-Q','',0,'?'),('G_bc�.,]&���','wp-admin/js/image-edit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/image-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N��7�5Ȥ�C�','FŲELB��X���O����t�Ժ���X�ެ�','',0,'?'),('Kv�$T�MR����=�','wp-includes/css/dist/edit-post/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-post/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�JEQ��.�5�Fes','�,,�쇚�`���Dq�8pKs��B!�\\�Կ�3�','',0,'?'),('ˌx�ȷQ�w�`=@\\','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Listener.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Listener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�bi�Y)�4�G��','�\0�D5@t����%e��^���k��\".','',0,'?'),(',%y���+\'pQ��a6','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/eu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/eu.php',0,';RgV�y��f�',';RgV�y��f�','��P�>�v�e���`�����3 6(Bb0u','',0,'?'),('6��e�9�!���z~','wp-content/plugins/wordpress-seo/src/editors/application/site/website-information-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/application/site/website-information-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b=������N�X�<�','�0ʣ�b���6����MM�%Y��\'8\'6M','',0,'?'),('9���;ܴ`�}�sJ','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/InnerFunctionsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/InnerFunctionsSniff.php',0,'�W��,$�T�Zefa��','�W��,$�T�Zefa��','6�6`%�v@��\n���\'�ửx�����T�/�?�','',0,'?'),(':��:6�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/helpers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/helpers.js',0,'}D2�L�`���j','}D2�L�`���j','DQ�]�1K^�����/o�Z�g3�7�\Z� l�\Z','',0,'?'),('>�,�E,�����٪','wp-content/plugins/advanced-custom-fields-pro/lang/acf-es_MX.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-es_MX.l10n.php',0,'f�5u���R��\\�O','f�5u���R��\\�O','�S���2�n/���Ba�pE��E�!��@�N�U','',0,'?'),('A����( gS-��','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/inclusive-language-analysis-disable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/inclusive-language-analysis-disable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*�CMA�9����C�X\"','hoG�x�����U�9�m����77���.M���U','',0,'?'),('Eʱ�uw�Kb��C�S','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/consoleFunc.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/consoleFunc.js',0,'@P����Ƽ����','@P����Ƽ����','_>��?ϊUu^��l���Jl<���','',0,'?'),('Lȑ��1s_�G��ow�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php',0,'��u�lq���E�@]�k','��u�lq���E�@]�k','�o�Φq�������dѕ�l:؋�mA�J�T)','',0,'?'),('M��sb�J\';�֣�','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/object-assign/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/object-assign/index.js',0,'k��ؿ���G��A87�','k��ؿ���G��A87�','��G��m3g]r\r%�8a�Ғ�ҿ�K��','',0,'?'),('O�ں�^�8�Kq���','wp-content/plugins/wordpress-seo/src/helpers/schema/language-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/schema/language-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\�.�@��ʝ2���6w','�| �\n��\\T����5^�Г>h�˅�q=�B','',0,'?'),('Q���zR�k��>��Ee','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Template/FileViewFinder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Template/FileViewFinder.php',0,']�/L����Y�Y|',']�/L����Y�Y|','������ӟ�x�@bç#�VP��X�s�>(��','',0,'?'),('VT��*�~@(�a','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/mock.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/mock.js',0,'#)w�Ls=��i��w','#)w�Ls=��i��w','��*]=e���ڄ��!�$ x̒��o(9ț�','',0,'?'),('X&�t�NJ)��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/ProgressBar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/ProgressBar.php',0,'%&.�(�b����9','%&.�(�b����9','vD�X=�\"�Kȫ�x�2%`�\0�8���LH\r��i','',0,'?'),('X)��\Z��쇐�p','wp-content/plugins/wordpress-seo/css/dist/elementor-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/elementor-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^JU��ơ�H�F�x�','PՈ���I���P\np{����) ;��4o��wK','',0,'?'),('[Wr\'��E��)�j�','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-indexing-complete-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-indexing-complete-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����+�_Wf\n�\"c[','�go4E�qD�T<7��>���� ��i�/Q#','',0,'?'),('[��&ٽmm�d�','wp-content/plugins/envira-gallery/assets/js/dist/metabox.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/dist/metabox.js',0,'���M��g\0�p<a�','���M��g\0�p<a�','LU;��%Ae�ӧ��Qj:GOt�\'AW�0��e�','',0,'?'),(']�����\"\"�B','wp-content/themes/mint/node_modules/tape/lib/default_stream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/lib/default_stream.js',0,'��j?��3�ޅ[�X�','��j?��3�ޅ[�X�','�,�硷Ǹ.�����a�����X�ۈ��Y�','',0,'?'),('b\\\Z�Ob-=h7�zz','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/lib/node-modules-paths.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/lib/node-modules-paths.js',0,'�Yp-�e�t�H氲','�Yp-�e�t�H氲','�}�u��i�����@-��m�\nQ�LK`�','',0,'?'),('fMx��� �+9�U�','wp-admin/js/customize-widgets.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=|�9�+8?��cg\r','��<�1��\nVd&��0�7��`�����a�g�','',0,'?'),('h >�.)����','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-push.ebccd3b6.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-push.ebccd3b6.svg',0,'�|Xd�_�n��','�|Xd�_�n��',',@&*�\r(n��}���݅�){b!\n]c','',0,'?'),('iy�}�薉��]Ɵu�','wp-content/themes/mint/node_modules/node-uuid/benchmark/benchmark.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/node-uuid/benchmark/benchmark.js',0,'�6��qnb�g�V��+','�6��qnb�g�V��+','\\���KN+rv��1��#�6�a쉤,��ަG�(','',0,'?'),('k���u�������@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/underscore.js',0,'�\0� `ׅ]�9�\'�5','�\0� `ׅ]�9�\'�5','�3]�)��#�� �+ք�|a�i0�����','',0,'?'),('nA����ܭ�YmO��\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/cloneWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/cloneWith.js',0,'��zT�%J�&\r��','��zT�%J�&\r��','Xy1J�9��&���t��R�}�����\"꼙\r','',0,'?'),('oT�3�H�0�e\r�8','wp-content/themes/mint/node_modules/source-map/test/source-map/test-array-set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/test/source-map/test-array-set.js',0,'ƙ_�Q���G�p͒','ƙ_�Q���G�p͒','�o��VBa��EQ*��t�R�ġ��&�Z� ','',0,'?'),('y�w\"�D\Z.����\Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/test/client_test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/test/client_test.js',0,'qS͇�� �\nb��Ou�','qS͇�� �\nb��Ou�','��0üRq�c�5e�d}��_E��) <m�','',0,'?'),('}:\\��.?B��B','wp-includes/blocks/post-content/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-content/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�)��ej��','����<w��c�%dU�.��^qs�Fk�y�','',0,'?'),('}�/N�r%�]t��','wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-term-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-term-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}͡J[��y_���','��O���iV5��#���g?&�����z��','',0,'?'),('}�>hT��ȄSKD','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/fillIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/fillIn.js',0,'?�����A�⊌�','?�����A�⊌�','#`�R��Q�_Ne�( )�n&��MR �\r�W�','',0,'?'),('���yo�AmEߟ�','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-oembed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-oembed.php',0,'k��ɚg�]��:','k��ɚg�]��:','��a�g��=���ݎѝX��]��ťzW��-','',0,'?'),('�&o]��3+�g','wp-includes/blocks/post-terms/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-terms/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4�������\"h�','�@�\Z\'�_���:���e�$�)�n�F','',0,'?'),('�%��\\��MA����','wp-admin/images/wordpress-logo-white.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/wordpress-logo-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��qP�C��-SPD�','e�4�E��?�&�DsA���ʬ�;�)@�Xɒ','',0,'?'),('��\nS>�ݮ�Nde','wp-content/themes/mint/node_modules/bower/lib/node_modules/stream-shift/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/stream-shift/test.js',0,'�%tb\n��qO���\\','�%tb\n��qO���\\','�鲺�?\0�XI�{^�\n�{�퐴@�W�T���','',0,'?'),('��\'���;qq&�+','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/takeRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/takeRight.js',0,'�L9��n�2�P\ra�Л','�L9��n�2�P\ra�Л','}��z��k�e9��s��<�p��9�Z�\"w=x','',0,'?'),('��>\r���e,r��`\n','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-icon_picker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-icon_picker.php',0,'�W,m�g�;e�pY','�W,m�g�;e�pY','(�c��\\O�`�uネ:��{O$\Z�4>~�9^��','',0,'?'),('��]�k��\"|�^','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/scan.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/scan.js',0,'h\r0���35@�#u�}��','h\r0���35@�#u�}��','�ִP�zK����m\0\\�&�<4d|\'6���','',0,'?'),('����0w�k��26�.~','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/lowerFirst.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/lowerFirst.js',0,'�b��!��)�','�b��!��)�','�Uw���6\"��DBU��`�Z���h�E\\�','',0,'?'),('�\r&Ȗ��Y�N�ۼ��','wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/globstar-match.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/globstar-match.js',0,'R(�]��TI Wlv��','R(�]��TI Wlv��','��f�؆?���Z�}_���Żpq�=��','',0,'?'),('���#h-хǗa�E�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/lt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/lt.js',0,'�a�GL5ƹ�s! ��','�a�GL5ƹ�s! ��','�^�oH�ߔE��[~z�@��t��g Ds]��','',0,'?'),('�n�T�R�)�Vp�<`�','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/pem.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/pem.js',0,'[G\\\\���=l�Xc6�','[G\\\\���=l�Xc6�','��8�s�\0��~S�h��T��P��+v� *���','',0,'?'),('��e��}��ި��;*�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ƴ�?0��i_}','�t�%�6�ղ����:� �}�ڞ�Er�','',0,'?'),('������&�\\��G>�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseIsEqualDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseIsEqualDeep.js',0,'�Y0|�\0���gA;�','�Y0|�\0���gA;�','��d��66 QQ��ޠ=Z�r��ş��NX�u','',0,'?'),('���y���p8�o�E�','wp-content/themes/mint/node_modules/iconv-lite/test/cyrillic-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/iconv-lite/test/cyrillic-test.js',0,'�z�ש_��Z����','�z�ש_��Z����','��\"��r~�i��*��}<��>�:a�a�M','',0,'?'),('�~��1&�芡�o','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/unhyphenate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/unhyphenate.js',0,'��[��1��I����x0','��[��1��I����x0','`�����ձ!jD/����}��-��メV�S','',0,'?'),('��в#���j�ެ','wp-content/plugins/gravityforms/select_columns.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/select_columns.php',0,'\\�aMk]Ԏ��Ћn��','\\�aMk]Ԏ��Ћn��','�mʹ|~�P�@��!GfIҞ��(�7-\0)�� u','',0,'?'),('�\0_P�P��Cx�14\0','wp-content/plugins/wordpress-seo/src/config/schema-types.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/schema-types.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%eyP��\Z��͍&D�i�','�#H~�ͬR~6���Ы��+��&[��3�`�','',0,'?'),('�=�}C���i��HT','wp-admin/network/profile.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�3���@%�c ','�\\H�.7���7QtUw�ݰAK,�$A��!��Lz','',0,'?'),('�>p����\Zf����l','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/concat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/concat.js',0,'�x�j,��+��ʹ�s�','�x�j,��+��ʹ�s�','�F�<8�8{��w���]�utɖ�酰\0��','',0,'?'),('�>\0��2a��ۚ�\Z','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',0,'6�k_���s���x�','6�k_���s���x�','h���;�[���8��{�ܠ^����xx\r','',0,'?'),('��g+������,c�','wp-includes/block-supports/colors.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���g5���+��p','�p�8�-��6�N���r�ϖzf���l�','',0,'?'),('Щr����LxYdg�y','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/map.js',0,'��{Mv��+�S�^\'�','��{Mv��+�S�^\'�','��r�Tu��~������\n[ٙz��w{�~ٕ','',0,'?'),('�g��I�!٭���_�','wp-includes/ms-blogs.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ms-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w���erN��','\Z��\\/��;yI\"��gxF!�����8�R��y','',0,'?'),('���t�DX�m\0#�(�','wp-includes/customize/class-wp-customize-nav-menu-locations-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+;^�8��v�={�KR','g��xN�����@`���jr���m�~�v','',0,'?'),('��]/~���q��XŎE','wp-includes/js/jquery/ui/button.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/button.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ �|虖 O�a ^?�','9ϗ��M\"u*y{���2^m�T�����,\r','',0,'?'),('�Z�w��8�Z��n�','wp-content/plugins/wordpress-seo/css/dist/academy-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/academy-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ܫ,�K��\\~���]','{��H}*E{+�<�<���܊��YVv��u���ڌ','',0,'?'),('��L(��/��:j�0�@','wp-content/plugins/gravityforms/js/forms.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/forms.js',0,'3��n�W�\r;\"�y���\'','3��n�W�\r;\"�y���\'','c:4�8I ٥܅��5�K���P&�w��^=g��','',0,'?'),('���?N^�N\n�y','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/mapSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/mapSeries.js',0,'����=w�i�Q�','����=w�i�Q�','�cD@W1��ϋ�1W�M�3��y>+�tҗ��','',0,'?'),('�>�M�_��,�� e�;','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',0,'A�vE��\"�M\\��M�','A�vE��\"�M\\��M�','4�(e�����I892��-�뱎�ļ�~�]','',0,'?'),('����}���t\\b�','wp-content/themes/mint/node_modules/bower/lib/node_modules/getpass/node_modules/assert-plus/assert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/getpass/node_modules/assert-plus/assert.js',0,'�Dw��⭺yI!t$�\"','�Dw��⭺yI!t$�\"','���یGBɏrd�0�\nPрɄ��+��L«-V','',0,'?'),('�\n]�\'m�� � �c','wp-content/plugins/envira-gallery/src/Admin/Welcome.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Welcome.php',0,'�+�c�\"x��?��','�+�c�\"x��?��','�p�l2\n۸&��%����.�1�p�����Y','',0,'?'),('\\c���Ek��o�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/invoke.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/invoke.js',0,'�Q�Fob����ᮮS','�Q�Fob����ᮮS','�ۙ��s\"����rh�)�f2Id�G�k��delF','',0,'?'),('�;ƈJu�?�~\rͲ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/reduce.js',0,'F�#;Oqʶ���˪+�','F�#;Oqʶ���˪+�','EQ�co�,3e�w A�&������cDe �I~','',0,'?'),('�>��[�A�1Wʄ','wp-content/plugins/envira-gallery/assets/js/lib/enviraLazy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/enviraLazy.js',0,'���`s�\0��K���','���`s�\0��K���','�C��\"��q�\0[���ʦ*@)K.@��̈','',0,'?'),('̩�wn�Hͨ��f','wp-includes/sodium_compat/src/Core/AES.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/AES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ne���Oq�&A','+xȶ w���4EJ@7j�����흤���','',0,'?'),('L�d��\Z1�Mix','wp-content/themes/mint/node_modules/bower/lib/node_modules/opn/node_modules/object-assign/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/opn/node_modules/object-assign/index.js',0,'k��ؿ���G��A87�','k��ؿ���G��A87�','��G��m3g]r\r%�8a�Ғ�ҿ�K��','',0,'?'),('`U��,>K1��қ�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-boxsizing.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-boxsizing.js',0,'kq����Ђzn\n��','kq����Ђzn\n��','�.��n�E\nE/s�;��Q�ƌ��)','',0,'?'),('#Ѹg>q�NgY��gl','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/slugify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/slugify.js',0,'��y���kH>r螚','��y���kH>r螚','����+����j���.��dr��v���XEN','',0,'?'),('+�W=��D�����\Z1','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-arrow-right.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-arrow-right.svg',0,'��.�I��D��Z4�u�','��.�I��D��Z4�u�','9w��t���͔{seQ=��0�k¹#ۗ��K','',0,'?'),('4��NR�9U�7','wp-content/plugins/wordpress-seo/src/values/oauth/oauth-token.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/values/oauth/oauth-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ro��]sUt�_�ߊ��','�xVTk�[��U����aj~ #q��X..�Z��}','',0,'?'),('5M�*�|NmU �<�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/getParam.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/getParam.js',0,'�Р`��f�;&�����','�Р`��f�;&�����','�#��Apm��@J\'��\0֬F��`�','',0,'?'),('7�KA�֠Ɖx�_p|�','wp-content/themes/mint/node_modules/parse-json/vendor/unicode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/parse-json/vendor/unicode.js',0,'��<ip>{th����R','��<ip>{th����R','\n0¸(�^A��� 3�,�����ox�D�>','',0,'?'),('B�@�R*G�xF4N}','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�_�?Sş\Z]�y�','�6��[-�,9YR�r�\rY\"-��an�6$�','',0,'?'),('D\\���_��ծ��]�','wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/examples/usr-local.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/examples/usr-local.js',0,'E~�||��-�n־\\','E~�||��-�n־\\','���QUw@��>Z�H�����y�d[m�d�:�','',0,'?'),('I)���\\p���sM�9','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/MST/MultisiteToolsAddon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/MST/MultisiteToolsAddon.php',0,'/�o��,_��7�O�\0��','/�o��,_��7�O�\0��','7pb������t�@���`�t�<C�*3Y���','',0,'?'),('R�\\�&��T �|`','wp-includes/class-wp-user.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ze�R��Z]R�x���','ټ����{��Z�ɪ�_E�#��M��C�3e','',0,'?'),('Z��14��`�+`�<�','wp-content/plugins/wordfence/lib/wfScanFileListItem.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfScanFileListItem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ha�J�M��q�3\"ѭ��','�C�z�>��}/e~�~l����n��ˀVY,f�','',0,'?'),('b��d뢼GZL���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/getFuncName.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/getFuncName.js',0,'��e3W�^G(��V�o2�','��e3W�^G(��V�o2�','��d��o�T�>����;4��h�6�tO���>{','',0,'?'),('tt̸�T�.�*óU�','wp-content/plugins/wordfence/modules/login-security/views/page/role.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/page/role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/e���\0$���հ','rR�>�zDt�����W���o՟٨E�','',0,'?'),('u�V��\'j��\Z�V','wp-includes/blocks/comment-template/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-template/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T4�\\Ƕw��|?5 ds','5��0zs���ł�K��|,�]!�^glH��','',0,'?'),('ynm�;�/�UsK ��','wp-includes/css/wp-embed-template-ie.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-embed-template-ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7{WP�L�{H���I�','\\aWq1��+��Я�o�L�Y\0�K���%<','',0,'?'),('z���D�>��A�)�a','wp-content/plugins/wordpress-seo/inc/wpseo-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/wpseo-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͛����@\"\r{�','���p��_�p�-EGu�r7֫�NBm�����','',0,'?'),('z�+:�ep_��dv-','wp-content/themes/mint/node_modules/grunt-modernizr/test/js/amd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/test/js/amd.js',0,'�tR��5�#��T�u`','�tR��5�#��T�u`','�z ��4��b��UY��k(b��x�U�u�C���','',0,'?'),('|\ZBC�r-q�\r@ql','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/passthrough.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/passthrough.js',0,'7���[�`=����G�','7���[�`=����G�','�<�ɿ`����G���ڔ��&` x��t�ΥF','',0,'?'),('|�&;�r�Ls5��','wp-admin/includes/comment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ZtC�*w�44��','ck �o}��vTf� �s�ݛfl3g6N�\Z�J','',0,'?'),('}�C�,��ɮeC}q','wp-content/plugins/wp-optimize/images/features/enables-disables-trackbacks.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/enables-disables-trackbacks.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k��h`�Nͳ�c','fewv(��:xoU��\ZtK%����E� �x��:','',0,'?'),('8Т���c\rR','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/append.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/append.js',0,'[�핐�4MyԮ%��v','[�핐�4MyԮ%��v','��mE�T�\n ��c�N$�idI�6�6��YT�','',0,'?'),('��ؤ��1�n��Ӕ�','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-cleanup-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-cleanup-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������\0�ɞΝ',')�|\\�0 �Ϝ��zT���<`C6����>��\"','',0,'?'),('�z��i�����&�*','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/success.27b62f11.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/success.27b62f11.svg',0,'J��ظb���U\r�?�U�','J��ظb���U\r�?�U�','� ��G�P遹��0��q�_���8�\Zd.�%<','',0,'?'),('�{C@(�m�sMWfg','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/AUTHORS','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/AUTHORS',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�s�\0qZ�\\�����','k�c0�5�����gw�#�T�)��\ZH�A(H','',0,'?'),('���˴I9�#���(','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-user.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-user.svg',0,'~���j5�r�����','~���j5�r�����','v�����\r{rR�`�Ja��?!Y/�Yz �','',0,'?'),('���Ye�.�0s��','wp-admin/includes/class-wp-comments-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�8F���s����','_�;���6w�oϤ4I�G�*�1m:�����','',0,'?'),('��,d$\\Zޟ^Wu�','wp-includes/blocks/buttons/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/buttons/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\���u�*��5�2F�','�ۨ\r�W�d��� �A��! OI�Rk�D�*��','',0,'?'),('�{��$ �I�\' B��','wp-content/themes/mint/node_modules/hosted-git-info/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hosted-git-info/index.js',0,'A�n���*�Ϥ�V','A�n���*�Ϥ�V','���<�&\'���Lz[��璼��rF�ö�^f','',0,'?'),('�%�*��j:-���','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeChild.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeChild.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S��\"2�0�m\'`�%P*','���F}m!�H�I�8�1=s��/�\0R��\n�2NP�','',0,'?'),('�A�o\r�ZԔ_�t','wp-content/plugins/wordfence/views/waf/waf-uninstall.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/waf-uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_bYZ� �9=�ޥ\n','U������m-��S���z+�?K���s��~�','',0,'?'),('��I/���\n �F','wp-content/plugins/wordpress-seo/src/presentations/archive-adjacent-trait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presentations/archive-adjacent-trait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1ŭ&�f�ƭ�ic�','=On!ă�c��b譺��짯�4�\"�>%�̓','',0,'?'),('��\'-�p�-��f�','wp-admin/css/l10n-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/l10n-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���U��F�{/��?','��H�̭�-�{��ȃ��r�6�@��@5>�','',0,'?'),('��˻ض��\\��~\0A','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padCharsEnd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padCharsEnd.js',0,'��Fݎ4,⥙Yf�.��','��Fݎ4,⥙Yf�.��','��SW�]��ZD��\Z��M����6�T/=O�O','',0,'?'),('��o��b�ϻ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/repeat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/repeat.js',0,'����!@�ڨ�\"`L�','����!@�ڨ�\"`L�','�\nu|�Ԝ3�cX�-�K>6X�Z��(��u��','',0,'?'),('��j�ֹJ����0Y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�0W\"F)����8O�','�5���)&��BoK]���ػ��rm`%��h�O','',0,'?'),('�*l�q�-��1��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php',0,'�g�\0�p� f�/�l:�','�g�\0�p� f�/�l:�','��)���_�T���M\"�4���\0�ٜ(�','',0,'?'),('�J���}�e,��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isMatch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isMatch.js',0,'m�@9/�N�G�e*ѐ/','m�@9/�N�G�e*ѐ/','G����ɢ�9;`�̐�����B\"�F���)','',0,'?'),('�Pl��Q���3�n','wp-content/themes/twentytwentyfive/patterns/comments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/comments.php',0,'���{\\v�_�N�J�u','���{\\v�_�N�J�u','�n�C��J�[��n�\no���������g��\"#','',0,'?'),('�P��p-�刏�9','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_root.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_root.js',0,'md���.�E�5e.T�','md���.�E�5e.T�','�TE4�<�a��;i\'�;6ss�5�*��Ei�ić','',0,'?'),('�G?�\\��V# s��','wp-content/themes/mint/node_modules/domutils/test/tests/traversal.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/test/tests/traversal.js',0,'�Hҡ���]�uU[\Z��9','�Hҡ���]�uU[\Z��9','�J���S?�(��(8����vї���+�','',0,'?'),('��^����ݱq�\0�','wp-content/themes/mint/assets/vendor/bootstrap/grunt/bs-raw-files-generator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/grunt/bs-raw-files-generator.js',0,'\Z;�Pbj�L�i)�����','\Z;�Pbj�L�i)�����','��o�y~��@=65Z��kpk=\"N�v儅.�','',0,'?'),('ۂ�\\+�`���:�+�','wp-content/plugins/gravityforms/includes/system-status/class-gf-update.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/system-status/class-gf-update.php',0,'��=�!�W�(��','��=�!�W�(��','���=$�j���a}��5�y:Z�z#��','',0,'?'),('�\"�< i�t��&�','wp-admin/css/colors/modern/colors.scss','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/modern/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U���{��T����w�','��\"��TZ���FFԥ�]J�*����\Zu�','',0,'?'),('��I�a\'?]A`�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/trim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/trim.js',0,'�4oR-$�� �f,�=','�4oR-$�� �f,�=','����9����\0i�ځ8�[ڗ���_�_e�A�','',0,'?'),('��?L�i�e9lt�','wp-includes/blocks/post-author-biography/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author-biography/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʂ����nX��\'��\'XU','��\nL]���ZU3 ��&�7��=Z��k^�','',0,'?'),('��R�a~�j,rVO','wp-includes/style-engine/class-wp-style-engine-css-declarations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/style-engine/class-wp-style-engine-css-declarations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����8��L�K�d��(','3#AjEr�5]���S�t�u�f��)s��DZ','',0,'?'),('�\n2j��7�O��DDk','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/lpad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/lpad.js',0,'vk��\0�Ƀ �.NuL','vk��\0�Ƀ �.NuL','i�HM�J�\"��\\&a!9Z[���3ۜvTMA2�su','',0,'?'),('��0wc`��78��M','wp-includes/blocks/gallery/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/gallery/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3J�D��Fĭ�~2�?','kRE�LM���X��]l���f,���*h�O�I{��','',0,'?'),('��߭W�O�&]m�','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{Q�Pwo[�nF�{�','/n��0��\\@Z�~p�{6��=�|ݶЦU=�','',0,'?'),('!JR#0�>�C4�u','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/mark.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/mark.js',0,'a3������~�b>','a3������~�b>','qL2%s��C��6��HbS�(��n �0�9�Q','',0,'?'),('���\nX[KF;Q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/time/toTimeString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/time/toTimeString.js',0,'�q� O�/�d�o���','�q� O�/�d�o���','��a�\0�߆�J��ɻ�C�cǧ��A�Lc�x','',0,'?'),('�6�����O:��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_copyArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_copyArray.js',0,'�9J7E=���!p','�9J7E=���!p','�@L��ד�i��`\"F��#A��1=�wX4','',0,'?'),('!����~|mSE�6I�','wp-content/plugins/wordfence/js/admin.liveTraffic.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/admin.liveTraffic.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�#fo�x*ȍ:��̩�','�S���[z$�� R��d!kV��MJ.�#��@8','',0,'?'),('$%��D�G)q��','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/cwd-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/cwd-test.js',0,'�> �bn����\0�\r.','�> �bn����\0�\r.','��[�7جi���`I��Zs殸GE���5˟h�','',0,'?'),('\'�R�ޛ]�E�-5\'�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/source-map-generator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/source-map-generator.js',0,'�����h�=��\n�m','�����h�=��\n�m','�èjlVn�@��go�;ҿǪD���j�J��','',0,'?'),('/�<ݏÞ�vH�_��','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Exception/ExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Exception/ExceptionInterface.php',0,'r:F�J!�y���]��\n','r:F�J!�y���]��\n','��g����&mn�Y�\'�~�:�) 4.�k','',0,'?'),('A��#=A��Yr���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isEmpty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isEmpty.js',0,'m�oxjmi��H�+A�','m�oxjmi��H�+A�','p��r\'ꁉ�Þe�(����q�!�����@�','',0,'?'),('A���f*k���','wp-includes/blocks/navigation/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�5���m][���/\n','���\'�D���d\"��r����sA�˛2��A)','',0,'?'),('C��樱�yD`Ĺ��','wp-content/themes/mint/node_modules/htmlparser2/lib/CollectingHandler.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/lib/CollectingHandler.js',0,'b�(Jڦ�_��\n/)','b�(Jڦ�_��\n/)','�T }�\Zk���Q�\n�zS��+L@�X��','',0,'?'),('I\n\'Ԛd���D�_w','wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/Gruntfile.js',0,'���qϫK����\n1H�','���qϫK����\n1H�','�\\Ӽp��, q(M�;t�[�s2a*xZvҞ�S','',0,'?'),('L����5M�SYK��','wp-content/plugins/wordpress-seo/admin/formatter/class-term-metabox-formatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/formatter/class-term-metabox-formatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',&5m 1����]��θ|','15-]:/^pK�.���➛t�V�>!��','',0,'?'),('L��bP�-I1f�','wp-includes/theme-compat/header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/theme-compat/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G�{\r�(�7ND�:W�','q�2�յ��Ϣ>r�7Nj�� D�^��A5\r','',0,'?'),('L�X�G�ݛ5��','wp-content/plugins/wordpress-seo/src/user-meta/user-interface/custom-meta-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/user-interface/custom-meta-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[��ٳ=z,~I;A��5','�2�#l)W�9>���G������*:�l50','',0,'?'),('N�d#R��+��r\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/reports/activity-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?ue�wD�:��E�','��ζ�\Z��)v���vG��,�h�/�ӈ�','',0,'?'),('Ow��D��B\'�sHo�@','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/appveyor.yml','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/appveyor.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GL��c�\"�H4�j��','U�rT�� p�)M�S3��Jh�����:�?�','',0,'?'),('Q���L�/V�@�gU','wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLight.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLight.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�\0͘�K3��2ϣ ','��y]�9��Y�&͆^���|���W�(�','',0,'?'),('T0��n �Q��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/rawlist.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/rawlist.js',0,'>I:��nrD�os�;,','>I:��nrD�os�;,','�Ǯ�8��U��2�ݾk\n�cɁ�F�$���}K','',0,'?'),('Ua�L�R/s|k\r��p','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.embed-form.264a0e113dfb4b82f03b.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.embed-form.264a0e113dfb4b82f03b.min.js',0,'���$0�\rz��U�}�','���$0�\rz��U�}�','�u�uK>E�4������j���ܥ6�֪~ ]�','',0,'?'),(']صc��,�u�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php',0,'��_9\"H�����g&�','��_9\"H�����g&�','�q�&�65O����)8�4$x��F����0�8t','',0,'?'),('`)����u�&\0X','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/stat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/stat.js',0,'�~��JBLF?��k�','�~��JBLF?��k�','I�~2��c+5��fZ�Rʴv��e��6�y','',0,'?'),('a�x�g�ʬ��߇','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',0,'X��_c��\'�xM9���','X��_c��\'�xM9���','`����S,wD9�k�C\05β��19jB�[��','',0,'?'),('hH����3���','wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/rewriteTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/rewriteTest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B8��#�\r�P�ou��','k��s�4��k�N�Z?WG���/I�Rݷ�[K','',0,'?'),('h�\Zy�Ǫy����z','wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-comment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-comment.php',0,'�jM�)���R:�B=','�jM�)���R:�B=','DFym��� ��ͣ^y]s\'�T{�!�','',0,'?'),('p���$�L�&��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array.js',0,'�ʾ�L23�#¡�n���','�ʾ�L23�#¡�n���','�3��f=B��^�C.���+�)S0ԟ)���','',0,'?'),('rD��Z��A=�ِl','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isRegExp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isRegExp.js',0,' �}\r��rR��l���o',' �}\r��rR��l���o','��s��Z~|�xωmf�VP!���\Z�������','',0,'?'),('r� �e���Z���\r','wp-content/plugins/wordpress-seo/admin/class-admin-editor-specific-replace-vars.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-admin-editor-specific-replace-vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����c`T8�b�\r{�\n','��KP�\Zk�f=H��|�pR�B�΅\0�gm�<�','',0,'?'),('s�:i�1�^�I(','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gd.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u��+�I\n`� �I���','J�=9@M��u�dQD�}�\"F�g:#��c�','',0,'?'),('t������!�\Z�%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�,}vĨ3��G��)�','E�r4@\0�ԡ$��z�3�$l��\Z�`i�ex�l�','',0,'?'),('���bN j�L\0��','wp-content/themes/mint/node_modules/mkdirp/test/umask_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/test/umask_sync.js',0,'��v���C��bB�o8!�','��v���C��bB�o8!�','>���\'YV��L�k[���]�����������[','',0,'?'),('��kl�������','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/transform-decl.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/transform-decl.js',0,'��ɥ��$��$�%j','��ɥ��$��$�%j','�I�iD�P}(]L���yJ�l_�wP?^��^(rX','',0,'?'),('�����ӢX�aB��','wp-content/plugins/wp-optimize/templates/images/smush.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/images/smush.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-?�<�=�}��]�','�k�R��kو�y�B����!��I)�D9�','',0,'?'),('�&���\r�Gf����]�','wp-content/themes/mint/node_modules/grunt-modernizr/lib/customappr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/customappr.js',0,'5���4r�,A�\Z�','5���4r�,A�\Z�','���\r݆��O*��gh����vvP�y_���c�','',0,'?'),('�{��Y�\\�z錿�}c','wp-includes/images/smilies/rolleyes.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/rolleyes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ���O�2�Ofݣi�','fK�)�\n�d��!]\r)��\\}���זl�^��','',0,'?'),('���Jn��`J��7>&','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/intersection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/intersection.js',0,'VB&�*�:AA����','VB&�*�:AA����','xC�m�Nq�d:�������Zjֈ�Zˢ','',0,'?'),('���� ��\\�A','wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-wpseo-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-wpseo-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D���?���#T�','\r�)-N_0��_ϣ�y�Z�-���^�pA','',0,'?'),('��X���y6��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isRegExp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isRegExp.js',0,'��Ȭ����<�;�\'�','��Ȭ����<�;�\'�','\\;_\\��*�G����Cɧ��Ŭ�O��Gء%','',0,'?'),('�~t�,��n_ߤe<','wp-content/themes/pinnclonesmalltest/resources/views/single.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/single.blade.php',0,'$�\r�Q��N.�l�0Z','$�\r�Q��N.�l�0Z','B�D\"I#q�|Aʻ�����i��d�\Za���Om','',0,'?'),('��=;���[����','wp-content/themes/mint/node_modules/less/dist/less-1.6.3.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.6.3.min.js',0,'��Э�fѧ5����','��Э�fѧ5����','��r�4t�����e���\ZZ��t6�&�ۅl','',0,'?'),('�\n�k�\"�]{�;X�+','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php',0,'��L�����}��s�','��L�����}��s�','�\r@�0�`����\Zm?��aQLx(Ե��h�T�','',0,'?'),('�ӣw����S1�','wp-content/themes/mint/node_modules/faye-websocket/spec/runner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/spec/runner.js',0,'8\Z։�N������','8\Z։�N������','�_r�o\Z��wb�e�:ӵ���$!��G)��v\n','',0,'?'),('�k�{ț\Z��\0�R(','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/max.js',0,'Bh�r�%���Ԛ�us','Bh�r�%���Ԛ�us','-�88FB�3?&��e��������i0�x(��Җ','',0,'?'),('ʿV�F�J�\0ɾ�X0','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-obj/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-obj/index.js',0,'f�$�$�k\\=}l�','f�$�$�k\\=}l�','�^���x[Ԕ�R[���f��A���+','',0,'?'),('�<���E%��L۰','wp-content/cache/wpo-cache/juiceelectrical.co.nz/industrial/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/industrial/index.html',0,'ŏT���6x{1d�*R�','ŏT���6x{1d�*R�','a7�,%HǦ�SX��C�&���MDe �x�6�\0u','',0,'?'),('�d�V����B=�r�r','wp-content/themes/mint/node_modules/grunt-legacy-util/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-util/Gruntfile.js',0,'��O��^�H\r4�e','��O��^�H\r4�e','���N�I@�\\��K8r`5�9�xgU,�','',0,'?'),('������ip���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isObject.js',0,'Q/�l���!�U���','Q/�l���!�U���','l���ㅌ@�L1=�����U1��2��oW�8!��','',0,'?'),('��4�m�*��൹}','wp-includes/SimplePie/src/Restriction.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Restriction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I.��˫wz�R4���','e�9�i���B��� �;Sqk�5����','',0,'?'),('�{��2{��\\��k','wp-content/themes/mint/node_modules/bower/lib/config.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/config.js',0,'#y�$f �D���\\S#�','#y�$f �D���\\S#�','�A;B5!�.�^0\Z�¨���j�����v�\Z ','',0,'?'),('�o����Q�3N�','wp-content/plugins/gravityforms/images/template-library/Event.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/Event.svg',0,'�|�G��|9�H4p%��','�|�G��|9�H4p%��','��_�Z�y��}��u.P��8���W�(��Z�','',0,'?'),('�Hv����z�E�\"ZG','wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?� �#�\n\\�#�g;ږ','-�۶_)ʣ��J>�w�;�|`Z��n��a��','',0,'?'),('洫D}y��u�]�}��','wp-content/themes/mint/node_modules/time-zone/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/time-zone/index.js',0,'fʕ�4�H��~��','fʕ�4�H��~��','��r��2�=�\Z���㴋*&�t�m�����r','',0,'?'),('� xߗ_>Q-`}=','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/lerp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/lerp.js',0,'<�\\�+�/��o���','<�\\�+�/��o���','�C�0�:� �v�7�s\n\Z#EN�3ѫ��','',0,'?'),('�]�I-��9��܇��','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php',0,'�D���`]���X���','�D���`]���X���','m�{:�6���I<Y�iJ���ڏ|���Ak¸','',0,'?'),('��+ ��u�&%�o','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pullAllWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pullAllWith.js',0,'����$��A��\\��Kq','����$��A��\\��Kq','�U��%1��I�&�i\'���r�0��;�CXrʇ','',0,'?'),('��(���+�fK��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-https.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-https.js',0,'LjvX�� f,�e�2%�','LjvX�� f,�e�2%�','��_��U�-d5.��O����7�D�ꖍ����','',0,'?'),('�?�\0��l����.�','wp-includes/class-wp-application-passwords.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-application-passwords.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'w/k#�UF�p���','˄�k�������S�f!%U_�t�$���GB1','',0,'?'),('�2p)��t��I��','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ���\0�\">y>=����','xVQ/}�琾:(3&���%�U��Jo��C','',0,'?'),('��m�sDZv~_J9�2','wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/dist/qs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/dist/qs.js',0,'\"G��:��,j��s','\"G��:��,j��s',' ��M#�����_Ԥ���\\p��嶚�','',0,'?'),('�����o�Rb��','wp-includes/js/dist/url.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/url.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+#ZM���L*��t�',' ]����ہt�W����֎���u����<�q��','',0,'?'),(' \0�e\'7\nD�2��XZ�','wp-content/themes/pinnclonesmalltest/app/controllers/front-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/app/controllers/front-page.php',0,'���B{��S��f<�','���B{��S��f<�','�9�x}����OW���10��U�\0����','',0,'?'),(' \0�O��Ixΰlx��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/objects/choices.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/objects/choices.js',0,'\'愣�\r{F�Ʊ�y�','\'愣�\r{F�Ʊ�y�','�U���\0KYv¢�$���R��1]2���Z�ԳF','',0,'?'),(' \0��� ��=[$f:','wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/CliAddon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/CliAddon.php',0,'��xӏ�l�[����D','��xӏ�l�[����D','��#���b���.~Mճ��<�|�1Y�','',0,'?'),(' H� �<\0f-��k �','wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/test/test.js',0,'�xpޜ�}CR}�$�?','�xpޜ�}CR}�$�?','����ǐ��l�i���r���2E�8so6�-u�','',0,'?'),(' �T+�6o����E4','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pullAt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pullAt.js',0,'���$��QQ���3Q(H','���$��QQ���3Q(H','Δ�ʎ��`\\���s+}�G���_כ���','',0,'?'),(' \r��-�Uz�\r�aK','wp-includes/blocks/pullquote/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T�_W�1��=\"�0','�%8!K�HӄB� ��E\r<߬��wX<���W�','',0,'?'),(' �!|�\'��U����t�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js',0,'�@�$l��l�ċ�','�@�$l��l�ċ�','\"���T?�\0���N��͈����؞7�W�','',0,'?'),(' E�.�=�|�4I\"��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createOver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createOver.js',0,'��\"�\nX<���#','��\"�\nX<���#','���|}rd��c��S�H��1�ms��','',0,'?'),(' نk���\0��Zu','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/deactivation_modal.html.twig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/deactivation_modal.html.twig',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5����\0\0���({�2','� �5\r��ԏ�z7�!�ic�(&՟��X!','',0,'?'),(' U�Ӵ�xF�f��?','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�ݔ�c!9�����B�4','����!�\0Z�~���~��O2\"!\"\r��Ń��','',0,'?'),(' ��V\05h�3#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/node_modules/q/benchmark/scenarios.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/node_modules/q/benchmark/scenarios.js',0,'E\rȍ�u�m�8�&�O�','E\rȍ�u�m�8�&�O�','�)r2��wg��!L���q�N������Dڪ(�B','',0,'?'),(' ��IcA� �z��4','wp-content/themes/mint/lib/config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/lib/config.php',0,'�����m� d6~','�����m� d6~','�V\nI\r�)�\"z|-E��ەA�S�LR|��','',0,'?'),(' \Z�MhŜ��A���\Z','wp-content/themes/mint/node_modules/sntp/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/sntp/lib/index.js',0,'�!f���\0)�93`P[�X','�!f���\0)�93`P[�X','\Z[�?�b��[���&)��W�x�f��QԨ���','',0,'?'),(' ��ɉ:�s�{1<�','wp-includes/blocks/embed/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/embed/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\0�t��됇�','��z�%^`�8�\\��o�Rh��p�˼&�','',0,'?'),(' \'���_U;0�/<�','wp-admin/includes/class-bulk-theme-upgrader-skin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²��\"�A�x!k���','���g��`�D�r����E���b���A�','',0,'?'),(' (�l*v�ԩ��*�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/set.js',0,'�����V���L�j�','�����V���L�j�','��%˫�~H��R��th�-��{��~�6�d�','',0,'?'),(' *@ADғ�=pu���E','wp-admin/user-new.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<A�x�zZ�g!��g','��q�\0na?8����נ/�Cj+1~9d���','',0,'?'),(' +�{\r��S*�u����','wp-content/themes/mint/node_modules/bower/lib/core/resolvers/GitResolver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/resolvers/GitResolver.js',0,'��<��a�1!�$�h�','��<��a�1!�$�h�','�\"�`=�VTm�(4>2�������ߗ�\Z','',0,'?'),(' 5��rD�g�籃�','wp-content/plugins/wordfence/views/dashboard/options-group-license.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/dashboard/options-group-license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������)卞��U','=e�:��z)z�:�]:�ͼ@�{�\0������','',0,'?'),(' 8(W�{ɍ�*�!#��','wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/dist/lodash.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/dist/lodash.min.js',0,'�;�R�l����P��_','�;�R�l����P��_','� �G���; �����N��pA5��V�r4U','',0,'?'),(' 9�O�i�7y���$','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/DataCollectorTranslatorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/DataCollectorTranslatorTest.php',0,'#����{H�y���N�','#����{H�y���N�','�H�Bp���X�<D�[B��uuo�L�����%��','',0,'?'),(' C��n���=x� Hk','wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-nd.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-nd.svg',0,'&MKǵA� �pt�.^�','&MKǵA� �pt�.^�','D�b�^s<_�d��uR=��&$k�q��#|�','',0,'?'),(' E^g�\'�ԭfQD�','wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-notification-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-notification-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?5zi�D�*��r��','�q����.�D��\r%��\0S��P$\0g���h��','',0,'?'),(' E���hܺ�/UB��','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Middleware.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Middleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@e?���!L\n�#','f����+Vل��P\Zz���=dF�D�� [��','',0,'?'),(' Gg��R��E�wY','wp-content/uploads/cache/000e89bef2f85795d603e08d67162054061b1fd7.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/000e89bef2f85795d603e08d67162054061b1fd7.php',0,'��A:��0� �/A;','��A:��0� �/A;','�3�e�$�i��bG�En��\'^����v��L�','',0,'?'),(' JѐD3�qT��0�X�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/hasOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/hasOwn.js',0,'��x=�SN��=D�;��','��x=�SN��=D�;��','�(�U�,���`qtR�S�ʗ�hyM7�W+L�','',0,'?'),(' KEc{�D�?���}�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/FileDumperTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/FileDumperTest.php',0,'Den;`�O��ͲN��','Den;`�O��ͲN��','�#*\"�D\"a�����{a�v��Ȏ,�DY|','',0,'?'),(' L��`y5[��|8�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Methods/CamelCapsMethodNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Methods/CamelCapsMethodNameSniff.php',0,'�\nF�\Z�z\'xe�P�','�\nF�\Z�z\'xe�P�','B��Hkve|j^g~�\0^�n��U����[!�','',0,'?'),(' R�I���|Y`R�Z','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����UA!c{Ϛ4�','\\�\'�w��,����U�gG\rn;�s�ş�','',0,'?'),(' R�q�@�3�=r����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/timezoneAbbr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/timezoneAbbr.js',0,'6�����%���No','6�����%���No','h�Ԋ\"�O��T�\r���\n�+�W�]�|4LL���','',0,'?'),(' V�=MB�e�4�է�E','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/whitespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/whitespace.js',0,'ʡʼn�*��Av$q�̹�','ʡʼn�*��Av$q�̹�','�\0ܐ�(�z�ڋk=[#q�1�Z�l��$\r���','',0,'?'),(' ^�Ŝ���{v��v��','wp-content/themes/mint/node_modules/autoprefixer-core/lib/keyframes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/keyframes.js',0,'~�Zd0°���yWZQ','~�Zd0°���yWZQ','r\'X@h^ry�\0V>��O�.3�)8��u쇆Pg2','',0,'?'),(' n5b�3�|k�Ŋ���','wp-content/plugins/wordfence/js/wfdashboard.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/wfdashboard.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Խ�P����`�{i�','=P�z�r���!�?w\Z�/d!��LӪ��1!�','',0,'?'),(' y{�~Z�t*>�O-D�P','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/SourceChain.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/SourceChain.php',0,'���X��U#ݒD','���X��U#ݒD','m�X3������O\\�F�F�kC�ӡ���}��t�n','',0,'?'),(' }i��b$ �f<�;\0^_','wp-content/plugins/wp-optimize/optimizations/inactive-tags.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/inactive-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;i��3�F�D(ܐ','2�}�k��-y~g����n��h�h����s�=t','',0,'?'),(' �\09�{{���^DHX','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Manager.php',0,'I\rSr0\r����yx�','I\rSr0\r����yx�','����@R` ��ϒ�7ʖ��� .A��','',0,'?'),(' ����=���i;[�','wp-includes/blocks/require-static-blocks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/require-static-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Õ���<p� ���K/','���`ж�&����ʾ�\"b�UX���y��!*H','',0,'?'),(' �W���,@{��?9','wp-includes/blocks/post-author-name/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author-name/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�|r.87LJǟ\"�UÜ','�+�5�TX�-���d���%�/CjW��)A��','',0,'?'),(' �������;/�\nx�','wp-content/themes/mint/node_modules/bower/lib/node_modules/process-nextick-args/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/process-nextick-args/index.js',0,'�H��O���C�j�g��e','�H��O���C�j�g��e','[z��C{�8�:�3^�x�1\ZTqE�����CQQv�','',0,'?'),(' �����!����QG��F','wp-content/themes/mint/node_modules/bower/lib/node_modules/q/q.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/q/q.js',0,'��:~8W>KP���','��:~8W>KP���','�D��g=K�\Zq��\0M��d��h*p~�^�M','',0,'?'),(' �y��>4�l��gR�','wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��g�Z� 8�Z�','��y� �q��k���j���|���gY{���','',0,'?'),(' ����\Z6�6�/j|��(','wp-content/themes/mint/node_modules/bower/lib/node_modules/inherits/inherits_browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inherits/inherits_browser.js',0,'|&�$���(K�_d֤','|&�$���(K�_d֤','>2$�@n/�~m@Li@�2�@�(�*D{Pp\Zj','',0,'?'),(' �0J!QK��Zh�./�','wp-content/themes/mint/node_modules/bower/lib/node_modules/repeating/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/repeating/index.js',0,'��\\�Sύ\n���D��7|','��\\�Sύ\n���D��7|','dos���m=�Z��#D\08aTo��)M','',0,'?'),(' �#����9�M\n���','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Extractor/PhpExtractorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Extractor/PhpExtractorTest.php',0,'���6�鸮|\Z���A9','���6�鸮|\Z���A9','n��:����y).��.� ��8N+3��','',0,'?'),(' �G�ʴ��Gtؑ��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8�NÝ��\Z�Ȗv듪','+uR�A�e�f�Y�)%�;*\Z��y���U�','',0,'?'),(' �Y��v^J��9 ��\0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/invoke.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/invoke.js',0,'�����!�;O�','�����!�;O�','4���ق����>������l�����','',0,'?'),(' ���J�X�y��+�\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/backflow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/backflow.js',0,'!0��������2y��','!0��������2y��','��h8Sɼ�+l R߈jB��p�jJN�%','',0,'?'),(' ��$1p<���6�','wp-content/plugins/wordpress-seo/src/integrations/watchers/option-wpseo-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/option-wpseo-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z��;��3���@��.5/','�5Tum�n�\"��#b+�+5�V����a','',0,'?'),(' �b�rp��q�7*^','wp-content/themes/mint/node_modules/postcss/lib/declaration.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/declaration.js',0,'�L}k��,�Y��Ŀ�H�','�L}k��,�Y��Ŀ�H�','�-���KX���T5\'�1A�َY]��0}���R','',0,'?'),(' �z�z{����L��H','wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s/�\0����0��W�','�����1�@y\Z��{���{,��|�V�F=`','',0,'?'),(' ���P�f����F','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/inheritPrototype.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/inheritPrototype.js',0,'4����D|x�o��D','4����D|x�o��D',':�o���������=������\ns-�)\rx�','',0,'?'),(' �qhMp&��Vе�p','wp-content/themes/mint/assets/vendor/modernizr/test/qunit/qunit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/qunit/qunit.js',0,'K�@�돍���','K�@�돍���','5�f�˃!{KʘE+r�=�]_˺��z0����','',0,'?'),(' ����Ȃqnfd�wb','wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/LICENSE.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/LICENSE.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��UZ)�\'�a�5�@�','D��i\"�Ǟ�t۱�R@�8�����uvu','',0,'?'),(' �7=��4���#�N�','wp-content/plugins/wordpress-seo/admin/class-yoast-dashboard-widget.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-dashboard-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SE�j�Թ_&��4�L�','sB#�r�MTH��<b%�Ķ&o��yn4��h�','',0,'?'),(' �YMJL����;6�!','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/all.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/all.js',0,'��sM� %@>R��D�','��sM� %@>R��D�','�A͙0I�\"PV�X��V�Pd�3JPD&h�[','',0,'?'),(' �uq\Z\'��>�0Pf-Lc','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/socket-reader.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/socket-reader.js',0,'�uO\r.Dc?.p31�','�uO\r.Dc?.p31�','F�=����q�ȃ��0�c�D\Zs[����ɨ','',0,'?'),(' �o��+%n��Ik�:','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isSet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isSet.js',0,'i��r�W�u5J�gi��\0','i��r�W�u5J�gi��\0','W�;HFN��X>�mfL���WU.\':�f','',0,'?'),(' �:��zM1�����','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/CsvFileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/CsvFileLoader.php',0,'Djs]�պ�}�$i�@�','Djs]�պ�}�$i�@�','h������D���A�t@rMс#�u(��','',0,'?'),(' �L$�:��[Nm9�','wp-content/themes/mint/node_modules/mkdirp/test/rel.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/test/rel.js',0,'�I&S4A�WDi��-!','�I&S4A�WDi��-!',')�4��u�W\Z���&i\'�p�ĺD����ᐎ�!','',0,'?'),(' ��`/�/����(CM','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createReduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createReduce.js',0,'4���C�_���0�7','4���C�_���0�7','2��m�i�e6�.��}���k��,����Rq','',0,'?'),(' Ӑ�4�cj���\Z�&','wp-content/plugins/gravityforms/includes/logging/logging.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/logging/logging.php',0,'�����]��G�J��M','�����]��G�J��M','{g��b�i�B�4/ͤF�.\r�·����:].?=r','',0,'?'),(' ��V���\Z}\r�y\n�`','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/filter_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/filter_sync.js',0,'i!�K���|��$�0?','i!�K���|��$�0?','E��/����لg��R����+�\"�J�z�','',0,'?'),(' �`�FlP�S�eX/','wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-post-edit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce-post-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:Z*b\'\Z�~\Z��n*�','ઠ�!�B�xt����q�3v犘st<�j�','',0,'?'),(' ��c̫)I�\np,͑��','wp-includes/css/jquery-ui-dialog-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/jquery-ui-dialog-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e_�4[a:�]����','\"`:χ�{��j�H@�����#�;��ZIs.','',0,'?'),(' �D�+l����q=�ڪ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseAssign.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseAssign.js',0,'��\"cJJZ\\�eL�>','��\"cJJZ\\�eL�>','YIf�p���J���犐��9��� �0�VJi�','',0,'?'),(' ����)� rcl\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/build/suffix-browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/build/suffix-browser.js',0,'L�6t0�=%IW�G��V','L�6t0�=%IW�G��V','��u�²�:\"�S3��҂U�CO���\0��a~S','',0,'?'),(' �(jX�kq��顾���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/some.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/some.js',0,'�\0�0�g�{�%�$/B','�\0�0�g�{�%�$/B','v�2�s<�ߟF��YXɗ���ɯEn ��','',0,'?'),(' ����+�\n���','wp-includes/js/dist/commands.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/commands.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t)�T��q�Z|','ߜ1���-:H�R�&��ÑD����\rͲ^��y','',0,'?'),(' ������t4${�SE','wp-includes/blocks/categories/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/categories/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&fE4:\\x]}/q�K9 �','��fbW0R^5c���\"Kڊ��ْB��z��rs��','',0,'?'),(' ��\0��G8��Gn�iA','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/StreamOutput.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/StreamOutput.php',0,'l��C��qXJ\n�a�F','l��C��qXJ\n�a�F','�M�?��؟�+�4v�݇�;_4j�t�','',0,'?'),('!�\Z�S�`�9���X#>','wp-content/plugins/envira-gallery/src/Functions/admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/admin.php',0,'�?V�n�j2�=j��(','�?V�n�j2�=j��(','X�QWT���^oe�%���`V-~y�Y�����a','',0,'?'),('!�1Z��\n6�n��T','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js',0,'�U���_>7��]','�U���_>7��]','�K��R8�O�yԃp���]HLT\"�Ӓl��z�G','',0,'?'),('!o�\r��A��v7��e','wp-admin/update.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+��of$[�D��',' vw 5�a�ĉ5߃�Xo(� m�5b�v�','',0,'?'),('!e@#3u>���>��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/escapeStringChar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/escapeStringChar.js',0,'=z���M���m�\0\rl','=z���M���m�\0\rl','j�Hk3u�\n2j������O�����ڃ��\nGS2','',0,'?'),('!H�u�fɁD�7�>=g','wp-content/plugins/wordfence/lib/wfLicense.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfLicense.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Ot0LM�����{�','��,�Q繧^7>��;ٺf\Z��F���YK�\'�','',0,'?'),('!�[zt��W�i�','wp-content/plugins/gravityforms/images/list-remove.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/list-remove.svg',0,'����M��/a���','����M��/a���','�k������~��!��kQ��M��BP�','',0,'?'),('!)3�upX��>My���','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-term-indexation-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-term-indexation-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c56��N�L�W�7�','Rvt69���Ն�5U1�ʶ�p��)���y','',0,'?'),('!*C�q;O���^��L','wp-content/themes/mint/node_modules/htmlparser2/lib/Parser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/lib/Parser.js',0,'\'�VaE��#���\"','\'�VaE��#���\"','����\rU\Z�椌�?�DG�y���odn�d�S','',0,'?'),('!0�~�7i���_f�$','wp-content/plugins/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCliBarNoOp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCliBarNoOp.php',0,'��U��0\\��F_k�SO','��U��0\\��F_k�SO','�4��\r�9>��ȸo�RQ?��_��|��}/��','',0,'?'),('!1b݅9��*�\\��','wp-admin/admin-footer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"dƚ$6 ���U�\r�','u\n��z�9l�\0I������,�#\n�?�YU�V','',0,'?'),('!5�y̬\rv��s��&a','wp-content/plugins/wordpress-seo/src/user-meta/application/additional-contactmethods-collector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/application/additional-contactmethods-collector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{.����\'tKF�7�','4j����El��L�%�eRSL`wv����s���','',0,'?'),('!6�aGO�\n�-��=%�','wp-content/plugins/wordpress-seo/packages/js/images/indexables_1_left_bubble_optm.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/indexables_1_left_bubble_optm.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K� �mO_���I�Ц','̷��;\\�q?��(\\�������CߊI=�&','',0,'?'),('!9[LSZY.��nnr*1','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.min.js',0,'�Cdrh�>\Z�#�\rq]','�Cdrh�>\Z�#�\rq]','�*�H�cZ�ׂQ]3Pzڎa��l(Ҩ$L��q�','',0,'?'),('!D�߁�M��g`n�GX','wp-content/plugins/wordpress-seo/src/helpers/robots-txt-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/robots-txt-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o���-��z�','�\r��|]GEJ�1�w�w�}g��9�E��ن��','',0,'?'),('!I�d]5$���[��~�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o��L�� k\'k1��','��1�\\�Qt�*���J���%���s��&','',0,'?'),('!Plu6�������CZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����P���e��1','T���*��+���z]ʜ;>�\n�3���]?x�','',0,'?'),('!_��輵p3p�n��L','wp-includes/images/smilies/icon_eek.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_eek.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/I ���x�)�(\"��','�8�����K҇���4������!��:ʰ','',0,'?'),('!`�}�m-\0�1^','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/makePath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/makePath.js',0,'�^%�Q�E?�� ��','�^%�Q�E?�� ��','#4��\n<�2m�:G�&���>�͙9�y��.?','',0,'?'),('!ewd�oz�4}�o�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random.js',0,'�@1]nW��o��!�n','�@1]nW��o��!�n','��YS\\�sN�k�@�\"4����{Ǹ�o+�+xu�','',0,'?'),('!r>]!@��ν6��s','wp-content/themes/twentytwentyfive/patterns/header-centered.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/header-centered.php',0,'l���|Ѵ�? �$�T','l���|Ѵ�? �$�T','���@��9\0���!U\'�A.��Fi�*�����','',0,'?'),('!|(�y�W�*1Oo2Cu','wp-includes/js/wp-api.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-api.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`7\rJG ϭOt>���','�;��_*B�5喙GI����C6�x� �','',0,'?'),('!|��8���I,�� ��','wp-content/plugins/wordpress-seo/admin/class-collector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-collector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z��~0��=���','�v�nݤ���g�:Z6s��!��Ȕl)8~=','',0,'?'),('!~�m\nT\\�3��=�I�','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/exception.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/exception.js',0,'\"1L�R���1��/#','\"1L�R���1��/#','C!*�~M}L����~]��Eme(+Yr�;�\n','',0,'?'),('!��V�;��ۭ\"[��','wp-content/plugins/wordfence/js/wfi18n.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/wfi18n.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i&XDE���p/N�','GU ��*��k�P,�:�?+}x�Hb�5���#�','',0,'?'),('!��G�rx@\Z�~s','wp-content/plugins/wordpress-seo/admin/views/licenses.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/licenses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��V+b+��>�w','�]8��\'�����z�N�\r��+lT���ߤ�2�','',0,'?'),('!��xx�+!���[�(','wp-includes/js/dist/list-reusable-blocks.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/list-reusable-blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�DT=;%��z:�H!V','��F^ˋ���$�K�Wn#�`�4��0�*��(','',0,'?'),('!�,��T��`Q��1�','wp-content/plugins/wp-optimize/images/our-other-plugins/wpgetapi-sm.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/our-other-plugins/wpgetapi-sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E���ý��f��u��','���l��Ƅ?����;�KAv�]�����','',0,'?'),('!�>��ϝR�Iϑ|�','wp-content/themes/mint/node_modules/hawk/lib/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/lib/utils.js',0,'+.����+�=�B���','+.����+�=�B���','��Cr�!eGI_T4)�F�Zo�x~A=��','',0,'?'),('!����\\���{A��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/inheritPrototype.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/inheritPrototype.js',0,'4����D|x�o��D','4����D|x�o��D',':�o���������=������\ns-�)\rx�','',0,'?'),('!�w<���A\n�@�O','wp-includes/js/dist/hooks.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/hooks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�۶�iy4x�&�$[*�','�,kH�=RV��q�v�t#��N�w �hA�r����','',0,'?'),('!�-�2 ���$vX���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/reduce.js',0,'!���l��`��4~A','!���l��`��4~A','\r�S�8�S1�\n�N�Jm,A}�>}�O�','',0,'?'),('!���:U94�\Z?OD�','wp-content/themes/twentytwentyfive/patterns/cta-book-links.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/cta-book-links.php',0,'A�vY@�9��f�2/x�','A�vY@�9��f�2/x�','���I���z�!�����X4H��H�>�k���','',0,'?'),('!��%3`���!�OI��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/core.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/core.min.js',0,'by:�1�)7wΓ7ξC','by:�1�)7wΓ7ξC','���^�n�����j�\'ǥ�kO�����','',0,'?'),('!��D�mIX7XD��','wp-content/plugins/envira-gallery/assets/js/lib/cookie.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/cookie.js',0,'ܑ��uc�� 3r:p$�','ܑ��uc�� 3r:p$�','�\n-��Kpe�>-j1�x\ZŢX.b؝�>F4I��','',0,'?'),('!���vS+9@�In��','wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/xhtml.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/xhtml.html',0,'¶�A��@_�\rN��','¶�A��@_�\rN��','LD�[Q\Z�d�1g�b�s����?�P�I��u�!�','',0,'?'),('!��y��\'U��b��#}','wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�zY��衆:��Lk','3`R<��!���0)B��W�gH�Z��','',0,'?'),('!���p�o�CTf�\\�','wp-content/themes/twentytwentyfive/patterns/event-rsvp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/event-rsvp.php',0,'=�F�&���9ńG','=�F�&���9ńG','���?N��Yw�+ �K|�&�!ṷVW����g','',0,'?'),('!��>�NN����ٌ�','wp-includes/blocks/file/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/file/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�N�\"��biqד�F�','�wb����p�mE_�N|>P�d�[!�`(����a�','',0,'?'),('!����8~W��>B�','wp-content/plugins/wordpress-seo/admin/listeners/class-listener.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/listeners/class-listener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z��9z�%��0�[Ӽ','���6�\Z*G-��+�c�)��|��&[`^3','',0,'?'),('!�##sw:\rH*�$q�','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lm�A1���\\E_��0��','��y�T&&�@�ʀ7�pP�h�Q*p���Y�','',0,'?'),('!����L�A��\Z�� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/reduce.js',0,':���?���r��',':���?���r��','�v*Z�V����\\�C������W����M�','',0,'?'),('!���`N���Y�z�,�','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/examples/symlink-write.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/examples/symlink-write.js',0,'fx���-���d��K�','fx���-���d��K�','�ú?j\"e��U ����va����NQ�','',0,'?'),('!��|{�\Z�.>I��\'ZE','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseRandom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseRandom.js',0,'!X��Hʙm,>C�ΗU','!X��Hʙm,>C�ΗU','XѡϮO�h��/����Fd!�0w��,�m','',0,'?'),('!�����2�\'�sr�b3','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php',0,',�]�a��[��~l��\n',',�]�a��[��~l��\n','P .\nm59I��Lȯ����hx�7�#1���','',0,'?'),('!� �_�mewuߋXA�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/underscore.js',0,'��<� b���4�','��<� b���4�','����������b��->T��s�\\����;\0A','',0,'?'),('!�HI@��N&Y��B�','wp-content/plugins/wp-migrate-db-pro/vendor/phpoption/phpoption/src/PhpOption/Some.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/phpoption/phpoption/src/PhpOption/Some.php',0,'�Øg�D�R��mn��','�Øg�D�R��mn��','z�H��e�������G-�`i�__�=$\0��Vp','',0,'?'),('!�˦xǬ�z�@!�C`','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/dom-classlist.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/dom-classlist.js',0,'=dd�&�\nL��!�k1','=dd�&�\nL��!�k1','7�y�ޏ(�S���T�xI��K��X�Q�Oy','',0,'?'),('!�/.`v��C\n�#\\l\"','wp-content/themes/mint/node_modules/dom-serializer/node_modules/domelementtype/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/dom-serializer/node_modules/domelementtype/index.js',0,'5�ui��έ9�&�ڕ�','5�ui��έ9�&�ڕ�','�#E�^`ډ\n��~^\Z7���1c�#���-��','',0,'?'),('!��\')�qM*�Xc','wp-includes/blocks/embed/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/embed/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_Z��yǍ͞??m','�����g���`JC�9�y��GȌ�j)A','',0,'?'),('!�R���p�nL�w�m7','wp-includes/js/tinymce/plugins/lists/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/lists/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�r?�N�ぼI��q\'�','%�=r������d��v\n��i�z�x�u��)3p','',0,'?'),('!ہ�Iǵ�`��8�t','wp-includes/js/dist/keyboard-shortcuts.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/keyboard-shortcuts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� W�6L�9l���N�','�Q���R��)��6�f�/ǩ����W�xM/','',0,'?'),('!�Tۦ���� l�I�\n','wp-content/plugins/wordfence/lib/menu_tools_importExport.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_tools_importExport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɳ��xm46c)��','en�*���~�a�يc]��Zbi�XCq��','',0,'?'),('!�-�\r.��d7O�','wp-content/plugins/wordpress-seo/src/presenters/webmaster/bing-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/webmaster/bing-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\W��ȹz�X#�}U','�7Zh�\Z]7`�N�`�ň\ZT�(ێ�J�ac�0J','',0,'?'),('!�>лӊ^��[��U}�','wp-includes/js/dist/data-controls.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/data-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�t*h��+J..W�','�1�ܴ�y��G�4��\\�\"MQ,\n.�3{tH�N','',0,'?'),('!�O�4�bCRR�fO�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\nr��CO߶���a��','�2�t��ӑ �@��f��j�xm�>��*��4��','',0,'?'),('!��Y0-z1�dm>�','wp-admin/js/plugin-install.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/plugin-install.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��q�܂y|R��Cg�X/','?UաNkh�kGQTҗ��[0��N����-���','',0,'?'),('!��\0K�pK�Unm�E�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/hyphenate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/hyphenate.js',0,'-5Yui\nF{����a','-5Yui\nF{����a','��TYa)R(y�s�x��J�![��������&','',0,'?'),('!�{��S�J,���\\�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/sort.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/sort.js',0,'�]��I��V��g�\'','�]��I��V��g�\'','OD��z�M�L��La)\nCo���E[i6&#|\rj�A','',0,'?'),('\"\0;�����\0�[���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseConformsTo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseConformsTo.js',0,'�0�oq��se�G$�x','�0�oq��se�G$�x','p����m0�<ѝ�L�K!U���i�$����;','',0,'?'),('\"\n���4j�SË�','wp-includes/blocks/spacer/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/spacer/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�k���k�3z��U)�','u2�T��z\"����-g���&]�V�j��$O>�','',0,'?'),('\"�\'{N�������#\n','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/randSign.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/randSign.js',0,'��Wں\\���b7��Ҹ','��Wں\\���b7��Ҹ','���K��\0ޅ_%�0�$4��-H�����f','',0,'?'),('\"Et�y�s����\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E ��-N�o����','�L�I�Y�ow�)�4!:�;?��','',0,'?'),('\" ��n�8D�f�\"D3�,','wp-content/themes/mint/node_modules/promised-io/tests/querystring.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/tests/querystring.js',0,'�x1�Z#�n�*�Т','�x1�Z#�n�*�Т','��HE���ο��d��0�x�V��','',0,'?'),('\"\r↻�7l~��˝A�','wp-includes/blocks/text-columns/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/text-columns/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����$6Eɫ8�y','�\\{�1�E��H=F�\'ֱ��L�=t�0�X�','',0,'?'),('\"L��z�\n�G�ݦ6�+','wp-content/themes/mint/node_modules/asn1/lib/ber/writer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/asn1/lib/ber/writer.js',0,'*�w�p(��#�hU%','*�w�p(��#�hU%','�,�xs���q��K��\'5��ɹ��џR��','',0,'?'),('\"c自����=2��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U��:l� K���Q�3','@�J\0�,��ZN�`��\'>b-�V��݉���','',0,'?'),('\"!eZ�}��#�y�p8','wp-content/themes/mint/node_modules/stringstream/example.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/stringstream/example.js',0,'�:3X��k�h6��\r','�:3X��k�h6��\r',')(�p�c���~q�D���m�/:d�\0�|d��2�2','',0,'?'),('\"#u��>=s�Ll-�6','wp-content/plugins/gravityforms/includes/webapi/v2/restapi.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/restapi.php',0,'@)�ZΨ�Ev�̀�;\"�','@)�ZΨ�Ev�̀�;\"�',' EfD~�դԷ8y��L�|�DP����&�','',0,'?'),('\"%��^�\n]�����T','wp-content/themes/mint/node_modules/bower/lib/node_modules/touch/test/sanity.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/touch/test/sanity.js',0,'.�[����Z-6�$��','.�[����Z-6�$��','���ї\0v,v�y�vP�&-D�S�C)�����&','',0,'?'),('\"(}G��r� 0��V(','wp-admin/ms-options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/ms-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DŽ��f$�Ȓ,i42��','9��Z����{Orj4��2x�Rp�V_��','',0,'?'),('\"*\Z&b�A��[���y�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FooCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FooCommand.php',0,'E\'crEh����&�','E\'crEh����&�','Oφ_�����:~�\r#D\'��u`�^�u!�c','',0,'?'),('\"0�rN1M���#���','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y�tP�>Ra�S�@-','u{4���s��J����3�H��6ow�r','',0,'?'),('\"1j6�(T��%6�','wp-content/themes/mint/node_modules/bower/lib/node_modules/boom/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/boom/test/index.js',0,'t1��ԝ\0���mA','t1��ԝ\0���mA','ܣ2�ܙ�C�\Z�4��L�f�<��V�F*��-/','',0,'?'),('\"2JC\n�b$&����','wp-content/themes/mint/assets/vendor/modernizr/test/js/unit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/js/unit.js',0,'�\'\'�2���x��b:�M','�\'\'�2���x��b:�M','0�\\&w�nLP����w(C(�~�n�j(cvH�','',0,'?'),('\"8A\n=��ᇼfp5','wp-includes/theme-compat/embed-404.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/theme-compat/embed-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;��C�Q5��z��','4��7���:V�]�L�,�B���R$2pz��','',0,'?'),('\"<ǭQ�GF�)-��','wp-content/uploads/cache/a06db03bc63fab2cfe025da8b39e449965128a57.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/a06db03bc63fab2cfe025da8b39e449965128a57.php',0,'�;U�Ⱦ��w�a��3','�;U�Ⱦ��w�a��3','�\"���_�c;�y�Q}Wk:��=�eVh�^#','',0,'?'),('\"@�\n��sy��c�','wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallbackNoMercy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallbackNoMercy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ����N���.�n�','���N;H�!�c��(���Y�܋���}��','',0,'?'),('\"IFn����@�a�}�9','wp-admin/includes/class-wp-themes-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o��SJv�h���B�','�)�/Xu�y�ᙒ������\Z��~h��,','',0,'?'),('\"LΧ�M��g�y','wp-content/plugins/wordpress-seo/src/routes/meta-search-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/meta-search-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N`�d1�2��Pf�>','3v��9Ѹ�g�h�\0sz0�,�\n�{�K`�[��*','',0,'?'),('\"N�M�����k�VO','wp-includes/js/dist/data.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���(Dgڭ)��ʙ<�','��*�#���b�W��Qd?�ߚ��闝�\r��X','',0,'?'),('\"Pt���IC���2]�','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library-store.ae332f88c1969b8777e8.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library-store.ae332f88c1969b8777e8.min.js',0,'Zqvo�블���mҵ','Zqvo�블���mҵ','a�(&�|0���W���������L�������','',0,'?'),('\"V{��a�C7�}B�','wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCliBar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCliBar.php',0,'!��M6�v{ԫ.i\r�','!��M6�v{ԫ.i\r�','�v;[i�8�Lq���w>�)�V>�O�ي\\��','',0,'?'),('\"Y��:n���A���N','wp-content/plugins/wordpress-seo/admin/class-admin-help-panel.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-admin-help-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<}�� �Ȏ��� ','���}LGR�:�}Vʶ��G[�|�+�i�ht��','',0,'?'),('\"\\�=��ʽlE�1l','wp-content/themes/mint/category.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/category.php',0,'_�LI��@��xF�T','_�LI��@��xF�T','�F\n�!�ū5�w��F)�� ]�O�xv+1�4=�','',0,'?'),('\"\\�\"[����ht�\\�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/random.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/random.js',0,'���`�q�hWv�h��','���`�q�hWv�h��','��J�#:3�u\0L�e��N��s�\0�D�����f','',0,'?'),('\"]DMK�RC��b��l','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/clamp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/clamp.js',0,'�fsn����iCԨ��','�fsn����iCԨ��','��sѬ�1\n�ј��g�e���WmKg�T� ?�D5','',0,'?'),('\"huy=��,����v�','wp-content/plugins/wordpress-seo/src/presenters/twitter/creator-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/twitter/creator-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�YPq��cr6�','�-\n$��P�o�i{b�bii;�1�۹[����','',0,'?'),('\"n�˅�1��UB1S','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/StreamInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/StreamInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� �=Ͳ`�b�Q�~a','��(�ϏWN�\\���Q\'^]��J?����Q���I','',0,'?'),('\"p`�&v�~�2�D�y�:','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isFinite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isFinite.js',0,'����6��W��(�9','����6��W��(�9','�,v���1�B��!^t5R�|��\Z��Ɂ�u�','',0,'?'),('\"q���� K6A���!','wp-includes/css/dist/reusable-blocks/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/reusable-blocks/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ⱥ=M�c�M���Z\rϛ','y�z3J�i<D�~gh��Bb��f@4ajY���','',0,'?'),('\"s3���Ia�\\�E�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/mixIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/mixIn.js',0,'l�E�\'�/��{�','l�E�\'�/��{�','����Y��`��]i��TL/G���V\"��2*','',0,'?'),('\"t��E�};�A�\"�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/NotificationFake.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/NotificationFake.php',0,'D��P��A�r�#�','D��P��A�r�#�','6b��`��1GPh�?7�Lh3.��~_�ϕ�Oݗ','',0,'?'),('\"u��#�nNj�t�0|\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/last.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/last.js',0,'7\"�y�N�G��ڜ?�','7\"�y�N�G��ڜ?�','�����6�$�Oo%4ܬh��=�p�U�up��','',0,'?'),('\"|� ��-�P����ѵ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/property.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/property.js',0,'밁��H�3Bt�y�%','밁��H�3Bt�y�%','�}T���h.�}�˓���<)1z��48����','',0,'?'),('\"��)z�&�ke�','wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/esprima.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/esprima.js',0,'��!�J����&�','��!�J����&�','<>A��c�r\Z�\'H�|)\nm���yoF','',0,'?'),('\"�]�۬��-����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/isNear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/isNear.js',0,'�m:�;��G��OfB+�','�m:�;��G��OfB+�','2�ֺg����pCb�+��r\r��,�r����','',0,'?'),('\"�=C�^�E�v�\\��','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/ServiceIteratorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/ServiceIteratorTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5yQ>�C�+7�~?�','���tq�D$C\0kưU^+�� �+��1���)�','',0,'?'),('\"���K�6^�4V�}��','wp-includes/blocks/spacer/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/spacer/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2~Pa\Zjmެ�b��','���g�h��U:~�M�\ZLB3JM{\r�W���','',0,'?'),('\"���i����#v\0p','wp-content/themes/mint/node_modules/bower/lib/node_modules/builtin-modules/static.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/builtin-modules/static.js',0,'�pEu��)�͵e���','�pEu��)�͵e���','R��Qam�rD�~gC�#�\r��1l�=���','',0,'?'),('\"��Ɨ70ۨ��;`B','wp-content/themes/mint/node_modules/delayed-stream/lib/delayed_stream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/delayed-stream/lib/delayed_stream.js',0,'iv8��xm�M�{','iv8��xm�M�{','{L )����8�\r8.�Z⪢Ѐ�m7� S�','',0,'?'),('\"�[����B�g�:�9�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Foo5Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Foo5Command.php',0,'�3����K�.� �>A','�3����K�.� �>A','�ʿ*@��{��G^��N�5�g�q����%&','',0,'?'),('\"�ja�*:$\'r���I','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js',0,'�7��fŻ����','�7��fŻ����','?�\rA�4;iU��D1F.�g�=\'�\Z�g��[�','',0,'?'),('\"���\'n��O\n�x���','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/align-self.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/align-self.js',0,'�Zv�P��բ*�K�\\i','�Zv�P��բ*�K�\\i','QV&�Д���@�����>��J�4���K���','',0,'?'),('\"��G����V������','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/ensureAsync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/ensureAsync.js',0,'Gi)���u�|m9�ꭰb','Gi)���u�|m9�ꭰb','�i�K����G��E���N�C�k -��<','',0,'?'),('\"����b9��e�|�_�','wp-includes/feed-atom-comments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/feed-atom-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_mY�D �[s\n�8�!2�','ك���+q�8�o��_T�_��/zM<�R���=9','',0,'?'),('\"��}������.CD','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date.js',0,'/���U�U�))�E','/���U�U�))�E','�]U��b������!��\"�{I��x��V�ٿ','',0,'?'),('\"�D*u���oM>^0g','wp-includes/blocks/site-tagline/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�����A�;䊹��','��Н�<�+[D\n�4H�v�����ֳ-�;�','',0,'?'),('\"�7O,wY� ��tB','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/typecast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/typecast.js',0,'���D���i���|m','���D���i���|m','## ��� �HA\0�%�#s�����@\0\ZА�k�','',0,'?'),('\"�X�����.vbS','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/wrapperReverse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/wrapperReverse.js',0,'��đ�=�(\n.�Ee�r','��đ�=�(\n.�Ee�r','_��<���Ca��u^ݑ�U������=ׄdY','',0,'?'),('\"����ۯ��6��7?','wp-includes/blocks/site-title/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-title/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\Z�g���Do��k�xl','���O�Q?v���Eo\0��\Z������Җ%\\H3','',0,'?'),('\"�u�]�����c;','wp-content/themes/mint/node_modules/bower/lib/core/resolvers/FsResolver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/resolvers/FsResolver.js',0,'�\r�?l��%�It�ƾڔ','�\r�?l��%�It�ƾڔ','=?��x�O.�P�_XJe�c}���Q��p��','',0,'?'),('\"�����u>1�7���','wp-includes/class-pop3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-pop3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ރJ�N�GC�Rh�No','�M�X�����aG�\Z�.x�\r7�0�W�c����U�','',0,'?'),('\"������|z�i�(�?','wp-content/themes/twentytwentyfive/patterns/template-query-loop-news-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-query-loop-news-blog.php',0,'��N�uS�k����ⲇ�','��N�uS�k����ⲇ�','D��E+&\Z�ʖ���6_���g�d�l�f��\n\0�','',0,'?'),('\"�5X�b�hG��','wp-content/themes/mint/node_modules/bower/lib/node_modules/delayed-stream/lib/delayed_stream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/delayed-stream/lib/delayed_stream.js',0,'�ș lx�������','�ș lx�������','Mx�W��1gnT��`?pf<��.@U>��@a��5)','',0,'?'),('\"ɼ|�eD�0�|S�X1�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reporting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reporting.php',0,'���@Q�G���O��','���@Q�G���O��','\Z�����ފh\nm���(N-e�����R�è�','',0,'?'),('\"�� �!�Qa�� +','wp-content/themes/mint/node_modules/minimist/test/short.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimist/test/short.js',0,'�d�,e}nq�âȼ\\�','�d�,e}nq�âȼ\\�','��kx���F%{��� �����G`�L�!p','',0,'?'),('\"��/�c�:��܋��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/lastIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/lastIndexOf.js',0,'����ŵ�н�T��','����ŵ�н�T��','��]�7���%z�q;d7}��(i��\"(��\r�-','',0,'?'),('\"��6\r+K{�\Z!a','wp-admin/comment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���?9��[d��','\"�� ���f���u�E9i`�4\'j','',0,'?'),('\"�u@rX42���&[E','wp-includes/blocks/comment-date/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-date/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���[�n�B}\Z�9�>?','#$Et��\'U�A3P�ss��*3�\\���?V\r���','',0,'?'),('\"�w��h����','wp-admin/includes/class-automatic-upgrader-skin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�$,X,X��o~N��','}���3���ƨ]�8��U�7c��:��','',0,'?'),('\"�z��&�S��K�J=','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/DumperInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/DumperInterface.php',0,'��F�un�`��\0/�3L','��F�un�`��\0/�3L','X� ,��o|M��`5��-�/j���Db;���','',0,'?'),('\"�F��g\'<���84�j�','wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/dist/source-map.min.js.map','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/dist/source-map.min.js.map',0,'յ�6�G9�lT`LjB','յ�6�G9�lT`LjB','�{383��Y$p����p�����K�Nn:\n�4','',0,'?'),('\"��0�\0�L�\'M��','wp-includes/sodium_compat/src/Core32/HChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�5��e�f��#�ϝ','��i��\rC��\"Գ�\r4��8�c��S��','',0,'?'),('\"� �Gn\nY��7�0�','wp-content/cache/wpo-minify/tmp/js-5e7718d3.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-5e7718d3.js.transient',0,'�90�:/�n���5��','�90�:/�n���5��','��<�d`Uq��! \Zi�C���>�:ѓ�%','',0,'?'),('\"��w8E�ܕ�!�TV','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Cache/Repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Cache/Repository.php',0,'�4B���4/^\n-Vd','�4B���4/^\n-Vd','���Ƴv�K�C��⮻�8V,O��W���','',0,'?'),('\"�9\"i��I����','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^R��@ٯ�;zzE���','��a��}J:�Z�1��8��cM\n�[���+','',0,'?'),('\"놚^��4��_�+�Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/reduceRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/reduceRight.js',0,'�~GX��\"í�y�','�~GX��\"í�y�','0���F�����u����\"��a�vC�բ�d','',0,'?'),('\"�D�Z~\0�|�3���','wp-includes/blocks/query/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8/�X_5����','� �hDb,��Q�HWi9���u��\'��z��X�x','',0,'?'),('\"������`[��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isWeakSet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isWeakSet.js',0,'es�\"M�>T�>��','es�\"M�>T�>��','�H�����S�S�£Ѥ��0D�4iS����V�:','',0,'?'),('\"�z�R�u��-R�<','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/dist/source-map.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/dist/source-map.min.js',0,'�8@:w�[L��Jj%+�','�8@:w�[L��Jj%+�','R(��F�4���T?�6@!6��Q�`R','',0,'?'),('\"�J���2�\rߤ-H�&','wp-includes/js/dist/date.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/date.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>��d�- ͒M��+d5','h�۰fuU����f=%ԧ-�ۢ\r����{5','',0,'?'),('\"�Np?g�V���&','wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/zz-cleanup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/zz-cleanup.js',0,'#�m��s�I^�@','#�m��s�I^�@','v&�Q���t+wI��x�&�\r�H�=n2','',0,'?'),('#\r��\'�`y�D� 9jz','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/Event.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/Event.php',0,'�b���a:Y8 �%��','�b���a:Y8 �%��','��j��ՎZ4���\'*@�Ki��D�M','',0,'?'),('#��ۛ*���J��[','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/lib/_stream_readable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/lib/_stream_readable.js',0,'�2P�eOS�8����;K�','�2P�eOS�8����;K�','dl�}l@�r�����%���<��S����x �','',0,'?'),('#\n��/��PZ~h��','wp-content/plugins/wordfence/lib/email_genericAlert.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/email_genericAlert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+I*kC�e;�P����S','��_\'\\q��F0��{�ТF�\r��.�OK','',0,'?'),('#^2��I�K��x�Ӵ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/shuffle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/shuffle.js',0,'� ��@�ʽa��)','� ��@�ʽa��)','���d�[#��0�Y���z1��V�\r�$Z?�','',0,'?'),('#�[c�أ�^y�O�','wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-account-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-account-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i�#��ݘ�Gl$','jSy��\Zw�\0Ui���t;xɲ�?�dBۦ�','',0,'?'),('#���\n�V�����Ơs','wp-content/plugins/envira-gallery/assets/js/table.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/table.js',0,'��W�`����җD�]','��W�`����җD�]','��t��z�� 0��ea�:և|a���+�N��:J','',0,'?'),('#~N1�S#�o��%�','wp-content/plugins/advanced-custom-fields-pro/pro/locations/class-acf-location-options-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/locations/class-acf-location-options-page.php',0,'�F�m_�����)�� nk','�F�m_�����)�� nk','#n>\rI���c��d7]w��#I�00��a\n>co�','',0,'?'),('#��na����exN�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/compact.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/compact.js',0,'t\\�&B��y��RT�9','t\\�&B��y��RT�9','F��7��;�\Z�_�7\Zh�~Ϛ�a.\\���h��7�','',0,'?'),('#!�Ì��\"m7�+�gC','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pad.js',0,' ST��_��!:�w�6',' ST��_��!:�w�6','�X�ؐʁdF�7�\"����:���`LGF�e','',0,'?'),('#\" .�o&�v�!��','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/lastChild.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/lastChild.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�:Й\03ds�E�L=�','��W��\'xz�1%=�|2C\r�F��:�n�_��','',0,'?'),('#*�\Z�$�}�NYq','wp-content/plugins/gravityforms/includes/addon/js/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('#+s@J��$x8�V}i','wp-content/themes/mint/node_modules/dom-serializer/node_modules/entities/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/dom-serializer/node_modules/entities/test/test.js',0,'���=�ng�\0-vsL��','���=�ng�\0-vsL��','x)����ǿ>����`?F�[i�X��ډ����u','',0,'?'),('#3��8��u|�z','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-redirect/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-redirect/index.js',0,'D����h�͕�`�q�','D����h�͕�`�q�','�C����%��8���ڍ�yq\nPdQayI�o���','',0,'?'),('#4��iGv�u+B��.','wp-content/plugins/wordpress-seo/inc/sitemaps/class-post-type-sitemap-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/sitemaps/class-post-type-sitemap-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0j2���ѷ,��G�',' �\Z�z��S?V�Z%���@Ԥ������[&�','',0,'?'),('#5=�u�p:x�h���','wp-includes/blocks/post-author/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i����V��x���','��ӻwA:U���\'��2��U7z����Xd���','',0,'?'),('#:�ޮt�\Z�ڏn��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DuplicateClassDefinitionSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DuplicateClassDefinitionSniff.php',0,'��}�+�6K#�G�ٛ7','��}�+�6K#�G�ٛ7','����p���48EoE?� 2wMDw~\' ��','',0,'?'),('#=�����S�-�','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver_sync.js',0,'�8�(F&�\0���nL�','�8�(F&�\0���nL�','\\A��qȌ��$Ԉnܞ��!�������v','',0,'?'),('#D�ń�����5%��','wp-includes/class-wp-hook.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-hook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']����/F6E��z�3','��Í\"@����H�\0��y��Y�D�0#}�','',0,'?'),('#F��ˉ����5�W?','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/values.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/values.js',0,'�t$ƐN��K�zإ�','�t$ƐN��K�zإ�','�\'��`�tb*{�ъ�N�膣���@�8~','',0,'?'),('#Gɖz���^���&��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Redis/LimiterTimeoutException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Redis/LimiterTimeoutException.php',0,'iԗl�������!�9��','iԗl�������!�9��','+���Y�U���6����}R�\'z{�7,��','',0,'?'),('#Q��r2&U:�w���','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/VersionRequirement.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/VersionRequirement.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\Z⽴�������b��','�\r�6ێc��fb�\r�#\Z��\'|9�˿�<e].P','',0,'?'),('#Q�Hq��b�c����','wp-content/themes/mint/node_modules/cli/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/cli.js',0,' �?٭�!�۸te',' �?٭�!�۸te','jس��ز{jg���K��TIX��=�H�6I4ku','',0,'?'),('#R^#u�5~BQ��','wp-content/plugins/wordpress-seo/src/builders/indexable-term-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/builders/indexable-term-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0�}?�h�P���','�\\M��c����I�*�y�:�L�cj�3��','',0,'?'),('#iQ��C��BdQ1�','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/lib/core.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/lib/core.js',0,'<��v{>J��Ō�VE','<��v{>J��Ō�VE','4�OU�M�@���;�Ճ������i$8ɣ�','',0,'?'),('#iawnP[Y�����','wp-content/themes/mint/node_modules/bower/lib/bin/bower.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/bin/bower.js',0,'&`P_h���Z>M�e�','&`P_h���Z>M�e�','��\"g��tf�x�ʹCC:�hFkp�X\ZÎ�*�\r','',0,'?'),('#j-a�q��������`','wp-content/themes/twentytwentytwo/inc/patterns/header-default.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-default.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���OS)1Wah�E','�(�ѤXW⯁�ф��m|�\n�Q#�G�X�&�','',0,'?'),('#jm�>�e�|\'�9��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_setData.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_setData.js',0,' ��/\"��?w�a��',' ��/\"��?w�a��','\Z�I�c@[�ߗ�:;囇ޖ�~\nuBf���\n','',0,'?'),('#j���t�[)�1��\0^','wp-content/themes/mint/node_modules/tape/test/too_many.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/too_many.js',0,'�ʼn�畵�N�9<#&','�ʼn�畵�N�9<#&','�rd\\#3���#�&f>Iwz�X�w�c{>','',0,'?'),('#t�n2����=�^V','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-permalink-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-permalink-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4x�%�\r\Z E�ꪹ','�]����f�&�t�WHokcEЁ�}���:�K','',0,'?'),('#|F̉�%�������\Z','wp-content/plugins/wordpress-seo/src/routes/supported-features-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/supported-features-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1`.9�>v4�0�V�Y�','8C\Zi{��z�Q,�Q#+��B/��d+q=*��\n3�','',0,'?'),('#}ʺQ�ր�rq˝�[','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/zip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/zip.js',0,'�w��NzoK~�@�_W�','�w��NzoK~�@�_W�','F�g+@�s�k&��\0c/梿�*��+]3��','',0,'?'),('#��K�� #~��h@j','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toSafeInteger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toSafeInteger.js',0,'��4�C�S���(l�M�','��4�C�S���(l�M�','�bwF�c��|����L��.�иM���0@B�X�','',0,'?'),('#��+7U=����0','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/contains.js',0,'�)��Ν|�m�>�k��','�)��Ν|�m�>�k��','�Ɏy��\rj�����*��KD�\Zg�j\rJ','',0,'?'),('#�1��\\�G[A����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/update.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/update.js',0,'I���S�J/�q','I���S�J/�q','8_�\'Z�% ��vz�\'��~���o����]nԊ','',0,'?'),('#�[�j���7~ඛ~N ','wp-content/plugins/gravityforms/includes/libraries/wp-async-request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/libraries/wp-async-request.php',0,'y���f�o5�]\Zj','y���f�o5�]\Zj','��O��p�cp�D�Y��m�ǖ�0�]��}�B�','',0,'?'),('#��9�g\r(�b0�O��','wp-content/plugins/wordpress-seo/css/dist/monorepo-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/monorepo-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5NK�dرL��8�\"�','�8Le�Z��t��`�`6$\rfJ.�H>�A���#','',0,'?'),('#���f{�+�(ML�O�','wp-content/plugins/wp-optimize/images/features/optimization-preview.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/optimization-preview.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�S���gv�l��','�.\r�\Zg�Ս\"s}Q�!�(��ĉ�=9Q��%','',0,'?'),('#�7{�O�m�\\�1�$$&','wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Connections/RedisConnection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Connections/RedisConnection.php',0,'O+8pjNfK/���×','O+8pjNfK/���×','B�l��;Ph�>�]�ۆ�>�}bnWq��\0l�~','',0,'?'),('#�\\M��@�0���T�','wp-includes/blocks/post-excerpt/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-excerpt/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �<��\r\'w9zR','O�FsoKL*�(\n�b�`�fNX�sSԚ�\\S�]','',0,'?'),('#�=��-�0�Dm|�+�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/WebPConvert.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/WebPConvert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�m:�+7q5p�4��','u��Qn��j��yG�l�g��7Ȭ&\\j ','',0,'?'),('#�\0W��;y�T�c�','wp-content/plugins/advanced-custom-fields-pro/includes/acf-field-group-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/acf-field-group-functions.php',0,'w��C���ۉ�i˼�','w��C���ۉ�i˼�','<$Ҧ�� �c ��p��R�m�^5��^�乓p�','',0,'?'),('#���[}��H���.','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue28.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue28.js',0,'�ϐVH�f�/��j�T','�ϐVH�f�/��j�T','Ƥ���{$�f\0��>���Č���?$R\nG�','',0,'?'),('#�-g�\\L%3�SB#\r','wp-content/plugins/wordfence/images/wf-horizontal.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/wf-horizontal.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E%Z�l��o9͒����','��0 ��6�ӭ�Iv����hJ��`����','',0,'?'),('#�*K�Z1\"ܯ�5sY�','wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._main.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._main.js',0,'K��b�G$o������,','K��b�G$o������,','z��p5�� �㐂�H�2��\n��Y�zo(n�K','',0,'?'),('#��,��ؽgtsiM','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/network-connection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/network-connection.js',0,'\n��P�� �\0ǩ�V�','\n��P�� �\0ǩ�V�','Q��\"�R_��6����U�7�_�̈́;_���M','',0,'?'),('#�aGh�[����{�','wp-content/themes/mint/node_modules/load-json-file/node_modules/graceful-fs/polyfills.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/load-json-file/node_modules/graceful-fs/polyfills.js',0,'�Eɕ~���\"5eZ�h','�Eɕ~���\"5eZ�h','5��]H��~d�Pi�Ŗ�$���[\"|�Mm','',0,'?'),('#�q�\n�]�mT��7','wp-content/themes/mint/node_modules/globule/lib/globule.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/globule/lib/globule.js',0,'x���a?Y��xQjه','x���a?Y��xQjه','wY�-N�\\�]�BQ����f�4h]ePh��pb','',0,'?'),('#��&�W@�]$�Gj~#�','wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-05.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-05.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a`��A���p\r^��','~�Z��n`VDF�3)����A�C)�i�$¡��','',0,'?'),('#���>�JDA�6ʆ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isLength.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isLength.js',0,'���m�}��A�\0W�d','���m�}��A�\0W�d','���K����ɀ��|�@z8����XB��eN�}R','',0,'?'),('#к�vb����a���','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Memcache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q)P��� �^I�,D',']���a�8�u��4r�ii_F�CH^��A>�','',0,'?'),('#�)_�۱�Y����h}2','wp-content/plugins/wordpress-seo/src/presenters/debug/marker-open-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/debug/marker-open-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',��r�+����','�sS\"��E!\"Y�w�)f��-��)?���̾ ','',0,'?'),('#ؖ�\r؉���R���[�','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_passthrough.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_passthrough.js',0,'=�5��^�nxX�I�\Z�','=�5��^�nxX�I�\Z�','�vu�9��F��a\0��ޞ�ى�|kח���o','',0,'?'),('#�����+��~�r','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/reject.js',0,'���-�����5c�','���-�����5c�','F\ng5���H4��iM��/���PY��ޕ�<','',0,'?'),('#�3ãY�T�\ra04','wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-widget.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-widget.php',0,'��A�{�\\�����0�','��A�{�\\�����0�','����R�ш�8��)�9��L�L�?ʷ:V�4#g','',0,'?'),('#��iU�f�����zhJF','wp-includes/sodium_compat/autoload-php7.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/autoload-php7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������n��4��','�-��r*H��^��O�<�a{����X�@�g �+','',0,'?'),('#�h!غ��C8�(��t','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/deprecation-contracts/function.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/deprecation-contracts/function.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z5k-���U+�R�.�','`��65�)�gD��i�!A���1v�Z��x����','',0,'?'),('#���Ԟ��(��[tU','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/auto.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/auto.js',0,'���D&��1���','���D&��1���','�5���$�A��`��;:2\0:D��\Z�GDS\'�','',0,'?'),('#�����^C���%��k�','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[D�g<.vܩH#k�SI','�v(��JG��D�W�_<3O63�m��\Z�','',0,'?'),('$��Y\\�E�ϖ;\'B\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/method.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/method.js',0,'g�4�?�G�ծ(?�J}','g�4�?�G�ծ(?�J}','�r���|�b�M]k7͕K(*\rp\n\'��t�gC/�','',0,'?'),('$o�G�����','wp-content/plugins/wp-migrate-db-pro/class/Common/MF/MediaFilesAddon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/MF/MediaFilesAddon.php',0,'g�#�q:w�#y��','g�#�q:w�#y��','F���̳F����@W�h�����u�T�m��','',0,'?'),('$4X�e�\'Ф j�q�','wp-content/plugins/wordpress-seo/js/dist/how-to-block.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/how-to-block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r$�Gp�.�(O',')j�[��\'\"K�R�������BNq!��','',0,'?'),('$����t��6B�`�l','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Catalogue/MergeOperationTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Catalogue/MergeOperationTest.php',0,'�C�$+Ξk��s롧j�','�C�$+Ξk��s롧j�','�U�G�h|L�4�����S�h�nN���zK���p','',0,'?'),('$\Z`>��<㉔N*J\0a','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/search-replace-casesensitive.874c1930.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/search-replace-casesensitive.874c1930.svg',0,'�n�K��!�7l�B','�n�K��!�7l�B','���e�P��ߋi�/��!nJE������՟�_-','',0,'?'),('$r��gAL���݇','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flatMapDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flatMapDeep.js',0,'��I�����;��>','��I�����;��>','U_0vM��K۾j���x���c�V��\ng3���_','',0,'?'),('$���O�/$��\n�Q�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/progress-spinner.121400ac.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/progress-spinner.121400ac.svg',0,'3ԇp��B��H�','3ԇp��B��H�','Twfe�xNc��\'��Ϻ��B�{���r','',0,'?'),('$ %��T��/^��','wp-content/cache/wpo-cache/juiceelectrical.co.nz/residential/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/residential/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('$$;h�Q\0�H�h�<:�3','wp-content/themes/twentytwentyfive/patterns/template-archive-photo-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-archive-photo-blog.php',0,'������ �/x���','������ �/x���','s:��dmr�0@p\n�0�^,�����M86o','',0,'?'),('$/5@zT�|��Y���c�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_replaceHolders.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_replaceHolders.js',0,'-�؍�Fg�{�Ӊ','-�؍�Fg�{�Ӊ','�50M��r���[D��T|`�O�j�\'3�����0','',0,'?'),('$4DO�����â���_','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/other_path/root.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/other_path/root.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('$7y���]���N�','wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͩ�pm��<�j@��\'','�Ċ8���,���Qw�G�n� a{���G9�D','',0,'?'),('$?]z� �%%�q���','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/justify-content.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/justify-content.js',0,'�v���7���A�','�v���7���A�','EG�چp���]���K�M��\n��G��<','',0,'?'),('$G��A��UWP�e�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/it.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/it.php',0,'�H@��Yr��Zn=','�H@��Yr��Zn=','��G�A�`�݇+�&�<�4�G�7�nP@�@','',0,'?'),('$K���*��NK:��`�','wp-content/plugins/gravityforms/includes/locking/js/locking-list.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/locking/js/locking-list.min.js',0,'�mY��i5r.!UF�\Z�','�mY��i5r.!UF�\Z�','_�kL6��\\�!8�����ؿ��i�sz����','',0,'?'),('$O�m��;ڛm���','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/markdownTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/markdownTest.js',0,'�x�>�6M1\n�A��U','�x�>�6M1\n�A��U','H�$��$Շx��������F�q�\"����]O��','',0,'?'),('$W\n�Э���t��','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/node_path.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/node_path.js',0,')()� �8����kh',')()� �8����kh','`bbD��6�:�%����+9G)\0��?��d�','',0,'?'),('$`\\�z��Ԧ�@|�Z','wp-content/themes/mint/node_modules/delayed-stream/test/run.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/delayed-stream/test/run.js',0,'ow@,Έ$�PS0d�','ow@,Έ$�PS0d�','�/�j�lc��7/l�>&������9��g+CD�q','',0,'?'),('$f�����1�P�$r','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/equals.js',0,'�q���ɣ�v\"2[��','�q���ɣ�v\"2[��','e�@��(͇�ijx��2|8�T�Da\0�%�\rރKZ','',0,'?'),('$i��Q���Q��B\n','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-default.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-default.svg',0,'�� eHK3��,u�2','�� eHK3��,u�2','��[�����$1���#�(�d���R)UŲ�','',0,'?'),('$kslE�\n���Mw�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/crop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/crop.js',0,':M�\Z��j��ӭ�(�&<',':M�\Z��j��ӭ�(�&<','DH�d5��:/�Sc�E�\n�W�1\0:k�D�s�IT�','',0,'?'),('$x�p��n(� ��3�','wp-content/themes/mint/node_modules/bower/lib/core/resolvers/GitHubResolver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/resolvers/GitHubResolver.js',0,'���(��]V;�j�','���(��]V;�j�','�J�1����T�ܝ�L,z�ӂ}�3#\"v]','',0,'?'),('$}λ�t�\n�zPt��\"','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php',0,'U �&\n�(�H�B�','U �&\n�(�H�B�','���GM�UqƟ;��j15���w$\ZOzv+�','',0,'?'),('$���\n��2����U�','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Key.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Key.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p��3{G�9偝','��|��`W ���ʿ����:�����w��','',0,'?'),('$����0S\r�r���','wp-includes/images/smilies/icon_redface.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_redface.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*��M�0��je[��Y*','��]���4���\0�� �}��S/Ah��)�','',0,'?'),('$��S�Ck��d�W�','wp-content/plugins/wordfence/views/scanner/issue-timelimit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-timelimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!��\"��V% |','�X>����[6_��\\��a�3�����s�V','',0,'?'),('$��� ~</��aR�','wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/third-party/wpml-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ia ~P�V��D/\r�','�O�g§Ʉ��zX�J�Rf�yJ�Ŷ','',0,'?'),('$�X��L�#g���l','wp-content/plugins/wp-optimize/images/features/cache-vehicle-64x64.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/cache-vehicle-64x64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Kr�M���氪o\\','�-i���f��>\n2�Ԯ_P~���S�AhˉV�5','',0,'?'),('$���3�ށ��)��T','wp-content/themes/mint/node_modules/shelljs/src/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/test.js',0,'H�F��R�e)+�8','H�F��R�e)+�8','ke9��{Q~�\n��`M���[�8=p�Ҧ~�','',0,'?'),('$�uٿ���aIH]�O','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndexOf.js',0,'4E���B�o˵w8 �','4E���B�o˵w8 �','1`[�K�=�]\Z�)����-������auvqx�','',0,'?'),('$�O�8\n, ��R��','wp-content/cache/wpo-cache/juiceelectrical.co.nz/smart-homes/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/smart-homes/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('$���C����/�9��','wp-includes/class-wp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_����y��Ƃ� �','9$��;̛�*�\\��X�\'���\n.�8o�\n+�+!','',0,'?'),('$��P���Xu�����','wp-content/plugins/wordpress-seo/inc/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EЛ��O0��c���Ag3','�� 蚠{�c�FJ�w��!}a���9�','',0,'?'),('$�G��¯�g�S�\\;3','wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/CHANGELOG.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����`���ˉ{>�S','�}k��F��0�M&{ag��r������3�MM','',0,'?'),('$��-#q`�l�$W�ۉ','wp-content/plugins/wordfence/lib/live_activity.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/live_activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ik���s','^&�V�b��,��s��B^�R�4�Ѹ����V','',0,'?'),('$��|��c�� \\~��','wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\�^>�5�pa��W��>','���������DC��XG4WFP�#�N�S\Z','',0,'?'),('$�GE�k�<[����','wp-content/plugins/wordpress-seo/src/integrations/watchers/auto-update-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/auto-update-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0*���0�-�zc<z�','�^��$A\n#��7�T���ZP���-���M','',0,'?'),('$��^���6bH^�*��','wp-admin/options-privacy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/options-privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ხ�0��1�����','�o7��H+�j�$^,���-��[/��N�UEؿ','',0,'?'),('$��߰�R�\r��ab8!','wp-content/plugins/wordpress-seo/vendor/autoload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�Xc��(b<2�M!�}','�\rڣ�)4)n/�����/�2:��s�2�S','',0,'?'),('$�ϫ/����!��C�','wp-includes/IXR/class-IXR-introspectionserver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/IXR/class-IXR-introspectionserver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Ua�w�<�Iw�p�O7-','��\n���C����PEQ%�D\r�k*�X���o','',0,'?'),('$��>�\'V��F>���Q','wp-content/themes/mint/node_modules/bower/lib/node_modules/hosted-git-info/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hosted-git-info/index.js',0,'S:d��u�k�P���k','S:d��u�k�P���k','�$t�V=\\���ʵ\'^����M���H�','',0,'?'),('$�%n��F]�O���','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/DescriptorHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/DescriptorHelper.php',0,'\\�<@�ډ�5��y�&#','\\�<@�ډ�5��y�&#','$��1XB�����t�߁��sNO�W&e','',0,'?'),('$�ﴎ� ���3�W','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Exceptions/ApiClientException.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Exceptions/ApiClientException.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��̸X� ��{�H%','Y�N���A�oq�����S�����\\���4','',0,'?'),('$�.�+�Of�Ig�\'w','wp-content/themes/mint/assets/vendor/jquery/src/manipulation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/manipulation.js',0,'�z<�c�{�~t�.','�z<�c�{�~t�.',';p��W.�5�a����S�aQc��d�ٷx�','',0,'?'),('$��-Q,0|���{s��','wp-content/themes/mint/node_modules/bower/lib/node_modules/json-stringify-safe/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/json-stringify-safe/stringify.js',0,'�8��K�m&b1A��z�','�8��K�m&b1A��z�','�!��wzf\"_�6^�0b�4�k\n�9��F���n','',0,'?'),('$��=��_�c����r�','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+e�;)f@9l��7Ƚ>','��z��[E�r�s]�p0*6V�ι���[R)�*z','',0,'?'),('%�Ԯ�{�f���','wp-content/themes/twentytwentytwo/assets/images/divider-white.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/divider-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�(ʷ \r�����R�','�@a{�a�Kմ�rz\r��[�FV,�.>�','',0,'?'),('% n�\r3\Zޝ�:�E','wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-reports.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=�\ZEɉ������','7��w��˴��#�%�����r�\rP��4���','',0,'?'),('% ����m).<���*�','wp-content/plugins/envira-gallery/assets/css/images/icons/configuration.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/configuration.svg',0,'��{1� �n�[3-s �','��{1� �n�[3-s �','��3�\\��ڏJd�u�Q\Z��龍g�l�L�','',0,'?'),('% ���ſ�kuX�b���','wp-includes/blocks/read-more.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/read-more.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p��]Z\"���y�Ґ','����=�\'���1]!<��/�vBS`ƛ�!�','',0,'?'),('%�]M�3�T�1T��/','wp-includes/blocks/preformatted/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/preformatted/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\r�{;���\"�����','��8�B�4[���[m�[��Ns��\0R,D�\"','',0,'?'),('%�u�?$�=��ϸ�%','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flatMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flatMap.js',0,'+�s��u;��6Ź�','+�s��u;��6Ź�','��$� ��P�{�e�a4�}�D�EQy?���a�S','',0,'?'),('%����7��娳�','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�b��������Z','S�\ZV��Z�DfGb���¸z���C�\Zb�>�','',0,'?'),('%f�Nvn9�,\r�W�','wp-includes/blocks/post-template/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-template/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','č�4�Uu�\nYi��','��&�s��h���o�@�v�\Z�f�z��=l���_K','',0,'?'),('%\"�RcY��u$v:0�','wp-content/plugins/gravityforms/includes/form-editor/class-gf-form-editor-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-editor/class-gf-form-editor-service-provider.php',0,'��1������p诠F','��1������p诠F','\\�F����8�T\Z�Q�>�0�(u��^��','',0,'?'),('%$���M�q�T<��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C��UO��\Zߠ�xtH','�G\n\"�_/A�g�h U?�S�s�H�ב�Y��ٳ','',0,'?'),('%(� yC�l>�K�<f','wp-content/themes/mint/node_modules/bower/lib/node_modules/md5-o-matic/test/main.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/md5-o-matic/test/main.js',0,'�a�a˫��q���B�','�a�a˫��q���B�','��Ψ�]^��K;QX��ߜS;ਸ���G�Є��','',0,'?'),('%.�.Ct�=����\\`','wp-includes/sodium_compat/src/Core/SipHash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�cJ>|Eqv0|bv�� ','ܟ�j�pe�M�N�?���a��Xi+!S�2','',0,'?'),('%;GH<�>�#�Z�W&@,','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/compose.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/compose.js',0,'_�n?�����߬ɥ�','_�n?�����߬ɥ�','Դ�Z�q��Vh?%�WI=\n<t��D�S�zRf.','',0,'?'),('%BE�A Y�$i���H\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isFinite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isFinite.js',0,'��93�&��uy�e�','��93�&��uy�e�','�P����!*a��[�B�*�/��!�}}�','',0,'?'),('%F�d�0dѴ�w�s�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/forIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/forIn.js',0,'6��<}`:X�^l����','6��<}`:X�^l����','2.�\Z\ZH�,_2��\Zs`��Q���n1w�O\Z+','',0,'?'),('%K#�=�}�=�2��6','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Elementor/ElementorWidgetsOptions.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Elementor/ElementorWidgetsOptions.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�S\r��`0�-\\����','l�i:l�Aչ &I�=�,sk:)����bS��','',0,'?'),('%S�%a��A��s���','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/array2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/array2.js',0,'�ϔ�72\Z!dL�cs�','�ϔ�72\Z!dL�cs�','$o�R��V�o�A/���W9��\n�0�G�G{','',0,'?'),('%[F-���!�:\Z�f�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',0,'��{��F����s','��{��F����s','��C�f��j�I\0�Q���nm�J��I*�','',0,'?'),('%^�@����\"�){;','wp-content/themes/mint/node_modules/htmlparser2/lib/WritableStream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/lib/WritableStream.js',0,'�?k+�U��\0�OR�7','�?k+�U��\0�OR�7','8A�!Hg^܅��W�O]���H�l9�CױMh','',0,'?'),('%i����gca�W�!q�','wp-includes/blocks/cover/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/cover/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Zm�ѝ�զ����V�','.����\'�0~�L(5\Zx���z��rO�H��','',0,'?'),('%k�L �ɯ`Y�P\"8b','wp-content/themes/mint/assets/vendor/jquery/src/dimensions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/dimensions.js',0,'Yf�z�c͛@X�|_�$�','Yf�z�c͛@X�|_�$�','�4��st� <ϐ�5��ۀ����֒X=','',0,'?'),('%wrxF�z�����','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php',0,'�*7סK��\r%���','�*7סK��\r%���','-�\Z�ڻ}Wޯ��s�l�g���/T9�w�7�','',0,'?'),('%{O�����_R�����','wp-includes/SimplePie/src/Source.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�*ˮ���̞���f�','5�[[�g�ID��;�V�q�J]HgR�uù�','',0,'?'),('%}D.L&㶮��H��','wp-content/themes/mint/node_modules/grunt-legacy-log/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/test/index.js',0,'DH\Z<�F,�i[�w��','DH\Z<�F,�i[�w��','���[(KR8?�p��Q�(R!�Ak���:�','',0,'?'),('% S� �l�4�M�G','wp-content/themes/pinnclonesmalltest/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php',0,'Y>���y��ӢC�g','Y>���y��ӢC�g','�vh��U�b,Fz<��2��ӫ�2�ՠrs�Xw','',0,'?'),('%��q�#��A���U��','wp-content/plugins/wordpress-seo/images/plugin_subscription.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/plugin_subscription.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����7�,�_p �','�o��盖�p�`�cR+ͽ�]<�\n�Pm�Z��','',0,'?'),('%��1N���e��L\r�','wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-delayed-stream-pause.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-delayed-stream-pause.js',0,'���,҂���kE�','���,҂���kE�','_��)\n�Ż���Ur`kqx�u����+C','',0,'?'),('%�:��^���Pδr�','wp-content/plugins/wp-optimize/includes/class-wp-optimize-install-or-update-notice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-install-or-update-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̟G;Z�O�!Y;n��','_x~��WZr�ѵ�HC �%#5d|o)/�|u','',0,'?'),('%���V�Ћ]��=w','wp-content/plugins/wordpress-seo/admin/class-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�mg/as�(���E<�','�a��c�7�0L\'}(�ﭷT�j��g�VS�%m|','',0,'?'),('%���[̂g�i��J','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/SubfolderTemplateFinder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/SubfolderTemplateFinder.php',0,'A�1�:>��7\n�jL','A�1�:>��7\n�jL','ס�X}tGM��i�v��F��.�3aX�t�YC��','',0,'?'),('%�^�bd�A���\ny','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/index.js',0,'����%X�����o�','����%X�����o�','8�j�d{��ge\Z���z��4�6�<�N�>�','',0,'?'),('%��B[�|ï1So �','wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/NullLogger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/NullLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����,$�j�B�','ʃ�����>�7KO��}�\"�H��sWÜ��x','',0,'?'),('%��\"�p�6:!�V�`D','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pad.js',0,'m��A�/⑪�T�b�','m��A�/⑪�T�b�','�&����-6?�Z�d�I��鵆{�J2��,o','',0,'?'),('%���9��\\ދ�','wp-admin/includes/class-wp-site-health-auto-updates.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-site-health-auto-updates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DNW��Wv\\�f�и�','�+��x|T.C9{�~y\0�T۩��\0�f�[�','',0,'?'),('%��|�-���X�2`JV','wp-admin/images/about-texture.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/about-texture.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0�m{oQ����KU','J>�\\ˌk~2����r!��!�ti+�\0�','',0,'?'),('%�B��q�IDJz�','wp-includes/html-api/class-wp-html-tag-processor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-tag-processor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R�SwY�^���&\nH','���K,�g�n�1ݹ؉���K�2h�\"��O','',0,'?'),('%�z��ԁoX�\Z L�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js',0,'p��r�k��>w%���7','p��r�k��>w%���7','ӄD>pH�T��Xb<3U1��׀:v\r�ϭ','',0,'?'),('%����8^�V<�t�','wp-admin/edit-tag-form.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/edit-tag-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u91��e̅�������D','vw�xE��U^(֣�}�E�.�ҟ���� l�b','',0,'?'),('%��\Z�3���q��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayBracketSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayBracketSpacingSniff.php',0,'��J�>W��v$��wA]','��J�>W��v$��wA]','��7X.��]6�Kw4���I��F-:�����','',0,'?'),('%�fW��� �P0�}+','wp-content/plugins/wordfence/modules/login-security/img/menu.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/img/menu.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p����]�j-����','8�����#̄(8��O�\"� +h\"Fb��','',0,'?'),('%:����G-f0ۙ','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/IdentityTranslator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/IdentityTranslator.php',0,'�i,�б�z?,eN�{','�i,�б�z?,eN�{','����:\Z���И���&LZ�S�H�B','',0,'?'),('%�Pb.��8�Gd�t�','wp-admin/css/media.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[ў�!�5�hl','��%�e��L�%�]��m]�d����$�)','',0,'?'),('%��v����A���aM','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpstan.neon','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpstan.neon',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=��A\'�Wl���8R�',';H��~��\n�fi]��ki\'���<]��Q\n��J+','',0,'?'),('%����҈�wA&�0','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/MessageFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L�|]��\Z�d��e�','FL��ϕ$�Z�^�����,�݊YwK�','',0,'?'),('%�@m4\n�¬u:�I��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lazy-cache/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lazy-cache/index.js',0,'@8��ش��~�6�`$�','@8��ش��~�6�`$�','���ʂ�P���ǤA��| ������6גc','',0,'?'),('%�OLU�oOI�R��B5','wp-content/themes/mint/node_modules/less/lib/less/tree/dimension.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/dimension.js',0,'�5�3\Z��A�A�`i�','�5�3\Z��A�A�`i�','�y�we�kB�,��m(�ԑ�(�:�Tx�<���','',0,'?'),('%����7>�t���!F','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isPlainObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isPlainObject.js',0,'h��-t\Z����k�$_','h��-t\Z����k�$_','3KB8�F���H\n��1��,�8FLn�,','',0,'?'),('%�Ҝ�W�NTߵ���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php',0,'yJ,���C�qrp��','yJ,���C�qrp��',';�Q�g�SC<��^x$H��=I\'�6L�(','',0,'?'),('%���µ����lk{ ','wp-content/plugins/wordpress-seo/src/editors/domain/seo/social.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/domain/seo/social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D`┦%\n�w_�','!|�Tr�Z � �~�T�v��EeG���8','',0,'?'),('%�`7������=Q���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/join.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/join.js',0,'!A���뎭D�A�x','!A���뎭D�A�x','x���|\Z�����^�\04��]~����/il�','',0,'?'),('%��d�f)\\�¨�-�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/index.js',0,'�P�^P�\'�Ė��g��','�P�^P�\'�Ė��g��','qn��P�y��1���m$TɾyP~��\'�','',0,'?'),('%�8g7��{&eŘ�J�','wp-content/themes/twentytwentyfive/patterns/hero-overlapped-book-cover-with-links.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/hero-overlapped-book-cover-with-links.php',0,'�}�����k�����X','�}�����k�����X','ݗ�뾄`:�UL��I����/��-�ǭА�','',0,'?'),('%��`��$�?.��s�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Info.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Info.php',0,'x`ѷV�O�]��$�n�b','x`ѷV�O�]��$�n�b','r�f,o+9۸�US4e�z�E�7���D{3���[','',0,'?'),('%���](2te��(�`K','wp-content/plugins/wordpress-seo/src/models/primary-term.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/models/primary-term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��|�����fP,�!�','Y��Г҂`�Q�$6G���OcWYGJ��/','',0,'?'),('%����i�2z��[ˢs','wp-content/plugins/wp-optimize/vendor/mrclay/minify/config-test.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/config-test.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��V��r�Bc)�7�','�h�]V����+_Ab��F��e~Q�H','',0,'?'),('&8Hӧ�+Xzi\n�','wp-content/plugins/wordpress-seo/js/dist/languages/tr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/tr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��P�[���g�\0�w�','xp���jB� 3��;pk1�\nq�W�0���H��','',0,'?'),('&�k�Kh��~<�q�','wp-content/plugins/wp-optimize/templates/settings/may-also-like.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/settings/may-also-like.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� \Zs-��Z�9B','̍���SjQS�GԳ{�b}K�-�DƳ�/v','',0,'?'),('&�H��&��o��[','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/remove.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/remove.js',0,'��)���\02ZRO9��','��)���\02ZRO9��','�\\*r����G���P�*8 �_<a)Rޥ��','',0,'?'),('&;n�|��4G��\rGv�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/firstChild.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/firstChild.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���FNk,�D���0��','����0�Ԥ�����ә�9���jk��4�y\0�','',0,'?'),('&�\'�`w��ƚ���','wp-includes/js/dist/patterns.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/patterns.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|&��vȂh����','�ъ3�e�b��OJ/a�Vz��T�C�_4��','',0,'?'),('&3��9Q&m��Oc�Q','wp-includes/blocks/post-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U�Y�E��y=���','��Fj�Td��X�r��\\���?tR��q��','',0,'?'),('&PDt�?5u�1Ym��','wp-content/plugins/wordfence/crypto/vendor/composer/installed.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Xy�~�X�����C�','�B�����:z��ʉ̂DPڒ��l�\Z��-|','',0,'?'),('&\ZR�#t����#O. �n','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Markdown.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Markdown.php',0,'��\"�Aju�ڐ-�^','��\"�Aju�ڐ-�^','t�s�v�<���^u��^�z��p2)�\Z��p�','',0,'?'),('&��Bg&���&4N;Q','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/ValidLogicalOperatorsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/ValidLogicalOperatorsSniff.php',0,'�-̇�߉�g�[��','�-̇�߉�g�[��','n@��Qh6�Xg7��K���R�X�q�NNu�5','',0,'?'),('& ;N���\\�f��3A_','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/runtime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/runtime.js',0,'��P�J|F�s','��P�J|F�s','$YJ/ 8��O(k� {:��Z��ʧ#w��c���','',0,'?'),('&(�M�9t/ޫ��[OIu','wp-content/themes/mint/assets/vendor/jquery/src/var/slice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/var/slice.js',0,'l��������N\'�','l��������N\'�','�]) ��v\"g�Oiߝ���K�^,x��7��$N\\','',0,'?'),('&)I���>\r&���','wp-content/themes/mint/node_modules/bower/lib/node_modules/buffers/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/buffers/index.js',0,'eG���$�\'z�9�','eG���$�\'z�9�','�T�xL��}���!���l.$ k���\'��h?�','',0,'?'),('&*���dĆָ� �H5','wp-admin/images/align-center.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/align-center.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �\Zݶ�4y�dY1�e�','�놽N3�X!��lj�h`�����hA]�J�','',0,'?'),('&.��������Tn{�7','wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/example/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/example/parse.js',0,'�� \\��C&\Z�M�c\"','�� \\��C&\Z�M�c\"','8�_�G�L]z����_\n�v���9�/�6ܺo','',0,'?'),('&0d�l\'u(��\n�n�','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-time_picker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-time_picker.php',0,'��m��Ÿs߬ED]','��m��Ÿs߬ED]','&\r��.��>7ݤ���y�r��͑����','',0,'?'),('&5^ ���A;�x6���','wp-content/themes/pinnclonesmalltest/vendor/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php',0,'�`��L�G{�WC��Y','�`��L�G{�WC��Y','��,��c�I�~0���,VƊ/Xz��<','',0,'?'),('&=\Z�+t�\"�/k\'\n','wp-includes/js/jquery/jquery.form.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery.form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@f4�-|9Y��','�2�M?k����U�����by${�PbV��!','',0,'?'),('&H��^������','wp-content/uploads/cache/4e84a1416a1dac2d323a0daf881497e5b79f4acc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/4e84a1416a1dac2d323a0daf881497e5b79f4acc.php',0,'u�E��>���b{%8��','u�E��>���b{%8��','�1Q�l�V�u��%�I�o��O[{XQ;nX\r\0I�M','',0,'?'),('&K��qu�E����nB','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-pt_PT.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-pt_PT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�=��%\"nV�z{O','�s���e�,d5�\0e>O�\0ϑ�\n�a�<$�#','',0,'?'),('&MBsz����u�]�LǮ','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/CsvFileLoaderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/CsvFileLoaderTest.php',0,'�g��n�QL�ο�|�;','�g��n�QL�ο�|�;','�c��N��h�j�T�\Z��7\r�T��r�f�8H','',0,'?'),('&MDf�U�ɋ���(�','wp-content/plugins/wordpress-seo/src/editors/framework/site/base-site-information.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/site/base-site-information.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��K�����\ZA���','A�%I\0�jQ�æ�N:�?�����I�n=���','',0,'?'),('&N�ٲ�&��>�SY��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/randBool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/randBool.js',0,'ч�T��8����2D�h','ч�T��8����2D�h','�r����i�*܋�65`�A��dݙ|�z��`�','',0,'?'),('&X��\nƗ�ҍ®�','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�+V%�b}P#���','�hEP~�gߪ�QR=[ն�k ֫���=a!;','',0,'?'),('&Ytltĸ�ĐB����','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Proxy/ProxyFactory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Proxy/ProxyFactory.php',0,'\0�&��й��)E�L9[','\0�&��й��)E�L9[','��YT��gY�;È5uCD�Nx��%8�ey��','',0,'?'),('&[W�-��o�5��','wp-content/themes/twentytwentyfive/patterns/heading-and-paragraph-with-image.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/heading-and-paragraph-with-image.php',0,'��PoO�m,�O���','��PoO�m,�O���','�e�����C�1���^q����_kI3����','',0,'?'),('&]�Q��\"�ޖ�\Z�MHC','wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&��W��Su��=B�','\nӦ�����%�}ői���>�(��D��/�4�','',0,'?'),('&ee�\n3K���vZ��','wp-admin/ms-delete-site.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/ms-delete-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@6(�ƭha�gyr�','���5��ijEoU�%���(�Wz�s�h�V�','',0,'?'),('&h`l7��ڜ��h��','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�ʑ�!e�v�\0�=�','Ql۹\ZKn�2�4�ү��E�j�=�0�B&','',0,'?'),('&k\0v_fcb��v�����','wp-includes/js/dist/format-library.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/format-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\7��3����@$��','�A-~^R���dMHj�控�_\'Қx�w�','',0,'?'),('&n���U��c�R+�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createBaseEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createBaseEach.js',0,'��+h�̸��Vb�','��+h�̸��Vb�','�|��+S7oH�y��o��Z��X�+B��','',0,'?'),('&s�R������X�<��','wp-includes/blocks/separator/theme.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��EO�c���m��{��','�/`i-^�3җ;�B��T�;����#\0�r�}:j','',0,'?'),('&t!0^g��bJ�c,>3','wp-admin/upload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�)�ҧ����\'P�','�@\"�3�l\0`#���*�l�uQ��*lM��7Oq','',0,'?'),('&u��`�9BB����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/some.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/some.js',0,'���Y$��P8Z1','���Y$��P8Z1','��`�)t��D��Z}��V��7� W;�myԢ','',0,'?'),('&~���~ee,�C\r�6','wp-content/plugins/wordpress-seo/css/dist/wpseo-dismissible-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/wpseo-dismissible-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�>7j�{�TC�/;g','�Ր�j)n�x?��!r�7���\Z��T�T���','',0,'?'),('&~�*m�E+nX�%;[O�','wp-includes/css/dist/block-library/common-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P}��=t�ڇ����n>','���{ ���s\0{�ӥ��\\�+4��4�\0��','',0,'?'),('&~���[oȑ\n�-�J','wp-content/themes/mint/node_modules/autoprefixer-core/lib/processor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/processor.js',0,'�{���e�&5� ��','�{���e�&5� ��','��}M-3\"�xpz!�Y��sXV��\nݱ�q�!G','',0,'?'),('&D���Q�R��w�]','wp-includes/sodium_compat/src/Core/ChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-r�jiI�أe�b','��b��E����&q�����*��������','',0,'?'),('&�+�~5p5Z<ŏ��','wp-content/cache/wpo-minify/tmp/js-eda73279.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-eda73279.js.transient',0,'�!��=����XB�Pdy','�!��=����XB�Pdy','��W�/�tןJI(�NB�(�Q<������,x','',0,'?'),('&�CP2�J�����\ZA�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-s3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-s3.js',0,'O�<�s���F\\m�_�]','O�<�s���F\\m�_�]','�\"W8���v�X�����V�\Z\' <��\\�؆��','',0,'?'),('&�f{Jc�ֻ��0(���','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php',0,'��+;�7Q��O����J','��+;�7Q��O����J',',��$� �5c�z��y9ap�&q^\'9�6 ','',0,'?'),('&��}<���\n���Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/error.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/error.js',0,'���+d{��oz�4\r�','���+d{��oz�4\r�','���y�\0��� 9H^�����E��^�ug�o�','',0,'?'),('&�j���V���n �?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/tough-cookie/lib/permuteDomain.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tough-cookie/lib/permuteDomain.js',0,'�j�\Zθ���o�#�aR','�j�\Zθ���o�#�aR','k�śY!ڍ��(E�E^―�.���㟐n','',0,'?'),('&���J��:-�V5��J�','wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ÁcP�-N��/`�W�','�J�,��c��{|�C���no2ShR�A�<','',0,'?'),('&��\n�B�b|l��~�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/EventFake.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/EventFake.php',0,'���ωiɌ\r�8�?','���ωiɌ\r�8�?','�Z��g��\nr��r���,b���i#','',0,'?'),('&�!U��Y9v-2�N�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isLength.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isLength.js',0,'�c^���9��z��','�c^���9��z��','yR�{B\0<���o�������\r�)1)','',0,'?'),('&��-6+l,�ĽW���','wp-content/themes/mint/node_modules/json-stringify-safe/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/json-stringify-safe/stringify.js',0,'�8��K�m&b1A��z�','�8��K�m&b1A��z�','�!��wzf\"_�6^�0b�4�k\n�9��F���n','',0,'?'),('&��E�@�d��e��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php',0,'��8��Sƥ�B�ȍh�','��8��Sƥ�B�ȍh�','<\nC���5�K�q�b^��u�_�<G�����C)','',0,'?'),('&���Rw?~�j�hJ�D','wp-includes/Text/Diff/Renderer/inline.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Text/Diff/Renderer/inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2��z;/Ï$m�','����x �2��E�����Z����μ','',0,'?'),('&��IN��O�u�^J','wp-content/plugins/gravityforms/fonts/gravityfont.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/fonts/gravityfont.svg',0,'@�J5w6cIj5�(�Fe','@�J5w6cIj5�(�Fe','G\n����T:�A���\'�TqT�MB�*N�G(�','',0,'?'),('&��5��C�\\�:�y','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-test.js',0,'^���L[����\r�\Z�U','^���L[����\r�\Z�U','�ou��ۺ}�#ۂhtǣ/����؟�m','',0,'?'),('&��]0W��\n)�=��','wp-includes/js/tinymce/plugins/directionality/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Er�HD��D��3��@','<����o�@�:����-�Eg���)6^Ѽ\'��','',0,'?'),('&��*R�{��y�3�','wp-content/themes/mint/node_modules/globule/test/globule_test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/globule/test/globule_test.js',0,'k)��|�5N3~ǜ� `','k)��|�5N3~ǜ� `','�/\Z}��k-����j�S^\n��JvoT��(�L','',0,'?'),('&� 7�h�z����^','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/InteractsWithTime.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/InteractsWithTime.php',0,'��1��qq��gO�Q�','��1��qq��gO�Q�','����M�-0���U���9��NU\Z��\n&�`','',0,'?'),('&�n�M��Rm_�Э��','wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Initialize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Initialize.php',0,'�=d̬ۚV.���]','�=d̬ۚV.���]','����Z`�ӎb�\"\0���<��.9��vA�','',0,'?'),('&��$�$�������','wp-content/plugins/wp-optimize/cache/class-wp-optimize-page-cache-preloader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/cache/class-wp-optimize-page-cache-preloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�mJ�v����0����','D����\\\'ق�gd\ri>q���F�̹ K8�','',0,'?'),('&�`�O�Q5�Q�43�','wp-admin/theme-editor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"m4Tͧ���S��','4X��@����/�9ܒ���fJ�\"�;^��]','',0,'?'),('&��� P�shcusS','wp-content/wflogs/attack-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/wflogs/attack-data.php',0,'#ح\n���y�Ib�\r�\r','#ح\n���y�Ib�\r�\r','l��4Eq�{���������\'wg�31�c�w:�','',0,'?'),('&��tQ\\�j`�q��Y�','wp-includes/blocks/categories/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/categories/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%��!�����\'�g','\'Ύ�s+n[����F<�0�@�^�T�@�k�','',0,'?'),('&�vA��Q��c��qw8,','wp-includes/theme-compat/header-embed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/theme-compat/header-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Omz8��F����','�����})d!q ,@,��j��v ����E���','',0,'?'),('&�o\n�~\r�a�Z`Ni:','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__construct.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__construct.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�DM�14\"&[O�X�`WL','��u]@+���`j\\Z�ٻ�h&�e���.0���','',0,'?'),('&�G�qvN�&\'��?��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Notifications/DeactivationModal.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Notifications/DeactivationModal.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','玻�����H��4]','F+p0\n�!�[,|�} ��ska�.Br�\Z�','',0,'?'),('&�HXºL&���','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/performance.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/performance.js',0,'��^�0E�V3��gΚ�','��^�0E�V3��gΚ�','����\0����(�e@�,S\'Bve�X���®�','',0,'?'),('&�[�\n�<N�~?���','wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-07.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-07.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����:�В��i��','�����L����r�[��-� �ܾ���p�\"','',0,'?'),('&今S��z�E��P��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseZipObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseZipObject.js',0,'�+�͞t���$���@b','�+�͞t���$���@b','7(���x��&�=�Z�H��w��Np\'YV�\'n�5��','',0,'?'),('&饱����W���|�','wp-includes/widgets/class-wp-widget-links.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#����F��>�X�nl','�쇉���,�x���-��DO�,��7ш�Q�','',0,'?'),('&�9��tf����\Z%*o','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/EmptyProperty.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/EmptyProperty.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S=�样��z�\nB&','�V�u�r�. H!\01 H:B�.���ݏ\"(�s','',0,'?'),('&�ٗ[zr`�%Ō','wp-content/plugins/akismet/_inc/fonts/inter.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/_inc/fonts/inter.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&W�D}��a#DHJ+��','��B�gaf�`�%2��)�!;\'pCg\0Ev�','',0,'?'),('&�S:,�\0Z�e�\0�?','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mapValues.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mapValues.js',0,'�DD[�Dփ�6�4f��','�DD[�Dփ�6�4f��','�H�p��3�(�����x��ta��|��:�','',0,'?'),('\'\0�0\'��E�=�$','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/workers-blobworkers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/workers-blobworkers.js',0,'(�������x�̨J<','(�������x�̨J<','}Ll�y�tB�<�֒:�ڧ�&��8�<_�[�Y�','',0,'?'),('\'\rr���r\'�2Du���','wp-includes/js/dist/commands.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/commands.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\,���v34�ۜ�','bH캆p0ԗ,�����Q���LUήh�����','',0,'?'),('\'�\Z�m/�+|�OQ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/valuesIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/valuesIn.js',0,'椟��W�`�KY��','椟��W�`�KY��','��+{p��~Cv11$�`���ݗꇄ�����@b','',0,'?'),('\'��b�\'��\\�V','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/CallableResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/CallableResolver.php',0,'��Ж�+�V,�e��6c','��Ж�+�V,�e��6c','x�ҟk�j~�rܚ���#ai=�j���k','',0,'?'),('\'1V���u��i�y�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/curry.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/curry.js',0,'Y�x[㕴KQm�U�','Y�x[㕴KQm�U�','ծ��0\r(�Y(�%�Xf6���0�4S�\'','',0,'?'),('\'y��Ƙ�\n�i�','wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-display.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-display.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�F�?+����K����','3I�G+���W8���X�w�\"��(l�\r��Cӄ','',0,'?'),('\'uhAC���l�PZ�*','wp-content/plugins/wp-migrate-db-pro/frontend/template/src/logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/template/src/logo.svg',0,']]��^�a\r�����',']]��^�a\r�����','d뫊ΜO��6�=�>66V4�ʂ����g','',0,'?'),('\'\Z6�a��K�c�U��y','wp-content/plugins/wordpress-seo/src/services/health-check/reports-trait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/reports-trait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��LEÁ�9�sW ��a','�(��_m[|�sQ3`d���e�U�T��$:���','',0,'?'),('\'�**JWe\'pu�/A@','wp-content/plugins/wp-optimize/includes/class-updraft-log-levels.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-log-levels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�;@����2���a','����iʅ�a!\\�\n��J�b�FR���=�','',0,'?'),('\'\"H��qQ\'�]� ��','wp-content/plugins/envira-gallery/src/Admin/LicenseCheck.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/LicenseCheck.php',0,'a�p�SV<�b?�C܁Q+','a�p�SV<�b?�C܁Q+','!��`�x���9�J5����7��Z�t:�/�','',0,'?'),('\')�\Z�Q�-p8�qv','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/constants.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���a\Z�\";�ð�,�','U2�>P%�{�B��9�k̽�i��','',0,'?'),('\'*Z�_���}��P���','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/helpers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/helpers.js',0,'��Ƨ#���_�%���','��Ƨ#���_�%���','ɠ��2Ӂ��9���g�W��WE�f��','',0,'?'),('\'1*�!�]KT�L��','wp-content/plugins/gravityforms/includes/trait-redirects-on-save.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/trait-redirects-on-save.php',0,'��f��a�N�Ԩo','��f��a�N�Ԩo','ȍ����*��CԦ�[�܌3���d�:��aL;','',0,'?'),('\'4��i��V�w�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseTimes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseTimes.js',0,'�7c\0*zaX+�@8!��','�7c\0*zaX+�@8!��','vp�j����ei���?��\\I30�ѯq�^','',0,'?'),('\'4���(�JŸ���','wp-content/plugins/wp-migrate-db-pro/class/Common/Error/HandleRemotePostError.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Error/HandleRemotePostError.php',0,'C\'�ȣz�@$�ѶxL�-','C\'�ȣz�@$�ѶxL�-','����\0�%H�f�N�4y-|,�}Æɗ9\n','',0,'?'),('\'6��Ѩ����p ��','wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�e�Gtsž����]','%J�\r%<� ٭�f�e!^n\'��^��6�B�','',0,'?'),('\'=!Za��a���jU�Q','wp-admin/css/site-icon.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/site-icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)�%ҍa$-x�����','#�FgA�a�౯������O�+Xz�s�VF�','',0,'?'),('\'>&�ߗ�T�[�vq�f','wp-content/themes/mint/functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/functions.php',0,'���@E��Xi}��@�','���@E��Xi}��@�','������0>���\'У\\�6�\0���N����','',0,'?'),('\'>�Q(έ�-N�XK�}Q','wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/browser.js',0,'��\r����>���=R','��\r����>���=R','a`TŊ�j�\\CG�i���Q��d�x�','',0,'?'),('\'Ac���, ~�6�ܦ�','wp-content/plugins/wordfence/views/onboarding/tour-overlay.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/onboarding/tour-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:��%� �);�\0','\Z��\'ġ맪���.s\'��sd�4�^��I','',0,'?'),('\'A�qD�m{W�^�H','wp-content/plugins/envira-gallery/src/Functions/ajax.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/ajax.php',0,'������x*�`�^�','������x*�`�^�','��[��W�jM���g�ꄯ\\�+#>�XP(','',0,'?'),('\'M��w����\rKj','wp-admin/includes/class-wp-site-icon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-site-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C� �.��kЛGcY��0','\"j�9��V�O�jڬ�Fd��F}EPj�l���','',0,'?'),('\'Q��{�4\\���?[','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/semver.browser.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/semver.browser.js.gz',0,',�>S��8��=���*',',�>S��8��=���*','��䊰[(VI�/�����&�G}S��','',0,'?'),('\'Vc�G�\r1-�xZt��','wp-content/themes/mint/node_modules/glob/test/root-nomount.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/glob/test/root-nomount.js',0,'=��ʏ�.�̋@�ac�','=��ʏ�.�̋@�ac�','r�|-��~���>.��汾�B�\n�\r����Xu','',0,'?'),('\'XTM��@�bB��Y','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/set.js',0,'�3W���D��� 9�','�3W���D��� 9�','�H�o��̻ ��0�8��v-\"H�h��=\0�.h','',0,'?'),('\'Z�EF\0V�q���\"Z�','wp-content/plugins/gravityforms/includes/config/class-gf-app-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/config/class-gf-app-config.php',0,'��2I0���|Ρ�^G\0','��2I0���|Ρ�^G\0','P[�z�;���\"�9��w���\\?b�y+���','',0,'?'),('\'`>T�T����%WLG\Z','wp-content/plugins/wp-optimize/templates/images/smush-details.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/images/smush-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���y��y�Gr��','#�+q%p��Zc�I�&t`wo�\n#�4��b�u\n','',0,'?'),('\'aj�\'*\Z��x\"�0�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Compiler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Compiler.php',0,'����d.QN٨9�u]','����d.QN٨9�u]','f~�w�ۜҿ{u���.<��{�/��','',0,'?'),('\'cw�x\n��[�0�� 8','wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/lib/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/lib/parse.js',0,'�\\�g#qM�P�W��(]','�\\�g#qM�P�W��(]','�j�Z��P�*K<Fu��-K|������I]����','',0,'?'),('\'e�F���M�+�+��','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/scoped.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/scoped.js',0,'x)�zwgW`|��8��','x)�zwgW`|��8��','��B���Ԧw�ʵS#[��G�*g@o2U̲','',0,'?'),('\'h���?�)Æ̡�Q�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/upCircle.01eb07ce.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/upCircle.01eb07ce.svg',0,'�������o-b��\\','�������o-b��\\','*��X��~r�!^dE�|���cC�ѡ&<q�f�z�','',0,'?'),('\'p�K��r��� �X_.�','wp-includes/class-wp-theme-json-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-theme-json-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fu��\0��=õ��v��','��GP�j�Q��6�Ӯ�����ִ���m�u','',0,'?'),('\'r�W!�oG4�2�k�','wp-content/themes/mint/node_modules/concat-stream/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/index.js',0,'���>���C`f�','���>���C`f�','GXGN.������\\�`�>�\rp@�o�l\r�Fw�','',0,'?'),('\'x�%y�\r��[��) �','wp-content/themes/mint/assets/vendor/jquery/src/css/hiddenVisibleSelectors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/css/hiddenVisibleSelectors.js',0,'���l~�sp� Z�\n ','���l~�sp� Z�\n ','^�0S]B�a����f0���aD_ߔӀ�fs�','',0,'?'),('\'{��\r���n\r�ܪ�','wp-content/themes/pinnclonesmalltest/app/controllers/app.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/app/controllers/app.php',0,'����.�`Y�3i�','����.�`Y�3i�','!����\0o�fU�)\0z�?\\Ϙ�%�������-�','',0,'?'),('\'����R,�EDH��L','wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-delayed-stream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-delayed-stream.js',0,'�A�ubA���\"�-Z�','�A�ubA���\"�-Z�','3��Z�GH�y���~��Q�K�tC�J��>P','',0,'?'),('\'�� �q�U�۾Ze���','wp-includes/Requests/src/Exception/Http/Status505.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status505.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\"ڱ���ʹ���_','�U4>�Lt�*��C�)S\0�~��;�A�R','',0,'?'),('\'��!����}�B�<E9','wp-content/themes/mint/node_modules/jshint/src/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/cli.js',0,'n&# �ћA��\\v�&#','n&# �ћA��\\v�&#','���}%(��)�*\r]+ϥYy�8np�\0\Z\0J�','',0,'?'),('\'���� �o���S��','wp-content/plugins/wordfence/images/icons/ajax3.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/ajax3.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mw�ߴtꍓ\'\n���s','�dz��\n�yK�Ʈ��\'#]�x VJR��.=:','',0,'?'),('\'���? Wº��h�-','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/index.js',0,'�sI�V��gE��D%','�sI�V��gE��D%','\'&�\n V��|y���>�<e��;�6���Y','',0,'?'),('\'���o\"�Dw$ M�z~','wp-content/plugins/wp-reviews-plugin-for-google/include/schema.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/include/schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѯn��$M�߳\' �W�s','jQ����<؏F�$�8K�B�TV�}��J\r','',0,'?'),('\'���m��wq��Ư��','wp-content/plugins/envira-gallery/assets/images/bnb-more-icon.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/bnb-more-icon.svg',0,'�\\X��O$zm,c��O','�\\X��O$zm,c��O','���/��]�P(��k���\n�;��x�\r���','',0,'?'),('\'��X4��RY��ѯ�z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/ui/baseUI.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/ui/baseUI.js',0,'le�Tʿn�p˹�z�','le�Tʿn�p˹�z�','�ϵ�\0��3��X�|��m����i7�y<','',0,'?'),('\'�\"z��n��p��aE','wp-content/plugins/akismet/views/enter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/views/enter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',��}��|�݂�m','$w��~�őt�- �P�����ElF��X��','',0,'?'),('\'�����u�L\'�I���!','wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/MediaFilesRemote.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/MediaFilesRemote.php',0,'�v�5�t랙<lecm�','�v�5�t랙<lecm�','�C��=�Ϣ�<q4^rGQE=d���=3�M','',0,'?'),('\'���c�1!��!�7','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-select.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-select.php',0,'&�8sa�l4k#�n~','&�8sa�l4k#�n~','<�niRŦx�-ߟ�_�/n��ծ�B�>��3��','',0,'?'),('\'�g|\"���jݹ2�','wp-includes/js/jquery/ui/effect-transfer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-transfer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P� ��_�X�\"*�','��g�\0m�_E9�7OM��9O(�wO�\'}_3�','',0,'?'),('\'����2a!����Ə�','wp-content/plugins/gravityforms/includes/license/class-gf-license-api-response-factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/license/class-gf-license-api-response-factory.php',0,'���� >i]}(�hye','���� >i]}(�hye',';_ ��:���Mis�3�jп�g�r���9���','',0,'?'),('\'��#���s�5��p�','wp-content/themes/mint/assets/vendor/modernizr/test/qunit/run-qunit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/qunit/run-qunit.js',0,'uQ����PRm �tl�\"','uQ����PRm �tl�\"','�g��u����N���\0�a~*l;��^���','',0,'?'),('\'���+}i�6V�^l�','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/examples/leaves.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/examples/leaves.js',0,'`����+qd�\r�4;�','`����+qd�\r�4;�','�FNA�6 \r�v^���\0>%x����Ci���s6:�,','',0,'?'),('\'��{\0������o];','wp-content/plugins/wordpress-seo/src/presenters/robots-txt-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/robots-txt-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�;5_�k�!�0add','��R�R\\w�}�n�khƳ�r�zo� N�\Z�7�H�0','',0,'?'),('\'�I����qpE','wp-content/plugins/wordpress-seo/inc/class-addon-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-addon-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Lx�@&Sf� _��','�RE�F�G�o��( DB�=j���Ō �>F���o�','',0,'?'),('\'�qWE&/�yU��','wp-content/plugins/wordpress-seo/src/presenters/open-graph/image-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/open-graph/image-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����fz����f+�E','�xt�9�9^BI��k�c��ᗀ� (����K','',0,'?'),('\'����� ��[���','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/runtime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/runtime.js',0,'CAI�\\�/jӷ��=�','CAI�\\�/jӷ��=�','��\0����8�~B����W����#�`Gʆ�','',0,'?'),('\'�.K9�0����Զ','wp-content/themes/twentytwentytwo/inc/patterns/hidden-404.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/hidden-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eܧ�8�n��M�d�','��LlX���*������8�H��$X^?�D�x','',0,'?'),('\'���_iYm1��R','wp-content/plugins/wordfence/views/scanner/scan-results.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/scan-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qxM!��\nB��+=L�',';�Oҥv���̉����� ����\n����','',0,'?'),('\'�+#.35��υ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/MAX_SAFE_INTEGER.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/MAX_SAFE_INTEGER.js',0,'����t��٘xb U','����t��٘xb U','��\ZIʈǑ��݃��H�Dx5� 2���C\0���','',0,'?'),('\'�~@�f��Ԗ�o6%y','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php',0,'XU+4]�\n�j��2`� ','XU+4]�\n�j��2`� ','s)Wg�>��\0����vw�@���C��e�ц','',0,'?'),('\'�4��+$�!4�x�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/MAX_INT.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/MAX_INT.js',0,'&�\ny�����*���6D','&�\ny�����*���6D','���d=b,��q�;��u�U�Ϩ��Ț��p�čH','',0,'?'),('(��q��h�l,K#��','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-output.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-output.php',0,'�\\**�F�uK]�W�v','�\\**�F�uK]�W�v','e)ox�qBs�F2c��Uf5�t�\\D�=2 ƿ�','',0,'?'),('(<�OTK�\\�T�X>��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php',0,'7�9Y�T(W���','7�9Y�T(W���','J���BL�H��GV����<q����`�dA','',0,'?'),('(��N<\\蜂��>�\r','wp-content/themes/mint/node_modules/defined/example/defined.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/defined/example/defined.js',0,'Df��(T����A���','Df��(T����A���','��h�~(�$���j��rQ�L���\rD�U�nd','',0,'?'),('(�_�0�s��;?�v','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitdata.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitdata.js',0,'f����bN|랥�X~','f����bN|랥�X~','�NA\r������(Ii�nj�O�Ǻjn\\IS','',0,'?'),('(\0Ouтu��U��','wp-content/plugins/wordpress-seo/src/deprecated/src/helpers/request-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/src/helpers/request-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�UCL�Sf�\n-?�','�o�����i9Q�QٕD�H��w�~��NΦ','',0,'?'),('(������v] W,O','wp-content/themes/mint/node_modules/hosted-git-info/git-host.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hosted-git-info/git-host.js',0,'��C���_�9�T4\\��','��C���_�9�T4\\��','�ZRO�=�fs;B;�]��1ЭK�\0gHhQh\nZ8','',0,'?'),('(|�A����sT��','wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/��Jf�d�j��ޙ�','0�>f���!�8iw<��(5�BL���į�maP','',0,'?'),('(��g%\0��4��l>��','wp-includes/js/jquery/jquery.schedule.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery.schedule.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&��T�k�f؞���','��?��vEʔ��wj���C�P՝��_��','',0,'?'),('(\"Ա�G���b#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mute-stream/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mute-stream/test/basic.js',0,'�q�[�dz[�,UW','�q�[�dz[�,UW','��a�5�\n�,�,+����c*���ü�N�','',0,'?'),('(%��T�M\"��_�','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/orgsTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/orgsTest.js',0,'�Ε�H�yF�,p��Z�','�Ε�H�yF�,p��Z�','�M9�rb���8���f(о����ރϖ���','',0,'?'),('(*�S�j�F�p�Y��','wp-includes/SimplePie/library/SimplePie/Cache/Redis.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Cache/Redis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M���\r�&g�@3�/','ZNj>���h��e�*`���]��$���:� ','',0,'?'),('(0�0k9Y����A��\Z','wp-includes/blocks/preformatted/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/preformatted/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�OoJ}[�����W��','��m���A-���`�8�� �P a�y�<�(��','',0,'?'),('(0���T�Ċ��G2Dc','wp-content/plugins/gravityforms/includes/settings/fields/class-select-custom.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-select-custom.php',0,'�@�V=�M�ًnD','�@�V=�M�ًnD','WK2��N��H�]>�5�ʿt�w�`u��a8��','',0,'?'),('(1��Ct�wt�2�?~','wp-content/plugins/wordpress-seo/js/dist/languages/cs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/cs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\0֟*�6B`��!��TS','�Ɩ/�?�]�R��|\"%0���D�D3��','',0,'?'),('(2��A$��Sa���ɺ','wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-login-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/wincher/wincher-login-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p���敻�1��y�','#�\n|�4Ꞃ#Mp��5��^��Hj��5w�}','',0,'?'),('(5����ʝ����r','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/findKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/findKey.js',0,'F����J�d��b\n+','F����J�d��b\n+','���\02�|��`^�ɑ��_�.V!�S�����','',0,'?'),('(7*��>��ғd','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/dist/lodash.underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/dist/lodash.underscore.js',0,'� ��ߝ��\n�','� ��ߝ��\n�','�Lg1�S�����S�s)!�)~u���#�I:','',0,'?'),('(:q�\"9��|�`W-��','wp-includes/SimplePie/src/XML/Declaration/Parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/XML/Declaration/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ԉ׀Yq�2\'��/�','DmN ��X7���y�{�YP `(��\n�_w�]��','',0,'?'),('(?���>��S�N揚�&','wp-includes/images/media/default.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-����I�B�h�@���b',':�oL�JDj�$->�i��\'�6n֠��Ui','',0,'?'),('(Cl�kQ�3�P2r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pullAllBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pullAllBy.js',0,'�d�b��<xlW��','�d�b��<xlW��','��9��^�/Wo�����J�Z!4Ծ�-\r1#|�','',0,'?'),('(H�1A�m!#ݐ�Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/time/parseMs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/time/parseMs.js',0,'��q��r�k5|�\Z��','��q��r�k5|�\Z��','*�����u�\0��/@WRy ���S��:�','',0,'?'),('(J}�#��/��o�Cb�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/cors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/cors.js',0,'euЦH\Z����X���','euЦH\Z����X���','���{T�}Gl\0��%�Y����j��=d^�O���','',0,'?'),('(R�f��s8<��','wp-content/plugins/gravityforms/includes/settings/fields/class-hidden.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-hidden.php',0,'����p��%�\0���','����p��%�\0���','�&��qu��L%�e����x��NRCa�*P�','',0,'?'),('(ST�H\Z~�\rB��m~U','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/ceil.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/ceil.js',0,'���U�5x��w�5�','���U�5x��w�5�','�2��a�j��<̿�j�R�$�R�9i','',0,'?'),('(WQ=3��y��b6','wp-includes/cache-compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/cache-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�#X�T��pPŊ:M','���`�a=�|�;�^ky�� 8u��G��6��','',0,'?'),('(W��0����a�(Ȥ9�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Coroutine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Coroutine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B*v\rc�%����ok�','��^��Y�\r�,ƿ4\"��B;��k?(\\��D/c','',0,'?'),('(X���\\��ǂY.�=','wp-content/themes/mint/node_modules/bower/lib/node_modules/statuses/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/statuses/index.js',0,'�9\'��w���]�Yo','�9\'��w���]�Yo','���8�nb�AC�\Z�a�am�-)T�-]�u�','',0,'?'),('([d��������BQ��','wp-admin/js/updates.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/updates.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Lʶ�fG���+Q1�~','{%��*iw�h�IQ�����b��`��q\"z�','',0,'?'),('(\\��H�:Q���','wp-content/themes/mint/node_modules/globule/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/globule/Gruntfile.js',0,'��yU�B�-�)M2K�','��yU�B�-�)M2K�','�Pg1������u&R��\\V��!��e/��','',0,'?'),('(]�3q��8�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/lib/_stream_passthrough.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/lib/_stream_passthrough.js',0,'=�5��^�nxX�I�\Z�','=�5��^�nxX�I�\Z�','�vu�9��F��a\0��ޞ�ى�|kח���o','',0,'?'),('(_�E\'�kG�M �Kz','wp-content/themes/mint/node_modules/glob/test/mark.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/glob/test/mark.js',0,',�q�U�mrF4շ�ء',',�q�U�mrF4շ�ء','��P�[j+5��P����L��5�-�$�}~','',0,'?'),('(l��օ+%�m���GI@','wp-includes/blocks/rss/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/rss/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,u�)���\'&,s�Q�','�>Qk�eG��<ӭ�Q������R�\"��I�B\Z','',0,'?'),('(o�;Vj�+`ڷ�\"E','wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/num.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/num.js',0,'<k��*�,�qy~(r?��','<k��*�,�qy~(r?��',')���%�Cˋ\"x�*��v����Tf^Έ��t','',0,'?'),('(x*J���,�LÛn�<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�w�`�`�|�}$G��','u�/2/����@�H�_Ilh����/�aU:� ','',0,'?'),('(~6vqV�0�{�\"','wp-includes/ID3/readme.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�bK~䮏】=C�l�','��5���+�P$+����ʨ��7�����e','',0,'?'),('(~g��8K5�ao�Q�','wp-content/themes/mint/node_modules/defined/test/def.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/defined/test/def.js',0,'~@ww�c:Q�\Z#��ah','~@ww�c:Q�\Z#��ah','�?��O�7�ϯb%�rZJ��@~_!�� &x�n','',0,'?'),('(���v|T�— ¥�','wp-admin/includes/screen.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@��m.Q��*�KI�','�%t�g�G���_! �_�@��G�','',0,'?'),('(�ոR��\"�PN;���}','wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/examples/multi_line.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/examples/multi_line.js',0,'<�}.��n����97\0�','<�}.��n����97\0�','y��յ;�E�$/��yA��W�W��UN�A�\nn','',0,'?'),('(�0Tz2�SߜB��(','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',0,'1�csD�h%�[p!�4\"','1�csD�h%�[p!�4\"','�;���<���EU%�Hw���D��D��ˋ��8T','',0,'?'),('(��(��~��T�jWϗ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isNative.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isNative.js',0,'�t�q�9�<$R�KerW�','�t�q�9�<$R�KerW�','$�J��n���������t�Y��_ۏ���','',0,'?'),('(�T�k|�k�sT��','wp-includes/blocks/post-author/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� �yj����1�','�j�T�3���4TS,/��܃¬^1=�R','',0,'?'),('(���\0#������S','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/ltrim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/ltrim.js',0,'��#���w,�:�I�ǐ','��#���w,�:�I�ǐ','�Y�\n֭��>\\�t\'�:p�1b� �FoѲNO','',0,'?'),('(�Y�\'��^kz!q����','wp-includes/js/dist/block-directory.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/block-directory.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��j]�(���d��M�',' =Nn��~g�� =r�1��D{���S�t�','',0,'?'),('(���>@�7�A�zm��T','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/unCamelCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/unCamelCase.js',0,'��s�h��T����r�{','��s�h��T����r�{','�+ZxH���z�+��b�`�[�\'B�ֺR�v','',0,'?'),('(�֫j&*i}�Ó-Td�','wp-content/plugins/gravityforms/includes/webapi/js/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/js/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('(���������f','wp-content/plugins/wordpress-seo/src/conditionals/third-party/translatepress-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/third-party/translatepress-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<�v��R�1��+�','��ަ}%�4��l������5�xP}��5p�','',0,'?'),('(���������t�eA�v','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/source-node.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/source-node.js',0,'�͖E�INc;���i','�͖E�INc;���i','����\r:%(���d��*�ɐ��8A�5����','',0,'?'),('(��R#���t�6�>','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/shuffle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/shuffle.js',0,'��Szz@�QC/�=4��','��Szz@�QC/�=4��','���?���kJI��gM������]\r~�d','',0,'?'),('(��Օ�)�(pwBl','wp-includes/js/dist/list-reusable-blocks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/list-reusable-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\n���p}��e�BP','Ja\r\0�g`vWȁ�EzĮ��E�Ύ}F+v���','',0,'?'),('(����͞�j�0�\r�','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Installer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Installer.php',0,'�-���R}ޠO)��','�-���R}ޠO)��','?�����xb�y[A��d�<F���Bαdz','',0,'?'),('(�|�Z�x�T���[�u','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z?��(��E�Wup�','�+���D�\0ej�\rg���ϧ��4�','',0,'?'),('(�#f@8u�^~4��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/autoInject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/autoInject.js',0,'!4�II:��=��p','!4�II:��=��p','���?��S��n��J\r?j\Z1�B�`[-I��','',0,'?'),('(���>f0\Zg[|���','wp-content/plugins/wordfence/lib/wfJWT.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfJWT.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}{ j�N���c�K�','0mhN`x�x~H�Lj�s����O��P��,','',0,'?'),('(Ð���o=S�kON�V','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/websockets-binary.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/websockets-binary.js',0,'�7w�\n���>`�-J��','�7w�\n���>`�-J��','��0�IE�;\0\\\\�h��+2H����ʟ�','',0,'?'),('(Ǣ�JO��%/�:�au$','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/notId.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/notId.js',0,'�1��l������N�','�1��l������N�','�Y\r�T\Z��8�x�h��.��)mԯe�\"q�`�','',0,'?'),('(�x��\'�}�[�Y���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseMap.js',0,'3����\rٸ�U�p�','3����\rٸ�U�p�','ZǾ`��үSͤ���2��i��Gp����RL�','',0,'?'),('(�H�P���P֍%','wp-content/themes/mint/node_modules/bower/lib/node_modules/center-align/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/center-align/index.js',0,'�S58u�k�(.e��','�S58u�k�(.e��','�q@�evy6���S� {7���7�|����','',0,'?'),('(ҍ�PmFg�%�00�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/curryRightN.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/curryRightN.js',0,'~uO\'�:����y�A�','~uO\'�:����y�A�','Ej�(Rc�O�Ui.���ʽ�R�\0���G���','',0,'?'),('(��[����x��SET�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue13.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue13.js',0,'�XC�l�p��j��t�','�XC�l�p��j��t�',']���W� ���f�z�~�g�Y3i��d<�T���','',0,'?'),('(��LS[��Wl#���','wp-includes/sodium_compat/src/Core32/Int64.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Х�x� ^�5��','H�3����y��&�k��3����}���:','',0,'?'),('(��s�3TN�o(�','wp-admin/images/freedom-1.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/freedom-1.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�9f\r��OJ\Z��]�','��eM���O����8\0\\\0�����7���','',0,'?'),('(�K�;�w�;%�1| ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/func.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/func.js',0,'�/�< �Ӯ�d8O�K�','�/�< �Ӯ�d8O�K�','z�3Gw�]�HߺxB��2�y�[�������\0*','',0,'?'),('(�U/>j�/S]\0��b#','wp-content/themes/mint/assets/vendor/bootstrap/js/modal.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/js/modal.js',0,'IY�3��&�~(\r�+��','IY�3��&�~(\r�+��','(`%#�aʵ8}������,�����F�EʽY��','',0,'?'),('(뮸;��\'C��2�q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/extendAllWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/extendAllWith.js',0,'\'<� 4�����R]�{','\'<� 4�����R]�{','4��֕�r>Ot���v;�(_Z\Zn:�d�R�\r','',0,'?'),('(�^�3N������3','wp-includes/wp-diff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/wp-diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"S���TG���0�^+','�r��o��fD��\\ )�\"��FIV�#���f�','',0,'?'),('(�\Z��՚�p�s_��','wp-content/plugins/wordpress-seo/src/integrations/admin/redirects-page-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/redirects-page-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?3%u�o��\0t�','e:���\"�P�5�uAg\"o���eZq`���7\r�','',0,'?'),('(�ZbcIJ��6p�\"$�','wp-content/plugins/wordpress-seo/src/helpers/options-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/options-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u������9�','��r�<}<�X�O�Ow5�o���u��Y!]Y','',0,'?'),('(���\'i��^���c�','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pi��R\"o�-/\r','��$s�E\'�m&h�����}[&����;X���','',0,'?'),('(�Wd>×EN�O�9S','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/module_dir.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/module_dir.js',0,'�<:��#z5��','�<:��#z5��','g�x^�i�W�~�#�&��d`\"��W�7�{A','',0,'?'),('(�o:7q��3\"O�з','wp-content/themes/pinnclonesmalltest/config/assets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/config/assets.php',0,'�.�j�c�Y�\"�4}�','�.�j�c�Y�\"�4}�','�\0�mb��C�捣3�����\0�X&\r��','',0,'?'),('(��w�^�ā�kV��','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-warning-alt.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-warning-alt.svg',0,'���\'�7t����l','���\'�7t����l','���3^��|+��)�nM� �d��e`','',0,'?'),(')ڢa�B�G��%:�|z','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/mapDelete.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/mapDelete.js',0,'�:��/B�O-���s','�:��/B�O-���s',']5]���j\"��V�δ=�ݻ�#�^�w`�B','',0,'?'),(')I�r<Q\Z����T�n','wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib.js',0,'�&������Z/','�&������Z/','2fM�i�F\'Lr�\"����n�\n>\02T%J�7QC2','',0,'?'),(')f����7�s&���','wp-content/plugins/wp-migrate-db-pro/class/Common/DryRun/DiffGroup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/DryRun/DiffGroup.php',0,'��;Q����κR�Z�','��;Q����κR�Z�','\\��Yn�?��|]0�\"�z{��l��6�2� �','',0,'?'),(')���� 0(���jf','wp-content/plugins/gravityforms/includes/orders/exporters/class-gf-save-entry-order-exporter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/orders/exporters/class-gf-save-entry-order-exporter.php',0,'w.h�Go�CL&�M��','w.h�Go�CL&�M��','ޞW�)����#oB�\\ѐ0��`�n�;O]��E','',0,'?'),(')#rl\'e�r��E^o�8','wp-includes/sodium_compat/src/Core/AES/Block.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/AES/Block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x���9g��1CC����','�� f�- ��֫�}e9��`�-�\'��i�3U','',0,'?'),(')\'hL휞�\rЀ^����','wp-includes/blocks/page-list/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8� �x�� ��vR<��','I�I�|{8�ʰ��$�N�i��0<&[�v�HV�^','',0,'?'),(')0�B�M�-����%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/before.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/before.js',0,'���9I/-P�ۙ*B','���9I/-P�ۙ*B','J߿���V�n�=�\\���YHZ-��1�[8(','',0,'?'),(')2�n4�c 2[.O[Dk','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/FileParser/AbstractFileParser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/FileParser/AbstractFileParser.php',0,'s��V�O�4-��s��','s��V�O�4-��s��','f�����_��l���Y�����t�`�b9�g�','',0,'?'),(')4n~�����\"�c�n','wp-content/themes/pinnclonesmalltest/app/setup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/app/setup.php',0,'��K�$���+4!8ؘa','��K�$���+4!8ؘa','9D����5�I��嶅jO��Ō�{ɭ,�j�','',0,'?'),(')4�9D�mpvQ\'��J0T','wp-content/themes/mint/node_modules/less/benchmark/less-benchmark.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/benchmark/less-benchmark.js',0,'����Q�o��͓~V�','����Q�o��͓~V�','���*w�#�GbE`Vnumq�ߴ���~+���F�','',0,'?'),('):ȥgb� ¢��','wp-content/themes/twentytwentyfive/patterns/template-archive-text-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-archive-text-blog.php',0,'���\rŀ�o\Z�\'?�','���\rŀ�o\Z�\'?�',']�Z�%\n-�Pjd���9�V�^l��','',0,'?'),(')<��Hg�Ұ��]e�,','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/DefinitionHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/DefinitionHelper.php',0,'��z�\\R�^_Fj����','��z�\\R�^_Fj����','\'*�ݕ�`��>�X�4)����c`�nO!�F?g1','',0,'?'),(')=��Tb����%��^s','wp-content/themes/pinnclonesmalltest/app/nav-walker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/app/nav-walker.php',0,'�tH|�ـb�M�%','�tH|�ـb�M�%','�b\n��\n,��\n��0(����e�0�\'ʹf���','',0,'?'),(')?�8\\V�Y\n�\0ͻ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/fromPairs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/fromPairs.js',0,'u��CV�2��\r\"Z�','u��CV�2��\r\"Z�','�}��~wD�_�{�8pqߌQ�$I�5���','',0,'?'),(')B�IT6;�\'T���h','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Events/ArtisanStarting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Events/ArtisanStarting.php',0,'NŷǒxK���5z�TW�','NŷǒxK���5z�TW�','�X8w�I��X��8�S�G̶�q�Q\Z��.','',0,'?'),(')FTj����CJc�G','wp-includes/blocks/image/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/mE�#J�?��n$�=�W','=��^���?� ~��G��TYo=Cƍ��殺','',0,'?'),(')F�{ ��G�CqL��=','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/MIN_INT.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/MIN_INT.js',0,'U��U�3P�����!','U��U�3P�����!','t��`��I��\0���h�db��S��/:�+��^�','',0,'?'),(')L� ֯z�t�lg��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/randHex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/randHex.js',0,'�Jv�0��VMyY��','�Jv�0��VMyY��','�\0���T�\r�)(̬��L��}��M9�C9','',0,'?'),(')NEy�ѩ����fH��','wp-content/themes/mint/assets/vendor/jquery/src/core/init.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/core/init.js',0,'�X�X��cA=�ܸ �_','�X�X��cA=�ܸ �_','\Z�ƫ�?�?`0�Y��_S�\"�^Y�����pl�','',0,'?'),(')R�y@f�^�״r~Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/flatten.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/flatten.js',0,'<�+b!*Q+ޗ���','<�+b!*Q+ޗ���','�6X�<����[d%z*\'bm�hsTm.\'�~϶j�','',0,'?'),(')Rᡠ_�_o��j݉�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isIndex.js',0,'s\'jd� ��e��\Z��','s\'jd� ��e��\Z��','���e���z��\nf��9�4�ǘ��8�j��Q8h[','',0,'?'),(')n?��M��u�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/padRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/padRight.js',0,'�^HlRAH=\Z��X�4','�^HlRAH=\Z��X�4','�\"�P~A{Q��;�����B��*�i���@','',0,'?'),(')x� ^��*�M�VW','wp-content/themes/mint/node_modules/promised-io/oauth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/oauth.js',0,'N[�����zc�=-���','N[�����zc�=-���','�~݉hw(�yA��cǔ�\r��b��%���0�@','',0,'?'),('){�jW-_�Q=?�GlҢ','wp-includes/media.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A2@bn^�f�LYY�','�TȑХ�����!C�u�f��.�ѭɋ�','',0,'?'),(')���a��}���\n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_nativeKeys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_nativeKeys.js',0,'�|-E�f�j�0��6','�|-E�f�j�0��6','w���boK�9�u��P�J�I��$�\\\n�~�<','',0,'?'),(')���&�`��&�X ���','wp-includes/js/dist/preferences-persistence.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/preferences-persistence.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;��-�H�Z�n\r�','I���*�9��ǧ�f�w]<\0t0�PTˁvW6Y�','',0,'?'),(')��B��i0d9���g','wp-content/plugins/wordpress-seo/src/editors/domain/seo/description.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/domain/seo/description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�ܦ��6��떇�',';�ea����C�r��a��\'�pU��U+\ZNk','',0,'?'),(')�3�\r��r-��ty','wp-includes/blocks/media-text/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/media-text/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� Y�νL��\\�r�','O�#i:�ţ����x�M33��P�\n�o��\0���','',0,'?'),(')�!~0ܑ\Z1����(%','wp-content/themes/mint/node_modules/less/tmp/browser/test-runner-main.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/tmp/browser/test-runner-main.html',0,'�.!�����m�(��o�','�.!�����m�(��o�','m���6�Q��V�>e����T1߷��2#�Qo^�?','',0,'?'),(')�ֱf��~{�G�','wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�./�.nh-��Xڂ�','\'KGԌ����`�6��9�&�%\0��M|\\�y','',0,'?'),(')��}<�xm�D0���Q','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-wysiwyg.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-wysiwyg.php',0,'�0�o�hW*��v�_V%','�0�o�hW*��v�_V%','=����ߍ�O��2Hi�fuFٖF�>���7G_�q','',0,'?'),(')�����T-�Wea�ۺ','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/readme.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/readme.js',0,'�4O�Ћlq�p[XI�','�4O�Ћlq�p[XI�','�kV�B�˶�<���l�ֵo�Yp��','',0,'?'),(')�7{\r);2i��+���','wp-includes/blocks/read-more/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/read-more/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����+�`���A��0','O;�/l:��kW��P�(�Q.����?q��)','',0,'?'),(')��A�~ˎb�Lng���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/pluck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/pluck.js',0,'�W����h��Hl�m','�W����h��Hl�m','*˿u�éC�w��`�,�j�P�y��j','',0,'?'),(')��C�O�� mֈ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createBaseFor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createBaseFor.js',0,'�ж�%ſCfN���','�ж�%ſCfN���','�\"��ύ��E��V���!�Ƙ6�\r����O','',0,'?'),(')������pKWΕ','wp-content/plugins/wp-migrate-db-pro/class/Common/Filesystem/RecursiveScanner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Filesystem/RecursiveScanner.php',0,'\rLX�q�,�u�3��','\rLX�q�,�u�3��','GLȋ�x$������X�v���\"�B-,�R','',0,'?'),(')�7��{Ux�����r�O','wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-field.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';���7�A�7�~C-��','.F5)�\rq��v�^�7d�|k�HLp���','',0,'?'),(')�[>���R���H9�','wp-content/themes/mint/node_modules/bower/lib/node_modules/unzip-response/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/unzip-response/index.js',0,'j�-Q/�F���=���','j�-Q/�F���=���','��%XO��|����8��\n5�','',0,'?'),(')�;���tV���n�','wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-elementor-post-types.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-elementor-post-types.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�\"�t�(2]�l��','6ܵ���&��`s��{�`�\ZO1���,����','',0,'?'),(')���T����\r�HX�G','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-mediaqueries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-mediaqueries.js',0,'2�Vʧ�p��~��`�','2�Vʧ�p��~��`�','y4H�EV�IOt�Lqm�/xΖ����z\\�m','',0,'?'),(')�*}��CC�VS','wp-content/plugins/wp-migrate-db-pro/vendor/composer/ClassLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/composer/ClassLoader.php',0,'�+��fq��(���4Ȯ','�+��fq��(���4Ȯ','�k(�\r(N�jj���\'�̣�6.�/���\'','',0,'?'),(')��3���C2��b�.','wp-includes/blocks/comments-pagination-numbers/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination-numbers/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǛA�1PúF.O;�','��B��Du�j�K� Ǡ�-�>^©\r�r�','',0,'?'),(')�Oz=�u����˷','wp-includes/rewrite.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��{v��19���S��','���h�d�}w��\nj��Go�!*k�b��M�{n','',0,'?'),(')�y��y�R��t�+} ','wp-content/plugins/envira-gallery/assets/js/min/settings-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/settings-min.js',0,':�D��\0<���qo',':�D��\0<���qo','%Y�!�4K�#F��s�{��*�\"���� ��','',0,'?'),(')�uIN~��$���*\"�','wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/test/runner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/test/runner.js',0,'o��q�\0A�a��\0','o��q�\0A�a��\0','NU�!�l�����Ô]�oH�Ι�u�+�%','',0,'?'),(')˃ݥ9�\"y�3��A','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/countBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/countBy.js',0,'+I���_��j�`Ie�','+I���_��j�`Ie�','�PU���>��RU�Aj���魜���F�K�','',0,'?'),(')̃�2�k�h���! ','wp-content/plugins/akismet/akismet.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�-s�9���d�K�-','��,�<��_��y�?�$�����9dN2��?','',0,'?'),(')�L=��c�W#~S�ѕa','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/error.58f4992a.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/error.58f4992a.svg',0,'{:9���o�ʘ�7�{','{:9���o�ʘ�7�{','��_�)�\0r�JQ&j�\"���� � ��#�F�','',0,'?'),(')щ-S�a��f3D���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/SemicolonSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/SemicolonSpacingSniff.php',0,'�W����dډ� S�3','�W����dډ� S�3','��5��41���y�?�ɴ�\'<�;빞`^#','',0,'?'),(')՛ڷ��2�I�0B��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/choice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/choice.js',0,'����4��[0�A_}','����4��[0�A_}','J�����i��\r\"�+J/��z���Ö��P���','',0,'?'),(')�6#�_��̟SAF�','wp-content/plugins/wordfence/views/scanner/issue-control-repair.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-control-repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�g��s� ���`V�','��j(���ؠ\r 緪���U+���.�d','',0,'?'),(')��W�UF�-���ؔ>�','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/admin.ajaxWatcher.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N����ů)������','�\'�v�ᦸ� =���\'X�k��<6YS�t�','',0,'?'),(')�:MT�{j��0�','wp-content/plugins/wordpress-seo/src/conditionals/woocommerce-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/woocommerce-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v�o�_��xz5I{','r�4S�E�`\r������0�@\\#��\rѝܓ�ED','',0,'?'),(')��]���Z$�P%','wp-includes/embed-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/embed-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�e�V��bӻ5=��','F��n<�7[zO��N��\Z��pE3@r�B0','',0,'?'),(')警�Q��Q�/Y�9','wp-includes/blocks/page-list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X~w�+�1U�j�X�','�?��=�BZ� r���Ӎ��A��Z�Ҿ�-','',0,'?'),(')�I�\nΆV���q��{','wp-admin/authorize-application.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/authorize-application.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&��l\"��Ȍ��h����','9�?sNV����d:O+\'(�j��\';�S�q�','',0,'?'),(')�M��h���Ϧ�','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/crafting-the-perfect-office-lighting-plan/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/crafting-the-perfect-office-lighting-plan/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),(')���@%�y$O[���','wp-content/plugins/gravityforms/includes/config/items/class-gf-config-legacy-check-multi.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/config/items/class-gf-config-legacy-check-multi.php',0,'��@)\n�_�u�\r�N�','��@)\n�_�u�\r�N�','g����y�����]kq>}`��ؚ}�l�','',0,'?'),(')��\"�P�ɵ����K�','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthorization.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthorization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Isf�RZ�Jq&ʕwh��','�hw.\\NC+��酟u��C��2J�ai4�=','',0,'?'),(')�`��f,��u�4��','wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�/���4gV��F�m','�3�\Z,\\\n5��)�f��\n�[�V�*Ka�8z','',0,'?'),('*�:��KW��v��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number.js',0,'U�v(�LS��v\'g���','U�v(�LS��v\'g���','�f\n���&,\rt�$\n:=��V`�S�>�uÿ','',0,'?'),('*��g�������H','wp-content/plugins/wordpress-seo/images/local_plugin_assistant.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/local_plugin_assistant.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�40�xl���Z,','��?w0�DN�ݡ�ir���$�*����:F��','',0,'?'),('*!}�u�TW��{�','wp-content/plugins/gravityforms/images/bullet.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/bullet.svg',0,'�v��j[�>�etข�','�v��j[�>�etข�','�yI�b����Ĵڭ1�q���n�b��Ea�s�]','',0,'?'),('*\Zd��\nGS(-E�.�','wp-content/themes/mint/node_modules/less/test/browser/runner-browser-options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-browser-options.js',0,'�mzq��\0�[��q$��','�mzq��\0�[��q$��','���ܵi�AW�C�q���uĦ?�WXK�I\\��j�','',0,'?'),('*5S�\'?���T\rM��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/times.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/times.js',0,'Fp� �F�m)�]��','Fp� �F�m)�]��','�6F��\n/4���Ue��N�l4�����\0����','',0,'?'),('* a�F���4��u�vU','wp-admin/images/menu-vs-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/menu-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�ZY<�i�Y��b�','\'��F�єE\0����7�ɡ��#�>sePض','',0,'?'),('*\'jVg�{�#��-�6��','wp-content/themes/mint/node_modules/cli/examples/glob.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/examples/glob.js',0,'Y� $)ip��I��d','Y� $)ip��I��d','.�}��a�*d����h�qg&;D�ȝ�','',0,'?'),('*.���p�����Yْ','wp-content/plugins/wp-optimize/templates/minify/analytics-settings-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/minify/analytics-settings-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3���K�9~���1�','Z4fǑ��^��6C���w�_��Th�;6���','',0,'?'),('*.��>A�3+���:�','wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/InvalidArgumentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}/�X5$�9��/�e',';��5b��G�S��B:e}�����!q|z�6�','',0,'?'),('*3��,�_W��q`r�_','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Report.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\��0:>K�p�','[��{�|�r�k{Г�/J\n˗�S{�3F�=�ް','',0,'?'),('*?�H��3��}b���\0�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php',0,'Ӟ�&$(g�o��~R','Ӟ�&$(g�o��~R','E����ө�pm�>x5p6��R�̷q��|�I�','',0,'?'),('*D�\\���V��πx�x�','wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/logic_description.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/logic_description.html',0,'mgM1uJhJ\04O�','mgM1uJhJ\04O�','i+�����v��ތ����jS�N:�\r�ζ��8','',0,'?'),('*H0ݰKb�Vq�\'�]','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Lines.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Lines.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{fj�Iw���F','���le&X4Z\Z$Js�(�_Y�^*\\�@]�','',0,'?'),('*L4����`A�,(�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/loadFile.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/loadFile.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�d���� �n�>�0]','���K��D]����JD\"#vC���(5��ţy�','',0,'?'),('*L��Z���x�_(�','wp-content/plugins/advanced-custom-fields-pro/lang/acf-zh_TW.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-zh_TW.l10n.php',0,'���������jU��','���������jU��','\\q������X����FC�:|G�X�\\*ٺe�u','',0,'?'),('*Tǚ�qG6��R��H�','wp-includes/blocks/site-logo/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-logo/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���N�X�M6�A\n','�#���ǜ{�;퍇鉧b���������\r�l','',0,'?'),('*V.XZ��_C[AԀ�C3','wp-includes/js/dist/keycodes.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/keycodes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�_I��*+�KɞC�','���.2��� kR^ =k�S��i}%m��Z�:�','',0,'?'),('*^�|J3Xl��c\rN}','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/interpolate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/interpolate.js',0,':A����\"���,�',':A����\"���,�','�4�%��IZ�x�������8\0��9�:u\"2','',0,'?'),('*`���깈%ֲ�� \n','wp-includes/js/dist/fields.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/fields.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!IUj(���\n�ao','��|.�B�#@�R�Y5�eW�0�ɀJ9����','',0,'?'),('*mTJQ7�ɬT�5��%','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/DependencyInjection/TranslationDumperPass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/DependencyInjection/TranslationDumperPass.php',0,':@�ڢ�\0��uS��%�',':@�ڢ�\0��uS��%�','0��3q$$���j�Y�Ϗ���1pe��r�EU','',0,'?'),('*z<`����,q��','wp-content/uploads/cache/3bd236a07720902e837f3cbec0b331e609cf49d7.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/3bd236a07720902e837f3cbec0b331e609cf49d7.php',0,'T��d�Rj\rz��F��','T��d�Rj\rz��F��','�$��5p�7��\nI��^��[�+�}','',0,'?'),('*�4 ��&ת[K�ZH)E','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.compat.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.compat.min.js',0,'�>}��WUn\'n�Rn��\'','�>}��WUn\'n�Rn��\'','Z��8�m#c�ZZQ��J��P�Hu�[Y��$','',0,'?'),('*�����>�R���q','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isNull.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isNull.js',0,'\Z�lv��_s���,rc','\Z�lv��_s���,rc','�0��v3��Ŷ��$�!��JN�����{�3�','',0,'?'),('*�*c���I�J�8N��2','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php',0,'�!l��\"� @� AQ�`','�!l��\"� @� AQ�`','�.:z����f�f���2�qZ�FX������','',0,'?'),('*�[�q�qF�i�pK�2','wp-content/themes/mint/node_modules/bower/lib/core/resolverFactory.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/resolverFactory.js',0,'~v����\rC��!e*h�','~v����\rC��!e*h�',']~��j�⟖H`�(�QL�����؇���','',0,'?'),('*���+X��W�r1]�%�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',0,'� ��Ќ~��^�F','� ��Ќ~��^�F','������(o8@�.z�۹ \n!q�66bp}�','',0,'?'),('*��\0�zx��\r�Lב�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowObEndFlushSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowObEndFlushSniff.php',0,',*_��y�t��c��9I�',',*_��y�t��c��9I�','��\r�J��ĦOsK��%;p@A�D�\Z','',0,'?'),('*��*�W8��5��2~','wp-includes/css/dist/reusable-blocks/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/reusable-blocks/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��N80)X��!��U�','~��،m�[��ϤhQJ�&��y�P�,3z','',0,'?'),('*��-��N��C','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-userselect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-userselect.js',0,'�0�i�#x4�-X�d<p','�0�i�#x4�-X�d<p','� (cMܗ⢥thV�wR.k�F\r=#,���','',0,'?'),('*��1�(��po$\Z+','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-file-async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-file-async.js',0,'��\r0��ȗ-\'�܌','��\r0��ȗ-\'�܌','�GUٞ��r� K���*��m}���b}P','',0,'?'),('*��}\0[!�]��m.�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/forEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/forEach.js',0,'^�2;^\r.jnz$\\.�C','^�2;^\r.jnz$\\.�C','W�U�J�_��<\r[^���B��T$�M��^','',0,'?'),('*��-3�u��E�[�O#','wp-includes/images/down_arrow-2x.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/down_arrow-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]����M�����f�','��w\0����qp�q�5���T�#�\\����','',0,'?'),('*��T�d�p`)\nƿ','wp-content/plugins/wordpress-seo/src/services/health-check/runner-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/runner-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P^���N�@�����','��>�/ɬRyZD����Iz?ꋧH�w\"��z�','',0,'?'),('*���CہSi�=-���[','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesEchos.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesEchos.php',0,'�| X.�G$�Y1V�.','�| X.�G$�Y1V�.','(cάyD�Ҷ��Eiq�x@a�f^�L�I��c','',0,'?'),('*ǫ�X8+P~ٳt!�٩','wp-content/themes/mint/node_modules/jsonify/lib/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jsonify/lib/stringify.js',0,'H���ӯ��}D��1','H���ӯ��}D��1','��D��7���]jf9sT�5&����a�Ȼ.�I','',0,'?'),('*������b��*ee�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x\\8z�M�~�.��','�vR�\0�S~[�\r��Ү6��o���:Ś�\r]','',0,'?'),('*ɤ5w�e�`�L���S','wp-content/plugins/gravityforms/includes/async/class-gf-notifications-processor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/async/class-gf-notifications-processor.php',0,'84����g�ٙCt�','84����g�ٙCt�','��~�/�^��NϚ\0�t�Y�Ik��� �','',0,'?'),('*ͥ��Л�=�s��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time/parseMs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time/parseMs.js',0,'�����;��[��6','�����;��[��6','p2�������/uf$�}\\(��n��a�ŷ!','',0,'?'),('*��g(�/��ȊH#','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/ror.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/ror.js',0,'_����{��j��7��:','_����{��j��7��:','��XV8�ӎ�W�������f\nt�}�\"ͩ/Q<','',0,'?'),('*��L�m&&2��\nb','wp-includes/js/tinymce/utils/form_utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/utils/form_utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';R�T���j�鍉�\n','��ꚅ��\r���g��H �K>�醶�%���2�','',0,'?'),('*�`U�z�]\"L%�1��','wp-includes/sodium_compat/src/Core32/HSalsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/Dzx��ǂ��','���,�����E���{��0/m�a�X�i���','',0,'?'),('*�>�\0�Z� R��L','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/templates/handler.js.tpl','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/templates/handler.js.tpl',0,'!y�\\\r�m��J^�|��','!y�\\\r�m��J^�|��','�q)T�3r�E�6 ���μ__P���c��','',0,'?'),('*Ղz�9�n�D�>E���','wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/QueueManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/QueueManager.php',0,'D@S�~�-��Z��j���','D@S�~�-��Z��j���',']Q<f����s�y����6^�a�`r�4��)','',0,'?'),('*�x���X��Wy\r�','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php',0,'��3f��S���\0','��3f��S���\0','W$KЂ\nGܢ+ی.\Z:�C:T�b..�Ռv��','',0,'?'),('*�u���������3�r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/node_path.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/node_path.js',0,':r��~\ZQ��u��ɧ��',':r��~\ZQ��u��ɧ��','�H�>��&?�M�n��2�%2L3D|$�A���','',0,'?'),('*ې,v�T� &��\\��','wp-content/themes/mint/node_modules/less/dist/less-1.7.5.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.7.5.min.js',0,'���|qF{`��APR(6','���|qF{`��APR(6','��L���ͮz��;�j��ƏyRͅ�����','',0,'?'),('*��ҥL.�$hw�ʶ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/chain.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/chain.js',0,'�P������y��','�P������y��','Rc��a�v��(2i�m�3��E=@�4�++0�ʢ','',0,'?'),('*�\Z07ѥ1O���َ8','wp-includes/js/json2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/json2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s��{N�|EO�0�','q3�..�j G\\R�nݼI/T��-�','',0,'?'),('*迟�\"%1�v��mM�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/i18n/en-US.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/i18n/en-US.js',0,'4��ő�K$\"','4��ő�K$\"','p �hj���x���&�4\r� �mX�-��u\'','',0,'?'),('*� �ą����\\�','wp-content/plugins/wordfence/views/options/option-toggled.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D�u�\nL������E','L8M��0�=�Y�kb���|59�b+�z:4','',0,'?'),('*��M��TMO�z$��','wp-content/cache/wpo-cache/juiceelectrical.co.nz/contact/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/contact/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('+x���R��%]G�-~z','wp-content/plugins/wp-optimize/css/wp-optimize-global.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/css/wp-optimize-global.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!��a��y��)�n�','^�[��T-��Y�H���5�/=�J���Lvi�','',0,'?'),('+v��nh�=����p','wp-content/themes/mint/node_modules/less/dist/less-1.7.0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.7.0.min.js',0,'�3Vl��)��GZ����','�3Vl��)��GZ����','��L,d��d��P��I./_d�W�J\"�N��6�','',0,'?'),('+�ަ�\r��x:����','wp-content/plugins/gravityforms/includes/assets/class-gf-style-asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/assets/class-gf-style-asset.php',0,'�=s\r���H\nUz�','�=s\r���H\nUz�','��:�q���\n٧5\rgM��S��� ����5�','',0,'?'),('++��j�>u\\y�=�','wp-content/themes/mint/node_modules/glob/glob.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/glob/glob.js',0,'�ͻ`�<���Ԧ~�','�ͻ`�<���Ԧ~�','�a��1����OREV�㪸d�,��f��{\'t�','',0,'?'),('+�(-V&S_2X7f�','wp-includes/blocks/paragraph/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/paragraph/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G2�\\QN��ռ�\n�Ht','Jdz�g\n��>��I��|-L�Ba?�,c���Π','',0,'?'),('+,����\"�#}JYo','wp-content/plugins/wordpress-seo/src/conditionals/wincher-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/wincher-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߣ��zf��9h�~��','H���`�1L=?,Zf4���]�\rE�յ$��-)n','',0,'?'),('+\Z#(���ƒ��v���','wp-includes/blocks/comment-template/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-template/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')m��Ktd;���xu�','�� E�2wb���\0R�I���*J0�黷ʼ�','',0,'?'),('+�z��a92\nX�\Z^','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-entry-properties.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-entry-properties.php',0,'^�b�M������tO','^�b�M������tO','Zy�fd=�n*����3v�\"6�\\gw*���̡W','',0,'?'),('+ >vm�>�)�\Z��','wp-content/plugins/wp-optimize/templates/database/tables.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/database/tables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Џ�J�&ǁ��s�','����_i )�B���ȿ�Gep��l�\\�C���','',0,'?'),('+!FjQ��C�ϊ+-','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post-type.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post-type.php',0,'z�����QQ�s�\r�','z�����QQ�s�\r�','KO�*T�H�y�\\D�b��Y�~��%%n҈�9�n;','',0,'?'),('+\"V�t�\n��Ph$#�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',0,'���Ṕ�����x�ǐ�','���Ṕ�����x�ǐ�','�D��mM�Y|�x\"<ALfp�x3�)�H\"�','',0,'?'),('+#`�ȑ�G�����','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php',0,'?�1:7�b^�K�s\r�','?�1:7�b^�K�s\r�',' q��}®�_o�T���z�|ߜ�m�@P�','',0,'?'),('+$p������^1���2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_metaMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_metaMap.js',0,'��\"/IÔM��3','��\"/IÔM��3','��x��,��$�1>&k0ЩԚ��s!Da��','',0,'?'),('+$��*��}�~�UY�_','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-pool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-pool.js',0,'�⃭V�u��\r\'�\Z ','�⃭V�u��\r\'�\Z ','�7�N�W�M}ݬ��uJ�ء��Xwd�M!Y��','',0,'?'),('+9���[BU�E�e','wp-admin/js/updates.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/updates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�pr�|^7d�z=u','�FP���Nh�/�V��EX˔\n�{����','',0,'?'),('+:�`L0f�ϛ�\"Yc3�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/MemberVarScopeSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/MemberVarScopeSniff.php',0,'����)č)�S�v�','����)č)�S�v�','��\"|���:��\ZE2^m.��k9�u','',0,'?'),('+AK\0�X\"��$�n5�','wp-content/plugins/wordpress-seo/packages/js/images/Yoast_icon_kader.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/Yoast_icon_kader.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���B���ѕ�w� C','�\\���痎<\r遷���%_�8��[ެF�W�','',0,'?'),('+C���z?5���[�6','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/ui/prompt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/ui/prompt.js',0,'7���_��#U\0_x�','7���_��#U\0_x�','�۽��(\00��U��P��qj���� �&l','',0,'?'),('+Jwܣ%�ȟ�y��.�','wp-content/themes/twentytwentyfive/patterns/page-link-in-bio-wide-margins.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/page-link-in-bio-wide-margins.php',0,'}^��?��� �ƚ/','}^��?��� �ƚ/','n!�o7>[�UGnKT;a(���d�|M�m�0�i','',0,'?'),('+Rn���>W���p�>�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseInverter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseInverter.js',0,'`[%����Sr�Fw-','`[%����Sr�Fw-','�\'&p_@�v\r�-���={O�6�@�Q�;���','',0,'?'),('+TY�;���5��)','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-backup-database.c3c73850.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-backup-database.c3c73850.svg',0,'��\"�^����,:E��','��\"�^����,:E��',' �>�Ы���(XE�\r)Ѽh��-��us���','',0,'?'),('+Wڍ��b/���Z\Z','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`L��U��#�R���1�','��,���ޢ��x�Ҙߨ1�GFz�[��+-ph','',0,'?'),('+_���q�\Zo�� 9','wp-content/themes/mint/node_modules/faye-websocket/examples/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/examples/server.js',0,'$��b_�������;�','$��b_�������;�','t�2(J�ޭR��C6����QI�=��3���<','',0,'?'),('+a\'w�K\r$Y�WF','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/orderBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/orderBy.js',0,'6F=\'�ը���0;�%�\"','6F=\'�ը���0;�%�\"','0���9�Ge�yB8m�����,�!uz���n','',0,'?'),('+c0\r�aSD�S9�&�\Z','wp-content/themes/mint/node_modules/less/dist/less-1.4.0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.4.0.min.js',0,'�d�\n�B���}˝-f6','�d�\n�B���}˝-f6','bJQ/Ep�q��o|Rj��]�lu��j���','',0,'?'),('+d��<�E|�S��`','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b%�4svݏ��֭a�','u��\0��[.�a-p[�M�)���q�C�#','',0,'?'),('+e�?Ȟ�؛]��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowMultipleAssignmentsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowMultipleAssignmentsSniff.php',0,'�|�64���҉','�|�64���҉','�@�=lf��[��JN�N�����~�#S��)�','',0,'?'),('+j�8~�����/ O','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php',0,'1��1a�Ne}��[�8','1��1a�Ne}��[�8','֣����4�z�f�o�e��~��ѻ��i�','',0,'?'),('+oq�X!��N6|-~h�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/intersectionBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/intersectionBy.js',0,'�7���A���[��/�','�7���A���[��/�','r��,�O�?KM��\ZT`�x�6�V?�<�^����','',0,'?'),('+��Y�V��]���','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/MessageSelectorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/MessageSelectorTest.php',0,'Fm����2��@�x�M','Fm����2��@�x�M',',wh�~?oM��aN)4T���I�d�b#�','',0,'?'),('+��<��Rb0��\Z��','wp-content/themes/mint/node_modules/shelljs/src/chmod.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/chmod.js',0,'1u\'Ti)�s+�y]�`','1u\'Ti)�s+�y]�`','�$#�*!�ҥ_�N��j0�����9��/��h','',0,'?'),('+��V=�82qhX��^','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/test/gtr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/test/gtr.js',0,'0ؼ��Jﻆ�p��� �','0ؼ��Jﻆ�p��� �','uvP�� �:�}3+�4/�o>�W�p:','',0,'?'),('+����f=T�U��','wp-includes/SimplePie/library/SimplePie/Locator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JioA��H_z-w�*G','��m�ܯL�چ$>��:�[�f�ԑ���','',0,'?'),('+���?�����d��Ѡ','wp-content/plugins/soil/src/NavWalker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/src/NavWalker.php',0,'�x8�;�A�t��t�','�x8�;�A�t��t�','��P%��`�F�IJ\n���deZ�A���{8�Z�|�','',0,'?'),('+�v���Z#>�:��Kn','wp-content/themes/mint/node_modules/findup-sync/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/Gruntfile.js',0,'��M>�W:�iN�ҝJ','��M>�W:�iN�ҝJ','��ք��q-#�~�k���{� �<�(2Ѕ��','',0,'?'),('+��G*#���f�','wp-admin/network/site-info.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U�Ln���ԠsN�','A\0�ü�KL�130��T\Zw4U^>�c$�N','',0,'?'),('+�\ZD���Ze}��','wp-content/plugins/wordfence/views/onboarding/plugin-header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/onboarding/plugin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6EiXl����(%A�\\�a','��PRl��ՙ��g��\\�@��EMY�s\0��','',0,'?'),('+��Hj~�����','wp-includes/blocks/read-more/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/read-more/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�\\�\n��u\"��ʵ\\�t','��B��)�N�ӑ�4��T >4$9��m+�','',0,'?'),('+�Jp�] �\Z7Єf�&j','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isFunction.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isFunction.js',0,'y�E��9�?�)���','y�E��9�?�)���','���O,�q[�����_�u���/���h��','',0,'?'),('+��t�%R?������','wp-admin/network/credits.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�+���KVe�=�','WN��h�K2Z�F��W���\r08���J5','',0,'?'),('+�1U��1����Կ���','wp-content/plugins/wordpress-seo/css/dist/yst_plugin_tools-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/yst_plugin_tools-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y2�I�8�N\"0=���','[�e������C\"\077���]�-I�MyUm�r','',0,'?'),('+�b����I=qY��','wp-includes/blocks/freeform/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/freeform/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�D�J�Xt9f���@�','г�v$<P!�ݟ�jH\n�^\0v\r�9q�(��','',0,'?'),('+�ޥ�!��l���G<#','wp-content/themes/pinnclonesmalltest/vendor/symfony/polyfill-mbstring/Mbstring.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/polyfill-mbstring/Mbstring.php',0,'��a��UQ0v�$k�','��a��UQ0v�$k�',',���S�o(pK�+��T?,��?)�~!���:','',0,'?'),('+�?������_���Z�','wp-content/plugins/wp-reviews-plugin-for-google/static/img/trustindex-sign-logo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/trustindex-sign-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{�.b�}!��x]�N','��`�q��;(�\\\"�@�reƺ;-��mpO��F','',0,'?'),('+��wn��y�i�rD�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php',0,'��0�ލ���|���','��0�ލ���|���','���%�Y�þ�\"7�S�p�d�ay.\Z��b|T','',0,'?'),('+ۿ_ �`����:1d','wp-content/themes/mint/node_modules/uglify-js/lib/sourcemap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/lib/sourcemap.js',0,'6`�&�ń����D�p','6`�&�ń����D�p','�+��Ad hG1[��L��������1�m�','',0,'?'),('+�˘� �ZjTI����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_shortOut.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_shortOut.js',0,'.�c��A�Xɽ�A��ǎ','.�c��A�Xɽ�A��ǎ','}�Ownf�~��N95�H�4;������c�','',0,'?'),('+ަkUX���E����h','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-meta-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-post-meta-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�߾�n��E�>�E���','��`�&?�Ş6����.�Y%8ӹFt���','',0,'?'),('+�G�%�`����','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/inquirer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/inquirer.js',0,'�kkg�wO�(��Oz$','�kkg�wO�(��Oz$','|��[���>zg�`\0S��R%�U�Z�ֱ���','',0,'?'),('+�\Z�+˪�\'n�k�','wp-content/plugins/wordpress-seo/src/helpers/score-icon-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/score-icon-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bt��Cr��lQͺ��',' \0����`U�g$�4���x�u�·�k�l/c','',0,'?'),('+�tIA��ʢ��/y�Pp','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-lastchild.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-lastchild.js',0,'o�K���Q�<BQY�','o�K���Q�<BQY�','�6�۽�e ���ߑSןCH��t#�4Z�','',0,'?'),('+��<�[!��k�G','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toLower.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toLower.js',0,'ॊ�ͨc7y#k�!','ॊ�ͨc7y#k�!','Å@���7lpNX�g�QH�\Ze�L֒%��Ϧ�/','',0,'?'),('+��HaF,\r��O>|�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/previousSibling.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/previousSibling.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�M�G�t��]�M','��Ͷ�^0Adr�f-��m���LЁ=:W���I�k','',0,'?'),(',�`\'~_������','wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/dist/lodash.underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/dist/lodash.underscore.js',0,'� ��ߝ��\n�','� ��ߝ��\n�','�Lg1�S�����S�s)!�)~u���#�I:','',0,'?'),(',�\Z�J\'�AWh��','wp-content/plugins/wordfence/views/options/option-label.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'`������a��� ��','�����y���DFR#\\\\F/��G%RY��x!�B6a','',0,'?'),(',�\\�@��M�M{�(Q','wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-input.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-input.min.js',0,'5ue&}��f���<�u�(','5ue&}��f���<�u�(','2&p��_�Ex��^3Κ���6���y^\0t��\0�M','',0,'?'),(',\r��>�����!e�','wp-content/plugins/wp-reviews-plugin-for-google/static/img/nfc-card-sm.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/nfc-card-sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v���k`(�3,�QU�','k�DV����}�nE(%ӧ��<?�*x��BFX�c\r','',0,'?'),(',8Ф��yR�h�','wp-content/plugins/wordpress-seo/js/dist/externals/analysisReport.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/analysisReport.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ���j�C�U�>��`','j�灨 _5�`g���Pґ:bF��,�N��&p','',0,'?'),(',���E���mqB�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceSet.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceSet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CJu���dY�����Z�','00z��݉E���|w�!��\"�Kȁ����dX','',0,'?'),(',ke���\r͊W�>�*','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/countSteps.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/countSteps.js',0,'�C��s�_kԭ{(<=_�','�C��s�_kԭ{(<=_�','� �8x�\'y�@h\Z���xw�C�p$Sp�Tk�','',0,'?'),(', �=�~�?�V���0e','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-diff/node_modules/semver/semver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-diff/node_modules/semver/semver.js',0,'��g��\"��k�C��','��g��\"��k�C��','E��kұOP.r�n,3\n�F����p�fC�;)��','',0,'?'),(',%p;�,�����ꍓ','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-checkbox.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-checkbox.svg',0,'��&=\n�p��=���','��&=\n�p��=���','f���+;G��0��75bp�<Y?B$���M\Z','',0,'?'),(',5K\'���=9:j%?','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseClamp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseClamp.js',0,'��\"/��c��Y��','��\"/��c��Y��','�BU��YW#��ZBh�.�P�-d\"as�+>�>4','',0,'?'),(',8*I����&u�^�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/800.e69dbe829c57.chunk.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/800.e69dbe829c57.chunk.js',0,'��Z����>ы7�c','��Z����>ы7�c','��8� ��i7� �0�\n:)�@���B�F`����','',0,'?'),(',86�>���d�;�c5','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/ProcessBuilder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/ProcessBuilder.php',0,'��Y��Է]�[��:�$','��Y��Է]�[��:�$','|މb٥����e7�Đ��+l����)3�m�\n','',0,'?'),(',9�,G�\n(��(`̊Q','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t��%��`\Z[','<�!n�Lj�_���Aze}ȼ�A+�/��Ou\"','',0,'?'),(',<��HQ�W�� �qd9','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-taxonomies.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-taxonomies.svg',0,'=�̢��\"zfs+Mx�r','=�̢��\"zfs+Mx�r','����;�׳�����6���0��% _�','',0,'?'),(',<�� �?C]�0A�','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ͷ���U裦�h�','��ehӧ�&έ��A�3�+WTh��\n\Z)�?��','',0,'?'),(',Dxtav#���<�;E','wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W����&hE5�Ox��','1\r��*�h\\��B�o���B�}��_��XD7','',0,'?'),(',G4�F�\\�*����X','wp-content/plugins/wordpress-seo/packages/js/images/star-rating-star.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/star-rating-star.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'(���A��fpH�',' ��e�~a���EJ<WV��b.$x��*�/l�','',0,'?'),(',Ip��U�w�b��A@#','wp-includes/blocks/spacer/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/spacer/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���6��4�g1�)��b','�SWl�i�\"k�0�M��L�[��T�����','',0,'?'),(',P\0�uj� ny���3�\n','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Exception.php',0,'\0�@�-~U)=��','\0�@�-~U)=��','�Y��\rhh�Ŝ��0)�\nϵ��E�o_��l��','',0,'?'),(',R��q�=L�V&���','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8�6������=�R','�>��A��#wݞL�C%Y�O�KY��� ��!M','',0,'?'),(',R�3Z�9�i�G���','wp-includes/blocks/search/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/search/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��O�1f43���Ѽ_0','}+��{Ȗ19�D\0W0�S�(\0��sj(�%%�p�','',0,'?'),(',S���n��t5�y�','wp-content/themes/mint/node_modules/signal-exit/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/signal-exit/index.js',0,'��1�ɨCc�m�v;��','��1�ɨCc�m�v;��','���7�B���\n�ZT�)����Tdd�x$�','',0,'?'),(',S��X�叧�\n���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isNumber.js',0,'�r��w}@p�4��z','�r��w}@p�4��z','��纰���\r��˄�-����¸v��','',0,'?'),(',]\'N�%ݑUeT���)','wp-includes/js/dist/annotations.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/annotations.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���m9U�`���','�\\�v;�=;�cg���\Z]��ӯ����rc��q','',0,'?'),(',dNe�8�����\"�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�o�-\0H����p�}','8l�\ZRMA���+`1�r��OJC�ǚ��2�)�','',0,'?'),(',f8q�s3��wt��','wp-content/themes/mint/node_modules/source-map/lib/source-map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/lib/source-map.js',0,'�ntyr���kxE�\Zm�\r','�ntyr���kxE�\Zm�\r','���d\Zbd<G� i����0}�zL�Y�8��;��','',0,'?'),(',h��^【+�_&��','wp-includes/blocks/comments/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Н�#�ѐ\n�l���','�vwA����*N�`�6.�ai�>\rZ \04h�}�X','',0,'?'),(',hՏ˗�e�~L����','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q>ia�-�#�����','{��;�JC��,�|{V�_����ˢG/��','',0,'?'),(',q�B\"im�e��O�','wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Module/Parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Module/Parser.php',0,'���&�%�hF(�G�','���&�%�hF(�G�','{o�s`�ic?ρ����]I\r��OΟ��c�p','',0,'?'),(',z�e��Y#uJ~[P\r','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' OpR{�ҵ��Gݍ�','�Y��:B���P5M��s_�����.ن�֎�','',0,'?'),(',���|貹�W�~','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/cloneWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/cloneWith.js',0,'�J��v���*wg!','�J��v���*wg!','�{��\'�S������X��~v\"�(&���f�','',0,'?'),(',���@��hj�qrޒ�','wp-includes/ID3/module.tag.id3v2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/module.tag.id3v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&&�<�����~}1','G>A����0�D��4���\Zߦ5�S9h��','',0,'?'),(',�M���*��5�J�#','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/endsWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/endsWith.js',0,'�|��+m�J�IX�','�|��+m�J�IX�','5�`cs�h�$��+/Mx����M���f�E','',0,'?'),(',��e�H�hu�R�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isFunction.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isFunction.js',0,'˩�4$�@q�\rө�\Z','˩�4$�@q�\rө�\Z','� �z}\'YFֳ���)j�\"�sO�O��� \n3','',0,'?'),(',�|��p�W��Z\n','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/index.js',0,'U)9`��\"�����v�','U)9`��\"�����v�','�e���a����6��w8�\rқ�LQ ��[�','',0,'?'),(',�d(F��-��3��','wp-content/themes/mint/node_modules/pako/dist/pako_inflate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/dist/pako_inflate.js',0,'E+�jS�J���e����','E+�jS�J���e����','-�{V�}D�-;����x4����6����','',0,'?'),(',��ʄ}�z��U��','wp-content/plugins/wordpress-seo/src/presenters/webmaster/google-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/webmaster/google-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�\'#����µ�u_','2��d�e;��piM<�ı�9~���7�&V]m�','',0,'?'),(',�&\'1��b#����e�','wp-content/plugins/envira-gallery/assets/js/envira-gutenberg.js.map','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/envira-gutenberg.js.map',0,'\0���jR�PvO�b�','\0���jR�PvO�b�',':\"��81�ˆ�����(�p�F�03�Ak�����','',0,'?'),(',�8P�Gם�\'��}^�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/totalDaysInMonth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/totalDaysInMonth.js',0,'�M�{ϙ�<m�O\0#','�M�{ϙ�<m�O\0#','=���3��2�}?5�i��º�#n3��m��^','',0,'?'),(',��8��%_ �1�֚','wp-content/themes/mint/node_modules/argparse/node_modules/underscore.string/foo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/node_modules/underscore.string/foo.js',0,'/���%��^d�_i�&��','/���%��^d�_i�&��','��*��\"�n�Ν>0�o���{?�N�Y-�','',0,'?'),(',�����;\n�Cfg�f3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/opn/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/opn/index.js',0,'�JU����̹���%','�JU����̹���%','X]?��8���\"A]�띦Y�Wi,4e��Q','',0,'?'),(',�#��ih���xa�r','wp-content/plugins/wp-optimize/templates/admin-page-header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/admin-page-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�e�� c���P�8��','�?��*\"Z�?J%���|�.�L�k�Ү#6�ї','',0,'?'),(',�zw}�t�R�-�$z�\n','wp-content/themes/mint/node_modules/tape/test/plan_optional.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/plan_optional.js',0,'H<([�)��G@i\"��_','H<([�)��G@i\"��_','��=����I����ɛ�e�*�k�^���','',0,'?'),(',�6J�Zn��P�If��','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/js/central.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/js/central.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}.|�C�&/U��|8���','伭��jx�$�P$���ʠ�B�AUO','',0,'?'),(',�iLv�o �`�3A','wp-content/plugins/gravityforms/js/shortcode-ui.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/shortcode-ui.min.js',0,'�T��t��xo���','�T��t��xo���','~$��t��������c�ĄC9���,L���','',0,'?'),(',�T4mF7\\-E�\0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayMap.js',0,'�~���x7��-�F�_','�~���x7��-�F�_','�6=n������K^�\rᧉx���B���+��','',0,'?'),(',����z��=y���','wp-content/plugins/envira-gallery/assets/js/lib/min/envirabox-media-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/min/envirabox-media-min.js',0,'y*�RIr�5\'�I��ސ','y*�RIr�5\'�I��ސ','Th!w8�hg����CZu�6\'�m��$|����','',0,'?'),(',���=Y)��Be���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/round.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/round.js',0,'�H\\Ľ���L�˃�c','�H\\Ľ���L�˃�c','�xQ�V�畴Z�I�@��I�M?.h�|��b','',0,'?'),(',����7�Ư��GG�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sum.js',0,'\'�/Z��>� �ho�:','\'�/Z��>� �ho�:','���0�V��@��ģo1B��V*>��b�\Z8�','',0,'?'),(',�)7L(B�\r+���','wp-content/themes/mint/node_modules/iconv-lite/test/big5-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/iconv-lite/test/big5-test.js',0,'^7f�p��\0�.�','^7f�p��\0�.�','g%|���9f�A75�e�X*W*G�s��jw�W','',0,'?'),(',���\n0� S���C�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/WebPConvertException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/WebPConvertException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5-Kt��+sEM;�Ï6','���[0�|�섧��A�A���U-a� ��b�X�','',0,'?'),(',�5�}���\n�?�','wp-content/plugins/gravityforms/includes/fields/class-gf-field-phone.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-phone.php',0,'�#;�tU!�c�)F��','�#;�tU!�c�)F��','G���xg��Zu��~֚�p�G��d닑��~','',0,'?'),(',��3;d+�QdžX��~','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php',0,'�7+�����|*����','�7+�����|*����','�^���䁢 c+�~�z�q��u�L���F�','',0,'?'),(',���F(�0�\0��s��','wp-content/plugins/wp-optimize/images/features/image-compression-vehicle-64x64.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/image-compression-vehicle-64x64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c䗜�a,�J����','\rI.#v��ms���<��R����@��?V���','',0,'?'),(',�i�y���Q�=Pf�','wp-content/plugins/wordpress-seo/css/dist/yoast-extensions-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/yoast-extensions-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\r��#m���H�','][���G+��13��O�5�F/��w�S_�a�X�','',0,'?'),(',�t��9��3{N��','wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/js/bootstrap.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/js/bootstrap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Wi[��Zk\'{���U','��Ssm�i+W�d�s<Ǽ����6F�^��r','',0,'?'),(',���3�2�����2','wp-content/plugins/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php',0,'0���\\ʪQ!�w(��','0���\\ʪQ!�w(��','Z� PQs���$���\ng�\n��ˏ�{�8|y','',0,'?'),(',�P��xX;�SC̍','wp-content/themes/mint/node_modules/less/dist/less-1.2.0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.2.0.min.js',0,'�8���e�Y܀Z','�8���e�Y܀Z','|!O���֍���w3���vM����H','',0,'?'),(',�6N���vzc�Ҕ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_asciiWords.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_asciiWords.js',0,'���5l(p:�k�}�4_�','���5l(p:�k�}�4_�','�#B���2\Z�v�lv}k�ƕ�z/\0����\n;�','',0,'?'),(',�Tϱ�r7h� %r�','wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/Converter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/Converter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y��� d� �6T�R��','^�<��X�R��r��\'��T���p%�','',0,'?'),(',�@lct�}v�Wپ�','wp-content/plugins/envira-gallery/assets/js/min/conditional-fields-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/conditional-fields-min.js',0,'��H��5i��N%��','��H��5i��N%��','��Cݩ&����<�xj��e��R\\�p�','',0,'?'),(',�>����,I^��͕','wp-content/plugins/wp-optimize/includes/class-wp-optimize-notices.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rzZ�KԻ�[��Y���','Y��\"I��hE��<Ӿ]�O7��G�:\\(���\n','',0,'?'),(',��(X\'����%Z��|','wp-includes/blocks/group/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/group/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M��lqM����oދ�','1�+�h�E>��g��+��\"��� ��9t��Y','',0,'?'),('-\n�,�r@�OL� ��','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/speed.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/speed.js',0,'�.��Γ7j���u','�.��Γ7j���u','�8��;�m���ώEG�\0�1���Me1��\nb','',0,'?'),('-5# #K�C����w�','wp-content/themes/mint/node_modules/date-now/seed.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/date-now/seed.js',0,'�Gzgk���]�ot-\n�','�Gzgk���]�ot-\n�','��G 3�BO�{�rh�6�3�d��)%�~ݼ�2X4','',0,'?'),('-[��t��?���w','wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin-options-pages-preview.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin-options-pages-preview.php',0,'�g2�L�f*��O�@K','�g2�L�f*��O�@K','bw��+�I�e�wK�춰��A�2���m���','',0,'?'),('-Dpv���qlֺ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/toolong.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/toolong.js',0,'� N���s���#!�','� N���s���#!�','�f�1���TU�у F�sa�;�u9o�p��','',0,'?'),('-m8��q���E��,','wp-content/themes/pinnclonesmalltest/vendor/symfony/polyfill-mbstring/bootstrap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/polyfill-mbstring/bootstrap.php',0,'Z1~,:nk��L\'�h��z','Z1~,:nk��L\'�h��z','��Hkn��(^�ٞX������0�L����#�','',0,'?'),('-�T��a�P�?�0et','wp-content/plugins/wordpress-seo/admin/class-admin-init.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-admin-init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����l��ǃ̘��K(i','���P��rF&h���2�@�v��>�h�*Q(1\'','',0,'?'),('--�ü��$�);��J5','wp-includes/js/dist/rich-text.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/rich-text.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tXt���1�l��0,a�','�����-��\"�T��&0&��M��','',0,'?'),('-?g���,9���i�','wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-watcher-actions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-watcher-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@�yX�w�\"`2','�0!7��._��B!UL�k���:�Ff[��','',0,'?'),('-B�Qic8�D���Ibp','wp-content/themes/mint/node_modules/commander/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/commander/index.js',0,'��$�p��7S3Y�','��$�p��7S3Y�','�Y&\Z�+93![~3_2��ep��� ��%�}$���','',0,'?'),('-T��]S�$���32','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/MayaInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/MayaInstallerTest.php',0,'��ՠ�U�<��ͩ�','��ՠ�U�<��ͩ�','h��%�4�VW���F� ��)�I��R�l','',0,'?'),('-T��z|�����O�{','wp-content/themes/mint/node_modules/shelljs/src/mkdir.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/mkdir.js',0,'�2K\n7U��?9�=��','�2K\n7U��?9�=��','~I�٨`\nA.��S*�:�����*S��M�}�','',0,'?'),('-X������P�=5.��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lang.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lang.js',0,'�X$�q��R������N','�X$�q��R������N','�<��\r���6���4���9�y�M*���','',0,'?'),('-\\��[�����J�ץ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','١�\\r���V;$Ist�','�1<����7�Ap4����0V�P�b��#;T','',0,'?'),('-_�(��E������','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',0,'L����Q\09�m�M�','L����Q\09�m�M�','|3��,�Ux���`i��@?�f.@F/x�}h#�','',0,'?'),('-ba������3O�1','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/some.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/some.js',0,'TH&�vI�v[���n��','TH&�vI�v[���n��','���.��(���%��i� �7R��','',0,'?'),('-d�q�u�B�t�+j�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sample.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sample.js',0,'6��)�d���$;','6��)�d���$;','w����� �9�����dq>�˙�<7�jG','',0,'?'),('-jާ� �����~hyb','wp-content/plugins/wordfence/lib/menu_support.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�Z��å3��ӹ1v*�','+Y����ܣW>���A�|�\r��<w�!��S\"dO','',0,'?'),('-kdϯ���X�w\\7���','wp-includes/admin-bar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>$�f����NƖ�A�','��B���x��&б��I��R�x̗�L�R\"','',0,'?'),('-r)�f� ����,�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/ceil.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/ceil.js',0,'���#��g?�f8��E','���#��g?�f8��E','���z�L��k�D� ����GYߴ?��gc�t�','',0,'?'),('-����Ǹ�%w=��','wp-admin/css/colors/ocean/colors.scss','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/ocean/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'h+N��MK�','�V���D�e�{�mo��?+/�߅(�~{#�','',0,'?'),('-���_���mq+��1�','wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h㠲���i�e��ɡ','IH�Mp\\��N�h\nN��F=-���Z�=hO','',0,'?'),('-��}�z!n{�q�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlNode.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlNode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S@CNg�����H','������Q��&�f`.a-��{����LM��','',0,'?'),('-�IeOV�Jψ[]h��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/MAX_UINT.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/MAX_UINT.js',0,'+��Il�� _z��Q�','+��Il�� _z��Q�','���0�{ؐ����G�x��Y� ��7L�','',0,'?'),('-��)7�5y�8c��Wv�','wp-admin/about.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O���D�\n�Y엃��&�','������gu�l����Q�3�3��\0���4F','',0,'?'),('-��R����c�v��','wp-includes/SimplePie/src/Exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�IUp���N��!����','$3��Kc��Bj<8EYXg.\r�ˁ���n�(�mx','',0,'?'),('-�_��+��Yn��S','wp-includes/js/jquery/ui/tooltip.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/tooltip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','? �k�������','��#ĺ�n�y6/��8\'��HD���d���C��','',0,'?'),('-�d�h�Fy�n��o�N','wp-content/plugins/soil/src/Modules/RelativeUrlsModule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/src/Modules/RelativeUrlsModule.php',0,'-�c[���b�~��d��','-�c[���b�~��d��','�^�����Ь���\r�}�Y��@\\���vX�','',0,'?'),('-�[IZ)����','wp-content/themes/mint/node_modules/underscore.string/lib/underscore.string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/lib/underscore.string.js',0,'�aEm�ASB5m�R<\n','�aEm�ASB5m�R<\n','-�a��~p!���v�bg7f?Z�ѡ\\�ɰ','',0,'?'),('-�f��4]�#\"u��l','wp-admin/css/colors/light/colors-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/light/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����k���}�Gp{*X','\r��D����zE��AA�?�H^��%1{ֳ','',0,'?'),('-�A�8���]g�u�&�','wp-content/themes/mint/node_modules/less/dist/less-1.2.1.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.2.1.min.js',0,'B�K[����Z�*�','B�K[����Z�*�','���t��[�~��g�!�U�)�\\ba3c�vXy�','',0,'?'),('-�\'8]�)I�z�.�','wp-content/themes/pinnclonesmalltest/resources/views/partials/page-header.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/page-header.blade.php',0,'p�G���a-��n��Q','p�G���a-��n��Q','��ڦ/�\"�J��̠H �I�\\��̓�9� �Q','',0,'?'),('-�`�[��D,��G�Ō','wp-content/plugins/wp-optimize/images/notices/sale_summer_24.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/sale_summer_24.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H��?˼�xY>F�','bL8Y��H/�o֯X�g&���_ވt/�N1','',0,'?'),('-�eceu�(��5I\'�','wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h��74\r�ka\rP','ȵ��6W�?���ԶuVΒ�t>����t�','',0,'?'),('-��藂��Y{]ns�','wp-includes/css/wp-pointer.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-pointer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kh���:�]w\\��cUK','A��Mj�%U�uք\"��Z����vl=(n�H��','',0,'?'),('-��5�t�U�1Y�v ','wp-content/plugins/wordpress-seo/src/values/images.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/values/images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��,��\r�w&\"�ylu','�{ ��@\0��ѻn�\r���m}HF�T�!','',0,'?'),('-��$����So]��o','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isEmpty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isEmpty.js',0,'7v�e7Z�<B���#','7v�e7Z�<B���#','�ֳ���am���tY�쬑Br)\'}�BW��Ƭ','',0,'?'),('-��;�W��&�ܽ�`T','wp-content/plugins/wordpress-seo/src/exceptions/indexable/source-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/indexable/source-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�K@C��T����Y4','�u�gt=mg�*ӣ�̉�\0�@��_㾅�*�R\n','',0,'?'),('-��OF),}�\0��P�','wp-content/plugins/envira-gallery/assets/images/icons/facebook-black.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/facebook-black.svg',0,'v�}�P�<��U�K��L','v�}�P�<��U�K��L','H�յ���cZ��$E\03��]��[�~nn樑P��','',0,'?'),('-�ͤt�˹eY�7YZ','wp-content/themes/mint/node_modules/less/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/Gruntfile.js',0,'?����\0�]h�y����','?����\0�]h�y����','编?l���u���xp�Ѐ%�c�/Zj>i�\r�','',0,'?'),('-���*�3i\"���U','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/emoji.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/emoji.js',0,'8w3a�b�öE�\"8t�','8w3a�b�öE�\"8t�','��@?¨DF���ٚl!���7�� �-��','',0,'?'),('-�34\r�kg�8\Z;�C','wp-content/plugins/envira-gallery/assets/js/media-move.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/media-move.js',0,'dԸD����!�l����o','dԸD����!�l����o','�����~�+�n�}��9\0��U�`����݂`t','',0,'?'),('-�5w��:�ΏK5`','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/SyDESInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/SyDESInstallerTest.php',0,'DV�V�J�:�i����!2','DV�V�J�:�i����!2',')��t��;v�0�nW��1���,ʘ<Zp�,�','',0,'?'),('-�\r�������A�(V�','wp-content/themes/mint/node_modules/tiny-lr-fork/test/client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/test/client.js',0,'`̛B�n�>���P','`̛B�n�>���P','�;L�hu�vt0Mi-\nN��\nV*�,\'�\n^.�_W','',0,'?'),('-�E�n+�#1 �2��ބ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/memoize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/memoize.js',0,'��BB�X;�o�b�k2','��BB�X;�o�b�k2','��^H�\0dmj{�����;[L�3��,�S�;','',0,'?'),('-��\0J(}o5��@4','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\'��s��;�N`6[�','�t�W���ܫ08�\r�\n��/MÎZ���ۗ3','',0,'?'),('-��{O�������o2','wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/test/readdir-sort.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/test/readdir-sort.js',0,'P��M�C��� ��','P��M�C��� ��','=�R��Ş��j�7\r�kA[���i����','',0,'?'),('-Τ�����g:.J���','wp-content/themes/mint/node_modules/cli/examples/echo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/examples/echo.js',0,'�\Zj�x<R��W-���','�\Zj�x<R��W-���','rh?�##�O���¡I���\"���P.�I����','',0,'?'),('-ҁ�5�f��x��','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/00-setup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/00-setup.js',0,'��1����gʩ�y�:?','��1����gʩ�y�:?','�*���;U\0�z.��ڤpWa_I�K`�?U','',0,'?'),('-��@�lB����ޠ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isElement.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isElement.js',0,'I-��n��X��X��','I-��n��X��X��','oE���y�@$-���T��Ze\n��~��','',0,'?'),('-���(_T$�*�Z��','wp-content/themes/twentytwentytwo/inc/patterns/general-divider-light.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-light.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˼)��Hq�Q���','Z���Hzn;)�oߵ3�Q�S��k^�=�s!�','',0,'?'),('-�^�=?�F���F�','wp-content/themes/twentytwentyfive/patterns/template-home-vertical-header-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-home-vertical-header-blog.php',0,'��r8��\r�\n�*�Xu','��r8��\r�\n�*�Xu','4a^P���x(\0P�oK`C�����8��N�[#�','',0,'?'),('-�^��:Z\"x��U0','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/each.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/each.js',0,'㧛gտz����','㧛gտz����','؇g��Q�b��f\0_�u��?����^�N�Q','',0,'?'),('-��Xs�ʻ�ꮙ��','wp-content/themes/mint/node_modules/hawk/test/crypto.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/test/crypto.js',0,'�l��[���8q�R','�l��[���8q�R',':v!wG���i���$ 2���\r��@�.whQ��','',0,'?'),('.?���ɒ��p\\f�C&','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue30.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue30.js',0,'�t�U\r��7ɜ9\Z','�t�U\r��7ɜ9\Z','x�\rS0�RB,˿C��is1%c�W.ط3��','',0,'?'),('.@�b���ۑ�q��','wp-content/plugins/wordpress-seo/src/conditionals/headless-rest-endpoints-enabled-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/headless-rest-endpoints-enabled-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RpHP@��Hz�R�c','#R��q��C\\#w��}� �j��dњ(^d�','',0,'?'),('.��\n]˯F��VR�','wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.ttf.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.ttf.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7���\\���\Z���En','{GS��0�����)��.~��#m�}�:2��','',0,'?'),('.�Εi9�x���bxT','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getValue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getValue.js',0,'�\'��)�����4','�\'��)�����4','��@� �_�R�2\rZ�\"N\0���$@i(�\r�','',0,'?'),('.�V)AR;�tUc\0P','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof-integration-toggle.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof-integration-toggle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nqm�OV��U��Yl�','{,Ų��9�� �ksi�8�\Z�Ο��\0瀝۳','',0,'?'),('.���)ȖL|>�g��[','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/replace-log.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/replace-log.js',0,'�E���_��O�q� �','�E���_��O�q� �','�g馉�9 �����o�:! �=}�\r�Q8��','',0,'?'),('.�\n �rY�k�`��','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/build/test-prefix.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/build/test-prefix.js',0,'�H�F�X^��B|�','�H�F�X^��B|�','��&�e��rAu��O�5�.㸏a�^Rx)Q���','',0,'?'),('. M�;�࣍_�\\��T','wp-content/plugins/wordpress-seo/src/presenters/twitter/description-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/twitter/description-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$>x���f�gu���','s�a�1��tI��b(�qr�X����[���m��','',0,'?'),('. f4~AScR\Z�^� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mean.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mean.js',0,'��s���)�F0D{��H','��s���)�F0D{��H','�Mc���y���1y���TΑ�RZ\0���','',0,'?'),('. �\0_oE�]A�_�0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�.�Aj_�m�r#i�','\'��C��b\"B��\\�N�N���*r&.X��J','',0,'?'),('.*Po���PM���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/insert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/insert.js',0,'2\n����ف`�I�o�','2\n����ف`�I�o�','���;�]3\"&�g�v�g�!\"!�V���=g�','',0,'?'),('.*\\W�(0��_*V��6','wp-content/plugins/gravityforms/includes/system-status/class-gf-system-report-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/system-status/class-gf-system-report-service-provider.php',0,'K��v;���Y��Ԟ�','K��v;���Y��Ԟ�','Ͻ��:�_�����Y���!����3���A� �','',0,'?'),('.Hg�w?.R��a�Et��','wp-content/themes/mint/node_modules/minimatch/test/extglob-ending-with-state-char.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimatch/test/extglob-ending-with-state-char.js',0,'嚐M�ОEiL�--','嚐M�ОEiL�--','�^\"�r�T�ZT I0�W(��v�X�dh�Dž\n','',0,'?'),('.IhU���3��+B\Z��','wp-includes/images/admin-bar-sprite-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/admin-bar-sprite-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q����8��o��','*E��Ts���al�^�p��X���Z\0��','',0,'?'),('.K�s0��U6Y�#�\n1<','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/methodOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/methodOf.js',0,'�����\rf�rcլ�\n��','�����\rf�rcլ�\n��','�K�cP�����}�댕�+�E~��ި]t\'qj�m','',0,'?'),('.M��[Ȅ);��ǂ','wp-content/themes/mint/node_modules/bower/lib/commands/version.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/version.js',0,'\"%|�up|�JE�\n�T�','\"%|�up|�JE�\n�T�','�)��Wb)��&��A�B(�e�&ؿ\Z�`M�','',0,'?'),('.[���ij8�\0��[�D','wp-content/plugins/envira-gallery/src/Admin/Metaboxes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Metaboxes.php',0,'D �����ط�i�=�','D �����ط�i�=�','��;AI��RO6Ï(��b�\"�W+g�9yW��','',0,'?'),('.k%� ��Sl�H�K�ǖ','wp-content/plugins/wordpress-seo/css/dist/toggle-switch-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/toggle-switch-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ɉk��\0݂;}�','�I�`��C�ɱ3�\\�\r�c]ʂɁ���T��','',0,'?'),('.k;�������w��q','wp-includes/blocks/post-author/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n�yah�I�W���','���퀎-{��R����=�] ,��UWM','',0,'?'),('.mv���E�\\�בI\\','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isnt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isnt.js',0,'R�%\\��p�Ϩɷ��s','R�%\\��p�Ϩɷ��s','p�Z���ET�2�h��c��o���-�mqQ��ک','',0,'?'),('.rH�ev��aw�0�j#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padEnd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padEnd.js',0,'G?�u a����9B2��','G?�u a����9B2��','k��U�4��\ZE�d�ĕÍ���<w0����X','',0,'?'),('.x��Ϯ�7����_�','wp-includes/js/mediaelement/mediaelement-and-player.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mediaelement-and-player.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\n�.�A�J��4I','���S{h�d�����q(���^�s\'�%�a%','',0,'?'),('.y�C�rٓ�C�m�B�g','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\'Nv�YK%.�oۦ�','�� `��v\"X����5�g@�Q���\"6�','',0,'?'),('.���j�fu�=�3��','wp-content/plugins/envira-gallery/src/Admin/Menu_Nudge.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Menu_Nudge.php',0,'�5-\Z��I\n�X\0J','�5-\Z��I\n�X\0J','1�ݱ����5H�.Bɛ���sG*H^>��','',0,'?'),('.���@k��N?ZQ5','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G��<��e�Ҡ','V�Q�%���ļ� ���\ru�Tf!BM����Nvq','',0,'?'),('.�麉D0�u�L-c�','wp-content/plugins/wordfence/views/options/option-toggled-segmented.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���B�W#��#���','�^�<��4��e,��\0��l�����\r�!d','',0,'?'),('.�����X�7(��','wp-includes/Requests/src/Requests.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A4L�y����|�^�','X��kF#D7�0z_T�鵕������Y��t','',0,'?'),('.�Z��R��a��\nS��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Exceptions/HttpClientException.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Exceptions/HttpClientException.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>tq�҃o�b�.S�x','�$�k�h��H{�$���]\0�\n�ȐO�Y�B','',0,'?'),('.�q�R�t�q�x���U','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/values.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/values.js',0,'q�� E��p��ŰR�?+','q�� E��p��ŰR�?+','��필��i*��x-%�Ο����\0獧�)���x','',0,'?'),('.�=��$��.�6��(','wp-includes/blocks/button/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/button/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Z��Hn�׳��-\Z/','1[�g��ւ8́���7M�f���e�#��~w��','',0,'?'),('.��Y��<v�j\\]�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractVariableSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractVariableSniff.php',0,'�7��_��InΆo�~','�7��_��InΆo�~','WĒ%�#�QNbg)��L�B]��6�DPO��/�','',0,'?'),('.�>�ָU�� q���kw','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/PendingMailFake.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/PendingMailFake.php',0,'�Cs����S^����','�Cs����S^����','�\n˧�Ñ7���H�q4���\"����it�`\Z','',0,'?'),('.�v\0����N�Ú��','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g��L�F���5¾�','���#�䯣x\'Yv\r���Ӧ��p*��͒�o�','',0,'?'),('.�H9\0ר���v;��','wp-content/plugins/wp-migrate-db-pro/class/Common/FullSite/FullSiteExport.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/FullSite/FullSiteExport.php',0,'���������Z�rv���','���������Z�rv���','�YWI+qX� �!��nt\"�e\Z�=����:_�','',0,'?'),('.��4�Jb7�@r{E �D','wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-front.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-front.php',0,'��O�O�|wMJ��','��O�O�|wMJ��','�y�nZ�S)��c�y�\Z>��!','',0,'?'),('.�E�[J��l�x��','wp-content/plugins/wordfence/images/forward_disabled.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/forward_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_��Z?�N)�Ҋ�:�5','���/�<>O&�ȕJR݇e�}�(��m','',0,'?'),('.��7�f�w9Pm@����','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0�H�#�IHD���','�v�o�VYx�?���\n��\n&3c-\r�8�m��','',0,'?'),('.�N����Q\r�j���,','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/exception.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/exception.js',0,'��u�U��x�`�8��','��u�U��x�`�8��','����_ι�FxY�gc]��DҷқA�j#}','',0,'?'),('.����\"��M�!`��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q��͎���\"k��S','C����N�$̎�&�V,��I�V��oO� �','',0,'?'),('.��~��`�3*�<�.','wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Exceptions/ConnectionNotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Exceptions/ConnectionNotFoundException.php',0,'k���G�\ZM�P\Zl�','k���G�\ZM�P\Zl�','5 \'�I��G��e6G�zO������AG��;','',0,'?'),('.�|c���y\Z��P','wp-content/plugins/wp-reviews-plugin-for-google/include/rate-us-feedback-box.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/include/rate-us-feedback-box.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9��\r ��(-qX��F�','F6O2?�&��es���ڕ# �Z���%�\0�w�','',0,'?'),('.�-�_�����\Z���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/enforcePrecision.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/enforcePrecision.js',0,'�^�M�. �Z/u<B�','�^�M�. �Z/u<B�',']�E(�/}j\n�&��ʙ^��¤ڍ�N��j�','',0,'?'),('.�|G�xܣ�yId��','wp-content/plugins/wordpress-seo/src/builders/indexable-system-page-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/builders/indexable-system-page-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2O��R�ṛU���','!\ZםK �!��5����\"�μ�BM4KK','',0,'?'),('.�`�hMF�=��{�O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/forEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/forEach.js',0,'^�bo�\Zf�b�*5V��=','^�bo�\Zf�b�*5V��=','�PZk�4\0����y����9Mk�5��','',0,'?'),('.��Ϡ�a?馺W�8ӵ','wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�(|�.-$D�&��C','{W�|�K�KOȚ�����\nßA3�K����w��','',0,'?'),('.����Q�B4��բag','wp-content/plugins/wordpress-seo/src/helpers/redirect-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/redirect-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')sZ}��od�9\" �-D�','��LI�,�p��p[,�-�\"z�Y�Lu�H���ب�','',0,'?'),('/,�;k!�f�Z��5','wp-content/themes/mint/node_modules/hawk/lib/crypto.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/lib/crypto.js',0,'���zy,�Rp]b�^��','���zy,�Rp]b�^��','�>�Y=�B=Rd�}O/�PZ�O����l�n4','',0,'?'),('/�C�l�ׁ�)��','wp-content/plugins/envira-gallery/assets/js/tools.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/tools.js',0,'6!�c�X\r����d','6!�c�X\r����d','�K��9���4�{ !I����@ɲ�$�\n�w}','',0,'?'),('/H���t��a3��','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_duplex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_duplex.js',0,'>�6�fr��\"*D �','>�6�fr��\"*D �','�02s��$��PA<ԝ�|��c&��*Ǣ','',0,'?'),('/D%C)���x�?>�O�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/array1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/array1.js',0,'�Z��M�g$�e��]','�Z��M�g$�e��]','�\Z��$���9[d�Nh�:���!����9','',0,'?'),('/☟��<�9\"o-O��','wp-content/plugins/wordpress-seo/src/conditionals/admin/non-network-admin-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/admin/non-network-admin-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{gz��!��:,��','��z��w�\Za��D\\��\\��h�N;�,�','',0,'?'),('/ސ�zU4Ni����h','wp-content/plugins/gravityforms/includes/form-editor/renderer/class-gf-form-editor-renderer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-editor/renderer/class-gf-form-editor-renderer.php',0,'���x#N�P��S�K','���x#N�P��S�K','iw�7(���B�X�Ǵ�#Ϻ &�ڡu�m|�6�','',0,'?'),('/%�>���(Y �<?�]','wp-content/themes/twentytwentyfive/patterns/header-large-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/header-large-title.php',0,'��%�0:�������','��%�0:�������','#ڻ=>g�h|�N^��>/����ҠMgl%�Q�','',0,'?'),('/\'l�ȞC�aݟ@��9�','wp-content/plugins/wordpress-seo/src/integrations/front-end/schema-accessibility-feature.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/front-end/schema-accessibility-feature.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b<ⶰk��`�n-���','���^�&��ֻ��#z\00����=jWџ�6�E','',0,'?'),('/*:����o>�t����','wp-includes/js/dist/autop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/autop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vD�x�X�-�8��\0�','�9�V{�`�nKV�ȡ2%O;�&!�ݖJ�K���y','',0,'?'),('/;y�ˆtIr��ι3Pq','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/invoke.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/invoke.js',0,'J�;�^����E�[��','J�;�^����E�[��','�܃W���5��} �>G\r�o�$9-TښG�y','',0,'?'),('/<ا^ɼf}�\"��$�','wp-includes/images/media/document.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�4�8�Αy�6�d�','��ø`�������f I$ _Z�X�\"0\r��,','',0,'?'),('/>��xnq\"��9^\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isMaskable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isMaskable.js',0,'�ſS`0�D��K�','�ſS`0�D��K�','��O�U;Ѥ���P�k��pG�6�ش���B\0�','',0,'?'),('/C{�d\Z�WA�MV54','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/toJSON.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/toJSON.js',0,';��r����1+�v�',';��r����1+�v�','�_.�I&��!�5��?��HIL{�)��Zїk','',0,'?'),('/C�d�m�4���>','wp-content/plugins/gravityforms/includes/save-form/class-gf-save-form-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/save-form/class-gf-save-form-service-provider.php',0,'��Cb�-��\\v�x�','��Cb�-��\\v�x�','�N���a��Ҧ�Ϟ �I˪qӄwU(?�','',0,'?'),('/C�����B,u���','wp-content/themes/mint/node_modules/tape/test/child_ordering.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/child_ordering.js',0,'3�T�X<�Ј���','3�T�X<�Ј���','�\n�vD �B��)K$�cf�>r��5R��P','',0,'?'),('/JΤg0�V�\r���/P','wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php',0,'׆��(�u�i=%����','׆��(�u�i=%����','[���8�+e\'\\�}���Pm�H#BP`�u��y','',0,'?'),('/Nu��2@X�n��~�s','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isFunction.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isFunction.js',0,'���� �O�o���','���� �O�o���','.�J��e�V������\'oRqx���HV���ͬ','',0,'?'),('/Ra�i�E�\\R���:','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/MockExceptionHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/MockExceptionHandler.php',0,'�Ⴧ\"Ót��GS\Z�','�Ⴧ\"Ót��GS\Z�','\'N!��4���E�#��ZA�=��ct�8e�`','',0,'?'),('/e~@�E��/�$3��','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/basic-source-map-consumer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/basic-source-map-consumer.js',0,'@�.�$(��CE��d�','@�.�$(��CE��d�','�����ܗ䧧�O��ty\Z�))�HcLޠ','',0,'?'),('/e7���C�I���QB�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/makeup.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/makeup.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�eAί�À���7YG(','������M�ܴ#q��Fl��-�Qag%�hI�','',0,'?'),('/s�f�{�J�*�FJ]�','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/DismissStorage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/DismissStorage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#���-�����','��D8y���,�\0��PX�\r,��<��','',0,'?'),('/xx@Q��=��,3t��','wp-includes/js/dist/script-modules/a11y/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/a11y/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Wa~^�9�k����','K��y:\"/6A ��\'�M8@���_���Vł�','',0,'?'),('/�ka�gf$r��k�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/CachedDefinitionSource.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/CachedDefinitionSource.php',0,'�?�\0^��L=ꎕ(�','�?�\0^��L=ꎕ(�','y��,k���Ecd��#�:O�Ж20��l�Q�T���','',0,'?'),('/����k\'��E1T��','wp-content/plugins/gravityforms/includes/splash-page/class-gf-splash-page-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/splash-page/class-gf-splash-page-service-provider.php',0,'*2��JU�d[[*��!�','*2��JU�d[[*��!�','i�^����`R[�n�����}_Ed��3','',0,'?'),('/�0F��0Bh���I)�','wp-includes/SimplePie/src/Locator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�@�h��,��9��Y','s2/�}� ���e���o��\0vMT��٦$�','',0,'?'),('/�H��I]��j�wy^','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/unzip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/unzip.js',0,'0�\"�:��O�2�.;�','0�\"�:��O�2�.;�','�>����t\'�ڤ�k�Ê�%1r6�','',0,'?'),('/���A7��m��^�','wp-content/themes/mint/node_modules/grunt-contrib-watch/tasks/lib/livereload.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-watch/tasks/lib/livereload.js',0,'�2g��Br�3aT�=Qp','�2g��Br�3aT�=Qp','��rӄ��1����\Z-!�T���\\h��=�','',0,'?'),('/�\nٝ�wu-f�����','wp-includes/SimplePie/library/SimplePie/Cache/File.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������^��~','�\'�WL�^+\'L`��T�JOQ+հ�t��_AQ6','',0,'?'),('/��r*�A��`e�?�2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/osenv/test/unix.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/osenv/test/unix.js',0,'z�@j�&O��G�Ǖ','z�@j�&O��G�Ǖ','�*�s���Y�NL�n^�h�X�#�����','',0,'?'),('/�-{�˿c�bd�R','wp-content/themes/twentytwentyfive/patterns/format-audio.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/format-audio.php',0,'x&�/\Z{�i���@_�','x&�/\Z{�i���@_�','���c�����,ců�t}���I�Y���','',0,'?'),('/��e��aw�O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toIterator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toIterator.js',0,'e,7lV�GP��ٺ@�','e,7lV�GP��ٺ@�','�X\'Ӿd#�SB�VDW����V�SD�*�<o�','',0,'?'),('/�S���ƎL4t^�{�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Exceptions/InvalidTokenException.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Exceptions/InvalidTokenException.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{���s�����qt','\'ٛ�����g�\0���d�����FF�','',0,'?'),('/��Ͷ�w�k����L','wp-content/themes/mint/node_modules/center-align/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/center-align/utils.js',0,'6L�%���[���z�','6L�%���[���z�','��%�����Nqǐ��x�\n��]�VX���\"\0','',0,'?'),('/���ib�&[��0�H','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_stackHas.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_stackHas.js',0,'\0�*���˦�X\'��','\0�*���˦�X\'��','�au�;_l(F[�}�Pei�e\n�%�C�b���3�','',0,'?'),('/����N�dP��0«','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/pick.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/pick.js',0,'Pl��wg��o�\\\0�','Pl��wg��o�\\\0�','w��c�D���ȭ��0��wws�T�OC�','',0,'?'),('/����ĵD_9rJ','wp-content/themes/mint/node_modules/array-find-index/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/array-find-index/index.js',0,'��{fq�?���`�m','��{fq�?���`�m','��a��/�f)k���a��&v�bu!W.�\n','',0,'?'),('/�s��C4�������','wp-admin/network/setup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' w�����T�A;�}Ad','��韌�\'�MN�+�ƺ�R����g','',0,'?'),('/�bJ�|O�UO�aM;pD','wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/binary-search.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/binary-search.js',0,'%s2����Ơ�i','%s2����Ơ�i','=��(uhBm``��%8CA&�9e�\"�U��','',0,'?'),('/��P��\r�����Jn','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/save-profile-btn.cebaf8c1.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/save-profile-btn.cebaf8c1.svg',0,'D#4�,3�Q+','D#4�,3�Q+','r,4J�{dg+�7k-ۅc�V�貏�\0��','',0,'?'),('/�s��E���]��y95�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',0,'@�K���{~tbYb','@�K���{~tbYb','�\n�Ȟ��]��r��6 ÚZ{TVc.�Gv�~','',0,'?'),('/�9�4��Ɋ<?Ì(�','wp-content/plugins/envira-gallery/assets/js/lib/envirabox-guestures.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/envirabox-guestures.js',0,'�y�@�����I����','�y�@�����I����','���Wl�H�d�E5�����L3��Uv��,�a','',0,'?'),('/ך�D�A����d\'\Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/test/common.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/test/common.js',0,'�!*\n�\\���ЕC','�!*\n�\\���ЕC','�s��Y��(C�zzç�t�����5,�k�|�h','',0,'?'),('/�n]U��)^!����','wp-content/plugins/gravityforms/images/icon-check-active.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/icon-check-active.svg',0,'L�\n暪�{����','L�\n暪�{����','v�r���H��p�NC_����m�|Z5��=','',0,'?'),('/߄�\0D��G�j�>�','wp-content/themes/mint/node_modules/less/dist/less-1.4.0.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.4.0.js',0,'�㶕�O �z��a��','�㶕�O �z��a��','�΄K����2?�5,CQ�QO��@�M6ʀ�G','',0,'?'),('/�֤�u��m`����+','wp-content/themes/twentytwentyfive/patterns/binding-format.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/binding-format.php',0,'a�EY\"p[�xq�@��e','a�EY\"p[�xq�@��e','y�ȼ\'��a-�,��\r���\'=\\��쪸\0��~','',0,'?'),('/鹠���ΰ1�iw��','wp-includes/images/uploader-icons-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/uploader-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���&-��O��Õ�~','���r�\0����\'_>��6��QW��4ڠR��','',0,'?'),('/��f��P�j>X��','wp-includes/sitemaps/class-wp-sitemaps-renderer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sitemaps/class-wp-sitemaps-renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=���^����-�|��','*��k$xFҟ��\'�qV���<[��7�!��','',0,'?'),('/�M�Z������(fh','wp-includes/Requests/src/Exception/Http/Status411.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status411.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ױ����4I�cIv\n\Zh','� o�z��^�|�}�o\Z@7C ;9/D �F','',0,'?'),('/�����5SQU۶v+�','wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�h�������VZ','���җ�$TW(������\r�]5F��(pmU','',0,'?'),('/�b?��N\0�)i\\��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/concat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/concat.js',0,'N�B��n#F�Y�\Zz�V','N�B��n#F�Y�\Zz�V','���ӷ�S�� �@o]�M6� ze&߫����','',0,'?'),('/�+��^.G�-Gc��k','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/get.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/get.js',0,'�k:��)m�f�N\rpd','�k:��)m�f�N\rpd','���eI����QNQ���r�9�>3�U�u?\0','',0,'?'),('/��%:�@�x>��U��','wp-content/plugins/advanced-custom-fields-pro/lang/acf-zh_CN.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-zh_CN.l10n.php',0,'�jT�ڲE0�*g$Ό�','�jT�ڲE0�*g$Ό�','����˟��y�>�.��K�}��e���X{���','',0,'?'),('/���DM���8�','wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonify/test/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonify/test/stringify.js',0,'��Iz���H9Q�0��','��Iz���H9Q�0��','L���_���CM��ZZ9�DϹ�@�.\\','',0,'?'),('0��\Z����J���G�','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/semrush.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/semrush.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vV�Λb�� 6�X��y','^��Z�s����H�;JP�H���#+�x;�','',0,'?'),('0��ۂ��\'Pm�Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/getOr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/getOr.js',0,'�Q4�-Ifmcme�L','�Q4�-Ifmcme�L','H�*6��f���/\"��X�z� $SVg9e)\Z','',0,'?'),('0,�E(��94~�l5','wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/accordion_header.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/accordion_header.html',0,'��S�E�p�$?�','��S�E�p�$?�','�Bw:��uа���~.ؽ7�:�]�mw���Y�','',0,'?'),('0. F��� �\Zj=��v','wp-content/themes/mint/node_modules/bower/lib/node_modules/tar-stream/headers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tar-stream/headers.js',0,'�75J_-�5�B�8:','�75J_-�5�B�8:',':�Ku ��s��pk�+�=q������۳��5�','',0,'?'),('01<Ո�P�ʫ�T�&�>','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/es5-strictmode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/es5-strictmode.js',0,'�?�( ��R7t�vk��','�?�( ��R7t�vk��','�\"�P��r+?�\n�Э��j;\"�c�s�ڽX�6y','',0,'?'),('06U�4n��B���','wp-content/themes/twentytwentyfive/patterns/page-link-in-bio-with-tight-margins.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/page-link-in-bio-with-tight-margins.php',0,'�\0�G�֛lm�p7�qq','�\0�G�֛lm�p7�qq','���E� ��r���c�=���U�t.�%Ō','',0,'?'),('07���]Wܯ\0��U�','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-inclusive-language.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-inclusive-language.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';A��(��KZ\'7;��','$<�o���͛������pܣ�\'��DH\n�','',0,'?'),('0<����lڿ��J��','wp-includes/js/wp-backbone.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��G��� 1�Y!�z� ','\"����I��`��I�: ��OX7ꆼ)�2�','',0,'?'),('0@�����0j�kJ��','wp-content/plugins/gravityforms/includes/webapi/includes/class-gf-api-keys-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/includes/class-gf-api-keys-table.php',0,'6�V�}�g74RX�C��','6�V�}�g74RX�C��','d�,\'�IUl��XL�w��oIKM5Y���`�8e','',0,'?'),('0B�j�f^P�]^p��C�','wp-includes/images/media/default.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/default.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̉\0��x۟#��ZeI4','�nm���f�e{|8M��>�X6��0���\\O','',0,'?'),('0Dɽ�t�^��S�E)','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/WHITE_SPACES.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/WHITE_SPACES.js',0,'2=�\'q~�i�WCP��','2=�\'q~�i�WCP��','�2NW�Aoq\Z�l�m ��h�U��N#�,�8','',0,'?'),('0M���\"B�\"����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/inRange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/inRange.js',0,'�.x�:��*���','�.x�:��*���','nEԃ�;�pP\Z\"P���dC�f���-\Z�S��','',0,'?'),('0X齞vl�K�K��#M','wp-content/themes/pinnclonesmalltest/resources/views/partials/content-single.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/content-single.blade.php',0,'M�>�y�����/lE1n','M�>�y�����/lE1n','��|��pf~����E�ᦎ \'v��s��m�','',0,'?'),('0Y.q�~����D����','wp-content/plugins/wordpress-seo/src/helpers/twitter/image-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/twitter/image-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m�,U����e&���q','є�Hfɰ��\0��FTw���0��^cO8�','',0,'?'),('0[2�=u��X9lٺ^��','wp-content/themes/mint/node_modules/eventemitter2/lib/eventemitter2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/eventemitter2/lib/eventemitter2.js',0,'n�8�29�#E<�yijw','n�8�29�#E<�yijw','ЉV1$L�@֮���<��x[�`�Ϳ�s�,�','',0,'?'),('0]�qK\'�f�x����','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�{��p��Ҡ','��m�澑�[�S3��\'�J�*��Sts�j���','',0,'?'),('0]��a��J~�5�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/Factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/Factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�BO�a�\"ܾ$/zo�j','V;(W�A�Ħ�OG�[�~����<�^��0y�X�','',0,'?'),('0i�����i�@���','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/EncodingAutoTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/EncodingAutoTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���|z�j�E�C\nB','�8��@!���^F�{)�\re�~��O��J3ߕ�','',0,'?'),('0j�Vƽ�f:�5��`�\\','wp-includes/js/customize-selective-refresh.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-selective-refresh.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k��[��\"��̽','R��ՙ�� ��r_r��^��p\'�s6�x���','',0,'?'),('0pe`�2���:S2�\\','wp-content/themes/mint/node_modules/jshint/src/reporters/jslint_xml.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/reporters/jslint_xml.js',0,'��݄�t��YB�}M�x','��݄�t��YB�}M�x','O-��&n�0��s3�<>\'���D\'J�ߺ','',0,'?'),('0s!�Ý��2n��2','wp-includes/SimplePie/library/SimplePie/Item.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f�;%*څ�x-W�','\0�Z`��8�߸�/��~���BG�L����','',0,'?'),('0t�����5q?E���,','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/isNear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/isNear.js',0,'�/p��n�=dJC��','�/p��n�=dJC��','_�k$O�vK��,_>z濘[�W&��9�P','',0,'?'),('0uPON���^�Ja\r�','wp-content/themes/mint/node_modules/cli/examples/spinner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/examples/spinner.js',0,'�ހ`��ƶ�م���','�ހ`��ƶ�م���','��0M�h!�T���F)<b���!�','',0,'?'),('0xbe�����5uŰ@','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSome.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSome.js',0,'Վ��k�h�-PYp�','Վ��k�h�-PYp�','�)��JAH���[Ă��C\'k��I�t�1<;:','',0,'?'),('0x�h��ͭK��3��T','wp-includes/class-wp-fatal-error-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-fatal-error-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\\r%Ϻw�TwAHL�','�ΓԃH8ȼ�G_�P���:u���۱�C�','',0,'?'),('0��?�R�R\0��e��','wp-content/themes/mint/node_modules/bower/lib/node_modules/write-file-atomic/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/write-file-atomic/index.js',0,'�1�\0>ߚm(1�*���V','�1�\0>ߚm(1�*���V','.!b�b��kr��uJ���s�W5`������','',0,'?'),('0����}�g ��VB�r','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/MethodDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/MethodDeclarationSniff.php',0,'L\'�|�7C$r����V�','L\'�|�7C$r����V�','Y���;w���\r��u�[�T�L���M{�n*U','',0,'?'),('0����a�O�ZI|I�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�HY ��²��','zI]�_�Dz��!�bш�6�d�uY�3','',0,'?'),('0����ط�k���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseDelay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseDelay.js',0,'O�j^g����\n/V2','O�j^g����\n/V2','S�z�[2ve5�$�t�H���B��7�! �di��','',0,'?'),('0����k� ?ޞ���','wp-includes/js/jquery/ui/effect-scale.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-scale.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�\\����c�:jF��\'','�A���\Z��)���{�d��L�7����#a��','',0,'?'),('0�v��T�±@Y�]�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/list.js',0,']�*��Jq���\"�a�z�',']�*��Jq���\"�a�z�','#i�M}zc3M�#b���4���zOW���d\n��','',0,'?'),('0���z{�&�s��C�','wp-content/themes/twentytwentyfive/templates/single.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/templates/single.html',0,'�H��]b�KEV���a�','�H��]b�KEV���a�','���$9y~收�]͑��ke�7Fe��C','',0,'?'),('0���4��$R �\"��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/partialRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/partialRight.js',0,',���\"�/�ʇߢ�.',',���\"�/�ʇߢ�.','�7��K�� F�>X}V��5\Z\n���S��.�','',0,'?'),('0��r�0ݡ���\rK�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/convert_text.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/convert_text.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&���?-�9�D��','�|W^�9R?6Y��.?�u�s&b!7U}�t3\0','',0,'?'),('0��<K�}�����ׇ','wp-includes/blocks/image/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����F�&��\r�C��I','B�O��+¾@M�:c�J��\n[ē�T���c','',0,'?'),('0�6�A@�1�>\" P�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/NamingConventions/ValidVariableNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/NamingConventions/ValidVariableNameSniff.php',0,'�r;��/���`n�)R','�r;��/���`n�)R','r���Sb�2M��\Z�x�U��W���#�V','',0,'?'),('0���E\00���X�H','wp-includes/js/colorpicker.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/colorpicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/����kF���x�q�','T@\"$:���� G�LB�}2P��HR��� �','',0,'?'),('0�C^�@����Pl��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/mn.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/mn.php',0,'�l�H�I�Ҝ�Ya���','�l�H�I�Ҝ�Ya���','��F;t��LY�C>��0><���U�(�ٔ��2','',0,'?'),('0Ņr��%����o�g6','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/num.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/num.js',0,'<k��*�,�qy~(r?��','<k��*�,�qy~(r?��',')���%�Cˋ\"x�*��v����Tf^Έ��t','',0,'?'),('0ʢ��+\n�\'���\Zp','wp-content/plugins/gravityforms/assets/js/dist/libraries.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/libraries.min.js',0,'M�,\Z� \"��:�`X�/�','M�,\Z� \"��:�`X�/�','�0{�ߕ��j�`�sp�Ƴ��� �]1e','',0,'?'),('0���m&��\"�5� µT','wp-content/plugins/wordpress-seo/src/context/meta-tags-context.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/context/meta-tags-context.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{��G�\'\\�#Xj��','|]�h��u?8M���[u���l�7�0���Ւ���','',0,'?'),('0�dۦZP�2��o�','wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xM�g��_�zv�7�I','�]�/�r��^Q@떱w#���4!������','',0,'?'),('0�=@ n�7�8d.d�','wp-content/plugins/wp-optimize/optimizations/attachments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/attachments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��BCb`4�O���ňv�','!��_� ��\0�ت\'�Z3\'�����\nvo��c^','',0,'?'),('0�\'%��ԯ�S�2��\Za','wp-content/plugins/wp-optimize/templates/database/table-analysis.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/database/table-analysis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2r��.J\\��qP�k','�\0�a>�~�v��ơ9P�DU��Jဉu','',0,'?'),('0�x�*0y��,f�:�&','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetSettings.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetSettings.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OE���N�tsل�]�','3�O�Ed��ZhSI�9��Ǿ���5H�y2�N�\\mj','',0,'?'),('0� NI�h���D^�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/mapValues.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/mapValues.js',0,'�u�\0H�)@�[R�','�u�\0H�)@�[R�','G)/�}˫�{Jl�>_W}�`+���h�-Z��|','',0,'?'),('0�r�\ZSk�^�hI���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/startCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/startCase.js',0,'��ahYy-��U%1�К','��ahYy-��U%1�К','�PV�Y�\0�s���w��5\" md���','',0,'?'),('0�$�e�,\n$V��0��','wp-content/themes/mint/node_modules/less/lib/less/tree/quoted.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/quoted.js',0,'v�Ld�D�qO��P','v�Ld�D�qO��P','���xdj-,l\'1�D�F�f7����^�,��k���','',0,'?'),('0��A 勭��WMV','wp-content/themes/mint/node_modules/safe-buffer/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/safe-buffer/index.js',0,'�b/�K��:����?','�b/�K��:����?','�O}*��R��-y�����\n�h]Bk�\'��','',0,'?'),('0��$X8F�nŃk���','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f�UEM��X`�G�','�E\'Px%���,�4��4;k60+�K���.Q]','',0,'?'),('1E�Ϻ�SF�TúE��','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UploadedFile.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UploadedFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U����{ᔎV>p�&','��&�b������+�W(�0��(.Iӳ�٢ܹ','',0,'?'),('1}cx����Y�/Ů!','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���rj�Kc\n�bK���','�����3��$�#<\'���e��2-�@.eP��','',0,'?'),('1\"e��`��Ì�y��@','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/replaceAccents.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/replaceAccents.js',0,'[r2�uWƃ3����','[r2�uWƃ3����','7/�op�^��Ψ���z�F��7N�0��D�','',0,'?'),('1#md-$��h�bCT�','wp-content/themes/mint/node_modules/qs/lib/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/qs/lib/stringify.js',0,'�Ν�˫f�G·\'�jl�','�Ν�˫f�G·\'�jl�','��N�E�irf�݇\Z���n+�X���ٻ','',0,'?'),('1-�����g97���','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#fG�\rւ��Bg 0','��c�(����k1�����2�Qw4��?0','',0,'?'),('1=9�\ryJS{�1�g̸','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/CraftInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/CraftInstallerTest.php',0,'��]�y=��I��w#n&','��]�y=��I��w#n&','X�9{�P�㶞\n��!��@f�]�*?2|','',0,'?'),('1?o�x��<�?���6','wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?v@�Y�a�p�v���','p���ZʇO�F�M��4�V92�QP��\0����','',0,'?'),('1E�q>M�uD|��q�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php',0,'�kG�&�Xp$�=�.�l','�kG�&�Xp$�=�.�l','\0_~�d���;AŒUG�bM!V��hV�0q','',0,'?'),('1[�X1���\'��g^F','wp-content/plugins/advanced-custom-fields-pro/acf.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/acf.php',0,'B��o^��4�L5rb�+,','B��o^��4�L5rb�+,','qtԏhY�=�ŝ���Ϡ\0Y�zc��@�=���','',0,'?'),('1^��T��=�e��z$�','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/lodash/dist/lodash.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/lodash/dist/lodash.min.js',0,'�;�R�l����P��_','�;�R�l����P��_','� �G���; �����N��pA5��V�r4U','',0,'?'),('1bK\",�{��S>�Yd�W','wp-content/plugins/wp-migrate-db-pro/class/Common/Sanitize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Sanitize.php',0,'ɓ�oOL���K5F�ǭ','ɓ�oOL���K5F�ǭ','ɔ7I_E@�G�eǸ)2�k��gf��#��SN��','',0,'?'),('1p��I�����aM�.','wp-content/themes/mint/node_modules/shelljs/src/toEnd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/toEnd.js',0,'��j��\n�Ϯp��Q��E','��j��\n�Ϯp��Q��E','&�>�\\\Z���b�w���K����O`�h','',0,'?'),('1s�)6�Ӷ���C��Η','wp-admin/user/admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/user/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T^�1�����A�|','Y��%մ9����N��?\\v\\a��M���~','',0,'?'),('1z��n���6f�ls,m','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/rol.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/rol.js',0,'x��l��v��!c�<�','x��l��v��!c�<�','�̸�2z��QO�*� D�-wvNV�^9��0��%','',0,'?'),('1|v�<��-V��A]�','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-installation-error-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-installation-error-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�(�8�K��� �','\\���&�:*�I����0�)�z։�֜��W�','',0,'?'),('1�!�����Cg�E�r','wp-content/plugins/wp-optimize/js/minify-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/minify-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`�ж*`tT�^ij','�)V\no��0̏��I4[�\0��z�����sM�{^^','',0,'?'),('1��/ `�s���;=\Z','wp-content/plugins/wordpress-seo/src/repositories/indexable-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/repositories/indexable-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\\����\\�,�Uw�&>','1\Z,�#�x�Z���=�-�\"�ۓ�앿O�/ �','',0,'?'),('1�b�i\0��q�*�\\X1S','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/disable-concatenate-scripts-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin/disable-concatenate-scripts-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ֱ��4�5����','��v��FBE�y@i@\0;EIX� z�+Wc*','',0,'?'),('1��W��Z���`��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/checkbox.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/checkbox.js',0,'#� \\�Tcj��I�','#� \\�Tcj��I�','n���W�I���I��z���~xu�t��S}�','',0,'?'),('1��oOv黅�p�Q2��','wp-content/plugins/gravityforms/includes/settings/js/dependencies.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/js/dependencies.min.js',0,'����5�>_P�w�','����5�>_P�w�','�������6)M�}>��Tq�Y��Y���','',0,'?'),('1�?�Yq��i����','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/MenuProvider.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/MenuProvider.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��N-�X�ab\\��\"�','[\\��_9�hH��V7�Y�ۀ�����b','',0,'?'),('1���pa�`H0ߢ�e','wp-includes/js/dist/url.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/url.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5�|���ٝ\r:���','r2q��j���9�3�!1�q������/��','',0,'?'),('1�#��W�ԏS�$݅H','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/wrapperPlant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/wrapperPlant.js',0,'s�o����(����','s�o����(����','9� ��k:\r�נ\r \"��L�f�N\'��','',0,'?'),('1���w�<��>2O','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/find.js',0,'�T!��#-��!�/KA','�T!��#-��!�/KA','���\n�X(��-\\ؓ^d��c.F)�WZffŊ>','',0,'?'),('1�W͎�XD=-���','wp-content/plugins/wordpress-seo/src/generators/schema/howto.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generators/schema/howto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w��Mڻ��8*l �','\"��v�������?��/!�f�:����','',0,'?'),('1��:2�HBї�.;','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-taxonomy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-taxonomy.php',0,'����9��/UW+','����9��/UW+','}��r��n$T��XAU$ҭ�`�����+M����','',0,'?'),('1БY���4I^p�','wp-includes/sodium_compat/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0?��4\'+̶�L)$�','�Y ORٴ@�M������=���x�M�K�\Z.','',0,'?'),('1�Çѐ��e�-�%)4','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/TrackingCodeTemplate.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/TrackingCodeTemplate.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�\0E��Ӄ$mr%�-�l','�����\Z��#%�.M=�z�d�.��%�tR9�J�','',0,'?'),('1�EfQ�v#)�\n�0EkQ','wp-admin/images/media-button-image.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/media-button-image.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���m� \'���A','iķ��z[����/\"� X���{�o��:��','',0,'?'),('1�y��FU;��x�V','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Commands/Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Commands/Command.php',0,',*�j맟��V)�՛',',*�j맟��V)�՛','��ה�]�+���UǺ�\n�fBB�d���N\\F�','',0,'?'),('1�*\0��x(Q���','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/TokenInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/TokenInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\Z���0�|\\��:','檀/y\Z�d���Au��e)l����G`','',0,'?'),('1�=��\n���c�5�g','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/rtrim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/rtrim.js',0,'��\\����/;�U/1��','��\\����/;�U/1��','�X��E��`G��u¶,����?� `|���5/�','',0,'?'),('1��ӂ�\nr/���֭R�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/ValidDefaultValueSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/ValidDefaultValueSniff.php',0,')����N�4���\Z��6',')����N�4���\Z��6','�r �02L�������/H�٬D�y�>N��K','',0,'?'),('1��X�/�t60^Ҁ!�7','wp-includes/js/comment-reply.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/comment-reply.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','䤝�������M��','F�ԁ��5�\n������\Z���0H�0�ϻ���G','',0,'?'),('1��]9�K�a,��\r�O?','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/log.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/log.js',0,'��\rSk���[���Ip�{','��\rSk���[���Ip�{','2���s/�\"��\r�&R��g��\nh�@zj','',0,'?'),('2Z�v��p$x�@V�','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�����s&�=�L�','����2re�#��x��h\0>�����˯^h�6','',0,'?'),('2\nJY�ɜ��\\RK�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseHas.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseHas.js',0,'&\"+xZ|vr�L�\' ','&\"+xZ|vr�L�\' ','�i���Yôe��{�jV+E��_����','',0,'?'),('2J�y*�m����]W','wp-includes/js/dist/a11y.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/a11y.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~&o���T�祴','|�Z��\'�l��y�$�5e�5_�Y�w��Z����S','',0,'?'),('2a�?5,�]���脂','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/partial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/partial.js',0,'�)�����\\F0u��','�)�����\\F0u��','��\n�@?}y2)\"�w��ύ�5�\Z��a','',0,'?'),('2�}?n�p�Q���zMF','wp-content/themes/mint/node_modules/bower/lib/node_modules/tough-cookie/lib/pathMatch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tough-cookie/lib/pathMatch.js',0,'��ʨ�H�ѣ�%V]','��ʨ�H�ѣ�%V]','\0�h�)gL�����L(ꇊ�h���b,�pg','',0,'?'),('2�--�����g�>���','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until_char.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until_char.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0^n9�}�>e����J�','�H�qڽ,��bR��6��q��\n?5ܸKl','',0,'?'),('2��ݥ�Q)��+xId�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/contains.js',0,'�,~Yb�\0��\0�#g��','�,~Yb�\0��\0�#g��','�W%��|�*K�����-�����0��`��','',0,'?'),('2b�U��\0��s�pd0�','wp-includes/js/clipboard.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/clipboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s�����djI~�i�T�','Q����]qF����ضU��J�\"���\r�/^0','',0,'?'),('2 O5��5,d&�Rƞ','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3�p�KJzո77!w&J','i��{.bzӑ�v�涆㐩�:ݍ:��&�0��','',0,'?'),('2!q�aU�\'�ߨ�_n�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-he_IL.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-he_IL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`��xm��IKO�p���','�lst�D[_h��`�6+M:�f:�o�4�C','',0,'?'),('2*R�,�نU�} �','wp-content/plugins/soil/src/Modules/NavWalkerModule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/src/Modules/NavWalkerModule.php',0,'�n)Y笁lW1�C\0��','�n)Y笁lW1�C\0��','⪣q\Zm�ЙqN���K���%�)��bXY��','',0,'?'),('23�>��T4��$�J','wp-content/themes/mint/node_modules/bower/lib/node_modules/signal-exit/signals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/signal-exit/signals.js',0,'���=Ή�fHI3��8�','���=Ή�fHI3��8�','IQ�Ӧl�����s��%@x hσQVf(���','',0,'?'),('25��_�M�7�P�Z','wp-content/plugins/wp-migrate-db-pro/vendor/psr/container/src/ContainerExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/psr/container/src/ContainerExceptionInterface.php',0,'9�8��vq$103!���','9�8��vq$103!���','19!���zy{\Z��:��]��kF��@\\','',0,'?'),('2@�j�j\0�kӲ��Ә','wp-admin/includes/template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3c�AB#����*�#','��[�h�l�����nw�M��s���\"3','',0,'?'),('2D��%�J����?��\Z','wp-includes/js/dist/wordcount.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/wordcount.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Zd��1�`6����r','5i�gKy�� ���uD��,�3t��)P�','',0,'?'),('2L�\\\"GBv�)�|���','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/config/config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/config/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���u�]6��7m����','}���`��0=u&Ge���+��p�7B�k~[.','',0,'?'),('2S� }�J�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/removeNonWord.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/removeNonWord.js',0,'\0)?��=�c��&z�','\0)?��=�c��&z�','���_B���\0��W�����?!�UK>3��0I','',0,'?'),('2Y� ��oq&�Z���','wp-includes/class-wp-block.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N�S�w(U�z�?O','\\�֮R��z0�m�%��4�ěi�\n�OaԦ�','',0,'?'),('2\\��%#������A�ǘ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toArray.js',0,'~�-��D؆�~\"-3','~�-��D؆�~\"-3','�~^���g_�44��&-�ih\r[��c|�� ��','',0,'?'),('2\\���|)�;\0t��AE>','wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/node_modules/q/benchmark/compare-with-callbacks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/node_modules/q/benchmark/compare-with-callbacks.js',0,'��|�c\r�L�mv<�d','��|�c\r�L�mv<�d','.(U�G�%�h��M��\Zr/=��_9��*p5','',0,'?'),('2`w��s�LL_@P��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/dist/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/dist/async.js',0,'葬�剾)Z`�t','葬�剾)Z`�t','�nrɳP���!rP⻄$I8�9!-p���#','',0,'?'),('2a\"2-Ŋ2�^�AS�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/Table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/Table.php',0,']�k�QS�Z��}AU�?�',']�k�QS�Z��}AU�?�','i.��P0��8�;����,��y�q�H~��5','',0,'?'),('2cﱦ<�X#>�z*�','wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/lib/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/lib/stringify.js',0,'�/ԕ�U���lo3Y','�/ԕ�U���lo3Y','1��$��.@5%%(����K���Z�i\ZO�ma','',0,'?'),('2f~���v��X�3�L','wp-includes/blocks/post-comments-form/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-comments-form/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F������!t�18�','��.K�0����X��2u��0�H�����|','',0,'?'),('2gl�bC�d�M`H��','wp-includes/css/dist/block-library/reset.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/reset.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$X�yR�I��S���','���2�bm�qV�ɻ,5��\n��e�3rÐ','',0,'?'),('2j�L,���W\r��W$��','wp-admin/css/colors/sunrise/colors-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/sunrise/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�d��!Z�5*f>F��','�R~#�����n� _`�s,�h&�@nv7(WU','',0,'?'),('2n���͡��ݲ&��l','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/js/admin-global.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��q!��\0𭀠\'��','�W�4$a���\'x���-��Kμ�#�Z��','',0,'?'),('2n���U�L�q3��6Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config-skipping-tokens.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config-skipping-tokens.js',0,'��~gY��a���mF3�','��~gY��a���mF3�','f!<P*����^/D����0���̑��a�:��','',0,'?'),('2r}�V�ĥ$^���n/','wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�^n=(��&��݂�N&','S��DIB�z�_-?(Y��pE�y�ƹA�','',0,'?'),('2w�\\���\r0��6W� ','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Loader/Loader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Loader/Loader.php',0,'��5�p���q��c�\Z�','��5�p���q��c�\Z�','��4��.\0)؝�:#�3�S�6A7�(I5��̈.+','',0,'?'),('2}ܽ�Q(�,S��z','wp-includes/SimplePie/src/Cache/NameFilter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Cache/NameFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VQ��|o;ĘUB͉�|�','��bP�⏖�����������\"�m�GWbt�g','',0,'?'),('2�hC�#jܯ�J��','wp-content/themes/mint/node_modules/node-uuid/uuid.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/node-uuid/uuid.js',0,'�x0��j��p��t','�x0��j��p��t','��p�����ݨL��q 4��%&K~�','',0,'?'),('2���!C|�R4�ض�J','wp-includes/blocks/paragraph/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/paragraph/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڠ�.6��](�r��','��\r��4���ޠ��&�_�x![�x~��','',0,'?'),('2���r���JT��','wp-content/themes/mint/node_modules/bower/lib/node_modules/figures/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/figures/index.js',0,'I�!^��$��[:y�6','I�!^��$��[:y�6','����.�����K�x����B?&����_���:','',0,'?'),('2��k�Ξ�)�a;�L','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flowRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flowRight.js',0,'�|��h#�ݥE�=�4�','�|��h#�ݥE�=�4�','�|���H���^�ñ�x����r��{��','',0,'?'),('2���v���:�i�.','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-fileinput.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-fileinput.js',0,'�W5�4}o\'��|鈽\Z','�W5�4}o\'��|鈽\Z','��c?��\"8���Jq��(�\nLǪp�WB����\Z','',0,'?'),('2���]Р�FR�#<��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/events/CallQueuedListener.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/events/CallQueuedListener.php',0,'Y�цl�W/�jS�%�.','Y�цl�W/�jS�%�.','������1]���Œee�!7\rf��:T��0','',0,'?'),('2�&�q���עų��V','wp-content/plugins/akismet/_inc/img/akismet-refresh-logo@2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/_inc/img/akismet-refresh-logo@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ���Fx풹A�Ȋ','K�(Xxہ��. �3,�\ZFy#^�y\n�(�L�V','',0,'?'),('2��DM���6\Z��B','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UriFactoryInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/UriFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�8#U�9=�ӡ\Z','j\n�b�2F�Da�{�_L+.�K2�k�\r2','',0,'?'),('2�|�(ủt��T��','wp-admin/privacy-policy-guide.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/privacy-policy-guide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�O1�]8\n�6�','�eM��E��9�*b6��8}I�^�Z���z�','',0,'?'),('2��㺨a|F�l3]�','wp-includes/customize/class-wp-customize-new-menu-section.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-new-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �sL2/�B�����','H\'�s�ӽ����I�$��Ӧ�ͤ�X�!�','',0,'?'),('2��>�p����/��(h�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/toLookup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/toLookup.js',0,'3�5�5�b���/W۔','3�5�5�b���/W۔','���Ђ����K����Y@8E�S��T���6��','',0,'?'),('2�v��\'��9\r��z','wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��bD�@p�G+��','*DZ�>�Bg�&Y�Y������4(<�/','',0,'?'),('2�`���J*�-�Jg��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/equalArrays.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/equalArrays.js',0,'�?��yq�X]$$}r�rh','�?��yq�X]$$}r�rh','TP�B�ff�/T�9�<?�����h�\n1�Sel�{','',0,'?'),('2��̈́�4�3����8�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/OntoWikiInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/OntoWikiInstallerTest.php',0,'����jԇ��P�EF��','����jԇ��P�EF��','i\\:�߫\"2��Z��#��}e���ܫ�z-M','',0,'?'),('2�-��۰�;�n�|���','wp-includes/SimplePie/library/SimplePie/HTTP/Parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/HTTP/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-o.��\r�l)U','�O�|�r�iK�P�Q���NN.��t�_\r>:','',0,'?'),('2ģ��_�D�x���','wp-content/plugins/wordfence/views/common/block-navigation-option.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/block-navigation-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�����~�}t.�K','M�N��������F`\r9���ӫ�rP�,Q','',0,'?'),('2��Zs��+z��','wp-includes/css/dist/block-directory/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-directory/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�%�Q��vo��C','QR~��H��ȕ���%<��{���?�pջ�','',0,'?'),('2�0mK�:r²\\0\nB�','wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x���9/��Z�h�6�\n','�J<<���x?�#�o������Jn8�:j��','',0,'?'),('2���ŵ������','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortBy.js',0,'w)�Ϯ�����[�','w)�Ϯ�����[�','Z3&��7Q���Ċ�����A�2ie�X_�','',0,'?'),('2��|Q�s}�;T�5','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/WidgetProvider.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/WidgetProvider.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��Q}��,ztjC)�^','^�ٷ��L�������t�+�\\\\��S@\"U','',0,'?'),('2�!���}qޫc^h�3','wp-content/plugins/soil/tests/Unit/OptionsTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/Unit/OptionsTest.php',0,'����st�ny�C���','����st�ny�C���','�ͼ���=�3��썵K4��v��j]g��L','',0,'?'),('2�r 0�L;\0����5s','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/upperFirst.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/upperFirst.js',0,')�d\nŷqV�4}��ˡ',')�d\nŷqV�4}��ˡ','��>Vn��wf����8�3x������̣�','',0,'?'),('2�-�����#͊\\v��q','wp-content/themes/mint/node_modules/less/dist/less-1.4.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.4.1.js',0,'j��!�A�h�²�L','j��!�A�h�²�L','�-�ȯ���!�\"� �+�l�!������','',0,'?'),('3\0�1Mw�� C���4','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/normalizeLineBreaks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/normalizeLineBreaks.js',0,'�^,�t��Ɗ\0�7�O�','�^,�t��Ɗ\0�7�O�','e=y=��0�;x����\'\'`�{R���ԩ�aNM�','',0,'?'),('3/�sZ�>��N�Jsi.','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/th.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/th.php',0,'�W!r:�-��X�E�w�','�W!r:�-��X�E�w�','�ˊ�N�{t��쓛5vv�TCg؎���X-C�[','',0,'?'),('3�C���>^�l<��&','wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/lib.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d���s�]�v>k��','�����-?$g�+)qS�Zcg�1�-�*OYH�#','',0,'?'),('3��aS#؆�����','wp-content/themes/mint/node_modules/bower/lib/templates/helpers/rpad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/templates/helpers/rpad.js',0,'B������{��&o��','B������{��&o��','��[hx�L۷��6��\"#zBQ��z�!�L�$','',0,'?'),('3xqN�H�r�0j�p','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/strict.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/strict.js',0,'�\'������}M�::�','�\'������}M�::�','\r�\Z�\\��b�)�Y&e��ȁ�I�D���w8�f','',0,'?'),('3��HTWG��U \"J','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php',0,'�+��5�9s�?f��','�+��5�9s�?f��','�w,��A��Y-B(H`L���|y��(R��_','',0,'?'),('3\Z�-Ғ���,j�','wp-includes/blocks/comment-date.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N����Pn�F�MFБ','˺c��Jۻ���M��x�a���9$gnW��z�','',0,'?'),('3�w~�[Q]��\0\\b,�','wp-content/plugins/gravityforms/includes/system-status/js/clipboard.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/system-status/js/clipboard.min.js',0,'G*N��l�\0>`�f���','G*N��l�\0>`�f���','k�|�Nj�k��1p�e(㰝s$���h ��Y7�','',0,'?'),('3)�%� %�Vo�Q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/throttle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/throttle.js',0,'@�-�\0o�m�:�N�;_N','@�-�\0o�m�:�N�;_N','{w1-�`��I��u<������R�8ᎇ��=C��','',0,'?'),('3+z��.���6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�*�j���r� �',',a�)�\"��T}������vh�[7Z�o~��m��','',0,'?'),('3.��`m�8�0*Oۚk','wp-content/plugins/gravityforms/assets/js/dist/vendor-theme.min.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/vendor-theme.min.asset.php',0,'���I�ߐ#N ~3��','���I�ߐ#N ~3��','�Z[E�@\r�����L�F�گ����|�:�','',0,'?'),('3/K$桯|D7}��','wp-content/themes/mint/node_modules/bower/lib/node_modules/yargs/node_modules/camelcase/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/yargs/node_modules/camelcase/index.js',0,'�H��|JTh��-�-','�H��|JTh��-�-','��x������I���e�ƫh����sF�>Fʼ','',0,'?'),('31�,\n���aʑ\n�','wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.compat.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.compat.min.js',0,'@��}���+3����','@��}���+3����','��\0l��,��שa;�)���ܚ�_VZ\\�','',0,'?'),('35I��ח��iyN���','wp-content/themes/mint/node_modules/mime/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mime/test.js',0,'k\"L��,���E\r���','k\"L��,���E\r���','\\�J���*n��g�OPlJX�]bX������','',0,'?'),('38G[&Dr�A?+�','wp-content/themes/mint/node_modules/bower/lib/node_modules/chmodr/chmodr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/chmodr/chmodr.js',0,'r�6�fv��ob����','r�6�fv��ob����','��\'Œ;ߧpxb���\"�wr�� I�(*��<*','',0,'?'),('39�i�xJ�4ګ\"6r','wp-content/themes/mint/node_modules/grunt-wp-assets/tasks/version.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-wp-assets/tasks/version.js',0,'��I��4^B;��','��I��4^B;��','�����a0������{���1��\0�F�� �0','',0,'?'),('3Ljn��K��ç��','wp-content/plugins/wp-optimize/webp/class-wpo-webp-utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/webp/class-wpo-webp-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4��2 E�T��','�wyq$�|���q�\Z�W�OU4i 0/��T�','',0,'?'),('3Oe���V0�8�=�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php',0,'�Gʆ�6Ƹ���N�','�Gʆ�6Ƹ���N�','-�M��ֶ��s*��N8�t�[}��?l���i','',0,'?'),('3Rc�M�O�_�0�\Z�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/build.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/build.php',0,'������,�7\\�+�','������,�7\\�+�','�L��ϴ}�Va���t�)7�$ ������','',0,'?'),('3Y�#��6r\n�Yp�$��','wordfence-waf.php','/home/adaptiv2/juiceelectrical.co.nz/wordfence-waf.php',0,'����Ob#�%�yuw','����Ob#�%�yuw','�����f�����0�yv�@�������2','',0,'?'),('3[�w>�~�P�u�T?]�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayMap.js',0,'p:���d��Y���.','p:���d��Y���.','JdwM\\���7\'�U��]1�ߺ�+>��ׄ�@','',0,'?'),('3`g�1�8�J�\'���','wp-content/themes/mint/node_modules/hawk/test/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/test/server.js',0,'Y�-��9X0��|u ?','Y�-��9X0��|u ?','=*cL�\0�Hӄ=�~��N ��o�T{����\0��','',0,'?'),('3d�Ϋ�jK�<u��c!w','wp-content/plugins/wordpress-seo/src/helpers/schema/article-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/schema/article-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�\r���F\\oʝ�\nv','��Mf�}D�}Tg��{�$y6ª�\n�w�\\��b�+','',0,'?'),('3enE��U�`�','wp-content/plugins/wordpress-seo/css/dist/adminbar-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/adminbar-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','՛�\rp���Ć��m','�9�j��Y�>��u�Wf�+�g4=��y��','',0,'?'),('3h���\"I+[��E','wp-includes/js/clipboard.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/clipboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\r8ܞRO@��','3>0����D�2!J�w@��Ly����','',0,'?'),('3k��oW�5 k[mq','wp-admin/includes/continents-cities.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/continents-cities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����^�z\r�r����','��������,�`ĭ$��7��܁��{n','',0,'?'),('3p���\\�8�lD�q','wp-includes/sodium_compat/namespaced/Core/Util.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';��*�kLwB��d�=','ec[d�M?H�|�KY�\04��@� QA��:FF �','',0,'?'),('3z\'�O��v�J&�� ','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�JCo��4s�4��M=�','�~yf������,��S�5��ޏA\0���','',0,'?'),('3|_��ٻ �@0��]','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/gt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/gt.js',0,'��ͧ��N!��vc�','��ͧ��N!��vc�','�)�S\\��S+:�Z�g ��ց������r\Z�','',0,'?'),('3���\09��Z�A���.','wp-content/plugins/wordpress-seo/js/dist/languages/he.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/he.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v�EJ�$֞}��2�','S��\'�������A�j�·P�9�z�~G','',0,'?'),('3��Ue��&O$ޟ��&','wp-content/plugins/advanced-custom-fields-pro/pro/fields/class-acf-field-flexible-content.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/fields/class-acf-field-flexible-content.php',0,'��L����`;��� �f','��L����`;��� �f','�ѱ�8��勺�UkT\nꤴ�F������T','',0,'?'),('3�s���-1���!','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/QueryBuilderTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/QueryBuilderTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z��d����?��G�W','E�c�#�[$�=U���<��Zn�q��z� �','',0,'?'),('3�M}J��zTr텂=','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/startOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/startOf.js',0,'R���;��Vo��e�','R���;��Vo��e�','!�W{22FkW�b�(Y�n���N�Y����','',0,'?'),('3�ڮSx� ��4�v4','wp-content/plugins/advanced-custom-fields-pro/lang/acf-he_IL.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-he_IL.l10n.php',0,'�� �� ��,r��Y','�� �� ��,r��Y','�on�ei��b���>0��x�P?�\"��&m]�O�','',0,'?'),('3�8���`�{��`�>F','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time/now.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time/now.js',0,'7�í�Mw�|i�u�@�g','7�í�Mw�|i�u�@�g','u�n��q��fl:|�� \"�qǛ�(��;*s','',0,'?'),('3��J%k������?�','wp-content/plugins/wordpress-seo/admin/views/tabs/network/features.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/tabs/network/features.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�-%/^�˕7Ic�f','�}o��w�0�>�j���!�3�}�1�C�','',0,'?'),('3�֘�63]lZ�\0�0R','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/find.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/find.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̎���h.�e p<�Q','�uv�a+w�����<�Mj��aYvՌ�','',0,'?'),('3��|�I��\"��','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H�R���$�����˻','_�q5�K�����x\r��~ܭ\Z�B�2`��u','',0,'?'),('3��@�]Ɍ<M�*','wp-includes/html-api/class-wp-html-processor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-processor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g�Ock�}y��[','}�S�*ͪ�a��qWF憼����,%]�|&��','',0,'?'),('3�l���V9Np�','wp-content/plugins/wordpress-seo/license.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~�S}L�~#vv5�+,','-j�H�p�3Ů՚%<O�.�4L��:�v�&c�','',0,'?'),('3�7�]�b<�1s/~','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/stubArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/stubArray.js',0,'����=\0��R��','����=\0��R��','{�pB�[���i2*N���������F�YK','',0,'?'),('3�Qy������:.\0��~','wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/emoji.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/emoji.js',0,'8w3a�b�öE�\"8t�','8w3a�b�öE�\"8t�','��@?¨DF���ٚl!���7�� �-��','',0,'?'),('3�.��Aɺ�{����x�','wp-content/plugins/advanced-custom-fields-pro/assets/inc/datepicker/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/datepicker/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('3��-EZ�F�Y�<Z>�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sampleSize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sampleSize.js',0,'��PV\r�.�P���]?n','��PV\r�.�P���]?n','{~^`>0E�{��{1�Ďh�C�\n�ʶp','',0,'?'),('3�fpQ�z����','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/lib/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/lib/server.js',0,'�w$Li�ٮ{��','�w$Li�ٮ{��','�ڥ���f�ߐd>w\n\rYz�;�N��o�\'','',0,'?'),('3��Q�`�7ɚ��p�}','wp-content/plugins/gravityforms/includes/libraries/class-dom-parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/libraries/class-dom-parser.php',0,',..x�I\Z�����Y �',',..x�I\Z�����Y �','qM7�5�f&��;�\r�;�r@��{���l/','',0,'?'),('3���\'���RK�Bf�','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QO1�/<�>%\"�X��','�6�r�*�IY\0�C�9<��Jږ J*�xD','',0,'?'),('3�8*w (��<op_�P','wp-content/cache/wpo-cache/juiceelectrical.co.nz/latest-info/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/latest-info/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('3��fQ3�h�5[��W�<','wp-includes/Text/Diff/Renderer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Text/Diff/Renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w.���֨\"�&�R�<','���[�9�#�c��2��z����\\�\'?��H1','',0,'?'),('3�3<�7���E���՝','wp-content/themes/mint/node_modules/mkdirp/test/clobber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/test/clobber.js',0,'��7�.��KN8>Ȭ�','��7�.��KN8>Ȭ�','��2`F��_i�+�5�����e�8~CI�','',0,'?'),('3���औO�5(�','wp-includes/theme.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/theme.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0B��Z]M��sܗ�','eN�<�@\'�Y���0�\n �\Z�d.ou�\'�U','',0,'?'),('3��ng\0��\\\0 �W','wp-includes/IXR/class-IXR-value.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/IXR/class-IXR-value.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f�>�5l�j\0f�','�?h����͇ X��UP�O|H$�1���','',0,'?'),('3�R��=�����&�<C','wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php',0,'7ȭzYn3�,���a','7ȭzYn3�,���a','�\0��-h-�o�KO�*�if6�+�R3wjaK','',0,'?'),('3�u`B����+','wp-content/themes/mint/node_modules/bower/lib/node_modules/kind-of/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/kind-of/index.js',0,'=��-��U�d���a','=��-��U�d���a','�0����6���v�:�ͼ��!\'����\Z�l\Zj','',0,'?'),('3���[�p�{5�(g','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/ReturnFunctionValueSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/ReturnFunctionValueSniff.php',0,'Bk&_5{\'�N�,N>��','Bk&_5{\'�N�,N>��','���T+�\\�!��gz�/p��@�Ԟ�D��da��','',0,'?'),('3�V8�C�#Ά\\','wp-content/themes/mint/node_modules/grunt/lib/grunt/task.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/lib/grunt/task.js',0,']\'ug�%D�Y�߁�',']\'ug�%D�Y�߁�','-�ඝI��e6`$=C�K�iO���wv�Ђ0�','',0,'?'),('3�>�+\\�Xl�=�O�','wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/svg-img.svg.1','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/svg-img.svg.1',0,'�!팻ɀ����8/�','�!팻ɀ����8/�','$���9$&c�=����>Z䡧�\nS�������','',0,'?'),('3��5�W�u(\Z~~ц�$','wp-content/themes/mint/node_modules/minimist/test/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimist/test/parse.js',0,']�����mn#��\r',']�����mn#��\r','_1�P��S�L\'��-��ZUm�Btb���\\��','',0,'?'),('4\0������>f�c�','wp-content/plugins/envira-gallery/src/Compress/Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Compress/Container.php',0,',�M<�� Y*X��S�|',',�M<�� Y*X��S�|','��|��C�푨�C�5�Oqi��ρ��3a\'&��(','',0,'?'),('4\n�� m�]Ŀ�Њ��','wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!��{\\� d����`�','���ǿ\'�ɜ�LҪ�B>��� &-�{���','',0,'?'),('4\n��2�ߵ\"E��GÉ','wp-content/plugins/wordfence/lib/wfIpLocator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfIpLocator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rr���x�B�{��&&�','O�oM��U-���؟\Z��rs������O�}��@','',0,'?'),('4��\0�Æ��#q�jN&','wp-content/themes/mint/node_modules/pako/lib/deflate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/deflate.js',0,'sRBZ\Z����f�','sRBZ\Z����f�','^{��>`�9:����8���֬�K����Z','',0,'?'),('4���ڮRt(��','wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2��\'�]@]e�k+��',' ���a��)s�©�Ck#�7��f���\Z�','',0,'?'),('4f�mFw��\n��>','wp-content/plugins/wordpress-seo/src/helpers/url-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/url-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㾫����bA�OU�H9','�Z+X��n�:���\0g�P\'�)T��a��xi��?','',0,'?'),('4�31@�*r�����8','wp-includes/sodium_compat/namespaced/Core/Curve25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ś�L�\\�Pڜ�U','c>�5�o��������_�T9�L~;�e7�','',0,'?'),('4.�L��`*%8�','wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/spawn-sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/spawn-sync.js',0,'A08���Y1�ƞ{��','A08���Y1�ƞ{��','h�ݛ�k��\Z��0J�������b�[�r6','',0,'?'),('4��#���IJ��Kf','wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�����3��_�)�!',';���_Q!�t�m3��q��(��gz�)&3U','',0,'?'),('4m�6�)�:5�t�q�','wp-content/plugins/wordpress-seo/admin/import/plugins/class-importers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-importers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��#6��\'��ˌE,* ','|�r�\'����X���`yv�8��r������','',0,'?'),('4tV��^aVT�!9.','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/every.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/every.js',0,'���ȪZk\\����','���ȪZk\\����','�ȵ�2j���#���χK|�X : MK�|ű�','',0,'?'),('4%��Cd7m*��.�J','wp-content/themes/mint/node_modules/autoprefixer-core/lib/prefixer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/prefixer.js',0,'pwo|�(�j���ƒ�','pwo|�(�j���ƒ�','PH�c�ـ18����RH��p�^�y�C�?�','',0,'?'),('4-���#��^�*`�','wp-content/themes/mint/node_modules/shelljs/shell.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/shell.js',0,'�JTR��}K��4�~xQ7','�JTR��}K��4�~xQ7','�F�����`#/��O��]}�F[�ю�M4�','',0,'?'),('42��5�o=�S�#��','wp-content/plugins/wordpress-seo/admin/views/tabs/network/integrations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/tabs/network/integrations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y�F�����sl��G','�����O:�ߍo�����!�\Z����wT','',0,'?'),('46��Q^~\'���\")�/','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0G6\n1�~�H�1','l�-\0F[{�B��~iܪ��6��(O9��0�','',0,'?'),('48�Vt���+^X�','wp-includes/pomo/mo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\ML�8���Ei�','�Kg��\rşix�.>FϷ�>�㣝���/�g/F','',0,'?'),('4:b!�8�C\'��df','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/after.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/after.js',0,'�X��?2�_�A�?v','�X��?2�_�A�?v','�TT�L[-G�J(A�,}�R���^Z{(��P�','',0,'?'),('4;`߯z�? �{Ǟ@','wp-content/plugins/wordfence/images/2fa-whole.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/2fa-whole.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h»����$\ZPfX�','�ƪɝ����U[Z~��^�d�\'�X�ٮ���','',0,'?'),('4AI�n09��7c`','wp-includes/js/tinymce/utils/validate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/utils/validate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CL�1?o+;���{Y�','k�H��;�\0�kC�s� \'K�#45+eE|���0','',0,'?'),('4Bj@h��\r9 ��D�`','wp-content/themes/mint/node_modules/bower/lib/node_modules/rimraf/node_modules/glob/common.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rimraf/node_modules/glob/common.js',0,'\0Ay\\G\0���vr��','\0Ay\\G\0���vr��','>n+�����-\\;�����Y�%}Q�x','',0,'?'),('4Bx�0Z �N����#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/toInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/toInt.js',0,'���?�1 ��5�G?','���?�1 ��5�G?','��F��r*��vTp�d��;�f��t','',0,'?'),('4D�=�pg`6�z��y','wp-content/plugins/wordpress-seo/src/presenters/breadcrumbs-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/breadcrumbs-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b��Y�A��QDN�','D�uX�K��L<&Ƃ��\"�=1CUn�K�K���W','',0,'?'),('4G&;�y��Vel!��','wp-content/themes/mint/node_modules/pako/dist/pako_deflate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/dist/pako_deflate.js',0,'���EQ�ȢM�Cp\'�','���EQ�ȢM�Cp\'�','��{��(�Mfkz\0�L�S���|�\\�','',0,'?'),('4Lk�iADQ���%�P�','wp-content/plugins/wordpress-seo/src/conditionals/yoast-tools-page-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/yoast-tools-page-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��R�ȶ�2�pY�Q��r','�u��ȵ\'{\0�2m�~w\0�a\\���zY��3','',0,'?'),('4To���iE��t�','wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�s\r>J��(���E�','�K����(w��B$�\r�s��줇!�ਿ��D','',0,'?'),('4V6��uf ���J�Kd','wp-content/plugins/wordpress-seo/src/helpers/schema/image-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/schema/image-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\M�S£����� ��','�8��r�G\'A��r�=��6�e���eR��;��\058','',0,'?'),('4[%��<�O^Ϙ�u<','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/countSteps.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/countSteps.js',0,'I��{��x��ũJ�','I��{��x��ũJ�','*V�̑3�>1Tǣ�s(ӱ�H�1ޠ�','',0,'?'),('4_��}\0��ʪQ���!M','wp-content/plugins/wordpress-seo/js/dist/externals/replacementVariableEditor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/replacementVariableEditor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xZ(ԫ^_��=���','����RG��@�靰���[b�B�+�|�&j�','',0,'?'),('4a�[I�}���H�m)','wp-admin/css/deprecated-media.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/deprecated-media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JC\\s��_S�c��Z�;�','�[ם�r{%m��� ��j����y�ҋ��\n�{','',0,'?'),('4a����+�KZA�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue4.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue4.js',0,'�{�:�fO��NlY�','�{�:�fO��NlY�','��H�\'�[)ݚ�w�Ŝ+z��C*����c','',0,'?'),('4o5~����6@u�6��','wp-content/plugins/envira-gallery/assets/css/images/icons/leaf.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/leaf.svg',0,'�lZFgk�R�e��%�','�lZFgk�R�e��%�','�s<��$tWҭ\r%c&a�!qr��m�sxAr�M','',0,'?'),('4q�K�}�%!-���;�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toPairsIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toPairsIn.js',0,'-�����^��z\"2�\r�q','-�����^��z\"2�\r�q','nI%��0�\0��@eߞ�&s=I�^ޖHg��','',0,'?'),('4�1�rcQ�������','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Foo6Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Foo6Command.php',0,'o��?��&|˔d��','o��?��&|˔d��',' y?qi̯��2�8��|-z��S��{b','',0,'?'),('4����Φ�Q�!�,�i','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/test/no-module.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/test/no-module.js',0,'D�M_�-��!?��s','D�M_�-��!?��s','�I�94�Ո}��5O�eo٧�b�I�uF�%��{�','',0,'?'),('4�qEyVS/��o}�','wp-includes/blocks/tag-cloud/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/tag-cloud/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�MGu�����M��i�','ʦ�ii7��A�Q\'(��&+l���0^�|l��','',0,'?'),('4���6�*\"���Q','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pickBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pickBy.js',0,'��?8+;1���4�','��?8+;1���4�','\nf����<&��>\0M�rf�� *n��-wG.','',0,'?'),('4�˟H��<�3`x�d','wp-content/plugins/wordpress-seo/src/presenters/admin/premium-badge-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/premium-badge-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|$J!��v&e7�(A','�d?�\n���R~��lU3����ۖi�o','',0,'?'),('4�F� �9���]���','wp-content/plugins/gravityforms/includes/embed-form/config/class-gf-embed-config-i18n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/embed-form/config/class-gf-embed-config-i18n.php',0,'a�Q��7�~�o (%�','a�Q��7�~�o (%�','Ư�l�=�M0��ܖ�\0Gx����S��a9','',0,'?'),('4�^ ��ȇ|�\0��R','wp-content/plugins/envira-gallery/src/Admin/Status.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Status.php',0,'D��H\Z0�i��bJ?�','D��H\Z0�i��bJ?�','?B�u)��UE�!H-�^��E|�Z�-I��=� ','',0,'?'),('4�?67�����.g��E','wp-content/themes/mint/node_modules/source-map/lib/source-map/source-map-consumer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/lib/source-map/source-map-consumer.js',0,'=�P)?C��-?P�ܰ|','=�P)?C��-?P�ܰ|','IH���νF��d/�W�\\��(K�ˤ<Z��k','',0,'?'),('4����Fv��p����/','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpcs-ruleset.xml','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpcs-ruleset.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ي�j{|DuDn�BT','%x�\Z,�H�i*�3�W=���C��p�B(','',0,'?'),('4�����$�<�_ߓ\r�Q','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/ScheduleRunCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/ScheduleRunCommand.php',0,'�>�Mv^6,���~ા�','�>�Mv^6,���~ા�','\"BlD�[q�\0l�{L��9�{�w��Y�*`M�}','',0,'?'),('4���O�%i�C�ڨ%@','wp-content/plugins/gravityforms/includes/config/items/class-gf-config-global.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/config/items/class-gf-config-global.php',0,'ϫ�R�Kn~�\"A[n','ϫ�R�Kn~�\"A[n','�%�F�V�]�^��:Nc�֫%�<���','',0,'?'),('4���{���ir\r����','wp-content/themes/pinnclonesmalltest/resources/assets/build/postcss.config.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/build/postcss.config.js',0,'�~�c�>�ի�&��LR','�~�c�>�ի�&��LR','{�W �,%�\"?h�eC)��ca.n6�[L���','',0,'?'),('4�;K�7��P�VPm^�\n','wp-content/themes/mint/node_modules/node-uuid/lib/sha1-browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/node-uuid/lib/sha1-browser.js',0,'8@����gv֣E5','8@����gv֣E5','*�1��&�+���J֜�� _�kR��\Z�_�','',0,'?'),('4���� ���H$�2s','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/base64.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/base64.js',0,'ֺ�#>�Y�S�)YS','ֺ�#>�Y�S�)YS','�+!*��.W�eDT0/��K�妳���G>�\\','',0,'?'),('4ǣ{tF�� Dp#X�`J','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Foundation/Application.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Foundation/Application.php',0,'�}�g/Щ�\0�z��#�','�}�g/Щ�\0�z��#�','�a揶t��\\n�����+]t�\Z����Ec!�','',0,'?'),('4�rfXg��[�����x','wp-content/plugins/wp-optimize/security.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/security.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(K?��29��\r^(V*','CV�z�F�PG�(8���@�n�6�^\ry?�l�','',0,'?'),('4�0�G���G?ݑ�D��','wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0�\n��=fHT+b�','\'_�CpS^0\n���ʑW�9�#�AY\'p��p','',0,'?'),('4�ӡ*�?�\r.q�M��Y','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EmbeddedPhpSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EmbeddedPhpSniff.php',0,'ʦg�0���!�+>�*&','ʦg�0���!�+>�*&','�RN3���}�Ba���`%�*�Yu!�`{�~��','',0,'?'),('4�&Q:ͣ�ٙS\\& Qa','wp-content/plugins/wordpress-seo/src/helpers/author-archive-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/author-archive-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w#\r¥ec��?Pq�?','�p�<N�k O�u\">�Ū�GC�Ƶc�w�','',0,'?'),('4���3��s�f��L','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',0,'LĜ��L�Ȑr4�r','LĜ��L�Ȑr4�r','�����\r��&s�3��H�)CN�)�1\nJ�','',0,'?'),('4�\'+x�;#P��Y�[','wp-content/plugins/gravityforms/js/jquery.json-1.3.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/jquery.json-1.3.min.js',0,'i!��\Z�~����jC�','i!��\Z�~����jC�','�>,L`�{�;zl�4$Nׁ_(p6v�+��I�','',0,'?'),('5.T`�,ߓ��+�ɨ','wp-content/plugins/wp-optimize/google-fonts.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/google-fonts.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�qi�юv<Y���','f��3-&������!H�S\'�*�찍[~n���D�','',0,'?'),('5��0�J��@(\0`M','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� �0|\\��\rڃ','H09�̗�b��6w�yqr��]�e����\\','',0,'?'),('5o=2,{�%�Y�7�A','wp-content/themes/mint/node_modules/bower/lib/node_modules/async/lib/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/async/lib/async.js',0,'� �M�{܂V��1','� �M�{܂V��1','H\n��m��K�9�Y�i�L�ډo2��!h�','',0,'?'),('54��Z�ʗ�HJ','wp-includes/blocks/rss/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/rss/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�<�kЪ����5]�W','|>� �#�\"\\�W+p�Ͳ݇�ڧ��1�y�','',0,'?'),('5 |�`�~�Nw6���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randBool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randBool.js',0,'ч�T��8����2D�h','ч�T��8����2D�h','�r����i�*܋�65`�A��dݙ|�z��`�','',0,'?'),('5��zb@dA�c>��A�','wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/third-party/wpml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[���i���d�_�','@����J �H����%8FF䳙HW�4nU%j','',0,'?'),('5�?��y��<�2�','wp-admin/css/dashboard-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/dashboard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[|Ju����ͯ\"���/�','YB ���o�1w�f��v1� ߹0O��\"F�*�','',0,'?'),('5~�\\� ��t��g�','wp-content/plugins/advanced-custom-fields-pro/includes/revisions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/revisions.php',0,'�`�f̿İ˪뭇�v','�`�f̿İ˪뭇�v','�\nSv�V\n�4���r)��mp�X�\n*HO���g�','',0,'?'),('5(BT�ث��q����N','wp-content/themes/mint/node_modules/bower/lib/node_modules/sort-keys-length/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sort-keys-length/index.js',0,'8����=[��~��C�.','8����=[��~��C�.','Ө��/�6�����dWRs��@ z�&3�$','',0,'?'),('5.=���d)<p�eu�s^','wp-includes/sodium_compat/src/Core/Ed25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�E��F�)?4um����','�q����z�p�5\Z��UPP�炘�|q�$/t','',0,'?'),('58�d�`S61K>ۮ�v','wp-admin/css/colors/blue/colors-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/blue/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f��Q��7�7�6�','�3��{2v��#���4�V�����3:���� ','',0,'?'),('59 �\'����vJ�}','wp-content/themes/twentytwentytwo/templates/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/templates/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IQ��&�zM,��6�X','����:�&*���b�2f}v�Q�,.���ժ��','',0,'?'),('5Ao+��ݵH:>�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php',0,'��+�r\"`lҮ���vv','��+�r\"`lҮ���vv','#5}͏ �\\f��W���İ��~C�`��O��c,�','',0,'?'),('5C�)\nWu�꽝/F�cK','wp-includes/js/plupload/wp-plupload.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/plupload/wp-plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ڌ��U=vke�}�','==Qq�X���-���j��nH��ŀ>�\n','',0,'?'),('5F �m_|�����','wp-content/themes/mint/lib/nav.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/lib/nav.php',0,'H�C;$Ets������','H�C;$Ets������','�B,�Dͧ^�x��;���ԭ\\��#�`T�','',0,'?'),('5G�x����\0�V���','wp-content/plugins/wordpress-seo/src/images/Application/image-content-extractor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/images/Application/image-content-extractor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��2oU�}���m�Lj','����{��x���2�k ޓapH-�*�B�ՠ','',0,'?'),('5S{�TƁ���e�/�','wp-includes/class-walker-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-walker-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9������=��� ','j�\\y���Ԑ#���8\0�L\n�%�{�}(I\Zo��','',0,'?'),('5S���s���:Y\Z7','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/ErrorHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/ErrorHandler.php',0,'M_؟5�\\8B����<','M_؟5�\\8B����<','�\n{���/��驅�&YN5\n�Q�\01_�','',0,'?'),('5Z����Sμ�v�`6�9','wp-includes/version.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/version.php',0,'��L{���O>p>�O��','��L{���O>p>�O��','-�Q)�5W�1�u�F��%`�ؗ_aY�]��','',0,'?'),('5\\h>��w ���N�','wp-includes/registration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/registration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���S��D��31�','ՙ���vF��٫���P��B8.�����8�','',0,'?'),('5`�]\\ͭi\0���\ZJ�T','wp-includes/class-wp-embed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����b��IF/w�/��','A�\"-n��f�m��Ë�6�t�Y�wL�kZ�','',0,'?'),('5dL��W&�C\0L�L�','wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessc.inc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessc.inc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v�K�Z��_]<�','�ʁ�:��9�H:�FnZֱ�F��f��{y�','',0,'?'),('5n\\�?*��E��\"�','wp-content/themes/mint/node_modules/bower/lib/node_modules/oauth-sign/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/oauth-sign/index.js',0,'4���;��ʹ��\n���','4���;��ʹ��\n���','�~py`�rh}�V�ƤrV]�\\D����}�ͪ���{','',0,'?'),('5s ��xw�N���ϗ','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/index-of.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/index-of.js',0,'��b��n���d���','��b��n���d���','��L�o��.������4�А\0������','',0,'?'),('5sH؈�Z���װ7','wp-content/themes/twentytwentyfive/patterns/template-search-text-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-search-text-blog.php',0,'H�B\rM&�|��','H�B\rM&�|��','�r9�l�\03�j$���zW:c�s�R��*卽','',0,'?'),('5��92���^�%<��','wp-admin/edit-form-blocks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/edit-form-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�C�kk��O���','5K�>��c0�\Z�)�p�g^��1~��Z��L�','',0,'?'),('5�C����,�\'�;��','wp-content/themes/mint/node_modules/argparse/lib/action.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/lib/action.js',0,'ծQx#�[}���*�bOe','ծQx#�[}���*�bOe','__�����7Q!�<L�Jpէ��˩�!����','',0,'?'),('5��D����͐�0D�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Database/ModelIdentifier.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Database/ModelIdentifier.php',0,'�kv�,��dϊ�#�?_','�kv�,��dϊ�#�?_','��Κ�Y��0ꇺ+u�<������wWe�','',0,'?'),('5�7�N C=��-��c�','wp-content/plugins/wordfence/images/sort_asc.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/sort_asc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&�D�K���zS§0','N�Q�*��TZ%P��%���jܑtZn/�','',0,'?'),('5���ţQ�+���o�f','wp-content/themes/mint/node_modules/bower/lib/util/validLink.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/validLink.js',0,'H�>�}��T�d$�x','H�>�}��T�d$�x','����T-�Ұw��I�ᒊ��sz-?]?�`','',0,'?'),('5�#t�5R�шK����','wp-content/wflogs/config-livewaf.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/wflogs/config-livewaf.php',0,'��U$1n� \0�|�','��U$1n� \0�|�','��J����=�X�׳V3�v�/U�rg�Q��v2','',0,'?'),('5�Aǭ���Be���Lu','wp-content/themes/mint/node_modules/domutils/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/index.js',0,'��&�b�$T?��wG�','��&�b�$T?��wG�','�n�5�%���\\eXH#*��V���\\IM;~9R�','',0,'?'),('5�s_˴0f� ��','wp-content/themes/mint/node_modules/underscore.string/test/strings_standalone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/strings_standalone.js',0,'�S�׳bX�%\"�\0e','�S�׳bX�%\"�\0e','f,� �JV��y� �[��i}8���g��U��q�A','',0,'?'),('5���^hv{�a/A��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/ObjectInstantiationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/ObjectInstantiationSniff.php',0,'/��x�6���N�J�\'�','/��x�6���N�J�\'�','h���=Z�:�j+[7��3�Ǚ��x����p�Ҩ','',0,'?'),('5�[��as9�7�\Z�','wp-content/themes/mint/node_modules/coffee-script/lib/coffee-script/nodes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/coffee-script/lib/coffee-script/nodes.js',0,'Θ�m�a3��E���','Θ�m�a3��E���','�ֶZi�Qh-�YU�f��b�δ ��!��','',0,'?'),('5�c�`n��K��9�','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uU��L\'~V���<�C','���_S5 �),�->�U�\\<�ob��b�w�','',0,'?'),('5� ն۶1J\0%^e!','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/if.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/if.js',0,'a�;�s�4�/#�','a�;�s�4�/#�','�*T�����b���L9��^\Z��>\n�X�P�\"���i','',0,'?'),('5�R�h�jd[Ӣ�ю�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/map.js',0,'���f�R�\ZŚQB��O�','���f�R�\ZŚQB��O�','*��G֣��ɥ�M�z�jN��\Z���\0{�#�','',0,'?'),('5�����ڕ�PD@C�','wp-content/themes/mint/assets/img/logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/img/logo.svg',0,'�]��i3�0n�s�D�','�]��i3�0n�s�D�','c�vZCM���ޕ�NS����\\\0~h�f8�o','',0,'?'),('5��<��ZV�\rʞ��','wp-content/themes/pinnclonesmalltest/vendor/composer/autoload_static.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/autoload_static.php',0,'\"R����}���w�9 �','\"R����}���w�9 �','ܩW��q}�ߞ}K�\09\\��:7;BNCx���W�\'�','',0,'?'),('5�o_@��}/�00���','wp-content/themes/mint/node_modules/uglify-js/tools/props.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/tools/props.html',0,'=\"���PR�6x�','=\"���PR�6x�','[���Q���`�V�!W��|��,���TQ=q:�','',0,'?'),('5�\0��{�)��la�;i:','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-result.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-result.js',0,'P���e�@��K��x�','P���e�@��K��x�','����\"G�V\Z�t&����L��1�?���66�','',0,'?'),('5��*�!�i\r��','wp-content/plugins/wp-reviews-plugin-for-google/static/css/admin-editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/css/admin-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oI^��o�m%�jg-=�','H�,��sЕ�$Ll`�ZL���t#l`9��','',0,'?'),('5�t�:*�T>�<�SL','wp-content/themes/mint/node_modules/kind-of/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/kind-of/index.js',0,'�N(�<[�]�+��OU','�N(�<[�]�+��OU','����A%���g�T�e�-�:��rU��W�ʜ�T','',0,'?'),('6KDOg�?đ5��m','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/reject.js',0,'��P���I� ���','��P���I� ���','��=���/�a)�i�ξf5�Gn��[','',0,'?'),('6����j�R�c�s$g','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isArguments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isArguments.js',0,'�O�x�V��zMS�~��','�O�x�V��zMS�~��','�U��_ہ�R����I��B��ٹFިX��','',0,'?'),('6x�e�PXSb&U�','wp-content/plugins/wordpress-seo/src/introductions/user-interface/wistia-embed-permission-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/introductions/user-interface/wistia-embed-permission-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w��/ɖ�PG��E','m���r\'�/�9��Rj���\\2H���ºYl','',0,'?'),('6��Ĥ��X�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/root.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/root.js',0,'t�n�k�[i��k�s�,','t�n�k�[i��k�s�,','���\\>6��ct�֧�k�ǥ���^��Ge','',0,'?'),('6�����gu�רI��','wp-content/themes/mint/node_modules/autoprefixer-core/lib/autoprefixer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/autoprefixer.js',0,'�XFpr���\0~*��','�XFpr���\0~*��','�L-�+�:���U��a6�$�[��e��<��','',0,'?'),('6h �v!1�`\rmB','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php',0,'�# xD��T�p��','�# xD��T�p��','C ��x�26�f��Vk����2P�%��w�','',0,'?'),('6?�p�fR���Z','wp-content/themes/mint/node_modules/less/build/require.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/build/require.js',0,'B��li�[�Tz���lҊ','B��li�[�Tz���lҊ','�{�8��+:}�^�k_`uH_,]�)J�|e','',0,'?'),('6T�?���c[�Q6M','wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}{Y�T�.��ƙ-','p� C?�ɱ�\0�Y�ٗ)�۱0����6�','',0,'?'),('6n��L��+:���l�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/InstanceInjector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/InstanceInjector.php',0,'Av{<�0}Z����{�','Av{<�0}Z����{�','N��$A�N]�i�f��4�+7��np','',0,'?'),('6����X/��HL','wp-includes/js/mediaelement/wp-playlist.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/wp-playlist.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K^��Is�2�ҩQ','z ��m�E�039�]-k�2��������[2�o','',0,'?'),('6ף5��R�\ni�ƭo','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php',0,'Ro-V�g��yŖ?S','Ro-V�g��yŖ?S','�r\0\r��A�����y&Z$�aX��]��,A','',0,'?'),('6\"|��/�a�8�$%�','wp-content/plugins/wordfence/css/main.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/main.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�t���t�?��\Zo]H','���w��l��١lu��8<ı�l�W�k��*','',0,'?'),('6\'���R���F�W','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseNth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseNth.js',0,'�gg���Zr�I���','�gg���Zr�I���','�9�:o�#��gsء��\ZFpsᲜ�DW','',0,'?'),('6)_\">�+�Ӭ`���','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Command/LockableTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Command/LockableTrait.php',0,'e�XV�S�)f\Z1�8�d','e�XV�S�)f\Z1�8�d','�ي�c\"{�N8���y=�1�Д���� R j!','',0,'?'),('60Le�\'��&��.� z','wp-content/plugins/wordpress-seo/css/dist/dashboard-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/dashboard-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`8�٧��Kl�o$','$��&MQ�J\">�YG�/i�-�rmjS~$��','',0,'?'),('63Hó����O��c�','wp-content/plugins/wp-migrate-db-pro/class/autoload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/autoload.php',0,'T�M[��Y���T��','T�M[��Y���T��','Qĩ����2ṬY%��&w\"��uܭ}$\\��','',0,'?'),('6;I(�H�m�%��f�','wp-admin/css/farbtastic-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/farbtastic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7\n���)�{��','T�=�Y#��[���vr�H�ia��R���','',0,'?'),('6=EgYt��\Z��?,�','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream-browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream-browser.js',0,'� E<��������v�','� E<��������v�','�&IsV}|�������V��c��GX��X��','',0,'?'),('6K,A2���:rj�Hr','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/lpad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/lpad.js',0,'z�T\0eWWa�L3 Ζ�','z�T\0eWWa�L3 Ζ�','��9��Ů��X�ƀ\Z%Gj�+�����}\'\r*L','',0,'?'),('6Rv)ʭ��wقߣ��','wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/lodash.js',0,'�0ϸ���q�]�r4,','�0ϸ���q�]�r4,','��0H�u(��ق.�f���7��ㆥ8��','',0,'?'),('6S�+\r\\����FE�','wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/definition-engines/class-settings-definition-engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/definition-engines/class-settings-definition-engine.php',0,'y���o��!��3}�/��','y���o��!��3}�/��','��p�f㣞:�i���w$�͌�J/_*仫�b','',0,'?'),('6T3�>��JIV�G��','wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/isarray/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/isarray/index.js',0,'�F�3Z�R���LG��','�F�3Z�R���LG��','��b[� y�~rc���o�.z��|�eݺ)n','',0,'?'),('6WH����<7p�X','wp-content/plugins/envira-gallery/assets/js/gallery-preview.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/gallery-preview.js',0,'B9>�h$T� �Exç','B9>�h$T� �Exç','&�����[k0E�d�7���w��eM����','',0,'?'),('6[f�9�?�� _�','wp-content/plugins/wordfence/images/icons/bullet_yellow.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J&���Ɍ����ԔQ<','1���Nߗ����?*�i�í!F�Mp�9^.','',0,'?'),('6\\�<v������-\n,u','wp-content/plugins/wp-reviews-plugin-for-google/static/js/admin-widget.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/js/admin-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��$���3���','ŸY��yJ�%�sٝ��z��~�K������','',0,'?'),('6c�b��kk��i3�@�H','wp-content/plugins/wordfence/lib/menu_firewall_waf.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_firewall_waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m}�#`:��Po/�','�(��˕�=9L�/��*m�,{o�7ܺhVT��\\','',0,'?'),('6iD��6�l��)�<�','wp-content/plugins/wordpress-seo/src/presenters/twitter/title-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/twitter/title-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','60��Xrr�T?��u�\'','��P&�_��h�;\0�HΫ|�L)Ŕ�p/','',0,'?'),('6k�0���T[5˃�B','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/PhpFileLoaderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/PhpFileLoaderTest.php',0,'��\r V�qJ�1V','��\r V�qJ�1V',')a��f2K�A�W7�*�ȶ��\"%$�r','',0,'?'),('6pp�<W��Y\"~�\0�S','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-gf-rest-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-gf-rest-controller.php',0,'d ��Kەuk���H�','d ��Kەuk���H�','�)�N��$-�m(yF:h����������;e\Z�','',0,'?'),('6u����@���\0��M','wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-offset-tagline.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-offset-tagline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9LV� k��ֵ�y/','h��j�W�\'��g��l�\0Iء<$b�X���7�','',0,'?'),('6v=�~h8#�V>�v�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php',0,'�;��1��cH�$G�$��','�;��1��cH�$G�$��',']Ť�N��ɖ���Aᛣ�����\r���&�%{I','',0,'?'),('6|���G@u�$��!N','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/i18n_.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/i18n_.js',0,'�?�����d����','�?�����d����','��&%ٛ4�!]��n�h�$����r[tkNXT','',0,'?'),('6}f���;�����k� ','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/pl.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/pl.php',0,'S_�N��ww8�R�4f�','S_�N��ww8�R�4f�','e�<ʞ��Ļ��F�婝_Ѣ��@�W(���','',0,'?'),('6~�Z��~�s���','wp-content/plugins/wordpress-seo/src/conditionals/user-can-manage-wpseo-options-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/user-can-manage-wpseo-options-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*�d� vV%�O���','��|�o���rƹ��*{5\Z��+�{};cc�k','',0,'?'),('6�]j�v�W�k\r3-�','wp-admin/load-scripts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/load-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#o��G뽝@>��T.�','�8�zt��=���k$�����&WR�Έ�hV��','',0,'?'),('6��ƌ���C���+','wp-includes/sitemaps/providers/class-wp-sitemaps-users.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s���Ho��u�Gk��','�5��J�E��4߇Y�oX� ��#����T','',0,'?'),('6�3ȓ+Ό�!��','wp-content/plugins/wordpress-seo/admin/ajax/class-shortcode-filter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/ajax/class-shortcode-filter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a���&��ڭ��HB','h!����M���)|�3�����z=eg/U���BL','',0,'?'),('6�b��C#$\Z� 3mu','wp-content/plugins/wordpress-seo/src/conditionals/admin/doing-post-quick-edit-save-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/admin/doing-post-quick-edit-save-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q��\'$���AR\nT6','��)D��Q�:��%`��P�I���uj݄�$<*','',0,'?'),('6�t��\"��&;%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/removeNonWord.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/removeNonWord.js',0,'��h�[���[hvc','��h�[���[hvc','���;��zW�u�`�~f�!\Z��S_�y','',0,'?'),('6�\n�iG�x�(\'��','wp-content/themes/mint/node_modules/underscore.string/test/run-qunit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/run-qunit.js',0,'�K�y\']P+�-�','�K�y\']P+�-�','D��kz�\'Z�w�G�*� �����\rx�b�Y�','',0,'?'),('6��S]��S���','wp-content/plugins/wp-optimize/vendor/composer/autoload_namespaces.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4�?}�����Bz�','�Xu�� �~�B�G���]\\Og;�h�\\�','',0,'?'),('6��\Z\0�)�S�o#r[','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpunit-with-coverage.xml.dist','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpunit-with-coverage.xml.dist',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g~֣�HZa\0Ꭺ�','�w��k���W�b�ӵ�F��;�o:9����մ','',0,'?'),('6�o1�H�,�(���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/replaceAccents.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/replaceAccents.js',0,'u �\"$�>P����i�$','u �\"$�>P����i�$',':��?j�a��Z\r��A�5�g�(d����3��','',0,'?'),('6�����`�5�f6�?�i','wp-content/plugins/wordpress-seo/admin/interface-installable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/interface-installable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����B��\nQI��<','Qf�j����Ų�yR�;c����r���\"�8+','',0,'?'),('6�lLX/��H��3X=E','wp-includes/blocks/template-part/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/template-part/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���E�d]ĬB\r ��','ģ�6o�_i9�-UL9#ܞf�z%c�S���Js�','',0,'?'),('6��aH� ��Z��\0��','wp-includes/SimplePie/src/Author.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ݻ�\0��a�\'�� �','(U�8p�G��H��H�n�-�Ye0�v','',0,'?'),('6���N��A�p��]','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Vips.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Vips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\"���Ie���x2)H','ͺ�\'�X��]Z5��*�I\\�s�+�uG��9','',0,'?'),('6����7�H�ꦬB','wp-content/plugins/wordpress-seo/css/dist/workouts-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/workouts-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�ypT�ȿCT�+~�','��\\Ӯ{ު����C`��d�OB<n�VtBW�','',0,'?'),('6��]�% �8mj�:��','wp-content/plugins/wp-optimize/webp/class-wpo-webp-self-test.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/webp/class-wpo-webp-self-test.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 2fpZ�qh��\\�','H�uy��y&9c�עj�M�%� �T��m4','',0,'?'),('6̠,��_���q��u�','wp-admin/includes/class-wp-filesystem-ftpext.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-filesystem-ftpext.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_q���n�+\Zv��','%�a�?4Y(\"c&���{Sj��86�� �UmS�\r�','',0,'?'),('6�y�G5��\Z�܊ў��','wp-content/uploads/gravity_forms/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/gravity_forms/index.html',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('6҈�F[�N�,��','wp-includes/class-wp-block-bindings-source.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block-bindings-source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','votȤ�E��e?�\Z5','EC��Ɵluas�\0&K�l���Z�O�(nJ�Q$��','',0,'?'),('6٨ �:{�^D�','wp-includes/js/jquery/ui/accordion.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��H�%oF�,','[�a�Z �\n��2�z��㟘!�D���_�','',0,'?'),('6�?���#*�ޛ�I C','wp-content/plugins/wordpress-seo/blocks/structured-data-blocks/how-to/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/blocks/structured-data-blocks/how-to/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��n��75���A��','���:ϣ�T��CV�vi�Ӡ>oɪ/��k��','',0,'?'),('6�6�\\>�l�>��','wp-content/plugins/wp-optimize/vendor/mrclay/minify/config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<��Yvw�4�\Z>f�','FbQ_*��AY�����)X�B\nՖ�H�q','',0,'?'),('6��@�V��/�\0','wp-includes/blocks/comments/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u��O�!l*�O7��','��:��%[*�HWw�fO�C�B���7&X1','',0,'?'),('6��+���t���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/container/ContextualBindingBuilder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/container/ContextualBindingBuilder.php',0,'�\\3]?� iq6!=�\"','�\\3]?� iq6!=�\"','�s��[stQ=��P6�zg�6Y!g�n*�Y F`��','',0,'?'),('6��,#c!�J�L��','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/global/form-top.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/global/form-top.php',0,'X��z3�sK����[','X��z3�sK����[','�8%ש;\0���1����y8����z�:','',0,'?'),('6螁Ā ����1[','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayEvery.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayEvery.js',0,']]��3}��ƾ~B�Y',']]��3}��ƾ~B�Y','v2y����3(~�@m;�K+ �\"gׇ�\\�~','',0,'?'),('6��<J�o�U�X���1D','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mergeAllWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mergeAllWith.js',0,'��Q=���\n9m��c','��Q=���\n9m��c','6��4�Qӥ�����F�s��t��M��','',0,'?'),('6�o%di�^�+g��','wp-content/themes/mint/node_modules/source-map/test/source-map/test-source-map-consumer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/test/source-map/test-source-map-consumer.js',0,'��*2I\rPa�m+Nb','��*2I\rPa�m+Nb','�)�@2G�0��N��]7���ð��zx��`��','',0,'?'),('6��lsFp�G�\0ҹ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/wordwrap/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/wordwrap/index.js',0,'=���$aSTP��-�','=���$aSTP��-�','D�G\Z���z7e\\h�rC��JTiT`i%�W','',0,'?'),('6��4oo7�!��6��','wp-includes/blocks/post-author-name.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author-name.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<�\'U�2�\nwT}�','m����� ͬv^�Tu�0���^�3F�\'�','',0,'?'),('6�/Iws�N�p&��2S','wp-content/themes/mint/node_modules/spdx-expression-parse/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/spdx-expression-parse/index.js',0,'�t,mrd����<','�t,mrd����<','߾���ߩT�^�V:^C!H��)Az�E','',0,'?'),('7\0E��X��o��/','wp-content/themes/mint/node_modules/bower/lib/node_modules/center-align/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/center-align/utils.js',0,'6L�%���[���z�','6L�%���[���z�','��%�����Nqǐ��x�\n��]�VX���\"\0','',0,'?'),('7��,���<�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/AbstractConverter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/AbstractConverter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i��?��g����i>','��S��M@{JY��1�k9�ߕ���Tdɟ!\n�','',0,'?'),('7�S\'&�\Z2�:\\�','wp-content/plugins/gravityforms/includes/fields/class-gf-field-repeater.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-repeater.php',0,'rrj�)�D%�h8U83�','rrj�)�D%�h8U83�','�GN��hk� !?�x�Xw&D�+��J,~','',0,'?'),('7 ��(���l�ֈ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_initCloneObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_initCloneObject.js',0,'\0�o�UZ��������]','\0�o�UZ��������]','Q��Y��oZw����O�mo��9j�D��\"�','',0,'?'),('7\"��妿W�\r��ѽ�','wp-content/plugins/wordfence/lib/menu_wordfence_central.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_wordfence_central.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��QԘ\"�d�f�n �','�<O9�or�E�w�a��o�f�������r�s','',0,'?'),('7?*��86B^H�o���','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/mathml.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/mathml.js',0,'E�Y�x����9z�','E�Y�x����9z�','�m~:%�)\ru8̯eB>��\'�y�B���u_','',0,'?'),('7B�͈�H��dz��','wp-content/themes/mint/node_modules/hooker/test/hooker_test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hooker/test/hooker_test.js',0,'�3��V�����u�r�\Z�','�3��V�����u�r�\Z�','��ZSup�b�����T��~�J��\n|o\n','',0,'?'),('7C_e��� Q0�Q�','wp-includes/css/dist/preferences/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/preferences/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\"QO�<���]�NT�x','T��qM\'(\'%;���p�5��ɖ�KD','',0,'?'),('7Dޗ��eHp����','wp-content/themes/mint/node_modules/hoek/lib/escape.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hoek/lib/escape.js',0,'�ǏSI�Hj<dD��','�ǏSI�Hj<dD��','C��TZ���m8���KL_���M�����','',0,'?'),('7V�Pq*Dg���r��','wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/flyout.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/flyout.html',0,'�46��o\"�,>z��B','�46��o\"�,>z��B','G35$���S����:������qQ�\"���','',0,'?'),('7e�(#�*��XY\'��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/iteratee.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/iteratee.js',0,'��Z�\0�O��ڰ��*�','��Z�\0�O��ڰ��*�','���g���%R,�9��r�����1�CJan?','',0,'?'),('7m%��٘5�)�%C��','wp-content/plugins/envira-gallery/src/Widgets/EnviraWidgetRandom.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Widgets/EnviraWidgetRandom.php',0,'�����s�Ls��~��','�����s�Ls��~��','�o17OQ�Q ��p_�?�\\��O�<^HzS*̲�','',0,'?'),('7mK���&��������','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/loop_scan.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/loop_scan.js',0,' �e4��2����\0$8�c',' �e4��2����\0$8�c','��h�ﭔ\"r�C���0�Y�K}�2Hx]��i','',0,'?'),('7nV2x�ͅ]��y�w','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assignAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assignAll.js',0,'�m}�o���}���','�m}�o���}���','�>��Tu�piyz�}���1�E%8a���','',0,'?'),('7oj@��J� C�ȿ��','wp-includes/blocks/site-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Ztq���-ů��','נ���6�;�Y��P,;��<���|��e�','',0,'?'),('7r��uF��@J,','wp-content/plugins/wordfence/lib/wfDateLocalization.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfDateLocalization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�MZU��U�E���{�','��}�����X��)89���[�4\\!H\"��\\}�','',0,'?'),('7w�1�J�0�k','wp-content/plugins/wordpress-seo/admin/capabilities/class-abstract-capability-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/capabilities/class-abstract-capability-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y������Uq��','#�|�ve�ӑ���0�JE�BGY:����%�z','',0,'?'),('7|oOU���z\0Ef���','wp-admin/network/update-core.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���L�;G_bu\'\\','�v,I/L^���ww\ZX1�2�y�T�ɣI��~','',0,'?'),('7�ua<�(.��L՝H(','wp-content/plugins/wordpress-seo/admin/views/interface-yoast-form-element.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/interface-yoast-form-element.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N{\n�G\'�\rCj�B%','�T0V�l:\"��O� uU��u�Sv*��^bb','',0,'?'),('7���H�*�W`#�4�Z','wp-content/plugins/wp-optimize/templates/performance/site-health.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/performance/site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!�*�.%�xV�;��','��V��RZ��=�=l,\r�`9�*���wm��`�;�','',0,'?'),('7�-jb��M\"�jR�&�','wp-content/themes/mint/node_modules/less/test/browser/jasmine.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/jasmine.js',0,'8b-�p�i������','8b-�p�i������','�\02���P���vZ~DYmW���`�*�','',0,'?'),('7�C�\r�ǒt1z�,ݤ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/test/beep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/test/beep.js',0,'�\\����<�+�IXf��Y','�\\����<�+�IXf��Y','�럶�*/��s���|�Oh|\\r��e�1��','',0,'?'),('7���o�����L�[','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-tr_TR.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-tr_TR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�$��,��ꍵ2�','���.?�<��H1��P^۵�f\'��ǕS��Y','',0,'?'),('7�^�L�ؤ�����;/','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/lv.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/lv.php',0,'�Rl�(mM/�T��','�Rl�(mM/�T��','s����V��>��w�Op�W��G�,�|k�','',0,'?'),('7�!4�Y�\Z�&�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-locked.524d8e4b.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-locked.524d8e4b.svg',0,'H/�Cߺ_\n&�������','H/�Cߺ_\n&�������','�����NACNa-�[�ܻ�vH���+�','',0,'?'),('7������竕D���','wp-content/plugins/soil/tests/api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/api.php',0,'��z!���VjD��Gk','��z!���VjD��Gk','�v���G*� ��@����p��ɐ%h��','',0,'?'),('7�%Wy~P?�x��','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lzV6`wmZBs���','\r �8�&�J�34�б��ǽ�����','',0,'?'),('7��~�3g>+����','wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/admin-taxonomy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/admin-taxonomy.php',0,'Ԧi@Z�](��P�ݿ�','Ԧi@Z�](��P�ݿ�','����\'\'&���>]��;fj ����r��e�','',0,'?'),('7���o^l�:���B','wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� ��I�ݶ�3��S','!MڒޫDw����we(�!��=��ިd��,GW','',0,'?'),('7��jU��}@GdiS�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueue.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>����ź�`���L.�','T%%Pp�a\n_˅ؗ�o+�3�M�⧞���\'','',0,'?'),('7�GcHy\Z�<�:kU','wp-content/plugins/wordpress-seo/src/editors/domain/seo/title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/domain/seo/title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�Ey�_�e7��}�Y� ','-�8\"�^Zq0M�b�=K����\0���m�$s�','',0,'?'),('7������@�r5��','wp-includes/blocks/gallery/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/gallery/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]��I�P�!��n%�6','M��\"��/V��ԇH�zӿ��c)>i��M+�5','',0,'?'),('7�c�¢)��S�eb�','wp-includes/js/jquery/ui/menu.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(IS��p�ֵ\'�ZU�','n2���v$���n�\r6�,��WU[N�','',0,'?'),('7�c�.$P!�\"�','wp-content/plugins/wordfence/images/sort_desc.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/sort_desc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<���j��_�ˊR�2','*��-�9�.���HGO6/�L�):�C�d�z�','',0,'?'),('7�����I�w�_S��','wp-content/themes/pinnclonesmalltest/resources/views/index.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/index.blade.php',0,'��5C����K]f\n�3 ','��5C����K]f\n�3 ','J��7/�mx�<�(����ϼ�4�H��-���','',0,'?'),('7ϋ�t�d]B��?��','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/EnvNotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/EnvNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_�=&��� Wt�','�HS�l���8<*�p�3C��@ 2�a�','',0,'?'),('7� �<�t�8@���D','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/totalDaysInMonth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/totalDaysInMonth.js',0,'#^IpY�7bNڐ�B�0','#^IpY�7bNڐ�B�0','��\Z��I�P��\Z�)�@l;i�䂴���','',0,'?'),('7��Ou�U�@KcV','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_copySymbols.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_copySymbols.js',0,'I��3�1�=�','I��3�1�=�','WL��<���u\'d�c��������֫1e','',0,'?'),('7��E?��E}1���v]','wp-content/plugins/soil/tests/__fixtures__/modules/StubModule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/__fixtures__/modules/StubModule.php',0,'�I�[������t:','�I�[������t:','�?�\n�ti��Hm/��?���n��h��I_��','',0,'?'),('7�gp��zҀ|x���','wp-content/themes/pinnclonesmalltest/.eslintrc.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/.eslintrc.js',0,'uz�z�W�G� �>�?','uz�z�W�G� �>�?','m���&%�-+��+�h~K1hXBP�g��','',0,'?'),('7�Y|7�^\Z����Vq','wp-includes/blocks/site-logo/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-logo/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&�����U�OSp','��O���yc�qd��T��իf֕�͋,,','',0,'?'),('7�\\��CCx�泥{<','wp-content/plugins/wp-optimize/images/features/premium-support.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/premium-support.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���^�5��u����','�w:C�\'�?xj�$3b�ث𧎜��_�Υ����','',0,'?'),('7�;�m�/?�w��m�S','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_strictLastIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_strictLastIndexOf.js',0,',�=���I�e�s�@',',�=���I�e�s�@','\"��-�v9t���4o=܂,1C>!���','',0,'?'),('7�h��Ы��3YB�Y�f','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/eachOfLimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/eachOfLimit.js',0,'�i�TB7:�P(&�','�i�TB7:�P(&�','ԁ���*�\"�Õ\"�v�P>���2e��j\n','',0,'?'),('7�x��q�����H\n�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/1e21.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/1e21.js',0,'��\\ ��L��2�HLf�','��\\ ��L��2�HLf�','*ܥT�����~jR�uBmi@N,B��\rUgj','',0,'?'),('7���k�X�f�Xm�S�','wp-includes/js/dist/vendor/wp-polyfill-fetch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/wp-polyfill-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Hp��d��5/c�,','��h�qpTB6q2�9cB]_�η_�����G','',0,'?'),('7���IS�\nj���$','wp-content/themes/mint/lib/gallery.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/lib/gallery.php',0,'\"\'*!A�59��!Iu','\"\'*!A�59��!Iu','��֏ę�ǟ��𥋤� p���^\nZL*�','',0,'?'),('7�xb����z�9c','wp-content/themes/mint/assets/vendor/jquery/src/var/push.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/var/push.js',0,'m~�^�ACң�)�T','m~�^�ACң�)�T','�s;�M~:��p�a��·3�8iy����F�','',0,'?'),('7�i�E�$\r}����e','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Formatting/OperatorBracketSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Formatting/OperatorBracketSniff.php',0,'i&���x.d��`;��','i&���x.d��`;��','\00n����[�.|��d��U>L>!�@�A\'','',0,'?'),('7�u\Z#p�/;P�Xޤu','wp-content/plugins/wordpress-seo/images/academy/keyword_research.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/keyword_research.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b0�D�M�@d_�N�','��!y�+����m��qUX���W�jC�','',0,'?'),('7���Uϭ����YȮ','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Result/Error.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Result/Error.php',0,'��mӶNr�����E','��mӶNr�����E','����~�{�L�yB��I��E����5}�','',0,'?'),('7�<5ƺ�b��AaZ��','wp-content/themes/mint/node_modules/pako/lib/inflate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/inflate.js',0,'=��a2.P�m�����','=��a2.P�m�����','��b�Ll41�Ɠ9����)S*~ߠ��MRt�0','',0,'?'),('7���@1��y�֣','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/SchedulingMutex.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/SchedulingMutex.php',0,'nW}+���껝�>���','nW}+���껝�>���','�7I\'�CK�;�(qT�|~���.=�D�;R','',0,'?'),('7�2��_R�D��;n�','wp-includes/blocks/block/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/block/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H����,,���M�a��','=S3��{�e4_\r9<|�f����#��7c� ','',0,'?'),('8\0 ��p��.�$��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/plant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/plant.js',0,'��������n�<�X','��������n�<�X','�nw��4�Ұ{������tܨ��K�N9<','',0,'?'),('8N�Q�F������','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php',0,'��Vfm�\'��TC��','��Vfm�\'��TC��','����/l>%pJ)��z��u$˼�>��l.�eo','',0,'?'),('8\r����@K^r7���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mergeDefaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mergeDefaults.js',0,'��%M��b�����;k�','��%M��b�����;k�','kѧ9\"�E�2C�c\r��rا�#��3K;$�','',0,'?'),('8�0��a��V���','wp-content/themes/mint/node_modules/bower/lib/node_modules/ext-list/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ext-list/index.js',0,'�.ڤ�|X�,�&1�','�.ڤ�|X�,�&1�','��*�iy��?h�ɪ����/{?���!B�','',0,'?'),('8��j�%������','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/defer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/defer.js',0,'+����\ZX#�T�7�y','+����\ZX#�T�7�y','\r1^ޑ%�U\\Pԙ0��J�%3=7q�����','',0,'?'); INSERT INTO `wp_wffilemods` VALUES ('8*W�_Za�����','wp-content/plugins/gravityforms/includes/external-api/interface-gf-api-response-factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/external-api/interface-gf-api-response-factory.php',0,'4����̄~ r���','4����̄~ r���','ש�H7��Y�������NH܆Iٽ�����','',0,'?'),('8�W�넧j�`���','wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-archive-presentation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presentations/indexable-post-type-archive-presentation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z��T��x�s�G�X��','�S��h4�~O8u�J�p�C�0�P��\0�_�','',0,'?'),('8;Że��_�\n#�KT','wp-content/themes/mint/assets/vendor/jquery/src/css/curCSS.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/css/curCSS.js',0,'�����ZZ��aTY�u','�����ZZ��aTY�u','?`��R��h�x��O�R�=�xҿl@�֘�I','',0,'?'),('8(+G��t#Q�7����','wp-content/plugins/akismet/_inc/img/akismet-activation-banner-elements.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/_inc/img/akismet-activation-banner-elements.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}}���F}��)f�','->��\n��@ϰE_Z�H��)*��}V�#?��>�','',0,'?'),('8*,��b��}ն�J�','wp-includes/blocks/post-author/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�AX���*��\Z�Fd�','W�J4^[�oh���@8\Z>��t�!]��Xc\n','',0,'?'),('81mJ>9�zjH�˔�','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php',0,'��o\Z����w;$�WΠ','��o\Z����w;$�WΠ','<����;\\ʥ�^a�����qfK�`���','',0,'?'),('88��e�7Md�>�CW�','wp-content/plugins/wordpress-seo/admin/class-my-yoast-proxy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-my-yoast-proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m��njREN�6�','/�\n1Z�c�C�E�4�`D:D�,%�Y���ש�','',0,'?'),('8=��1b�����7�ی','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/compiler.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/compiler.js',0,'�� D�\n����?0�','�� D�\n����?0�','��neMˏ2\'8�J�X2��X��c����J','',0,'?'),('8=�I��a�%��k�~�','wp-admin/js/editor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä�y�rAy�X\n�* 4}','_#ТL7��m5Q{�q�\Z�)���K7���','',0,'?'),('8?6B�\r��pl2�R�x','wp-content/wflogs/config-synced.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/wflogs/config-synced.php',0,'��)�*��j\\�H','��)�*��j\\�H','��J�l�*�6\"Dt���j7bYb�m,��','',0,'?'),('8IPv�왁\\\0�k�','wp-content/themes/mint/node_modules/bower/lib/node_modules/pump/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/pump/test.js',0,'����`z��^q��l�˧','����`z��^q��l�˧','w���gC�i�a#B��-�-�˸��|�b��.','',0,'?'),('8V����ݨ��J*kD\r�','wp-includes/html-api/class-wp-html-attribute-token.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-attribute-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.WWnj����T�U�','���R��s��_��KqD��D�M���k\rOH�','',0,'?'),('8W��8�ƨr�d�Z�9','wp-includes/blocks/navigation-link/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-link/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�ov~���\\\"�E��W','gV@E1��eo�⬳�rY�4���.����#2','',0,'?'),('8Y���v���C�[,��','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:\0��>������}LQ\0','���_U\0]q=Չ��f�\\�/� @d��\r�+v�*(','',0,'?'),('8]\"�T_.<s|5s��<�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/logger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/logger.js',0,'�2\"�Y.���~�B}q','�2\"�Y.���~�B}q','����<��@7��@n,h��Z��������z','',0,'?'),('8`�9p*;p���0c�Ac','wp-includes/blocks/comment-author-name/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-author-name/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�\r�,�z��U�T��\r','p��h��UQ���vI�ȶV��9[\r(Qa','',0,'?'),('8i���V?�|J�Q��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object.js',0,'Ǫ\'e�� -��/0�','Ǫ\'e�� -��/0�','C�5�a�/G��rĚ�*��ٲf�\\��hs�\'�','',0,'?'),('8oO��R��F�\'�','wp-includes/class-wp-block-bindings-registry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block-bindings-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�F-�g\r���qݛD��','���w\r���2�+aF)U��w��r��Qݱ�U0','',0,'?'),('8~5\0�w�Em��w�\Z\r ','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Tests/YamlTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Tests/YamlTest.php',0,'Qxz���8:.4U���','Qxz���8:.4U���','�.�灕jy���}�д��AJ�Iz�rӾ','',0,'?'),('8~�\r[��i�tȪ$�B','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/wp-optimize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/wp-optimize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����z��z}���','m*��lQJ��;G�y��y�+�p��]pȃ ','',0,'?'),('8�\Z��+��Vk�ds*[','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ko_KR.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ko_KR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/�i�烌�','r[�x�|A\0�{�m��y\0��.!]�h�x\'���','',0,'?'),('8�\Z+��X/{��;�K','wp-content/plugins/wordpress-seo/js/dist/languages/sk.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/sk.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�.�U;8Ǣ22u�','��S��|�?�p\Z-lTpz�qV�#�L��� ����','',0,'?'),('8����@5ޤ�1�ث�','wp-content/themes/mint/node_modules/bower/lib/node_modules/isarray/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/isarray/test.js',0,'���Smv]�ET����','���Smv]�ET����','D��C���\\�]#���W�m�������ĭ','',0,'?'),('8�>��\n!H����','wp-includes/blocks/navigation-link/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-link/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*����{����^���','�S���H�tʼn��j\Z{D#.��q$gh����','',0,'?'),('8�R6�DH��q�-{�:`','wp-admin/includes/translation-install.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/translation-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&}*��v�����I���','Kp�3lu�\'X��;��6����-]V-%����','',0,'?'),('8�@)��6yg[y�sQR','wp-admin/css/deprecated-media-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/deprecated-media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�JWt>�Um�� �\n�','O����Ǣ�MD#衿�H\"���#���;','',0,'?'),('8�q�[�DyƑ��)�L','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/combine.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/combine.js',0,'�VS�5L����<p�','�VS�5L����<p�','X���+�48�϶\"<�(Gv5|���F��Q�','',0,'?'),('8�)��ę���W��','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/build/test-suffix.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/build/test-suffix.js',0,'�~/Z1��zqQ ��0�','�~/Z1��zqQ ��0�','���O3Jg\"?�N�(��Ʌ�&�NH�p�l\'� ','',0,'?'),('8��r�z4hq��K�s','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/diff.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/diff.js',0,'%�q��m�_}�\Zfq��','%�q��m�_}�\Zfq��','�9�������$��wb���K+\\�ޗ�','',0,'?'),('8»�O��~C�sI&�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue11.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue11.js',0,'O.�\n�0�\"�E���0�','O.�\n�0�\"�E���0�','i�N��}��K�����#���܆����','',0,'?'),('8ÛZE�Q$}UP�T��','wp-content/plugins/wordfence/lib/wfCrawl.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfCrawl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w�����|u�1cF=','�-n��㘾��w�Ȝ��!0��h�.���$�]','',0,'?'),('8��J���z ��Y!��','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Input/InputDefinition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Input/InputDefinition.php',0,'� �������9�\rO�','� �������9�\rO�','�<K�gm�Uۓ~c6K���ũm�T�\0','',0,'?'),('8� k�f���l�ݥ\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/makeIterator_.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/makeIterator_.js',0,'��[�0ם?�=[TaB','��[�0ם?�=[TaB','�P=b��D� ��NX�)�����֭���4','',0,'?'),('8��/��]2;qu62��','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/CHANGELOG.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S$��V9��E������','�Rj�����@��j�uiĨz}��Օۮ��','',0,'?'),('8��)�AlG�\'b��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/omit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/omit.js',0,']p��絟���[��',']p��絟���[��','\\+�Z�;X�)m��f��7*�[�+�m�[����','',0,'?'),('8�~�#K9{u%�y�R�','wp-includes/js/dist/widgets.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Sα�aR��k ���P','؇�e�HZ6�,^��8-�@In�K���\'�Dͫ','',0,'?'),('8�E�m,_�:��4','wp-content/plugins/wp-reviews-plugin-for-google/static/img/no.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vn%�����x��ld�','�ۜ�\0����A=t.��!c��݆q�L�G!/�','',0,'?'),('8��$7 !��Z��P��','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/link_nodes.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/link_nodes.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���c��>\0f�\"W�,','�/gYb�;�C[�@��ꐚ��5���U��','',0,'?'),('8ܜGᚦb�L�|�6kh','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sv.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sv.php',0,';\".^��KO�$���',';\".^��KO�$���','X\Z��u�VQ?[EZ<�)80��Ú\Z����3� ','',0,'?'),('8ܞt��\Zw�Nxa��','wp-includes/class-wp-network.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^��~H�(�ɮ�\0��','M\"Vb��O25�57)��}|\nsq|�\n�w�\"�\\5�','',0,'?'),('8�YJ�a���^�zF�FB','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-form-feeds.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-form-feeds.php',0,'�ݔ�<\0��,��ݗ\"','�ݔ�<\0��,��ݗ\"','��� H�o�)%qi�#��}{�_B {�M�','',0,'?'),('8��\"֙ \"o�6\'�]','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_lazyValue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_lazyValue.js',0,'�\rO L��Y�\n�7b��','�\rO L��Y�\n�7b��','�y@��1U/G�M��t��\Z�l����l�����+','',0,'?'),('8��90���)\\N����','wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Tables/Local.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Tables/Local.php',0,'4V��Hk9��-*�','4V��Hk9��-*�','K&���4&B���L�^ �\r��<\"�;p�椥','',0,'?'),('8�1e:����k��-','wp-content/plugins/envira-gallery/assets/js/dist/conditional-fields.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/dist/conditional-fields.js',0,'�J�@Bc�\ZR�iX�T\n','�J�@Bc�\ZR�iX�T\n','���\0�^\"�B�#�j\r�\\a�]^����dQG','',0,'?'),('8���%lkЧ/�3�','wp-content/plugins/wp-optimize/includes/class-wpo-activation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wpo-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ŝ�&]`�8�>f�� ','�I�� �F��!ى�8�P��\'���C��P�f�','',0,'?'),('8��\n6Pjr��5-�s�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/admin-post-types.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/admin-post-types.php',0,' �Ly�Q��ʺݍB�&',' �Ly�Q��ʺݍB�&','�`(����`�@�v�`�\rkz�\"T�6�7m�hz','',0,'?'),('8��?�`���X@(�I�','wp-content/themes/mint/node_modules/js-base64/base64.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-base64/base64.min.js',0,'��N ~j�k�q\'\Z.','��N ~j�k�q\'\Z.','�ь��i��Ӧ��[A���\r \0\Z�ޯ����k','',0,'?'),('9\0\" ��>��\"����','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/templates/index.js.tpl','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/templates/index.js.tpl',0,'@l���Ќ�.��]���~','@l���Ќ�.��]���~','��v��N�x��e�6�ə ����U+�;�','',0,'?'),('9�%�\\yFs\Z\\��|�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/eachOfLimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/eachOfLimit.js',0,'��R�\Zc5�oD�&!','��R�\Zc5�oD�&!','�\r��.͡����A�e��?Sl�)�����OJ�c','',0,'?'),('9��}�E� ���','wp-content/themes/mint/assets/vendor/modernizr/test/js/unit-caniuse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/js/unit-caniuse.js',0,'H����f����*�T���','H����f����*�T���','�I��R֓FӞA�y���{V�L����ى�X ','',0,'?'),('9�\r5\'X���>?�','wp-includes/js/customize-preview-widgets.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-preview-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�}�����x��c�&�','������(]P���UP\'L��2��n�\Z�\n���','',0,'?'),('9lH�A��-6�\r;/','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/str.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/str.js',0,'\r#*Uߣ!��uT��5','\r#*Uߣ!��uT��5','Ӗ[A�=|G�*BQ�_�օ8�^�X%����� ir','',0,'?'),('9\ZvH:��O�Ud','wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/JSMin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/JSMin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ձ�&B辯���','Y��l�W��ȉ�@PU�1����\'I��͡�T2�','',0,'?'),('9ψ[�1d{���@','wp-includes/class.wp-styles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�����$�Ϗ/','\rW|���K�x}��Z��g��O�y-�aϷ��','',0,'?'),('9��h9���;\n\ru�','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Application.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Application.php',0,'ҕ|>J�N\n�*�.<�','ҕ|>J�N\n�*�.<�','z�V��@��1��}�GGr��aX��W*�l\\v��z','',0,'?'),('9(�>[w��!�x��','wp-content/themes/mint/node_modules/parse-ms/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/parse-ms/index.js',0,'\\6�Hm�*G��=�c','\\6�Hm�*G��=�c','���k���%��XM�]��;�C�M�r�i]#','',0,'?'),('9-$gg��yJR�Ol��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-agentOptions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-agentOptions.js',0,'���Mڮ�CQ�p9�)�','���Mڮ�CQ�p9�)�','w5��_�J�L�|��h?Ţ�\Zwo\"���','',0,'?'),('9-��$W���n��p)','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log_once.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log_once.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:�ܜ�����eT&','��=���\n2jPuA �k���ݗO%\"64�M','',0,'?'),('9/_\0��-�Yx�=�Bn','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/decode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/decode.js',0,'S��>L�>/e��C���','S��>L�>/e��C���','\'���Y\\��tox�첩�Llt]���Kκ��','',0,'?'),('93{dD,$�=�t�\0�','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen03.bc548656aa9ce5905bfd.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen03.bc548656aa9ce5905bfd.min.js',0,'4�����D�!','4�����D�!','C�>�o-�Շ�#���h��{�i+��o~T�','',0,'?'),('94�2����0�`Yػ','wp-content/themes/mint/node_modules/iconv-lite/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/iconv-lite/index.js',0,'P�o���|�9��','P�o���|�9��','m�%I� 4r&���,E�.�6��kR�$|�D�$','',0,'?'),('9:��d�o\n��p`Ry��','wp-includes/js/tinymce/langs/wp-langs-en.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/langs/wp-langs-en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:w,�]�^!s�','����[� �l ̚�y��H-����\0��9�P@','',0,'?'),('9@�\\�gv�үy���','wp-content/plugins/wordpress-seo/src/config/migrations/20201202144329_AddEstimatedReadingTime.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20201202144329_AddEstimatedReadingTime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2#v�Xj�};2�b�a�','�!���&��m�j�ÌJ���ċy��g�','',0,'?'),('9C2Q�d��o��\0BZ%','wp-content/themes/mint/node_modules/grunt-modernizr/test/tests.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/test/tests.js',0,'��I�ӧ�)��UI�','��I�ӧ�)��UI�','��V5y�ϊ�Ä�H:�?��\"�h0�/hޑK�','',0,'?'),('9Es+��\naj)���','wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/third-party/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�XG���\nĈ䇬HB��',',f��W�f���������Ѭ�C�?���<y,P','',0,'?'),('9I�M<kA]�Ç,x�','wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/test/extglob-ending-with-state-char.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/test/extglob-ending-with-state-char.js',0,'嚐M�ОEiL�--','嚐M�ОEiL�--','�^\"�r�T�ZT I0�W(��v�X�dh�Dž\n','',0,'?'),('9L>��h9³k��\"','wp-includes/blocks/navigation/view.min.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/view.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t�d��U)^�kՃ��','���O�\"T��w�Q=`6vJ\'�S+�\\Q�^�','',0,'?'),('9Q�!ڥ0\rگ:{A��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Catalogue/OperationInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Catalogue/OperationInterface.php',0,'~i�a�Д�M��(I��','~i�a�Д�M��(I��','��d�?��2�\'I澣oUWO��1����p@Y�s�','',0,'?'),('9\\4;��J;���u�~�','wp-admin/images/freedom-4.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/freedom-4.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����m�R�%L�$輬','�zThL�S2:�#5�������J��a�[�v�s','',0,'?'),('9^a�a���ŀ��=','wp-content/plugins/gravityforms/includes/fields/field-decorator-choice/class-gf-field-decorator-choice-checkbox-markup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/field-decorator-choice/class-gf-field-decorator-choice-checkbox-markup.php',0,'�))��!:�5D�$v��','�))��!:�5D�$v��','H�HVðKo���z\'��f�=�✳�L�(\'d��','',0,'?'),('9b1]O6q�2������','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php',0,'�EZ�{)��~>�\\ȅ','�EZ�{)��~>�\\ȅ','��������<M��dVC�J���y$V�2�','',0,'?'),('9k�sB��=}��TŃc7','wp-includes/sodium_compat/src/Core/Poly1305/State.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C��\0�n`��i>]�','�������q�㋵���\'N�N{Q��N','',0,'?'),('9l�/5�\r�bo��D�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-body.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-body.js',0,'�BW/7&��\']�cA','�BW/7&��\']�cA','\r-$� ���G.��?E*Pt�B+iX�������D','',0,'?'),('9p��I(�n[ZFI�p','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/FileImportException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/FileImportException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!��;V|ƹP u�','\\ⷸ����J���m���+0{��h�%�/','',0,'?'),('9r(�-T��9�~9����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/rest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/rest.js',0,'�!��v�؍i�V�K','�!��v�؍i�V�K','\0o;g���%?\"�c�#�0�P�u���F1!�','',0,'?'),('9v�0��qZ;��4^5H','wp-content/themes/mint/node_modules/clean-css/lib/colors/hsl-to-hex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/colors/hsl-to-hex.js',0,'i�jw��(��j)��\\','i�jw��(��j)��\\','10I���~5y��Ъ*e��Z��,�Y�}�m�','',0,'?'),('9wv\r���^��!C�','wp-includes/blocks/image/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`�JpK���d�9qZ','k��&4V bT���X&�[ܝ���t�~\"�0��','',0,'?'),('9z�\Z�H�P�/�?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/core-util-is/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/core-util-is/test.js',0,'J��/Z�ٱ@@ �Q��','J��/Z�ٱ@@ �Q��','8K��\\��A�\"����������\Z�xgV�B�','',0,'?'),('9|���Ġ�Z�ʖ��','wp-content/plugins/wordfence/modules/login-security/css/embedded.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/embedded.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�P�:�}:^���','�\'���}-q8i�β!1TF��W�ʆ��\n��','',0,'?'),('9}�ԍ�65c{�m���','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Style/RootsStyle.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Style/RootsStyle.php',0,'!Ge+H�5\Z�O���$�','!Ge+H�5\Z�O���$�','C��\'�f3ylArgLJ��y��g���Ge[���','',0,'?'),('9���)���)�|�\\�{','wp-content/plugins/wordpress-seo/css/dist/admin-global-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/admin-global-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S �g�@���g�','����%FSICy>&� Qd�0G�\0v��M��','',0,'?'),('9��i�B�e�y�wDS','wp-content/themes/mint/node_modules/hoek/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hoek/index.js',0,'���]Y�䷉�f��#�','���]Y�䷉�f��#�','7so�x9n�&X������\r��!\"�]�@�o��ݴ','',0,'?'),('9�J!��8�鸤�Ѧ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_LodashWrapper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_LodashWrapper.js',0,'�.=���^���f�R','�.=���^���f�R','��E`Tm0�ފYN)]*jK����2�[ܸ4�l��2','',0,'?'),('9��\0����v�{��z�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Container/BindingResolutionException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Container/BindingResolutionException.php',0,'0�_��a>����3[�?','0�_��a>����3[�?','�_�@�bH��������zk\n�&��l{LTi','',0,'?'),('9�} B^��? �\"�','wp-includes/script-loader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/script-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�38��@4)�[�@','a[���\Z���&q\0�)��M0c@B�)��','',0,'?'),('9�$��Iv���mLLe�e','wp-content/plugins/wp-optimize/js/send-command.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/send-command.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^�X���b��t','T�3�����\'��%:�y��0��ֿ�F��1K','',0,'?'),('9���y�S�� pV6=','wp-includes/blocks/quote/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/quote/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Un��00�s��C�','K[�|wb�8c5Ua�?%˾������2ft�','',0,'?'),('9�����|��G�E�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/OptionsSet.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/OptionsSet.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�S�]8�COhʁ���','(z�eE�\'Ð��|u�\Z֔�$�tDia�Ny�','',0,'?'),('9����{�̑C�<�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/basePullAt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/basePullAt.js',0,'�ݙ0�A�%�Β��','�ݙ0�A�%�Β��','ޚ:�hwjw��;db�\\#jZ%��J���JOLE(','',0,'?'),('9� �{b\nJc�F=lY','wp-includes/blocks/query-pagination.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C�mzZ*�s�J','ǩ/�DHm~^�6�zZȹj�#�$\'3����','',0,'?'),('9�Ce;Y#�v|z��','wp-includes/blocks/audio/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/audio/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~R��0W���@��y�_','v���C��~Qk[s�2�B��\nǩz��a|n#','',0,'?'),('9������Q]�8�','wp-content/plugins/wordpress-seo/src/routes/indexables-head-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/indexables-head-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i��~���kJ�o6%�','O��=�x��Ap�8|-��W�+/T��sH�ߣV','',0,'?'),('9�C%�t�� ��u�w,','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-zh_HK.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-zh_HK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eT��:�a1����JK�','�r�<X���A�M��u��kC��:+sz[�','',0,'?'),('9�ˏ���R�g���','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue69.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue69.js',0,'�$��fG�oJ�[0','�$��fG�oJ�[0','�Z)*1`%�%ϖE�j>c��&qG�slEn�$l�','',0,'?'),('9ʄ��n�MK�P���','wp-content/themes/mint/node_modules/bower/lib/node_modules/assert-plus/assert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/assert-plus/assert.js',0,'�ߤ�+���%\0q\n�#','�ߤ�+���%\0q\n�#','�i҈�y��5!5j�ƽ�gϊm���.�','',0,'?'),('9ʨ���ծ���r\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_nodeUtil.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_nodeUtil.js',0,'ծTq�Q\'Z6��%L��','ծTq�Q\'Z6��%L��','ʨ��Nko��V��z}����w5�-X������','',0,'?'),('9�; �f|/�J̀��?I','wp-content/themes/mint/node_modules/bower/lib/templates/helpers/sum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/templates/helpers/sum.js',0,'�.���#�W�wEE�LC','�.���#�W�wEE�LC','� �Ҩ~W��/\'Q��.��n�����t�','',0,'?'),('9�81�\Z�g�h��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/norm.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/norm.js',0,'� ���3�(���','� ���3�(���','�o��ҭ�5V�7�6(]L�[i5�(@���','',0,'?'),('9�۲���%�=�i:�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/wrapperAt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/wrapperAt.js',0,'fw#>��)��=���','fw#>��)��=���','d�~\"���q��@��%�?�?�FW8Ia\Z�r��','',0,'?'),('9� �{��Z��M�i?q_','wp-content/plugins/wp-optimize/compatibility/class-wpo-page-builder-compatibility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/compatibility/class-wpo-page-builder-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǶX�ؚ_���6U�','u�%��X��R�Pg�\'u�Õ`kY��t`#f�º�','',0,'?'),('9V��%�?N�#��o�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toLength.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toLength.js',0,'<��0?!���\ZW','<��0?!���\ZW','MBR��5�TO��%:���i��}�d7j��o','',0,'?'),('9ױ3lC���|�X�0�j','wp-content/themes/mint/node_modules/forever-agent/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/forever-agent/index.js',0,'��xv��S�muА\0�','��xv��S�muА\0�','�o������ &`�h-E�&W@�uc\Z�=��','',0,'?'),('9���-��@w���','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/TypeHintResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/TypeHintResolver.php',0,'�v�.��������q','�v�.��������q','�ݣt�۪d��-�\n�x�䓾�p ��B�','',0,'?'),('9��]��H�\\�P�P ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/inRange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/inRange.js',0,'(�ƋҿF�W���>','(�ƋҿF�W���>','Ǒ�Ϊ1lc^]����E��,�S�d�\0\'�\'���','',0,'?'),('9�,���ƁNjͤA�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/slice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/slice.js',0,'��>N�t���r��?�c','��>N�t���r��?�c','�ٲ�O�ܐ!��)���� �B���J:ԇ�\n','',0,'?'),('9�y�!�G��\'@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFunctions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFunctions.js',0,'��/���]6�އgg','��/���]6�އgg','F:;\\c��g��^��րIb��O=��#��YJ;,.','',0,'?'),('9�T���*Z��D|o��','wp-content/plugins/wp-migrate-db-pro/class/Common/Filesystem/Filesystem.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Filesystem/Filesystem.php',0,'h��,U�A���իt��','h��,U�A���իt��','����[{�E�k[��\r���<��2��v\\','',0,'?'),('9��s�3�SZ,p�8g','wp-includes/images/media/text.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z��s��0�ȝ�Q�K','�g��?[��D*�p�8�q���Vѓ�>��N','',0,'?'),('9�=��JT�J�����','wp-content/plugins/gravityforms/includes/editor-button/endpoints/class-gf-editor-save-editor-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/editor-button/endpoints/class-gf-editor-save-editor-settings.php',0,'�\0��Ϡ�(h�*��','�\0��Ϡ�(h�*��','��$`r,PŘ=k@��G�Ѥ�C�3���ud�','',0,'?'),('9��kǴ��6ꊫ�','wp-content/plugins/wordpress-seo/src/user-profiles-additions/user-interface/user-profiles-additions-ui.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-profiles-additions/user-interface/user-profiles-additions-ui.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��c�7���\n*�g�H','�K����0Hi�W�m���n�z�-{�','',0,'?'),(':{���{7�9����','wp-admin/link.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','݇χp�m1�bЯ0�','�\"參35\Z�Z�8q41|�\ng*g<!h��:g+$�','',0,'?'),(':wgh 1<�E�;','wp-content/themes/mint/node_modules/domutils/lib/querying.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/lib/querying.js',0,'w�P�����?�\\�J���','w�P�����?�\\�J���','ɿ��4ja���C��UN[�uȭ]���B!��','',0,'?'),(':�|L�H6(��c�g��','wp-includes/ID3/module.audio.ogg.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/module.audio.ogg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9_�ډ��;�F�;T0$','��B�w~��\\���0�I\Z�g�|TY�dsa�El\'','',0,'?'),(':��jڻ�� \Z)4','wp-content/themes/mint/node_modules/bower/lib/node_modules/process-nextick-args/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/process-nextick-args/test.js',0,'3�M>;�͛���w���','3�M>;�͛���w���','x�z����1���B���6Jq��9��\ZỲ�','',0,'?'),(':\0Eu���=W �m�\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/writable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/writable.js',0,'d�Ίô�~�J���R�','d�Ίô�~�J���R�','��<Bxm*r:������\n6�����6�[{��p v','',0,'?'),(':Y��|�,X���-','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/LoaderInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/LoaderInterface.php',0,'�sH��|j�#����','�sH��|j�#����','� ����O��֍�}�����P�d˽;��A','',0,'?'),(':!�\\Z��Hg�sX�','wp-includes/block-bindings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-bindings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j��g�e}v�O��','�VTG��B����t)p��;E��Mx8W2.','',0,'?'),(':%@c�6D>&b�1ɤ�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���6@l��Q�B','�k@���\r�#X\'��\r[R2�+,b��1�f���','',0,'?'),(':+��ʃ2���?�x','wp-content/themes/mint/node_modules/clean-css/lib/text/free.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/text/free.js',0,'���e��\n��{w�]','���e��\n��{w�]','����*h!�qk�̋>ƥu��cݿd��','',0,'?'),(':,�?u^jD���n�','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post-category.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post-category.php',0,';�I��<5(��\'��7L',';�I��<5(��\'��7L','��լs�o� S�P�7�eLD,�ڀ�b�:','',0,'?'),(':.3�S\\a�ݱ��IE','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/ScheduleFinishCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/ScheduleFinishCommand.php',0,'-Mi����̚�9-��','-Mi����̚�9-��','�d��2���Ci��%��;q���@լ)�g��','',0,'?'),(':3�:�y�F�eR,g','wp-content/themes/mint/node_modules/js-yaml/examples/sample_document.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/examples/sample_document.js',0,'�VC\"]rޔ�|�b����','�VC\"]rޔ�|�b����','}F���<*�4T|��i�����x�_���Jw','',0,'?'),(':5�(5P��\'t���','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/SettingsTemplate.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/SettingsTemplate.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O\'�z���3�V�M','��=�F��\n�.�[�P|\Z,pգ�Ҧq�','',0,'?'),(':<�$��0,w\"&e({','wp-includes/class-feed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':%�ɕ��<ۼ�L%l��','ǖ���&�G���J*\\$B����a�����w�D','',0,'?'),(':<�dY��D,�L��֣6','wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-product-editor-checklist-notification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-product-editor-checklist-notification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vn��0o�绶����','[��.�m��q�y{F�D4��6��KG㴟|#\"�N�','',0,'?'),(':D�J�$�h��Dž\r�','wp-admin/js/customize-nav-menus.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/customize-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L��&�bK��c�� �',']\Zn��n��+Iz9�-A6fM43��$Zr[</�SA','',0,'?'),(':J�|�x�S�Wafi','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Exception/LogicException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Exception/LogicException.php',0,'*���g��s/�a�','*���g��s/�a�','\0��@`IIZ���/YRD��:>�I`@���>','',0,'?'),(':K�.|��\0�\'�b��','wp-content/plugins/gravityforms/includes/orders/factories/class-gf-order-factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/orders/factories/class-gf-order-factory.php',0,'.�\Z��7\"��rp�?��','.�\Z��7\"��rp�?��','\n���]����PJ19��e�~�$�)�8A�3��','',0,'?'),(':R��S(O�5Nw��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isArray.js',0,'�6��@��R�li�� ','�6��@��R�li�� ','�n� �,�3`�}Qo òc�*$��ln4W�d','',0,'?'),(':SgBUԑكe�Cv<��','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-before-after-config.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-before-after-config.js',0,'�\n�;i;|Qx������','�\n�;i;|Qx������','��9�xj�ڈ�{YZ�o�\"nr�W�XB�\"/�','',0,'?'),(':S�ۦ=���G�B�0�','wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-found-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/indexable/term-not-found-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I���<#�7`����','xa���������Bg�K1A�z���VX�','',0,'?'),(':d4�N3P�4���߸L','wp-content/plugins/envira-gallery/src/Admin/Admin_Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Admin_Container.php',0,'Q�PG��I��]Ci','Q�PG��I��]Ci','��\"sr�9���n˥�n<1Np/D�IB�','',0,'?'),(':f9��|�e7L�ʈr','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Transformations/Presets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Transformations/Presets.php',0,'��5�g1�U�=v�|+�','��5�g1�U�=v�|+�','o������e���\r.2z\"�:�^�)o��9�^(','',0,'?'),(':h���O^�Y�','wp-includes/fonts/class-wp-font-library.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/fonts/class-wp-font-library.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6?�A�<M��w��*JRJ','k�\0��ln��x ��š�+��\'�+�:����','',0,'?'),(':k�$!��dشe{�+�','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/stop_early.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/stop_early.js',0,' ��M:�M$��L$��',' ��M:�M$��L$��','wT��c�a�_�\\B*R�1��>��S�ɼ�Y�','',0,'?'),(':o\\��[��\"���','wp-content/themes/twentytwentyfive/patterns/media-instagram-grid.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/media-instagram-grid.php',0,'`ձ_ �ɔ��5c��','`ձ_ �ɔ��5c��','gG3.��Ww&���+c&R��(���c�H��','',0,'?'),(':tt��v�J�X?а�','wp-content/themes/mint/node_modules/less/test/browser/runner-no-js-errors-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-no-js-errors-spec.js',0,'�d=�>�|���','�d=�>�|���','U�ן%��v�^�����,Б�}Ϫz�*&��G','',0,'?'),(':w��\\�7}>{J5E1','wp-content/themes/mint/node_modules/bower/lib/node_modules/graceful-fs/legacy-streams.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/graceful-fs/legacy-streams.js',0,'b�Rܛ��p;&','b�Rܛ��p;&','z�a`�@e��M�- ��OF3�\'S��eS��7','',0,'?'),(':|�ۿl�XP�t�>��','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.min.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.min.asset.php',0,'�ͨ�pۊ^�S�u;','�ͨ�pۊ^�S�u;','\n7?$_�H1�����J�{ƍ7�FX>��x�','',0,'?'),(':�)\r,rb�Y:q�!Z@','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`gz��^����/�','H`����6<�v���pIi�OȩM�#Ma�','',0,'?'),(':���%H`!���\r�Z','wp-admin/js/media-gallery.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/media-gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%��g�Usb����K�','�OH+ܽ��g\"���{CvF�B����t1��','',0,'?'),(':��Ч�аU�~t�w','wp-content/plugins/gravityforms/assets/js/dist/vendor-theme-dompurify.0d00b2b60e8cf13c7681.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/vendor-theme-dompurify.0d00b2b60e8cf13c7681.min.js',0,'���>���i,\" �','���>���i,\" �','��U���HGVM��)��չ�?��O�$\\k','',0,'?'),(':���q���3��9��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/forOwnRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/forOwnRight.js',0,'۶��� D�Y�P9�,�9','۶��� D�Y�P9�,�9','E�Wd����\0�ҦL���*�G�M�[z\0�%','',0,'?'),(':����}[TW����l','wp-content/plugins/advanced-custom-fields-pro/assets/images/empty-post-types.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/empty-post-types.svg',0,'0#̾�E~��ri��','0#̾�E~��ri��','Ȥ���%{�K.�v�ڦ$_����&�\0 d}h','',0,'?'),(':����2��7��t','wp-content/themes/twentytwentytwo/templates/404.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/templates/404.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8o��m��,��*\0�','��5����K�)`0U d��s��ͳT','',0,'?'),(':����tȌq��Zb�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/index.js',0,'�AIl�y1 �UvQ�\0y','�AIl�y1 �UvQ�\0y','WKBQ)��5��n$��\\���\'+FƑ�F','',0,'?'),(':���m�Y@�e�:','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Option.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W?�C�9V�W?�}�{','1�!2H���f����%���(\'�88��','',0,'?'),(':�yY\"b���i���','wp-content/plugins/wordpress-seo/src/integrations/xmlrpc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@��ݏ����\"M� ','U�&�]提���3�<y\'�,�Í�q�g9�','',0,'?'),(':�T���R=����<d�,','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<�3%\\��[��7cv�','�\n�Ꮙz�\r�*ҧY�uˍ��3&#B{Z�-�','',0,'?'),(':�z��\"�;���ic&�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/filter.js',0,'2�s�&kBCF���a��','2�s�&kBCF���a��','d5L��Wg��xF� ����==2��\0�','',0,'?'),(':��r�����A$�b�','wp-content/themes/mint/node_modules/hooker/lib/hooker.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hooker/lib/hooker.js',0,'��閁�C����S�','��閁�C����S�','��:- h�֨�(�ͬ}�6�D����B�Tڗ�','',0,'?'),(':�7��\Z���IGf�n�','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.underscore.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.underscore.min.js',0,'73t����\n���ލ�\\','73t����\n���ލ�\\','iH�}��~��u�6�Gp���4W�VQ�k','',0,'?'),(':���,\Z���PV5��','wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-customizer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-customizer.php',0,'<#�F��`~|P��','<#�F��`~|P��','�GŏMi�2��/V#Z٫t���k�/8n.q�','',0,'?'),(':��u����%�Q���','wp-content/themes/mint/node_modules/cli/node_modules/minimatch/test/extglob-ending-with-state-char.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/minimatch/test/extglob-ending-with-state-char.js',0,'嚐M�ОEiL�--','嚐M�ОEiL�--','�^\"�r�T�ZT I0�W(��v�X�dh�Dž\n','',0,'?'),(':���M�����v��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/series.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/series.js',0,'�k���Zæ������','�k���Zæ������','2������;\nHV��%�yhþ��L�pμ\r','',0,'?'),(':�kS�s\'��+c�S�.','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Question/ConfirmationQuestion.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Question/ConfirmationQuestion.php',0,'蒊Z��^:s�=��j','蒊Z��^:s�=��j','���c�t[��b�gm����5��[Pu9NjQ','',0,'?'),(':�k���Q4���ڕ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/lib/ber/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/lib/ber/index.js',0,'��͑��VJ���Xj�','��͑��VJ���Xj�','��_���\'M\0�غS����^��d����(���','',0,'?'),(':�X�6���zG����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/filter.js',0,'�t�H�%��+\n��','�t�H�%��+\n��','V�7)�K�T��tV0�VȨf��9��~0ͼ��','',0,'?'),(':��s-(B���O�2��)','wp-includes/blocks/cover/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/cover/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������S��J�','h�\0�A�gM_5b��g�b�r�&`��8E��','',0,'?'),(':�]\r�ٮ�����Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_DataView.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_DataView.js',0,'S���O�`܍���','S���O�`܍���','dl& O����B���_�=��Ϣd�@��DFz','',0,'?'),(':�*����\0�H%\0\\��','wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/lodash/dist/lodash.compat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/lodash/dist/lodash.compat.js',0,'O�����\r�Y�\0��c�;','O�����\r�Y�\0��c�;','�CZ#�D��c�����A��\r��3���L�s','',0,'?'),(':�(9���\r��� [��','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/linkedin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/linkedin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�]�i��$��]�(;�>','��<�v4Ųd��]�\0Ymg���V�伳�8V','',0,'?'),(':�y)B=@������\'z','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/strftime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/strftime.js',0,'�̅���v��leJŘ','�̅���v��leJŘ','�um���2�+ͤ��ϻ\0�� ���̹���|<�','',0,'?'),(':�h�<��\rڪ���','wp-content/themes/mint/node_modules/bower/lib/core/Project.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/Project.js',0,'G�_����@�A�no��','G�_����@�A�no��','8-�C���4�%��,S��J�v.���/��-�MY','',0,'?'),(':��o�8V{k��i�@$','wp-content/plugins/gravityforms/images/template-library/AdvanceContact.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/AdvanceContact.svg',0,'�i��́:�ӊ�?�GR','�i��́:�ӊ�?�GR','�5鈮�����J$�f8\0>�S+�}E�ے:�','',0,'?'),(':��K�2��(�Je��','wp-content/themes/mint/node_modules/promised-io/delay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/delay.js',0,'�2�g����\rP','�2�g����\rP','>]*���\0d���vO�F\'�Z�a���','',0,'?'),(':�)]|t�O�ǔo<�','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/AbstractLogger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/AbstractLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�nm��q$d�_&���4�','�I�� ��nޥJ��B��Ny���H�;bF�\n[\rh','',0,'?'),(':�e�b_����\Z�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�٩h�}��g���>','];I�-g�H�Kt�T��!dt��(��P��N�:�','',0,'?'),(':�Xqݝ�J\\�5P�4','wp-includes/images/spinner.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L�\nD�\n�oً�j˲�','zƄ�\Z\"��n\Zs�(�U�/~�7��F��^ �','',0,'?'),(':�ṇRM�ti#��=','wp-includes/images/media/audio.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�taCA���.��Z�','�L�>��$��\n�oixoj-\nL�����]G;q','',0,'?'),(':��F�P\\u����ă�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Routing/UrlRoutable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Routing/UrlRoutable.php',0,'Yjj�ɇ�+MKJ�qB�','Yjj�ɇ�+MKJ�qB�','\nu�\0R-7 �I|�r=t����+8A�C�fj','',0,'?'),(':����\\����X�','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����>�����X3','�x��a/�U ����ya1;��;r�x���','',0,'?'),(';�����ml�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/floor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/floor.js',0,'��z����Z% �D^�','��z����Z% �D^�','\0�e��H�s�ɚ��~{���i$��g\n��','',0,'?'),(';�d�4�53~>ï;�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/slice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/slice.js',0,'�D��F�b��\nT��p�','�D��F�b��\nT��p�','��9��Á0�� �Ta�Nޑ�6�\\{�g��','',0,'?'),(';h���IJZj.��\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/filter.js',0,'���uüD��pK�','���uüD��pK�','N�d@5�6�\n�*�՟�~���U���8㫔9U','',0,'?'),(';\ny[��џ[\n%�m�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ValueDefinition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ValueDefinition.php',0,'��z5��$̨��� >','��z5��$̨��� >','������x ��;�\r�[����F�DH��fo��','',0,'?'),(';�b�fȖ0����x','wp-admin/css/colors/midnight/colors.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/midnight/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�Ѽo]��\n·!a��','_�zD;�Pڟ=���d����r�r�g~��!���','',0,'?'),(';�|��)�Ȃ�]Of_','wp-content/themes/mint/node_modules/clean-css/lib/text/urls.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/text/urls.js',0,'���e�#�;��E�V�','���e�#�;��E�V�','��FTD�Ϲ5 ��h]2����G��4�ƛu�C','',0,'?'),(';ܒscF��!����','wp-includes/css/dist/components/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/components/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/���Y��)3e;�m4','Y��Lã<�c��x��r\\�3���Ǭ9���o','',0,'?'),(';7�����ə����A','wp-includes/Requests/src/Exception/Http/Status304.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status304.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�]��:�}��l\rw�','2�gl;\0P\'�&Ka;Ӫ��ply2\"0$����h�\n','',0,'?'),(';��G2��<�','wp-content/themes/mint/node_modules/async/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/async/index.js',0,'B(��[�>�\'���ӿ','B(��[�>�\'���ӿ','5sҷƬ�V��X<{��sx��T����/���','',0,'?'),(';_S��U���&��L�','wp-content/plugins/gravityforms/includes/settings/fields/class-generic-map.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-generic-map.php',0,'w�[��\Znd�4�','w�[��\Znd�4�','��^ʉ>�g((ڃ�O[��ù+�#�d�xD�','',0,'?'),(';;A^G�s�,k,Jf�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Sb?58U�o��&6�','��ZwicbY%f1�~���(�{�-�q�3XB�% ','',0,'?'),(';/T�y5���+R6','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/childNodes.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/childNodes.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?��ov�3���IR��','B�K��G��W�@%�s(c~�U�\Z\n��|�:','',0,'?'),(';1ы#�Y_N��t�','wp-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Mz���:�PX>�P','u>�DL�j�&:�BQ����\'�X���h�y�.','',0,'?'),(';<��50OOPgm','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/defaultsDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/defaultsDeep.js',0,'�&�+�5�b�^U','�&�+�5�b�^U','����6x�qv���9�81�\';��\n� �ԅ','',0,'?'),(';<�Ҟm��\'�K��k','wp-content/themes/mint/node_modules/bower/lib/node_modules/http-signature/lib/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/http-signature/lib/utils.js',0,'��{}�.�|�\0�Ȧ�','��{}�.�|�\0�Ȧ�',';�d�@�iȰ��\n���� ��3C�n(�w�\0','',0,'?'),(';D��~�WP�O)wlv','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/AnnotationReader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/AnnotationReader.php',0,'��3���n�(>њ','��3���n�(>њ','�*�@�P�jj�\Z��mj�%z��FhP� ��e>�','',0,'?'),(';D��+r�\\-�I���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/forEachRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/forEachRight.js',0,'�\\�����W��!�','�\\�����W��!�','�!H�n��Vq7q�C�9�k�oHM��+�','',0,'?'),(';HT�8F}�ܝwt���S','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isSafeInteger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isSafeInteger.js',0,'�s�5���hyx�! ','�s�5���hyx�! ','���44�����G�vA\0Hka�=���o','',0,'?'),(';O.�>�[�?���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/deepFillIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/deepFillIn.js',0,'���T�eT�pՈ��;�','���T�eT�pՈ��;�','Gw�A�ªv�g�Z�\"�8FM�S�ϻ��-','',0,'?'),(';Q-:@(:85M����','wp-content/themes/twentytwentytwo/assets/images/ducks.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/ducks.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�1����l��9 ','��2(�|��c�m��U���v�t�PV��&�','',0,'?'),(';Q}]]U�K}9o����','wp-includes/blocks/post-terms/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-terms/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z^k��N�ұ�\Z�)�','�?��㷷�(s����\'�˭�#�l<�RT�e','',0,'?'),(';R�yh���RxK�\r','wp-admin/js/farbtastic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/farbtastic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�Jgr�Tb;�un�*','�M�����_�������`9�h��*�/�s','',0,'?'),(';W���/�&*�8�','wp-includes/SimplePie/library/SimplePie/Rating.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��GIB\0(����c\"�N','fm�.���\\���f�hO?�Q�>��M%4 o�','',0,'?'),(';Y\\6_<|�9��+�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/lang.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/lang.js',0,'��h���!�N��\n�En','��h���!�N��\n�En','��^/�DK&gG��\'��4��2L��%V�R','',0,'?'),(';^�\"�T0ڏ�P�m[','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_lazyReverse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_lazyReverse.js',0,'�pxk�\'�u�t���q','�pxk�\'�u�t���q','���j�T�\Zh,-����E9�d�:�F]','',0,'?'),(';b,��A�le�-��X�','wp-content/themes/mint/node_modules/less/test/browser/runner-production-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-production-spec.js',0,'��J�R�\\+oZ+d�uF�','��J�R�\\+oZ+d�uF�','�P٬����z����t%cy�2\ryr9���','',0,'?'),(';ihh��>/���W��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/GravInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/GravInstallerTest.php',0,'@��|\\��B\03CEț�H','@��|\\��B\03CEț�H','`e����q�[|m�Y��\r�[^�T�K@�T\n','',0,'?'),(';n�Cg��7$�;��_','wp-includes/blocks/media-text/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/media-text/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+,Ab�ۙ��ig\rR�','f#�� ������m��Ǫ!�u���\0Dz�','',0,'?'),(';q�Pď酨B���W$','wp-includes/blocks/post-content/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-content/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q@�EXbn��p�eН','V2����, ��`�\ZͯM&�\\xFq�[�Ɵ�','',0,'?'),(';rM�RJ]��7','wp-content/plugins/wordpress-seo/src/helpers/woocommerce-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/woocommerce-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@������s�7�:�','T�L�5-��S�?�v�9\"J��On�P̥7�%�Ou','',0,'?'),(';t�>]!_�lD��ĕ','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-user-form.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-user-form.php',0,'#u��8��5�����','#u��8��5�����','�O���I=�Be>�I<e\',��q���?�O�','',0,'?'),(';t�}�SB�p��47�0','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/eachRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/eachRight.js',0,'b��6���$f�%j�q\n','b��6���$f�%j�q\n','!��&��D8v\\��o�#ᜳΫŪ��$6��l','',0,'?'),(';wU�wx�Hj��j�dZZ','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/DisallowObjectStringIndexSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/DisallowObjectStringIndexSniff.php',0,'Zh�!�s��0�� �f3','Zh�!�s��0�� �f3','�Z�5\\�PN�W���=`��� �~��r䘹','',0,'?'),(';�ךږ����X�\\Z^\\','wp-content/plugins/wp-optimize/images/notices/spring.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/spring.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�#�ZxF��e^�','�h�%?�����d��d�;\"�^���5�����','',0,'?'),(';�dH�C_��1㛔��','wp-content/plugins/gravityforms/includes/theme-layers/api/json/layers/class-json-theme-layer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/api/json/layers/class-json-theme-layer.php',0,'[\Z�Ҧ������k��7','[\Z�Ҧ������k��7','�e�\'2�0F/;懙���s3���ҼA�7�9�','',0,'?'),(';��C�.�4����.S<`','wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-seen-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/introductions/user-interface/introductions-seen-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','muU�?�lZ�/��9','��e)���|<���:-`�W�\\?o�v�Q�\Zj��','',0,'?'),(';��֛{�7PF~�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/takeRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/takeRight.js',0,'\'Fs� eG=ioĬ�-','\'Fs� eG=ioĬ�-','��*fd����W�������b,��Z�c���!','',0,'?'),(';�9���3����ە�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�kE\0h��P�����','\\�\n����$�_2�Y[7�YI���3K��','',0,'?'),(';���+U?A�� �\'','wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/composer.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S1o���\\�%ږ','adxQ�%�`�y/V��c�yէf�����xj�ְ','',0,'?'),(';�\'T��J��d��a��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/cloneDeepWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/cloneDeepWith.js',0,'��bY��s�0L��Bh','��bY��s�0L��Bh','f��tU�ބX�o.����)��㰒�y�','',0,'?'),(';�V�����L��ݵ�','wp-content/plugins/gravityforms/images/star1.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/star1.svg',0,'����;�0�kܘ�T','����;�0�kܘ�T','\Z�}���ł}�e\'9�!�u.6��*��EqJ','',0,'?'),(';�=��Pq���F ��7','wp-content/themes/mint/node_modules/faye-websocket/examples/sse.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/examples/sse.html',0,'�<s��+2��l�','�<s��+2��l�','?���}��t�o���]��m�2ǎ�\"Q','',0,'?'),(';�/+�ũ����\\\Zd�','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/browser/sample-config.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/browser/sample-config.js',0,']�C�\ri]<h�U�',']�C�\ri]<h�U�','�ct�:}~��[c�T.h\Z\n�}gpm�\Z��','',0,'?'),(';��9Ǥ�]����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/floor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/floor.js',0,'�����d}��͜�O�vu','�����d}��͜�O�vu','�`��.1 ~�Q�ò��u����յA�E�','',0,'?'),(';�v�0BK����1д','wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+o~��X��ݓ\0�','xX��ѹ�$6�UdZ$����x�����&3�','',0,'?'),(';�z\Z�5�N���U','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Catalogue/MergeOperation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Catalogue/MergeOperation.php',0,'��L$\0��%�^��r8�','��L$\0��%�^��r8�','z��Ȱ�d��@��8<���C�4�_f�>[r�','',0,'?'),(';��\0����}/�Q���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/constant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/constant.js',0,'e�^�xF�ӫ��y�tt','e�^�xF�ӫ��y�tt','R���Bj�����r2�ܻ���^�E��f6��','',0,'?'),(';�ԭ� �[�~�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/xor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/xor.js',0,'�`�_2N`�\0ὶ�','�`�_2N`�\0ὶ�','�L��+u*��q���YŊ����V�x���\Z�','',0,'?'),(';�8���$��J_���','wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/SizeControllerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/SizeControllerInterface.php',0,'\\��c�l/�/ې��͒/','\\��c�l/�/ې��͒/','��D��̆d�w�P�Uy�鯩foQ����','',0,'?'),(';�3o��ی���I%]','wp-content/themes/mint/node_modules/bower/lib/node_modules/sntp/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sntp/lib/index.js',0,'g�*O�i/ ��~c�_','g�*O�i/ ��~c�_','�Q<��C�;�-,c�%���o��J�$7aq','',0,'?'),(';�d+;�C��?��','wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F�y�\0A^E=�','�ڟ�ݑ2it/�W���pƆ���0_�,;��','',0,'?'),(';�(c��\0�\"�d@,-','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/difference.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/difference.js',0,'�>�/�>�H����','�>�/�>�H����','�N!Lr9����*�-l��c����S_�or\n�','',0,'?'),(';�2��yT�W�Ks���a','wp-includes/blocks/table/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/table/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^q�%��mZ��,�1','��WO�)��j�)������Ag3$0��$[��m','',0,'?'),(';�@��(��L���','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/foo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/foo.js',0,'�1�=q���V���','�1�=q���V���','D�i2���)�Wk�-���CX�[n��z;Y�3','',0,'?'),(';�Wct���*+��Br�','wp-includes/images/smilies/icon_surprised.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_surprised.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U��-��#+����0�?','��cuy�X�ؓ�A��d�5[=w>�*S�pwe�._','',0,'?'),(';��}�=*Z���Q��','wp-content/plugins/wordpress-seo/css/dist/ai-generator-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/ai-generator-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�}1�<�ߦl����','��p����Vm��������\ZT�q������v','',0,'?'),(';����*1\Zn��4�','wp-includes/js/wp-emoji-loader.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-emoji-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Bނ�A�X��YÅÍR','���Q�J�-\r�QW����Y�j2a|J���','',0,'?'),(';������0���]Hb��','wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/node_modules/deep-extend/test/index.spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/node_modules/deep-extend/test/index.spec.js',0,'H��4���*�y���','H��4���*�y���','���H\\��Zz�2\r�ƈ����W����N`�7','',0,'?'),(';�t\"S���l����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/defer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/defer.js',0,'����mt�cg�a�P.','����mt�cg�a�P.','0�GNAQ\"q�>>��ퟬv���袕S)���','',0,'?'),('<��`(r-�~��q','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php',0,'yŎE@rY�P?� �Pc','yŎE@rY�P?� �Pc','�7�w&M�����#IQQuKH\ZX�\0��=\n#K[','',0,'?'),('<�L�\"��V�u[4�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/pad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/pad.js',0,'a\r�3�w#��e/�~�','a\r�3�w#��e/�~�','s��Ӻ\nN\Z7�����,H97�>���pg����E','',0,'?'),('<a����R�]G!\'y��','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ResponseInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/ResponseInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�D\0]>0 �y1iu�','��\'��xzd���(��4�w�d]wv�h��QT','',0,'?'),('<\Z\Z )՞�*�bC�x�g','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Http/Kernel.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Http/Kernel.php',0,'��ݻQ�su�-|m��','��ݻQ�su�-|m��','��T7��˔��95Ҟ�\r=���J���巭e�','',0,'?'),('< j����lݝ��B��(','wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-editor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/menu/class-replacevar-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�gS �tEtF���V��','�H��izY��tM���c�1��j|�j','',0,'?'),('<$����4������','wp-content/themes/twentytwentytwo/assets/images/icon-bird.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/icon-bird.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�� &G���\"���_','$���y�L�t�ʁ�9bz�DL��B���t��','',0,'?'),('<-t]\r�~v&?�m.Ǧ�','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-icon-picker.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-icon-picker.svg',0,'�މ��>!Ax��be�\0#','�މ��>!Ax��be�\0#','��z>��ț<.˽��$_�#KZ=|RX�(#08','',0,'?'),('</GŞ@̿�=����','wp-includes/css/dist/edit-site/posts-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-site/posts-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�OU��1�>iU��\'','s���ژ���%J�Ֆ�X�A��7 ���\Z','',0,'?'),('<5�v�C�wP�V!�S','wp-content/plugins/wp-optimize/optimizations/trash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/trash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\nЛ\\�+�a��Uq�','Ck[�&mf��%.��K�v�\042�,K��I��','',0,'?'),('<@XnB\r��u�9�','wp-content/plugins/envira-gallery/assets/js/min/envira-min.js.map','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/envira-min.js.map',0,'���.��B�\\�mQn;','���.��B�\\�mQn;','��/�\Zi{���7.#/\r���\'<��ͅ3(�;9','',0,'?'),('<D�Br��O\Z�Ȭ�r','wp-content/plugins/wordpress-seo/src/editors/framework/seo/keyphrase-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/seo/keyphrase-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OVV)�Y��m�#�','ezr3� ��@>p�m?�/�N���K�q#','',0,'?'),('<F���Pz�22��~','wp-includes/js/imgareaselect/imgareaselect.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/imgareaselect/imgareaselect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(��()��3���','�q�!ݿJӇ��i\n�E�5s�!�\r���%��','',0,'?'),('<P�3U0�\00o�8o��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date.js',0,'/���U�U�))�E','/���U�U�))�E','�]U��b������!��\"�{I��x��V�ٿ','',0,'?'),('<YD�-�A�\'�|)���','wp-content/plugins/wordfence/views/user/disabled-application-passwords.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/user/disabled-application-passwords.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%t�Z)�♟�V�','��G͌�r�A{�\r`\rY���}~h��Jd�','',0,'?'),('<Z��1�Du;�,���S�','wp-content/plugins/wp-optimize/includes/class-wp-optimize-options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�rC�Լh�����G�','�<����ڂWf��.l�90\r��@@R���u','',0,'?'),('<]�L��Ss�Xԗa��','wp-content/plugins/wordpress-seo/js/dist/languages/de.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/de.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']� dRx=�e�2�/�',']���?&wI�+� TiP���2]w��ZD���','',0,'?'),('<eLj�e\"u����','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-forms.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-forms.php',0,'\Z��<��\0{\'Vw��J�','\Z��<��\0{\'Vw��J�','@�1��t���@�H���#�,��`�\rG�\n','',0,'?'),('<l���Y�Qou�1��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/findIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/findIndex.js',0,'LY���dU�{���+�+','LY���dU�{���+�+','�}��չn\0��k���C�7�`_#%J��p�r�','',0,'?'),('<|q�|xܲ\\��zZ�{','wp-includes/blocks/page-list/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���(M�B���_��','����l�[�)��%=g\Z\Z��F����t�W�','',0,'?'),('<|�w� �0#��qK�K','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Input/InputArgumentTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Input/InputArgumentTest.php',0,'<��X�\"ˠ�#�t�w�','<��X�\"ˠ�#�t�w�','��S\0Q�^U)5��騧?��t�J����7i�i.F','',0,'?'),('<�U[��.t�����','wp-content/themes/mint/node_modules/pako/lib/utils/common.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/utils/common.js',0,'֣Ϭd�Hz�;N���i','֣Ϭd�Hz�;N���i',' L�u�x�������8}�\"���9�ДR�i���','',0,'?'),('<�������JZ�\\B','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/pointerlock-api.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/pointerlock-api.js',0,'4���v��o���TSz','4���v��o���TSz','��5p�\Z�\\HIo,`1|�O�lP�!hS�','',0,'?'),('<�y/k�x�Y&�˃','wp-content/themes/mint/node_modules/source-map/test/source-map/util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/test/source-map/util.js',0,'��`ȆY�>`��l*��','��`ȆY�>`��l*��','П�s]��8�ޤ\n��� �^;T�]�Ф�λ~o','',0,'?'),('<��9�u�j����!�$','wp-admin/css/install.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/install.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m����?Wˮ��e����','WH�d$[[�Oy`���ȵ�b���o��?|�','',0,'?'),('<��RP���5�`','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��¾,���_�Q�,�','|��\"7Z���v��S�.s��fY��|@e��','',0,'?'),('<��ll��C��!�*','wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/test/multi_line.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/test/multi_line.js',0,'�C`�0*m�k�]#S��','�C`�0*m�k�]#S��','Qj��U��On h[�V�y ŶA�D���?�q','',0,'?'),('<�]=ίb#��}�X���','wp-content/themes/mint/node_modules/bower/lib/templates/helpers/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/templates/helpers/index.js',0,'V��z4����B���;','V��z4����B���;','�X]�;W�\"�q��un(��B��v����UV��','',0,'?'),('<����ER݅i.t\'G','wp-content/themes/mint/node_modules/bower/lib/node_modules/currently-unhandled/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/currently-unhandled/browser.js',0,'�\\��\Zt@�ݘШi,','�\\��\Zt@�ݘШi,','��%�l���B���yK?[�χ뾏�Ny�]','',0,'?'),('<�ksF����fض','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/key.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/key.js',0,'\r3��i9ց���c�','\r3��i9ց���c�','��yn����F�|g����s�IK�I��_����','',0,'?'),('<���xn�d�2��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-json/lib/util/isAsset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-json/lib/util/isAsset.js',0,'�<�\"-��c� ;@','�<�\"-��c� ;@','�ao,i����`�D��R�n0b�3��R','',0,'?'),('<��ŐʤG߉�9','wp-content/themes/twentytwentytwo/inc/patterns/general-video-header-details.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/general-video-header-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���n&���aNx','��7̍po3dO]/�:\"��-J�N>/�:���','',0,'?'),('<����n��Ҡ�ܫ�','wp-includes/SimplePie/src/Cache/BaseDataCache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Cache/BaseDataCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}{�=�]sCv;�}�','��6发��b����R�v!�B���l��߭','',0,'?'),('<� �wVx�(sdp��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isKind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isKind.js',0,'n�%u<ٱ~���Ҽ','n�%u<ٱ~���Ҽ','��<��\\j:z�̮;��Le��wc�WIP','',0,'?'),('<��\r�4��id}�p','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/size.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/size.js',0,'^Nt��6�0���`���','^Nt��6�0���`���','�������p��ׄ?���a��V6���/K�','',0,'?'),('<�-����gE�(�9׳L','wp-content/themes/mint/node_modules/faye-websocket/spec/faye/websocket/draft75parser_spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/spec/faye/websocket/draft75parser_spec.js',0,'����H:+??A�g��','����H:+??A�g��','���M_�;�!�PX�sH��.��̟W�S\',\Z\Z=','',0,'?'),('<ޤ�l�K`��i��','wp-includes/blocks/embed/theme.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/embed/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AgL��/�О���g\n','�t���#`B�!�I���~{�^��!y|�o�âF','',0,'?'),('<�/�-z�f�C}','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/as_text_node.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/as_text_node.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g>~,�M)��J','��Y+�k��I��15�/R�ӏx]�%o�M�\\','',0,'?'),('<�+0�?[�#�r7E�r','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php',0,'\n����wfA���}\\','\n����wfA���}\\','�B>���j�ux�h��e�4�?\0�z','',0,'?'),('<�j����R�\\���','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Exceptions/ErrorCode.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Exceptions/ErrorCode.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X�AY;F��*/��','������o≋�{��&��t�Señ�\n�ȧ','',0,'?'),('<��bYa��T~��ե(�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsDate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsDate.js',0,'yJ]���f��b&�Jg0','yJ]���f��b&�Jg0','����E\\�L%�[wM������MTj','',0,'?'),('<�hj� �4���4a�2�','wp-includes/js/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���2���![pNI�5','iII4�*��{FZan�Ǡ�)J,T�&�g��','',0,'?'),('<�}hYw[���+\rL','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/trimStart.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/trimStart.js',0,'�z�x��p���T��','�z�x��p���T��','+#*V��M ���]��/���� 8\r*�','',0,'?'),('<��u꿖\Zܜ��Y�^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j�<�]�@���� 4�','\r]\"��!�\'sg=�����zķQ��2�NK�','',0,'?'),('<�ō����V��','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/utils.js',0,'S�h qH!���\\��&','S�h qH!���\\��&','��n�?ɵ%�j+0�lT�����d��!0�','',0,'?'),('<���D:/���%sub','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/equals.js',0,'�q���ɣ�v\"2[��','�q���ɣ�v\"2[��','e�@��(͇�ijx��2|8�T�Da\0�%�\rރKZ','',0,'?'),('=��v�R<�_s�O,j','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayExtremum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayExtremum.js',0,'��d�4�����i��V�','��d�4�����i��V�','f�/��On�~�F���\Z\nłd�ݨ@���','',0,'?'),('=J��ǰja�}LI�Z','wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��pF��t1�+���','�;�}��\0[���\'\rq�����ĥd�;#�.','',0,'?'),('=\rlSky�O��$Uaһi','wp-content/themes/mint/node_modules/postcss/lib/postcss.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/postcss.js',0,'�ʗ��_��M{��^�','�ʗ��_��M{��^�','e�MA��H��H��=��BD3WS��a','',0,'?'),('={P�g���p6.�','wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��O�ڏ3�6\r\"5��','a�b@/�x���V�&�2�b{�x_G��\0K�','',0,'?'),('=�SZ%)��F�\'u','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/flatten.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/flatten.js',0,'ti��H��e�r�yj#�','ti��H��e�r�yj#�','Ւf��WQ��OW�0�Uљ��Mú�ʓ��','',0,'?'),('=0���qb~+O/�','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��L{�l-+.�o','����R�kk��4%&7:������Đ5�Z�','',0,'?'),('=���f;V�dl\"��','wp-admin/css/code-editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/code-editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z���.��y��^J�i�*','{� ������I��^�`��\0�����<<','',0,'?'),('= ]��}��*<.','wp-content/plugins/wordfence/views/waf/waf-install-manual.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/waf-install-manual.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pm�����Q�ynRPqؙ','l�,\\��d.���\"�b�ִ�lz�w�\\�E','',0,'?'),('= �ā��F]�=�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/wrapperChain.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/wrapperChain.js',0,'O���f<:�ԒKq�','O���f<:�ԒKq�','ó��f�|�?�\n����#����2�v','',0,'?'),('=(�)�Y�c�\"�i��','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-lt_LT.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-lt_LT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�ej�8�D��v�!','u�$������i(ݔx�B����z�\Z��','',0,'?'),('=->�ь�tA|��#$�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/QueueableEntity.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/QueueableEntity.php',0,'e��q�)�Ƨ��Y`','e��q�)�Ƨ��Y`','�թ�I^E��\0]b�8�}O�\0��� 9Q� �=~','',0,'?'),('=-r�g{8��U>�b','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue69.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue69.js',0,'�$��fG�oJ�[0','�$��fG�oJ�[0','�Z)*1`%�%ϖE�j>c��&qG�slEn�$l�','',0,'?'),('=-�D�ٟ\0uK�eo','wp-content/plugins/wp-migrate-db-pro/frontend/template/src/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/template/src/index.js',0,'��#�p�;(&��u�X$','��#�p�;(&��u�X$','����R(�6�`�6��n����t��m�(�','',0,'?'),('=Cr���Ih}p�u\"JU','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/shuffle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/shuffle.js',0,'y�>P��\r�Xf3_��q','y�>P��\r�Xf3_��q','�Ą�!�� G��@�l��t�Jf�\ZF��҉','',0,'?'),('=F_j1r��.���','wp-includes/Requests/src/Transport.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\r\Z\0��D����\'���','b��K�t���1#ֱfE�X�{��K�G�G��Mг','',0,'?'),('=G)3��+7h@��z','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-pt_PT_ao90.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-pt_PT_ao90.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�=��%\"nV�z{O','�s���e�,d5�\0e>O�\0ϑ�\n�a�<$�#','',0,'?'),('=L9�B��O\'\0v���s','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object.js',0,'���!T0܂�!@7�N&','���!T0܂�!@7�N&','\0Q@%y�\'}����8�1���? ��','',0,'?'),('=Nl�H��������z@','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/wrap.js',0,'��\r�k�4��x��6U','��\r�k�4��x��6U','�qu��~\r��0h�����\'a��3���\"���','',0,'?'),('=R�֝��@Kv�*\'�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/equals.js',0,'�����Bh4@DD�P1','�����Bh4@DD�P1','�f�15�S���PLJ\'�k�����~���','',0,'?'),('=S�6�a��Xo�,�2','wp-content/plugins/wordfence/vendor/autoload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7��ln_pBH5�!5=(','3�-g,ӌ=$��g�7Ӫ�:V10��h��','',0,'?'),('=Z�E�$JxD<$~�(','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/mutability.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/mutability.js',0,'�i���a0�Cg�~','�i���a0�Cg�~','��p�:��E#�<��A�)�����Ki��n','',0,'?'),('=\\ E�b\"o���S� ','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php',0,'���+*���QM�-��','���+*���QM�-��','�~�I��Q�T��3��Hw�qޅ���YG��1','',0,'?'),('=d�U�!�J��b','wp-content/themes/mint/node_modules/less/lib/source-map/source-map-header.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/source-map/source-map-header.js',0,'H�lSԒ�m� ����.','H�lSԒ�m� ����.','�Z�$�˥��2B�x�������Lo� ��','',0,'?'),('=f�u�A><Th���@','wp-includes/js/jquery/ui/progressbar.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/progressbar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��dya�%�xa��|','M\\ص2��8D��ϋ��O\0��e���4����','',0,'?'),('=i�p�<\\\ZR�fv��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/split.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/split.js',0,'�c�-���@�+�w�1�','�c�-���@�+�w�1�','�f8����0�$E�(bQ�{+)�d8�X\\�9�~','',0,'?'),('=m<�M8�DT��-SK�','wp-content/plugins/gravityforms/includes/settings/config/class-gf-settings-config-admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/config/class-gf-settings-config-admin.php',0,'p|�e����c(��ʏLW','p|�e����c(��ʏLW','5T�U��>�]���i�+�\0���B\r�N','',0,'?'),('=~C���\'�f���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/lib/_stream_transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/lib/_stream_transform.js',0,'����7wXʭ�?��/','����7wXʭ�?��/',':xu�V���� A�X��N��~M{���X�.H','',0,'?'),('=�D��a��B\\|4!5','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/js/livechat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/js/livechat.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vhQL.��:#���y�','�x�q�j�^4*�=��Ӓ���3���5','',0,'?'),('=�q�zZGgD��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-toJSON.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-toJSON.js',0,'�!߈����3�Mr�]','�!߈����3�Mr�]','t�&σ�U5t�F��q��F�ƕ�b6���j�J','',0,'?'),('=�N�F�0�h%0Z�6','wp-content/themes/mint/node_modules/minimist/test/long.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimist/test/long.js',0,'e.�^i�A獚�_�W�','e.�^i�A獚�_�W�','�P�-�FZ+�-I�\'VRHØ�Vx�0��BH','',0,'?'),('=�.\n.վ~��r柳N','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/json.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/json.js',0,'�Ok�\Z���[�&�_��','�Ok�\Z���[�&�_��','�\n%XH1%X�PSr�ߞR�v���nG^@','',0,'?'),('=�����NJW��8\"��=','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Automatic.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Automatic.php',0,'%����wvA2��,�','%����wvA2��,�','PG������+ʐ:�]wG��7�~��$','',0,'?'),('=��$Z)�W\\;��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/bindAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/bindAll.js',0,'���ѢvW�@�M�2�','���ѢvW�@�M�2�','\\3��3|^JV�SA��H�]U�<fD3/j;3�\n','',0,'?'),('=�J��-��R���','wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/dist/lodash.compat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/lodash/dist/lodash.compat.js',0,'O�����\r�Y�\0��c�;','O�����\r�Y�\0��c�;','�CZ#�D��c�����A��\r��3���L�s','',0,'?'),('=��pBb�*����{�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/Reflection/CallableReflection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/Reflection/CallableReflection.php',0,'���J,�����','���J,�����','�\nڌ����\\�8&gM+��ϓ��%�-��~��','',0,'?'),('=�����<�����U','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/each.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/each.js',0,'l2V�[u����A���','l2V�[u����A���','���R�<�5��_��bƪu�]�Ll��v9','',0,'?'),('=�v��,Q�$����','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Blogroll.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Blogroll.php',0,'��ad�,�h���5�(�','��ad�,�h���5�(�','i1nk]\Z�+u˵�TC�3z}Ų����@����','',0,'?'),('=����75\ri�$���','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/without_basedir/main.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/without_basedir/main.js',0,';d�I�_���!���',';d�I�_���!���','�#͏|sP�F�(��������/�$�)��{','',0,'?'),('=����B���l�)I��','wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���cvc0}M�q��','����kN\\��QA��Sh��@�_I�%z9\'%8','',0,'?'),('=��O�a��v\'ǁ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isRegExp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isRegExp.js',0,'���d�)����','���d�)����','ַ�զ\"Q9��ɪ�������ƽ ���;@s�','',0,'?'),('=��k�[4��� ��=�','wp-includes/comment-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/comment-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����v��Mg��o_��','��}1�bG\ZI���.�yl���C6�ED��?','',0,'?'),('=��X�cR\"7��5\"�','wp-content/themes/mint/node_modules/less/dist/less-1.7.5.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.7.5.js',0,'�ܡ�<6��ܾ\'0� |','�ܡ�<6��ܾ\'0� |','f����r��u�v\rL���BD�ыb`�x�PJ�','',0,'?'),('=�A\\��\0�&�\Zg���','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Loader/Lines.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Loader/Lines.php',0,'$�XLn��ؒ\n܃�','$�XLn��ؒ\n܃�','�Ŭ�Ǩ�<�p�d/ػS�T��[��\Z���h','',0,'?'),('=��Ө��\0E���','wp-includes/blocks/verse/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/verse/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��eʰ�A����T[�','7;(���@{���\n��>�4 ���3�-.�+��','',0,'?'),('=��`�;��z�7���','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthentification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthentification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0Nر�\"Qp�h8�','���*��k��~���N4o۟P��F�HiN�','',0,'?'),('=������d)�=A�D','wp-content/themes/mint/node_modules/htmlparser2/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/lib/index.js',0,'p�mu3/p���x�_�*�','p�mu3/p���x�_�*�','p�$^�iY����T�Fn�<���z,��0V�','',0,'?'),('=�;�{���e�6�5�','wp-includes/js/jquery/ui/effect-pulsate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-pulsate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(���*�&���b','�A��^�����}��>��t:�,�}��1�','',0,'?'),('=��P�����=W ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/isNaN.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/isNaN.js',0,'�O�?=��*2�\Z`�?','�O�?=��*2�\Z`�?','VW#0�`�!(auy_�~�H|�_|��z^','',0,'?'),('=��_���3t6K�r','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/rand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/rand.js',0,'��S�p%L���A��','��S�p%L���A��','�Ë pHȴn��D(��a�5ֆ�ԋ�ޔA�^�','',0,'?'),('=އyu�Bd>\Z�݆Z','wp-content/themes/twentytwentyfive/patterns/testimonials-6-col.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/testimonials-6-col.php',0,'�ݔ\'���ɓ�J�yMv','�ݔ\'���ɓ�J�yMv','��uj�ǒ��4g�4�\n��N :6�e����','',0,'?'),('=⒜�W���~1_��','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/FactoryException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/FactoryException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�m��j5\\��3h','��A\\�/�l^�&\nT܀0��ܬ����4\'�\r','',0,'?'),('=�F�혣�Æ��K&�','wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3|xw��J��uT�V�','��i��,��0���@hz<�RQwK�dh�\"','',0,'?'),('=噄\nA�K(���l','wp-includes/js/dist/keyboard-shortcuts.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/keyboard-shortcuts.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6�\r��;(����','*��-�I��.nC�����:�Oڄc�&���','',0,'?'),('=蜕�G�����R��','wp-content/themes/mint/node_modules/less/test/browser/runner-rootpath-relative-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-rootpath-relative-spec.js',0,'+>}@�XY�%e5���','+>}@�XY�%e5���','�s��*ں\'#ع\"�&�a��Ҩ��w��e��','',0,'?'),('=�a������0&','wp-includes/js/jquery/ui/effect-slide.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-slide.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/�1ɿ�����','��<V&gf���:S��aʥ��l��','',0,'?'),('>ǯ����yR�M�_','wp-content/themes/pinnclonesmalltest/resources/views/home.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/home.blade.php',0,'91���-����}','91���-����}','�o\nX����f[��ܿ��ߙ�����37','',0,'?'),('>H��D�AJ^Q{��h','wp-content/plugins/wordpress-seo/js/dist/externals/draftJs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/draftJs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3,fͿ�64p�1','�6g�g��ZN?�.��\Zsڑu��`����j4��','',0,'?'),('>J+�ݰ�{������T','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_shuffleSelf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_shuffleSelf.js',0,'�kC<�9�)},�\nB','�kC<�9�)},�\nB','%��f�����D�f����ӮZ��}�A�4','',0,'?'),('>�;�v<��Q���� ','wp-content/plugins/envira-gallery/src/Admin/Table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Table.php',0,'�5t3~�\Zg�:�P��','�5t3~�\Zg�:�P��','f�yv����\Z�oq�:�� �\'\0�f<_4l�k�b','',0,'?'),('>���ě�%�n+��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hasUnicode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hasUnicode.js',0,'�8��m��Wʗ��5-','�8��m��Wʗ��5-','�1#�N�}�u�֭/F��h9C*$��9 9?v�','',0,'?'),('>[� g�3d�����','wp-includes/blocks/spacer/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/spacer/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&P�G>�u����Y��7','s<��f7���\'��7$��`~H�\r|J�@','',0,'?'),('>��Z�I�I|a��','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/DroppingStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/DroppingStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܤ��\\#\Z��y�[�{�','v.+.�ÿQ�m��^l�70�5�\'Q��auMM�','',0,'?'),('>�k�#��C�K�n�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/InstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/InstallerTest.php',0,'h9�/��_zy>�xQ�','h9�/��_zy>�xQ�','/�$���\\��KM�%:�m��C^!f{�.;n�{','',0,'?'),('>Is���i0\">\\b','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/YamlFileDumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/YamlFileDumper.php',0,'�D��2�ZT���f��9','�D��2�ZT���f��9','�GT�eY���B��Uq\Z��ے�#�v<�˾','',0,'?'),('>��z���Y���h�oN','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/cookies.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/cookies.js',0,'�OS�j�FzWڡ��2','�OS�j�FzWڡ��2','�Y6�&���F�;��������M�-���','',0,'?'),('>���W�my߭\n�\r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/test/requiregSpec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/test/requiregSpec.js',0,'ΰ!�����ºe=�HLv','ΰ!�����ºe=�HLv','xC{KJ��_+B��ڒ\\2L��X�uAu9v','',0,'?'),('>%m���5��_�@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/request-replay/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request-replay/index.js',0,'�;��b��3�.�','�;��b��3�.�','!�5�n��̏I�G�0���Sc�PQ��.Л?','',0,'?'),('>\'�8`�\\�ݰ��W�','wp-content/plugins/wordpress-seo/src/routes/alert-dismissal-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/alert-dismissal-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,(!*�Ť��� ��','�T�9��J��n�u�ؔ8�\r�*u�_�\ZB��','',0,'?'),('>(��>P�$�V�\0�l�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/indexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/indexOf.js',0,'�S<��ZS�yFT�E','�S<��ZS�yFT�E','�`��c�a-��;1��cL����o��n]�x','',0,'?'),('>)�L�,R������','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isPlainObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isPlainObject.js',0,'�������QQn�X�\r��','�������QQn�X�\r��','�РX�MP�H�C��l<���)��nw·SV�','',0,'?'),('>+ 1�6�LR�#ѽ�','wp-content/plugins/wp-optimize/includes/class-updraft-abstract-logger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-abstract-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������Y�9��5`','��SA-4| j�$p,�N�dr>\0F��\\�<','',0,'?'),('>,� ���\0~t���h�','wp-content/plugins/wordfence/views/onboarding/registration-prompt.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/onboarding/registration-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\��@�\r��.�з+','�#s-�x��e��C`��!V��p݁ѬYډ�j','',0,'?'),('>5��ˏ.y2Q[ڣ�1�','wp-includes/blocks/block.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p�6p�t �`��[v','�ۆM�\\\\�NSL�\ZWf�\0J)�o^B�XD��','',0,'?'),('>:�qn7iP��I3�W','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/findLastIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/findLastIndex.js',0,'%��3`�5ȋ��ǟ','%��3`�5ȋ��ǟ','?c�l�x��<~G��SӒ :?l���ϛ','',0,'?'),('>=��+� ^SΉ��Fޯ','wp-content/plugins/wp-optimize/readme.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���~!\\�@�Ύ�)�','�DS?K��LpF�cΘ���N�����A;hj�<��\"','',0,'?'),('>Aq�[)�T����4DZ','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-d6d11dee.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-d6d11dee.min.js.gz',0,'��߮FIfh�yY�� ','��߮FIfh�yY�� ','�aM;uCk���#�t)��J\"=+��U%l�','',0,'?'),('>Fn�n��#���D�','wp-content/themes/mint/node_modules/mkdirp/examples/pow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/examples/pow.js',0,'t@ޖ���>=��\r���','t@ޖ���>=��\r���','i�R�ݫ��.^�D�`Cy՞>���m�5','',0,'?'),('>G���X.�C���w��w','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php',0,'�ݴ���#�A�Qv�*','�ݴ���#�A�Qv�*','-���7�\r`�Kv�)8�j�)Z���I��','',0,'?'),('>G��O�jP�l���B','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��$�]\\�������','ؚx\"�o�*I�\nQ��j�����T(�G\Z�.�\Z','',0,'?'),('>Hesc�PrQ��z7]d','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/LocalizedTemplateFinder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/LocalizedTemplateFinder.php',0,'�S���@��\"8���*','�S���@��\"8���*','30��//m����>�3<K�Q2;�\"�8_�i`','',0,'?'),('>P���Ty�N�\\R��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php',0,'5j\"�_�RO�XC�r�','5j\"�_�RO�XC�r�','�%���A�tcs�0���u�/�S����','',0,'?'),('>U6S��a�f-Zn��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/CSS/BrowserSpecificStylesSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/CSS/BrowserSpecificStylesSniff.php',0,'z������:��%','z������:��%','b:C����=g�;�벁 ��\0o��A�#�','',0,'?'),('>V�;1F@����}��','wp-content/plugins/advanced-custom-fields-pro/lang/acf-fi.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-fi.l10n.php',0,']zm��k�;�/���',']zm��k�;�/���','mL�b�����%�DҲ1�z���*A���s��','',0,'?'),('>^��m������Z�{�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/TransferStats.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/TransferStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Vȩ^��lr6��Ȍc','h���,�O��(������m�Z�F6��','',0,'?'),('>a�8?\\��oC���A�!','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Str.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Str.php',0,'���f�!Ks�!�9Fz�','���f�!Ks�!�9Fz�','�Lޞ���\"�2����D���Q�lp��C�','',0,'?'),('>hЩ�XX*�v1���','wp-includes/theme-compat/comments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/theme-compat/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U�����Ҵ���\0','z;�h| ���txȘ 碉\\�bd!ori�>jr','',0,'?'),('>o����z����I�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/ary.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/ary.js',0,'{ZM�nb�M�Z��','{ZM�nb�M�Z��','�+���\"Y�7d��k-HYh�\'5D��q�9�W�i','',0,'?'),('>ql�+�m�\05Ħ\"�^','wp-includes/js/customize-preview.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y �$F-��=��Xh�','P������#y�JI�+t���P�ǰ�\"�k','',0,'?'),('>r9��;�������','wp-content/themes/mint/node_modules/iconv-lite/test/performance.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/iconv-lite/test/performance.js',0,')ILӂ�E\rGs\rZ��6',')ILӂ�E\rGs\rZ��6','�р��)�3���y���<E����Y�Y','',0,'?'),('>u��ʸ�!4N2��','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�;L�\'��dee��','�+G�T}�m)*��[���c5�Z�N-v>�','',0,'?'),('>wA�I�\roƌB�$','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/scan_buf_null.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/scan_buf_null.js',0,'U g(���S����˻&','U g(���S����˻&','�<��\nF�o��I��T�¼8���J �1��f','',0,'?'),('>���w\r�A�YǼ�','wp-content/plugins/gravityforms/js/duplicate-submissions.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/duplicate-submissions.min.js',0,'��Z-����KUˍ��','��Z-����KUˍ��','w�k�eb�רğUq0��<g?�7�xu�v�','',0,'?'),('>�P� \n�h�7��\r4�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php',0,',�J�����D�ũ�',',�J�����D�ũ�','8�����}+��{3{9\n���Bx����=\'0��','',0,'?'),('>�5�w�FZ�\r�`','wp-content/plugins/wp-reviews-plugin-for-google/tabs/free-widget-configurator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/tabs/free-widget-configurator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ұ�Q�+;mS�\rKsxg','tr^!P�Ze�?�(K����r ͂�\Z9�RKJt�','',0,'?'),('>��pu��L3Ij�^�bo','wp-includes/blocks/comments-pagination/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"I[�/)+�%���կ[','rH�$�q!Tž*c\\M�{�\ZC�؏fE�ߘ3L��','',0,'?'),('>�K�K��P]��z�d,','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/removeAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/removeAll.js',0,'�5i��qU�T�ߝ�5','�5i��qU�T�ߝ�5','W�r�����Tj�Ͷ��_�ni��R\"-���\0��L','',0,'?'),('>��{)�G�ÅF6�','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('>�o�������t�+','wp-includes/blocks/post-terms/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-terms/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�na��^�9(8Y�wz','Jz|�C_L�y����=�|]�p<(X���R','',0,'?'),('>��X�\r�b��ڟ�$W','wp-includes/class-wp-image-editor-gd.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-image-editor-gd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���*�ٲ8��0�$�','��B��LN~�妴n7�0*tpV���e�u?x','',0,'?'),('>��%�����H��','wp-includes/blocks/template-part/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/template-part/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7�4͞K^(ӑ��9�','S1>ۄ�f���IZ���Z3���P�i�*�','',0,'?'),('>����\0�V?s�\Z��','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsible.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-collapsible.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˡ�kI�9���H���','XikWM��0���� \n.���S7�f\0��x','',0,'?'),('>��MS��jM|@܍�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/diff.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/diff.js',0,'q\\_�\'0a�ї��','q\\_�\'0a�ї��','�� 5�Y�B�\0́���7f��z�\"&��','',0,'?'),('>��Gf�@�Tម;�D�','wp-includes/blocks/cover/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/cover/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>���]�6&��9�?R�q','�k]�P)���Tt*��AWT+d|����cF6�','',0,'?'),('>�F\ZN0�����oj���','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/test/fixtures/lib/node_modules/beaker/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/test/fixtures/lib/node_modules/beaker/index.js',0,'L����~�0�s�','L����~�0�s�','�u�D��ۅ�C�QHb����z�����A�j�','',0,'?'),('>�w�j����{��','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/strip-json-comments/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/strip-json-comments/cli.js',0,'��P%�F�q�=.Ob9','��P%�F�q�=.Ob9','�sF�q��j�g��A�Q!z�On�7ʋ��d','',0,'?'),('>ʎ�嘤�\0U�1~��M','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party/wordproof.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̩�RT����~dI1','�M5B�T�JT�l�]�]�\0e�1��ʼnVQ��H��','',0,'?'),('>�8j�U� ���RT�','wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/test/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/test/parse.js',0,'����MB+���b��','����MB+���b��','B����m���M�U����K@,����','',0,'?'),('>�78� ��1��=�y','wp-content/themes/mint/node_modules/shelljs/src/dirs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/dirs.js',0,'\0ԇ)�^���}43e=�-','\0ԇ)�^���}43e=�-','K�N���B�Nj١�6`��ku�o�̧�','',0,'?'),('>�\"��0� 4s���','wp-content/plugins/gravityforms/includes/fields/class-gf-field-donation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-donation.php',0,'8ST�=��Vw��','8ST�=��Vw��','G�z��_DН����$g�bش�Ϡ�E-�\r�H ','',0,'?'),('>���i�r� �X��','wp-content/themes/mint/node_modules/domutils/lib/traversal.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/lib/traversal.js',0,'��.ou��D�)^�E','��.ou��D�)^�E','\'��\\m��F�ۺ4P���pi�Ϻ�T<�F�8��','',0,'?'),('>�C2�r�bV^EU','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/deepFillIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/deepFillIn.js',0,'�r�ME\rV����)','�r�ME\rV����)','!d�B���C��#��\'�\0����Qp&|�?��u','',0,'?'),('?�WZBD�N�1�3��','wp-includes/blocks/audio/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/audio/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f��_��0�4��a','���s8!�20��ڠ������/%�Q?��Sv','',0,'?'),('?{���_��Q�4<?','wp-content/plugins/wordpress-seo/images/indexnow.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/indexnow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�;`������?�/','vZp�kTs�Ɛ�\0��9\rc�ڇ�94\r���9d','',0,'?'),('?ה�Z\"k�zŔw~*�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invert.js',0,'����v�눆@�','����v�눆@�','ś˱���ЁBf&�v�\\;CC�z\\��E���','',0,'?'),('?���p|R�o��','wp-includes/blocks/separator/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �t�E�o?@�{','��kL��#G��a^ ,І\rF\'\n�g:}FLz','',0,'?'),('?�hQ���͔*��u','wp-content/plugins/advanced-custom-fields-pro/includes/admin/tools/class-acf-admin-tool-export.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/tools/class-acf-admin-tool-export.php',0,'���6�\0nS��$�\n9�','���6�\0nS��$�\n9�','���u�>��~d�e8?��%gu@q�͌�t��','',0,'?'),('?-;j\rbF�\n랈:','wp-content/themes/mint/node_modules/text-table/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/text-table/index.js',0,'@�9U������.��','@�9U������.��','�0���!/0zs�^�*9�pӁ�����%�','',0,'?'),('?<,�����%���!R�','wp-content/themes/mint/node_modules/bower/lib/renderers/JsonRenderer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/renderers/JsonRenderer.js',0,'���5��I��+;X�','���5��I��+;X�','�/��Q��o3(i<��W��Ђ�t)��4�ʿ','',0,'?'),('?B���%�}�^��\r#�','wp-content/themes/mint/node_modules/bower/lib/commands/list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/list.js',0,'(y]�.�C,��ڿ�~�','(y]�.�C,��ڿ�~�','sc�3BF��I~��v|�a@d���Z��nU_Cz','',0,'?'),('?F�㗵�ӟVa��m�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isPrototype.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isPrototype.js',0,'w�Im����D��Y��<','w�Im����D��Y��<','O���o�+͉��\0h��!<]W��9�>Y��pq5','',0,'?'),('?F�2��}���M\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/times.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/times.js',0,'�GZ���7���','�GZ���7���','.��Jw$G��5S���-֠�ׄ+@Q�Hz�B','',0,'?'),('?M��\"����*���','wp-content/themes/pinnclonesmalltest/resources/assets/scripts/util/camelCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/scripts/util/camelCase.js',0,'�kY�I������','�kY�I������','�L�(Ke�?���\Z��Q(O��o����r�','',0,'?'),('?O�:�;xP!���R|�','wp-content/themes/mint/node_modules/grunt/lib/grunt/fail.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/lib/grunt/fail.js',0,'��PW}��r�=�b�','��PW}��r�=�b�','Ț�<�x괪QCe(�d����?\rf�<��q�74�\"','',0,'?'),('?Tx\n��Y\r�=�a�n','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/toLookup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/toLookup.js',0,'[�/,2���Y+>YT�','[�/,2���Y+>YT�','��N����Pw�6d;x��h��%��n1]�v�^�','',0,'?'),('?U������\'_l.�p','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o>B�� ����IN�-y','��hl�[�������(�l~�Q�u�FM� �','',0,'?'),('?X\\�mf��ڕڣ�g','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-columns.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-columns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1Ш�Jl\nSӧ','E1�/�חP��.x�D�a�e�Q�+n@&�iB','',0,'?'),('?X}�=p�^����d��R','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/Exception/NotEnoughParametersException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/Exception/NotEnoughParametersException.php',0,'�9�K��V2Ek�~�','�9�K��V2Ek�~�','Ɯ�&�4���w��g�(@�G���g�t��p�','',0,'?'),('?Yv�q_����ۮXO','wp-content/plugins/wordfence/images/sort_both.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/sort_both.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%�B�Qx�SV.D','����6��\"@X�g\'�W7��w��gJ���q','',0,'?'),('?Z�g��s�IB�a���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php',0,'\'�����}�x��{+�','\'�����}�x��{+�','�D�L��R�V\n}��|\'�OH�ZV�F��','',0,'?'),('?Z�s�0Zd���JABo','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Debug.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Debug.php',0,')��_� ]��\'(3ʽ',')��_� ]��\'(3ʽ','bY�*�O��}wg�K����ɡ�U~?Y8���','',0,'?'),('?]�P�.��1����2b','wp-includes/js/tinymce/plugins/textcolor/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%i�3����f����','(��EL����b[��K�!s�ӊ�nIJ��','',0,'?'),('?fT�v6}�c�J��\"�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/ConfirmableTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/ConfirmableTrait.php',0,'�q��y�4��c@��(','�q��y�4��c@��(','^e��W�\'�1*��a����l��=�;*�L��','',0,'?'),('?gbq�\0X���4�,>','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-a.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-a.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^��R4T��XfĹ8�','\\ĉ�� 5\r��\Z��!t81�\0==��Y[;$+','',0,'?'),('?h�h�:z͏qZi�V','wp-includes/blocks/post-author-biography.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author-biography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y:j�\\�{L��s','�2 ���ǜM�u���)���%�A�_�k2z','',0,'?'),('?j�H�}_�@��ˋ�','wp-content/plugins/wordpress-seo/src/introductions/application/ai-fix-assessments-upsell.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/introductions/application/ai-fix-assessments-upsell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��K������d�C','�B��I���ŝ̹�uT���t~w#Vg��UZ','',0,'?'),('?p�Tҭ��m$�O�G','wp-content/themes/mint/node_modules/esprima/test/reflect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/esprima/test/reflect.js',0,'.�Dx]�}�N��y','.�Dx]�}�N��y','\n�=st�SJh��aZ1���Q���N�O]��','',0,'?'),('?we����$t�1$','wp-content/themes/mint/node_modules/bower/lib/node_modules/lowercase-keys/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lowercase-keys/index.js',0,'y�t���y_����','y�t���y_����','�m�y�&@#�.\r���؎�ң*36g�}Jh�','',0,'?'),('?�150:���p��+�@(','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/WHITE_SPACES.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/WHITE_SPACES.js',0,'2=�\'q~�i�WCP��','2=�\'q~�i�WCP��','�2NW�Aoq\Z�l�m ��h�U��N#�,�8','',0,'?'),('?�(��{��4�G�Aqw�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/queue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/queue.js',0,'�$��5�Ճ��Ȃ2�B','�$��5�Ճ��Ȃ2�B','ԜcpZ�I��P����ST��p]�ftj�x�A�','',0,'?'),('?��e�B�s0�I -','wp-content/plugins/envira-gallery/assets/images/logos/gutenberg.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/logos/gutenberg.svg',0,'��K��gX�����P8�','��K��gX�����P8�','z4xG�����DdOv�k#j>xǥ��{�\r','',0,'?'),('?�kK�q&|�r��','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Glob.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Glob.php',0,'S�&��7 �,ʝL�','S�&��7 �,ʝL�','ڈ�V��2�����/be�P�P9<�Ck.J�L`','',0,'?'),('?�[c{�q�E�\'�g�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSum.js',0,'����lK�0���9�V','����lK�0���9�V','�7�?�Z�\0�`m�xI��2�Л���\0','',0,'?'),('?���8vß��(��D�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/simple_html_dom.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/simple_html_dom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r�蜉��/G\rK8wf','V)/M����Gjg�f��M�̊�S�M��UzW','',0,'?'),('?��=�@�M�$#��P7','wp-includes/js/dist/html-entities.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/html-entities.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���n`�a�(v5��','Ȑיp�R��%g\'w��st�\r����/','',0,'?'),('?��{���A��W�a��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp.js',0,'M�~\nN>�I||��','M�~\nN>�I||��','fI�n`�n��4�#�g�|��\\\"Jì7��','',0,'?'),('?�cW|~z�Z�\n��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseDifference.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseDifference.js',0,'�dJ#��7�R���Ds','�dJ#��7�R���Ds','LYe�G�ӫ�%w� r6���&e(_W�\Z��z���','',0,'?'),('?��Uc���!U��\n','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/rel.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/rel.js',0,'��Kq��:og\"M�c�','��Kq��:og\"M�c�','��5m��X��J��=��g0�\0�H_JO��','',0,'?'),('?��1�I��KZd\r���^','wp-content/plugins/wp-migrate-db-pro/class/Pro/WPMigrateDBPro.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/WPMigrateDBPro.php',0,'e�b�͝G%�����','e�b�͝G%�����','�,y���|�@}!�\r��_w�Ԋu[\\O�Gi��3','',0,'?'),('?�Do��K��t���嘵','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php',0,'R�_[�>\n&��t>T�','R�_[�>\n&��t>T�','���,�U�ƻ��O�+C��4�Cew� P�o','',0,'?'),('?�Sl��Z\"�XB/��r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/cli-width/index.js.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/cli-width/index.js.html',0,'D���V�l+� ��#u','D���V�l+� ��#u','ͥ�\0zL{�oq��n�S�i*��Z����\ZgNT','',0,'?'),('?�-\r��@��嶺�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/NumericArrayResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/NumericArrayResolver.php',0,')��^k&�AřǴ',')��^k&�AřǴ','O>eg:�m�\"�����&�@�����%�\"��u\\','',0,'?'),('?�����zG�e����d','wp-content/themes/pinnclonesmalltest/resources/assets/build/config.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/build/config.js',0,'�U pLS�dzz8���=','�U pLS�dzz8���=',',4��:� ��Tg{�/CG6P1h��Xe+��T�`','',0,'?'),('?�#vfL������_','wp-content/themes/mint/node_modules/noptify/test/fixtures/a.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/noptify/test/fixtures/a.js',0,'`�%����\r��\r����','`�%����\r��\r����','ʗ�����1��#�M���|Nr��w���H�','',0,'?'),('?�*3�9lK܋�(KD2;','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/faulty_basedir.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/faulty_basedir.js',0,'+���w�Ow���F/�','+���w�Ow���F/�','�>;�N|&s���9�X�\0����R��n�u�6oH','',0,'?'),('?������[�E���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/hyphenate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/hyphenate.js',0,'��g�N�1�^�Q��','��g�N�1�^�Q��','����7��@yBw`_��5^�L�','',0,'?'),('?��V�%��ծ','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/array4.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/array4.js',0,'��F��%S����Xno','��F��%S����Xno','��+��\0��VCGz^XuAR�8y�[�cl���','',0,'?'),('?�+o�L@��&��O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/WHITE_SPACES.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/WHITE_SPACES.js',0,'0}�����\'��-g��','0}�����\'��-g��','Y&�ؖD7�2��|��{�Q�7)�0�-�+��h','',0,'?'),('?�4!�5ԣ�\"̘��S','wp-content/plugins/wordpress-seo/admin/class-yoast-network-admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-network-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C�g\"c�K?�H�}ӥ�;','��������*@�4�<�́�;�����vN����','',0,'?'),('?��b��>s:�|t1#�x','wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����c䏘Z�c�U','�o��DGX�$�)\"��.�A��װ�S���t�','',0,'?'),('?�=vu�#��T�.�%','wp-content/plugins/wordfence/js/wfpopover.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/wfpopover.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R��:R�F_�C�FR','�l���ݛ�92̋�!��f/��Ř!R���GO�8','',0,'?'),('?��o.�(`�8\"��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/clone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/clone.js',0,'�Ii�j?��8j̥!','�Ii�j?��8j̥!','�Nf��w^ٱ���;��o�� 0|�\r�]�W(','',0,'?'),('?�_Up�^K��P�|�','wp-content/plugins/wp-migrate-db-pro/class/Common/Cli/CliManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Cli/CliManager.php',0,'^)��F�)˻j4:�=�','^)��F�)˻j4:�=�','Ҭ�B�2�r@��\'���^\'��Ɇj�+a�0V�','',0,'?'),('?�6j�T\\�##�bA��','wp-content/plugins/gravityforms/includes/fields/class-gf-field-captcha.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-captcha.php',0,'L��\0�s4���̗�','L��\0�s4���̗�','�<;[�UY��_�]#� *�5+#��������7�','',0,'?'),('?�g�Eڜ�˥��4�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/reduce.js',0,'ec���1���YIR','ec���1���YIR','�ե��8��͂*��lld�d� �_�^-�k�\'�','',0,'?'),('?�Z�_ON9Y/s���0','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/align-content.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/align-content.js',0,'E�SbӐ`���n��B$','E�SbӐ`���n��B$','��I��O;�B�R0����w·��?\r\0+�A�]','',0,'?'),('?�2�g�5B|MIK��','wp-content/plugins/advanced-custom-fields-pro/assets/build/js/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/build/js/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('?���\"i`.���n�XQT','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/Job.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/Job.php',0,'��4}3�\r��g�6{�','��4}3�\r��g�6{�','�<��|��+6�����^\Z���t�!V�rD','',0,'?'),('?�^�.+��t\Zɻ�$L','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u2m�#��<�\rO17�','�����a��(����s@91Џ�i{P�Խ 5>��','',0,'?'),('@\0��8(<:�t�#1�S','wp-includes/css/dist/block-editor/default-editor-styles.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-editor/default-editor-styles.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ӣT2�i�ËV�','sT6�\n�f��!9(�H����e*Qg�/u����5','',0,'?'),('@\0甑=���mt�8#^','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/lib/extract_description.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/lib/extract_description.js',0,'\\R<J�iXo2Ԝl�ٜ.','\\R<J�iXo2Ԝl�ٜ.','_^S��]�E��S��tC��Mz�m<�e','',0,'?'),('@6Y�}J��b�J��@','wp-content/plugins/envira-gallery/assets/js/min/media-insert-third-party-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/media-insert-third-party-min.js',0,'�m9��q��e�u�[','�m9��q��e�u�[','�/��C��+�����v���\\���)�~','',0,'?'),('@g���H���g��','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-retry-allowed/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-retry-allowed/index.js',0,'�N+��j�(^ݟ��','�N+��j�(^ݟ��','�-�V��\Z�ap/؎\0�$���,�D�\ZxG','',0,'?'),('@p��ޠ��3DF\0','wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P��Q�;0���#4b2',' �j��h9q���Kr;5X��VP����e�%@լ0','',0,'?'),('@�_�������','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-previews/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-previews/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('@\"�ӡ� �)�dQ@_l','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/block-helper-missing.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/block-helper-missing.js',0,'{�v��fB�1+�X�','{�v��fB�1+�X�','�ҧr���y#$�ǂ���i�]n�\'8���P�','',0,'?'),('@&��編��}�Au','wp-includes/Requests/src/Exception/Http/Status413.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status413.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','е�$=�WfaP���w','����ח�r�M���Hݜ����y��4߮8J���','',0,'?'),('@.�\\laXq\"��AL�','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-chevron-down.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-chevron-down.svg',0,'��H�JPv��k}\0','��H�JPv��k}\0','T��l��i��Y,�z���.��c�0���','',0,'?'),('@0���1/O��ځ<#','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/FixmeSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/FixmeSniff.php',0,'mvMג��\0��q�2D�','mvMג��\0��q�2D�','/\r3���+KM 2�2���(!��f�VBj�','',0,'?'),('@0���d���}��֗f�','wp-content/plugins/gravityforms/images/no-fields.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/no-fields.svg',0,'�nU����7kTbI�I�','�nU����7kTbI�I�','(�4�*�/~Aa�� ��*����W','',0,'?'),('@24fZ�� �w��\r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/short.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/short.js',0,'��+*vq~\n!~�2>��','��+*vq~\n!~�2>��','�]�o,`�·�lvH=&�̼Փ&Z�A\r=�E','',0,'?'),('@504�OPzt�\r�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-mediafiles.ecedfa39.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-mediafiles.ecedfa39.svg',0,'�Nܯ�Y��e<�LD�7','�Nܯ�Y��e<�LD�7','1ڥ1�������s��L�e�!�~����','',0,'?'),('@7��d<����n��t�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/assignDefaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/assignDefaults.js',0,'�.�A��Ը;�\Z^$:%{','�.�A��Ը;�\Z^$:%{','��_Dn��~�x�����hȳ��ӄ�ḡ�','',0,'?'),('@B����>3S��,��0','wp-content/themes/mint/node_modules/bower/lib/node_modules/lru-cache/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lru-cache/test/basic.js',0,'O�$�!�}xd����i','O�$�!�}xd����i','�Q`��Ş�2w�^�v����F�k�pi���H','',0,'?'),('@EN�FK�����~���','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/1e21.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/1e21.js',0,'��\\ ��L��2�HLf�','��\\ ��L��2�HLf�','*ܥT�����~jR�uBmi@N,B��\rUgj','',0,'?'),('@K�hk03�p�|�t��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/lib/debug.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/lib/debug.js',0,'���-_�S,33/���','���-_�S,33/���','#��hf���ņ�o#��x�1Չ�\n��� �d','',0,'?'),('@L��t����Q�b:9','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/i18n/de-DE.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/i18n/de-DE.js',0,'gO3��Ն�M����','gO3��Ն�M����','h!�</r-�\\l���5��..K�J/s��m��','',0,'?'),('@N3�0�>�`8l��','wp-content/plugins/wordpress-seo/src/presentations/indexable-date-archive-presentation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presentations/indexable-date-archive-presentation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^�����1��','4]N�OW���\0V�қ�kҝ�v2~�_[T[N','',0,'?'),('@QDu��?J]Ǒ�lf�','wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Export.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Export.php',0,'HO�a`C�*���,���','HO�a`C�*���,���','�f�_V��nS�f�70��L�)��]���\0','',0,'?'),('@Q�}:dzƳ`{^b�`','wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/test.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/test.html',0,'bt�G��\Z��1��a�','bt�G��\Z��1��a�','�Ժ�/��p���9��5�AI+p]�','',0,'?'),('@Tk�41���*����','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/typo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/typo.js',0,'T��Ƣ��F/���\Z','T��Ƣ��F/���\Z','�[�q1ϽDpQ8oQ%�\"2bF�X�^#����','',0,'?'),('@V�K$~`*�+c�0�','wp-includes/block-patterns/query-medium-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-patterns/query-medium-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���<��U�V��n�','#l.�C��v��*�������;��!�4�f','',0,'?'),('@V�$�K���<�1*�','wp-includes/css/jquery-ui-dialog.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/jquery-ui-dialog.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\e�*�y�4��','�� z�8�����i�\n%�i=4�̆A�a�G�w','',0,'?'),('@Xa��/:�P��e��y','wp-content/themes/mint/node_modules/lru-cache/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/lru-cache/test/basic.js',0,'O�$�!�}xd����i','O�$�!�}xd����i','�Q`��Ş�2w�^�v����F�k�pi���H','',0,'?'),('@Z�.������2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/getQuery.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/getQuery.js',0,'����%h��)��F�','����%h��)��F�','���&�����r+�3�l�SN��_��cp}','',0,'?'),('@c� tV3��VW�e|A','wp-content/plugins/wordpress-seo/src/integrations/admin/check-required-version.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/check-required-version.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X������ҍaxǥ','b�Ǿjw�|WQ-[)�S\r,Џɧ/z�hh\\','',0,'?'),('@d���َ��v','wp-content/themes/mint/node_modules/bower/lib/node_modules/throttleit/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/throttleit/index.js',0,'�\nW�jUFX�Q��','�\nW�jUFX�Q��','��ȾhG��@W���1Ή�yO��րz��J�','',0,'?'),('@h볹�3�אz2zl�','wp-includes/css/dist/edit-post/classic.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-post/classic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�Ғ?�m=��دX!','��>�w/<�m[7P��+&�������i��','',0,'?'),('@k/�����I�?T,','wp-includes/js/jquery/ui/datepicker.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/datepicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[��G�n��r�','�W(e_t(>&��!��/��� <g���,e4e','',0,'?'),('@l�ɅG��R��;ޚ�','wp-content/plugins/wordpress-seo/css/dist/metabox-primary-category-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/metabox-primary-category-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^��E}G������X�','~���\r���c�$n�Ce�=:(�����T\'�F�','',0,'?'),('@m�~|M�z�kő}%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/negate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/negate.js',0,'P�)���{ʀ�P��','P�)���{ʀ�P��','�}�B1�c�JCn���1� �ӷ%b��\n�','',0,'?'),('@o�Q��ș�ˈҡj','wp-content/themes/mint/node_modules/noptify/node_modules/nopt/bin/nopt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/noptify/node_modules/nopt/bin/nopt.js',0,'q\n��7��P����','q\n��7��P����','�c��C]O�Ma Y��(c��2��_<R/��','',0,'?'),('@q��C�؊��^�;�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/template.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/template.js',0,'8�����q�ۤ�gH','8�����q�ۤ�gH','E�y�bP���|�Nd�N�k,�vW�Q��','',0,'?'),('@��̘9�#�L�y(��','wp-includes/images/arrow-pointer-blue.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/arrow-pointer-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w��b�·*L���[��','����fb�ZD1.���V��aw�4l?��p�G^�{','',0,'?'),('@�%��&�WH^�K�`','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/test/oauth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/test/oauth.js',0,'rR�X[�\'����\'�','rR�X[�\'����\'�','ÙQ-�u���3��.���5=.G!�1��','',0,'?'),('@�O����n#�C','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/compact.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/compact.js',0,'x<E��;`�;�)E�4','x<E��;`�;�)E�4','?�l�7�)rZ\ZS��]Zx�Mޚ.','',0,'?'),('@���.�̴`�0\\�[','wp-content/plugins/wp-optimize/cache/class-wpo-load-url-task.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/cache/class-wpo-load-url-task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B���R���{Y�O�','嬐\'\"ӴG/���~�w{�;x�o���|','',0,'?'),('@�᠘���ЗP1>','wp-content/themes/mint/node_modules/less/lib/less/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/browser.js',0,'?�v�=\'�h���a','?�v�=\'�h���a','�Ob�蝓0��8C�Q��:8�Ľ�\"�T�\\','',0,'?'),('@�JHw�@�����j��','wp-content/plugins/wp-migrate-db-pro/class/Common/Cli/Cli.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Cli/Cli.php',0,'rk\r�L��\"�R�\n�','rk\r�L��\"�R�\n�','���P�d���l�.s�^TI�j�GZ��\'�=�','',0,'?'),('@�����l�������','wp-content/plugins/wordfence/js/chart.umd.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/chart.umd.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b?���\\ٰ�YgD\rz','���Od� �:X��� RU�+�@��9','',0,'?'),('@�|˨��g�4�R�\\','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t��B7Çm}��7f��K','��r��j�b� T���o\n|�]Ǚ\'��L��','',0,'?'),('@�\n[��c`�T���+�','wp-content/plugins/wordpress-seo/src/introductions/infrastructure/wistia-embed-permission-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/introductions/infrastructure/wistia-embed-permission-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j<���3�<�v�y]','��ǀ�����轑�m��~��sɥ��Es�%','',0,'?'),('@��C��E\'�O����','wp-includes/css/dist/widgets/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/widgets/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)�S\"���pp��4��','X]̆Ғ�r�*!��T#?;/Apd��\'����L','',0,'?'),('@���#�9ɦ�;��:��','wp-content/themes/mint/assets/vendor/respond/dest/respond.matchmedia.addListener.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/respond/dest/respond.matchmedia.addListener.min.js',0,'����@ی�\'���$\r<','����@ی�\'���$\r<','��P�\r���U9F�p����� <�n��N�','',0,'?'),('@��\Z!z��r���W��p','wp-content/plugins/wordfence/views/waf/option-rules.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/option-rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)\0�Q�N��#$|�','��t�Ϸ\0\re(x�T�n��_C�Q��=��K2U�C','',0,'?'),('@�XD\n�\nRN��t���','wp-admin/images/menu.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/menu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�9#�d�Y` ���','�l��IE/(�p��\0�pn�T-O�z\"],=`�','',0,'?'),('@��(K���.`��@F','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php',0,'�h<�uCi. o/P�W','�h<�uCi. o/P�W',':���6�Ka�D��f��ri�Q\"i���%��\\','',0,'?'),('@��h���u�}nE�O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createCurry.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createCurry.js',0,'��\\5�[e�+\\�v\"��','��\\5�[e�+\\�v\"��','�N�G���ʥ�`%�1��s����Q��0A�S','',0,'?'),('@�ȯ��&O�o���','wp-content/plugins/wordfence/lib/noc1.key','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/noc1.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9e�b\0��PO�����','_�u���j������P��-KOA�ܫ�����','',0,'?'),('@��>%����DN\'�<','wp-content/plugins/advanced-custom-fields-pro/pro/admin/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('@��Φ��F[A0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/dist/source-map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/dist/source-map.js',0,'��!��ns\\E��0/0','��!��ns\\E��0/0','ڄ�@�Pj�FR6���\\�a}��{����y�','',0,'?'),('@ԇ4��U�I;�У�r9','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/MediaWikiInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/MediaWikiInstallerTest.php',0,'���[��&�X��٤�','���[��&�X��٤�','�����@t��B0=oEظ\'|,ef-�vDҨ','',0,'?'),('@�L��߯7�٭kقE','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`3��0�h~�ݻ����h','�ZR\'��Z�w�$߃��_ɐxT�{-`��','',0,'?'),('@غ�-��&���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/timezoneAbbr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/timezoneAbbr.js',0,'6�����%���No','6�����%���No','h�Ԋ\"�O��T�\r���\n�+�W�]�|4LL���','',0,'?'),('@٠Mg�_�ed�{�ż�','wp-content/themes/mint/node_modules/bower/lib/node_modules/request-progress/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request-progress/index.js',0,'��&Y�B����� �|','��&Y�B����� �|','��O��0�wA�3�i$�1�x�.�s�yg�9�v','',0,'?'),('@�O��H�� ik�$�5','wp-content/themes/mint/node_modules/diff/diff.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/diff/diff.js',0,'*s�ȜMb�*�3@�^n:','*s�ȜMb�*�3@�^n:','wO����U\0�v��ϚZȰ�ʴ/�!ҳ:3[�','',0,'?'),('@�/|c���4�Ly1','wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/index.js',0,'�\r5ٿ3ʎ�7�7\Z�','�\r5ٿ3ʎ�7�7\Z�','U�}�;�D.ݙN�ޡ��Q�j�X����C�','',0,'?'),('@�;5�X��V��O�Z','wp-admin/images/mask.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/mask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���g~�\"��J��䩎�','��/<s�ԡ�)�\'�.�1��jkn�K9Q���','',0,'?'),('@Y������k\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection.js',0,'�@摓�[dn֛⪐�','�@摓�[dn֛⪐�','�,{s���Z0.&��Ò����?QO��J��R�','',0,'?'),('@��m��(��zikG��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/tmp/hoist.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/tmp/hoist.js',0,'E�ű��J(�?O��','E�ű��J(�?O��','�ٜd|85���F�R�{3���o1hhǴ��G�','',0,'?'),('@�$�7�\\�@-��7(','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthDigest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthDigest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�Y����U7��','����q�N\\�`]l�x����Zu.cn�zl���','',0,'?'),('@�m����O��W','wp-admin/admin-header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/admin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c���oD���:3�','F�f#�L�R����H� �6��QK�','',0,'?'),('@�t�R>G�Hh��ס','wp-admin/css/revisions-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/revisions-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ۛ�8��`��U��','E2��&q���q!17��6��Fm>�a��@��','',0,'?'),('@�j%\Z�u��wt��','wp-includes/js/dist/undo-manager.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/undo-manager.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1��7��B��8�q�','�l�v�\"����k Ȥ$:5Ԧ�Էw�y�Ѷ','',0,'?'),('@���F��� |`�ե�X','wp-content/themes/mint/node_modules/bower/lib/node_modules/generate-object-property/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/generate-object-property/test.js',0,'d�$^ʾ�\Z�v��','d�$^ʾ�\Z�v��','��9��q�7Awu�88g���h���A�Y���','',0,'?'),('@�ԂmL���n�t�Y�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/asyncify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/asyncify.js',0,'>�>��>_�J�ё��','>�>��>_�J�ё��','�mx}��tJ$m�Z�<�u��v�n|#{����','',0,'?'),('@�s�Z��^����q�v','wp-admin/images/media-button-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/media-button-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�WI��\\��?��','�<�:��tn�kb�wi�&�� ��R����\Z','',0,'?'),('@��+�T΄\'����٤','wp-includes/ID3/module.audio.flac.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/module.audio.flac.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@pL�@���E���{��','�ּ3��t�46$ay�!���֦ȓڲ�h#�{�','',0,'?'),('A\0L�Ю?���R~V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/stripHtmlTags.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/stripHtmlTags.js',0,'��rH M��¦�y��j','��rH M��¦�y��j','��45B�SK���k�F�c�J2�P.3\"k��','',0,'?'),('A�`r�ĸɥv-S�','wp-content/themes/twentytwentyfive/patterns/pricing-3-col.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/pricing-3-col.php',0,'SLM�&f�+m�\'��','SLM�&f�+m�\'��','p��*dL_���!�/ӣ����؟��4��','',0,'?'),('AsM�TFn�i橽Q','wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.7.3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.7.3.js',0,'V� �L��dT�|�E�J','V� �L��dT�|�E�J','[��}���,�̷2�A̢��#�8S?筿�','',0,'?'),('A],\n�B��K���0','wp-content/themes/mint/node_modules/graceful-fs/test/ulimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/graceful-fs/test/ulimit.js',0,'(3� �rx��SH','(3� �rx��SH','q����<�=����L��h+�\'�����%�','',0,'?'),('A�lA~i^����u�Ø','wp-admin/css/customize-nav-menus.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/customize-nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M(����Ӥ�:\"|��','�kg�9��#]�o8L���I �����2��','',0,'?'),('A�@�2��@.ج','wp-content/themes/mint/node_modules/readable-stream/lib/_stream_writable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/readable-stream/lib/_stream_writable.js',0,'�,�dX���p��R��L','�,�dX���p��R��L','�\Z����$*w����BSd�eȲ ��j*R���','',0,'?'),('A�,g t��ݻA O','wp-content/plugins/advanced-custom-fields-pro/assets/build/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/build/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('Ay�O~!&�\\\n�^�','wp-content/plugins/gravityforms/images/gravity-rocket.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/gravity-rocket.svg',0,' ��-����+��+e',' ��-����+��+e','TG��r��Y3����G�����D��G{\Z�m�','',0,'?'),('AE���[�`����','wp-includes/js/thickbox/thickbox.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/thickbox/thickbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5(O��r[�_ب$/�','�yE�V�\nh\ZCe~�l�3JD�97�r�o��V\rd','',0,'?'),('A\Zz\\{�*�k�o��1','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/forever.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/forever.js',0,'i!aw{(�3�:���','i!aw{(�3�:���','j�{*(�4�;�}w��v��g\"x�U�N/���b ','',0,'?'),('A@\nװK�/�G7ޞ�','wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversPreview.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversPreview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F��ø%��:um�HoT','L����dd�_�R���8�<M\"�F��i|��GD\'','',0,'?'),('A\"~ی5)��N�W�n','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!���e��\r+�o�',',L��/�o�Ϝ73щ&�8�g���e5���3R�s','',0,'?'),('A(�P��.@c�>=S','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/file-api.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/file-api.js',0,'eb�w|�w1-�[�\"�','eb�w|�w1-�[�\"�','!�Q��d��x4 �2oK\'[��lg�r[�t*��','',0,'?'),('A+~/Ję4���$Y*��','wp-includes/block-supports/spacing.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/spacing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0�m����%�wz','լ�5�+��\'�-KKzhV� �\\�MMF3�P�W��','',0,'?'),('A0���$�+Ǟ\r','wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib-random-byte-pipes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib-random-byte-pipes.js',0,'�d(S�%ز�f�B�#','�d(S�%ز�f�B�#','r�������� �����/#-�Z��=)3����','',0,'?'),('A2GD���̇w^�^\Z{�','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-router.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-router.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�2_�N�Dc_�','d�B��u��A�\\6\ZB{�ѝ��7���{�','',0,'?'),('A4��r��ɽv���@','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c����f���z�~O','O\'a\Z��?*!�6үu���M������H','',0,'?'),('A7��R1��:���','wp-content/plugins/wp-optimize/includes/class-updraft-ring-logger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-ring-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G��Cf��i�bǖ;�D','��$m�߃0���GruK�\Z�������8�ӑ','',0,'?'),('A;\0���(�p/\\�?z1','wp-content/plugins/soil/tests/Unit/Modules/CleanUpModuleTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/Unit/Modules/CleanUpModuleTest.php',0,'������8�aRv��76','������8�aRv��76','��Fkc���U�ձ��9���3�5�9�6�','',0,'?'),('A;�ت\Z���ܦ�z�','wp-includes/sodium_compat/lib/constants.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����{�#��l�>m','��ٹmc(�l��\'�mt�ˣ�[��g��W','',0,'?'),('A<W��>����A� �','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/LocalizedTestCase.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/LocalizedTestCase.php',0,'���T����6�z1B^�=','���T����6�z1B^�=','ɀ-`UV�3Զ���Ç���Ԍ�[)x��','',0,'?'),('A=M�M�]�$�/.:|','wp-content/plugins/gravityforms/includes/class-translationspress-updater.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/class-translationspress-updater.php',0,'KG�Z��Q��hRrA�','KG�Z��Q��hRrA�','V�n�#�Z��f̆��o�6V�u��\0C��','',0,'?'),('A?�a�!Z�ϠC��3�.','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/DefinitionSource.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/DefinitionSource.php',0,'����lN|�m�^\"HY�','����lN|�m�^\"HY�','O`F��V����\rO�\n�H����~�.���͢','',0,'?'),('A?�쟞c ҳ��N\\�','wp-content/plugins/envira-gallery/assets/js/conditional-fields-legacy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/conditional-fields-legacy.js',0,'�}�\r���<X���;','�}�\r���<X���;','$��V{$ye��C��CE�Kg�7լ�vO�','',0,'?'),('AE\r% BD��n)\'��','wp-content/plugins/gravityforms/includes/fields/class-gf-field-fileupload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-fileupload.php',0,'�B�h�Xh�s�1>\n','�B�h�Xh�s�1>\n','B1�C�;w�o�AR\Z��#QG�Z����my���','',0,'?'),('AEձ�\r�/�ODq�� ','wp-content/themes/mint/node_modules/less/test/browser/es5.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/es5.js',0,'�7,��o�j*�AA6','�7,��o�j*�AA6','����}T[mv�iyŰ[�zl݊x��(�U���','',0,'?'),('AK<���j���gsr�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4��Kb(�\\��p�B-','�ճ* ʰ ���[q��˜P���k�','',0,'?'),('AM�p{b>�|�L��ȁ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/identity.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/identity.js',0,'��v-���}��^�O&�=','��v-���}��^�O&�=','�sS�I��B��s���A�ϫ(����Z��(�6','',0,'?'),('AR\"w�F�;{���N�','wp-content/plugins/envira-gallery/assets/css/images/icons/pagination.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/pagination.svg',0,'*�綌h�Z�~e��','*�綌h�Z�~e��','� �?��L/���7aB�����\\$A!��c�','',0,'?'),('ATJ�Ă����S�zg','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/lib/util/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/lib/util/defaults.js',0,'L�ZM�#�>Br4\\s]','L�ZM�#�>Br4\\s]','�1\nN����*7��od�\0v�٣@m�:u3����','',0,'?'),('A[���lDcxW+K�K&','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/invertBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/invertBy.js',0,'�MT����%ij|','�MT����%ij|','���=4��D����\'��* ��Q\rE@�n�g','',0,'?'),('A^\r�IB֨��v��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ms.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ms.php',0,'*\r��0�y�B�wP�d','*\r��0�y�B�wP�d','\n>�}uZK�|�6�j�\n��D1n�/n�o','',0,'?'),('A^\\���\0�E�%��{��','wp-content/themes/twentytwentytwo/inc/patterns/header-small-dark.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-small-dark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������`�:q-/�','z����Z�`��c^�J�aN�1h�_','',0,'?'),('A_e�.阧\'B���\\','wp-includes/blocks/navigation/view-modal.min.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/view-modal.min.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9NR�������>�.�','���/�W�\"�\r_����W@�F��|��=��','',0,'?'),('A`�I&�e�Y�5,g�','wp-content/plugins/wp-migrate-db-pro/template/options-tools-subsite.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/template/options-tools-subsite.php',0,'\'!΅K�@�{c\r%�','\'!΅K�@�{c\r%�','��/d��$x\'[i�����-!�\0˯�\Z��b$','',0,'?'),('Aa�@J������Ł�','wp-includes/js/tinymce/plugins/colorpicker/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' C��ȭ?d�{V��','���B��R�\0�!�䄚����Q�����\'5w','',0,'?'),('As�v���g�4U�','wp-includes/js/dist/nux.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/nux.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G��r�ݮ<(�#W�{�','ϰ�5_,�bT#@��\\��ǭ:��\r� (�x','',0,'?'),('Av�%�L�$ˮ����B�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/initCloneArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/initCloneArray.js',0,',E>�v�ʩF���',',E>�v�ʩF���','ZO\"6�»%z$M>�Nn�Z5�i�Ⱥ�\"Iƒx','',0,'?'),('A{&� ��V>��Νs','wp-admin/css/login-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/login-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����o����J��','����M�Ɂ�\\xJ:1--1+b\\�u�c�Pi��','',0,'?'),('A}��>2��@�yl>m','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/templateSettings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/templateSettings.js',0,'�G�ON���XN�','�G�ON���XN�','.)�\"�\r�U� ƹA�o��o ��l�ړu','',0,'?'),('Ab����A��4��I�','wp-content/themes/mint/node_modules/bower/lib/node_modules/chainsaw/examples/prompt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/chainsaw/examples/prompt.js',0,'��zZ�D�>\0u�H�','��zZ�D�>\0u�H�','��7%�`ECLr�q6���B*��\\圖�)','',0,'?'),('A����B��߫�N','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-oembed.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-oembed.svg',0,' l�������i��6�',' l�������i��6�','�A�-��U�(�+L[Gl��K +����x��b','',0,'?'),('A�,#�?P��ghJԻ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/destroy/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/destroy/index.js',0,'�l��꒜P�;���A�','�l��꒜P�;���A�','n��$ڏ@��@=�y�Y��ԓ�,N�Q���','',0,'?'),('A��+\'���s*_fJ�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g�HL%D�Ԅ���,','.C0���am I*x��!�����S���K','',0,'?'),('A��Ji4��x �_%��','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�.��(�K�pQ��','�ٍ$rb=p�h�x�K��5]8�Q���R��jn4','',0,'?'),('A����\'�])_�','wp-content/themes/mint/node_modules/promised-io/tests/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/tests/index.js',0,'S��o�x��?�ú','S��o�x��?�ú','����MN�씔i@k������!Q��i�','',0,'?'),('A�X�\0�l�Ά7�KBh','wp-content/plugins/wordpress-seo/src/generated/assets/languages.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generated/assets/languages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:�ұ��.^|� �','\n�����������L9to�F.���ND}iY;�','',0,'?'),('A�c��RoY�+��?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/size.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/size.js',0,'P���U���a\\�.;�','P���U���a\\�.;�','�m1�\\R�>G\n�s=����R�� ��v��{���','',0,'?'),('A��8V,�_O�X�4���','wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t�@�~�G�|TA�B�','dd��0�_S�fT���T�un�a�{PI�4=}','',0,'?'),('A�?fx�-P���d�','wp-content/plugins/envira-gallery/src/Views/partials/metabox-gallery-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Views/partials/metabox-gallery-settings.php',0,'�XJ�Ǒ�:؈0�<[�','�XJ�Ǒ�:؈0�<[�','{m�/(|�L�I�̘�Bo��\0�%���$|-4\0','',0,'?'),('A����1j��\\=���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getWrapDetails.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getWrapDetails.js',0,'��!k����m��̬#','��!k����m��̬#','9��9��HjZH�+W�?�F��\0���x��6','',0,'?'),('A�_;��\\z�5���e�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/deburr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/deburr.js',0,'\\��M��#�K��Ú','\\��M��#�K��Ú','wH�UG�1J�����[NЊ���I�u��=��','',0,'?'),('Aخ>d�lhhL�G��','wp-content/plugins/gravityforms/includes/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('Aػ#���\"���j�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1��t�*���9܋Ժ','���O)���Z��z�;s<*����]���~�','',0,'?'),('A�Q#�=��ȦzZ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/times.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/times.js',0,'��e�ׇLj�<�','��e�ׇLj�<�','���K7��CNR����\\@ �a�p.�%���','',0,'?'),('A�3�:\'q�\n�\r�\r�','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php',0,'-Im�n���^�<�9','-Im�n���^�<�9','��p��_�X0TB�^Z�2^7�t��+��T','',0,'?'),('A�<��!���W.L-','wp-includes/Requests/src/Autoload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����[Ss@3�01rd�','�<B��h=8M��I-^�:�3�<�2�����','',0,'?'),('A���hQ���#��','wp-content/themes/mint/node_modules/defined/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/defined/index.js',0,'&S�V��TzU�vf3�aJ','&S�V��TzU�vf3�aJ','�������]���X� �I�E�`r�O��J$','',0,'?'),('A� �A���\"�>�!��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Command/ListCommandTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Command/ListCommandTest.php',0,'>��ZO<d��d��Sp��','>��ZO<d��d��Sp��','����*\nC\"��uIِ��~ˀi:�\'mKf�^)b*','',0,'?'),('A�b�ް=Dh%��1��','wp-content/uploads/cache/7d250a9550acd14d2b2260c1f4462e2472ceaadd.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/7d250a9550acd14d2b2260c1f4462e2472ceaadd.php',0,'��r��GE���d-V','��r��GE���d-V','Ĭ�\ZzLj�A�&S(�D�~}2��aI��)','',0,'?'),('A���$h��՝`Q�a','wp-content/plugins/akismet/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�� P�Z�ݢ`Ef','��}���5�e�3��3��mhyD�Q(','',0,'?'),('A���\0�\Z��S��?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assocPath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assocPath.js',0,'j0,8|^1�n���q-','j0,8|^1�n���q-','�͕c�2��W�c#�r���\").A��^Q���','',0,'?'),('B^��t�p�k���!�','wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R�*L�TG��4%P���','-������n�F�J�&T�P�o\\ϓ\\����2���','',0,'?'),('Bӭ��Q �&�4���','wp-content/plugins/advanced-custom-fields-pro/lang/acf-ro_RO.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-ro_RO.l10n.php',0,'�Q�\Z�\r�� ����ڡ@','�Q�\Z�\r�� ����ڡ@','�ɣL���ucy��ﱿHź�%\'��hra','',0,'?'),('B�y\rJ��6p#1�Dm�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/unescapeUnicode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/unescapeUnicode.js',0,'k�z�+5���<s !�','k�z�+5���<s !�','H%��ԝohW����&hz��n�.��\\���ګ��','',0,'?'),('B!C{w`�a��H.','wp-content/themes/mint/node_modules/typedarray/example/tarray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/typedarray/example/tarray.js',0,'��wr,��L>���','��wr,��L>���','֯~��\\��-�+��x�^0OY��P���\'','',0,'?'),('B&�����g�5','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' l��#Y^�=u��','r�=X��,�lU���*�F]�� ZQ[6�qф','',0,'?'),('B\' `0��zynã|�','wp-content/plugins/wordpress-seo/src/integrations/estimated-reading-time.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/estimated-reading-time.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�D�iID��9�#�','��3�\0���{s����/s��9�*����','',0,'?'),('B*U��vN���','wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/lib/escape.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/lib/escape.js',0,'Q�t�MC�����B��','Q�t�MC�����B��','��n��\Z�uw�-��DN�\\����l��F�','',0,'?'),('B0X�����%*�ic��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_unescapeHtmlChar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_unescapeHtmlChar.js',0,'K�mwκ����C<','K�mwκ����C<','��}��3c�@e�3H�l`�����\"���۹','',0,'?'),('B;���e������Ǵ','wp-content/themes/mint/node_modules/asn1/lib/ber/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/asn1/lib/ber/index.js',0,'��͑��VJ���Xj�','��͑��VJ���Xj�','��_���\'M\0�غS����^��d����(���','',0,'?'),('B=�ћ�V\'��DRY��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isIterateeCall.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isIterateeCall.js',0,'������ ��Nvc�^V','������ ��Nvc�^V','����tiʐ��\r��υ�zL�j�|��|�Q�','',0,'?'),('BF�L.�Ա��B�?�','wp-content/themes/twentytwentytwo/inc/patterns/general-divider-dark.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-dark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�*BrC��)E4�E�','�N�K�U|u=�r�W1c5�g����^�q','',0,'?'),('BJ��O������z�D�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{�1�MR�KE_�/','|q�UUѿÎ|z��G>*�ۜ\"���I����;�','',0,'?'),('BUj�v\\ѣ����(�','wp-content/plugins/wordfence/views/common/license.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:8�����^�r','�f�B�-h������^�>A���nH0�\r&��','',0,'?'),('Bi��ߏ���ͦ��q','wp-content/plugins/wordfence/css/wf-colorbox.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/wf-colorbox.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PX)p!��N8�j��','o�t0�\r�P2��N�����i���K��u���','',0,'?'),('Bj�P� ���I �','wp-content/themes/mint/node_modules/promised-io/fs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/fs.js',0,'��si<�[��ϰ?8�','��si<�[��ϰ?8�','A}������,�%�� \\�h^i��(cըA�','',0,'?'),('Bn��K����K�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/PhpFileDumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/PhpFileDumper.php',0,'L$^2�4��0�@:M��','L$^2�4��0�@:M��','3\r���X��Lu����_H�3�:^�u��_','',0,'?'),('Bos~��uf��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/MAX_INT.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/MAX_INT.js',0,'Zޒ����\n �i���>�','Zޒ����\n �i���>�','h��,j,�Sg���0}K��S4�D���S�ȧ��','',0,'?'),('Bq+�߆�%Ⱦ��,�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue353.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue353.js',0,'wA�2�泟�]On�','wA�2�泟�]On�','Q��ȥ�JT��uw>䣏庪����*�Ԥ','',0,'?'),('Bs��塘T����L�=','wp-includes/blocks/calendar/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/calendar/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\Z��\"P��{�ў\"-','`�G�n�$�i��C���2{7��$�l�Ix�W','',0,'?'),('Bu?\"��)�3{�.','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`��4��w��25','�A��goWH�\"��h�El��4t\\�C D3g','',0,'?'),('By��Bmy��M|m��','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/restore_noise.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/restore_noise.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[>��ා-�j.7C','��r&f����p2M(�Ț�n�$@Iv\"DG�','',0,'?'),('B��j�)��q�D�S','wp-admin/install-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/install-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t�%v����-���ܴ','��f���3sL,�t�ʇw����O7O4�ɵ�>','',0,'?'),('B�\0���x���k���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/all.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/all.js',0,'��sM� %@>R��D�','��sM� %@>R��D�','�A͙0I�\"PV�X��V�Pd�3JPD&h�[','',0,'?'),('B�7��R����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/upperCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/upperCase.js',0,'k�p�ᜳ2�q�R��x','k�p�ᜳ2�q�R��x','��w�]r�r��ULi\rݧ���>����p8�','',0,'?'),('B�%,�:m��YQ�!\\','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/index.js',0,'��rk\n��:]=�R�%','��rk\n��:]=�R�%','T�� ���Y��Ȭ�7�8���3�y�Df\\1','',0,'?'),('B����Q���aU�%','wp-content/plugins/wordfence/views/scanner/issue-knownfile.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-knownfile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R���Յ�-�e_���','��3?<P0\r�^�τ��X�` ��t{�#��','',0,'?'),('B��*��.su�D.��(C','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayEach.js',0,'^{_���#�I���6','^{_���#�I���6','��q8�%xL�nU�}�W\r�3А�O2�E�','',0,'?'),('B�E�2��_d¬�','wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/stat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/stat.js',0,'�~��JBLF?��k�','�~��JBLF?��k�','I�~2��c+5��fZ�Rʴv��e��6�y','',0,'?'),('B�@Vrn2�J��\0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/mapKeys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/mapKeys.js',0,'=x��rb:�֗WV���#','=x��rb:�֗WV���#','�d�1��!/0Wr\r\nJ(����o�D.O\ZY�\n','',0,'?'),('B����`g{t��ߥH)','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/common.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/common.js',0,'\'g�9Ի��\0��R��G','\'g�9Ի��\0��R��G','��ڣ.��1�a��9���]�Gu��Ʌ\\[�','',0,'?'),('B�\n�,�DG�ДV�&','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php',0,'�F?N�:���n��l ','�F?N�:���n��l ','sj\"���rS��Џ�30C�ve�I!f���v','',0,'?'),('B��M/�H�T����dWC','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Console/Application.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Console/Application.php',0,'��P�?ů7�T\Z�f','��P�?ů7�T\Z�f','��,����g�\Z���\0����r�+��$BYU_<4','',0,'?'),('BȱJ�$]fi��=3��','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#鬋��Ɗ���\"�','^\Z`G��}N,N�B������o����@�ս','',0,'?'),('Bϵ���H@x���/','wp-content/plugins/wordfence/waf/pomo/po.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/waf/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vc+p*�\"G��?�B','�MO(��� G\rkHԽ�eq�� �Lj�F�o�O�-','',0,'?'),('B�k����P����','wp-includes/SimplePie/src/Content/Type/Sniffer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Content/Type/Sniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J��#�26�|0�','�����c\"��4�\\�벷DDW���H��O','',0,'?'),('B�赔ӊ\0���_�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isDate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isDate.js',0,'����� 9�^l��','����� 9�^l��','\\�-K�W��k�S\"c�\rH��o��+','',0,'?'),('B��!ϊ7�Pg6k���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/max.js',0,'$�A�35l��(','$�A�35l��(','�V;N$K~*<�I+*�K���H�;���]G6�Ӎ','',0,'?'),('Bڤm/�T����2^k','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/XliffFileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/XliffFileLoader.php',0,'zB{W]��dJ���~�','zB{W]��dJ���~�','��4+����\0���W��|��-�K4��:ۻ��','',0,'?'),('B� ?��W�����','wp-includes/SimplePie/library/SimplePie/File.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!��SWo�N�8+�','r���\ZRðKi��3�슼Sl�۳V+\n�&$','',0,'?'),('B�EA�z �,�!��y','wp-content/themes/mint/assets/vendor/jquery/src/event.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/event.js',0,'�\"��K�@j ��&m','�\"��K�@j ��&m','��JMk/�\\�-s\n��=�N���1��+%e�i R','',0,'?'),('B�\\�ײ7ꠗ�m �$','wp-content/plugins/gravityforms/includes/addon/js/repeater.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/repeater.min.js',0,'�4,�̮�f���ܩ��','�4,�̮�f���ܩ��','��=@*� :uT����y��Q��Q>�!�zM','',0,'?'),('B�P�X�W��6��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m�9N�2��ų[��','�=��*�t�zv\'��W���\n�KR�l��x7','',0,'?'),('B��o��4��c0��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toPairsIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toPairsIn.js',0,'�p� ��4[�Ym\n���','�p� ��4[�Ym\n���','��h�|�В�lL�����6ˮ`ԊM�','',0,'?'),('B��%m�Oj~��� ���','wp-content/plugins/wordpress-seo/src/presenters/admin/migration-error-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/migration-error-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@,�!�`��xM�犖��','�^�+J$aU���S�$�yu{�(w5k�H�','',0,'?'),('B�o��O��:1Z=','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/normalizeLineBreaks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/normalizeLineBreaks.js',0,'Υ��h�)��6�','Υ��h�)��6�','h��F6.�\Z�r����^�&�F�-������','',0,'?'),('B����Z\\pKW�)�','wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/PluginHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/PluginHelper.php',0,'�^�#��i�W��BQ','�^�#��i�W��BQ','Z���\\�_$��Ρ_㨤}l��\Z��Ī�','',0,'?'),('C\08Pn{;�\'�k�Ū','wp-content/themes/mint/assets/js/vendor/modernizr.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/js/vendor/modernizr.min.js',0,';�E�K�c� YŜ',';�E�K�c� YŜ','�^��Z9���wt1\'�����Vب�(�t-�','',0,'?'),('CS�\n��e�2�D��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/wrap.js',0,'�h��9Q0\\�䄤 q','�h��9Q0\\�䄤 q','�e�yP0��5���%�3�o.���o==-�[M�','',0,'?'),('C�5xB\n��4T���D','wp-content/plugins/wp-migrate-db-pro/class/Common/Http/Http.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Http/Http.php',0,'��&P�d�F�Ϻ��b�','��&P�d�F�Ϻ��b�','\0*� ��(.���J����,�]�i�t>X\\�','',0,'?'),('C�O���1�/j k','wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/css-backgroundsizecover.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/css-backgroundsizecover.js',0,'ϝO�ׄ�!����A','ϝO�ׄ�!����A','�nN02�Y����x��1!\Z��k}��Ҟ���','',0,'?'),('C6�&\n��̓��','wp-content/themes/mint/node_modules/glob/test/nocase-nomagic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/glob/test/nocase-nomagic.js',0,'ʘT���2���V(�','ʘT���2���V(�','QQ����^�\n �e�]�v�4�Ӿ���+\0��','',0,'?'),('Cj,��� �!��`a;�','wp-content/themes/mint/assets/fonts/arrrows-regular-webfont.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/fonts/arrrows-regular-webfont.svg',0,'�k��f�TYC��Iqu�','�k��f�TYC��Iqu�','A�\r����f%nA��գ�2�Rj2�U���w�','',0,'?'),('C4h��H]?�v\'$�:','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Rm!�_�+\n�Y\n�P','>`�܃��#��] u7�H�V��:\'p��6�','',0,'?'),('CY�W���MuP�\r�O','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/browse-fields-modal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/browse-fields-modal.php',0,'0��n�\'�XM�r','0��n�\'�XM�r','.w�?!yb� �S2KăV�[?�U�����R��','',0,'?'),('C\'�RT7nn����','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-provider-service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-provider-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8G�X�\0�%�I�;�','��g���xW�c��)&:���~��ɢQ�h� ','',0,'?'),('C/���xС}s�.U�:','wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._wp-admin_6abb70ab.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._wp-admin_6abb70ab.js',0,'K��b�G$o������,','K��b�G$o������,','z��p5�� �㐂�H�2��\n��Y�zo(n�K','',0,'?'),('C0���$>�XgL0��3z','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/reverse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/reverse.js',0,'�̯�8�N�9��','�̯�8�N�9��','���1��P��k\"�\r�P���Ϣ\'�ޙX\'M','',0,'?'),('C2�2k��B�H8����','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-accordion.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-accordion.svg',0,'��\r%��f��4UgC','��\r%��f��4UgC','y~��}���� �q;92%�5�7T�pt','',0,'?'),('C5�D|O�)�+{���','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',0,'�b�U�y�ͅ���\08','�b�U�y�ͅ���\08','bSx\\h���T/�[�ĭux+)�D�+n<�','',0,'?'),('C6Z����}�+���v','wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/acf-ui-options-page/advanced-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/acf-ui-options-page/advanced-settings.php',0,'��c \n�N~cOHz9��u','��c \n�N~cOHz9��u','��n \n�u%�����8㳫���\n����Q!��','',0,'?'),('C;�]�V�/�E�2�','wp-content/plugins/gravityforms/includes/blocks/config/class-gf-blocks-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/blocks/config/class-gf-blocks-config.php',0,'KzX�2?@y�ϛ��','KzX�2?@y�ϛ��','L5�%�����pK옺�6@]b.�ɤ&��GE','',0,'?'),('CEvZ>I�Aʐ�m`','wp-content/themes/twentytwentytwo/templates/search.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/templates/search.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��p�21�����%�','�g.�h�Lٲ�Ք�\0t�u�@���','',0,'?'),('CG���D�)�b�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php',0,'�%3| �U�=I�?x�1','�%3| �U�=I�?x�1','q�����oчW�͑�[Z���C�r�v�7d*','',0,'?'),('CK�J��6LAM�kV','wp-includes/blocks/post-date.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��b�!��Ĵ���','� p;\0�D��l�\nys��U}�M\"��-','',0,'?'),('CT��lu#X���P','wp-content/themes/mint/node_modules/tape/test/fail.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/fail.js',0,'���\0�ja�6��\"d5','���\0�ja�6��\"d5','d��u\0�CQ��ΞO�����Ѹķk2l���;','',0,'?'),('C\\ۅ�;]��>�~*�l','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/Foundation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/Foundation.php',0,'\n�U\Z��0��f��|�','\n�U\Z��0��f��|�','x�(mb�I |4��L�蹁��$B��蟖�','',0,'?'),('C_��v5=dB�\0���)','wp-includes/css/dist/preferences/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/preferences/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EҺ�� <ڸ{��P','\0#w�G�5��P4X�\'��4~�WT%c���>G','',0,'?'),('ChD\n�\r�}ƹ%$YK#','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-timeout.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-timeout.js',0,'j4��z�3K����z','j4��z�3K����z','��͎��.�shN��P\Zؚ[�>;��J���̉','',0,'?'),('CiM)E,;LҚ+�G1�','wp-content/uploads/cache/dfd0360b325aa1d44680c90e41ba747bb3e6837a.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/dfd0360b325aa1d44680c90e41ba747bb3e6837a.php',0,'��s�q0�߳�c�c#�','��s�q0�߳�c�c#�','ڛ��#�x�/u�\'\n^V�IpI�A�5�<��','',0,'?'),('Cj�����n�wt�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/interpolate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/interpolate.js',0,':A����\"���,�',':A����\"���,�','�4�%��IZ�x�������8\0��9�:u\"2','',0,'?'),('Cp^0S[�ЃZ�`�','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-taxonomy.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-taxonomy.svg',0,'�T�h(D��[��t�?','�T�h(D��[��t�?','=\Z�P�oS�B��ܤ\"�����\"bF#��p','',0,'?'),('Cs,�\"�42����̞�','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/other_path/root.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/other_path/root.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('CuָuEf��O&Q~','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/forIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/forIn.js',0,'6��<}`:X�^l����','6��<}`:X�^l����','2.�\Z\ZH�,_2��\Zs`��Q���n1w�O\Z+','',0,'?'),('Cc�iF��h�.n7�','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ժC!��`g�$ ','pD>7�a�%Z�e6è�>��Y��}��:`�','',0,'?'),('C�\r�Ҷ�,���(�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/dom-microdata.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/dom-microdata.js',0,'��qi*ǣ�%���','��qi*ǣ�%���','zͺ��OR�O��� ga�uFDLKL\\Ւɔ','',0,'?'),('C��M.H�\"^�l8�#\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/map.js',0,'�#�l(8�`\Z=�>ݛ{','�#�l(8�`\Z=�>ݛ{','��xـȧοcaO��^\"��~d�^;ވ�(K>','',0,'?'),('C���I���S7�<','wp-content/plugins/wordfence/modules/login-security/views/page/page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/page/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ш>\\g��ǡ�$��c�','��ii��G�C����N�FL�)7%�ʙ�','',0,'?'),('C�>N�{��Y�l����','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-placeholder.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-placeholder.js',0,'�&�s��� @�6tޗ]','�&�s��� @�6tޗ]','�aLԸb�e�CGG�e��(8��n�=�ژ��|','',0,'?'),('C����`Nw����Y.','wp-content/themes/mint/node_modules/source-map/lib/source-map/mapping-list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/lib/source-map/mapping-list.js',0,'�z\n╘\"m�E!�L�','�z\n╘\"m�E!�L�','xN��n�;5P�(��p��y�u��e���6','',0,'?'),('C�ms\n��X�]��K�T','wp-includes/blocks/search/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/search/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۙ�4��>��IHg�','��qʼn~u,/RHF0r6��C�p��\0���,ʐ','',0,'?'),('C��/�@�l��Y��2}','wp-includes/css/dist/format-library/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/format-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���a�W����I','�\n�D�G,L/���\n�M\0٥0|�[�(k','',0,'?'),('C����(P�j��g��:�','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/pullRequestsTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/pullRequestsTest.js',0,'��A�r;�!��s|','��A�r;�!��s|','륿2�i���F�>[�@p#�Yt.M������','',0,'?'),('C�kF&�[ZX\rg�+zz','wp-content/plugins/wordpress-seo/css/dist/inside-editor-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/inside-editor-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J\Z����6���ǜ','.TLêr���cB�ݑR�x��ܐ�H���1f','',0,'?'),('C�ؚ�T�R�!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����m#�mI:�ċh','�O=�\rf���nn�[��V���=��oA�Nm�ۺ','',0,'?'),('C�h�D���x�\0=J5��','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/ExceptionHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/ExceptionHandler.php',0,'��đ�7X�4�D�c�','��đ�7X�4�D�c�','BX�\"��]��ͺ\\D�c�Vs~��}�','',0,'?'),('C��6A!��¢��O���','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Catalogue/AbstractOperation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Catalogue/AbstractOperation.php',0,'�5a���o���H�7��','�5a���o���H�7��','�M��Zo��L��IB_���K�5�*�:�','',0,'?'),('C�9wVH���\"b��V#','wp-content/plugins/wordpress-seo/src/config/migrations/20200420073606_AddColumnsToIndexables.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200420073606_AddColumnsToIndexables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B}��}��ۧl���','���T�=�����{xo�\n(��Ysм��g&g�','',0,'?'),('C�����!y�6�㋼','wp-includes/blocks/buttons/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/buttons/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}���!r<�����','��ն�,*�͖��>3���x\r6����K�5','',0,'?'),('C�W�ڗ�^.\r���','wp-content/plugins/gravityforms/js/plugin_settings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/plugin_settings.js',0,'�17p����tx\\?�)','�17p����tx\\?�)','_����lB^#����W���ہW%�w��Z[d�','',0,'?'),('C�Ĝ(%���Z6^�j�','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.html',0,'����\'A�l�Ҿ&','����\'A�l�Ҿ&','C�\Z����;D+<��ޝ>1���0���N�q\'�k','',0,'?'),('C�\"�@�7�t�','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-taxonomy-meta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-taxonomy-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"F�W�@8����-&u','r��܌n� �ȼ�7� 5&b]`�F�j8���;','',0,'?'),('C��c&�*��pu,�','wp-content/plugins/wordpress-seo/src/presenters/admin/meta-fields-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/meta-fields-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�t�:�����3_�,','Q�\r�2�n�][�8�@�:{�D�u��Ys$Ѻ�','',0,'?'),('C�(��\\�?�C1:Ej�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseIsMatch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseIsMatch.js',0,'��I���|��w}�0\';','��I���|��w}�0\';','ݬ����\'�ʨ���� ݘ0��0��v��f�Ŝ','',0,'?'),('C�d��i�Vt1��P�B','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Application.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Application.php',0,'�{1L^�ǭe�x�','�{1L^�ǭe�x�','�O�>���X+5�V8f�iW�QXI�d�1�kK|','',0,'?'),('C�b�d�^U�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/default_singles.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/default_singles.js',0,'��Ny����m>�\\','��Ny����m>�\\','HaX�A-��YF@l�ݐ�ku�U.z�~Qc��','',0,'?'),('C�ĉm��K�1c\rL��','wp-content/themes/mint/node_modules/shelljs/src/error.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/error.js',0,'�Ck\\�p�d�\')��iT','�Ck\\�p�d�\')��iT','Ƚ��v�@l�/Y��i+�y�-+J3�&H�F�H','',0,'?'),('C����o��-��','wp-content/themes/mint/node_modules/strip-json-comments/strip-json-comments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/strip-json-comments/strip-json-comments.js',0,' ��8B��/�3�\"�Ι!',' ��8B��/�3�\"�Ι!','A�^}2�Ϥo��&Y�mp�͘�0U�X','',0,'?'),('C�Sg[�M �Z��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsSet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsSet.js',0,'�F�ݚ|��}�:�3g','�F�ݚ|��}�:�3g','�ۜ¦�Q���\Z��D7@�P�\"\r��b���I�','',0,'?'),('C�ݺd����UC�)�I','wp-content/plugins/envira-gallery/assets/css/images/icons/right-tick.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/right-tick.svg',0,'�� �fe���C��Ӣ','�� �fe���C��Ӣ','F@�vyԹ�^i�~�N\r��cNS!�M�J_�J','',0,'?'),('C��6�\Z�����o','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/sortBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/sortBy.js',0,'\Z>|,C�;��%����','\Z>|,C�;��%����','lFi�1����h6,WM� �Zj#9��{�H�!','',0,'?'),('C�G)���z���u �-','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-pt_AO.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-pt_AO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�=��%\"nV�z{O','�s���e�,d5�\0e>O�\0ϑ�\n�a�<$�#','',0,'?'),('C�!�����7�A�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Events/CommandFinished.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Events/CommandFinished.php',0,'���_o\\\'��>��P','���_o\\\'��>��P','��a��_q��D��\'�&/�j��\n�_�0�r��','',0,'?'),('C�N\'LWu�B]J�B��','wp-content/themes/mint/node_modules/grunt-modernizr/lib/build-files/modernizr-latest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/build-files/modernizr-latest.js',0,'��P��㐉�Np�)�#','��P��㐉�Np�)�#','y7�̚.:�T\n8���-)����¿hWC9�n','',0,'?'),('C�,�V�+ܶ��\\A�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Widgets/LiveChatContactButtonWidget.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Widgets/LiveChatContactButtonWidget.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���N�uՓL��*Gb','�y�����cv�$/�����I��_�(u\"�\\�','',0,'?'),('C��s\\�\n���s��\'m','wp-content/plugins/wordfence/lib/menu_tools_whois.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_tools_whois.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*5�D�O7Z�Y���%�','��x.�.�$ô�(�EϷ�X��� ���Q�','',0,'?'),('C��m� ���;��','wp-content/plugins/gravityforms/includes/environment-config/class-gf-environment-config-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/environment-config/class-gf-environment-config-service-provider.php',0,'L�K���%u<E��ڸ','L�K���%u<E��ڸ','�I\Z�n�4��37���q�.5\rO:�/�N��','',0,'?'),('C�\\.�\'�E4���kRD','wp-content/plugins/gravityforms/includes/blocks/class-gf-block-attributes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/blocks/class-gf-block-attributes.php',0,'�NVv<^;�`��T','�NVv<^;�`��T','� *�P5H4gp��K�3��Jz�[�Z#| ','',0,'?'),('D\0��C����cz����','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.6.3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.6.3.js',0,'\\��^Kn������|','\\��^Kn������|','���v��L?\"��`�L�h!�H�C)\n(���&�','',0,'?'),('D\'�%��S�6�>�{','wp-includes/js/dist/customize-widgets.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�OP��G %��9�7�','\\�͏Gi!�Q[�x�N�5���:^�<���','',0,'?'),('D��8a�FUYS','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/setParam.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/setParam.js',0,'PH�!,�6��~{-O','PH�!,�6��~{-O','J���=Ɲ~\"U��E�忼{\0�4#%/���d?��','',0,'?'),('D�(���5�(���','wp-content/plugins/wp-migrate-db-pro/class/ClassMap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/ClassMap.php',0,'�.זؽc��c2+-*U�','�.זؽc��c2+-*U�','�N4g[�s�|�T\r�Q1�F��I�ט8j����:�','',0,'?'),('D�G(ה�>%�Ʀ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/extend.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/extend.js',0,'����9�.���c�Ob','����9�.���c�Ob','��D����|��h�\'@^��C%�����`V��','',0,'?'),('DNVKOT<�e�r��','wp-content/themes/mint/node_modules/bower/lib/node_modules/hosted-git-info/git-host.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hosted-git-info/git-host.js',0,'4w��^�L � ��c�v�','4w��^�L � ��c�v�','Uas����6{�|�0���#��`��7�/�','',0,'?'),('D (�,|����b?�L','wp-includes/blocks/query-pagination-numbers/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination-numbers/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e��*���l�:��\\w','��w9�C�1�\'�$�IN+��3ں�$�s','',0,'?'),('D�I�a��c�ᐸ�','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AuthorizationCode.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AuthorizationCode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RO���g���W��l','�+A�S�DY����d��ұ�/vLe̕3���','',0,'?'),('Dm�\n��z�H��S���','wp-includes/images/crystal/document.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/crystal/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'^c�s���D��3T\\','g�t�( Ŏ�k`5͒��J��M5���:j�','',0,'?'),('D\r%��a^�����L','wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/LoggerAwareInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/LoggerAwareInterface.php',0,'ϬmM������tѼ�J','ϬmM������tѼ�J','f��.�%�*ƚWn�C���s�Si�','',0,'?'),('DZN`�_Rc�o4�\"�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/EmptyStyleDefinitionSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/EmptyStyleDefinitionSniff.php',0,'Ǟ!�/t�@i I����','Ǟ!�/t�@i I����','7�����J^�r�R�k�*˥��ۿ�$��','',0,'?'),('D�� �1�����h���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/inRange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/inRange.js',0,'�u�}�L��6�3J�','�u�}�L��6�3J�','�Q���o��:Լ\"���z״�����dt�P','',0,'?'),('D���$PG���/y1)','wp-content/themes/mint/node_modules/jshint/src/reg.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/reg.js',0,'7,\nPT{F,g���v�','7,\nPT{F,g���v�','d�H(���M��Ձh����V����','',0,'?'),('D4�/�E�:3����h0','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-color-picker.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-color-picker.svg',0,'�)��ݡ��)��U.','�)��ݡ��)��U.','$�6��$#���פ��3�7�T�=���L��8[','',0,'?'),('D�����a1��ԗ�','wp-content/plugins/wordpress-seo/src/integrations/admin/activation-cleanup-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/activation-cleanup-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�*|��F�Θ>+','��t�N�������=�ф�x·���Ae�','',0,'?'),('D\0UR`:I7�$m','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/matches.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/matches.js',0,'|/x�=9cЃ�=�\0','|/x�=9cЃ�=�\0','] `�HP�*h\"y5Yc��!�mR�iu��=�','',0,'?'),('Df�I����1�,�@','wp-content/themes/mint/node_modules/hawk/test/client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/test/client.js',0,'\r��t]�K�?_�Jz','\r��t]�K�?_�Jz','��\0E�O�[Q��Q�y�`�uRf�nA&��tP�v','',0,'?'),('D!D+�#�!�ci\Z#�n','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/sort.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/sort.js',0,'�]��I��V��g�\'','�]��I��V��g�\'','OD��z�M�L��La)\nCo���E[i6&#|\rj�A','',0,'?'),('D\"Jm�τ����:.��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pathOr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pathOr.js',0,'�|�6����E�$3��J','�|�6����E�$3��J','��c���o�W!;D��-Vp��㒰���!�V','',0,'?'),('D#q{ť���ԇb�','wp-includes/css/dist/customize-widgets/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/customize-widgets/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/*Z��jD�s���U^','��-Si+��Z�5a���#L\Z��jf6P��#<','',0,'?'),('D$���DC�٠^C�-;','wp-content/plugins/wp-optimize/js/jszip/jszip.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/jszip/jszip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+?�dQ����','m6��XR�\r��j;w1�]}����Nԙ��','',0,'?'),('D.��:�\0��S�R8','wp-includes/ID3/module.audio-video.asf.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/module.audio-video.asf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ļAJ�RE����/=','h\rR&h��c�\"��A\r�ľ�j�Qe�\\L�','',0,'?'),('D3��\"_g��O���','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-7bc10e49.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-7bc10e49.min.js',0,'Z\0ӌ�<T���1}to4','Z\0ӌ�<T���1}to4','�\'���v�����`�a�F̣1�z�Pf?\0�Gv�k','',0,'?'),('D6m�e�r{pK�O�','wp-includes/locale.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ʋ\04�)o�ybU^�','�<�6n�\'�J�����_�� �S%��GVJ','',0,'?'),('DB��F��9�2��','wp-content/plugins/gravityforms/form_detail.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/form_detail.php',0,'�E���C������','�E���C������','�i��5�L�qz�&u��A�>��b\'��v���','',0,'?'),('DG�H����G���Na','wp-content/themes/mint/node_modules/shelljs/src/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/find.js',0,'��9��_`�����%','��9��_`�����%','�+��B��xd�i-�.�;�Y��7���kHq','',0,'?'),('DG.�>[�<�CZG��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Config.php',0,'<��9��������','<��9��������','�5y���e�A�7�t��j?��v�������','',0,'?'),('DG�q�:-�d\'\'�Ճ','wp-content/themes/mint/node_modules/bower/lib/node_modules/tweetnacl/nacl.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tweetnacl/nacl.min.js',0,'+ߏ��Yɔ4Y���V�','+ߏ��Yɔ4Y���V�','_�&����5b��,4t��CiaLA\"�DFb��','',0,'?'),('DJ\"��鼊iQ���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toPath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toPath.js',0,'��1�3�S�H�`�\\;','��1�3�S�H�`�\\;','@�D\ZMF�f����I<X��e\\I�a{l���d�','',0,'?'),('DNs�LJJ�:��L�','wp-content/plugins/wp-optimize/templates/minify/html-settings-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/minify/html-settings-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R����I�@���8wZ�',';?�\0���7eI<�0<QA�\'}(�W���+�','',0,'?'),('DQ#�u��nU\\ @�<�','wp-includes/blocks/page-list/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��En�t<��4\0�eJ�','��4숐���7��o���D��74:�J[','',0,'?'),('DU}��<�D5�Y','wp-includes/block-editor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��g���� C+t��*8','�y�n��r�@!0dQ�.��M������','',0,'?'),('D\\7���@�;^�|��','wp-includes/class-wp-navigation-fallback.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-navigation-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��QP�:�*�|�j','��8�Ex|�<�A��[�ښl���Z9��,�?1','',0,'?'),('D`aO�\"Y%7��Z�','wp-includes/blocks/comments-pagination/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?��*ɱ����,��','}�M̋IE��N�p��54]pP�Æw>kq!','',0,'?'),('Dad��6+\"2�J����','wp-content/plugins/wp-optimize/js/wpo-images-view.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/wpo-images-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=g*�����Z}l','�j�9�d�u���dc�ʊy�����.y��V','',0,'?'),('Dm����o�\"���a�','wp-includes/blocks/gallery/theme.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/gallery/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ދ��l�>n�q�yW�','��ɹa߿���Kۘn�͓�+�n�b�','',0,'?'),('Dxh���fc����F','wp-content/plugins/wp-optimize/includes/class-wpo-image-utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wpo-image-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ɻO:�w��k0�','�%z�Xt3_��˟��uQ_�M���e��ks�','',0,'?'),('D��Jg&4�Gx\0�ky','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php',0,']b�le�un�W�G0�',']b�le�un�W�G0�','*::\0Eτ�y�V����I�����?g�&�','',0,'?'),('D�A�J���Q8�|V0�k','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toInteger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toInteger.js',0,'�����.si(�I','�����.si(�I','G�}J��u7�����\"/P�q��܇�̼','',0,'?'),('D���u�\r��ɲ\Z','wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aի����� Lqw� �','��r��_�iQ� �a��R������+����','',0,'?'),('D����)ba�k��{��','wp-admin/includes/admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4����=�ҩ���A','���0V�{]֊Aj�˫.%2\ZxM5�z �o� ','',0,'?'),('D��\r�2�\'����;','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen04.76d878410f2bad60da6b.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen04.76d878410f2bad60da6b.min.js',0,'��R�(�� �e��','��R�(�� �e��','O%�v��~��b�2��|��L���1r�ЂF�)','',0,'?'),('D���3���VoO�F�z>','wp-content/plugins/gravityforms/includes/settings/class-gf-settings-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/class-gf-settings-service-provider.php',0,'=�\'H��v�9�f=�','=�\'H��v�9�f=�','�:i�O�Ak}�e��3�g�撌�����\Z6�*','',0,'?'),('D�(��gb����d&�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseForOwnRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseForOwnRight.js',0,'h/�B\"�Q��.{L7E','h/�B\"�Q��.{L7E','��gb�NfD�4�kH���H�ґJ�=/','',0,'?'),('D�fR?!������','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/test.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/test.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����u�UҀ���','(l�ʥ��S�|l>\0�p�8r���C�4�p+�','',0,'?'),('D�o\\�T���\\�5+3\\','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/phpdoc-reader/src/PhpDocReader/PhpDocReader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/phpdoc-reader/src/PhpDocReader/PhpDocReader.php',0,'x[p�Z̟�;\'�jL�','x[p�Z̟�;\'�jL�','=����Dˢ=�<QJ#֦��/�A� �\"�','',0,'?'),('D�� ��k��\Z0>�','wp-content/plugins/envira-gallery/assets/js/lib/envirabox-wheel.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/envirabox-wheel.js',0,'o\0�x�FP�Y9�A1�','o\0�x�FP�Y9�A1�','���q�+��\\o��,�� C3�;TLN��1/c','',0,'?'),('D��#�-��`o\'��','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/HttpAuth.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/HttpAuth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x$���E$|SU�','�Ť|���~:F�;�U��h:ɠu�)��H','',0,'?'),('Dȍr��hZX�<���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sortByAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sortByAll.js',0,'Bㅞ7}2��\r0�n�;','Bㅞ7}2��\r0�n�;','���X�+�t��exn��[��ET��/��','',0,'?'),('Dչ�����$Oa����','wp-admin/css/colors/ectoplasm/colors-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Nv&V�\r�gA$�&','[�ދ�w���,O�����B\r�\Z���)�A','',0,'?'),('Dُ4pt_�6உ�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/backups-none.031287fd.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/backups-none.031287fd.svg',0,'�\Z���d\\e��ә\\�','�\Z���d\\e��ә\\�','�^�L\Z\0��Z̛g@dӐ9G�ΐ�b�F�=�','',0,'?'),('D�o�^~m�9y��','wp-content/themes/twentytwentytwo/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c.�*jM+��e�|��','���X�B�6\\���e~cĆf�3�,%1^9z�','',0,'?'),('D�Q_$�kv:*ly����','wp-content/plugins/wordpress-seo/packages/js/images/woocommerce-seo-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/woocommerce-seo-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x ѧs��2V��`�','�U�ܼ\nE��{�m��0��I\n\'i%O���y+]','',0,'?'),('D�f� �P�[�z�}T�','wp-content/themes/mint/assets/vendor/jquery/src/css/swap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/css/swap.js',0,'��h�,�9�>i�2)A#','��h�,�9�>i�2)A#','�s�6G��.��z7�E�x�S@V�W\r���qH,�','',0,'?'),('D��� Q��fN� 4','wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/LICENSE.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JԵ�/��M�z<�w�u','���dh~hĥ���W9&(�(��O\r0^1F)� �~N','',0,'?'),('D�H������N���,�','wp-content/themes/twentytwentytwo/assets/images/divider-black.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/divider-black.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8w�� �xm)r','x��+R��lL\Zk5�>v�ư�N�D��','',0,'?'),('D��#�����虞�*b','wp-includes/class-wp-block-parser-block.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block-parser-block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϝ@�֢��|��*N','���[��4�:S��I@��@\"�\ZW��$��h�*','',0,'?'),('D�T[�-��U���','wp-content/plugins/wordfence/views/options/option-toggled-textarea.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=�q(��t��ݣ˻','at�Á}(��0�oß%�3���p�u~�ĥ','',0,'?'),('D�젖�\rv\rXv��W�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Log.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Log.php',0,'n@��Ti*�Z���E','n@��Ti*�Z���E','Ф�9I����o��|��k�����GX�S.C�o�','',0,'?'),('D��w�V��w5�=��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/crop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/crop.js',0,':M�\Z��j��ӭ�(�&<',':M�\Z��j��ӭ�(�&<','DH�d5��:/�Sc�E�\n�W�1\0:k�D�s�IT�','',0,'?'),('D��5\n\'�\\��~W��','wp-includes/category.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M�ۻx/Ҳ\n����','�����B#j��Ԯx����Pa��ٳ�ׂ','',0,'?'),('D�<J��4Eo�\"ӕ','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/ApplicationDescription.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/ApplicationDescription.php',0,'cO�m���Ъ4��F�','cO�m���Ъ4��F�','z��+#���W��P�(��\"{F JU�','',0,'?'),('D�5Ҡ��Ϙ�3�H��','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/arrays.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/arrays.js',0,'z�J�߬�ۗv�l��','z�J�߬�ۗv�l��','������t�Ɲ��Ga���|\"n\\��ʮ�/�','',0,'?'),('D�������)����','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/FactoryDefinitionHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/FactoryDefinitionHelper.php',0,'�p�x>ޔ�1�c��5(','�p�x>ޔ�1�c��5(','L=���_(Ra�&�\"1jcɄB ��<','',0,'?'),('D�]��@q�*aI9�U%','wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �?e�#=��5�E!s','�P��@Nz�F���d2خ|�8��I�%y�u','',0,'?'),('E]������U&���','wp-content/plugins/gravityforms/fonts/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/fonts/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('E�*��4���>��','wp-content/plugins/gravityforms/js/shortcode-ui.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/shortcode-ui.js',0,'h.R�+��gr�[�ќ','h.R�+��gr�[�ќ','����pOظ��)��s�����F+��e��K','',0,'?'),('E 0\0Hp���ZA�1�','wp-content/themes/mint/node_modules/findup-sync/lib/findup-sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/lib/findup-sync.js',0,'��Z��]��l��w��','��Z��]��l��w��',',Z�\n�*Dg��G�jGz]}`�!r������','',0,'?'),('EQ�����`����X','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php',0,'V����#&w}[ ��','V����#&w}[ ��','��|9e:?���z�C���S����P���v�k','',0,'?'),('E4��D\'BI���_#s','wp-includes/blocks/tag-cloud/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/tag-cloud/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':<�K���p���˽','1[�F�cY3 ���S�K�hm�?7��0�C�r�','',0,'?'),('E,z�r $��7˪b','wp-content/plugins/wp-optimize/images/our-other-plugins/aios-logo-wide-sm.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/our-other-plugins/aios-logo-wide-sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ƭ}�d���#Xځ��','�F�*����u��Z�Na:ܴ�\n�4D��#3','',0,'?'),('E�S�ċ�c��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ֽ�K����eˀ�','0���^�u�Fq�v�2|�D�ka��42�S�','',0,'?'),('E#���-v37�6�Ť','wp-content/plugins/wordfence/wordfence.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/wordfence.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����CR�$��','��؞e�h��J��٫8����!�6geuw�','',0,'?'),('E%�WɄ���x�Uq','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/object.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/object.js',0,'�ЧR�2�3?�5f��','�ЧR�2�3?�5f��','�M�\\�gy6�;GUF2LV�1�H�S�-���`','',0,'?'),('E+�����9��1��Ĕ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseEachRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseEachRight.js',0,'���&��Vm���N�\'l','���&��Vm���N�\'l','��uzh���\n�ǒ;^�ģ@o@[Ԏ���e�','',0,'?'),('E,�c��֪EM���t|','wp-content/plugins/envira-gallery/src/Views/partials/onboarding-wizard/step-5.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Views/partials/onboarding-wizard/step-5.php',0,'AY㣉�����u���4','AY㣉�����u���4','��Q,��âN�z��sl���<���V��','',0,'?'),('E0]]�����%���d','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Square.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Square.php',0,'�!M ���|��Օ','�!M ���|��Օ','�=_f�&,�C9���͚W�o��$���d��','',0,'?'),('E4��fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-list-revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���}�\Z�ۦ_��8K',']\r��o�8�Y�6��)ryW?�Y�����b�z(','',0,'?'),('E5�;����tR���$L�','wp-includes/js/dist/element.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/element.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p\n�\0\"9v��Ǭ','������9�j��` �X1��e�`�)&h?','',0,'?'),('E6��ʼ��]�(','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchSingular.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchSingular.php',0,'�G�2X�����.1NU','�G�2X�����.1NU','\\o���k2̂�����S`�Y�&�I*¦5(','',0,'?'),('E7h��S#� �7��Ƒ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString.js',0,'����U7%Ͽ҃O�e','����U7%Ͽ҃O�e','�g�t�v�`ds�ʂ�D���B[<.7`�\\','',0,'?'),('E=�\n���z��6B�v','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/map.js',0,'�qҫm&`�u\0�yi','�qҫm&`�u\0�yi','_��_��A���U� a^ԅ����8L���.���','',0,'?'),('EIq2�E&�r�{Qyk','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortedIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortedIndex.js',0,'sL��A��*\0\r����','sL��A��*\0\r����','x��nx�����\'��5�y��VҶ��\r�|���','',0,'?'),('ES� �B51T�[G�@','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createForOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createForOwn.js',0,'�:�_S���J\r��e','�:�_S���J\r��e','�k�NF ��v%0�~�2(��T�ݿz','',0,'?'),('EW�s,�f8�����','wp-content/plugins/wordpress-seo/src/editors/framework/site/post-site-information.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/site/post-site-information.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� \0��ڶ���bs','�)��kN\"R��b́�A�*6�=�F1Ф���','',0,'?'),('Ed!C!�3|�9(��G0','wp-content/themes/mint/node_modules/htmlparser2/test/Feeds/01-rss.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/test/Feeds/01-rss.js',0,'t��UB��@<�D!�','t��UB��@<�D!�','%$�ԜĘO\'a�9�y���k-RM����s�','',0,'?'),('Eh�������@aq��','wp-includes/session.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�NRM��<\\����>��','}����k+8M�U=<;��t����I*,�4#�','',0,'?'),('Ej�,|)g�@br�@�F','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/UserAuthOptions.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/UserAuthOptions.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ;�C�Mn�`�{�>','���s�_���VC�M��-����++Je_<','',0,'?'),('Eo�C\'�#��U�:�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesLayouts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesLayouts.php',0,'�W�/��4K^�[','�W�/��4K^�[','���t��Wo\"\\�!�D�I�}7�>�{A��J���','',0,'?'),('EsM_�b�78�9.�','wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/PathValidator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/PathValidator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�FS� �.m��o�+\n�','��,>m;�.��g�Y�-���w�:���r��','',0,'?'),('Eu;��g�8r�B�w4�','wp-content/themes/mint/node_modules/jshint/src/reporters/non_error.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/reporters/non_error.js',0,'�g�=��6�F�����WL','�g�=��6�F�����WL','�W����\'��B���_�l�ld��K1�','',0,'?'),('EuG|>/����u\Z�','wp-content/plugins/wordpress-seo/lib/abstract-main.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/lib/abstract-main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0gK��*���LZ����','��UK�<�#$/ϑ �<S�B�T +�Z�Q','',0,'?'),('Evm��1�U~AHj�','wp-admin/js/password-toggle.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/password-toggle.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j�\"�»���V��','nߗ��\"q�������{KuKZK�\r1�^���','',0,'?'),('Ey�$n�K͡��㖰�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{������ͯk.�!','�0.c�\n����� �\Z\nʲ\\*�O��%� ','',0,'?'),('E��(�zRA1;eN�qD3','wp-content/plugins/wordfence/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2��e��ª��\\�og','�� ��o���M�J#�A|�ߎ�(��;6R\n�','',0,'?'),('E�8=\0�g�2��X�','wp-content/themes/mint/node_modules/shelljs/src/grep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/grep.js',0,'�FW���|:�j��om','�FW���|:�j��om','��p�1�*$<\\���#~�.�\"QK��%�','',0,'?'),('E��V�di}�If�m�','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-regenerate.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-regenerate.svg',0,'���H�Hl2�F�}�','���H�Hl2�F�}�','H�8��.S��_�7���_b���q\0@1�K�aY','',0,'?'),('E�r��K��A�g��d�,','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-7bc10e49.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-7bc10e49.min.js.gz',0,'���E��1���)O�','���E��1���)O�','�G���#�XN��n��(<2U*\n@�j4@','',0,'?'),('E�}�~��M��-�]�a','wp-admin/css/widgets.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�A��l�\\M-��u�','6F%r5z��N��4�?�ČAA ��-��X�','',0,'?'),('E����gIh0D�(�:\r','wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php',0,'���`)�+6��M��','���`)�+6��M��','1�2��z�)�t�^w 8��N?{s(���\"[�','',0,'?'),('E���s=�]�����=a','wp-includes/blocks/post-template/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-template/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�@*�ԉ���j�','۔̘+\"�5���4���Wp�Lj�K���\\6#','',0,'?'),('E�0���G�ظ+դӖl','wp-content/themes/mint/node_modules/request/lib/cookies.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/request/lib/cookies.js',0,'�r�_\0��-u�\n�dB�','�r�_\0��-u�\n�dB�','W��;U\Z�M�O�O^��r��~�p���b\r�r','',0,'?'),('E��\Zx�\'Ȋ�T����','wp-content/uploads/cache/4298b6d7f074525312fdea4f837b164a23fc3bc5.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/4298b6d7f074525312fdea4f837b164a23fc3bc5.php',0,'c��?D1`fˎ0��','c��?D1`fˎ0��','T!/�P1��4N�\Z���Xr�|�� �}�C���','',0,'?'),('E�!ͮ4�e\\�߱9�O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/bind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/bind.js',0,'�`��/i�`�q���','�`��/i�`�q���','��W-Q�_�k�6Y<E��(r�P���^�t�{��6','',0,'?'),('E�)C�����^�','wp-content/themes/mint/node_modules/less/lib/less/tree/color.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/color.js',0,'\ZF_?��r�S�V�G��','\ZF_?��r�S�V�G��','#�K�\rFW���k��TB#�\\���Uɪ�xz','',0,'?'),('E�n�j��d�����1','wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Regular.ttf','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Regular.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y�vil�27��k.�','\0{�v��4�+9��o&1 G3<����*Ca','',0,'?'),('E�Y#�\0U�����\rI�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__get.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__get.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X/��nH�+PI5���','�g��?\0#�%:� g��fhôuA�İ{I3�','',0,'?'),('E�c���\n�d�W�4N','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/ordinal.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/ordinal.js',0,'Pt�L���e�J*}���','Pt�L���e�J*}���','c��] ��\\I�I��X3&����X�ȷ��','',0,'?'),('E�)�0���.�bm���','wp-content/themes/mint/node_modules/bower/lib/node_modules/cliui/node_modules/wordwrap/example/center.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cliui/node_modules/wordwrap/example/center.js',0,'K)��dg��-D��S','K)��dg��-D��S','0��+����=�yQ\rђ��?�X\Z �r&J�','',0,'?'),('E�V��,�%��,SM=','wp-admin/ms-edit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/ms-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P3�\n��7|L?MtA���','a����c�sc\Z���\"�V�L\\�њ�','',0,'?'),('E�t~y �Ȝ��%�-\r','wp-content/themes/mint/node_modules/node-uuid/test/test.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/node-uuid/test/test.html',0,'\'�n������}~�5','\'�n������}~�5','����\'i�Ŕ������Z�n��|�5=�F�','',0,'?'),('E���\Z���LZ�p-��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\0 F�uα#�9\0','D��O?���D�_������1�:o�ow(�T�','',0,'?'),('E�̶f���Ov��ښ','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/bool.js',0,'�%�3i 9K��-�F��','�%�3i 9K��-�F��','���@��cb]�%�L�6�\0�%(R�� rj6[�','',0,'?'),('Eӂ�rD�}7�Ț���','wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-tags.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-tags.php',0,'&��Q����5_�.+','&��Q����5_�.+','�{�;����p&.�Kʔ��,�7��[B.́Y6','',0,'?'),('E�Vs�@��Q̸��h','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isTypedArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isTypedArray.js',0,'P!�r�z�J\rk��VP','P!�r�z�J\rk��VP','/+�\"`^���[�Wh���3$L�H����','',0,'?'),('E���EL���-','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/trim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/trim.js',0,'Ex$�V��b`(�?�','Ex$�V��b`(�?�','|dV�&�?V�<qim5_t����ձu��p�|�','',0,'?'),('E��S�t��0*�}��','wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/index.html',0,'J���{\"Dr�\r+_�J','J���{\"Dr�\r+_�J','@�R�pC��S\ZGf ڊŀb�(�_ W�','',0,'?'),('E�ȪS�����R���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/has.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/has.js',0,'�+2�)��U�$9C','�+2�)��U�$9C','K6jT��c,\"LJ�\Z��M#sg���M=������','',0,'?'),('E�B3A���-\r�&!�T','wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͓/q��a�)^=f?��','��Ձ ����e?�z���c�Z\n�����G��','',0,'?'),('E���?[�M�;�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-validation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-validation.js',0,'�|�w�X$�P��w[�','�|�w�X$�P��w[�','��X\'~SK�j�z�,Ƕ��F�wa˓w~2','',0,'?'),('E�u���\rwK�j�g','wp-content/plugins/gravityforms/images/template-library/Newsletter.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/Newsletter.svg',0,'����:��ԅW3�','����:��ԅW3�','^�����o�Jݴ�p�17�qTF�D}ag','',0,'?'),('F\0��������6� ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/identity.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/identity.js',0,'ӡ-�~\"&�\r0��3K','ӡ-�~\"&�\r0��3K','\n�]�w�\Z�y[h2pB�٩�e�`��`�k;�','',0,'?'),('F�Hȝl�e��#�','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l,��r�%�^x�%','���Y=�_�b��|ʧ&f,��<�������','',0,'?'),('F[i6k{G��^+w�c','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Exception/AnnotationException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Exception/AnnotationException.php',0,';�4��rӡR��ۮ6;',';�4��rӡR��ۮ6;','G.S��g�Lt-}�QQh��\"<�P�#f8��;','',0,'?'),('F��Z4?(Y�����e','wp-content/plugins/gravityforms/includes/embed-form/dom/class-gf-embed-button.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/embed-form/dom/class-gf-embed-button.php',0,'0���9r\\�U�[S*�','0���9r\\�U�[S*�','�Y�^U��}�r������9]1 H|��#(*=\Z5','',0,'?'),('F\r�x�w~�\rܱ��\n�','wp-includes/widgets/class-wp-widget-search.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���I�S4�&k��D','���� iu��6#I�B3�f�A�\\\n<W�PAA�','',0,'?'),('F�\nF��F��~�>ڤ','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Broadcasting/Broadcaster.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Broadcasting/Broadcaster.php',0,'�>a%�������ą�','�>a%�������ą�','yZ+1!�&/\0]�4�om�PiQ�[\Z\"�}�}��','',0,'?'),('F��\"�Z ��px\0��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Authenticatable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Authenticatable.php',0,'WR!�k廼7�:`<�','WR!�k廼7�:`<�','���|�\n$�*%?8��y�-l�m�ݛ��o�','',0,'?'),('F%l\nӘ�}b\Z�}�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/lib/scope.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/lib/scope.js',0,'W�7dev�]:�u��po','W�7dev�]:�u��po','�E�Jqi�n �iQ&�\\\"�\'h>l�jw�`�','',0,'?'),('F&\0��7�-\\���','wp-content/plugins/envira-gallery/assets/css/images/icons/cross.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/cross.svg',0,'&�_}��H;�UR��','&�_}��H;�UR��','�1�.;\"\"MC��\\˅\" �����$�0 �F�','',0,'?'),('F-�NR\':?<V�)�#�','wp-content/plugins/gravityforms/js/conditional_logic.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/conditional_logic.min.js',0,'�-D�4Q\'N�j���n�','�-D�4Q\'N�j���n�','���QP��$8� ��$��V��%��]8E1Q�','',0,'?'),('F1+\Z#�+d�{�w�{','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.D6�p�i�r`�fw�=','�2��KJ73��x�2�M2��&�+���L��L','',0,'?'),('F7:����#��k���]:','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/audio-audiodata-api.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/audio-audiodata-api.js',0,'��tgu�Y�f�p�*n��','��tgu�Y�f�p�*n��','�ʬk`\rʢc��t�]�w�kd�.�ϸY�','',0,'?'),('F:˗�ge��d�b���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isNaN.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isNaN.js',0,'G.\'l|kp��Cx��','G.\'l|kp��Cx��','x�q��g��U�|������*ܑ�(r��k!d�','',0,'?'),('FCW.�3���\Z��U�','wp-includes/js/jquery/ui/checkboxradio.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/checkboxradio.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ރ�x>.��&�m��','ju,+���Z��� ����\"Mz�Ѓ�>��v0�','',0,'?'),('FC���b=�3^*�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createPadDir.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createPadDir.js',0,'��Pe�i-4D�k]K��','��Pe�i-4D�k]K��','1,��g�iA���M�r��FqVB��ހx��H�','',0,'?'),('FH���30m�:��s��','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xR� �Y�X���ݤ���','m���\Zc���ĭ��]���[��^�P��w','',0,'?'),('FMow}�m��h�<V��','wp-content/themes/mint/node_modules/bower/lib/node_modules/rimraf/node_modules/glob/sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rimraf/node_modules/glob/sync.js',0,'�N:�7p�Zf����','�N:�7p�Zf����','ݳ�Q\"������[���A��7\'�s�i��J��','',0,'?'),('FO��ދT߅��߽��7','wp-content/themes/mint/node_modules/hawk/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/lib/index.js',0,'��si�Ѡl`D�Α�/','��si�Ѡl`D�Α�/','�\\�m�\r]\"\n���h�9\\#.���9�T�H','',0,'?'),('FP��W�4V��6l','wp-content/plugins/wordpress-seo/src/integrations/admin/deactivated-premium-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/deactivated-premium-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�������� ch�G','dBa�n(�z�8\Z-�|?��k�J����i�','',0,'?'),('FSԋ��}�4����','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/ReviewNoticeTimestamp.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/ReviewNoticeTimestamp.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'����4]�h�A��,?','KY@1�s������w7H>���G?.�*R�ۜb','',0,'?'),('FVJ�%T�yً�e�','wp-content/plugins/wordpress-seo/src/integrations/admin/cron-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/cron-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#��[.FpR��b','�ִkT��zgJ��g�B�je)�L�3','',0,'?'),('F`M߸c�N�!����','wp-includes/blocks/image/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g,��|3V+dɁmB.��',',LC�dg5�%^�Sp9��S��Pn�QR�+��','',0,'?'),('FbOGDj��7�+����','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/bool.js',0,'���bb��K˗�ZƁU','���bb��K˗�ZƁU','K*�g���Dn=;�WObd]ä���\'��\0�c�','',0,'?'),('Fkb�\Zׂ�Υ�~eM','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Pipes/PipesInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Pipes/PipesInterface.php',0,'|���f�=�֏w�&�;','|���f�=�֏w�&�;','���x���S+���@V��v���K�H','',0,'?'),('Fm���h�t�K.s�','wp-content/plugins/wordpress-seo/src/integrations/admin/unsupported-php-version-notice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/unsupported-php-version-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8L���t���|�i�~','�#SFS�!gVU��3\"��Ta�\\+��P�','',0,'?'),('Ft[t�r�j�,�nV','wp-content/themes/mint/node_modules/bower/lib/node_modules/fs.realpath/old.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fs.realpath/old.js',0,'�=+��ؑ�|�<���2','�=+��ؑ�|�<���2','(҅e���d���W�Oks��_�R��\n�f��','',0,'?'),('Ft�H6�`�y�ېֿ`[','wp-includes/blocks/button.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�a� �L��7����','�\';KY�1��}�&o��UQ����#�N��g�g','',0,'?'),('Fw�%�!��8�\rе�','wp-content/themes/mint/node_modules/tape/example/array.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/example/array.js',0,'���L�,�hg^�#','���L�,�hg^�#','�xL���xS.2���#(=1�v@.*�\"-','',0,'?'),('F|����w�ZQ,O��','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6���?�\n� :�{Q%','���Z�IK/I��w¥�Ovy�E�Bi\\$G�&','',0,'?'),('F�n�/\rh�N�X\n��','wp-content/plugins/advanced-custom-fields-pro/includes/fields.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields.php',0,'~tQqh\ZUw�Q�#<�','~tQqh\ZUw�Q�#<�','1>��Y��^�����<�S�������H��)�','',0,'?'),('F�`\\������b���','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/quick-sort.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/quick-sort.js',0,'��6ߝDܟ�Gtt{','��6ߝDܟ�Gtt{','r�6���I�Xg��C�e3yXy\02\\7y����','',0,'?'),('F�\ne�Y�d��\0o�','wp-content/themes/mint/node_modules/oauth-sign/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/oauth-sign/test.js',0,'��t\n��x,E�2_P','��t\n��x,E�2_P','�T�\'�%��h�ذ!��xw!\"d_��:�U�','',0,'?'),('F�/Kk�6�ݡ��<�7�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/min.js',0,'\n�K�g�h �o�y=�','\n�K�g�h �o�y=�','�uIg\n��Ei�p��[�\\\Z%r�\\�B\nx�','',0,'?'),('F���~]���>�Ӑ','wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/LoggerAwareTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/LoggerAwareTrait.php',0,'\"G�}=��\r,&�5','\"G�}=��\r,&�5','`��ٿ���F`=f��y��`��4�nI\0�N%','',0,'?'),('F���}*��M��\n5�)�','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-separator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-separator.php',0,'d��3�k\"Gs�{>��','d��3�k\"Gs�{>��','mZ���tdNM�Vw�A�Ł����魘�踐','',0,'?'),('F��P�Eʾr?���0�?','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_callback.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_callback.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O%�ݛ�B�g&�g!��','��[�$�i7ml ��c�\n�Z����,�','',0,'?'),('F�LG@ZV�q�Oo�e','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/quarter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/quarter.js',0,'�x��~��M��EU','�x��~��M��EU','u�9|K��rJf��RJ��Cp#\"<����� �r','',0,'?'),('F�Gv*B�t�Z�˞��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/split.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/split.js',0,'�c�-���@�+�w�1�','�c�-���@�+�w�1�','�f8����0�$E�(bQ�{+)�d8�X\\�9�~','',0,'?'),('F�]���k`/,�Sv:�','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/PhpExecutableFinder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/PhpExecutableFinder.php',0,'����ꣀa��_�6�','����ꣀa��_�6�','h�����2����ބ�A���}�KQ��,P��','',0,'?'),('F�\\�C?�Z���','wp-includes/css/customize-preview-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/customize-preview-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��މ����ګd��3','~�\'��[z�{��:����LĀN7A�� ','',0,'?'),('F���{�(�\ZD�9i�','wp-content/plugins/wordfence/views/tools/options-group-audit-log.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/tools/options-group-audit-log.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���yX�^z�K���','��q\Z��������|���a�da�','',0,'?'),('F��Ã\\�O�fg�','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1����v��R','N3G�\'�`��+R>�P]E�γg/�b?���UX','',0,'?'),('F��M��ꆼ�&\"N�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sumBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sumBy.js',0,' ,w~H I!�e2�m',' ,w~H I!�e2�m','���տ�G��7J9����N�/�+���f','',0,'?'),('F��\'{��C�A@��|��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/propertyOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/propertyOf.js',0,'�2O�ˣt(��vl@�','�2O�ˣt(��vl@�','w�[�H5G����������u\0��O��X���L_','',0,'?'),('F�n�� �~Q�^��','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/dist/lodash.compat.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/dist/lodash.compat.min.js',0,'�>}��WUn\'n�Rn��\'','�>}��WUn\'n�Rn��\'','Z��8�m#c�ZZQ��J��P�Hu�[Y��$','',0,'?'),('F�\'�B�/�4{J�{w','wp-admin/js/edit-comments.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/edit-comments.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q�#�r$N�*��',' �#>� \0�C�7S�,�����N������M�','',0,'?'),('F�\\\"�L����,4ꫥ','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequestFactory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequestFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)�y���[ޙm�M^','��g��=H�ӗ���ւ�H��w/~����p--','',0,'?'),('Fצ��1e[=���\':','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/Styles/ContactButtonStyleDependency.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/Styles/ContactButtonStyleDependency.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�u�ւ��6�)��','쬪��0X���+��{�o�����Iݛ?�','',0,'?'),('F�x�\Z4I�hGbC@��a','wp-content/plugins/wordpress-seo/src/helpers/current-page-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/current-page-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.��J����t��y�','/�U;n�\n��\r�|���\r�#��n�����k','',0,'?'),('F�V�衶�zQI�(','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseRange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseRange.js',0,' �|�\r� �U��F',' �|�\r� �U��F','[j��2Ba�tq��jw��)0\Z�$1����','',0,'?'),('F�p�J�,��`ndXV','wp-content/plugins/wordpress-seo/src/presenters/admin/light-switch-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/light-switch-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����u�b1V����In','-�O)���Ap㸭e���\"�M�&�\nzd]�','',0,'?'),('Fಙ�Ί,o7�N��%','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/writable-browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/writable-browser.js',0,'A�m\r�ޤc���%�Z�0','A�m\r�ޤc���%�Z�0','��-_N�u�_~s$`W}�\Z��~ؓ�c9|nj','',0,'?'),('F�0(b��=\\�T�','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-group.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-group.php',0,'j��Ua��]Q��8�O�u','j��Ua��]Q��8�O�u','�zh��Z��u�g�}EzZho���>����','',0,'?'),('F��ƺA�z�/\rJ','wp-content/themes/mint/node_modules/bower/lib/node_modules/sntp/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sntp/index.js',0,'���]Y�䷉�f��#�','���]Y�䷉�f��#�','7so�x9n�&X������\r��!\"�]�@�o��ݴ','',0,'?'),('F�s��[�t��Au0#','wp-content/themes/mint/node_modules/less/lib/less/tree/mixin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/mixin.js',0,'�� g��\\|�%�ě','�� g��\\|�%�ě','��f[��[n�;R\Z�Q�Q�9I˸�3�.�w��','',0,'?'),('F�T�[dʊ�K','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/parse.js',0,'L��ƀ��\'�],��J','L��ƀ��\'�],��J','�N�T\Z��D2�9(�a�CL�A���JX��','',0,'?'),('F�0A�~S�;J��A','wp-content/plugins/soil/tests/Unit/Helpers/UrlCompareTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/Unit/Helpers/UrlCompareTest.php',0,'Aɴ����}��+8)K�','Aɴ����}��+8)K�','��s�C�ÔE��:\n�j��c���Ǿ�nS�','',0,'?'),('F���?�C;$��H\r\r','wp-admin/css/color-picker.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/color-picker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<����^�\r��q!\Z','�=Li7� t�I}�|��9���oh��`o���=CD','',0,'?'),('F�.�c����\n��$`�','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-vip.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-vip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�h��y�O\\�P˶�\0F','k�v�\'��<��\Z�k�.�.�> q��v��}EO�','',0,'?'),('F�V����Od%�|u�','wp-content/plugins/wordfence/images/wordfence-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/wordfence-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p����]�j-����','8�����#̄(8��O�\"� +h\"Fb��','',0,'?'),('F�{+����#˜���M','wp-content/themes/mint/node_modules/uri-path/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uri-path/index.js',0,'����Μ���#�-�V7','����Μ���#�-�V7','�5w��Ӫ2��W`5V��FN���w��aڎ�K','',0,'?'),('F������!n���\"�','wp-content/plugins/wp-migrate-db-pro/class/Common/Sql/Table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Sql/Table.php',0,'j�BQ��Qþ��\0G�','j�BQ��Qþ��\0G�','�#5uvA^��gA,�2ކ���LJ�','',0,'?'),('G\0iaP�H�z9�\0�9S','wp-includes/blocks/loginout/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/loginout/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S :�ז�_�b��M��','y�T�5���m Z���V�#!�:�Z����','',0,'?'),('G�;?�����p��','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasAttribute.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasAttribute.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uw¥F����F���$','\'I.�g���1�V16��U�X��>ԡ��z��@','',0,'?'),('G�I2Bx�f!\'��','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k瑿re����UB�]�','��yI�pQ��)�<5�O��o��-9��jWSz[,','',0,'?'),('G4Z�ݏ2HYAx','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/LazyWrapper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/LazyWrapper.js',0,'�t��<Ɋ�\'X�뭭��','�t��<Ɋ�\'X�뭭��','$�~�V�H��y�*\\��b8�K��P�m���d�','',0,'?'),('G \n�\Z s��6��\0QB','wp-includes/blocks/details/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/details/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m*�cavSG��bɦ','}�)�?�u�n4��;[l�����w��ڜ=','',0,'?'),('GiM�\ni^���','wp-content/themes/mint/node_modules/postcss/lib/comment.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/comment.js',0,'{z�ܿA\nQM�&R�','{z�ܿA\nQM�&R�','9�5�m��t�\09)�eWq��\n�$��f�','',0,'?'),('G��b`��b<�a�I','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-diff-spike.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-diff-spike.js',0,'�68�:���P�Ò','�68�:���P�Ò','oG������ ^�;�Sz�\r$�ܱ�*��','',0,'?'),('G$��0;)I�T?��*�','wp-includes/class-wp-block-metadata-registry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block-metadata-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�6�x�5��','�\"�P�����X�v����+���]\n)@)U','',0,'?'),('G*VȲt��`�ϭf��','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/dist/client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/dist/client.js',0,';��)�\"V�����',';��)�\"V�����','}w����V�IJ��f�HZ��\0e\Z��\n@�','',0,'?'),('G6U�2\01R������J','wp-admin/js/theme.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gˠ!���H�=�','��U�LR���&;q�<zx��$>g�h8áڲ','',0,'?'),('G:Z��]Y!tI����\"','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�jI78�{��r�P�','Uk�������ZM=OEw�D���w�� |I�;','',0,'?'),('G<-���Ƶ@��r��g','wp-content/plugins/wp-optimize/includes/class-wp-optimize-database-information.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-database-information.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������g478�P','��N�z1����Lzuu��w���d�Ap��T','',0,'?'),('G?��\Z]I�^M�','wp-content/plugins/gravityforms/includes/class-gf-background-upgrader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/class-gf-background-upgrader.php',0,'&fx��Ņ��^PY','&fx��Ņ��^PY','T\0j��xm����Ʀӥp5E�E%��','',0,'?'),('G@�4a���.���˷','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/Invoker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/Invoker.php',0,'�$B����x��Y��','�$B����x��Y��','c�B��d~��B1#�q�e\"-z�V�\0�\'[','',0,'?'),('GA k��|�n���4�\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/ssh-private.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/ssh-private.js',0,'LeN��.����3A�a�','LeN��.����3A�a�','+�o\rlP��Ņ�_�2���4�o��K㛂M','',0,'?'),('GQ��{)?R�`���)�','wp-includes/blocks/post-comments-form/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-comments-form/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1{ⱄ�k�_��Bv(�','k����-\n�!�5�<�s�+�LTy3�w��','',0,'?'),('GXA$7)�Z���','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/lc-app.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/lc-app.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H�xB���)�x?','���sk�U���(i��Cȷ��ya�%���EB��','',0,'?'),('GYJ��G����vؿ','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/safe-string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/safe-string.js',0,'\n)�~�qN��pc�&','\n)�~�qN��pc�&','[\r�=�����\"�^(K��e�T�q���4��q�','',0,'?'),('GZڮ۰�����4�0','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/elem-details.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/elem-details.js',0,'�gs��E�w��I','�gs��E�w��I','�f�/���w-m�������FؖА]��','',0,'?'),('Gi9��$�Lвu��U߬','wp-content/plugins/wordpress-seo/src/presentations/indexable-static-home-page-presentation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presentations/indexable-static-home-page-presentation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6>}�\r+�D>��y','M��.��k�~�_+>`=�HϮ�2^x�E�o�','',0,'?'),('GlA�%J�@��.����','wp-content/cache/wpo-cache/juiceelectrical.co.nz/christchurch/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/christchurch/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('Gm��:�MľV��LЉ','wp-includes/js/tinymce/utils/editable_selects.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/utils/editable_selects.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J��q2��I\'�J�9�E','�v��Gjs��f�� e�d�&�g��+���','',0,'?'),('Gu�������ʭ�','wp-includes/class-wp-meta-query.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-meta-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U�mVP���S!����U','�:m�Hu�Ƕ+���I��6JeHޏ7�z.','',0,'?'),('Gu5���aԯ��','wp-includes/rest-api/search/class-wp-rest-post-search-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B� ��iGO�N#h','�\r4\"�f�3��\Z�v�8�|7�pT��[֚�','',0,'?'),('Gu�^�/1��ՁS�7','wp-includes/atomlib.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/atomlib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2y��e��ٌ��H-��','G�*�Udx�&Ʀ�;�KxT�G��=�����i�','',0,'?'),('Gva���ј���L�','wp-content/plugins/wordpress-seo/images/academy/structured_data_for_beginners.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/structured_data_for_beginners.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!F�V��YF����|��','� 3?�kZ,|\'r�g��]��>n�4�����','',0,'?'),('Gz�:H����#^','wp-content/themes/mint/node_modules/entities/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/entities/test/test.js',0,'t\rW�7V*C���X�Px�','t\rW�7V*C���X�Px�','~�M�a�]�P�%��vv!���K�\\J�P�%','',0,'?'),('G|ԏ�@�Ԇ�����^','wp-content/themes/mint/node_modules/hawk/lib/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/lib/server.js',0,'�Y���C�w�2GF�','�Y���C�w�2GF�','a8�]�@?A8.E�\0ש:|�G��CBw;�','',0,'?'),('G}|U�ϽW$��C','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Command/ListCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Command/ListCommand.php',0,'-Q�����\\�u�9�K��','-Q�����\\�u�9�K��','h�M�� g5y�8��XhB��L� @��Y��','',0,'?'),('G�9q���=ʥ[3?a�','wp-admin/images/bubble_bg-2x.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/bubble_bg-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�b��L�P�o�r�','�GJ{B-�r�$�u�]� ���]�E.�\02%����k','',0,'?'),('G�އ��)���s�Q9','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randSign.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randSign.js',0,'��Wں\\���b7��Ҹ','��Wں\\���b7��Ҹ','���K��\0ޅ_%�0�$4��-H�����f','',0,'?'),('G�=��u\n��ˮ�\0V}','wp-includes/blocks/avatar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/avatar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k�He���9�Ͱ�','���B`k�E���k��x�`����29{(*�)�','',0,'?'),('G���L/�h��� 0�','wp-content/plugins/gravityforms/includes/fields/field-decorator-choice/class-gf-field-decorator-choice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/field-decorator-choice/class-gf-field-decorator-choice.php',0,'�C���PZ�ݎ�~/�','�C���PZ�ݎ�~/�','{h,�����(H��]Z\"�ȗ���g�k=�M�','',0,'?'),('G�i\ZP�2�A|uc�ļ�','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/ud-logo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/ud-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C�j��M��ѓ�\'ː\\','w�yB�1bt��W��\"l%��t)�Qp�,Jb.','',0,'?'),('G��������T��dZ�','wp-content/plugins/wp-migrate-db-pro/class/Common/TPF/ThemePluginFilesFinalize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/TPF/ThemePluginFilesFinalize.php',0,'�lJ�r�71s�،]��','�lJ�r�71s�،]��','��|�i��l]���\'�\\c0����jޠ)�V6��','',0,'?'),('G�7\Z��I&:�x','wp-admin/edit-form-comment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/edit-form-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>I��9j@s�o�','QI�J��1 �濪L��ɢ�����r�(��','',0,'?'),('G�� pS�<�J��Q��','wp-content/themes/mint/node_modules/esprima/bin/esparse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/esprima/bin/esparse.js',0,'V�80 nv,���c','V�80 nv,���c','�)����#*M3H�\0,�d�(yqJ��{�4��','',0,'?'),('G�r&�*d5<�','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-7bc10e49.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-7bc10e49.min.js.gz',0,'���E��1���)O�','���E��1���)O�','�G���#�XN��n��(<2U*\n@�j4@','',0,'?'),('G�#���\\g�VKCy','wp-content/themes/twentytwentyfive/patterns/grid-videos.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/grid-videos.php',0,'�>3��﹤n2�K��','�>3��﹤n2�K��','�{|�н����\"��.jЅ3үL��\'#v��','',0,'?'),('G���t/�co8��Yf�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/sentenceCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/sentenceCase.js',0,'4��>�0��5�','4��>�0��5�','ԲNN������C;��xU�[��Η�MH*','',0,'?'),('G��;�\0ݢ*�g��\\��','wp-content/plugins/wordpress-seo/src/integrations/watchers/search-engines-discouraged-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/search-engines-discouraged-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z%�߭]C�B�\0�k�','�3��-��v3�S�J͎���Ub���#','',0,'?'),('G���?�6&\r���','wp-content/themes/mint/node_modules/bower/lib/node_modules/read-pkg/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/read-pkg/index.js',0,'lM�o�%m}L�L��XhS','lM�o�%m}L�L��XhS','�;�s�9ߛ. ���)B�\"�azR��h��uI','',0,'?'),('G��Ʉ�\'�E�Ң0','wp-content/themes/mint/assets/vendor/modernizr/test/js/lib/jsonselect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/js/lib/jsonselect.js',0,'L���Vx\Z��\'R��z','L���Vx\Z��\'R��z','��|�%��_;��W ��-ڿ�û��v��','',0,'?'),('G��4o�c��%�k�','wp-content/plugins/wordpress-seo/src/integrations/admin/admin-columns-cache-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/admin-columns-cache-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ T�.��k�v�ß�%�','D��mb��,��iJ>=@���gw�K��lj','',0,'?'),('G��j��\"�?�E�����','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post-template.php',0,'նZ��T!�]�UXL:','նZ��T!�]�UXL:','�n8ݰRP5,~w�TvO7��������','',0,'?'),('G�ʝm(G{�y��','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/themes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/themes.js',0,'�-:8p6��@<��','�-:8p6��@<��','Ӣ��俻\ng4�-ٛ����#��t��EB','',0,'?'),('Gʞ�z�~��?\\ɒ\r','wp-content/themes/twentytwentyfive/patterns/hidden-written-by.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/hidden-written-by.php',0,'����B������','����B������','x�{mM�o��\n���K�<\Z�C��I��3jK��','',0,'?'),('G����\0W�ܼ��~','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/times.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/times.js',0,'�uEk������kK','�uEk������kK','���S&�8F�;Z��ƃw�y�7+�U','',0,'?'),('G���NT�b2*���/h','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',0,'K�8I�dp�o?E','K�8I�dp�o?E','T��!�H ��ؘ�,C�a~�KO�PJ����9�','',0,'?'),('G�N���\0�k\\8%��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/norm.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/norm.js',0,'� ���3�(���','� ���3�(���','�o��ҭ�5V�7�6(]L�[i5�(@���','',0,'?'),('G�m�3f�a�91�J��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/once.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/once.js',0,' ez�M~L�H�¼��',' ez�M~L�H�¼��','�E;@m9�n��tg�1�aK�\"D2�3ҩoSfF.','',0,'?'),('G�vVؗ �s(�ƕU','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cloneTypedArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cloneTypedArray.js',0,'�/od���e2eӣt�v','�/od���e2eӣt�v','xI�yV�R��7wa��D��9\"I���5+:i�','',0,'?'),('G�l���HݦS�Q�','wp-content/plugins/envira-gallery/assets/images/icons/pinterest.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/pinterest.svg',0,'bO��f�@��\'�\"','bO��f�@��\'�\"','����.�>\"�A~� 5|�Yu�k��ӱ��:�d','',0,'?'),('G�6�=b!�Z*`e_�','wp-content/plugins/envira-gallery/src/Frontend/Frontend_Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Frontend_Container.php',0,'\\0�]+��7j�\\=i1g','\\0�]+��7j�\\=i1g','q\ZCSɭ�1�2Os�l�>�U���l�\\�I���','',0,'?'),('G���4��$�3}�kg$�','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.4.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.4.js',0,'��<��I*h���','��<��I*h���','��C)�,3�����K8Еf0��������.�','',0,'?'),('G�pJ:��\'�Ϗ�I��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/createObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/createObject.js',0,'��[D�U������v','��[D�U������v','YpQ��!��p�=\rQ���B�{5M���rIJWu','',0,'?'),('G�t?��< ��c=���','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/all_bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/all_bool.js',0,' ���3�E�&i�c�� �',' ���3�E�&i�c�� �','Rr��Ab�R��_����c`COnG(���OG��b','',0,'?'),('G��;�Ў{ٿP��+','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/dist/async.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/dist/async.min.js',0,'�.S��y�X�<�N^���','�.S��y�X�<�N^���','δ˗\0�\n�+\0����ʤ���MO\Z&�}�W','',0,'?'),('G�醟��sHO�[���','wp-content/plugins/gravityforms/includes/form-editor/choices-ui/config/class-gf-choices-ui-config-i18n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-editor/choices-ui/config/class-gf-choices-ui-config-i18n.php',0,'��d��/���L\"','��d��/���L\"','�Hn�#�qC�*^$�;��w�A�>��D�&','',0,'?'),('G��0a��&E��D�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',0,'V�%Q��\':���lF}�','V�%Q��\':���lF}�','��g[`��w���\r47jF 3_�ѕt�?e�,','',0,'?'),('G����<��OU:��V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/baz/doom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/baz/doom.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('H*��Ж].*���','wp-content/themes/pinnclonesmalltest/resources/assets/scripts/routes/common.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/scripts/routes/common.js',0,'�754�Y����ƶ��','�754�Y����ƶ��','OX+��vݧ2��ʌ�RGEW�\nM=���jhM�','',0,'?'),('Hխ?B�&�K(���','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/long.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/long.js',0,'e.�^i�A獚�_�W�','e.�^i�A獚�_�W�','�P�-�FZ+�-I�\'VRHØ�Vx�0��BH','',0,'?'),('Hv7�X��\Zs|�','wp-content/plugins/wp-optimize/images/notices/new_year.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/new_year.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=uN�w�ta�^\r�0','�r��i!�2Z��:d��jv�t�~�q��','',0,'?'),('Hj����F�H|2���0','wp-content/themes/mint/node_modules/promised-io/querystring.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/querystring.js',0,'����\0Ԑ�]���̭','����\0Ԑ�]���̭','�\'2ɚ\\#@Z�~�gͧ\rm�z���F3�L�^��','',0,'?'),('H�f�lԡ_���','wp-content/plugins/wp-optimize/templates/minify/font-settings-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/minify/font-settings-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����jvӢ��y�+�','i�|��d�J>ᓝ�����D���Ѭe�K�ф�','',0,'?'),('H���\'X�f�U])�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/camelCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/camelCase.js',0,'[g��y�G��q3g;g\Z�','[g��y�G��q3g;g\Z�','6��c4������|a�\\fך�U}x�ߤ#�V߉','',0,'?'),('H\Z����\r�I?+;� �','wp-includes/SimplePie/src/Caption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����>ZГ���','��F�h��0��~\Z�\Z��Px�,{S��Z�\'˙','',0,'?'),('H$f\nyl���^r<��','wp-content/themes/mint/node_modules/less/dist/less-1.2.2.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.2.2.min.js',0,'O�+�j��v���\nS@\nN','O�+�j��v���\nS@\nN','l-%�8M�8��!5\ZJ��X\\hh�zJč]s�@\\','',0,'?'),('H&�>����V/�D\"','wp-content/plugins/wp-reviews-plugin-for-google/static/block-editor/block-editor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/block-editor/block-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gڦ@G�x�`\'��ذ',']�=P\"���k)�%�ޮ.����Xl��','',0,'?'),('H+�E~�}�1Q���','wp-includes/js/wp-util.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӆ�\0NT��5~�]','P�l��f�� �z�HCqD�N>t�\r0�xF��','',0,'?'),('H.`z�ʭ��C�3�','wp-content/plugins/wordpress-seo/css/dist/black-friday-banner-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/black-friday-banner-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a��\\�M��!o0\'�y�','�C�/F7�����Y$В��b�:����Uy�','',0,'?'),('H0�g�r� .ͮ�<(�\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/over.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/over.js',0,'����n��EtV�','����n��EtV�','<�>�G�v+3sY�-�_.��lƮ˚�o;��M�{','',0,'?'),('H4��=4��$�qSFz9�','wp-content/themes/mint/node_modules/bower/lib/node_modules/run-async/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/run-async/test.js',0,'�V�6��B�+gh����','�V�6��B�+gh����','���O��?S��\\ɇ��T\Z�C�S50-:V�','',0,'?'),('H5\\�>|��J�&� |','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-user.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-user.php',0,'���H���#��','���H���#��','Vs\"�\'���<9�(@Bq<�_E�1-^��','',0,'?'),('H5b�S��&\"C���+P~','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/DependencyInjection/TranslationExtractorPass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/DependencyInjection/TranslationExtractorPass.php',0,'J4����ŶlX�@�','J4����ŶlX�@�','�sZ$�Mb�-�\Z�{�T��+���,���y&','',0,'?'),('H8���{s����\'��','wp-content/plugins/wordfence/js/wfdropdown.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/wfdropdown.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J��_Y\Z�TvFu\Z�','��A���ĺKba��4��-�t�$W��TrPd','',0,'?'),('H;>���l�je�tX��F','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_transform.js',0,'\"`1>n`{f��W�]','\"`1>n`{f��W�]','��PsM�\"�E��@,w~Q�i��z�c�b��','',0,'?'),('H=�3P;�T���~�','wp-includes/blocks/separator/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������EȪ��h','א�Z�Ƚn_6{�N�n;�FM>un�����\"','',0,'?'),('HA���f�,���$F-�','wp-admin/css/customize-nav-menus-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/customize-nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W����m��#[�Q*}','�r�<א.Y\n�o�!�d�� ԖN��Pt�v�/�','',0,'?'),('HC��eÜ�۵�d�','wp-content/plugins/gravityforms/includes/webapi/v2/includes/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('HG; 0�|��\09�','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Store/File/Reader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Store/File/Reader.php',0,'<xĠ����S���','<xĠ����S���','\"�Y,���p��}�?KX:�#�\";���L�g k','',0,'?'),('HGh\'�x�R���~\n','wp-admin/js/customize-nav-menus.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/customize-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�֘hA��`[�w','��1-�(U�vؓt���1�D\0��\r��o���','',0,'?'),('HWgf��|=[�~J$}�','wp-content/themes/mint/list-category-posts/news-list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/list-category-posts/news-list.php',0,'��Lw��T@jvNLU','��Lw��T@jvNLU','�g(��ϧ�q����Ŀ��5y�5b�G�>�<��','',0,'?'),('H`�\\� �r���Y�C','wp-admin/includes/class-theme-upgrader-skin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!�$ڞ\Z��\ZGϧ','����-F�,�BQ���w�Z�*i�p�+�','',0,'?'),('Hc���v>]|H�\'�','wp-includes/blocks/site-title/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-title/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���S�ǎ��p&T^�l','�` �*�3��U�ev\'t �u�k����U9r','',0,'?'),('Hc+?WȎrP��N5','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue353.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue353.js',0,'D�Qm��i����ɘ','D�Qm��i����ɘ','o#ߪ�MW�=l~��\"4$����Ƣʜh�E�','',0,'?'),('Hd<�\"����+j ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mergeWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mergeWith.js',0,'\0�$�3���[X\"\\���','\0�$�3���[X\"\\���','��@\"5K�ҧ+^`4[�(ϐ2jl�8�v�4?zr','',0,'?'),('Ho�����H�X��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/deepEquals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/deepEquals.js',0,'�����a��.�9t�','�����a��.�9t�','�� �9�5\Z��{����)�g<D�e�ej�a\'e','',0,'?'),('Ho���L��:�Y��','wp-content/plugins/wordpress-seo/src/presenters/score-icon-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/score-icon-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Zq�\"(3�ܫs�El7','2�����ل3~)&�N��d*��γiL����','',0,'?'),('Ht����<��ߤ�04�','wp-content/themes/mint/node_modules/bower/lib/node_modules/isexe/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/isexe/index.js',0,'�0�gU>�Ey�ԈK�','�0�gU>�Ey�ԈK�','��C�ԟ]�\"H�[������DfK��Խ\0)','',0,'?'),('Hv�f��!���5�M��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Option.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Option.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ή.`$����!2���4','�Ek���B�]E-o*�Z��c�Y�W��N�\n�','',0,'?'),('H{-��T����Z��\n6','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/lazyReverse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/lazyReverse.js',0,'���\'���x�J','���\'���x�J','�y⃑�{��d=�$�\0��P�\Z%��u#�W�','',0,'?'),('H|\0`B����*�Q��','wp-includes/blocks/post-navigation-link/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-navigation-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����P�7k����F','��A�\"+�5L)�qϳ~{���:�<���z ��','',0,'?'),('H|�����\'�Y�f�','wp-includes/blocks/post-comments-form/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-comments-form/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','쮛��9\n.ha��=8�','����b���?C�=P��\n�E�H�g�pE','',0,'?'),('HY9��븍=I�P5','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-formattribute.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-formattribute.js',0,'�bc�[���\r9����`','�bc�[���\r9����`','��Rmc��j�� ��]�@tg\nP:kB�h<�Uw��','',0,'?'),('H���i�Rd��e�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/repeat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/repeat.js',0,'�+��m�!N����3X�','�+��m�!N����3X�','6(v��N7�X�xM*o2��\r6��gwl|���','',0,'?'),('H�ᶃ*�E���=���','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/node_path/x/aaa/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/node_path/x/aaa/index.js',0,'�K��ʿҴr�<u�','�K��ʿҴr�<u�','�W��w�g%��7є�j��O���*�l@','',0,'?'),('H���Hd���֭���','wp-content/themes/mint/node_modules/bower/lib/node_modules/junk/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/junk/index.js',0,'�S���C������o','�S���C������o','�aJ��i\0�)3�\0܉�k����\0Y��KБ�fk�','',0,'?'),('H�0v+��«A�6vA','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/QtFileLoaderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/QtFileLoaderTest.php',0,'�Kf��v�l�K���','�Kf��v�l�K���','��;������oo(���VO�V�V���','',0,'?'),('H��͇>\n{����\0{','wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-phrases-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-phrases-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؾإ4E\'ϝ��','T0�r�{75}s~���FEWL��� �=t���','',0,'?'),('H�ӵYK��K�oɏ�','wp-content/themes/mint/node_modules/less/lib/less/tree/element.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/element.js',0,'y�S�dG��V����','y�S�dG��V����','i\Z�ZH M� ё�Ƌu�{C��D����VN�','',0,'?'),('H���=Y2�a>\0Z݀','wp-content/themes/mint/node_modules/js-base64/test/yoshinoya.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-base64/test/yoshinoya.js',0,'���;�eH�E��C�fOT','���;�eH�E��C�fOT','��F�Ж�����7��YqW�����3&���','',0,'?'),('H��I�̢?�㎃�','wp-content/plugins/wp-reviews-plugin-for-google/tabs/my-reviews.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/tabs/my-reviews.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X���dsF�X��S�','�<��k3�� �2��h�>�����<�{��D���','',0,'?'),('H���~h����8','wp-content/themes/mint/node_modules/less/dist/less-1.5.0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.5.0.min.js',0,'-�l��c�(O��\r��','-�l��c�(O��\r��','\"�mq_[�Kc�+��j��)g��\\�Cí�H��','',0,'?'),('H���3:�\\\n����;�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/extend.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/extend.js',0,'Z�&0U$Ф4l~:ək','Z�&0U$Ф4l~:ək','����$�ۗ �zJ&m�P���\'������`','',0,'?'),('H�L���c�>a@���','wp-content/themes/mint/node_modules/jshint/src/reporters/default.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/reporters/default.js',0,'&�ľ�.�\n1H��ָ\n','&�ľ�.�\n1H��ָ\n','��z7N�7 �C�#䄊V�,H��=mʔ�O� �\"','',0,'?'),('H�M�μ�\n���','wp-content/plugins/wordpress-seo/admin/views/tabs/network/crawl-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/tabs/network/crawl-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E���=�o.���sfV','m�0=*ts�9�y+$i���W(����f�','',0,'?'),('H�{�q=8����&�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/ctorApply.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/ctorApply.js',0,'���]~��7\Z�Xw�,R','���]~��7\Z�Xw�,R',')�\\Vxp�R\r�8� hh�ZҺ#x�c','',0,'?'),('H����>b���8.��','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_standalone.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_standalone.html',0,'���@��}�M�v�1<�','���@��}�M�v�1<�','�����>��x?��E:�]��|��\"Q�`a','',0,'?'),('H��Y6o��D{�LH��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V~D���;�[`��d','߿\n\"��KL��\Z�6\'���5��c���z�d��w','',0,'?'),('H�5��{S3��`z��\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isInteger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isInteger.js',0,'�X\n�B�\0���n��i�','�X\n�B�\0���n��i�','\Z�\0�]�+R-��\"t/ѢL6�н���q���G','',0,'?'),('H��%-��<�K o�z','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/partial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/partial.js',0,'����a;6|�A3��','����a;6|�A3��','���\\��3�%Xи~ʗ�u\Z�4�}����.','',0,'?'),('Hý��i�Z�U,H�L','wp-admin/includes/meta-boxes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q:M���E`d��|�','���fdP:4J���,�eI�c#�X�8#','',0,'?'),('H���C�Tp(^��l�','wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O;[ �9�w.�k9�','���^�+B�@�\\Ӭ�@��.E�0���s|','',0,'?'),('H��+��S/�6]/�','wp-content/themes/mint/node_modules/bower/lib/node_modules/rx-lite/rx.lite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rx-lite/rx.lite.js',0,'}��rm�=f��Ъ��','}��rm�=f��Ъ��','�*�b\"�!��\r)I��cʜ�ו���L>','',0,'?'),('H���s��%v��!h��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isMap.js',0,'�\n\0�2bu�O��j�','�\n\0�2bu�O��j�','[K(vC�?M(�C9���TDX��,�A�I\r�\"y�h','',0,'?'),('H�`4���]��J�\"','wp-content/plugins/wp-migrate-db-pro/class/Common/Profile/ProfileImporter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Profile/ProfileImporter.php',0,'٧�*D�����Ĥ\"','٧�*D�����Ĥ\"',':#nZe�e|U>��dl29d��?�D�,I�','',0,'?'),('H�Ĵ.��V�g��)�','wp-content/plugins/wordpress-seo/src/editors/domain/integrations/integration-data-provider-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/domain/integrations/integration-data-provider-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rpe���*�P�A�D','�W#�ZH�J�c��v>��^��{\0��$Fd��K','',0,'?'),('H��@�M`¶Q��i','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/filterLimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/filterLimit.js',0,'r���{�A�a����w','r���{�A�a����w','+Y)9cA�t?���[�w�b%��`�ٖ��j��','',0,'?'),('H��!��[?�z>����','wp-content/plugins/akismet/class.akismet-rest-api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/class.akismet-rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����a�kB������','��>���H[j���q���}�n�tg���','',0,'?'),('H��H���ܿ9.�+','wp-content/themes/pinnclonesmalltest/vendor/psr/simple-cache/src/CacheException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/simple-cache/src/CacheException.php',0,' ѧi~u];�f�Id�',' ѧi~u];�f�Id�','$h����%��������ɓ}�V�-Ǩ4;�','',0,'?'),('H�aL����Ij���+̎','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/negbs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/negbs.js',0,'6s����~^Tr��','6s����~^Tr��','�7()� #^��syO���0���6�\n���{�p','',0,'?'),('H�C�N7z���ⱛj','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-arrow-left.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-arrow-left.svg',0,'��:���-�ELX��&','��:���-�ELX��&','(���ң�(�/vj��>�7ߋq%q���=�d{','',0,'?'),('H�P\r���;F���-','wp-content/themes/mint/node_modules/shelljs/scripts/run-tests.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/scripts/run-tests.js',0,'��pF���k~��}j^�','��pF���k~��}j^�','�PB\r��2��z��YM$F&�eߓ$\n��7D','',0,'?'),('H��ܧz�4�C���^�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/testparser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/testparser.js',0,'w\Zlc^�W�n3�խ','w\Zlc^�W�n3�խ','�I�x8�v\\/�^�!��)gc��l�l�E����','',0,'?'),('I\0u�\r�)8wm&��','wp-content/plugins/wp-optimize/js/send-command-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/send-command-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����2_rs�B~9[T','�\\����A�\Z�����)�V�Ċ=��G2�^�','',0,'?'),('I�{X;6)�skb�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/lookup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/lookup.js',0,'Ȁ��!��A�SkY��','Ȁ��!��A�SkY��','~����h��.���!�O~�)_84���Q�','',0,'?'),('I�!f�l�i��3И','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/find.js',0,'���x�Ġ9(�%\rr','���x�Ġ9(�%\rr','Y��oI@Vz� -\Z�g�\Z�)���-�:YD̞','',0,'?'),('Ie�Ù�����QeF\n','wp-content/plugins/wordpress-seo/js/dist/network-admin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/network-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n#���f�g���','%��=YZp%Β��G+c�ϤY�/���<:c','',0,'?'),('I����x;���2r','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ObjectOperatorSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ObjectOperatorSpacingSniff.php',0,'Tg�E����_6�˙.A','Tg�E����_6�˙.A','�\0/����*qN��ИY�\'B����Hh9v��','',0,'?'),('I>��.�>�WJ��[�x','wp-content/plugins/wp-optimize/templates/cache/browser-cache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/cache/browser-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(i\0+j���oi�(��','b\nX�����m��M.��u���h���dy�','',0,'?'),('I\r8p:́ ޞ}`�\Z�','wp-includes/blocks/query-pagination/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R���8�Hɢ��^M�{','#�s�(�ȲWm\"�\Z���Z�O˛Pu���k\\p','',0,'?'),('IW�9�a��W��3(','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Hv�~�Q=�z�8j\'','�n�{(-��B?��<m}���۸s���p�','',0,'?'),('I ��\Z//�U�$�Ċ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/currencyFormat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/currencyFormat.js',0,'>L0Սsм�H��q','>L0Սsм�H��q',':JA�v�\Z�z�$\05hyyY\"$��]�h�l�r�','',0,'?'),('I��i`�tO����','wp-content/themes/mint/node_modules/bower/lib/node_modules/yargs/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/yargs/index.js',0,'r�o�����^r���','r�o�����^r���','ݺ�<\Z�9G�vx���\\��mkBO5Oa�','',0,'?'),('I J8Ѓ1�z�C]Y:','wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Availability.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Availability.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�x�1r � �����','�D�A�cܤ_;^\ZK����g5�K�d=e','',0,'?'),('I!Oχ�1v��','wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-nc-sa.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-nc-sa.svg',0,'ݦ>��P�By\"6#��','ݦ>��P�By\"6#��','w\0v��B0�4�݁}�̫���J�W�j���','',0,'?'),('I\"�,\"!�1�z���','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.js',0,'L2��\r]+#�#[^��4','L2��\r]+#�#[^��4','~�M��%K����lS`���\0��J��Y��}','',0,'?'),('I$��?:::;;|윗c','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Mail.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Mail.php',0,'�Zm�U���!���ַV','�Zm�U���!���ַV','��f�ԉg����gK����S���i�S���','',0,'?'),('I%�I�y@�r�<��','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/example/stream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/example/stream.js',0,'�yi�O;��*��N','�yi�O;��*��N','��,Z�D���T��_ц�R$ȿל?7[�','',0,'?'),('I0��S�$2�T�B*','wp-includes/widgets/class-wp-widget-calendar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��v����:�2�hv','��}\Z))$G@���U(�\r�J@��Ã�I��','',0,'?'),('I4�jcI/�6=��pzv','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isNaN.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isNaN.js',0,'��}�q330⚎S�','��}�q330⚎S�','�~���I��#4�Χ����{��<�nA�','',0,'?'),('I6.:\n(��i\0B��','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)�����Z)�*j�D','�z7���cb{�9\ZJ�0ӣ�7�}�\"ϽR�[\n[�','',0,'?'),('I6U�\r7����3p�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h<��|�7b����','��_�^F\"��;+r&Z~ӦQ����|�5�','',0,'?'),('IBʟ�v-�٩���c','wp-content/themes/mint/node_modules/less/build/require-rhino.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/build/require-rhino.js',0,'tJ��IR�@��ڹ��]','tJ��IR�@��ڹ��]','�=��|;��I�)��h���D�\r;M��5�l�','',0,'?'),('ICo�ú����3�','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*��t��P>_i�\'','w��/���0�Yn�7M���nrZ�^�V���','',0,'?'),('IF�g���xM���\r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/rol.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/rol.js',0,'��i!p��>ϦM��Q�','��i!p��>ϦM��Q�','�aQ��X�vxH��� ����}��&��Z�','',0,'?'),('IPFH�cf����K`�Y','wp-content/plugins/wordfence/css/wf-ionicons.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/wf-ionicons.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Al��s���j�⯃','ג��4�ˮ�v�����M�`�V��Z�','',0,'?'),('Ibx����@�t0','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/issuesTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/issuesTest.js',0,'���P�^�!\'h��Vr','���P�^�!\'h��Vr','�(떖t� ���{w�E��r�\\�:��ױ�\0�3�','',0,'?'),('Ig^�{b����e�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/objects/separator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/objects/separator.js',0,'��eF�Z>��w�b^','��eF�Z>��w�b^','t�qQ�|)`/�-�XS�&, 3V�|z��2� ��','',0,'?'),('Ih��xs���6E�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-to-browserify/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-to-browserify/test/index.js',0,'I��3u�p$q��&�','I��3u�p$q��&�','����[�\n����Ւg�ܯ�pxBcx���u','',0,'?'),('Ilu�/N8���V��m�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/server.js',0,'Y�-��9X0��|u ?','Y�-��9X0��|u ?','=*cL�\0�Hӄ=�~��N ��o�T{����\0��','',0,'?'),('Imm�C�ѭ��띍g','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/TableCell.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/TableCell.php',0,'��P�����$S��','��P�����$S��','T���(�\\���)!u��� �y��PBj���','',0,'?'),('IwA馼��i�Ҝ��ȩ','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/test/amd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/test/amd.js',0,'s�I�|\n�Bq�Q','s�I�|\n�Bq�Q','{^#�����$Kqm�C]KC���8�X��','',0,'?'),('I�L84a�9pW�G\"','wp-content/cache/wpo-cache/juiceelectrical.co.nz/smart-homes/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/smart-homes/index.html',0,'\'��K�u99$�S=�','\'��K�u99$�S=�','\'�R���Yc�Ni�^\0�y*��3�u��e','',0,'?'),('I�(��c#T1�1���g','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-pipes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-pipes.js',0,'�!�O\ne�%�uz���O','�!�O\ne�%�uz���O','���K�>�~���?%Ut\"����U�','',0,'?'),('I�N)��p��:��<��','wp-includes/js/dist/development/react-refresh-runtime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/development/react-refresh-runtime.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\�M��(�g�Ɍ#�','?l�\\^ �=�����n��C����6}��T7��','',0,'?'),('I��υ�LTS^�\0e�','wp-content/themes/mint/node_modules/bower/lib/node_modules/find-up/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/find-up/index.js',0,'\';�=Y�ft�ע��','\';�=Y�ft�ע��','&�\0�٥�7��]�hF+\0x��a�D��x','',0,'?'),('I�3�.J�N+�=��\\�','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/interval.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/interval.js',0,'����s�Ci�M�!K�fi','����s�Ci�M�!K�fi','g\Z�֫pqLɂ��`���g@d{褌V�yW','',0,'?'),('I�}������#Ƙx��','wp-content/plugins/gravityforms/includes/fields/class-gf-field-multiselect.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-multiselect.php',0,'};tz�G\0ܩ�E`�\"','};tz�G\0ܩ�E`�\"','�4g,��ۅe�)+6<]�<�i@�}o\n�\n�R�B','',0,'?'),('I��:Bs�#���@�','wp-blog-header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-blog-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_BZF1���y����)',';\Z�/\\b���t���I���͝���h��w�','',0,'?'),('I�N���T3H�#��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/rpad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/rpad.js',0,'�[Bu�v{\0t�ymѧ','�[Bu�v{\0t�ymѧ','��%�O���I�+PɌI��z�~��N��\"\r~wC��','',0,'?'),('I��l^�LE��\ZCx','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js',0,' ��ߑ �lS8�X��',' ��ߑ �lS8�X��','���K[���o�9�}�~03l�愪�c���`�','',0,'?'),('I�e��Lk�F�^4A[','wp-content/plugins/wordpress-seo/src/deprecated/frontend/breadcrumbs.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/frontend/breadcrumbs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M5���+}�x���\0w�','B��1WfNy��*�\"]���5ٖMn���','',0,'?'),('I�&{��;�-H��','wp-includes/blocks/site-logo/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-logo/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tء�\'|���Қ����','��V���pٙ��f�Cχν��7te)�^�\r','',0,'?'),('I�Ԭ�l��v0O','wp-includes/js/dist/core-data.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/core-data.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��k���{nƟBG��','t ��1b�\ZH0沆���@/ �)��Ȏ','',0,'?'),('I��\nP���R@�0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/reject.js',0,'��-!MO�/}�8�#�','��-!MO�/}�8�#�','.���*ƓB��^u���?9�lv���ħ�P�۫','',0,'?'),('I�PE�Xt�FH�%�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\0��Lv�[c��)?','�C�h!݀F$�}�wd�7b(�!�p�IF.L�','',0,'?'),('Iׂ�˦ʓ��$���','wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Sender.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Sender.php',0,'�;�������c\Z�\"','�;�������c\Z�\"','��I<vF�د�i�s��k�8g!�P�;����','',0,'?'),('I��8߽�T�\Z����0�','wp-includes/blocks/list/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/list/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�l(�����>�Z','� /Z�w=��u�i��K��w�r�$�VϞ�','',0,'?'),('IأbHg\n�����C9e','wp-content/plugins/wp-optimize/templates/minify/asset-preload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/minify/asset-preload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� `�s��b\r\'����','�O���}�=p���U�╿�)��M&t7y\"\n^-�','',0,'?'),('I��>��V��]TTbW�','wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���sx.�\Z��s��','��bN�%t>��[��I���Tk\0�w����A','',0,'?'),('I���d�Ԋ�%3*SF�','wp-content/uploads/cache/09d7ce594085f44af7e658d2e65bc15ec959a0b6.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/09d7ce594085f44af7e658d2e65bc15ec959a0b6.php',0,'���\\<t��LRj��P','���\\<t��LRj��P','ڈ�)T߿��Lz�o�9~qL�B��Eϰ1mC��','',0,'?'),('I�Sb�E��r3w�7','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/some.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/some.js',0,'�\0�0�g�{�%�$/B','�\0�0�g�{�%�$/B','v�2�s<�ߟF��YXɗ���ɯEn ��','',0,'?'),('I�m=!�.������','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-system-page-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-system-page-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6ãUx�qk=ʞz�','\'a\\���p{�Y�1�I\r����eY$o]h�b','',0,'?'),('I�V/��6�s��','wp-admin/js/editor-expand.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/editor-expand.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N���~\"�(� J0�Ko\r','����gN{�U/j���<�}��o��<_�','',0,'?'),('I�!�OԞ��HF�ʟ�E','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z�@$�U�����8�','���%P�k+�$��尙���Mb�@<�eX�O','',0,'?'),('I�r� 3z]���Ik�^','wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-n4s���>r4��','\0���G�3U;\Z���vw߷�i+-*W��','',0,'?'),('I���X�����CU^','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/size.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/size.js',0,'�G갌��l�U��','�G갌��l�U��','��\'�T�,~�˂��^�Ʊ��$T�a��5\"a','',0,'?'),('I�\'~�vp\\�@I$��e','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang.js',0,'�xU��H\'�&��Z���','�xU��H\'�&��Z���','E�?��N3M� ��E9�\"��)m�G��FSĆ�','',0,'?'),('J�%.��~�q�l�','wp-includes/class-wp-text-diff-renderer-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-text-diff-renderer-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@�g)�gn�\rC�j','��V�X\0߹���g�|����}&?�Kel���!','',0,'?'),('J��IIS/�������','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/capitalize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/capitalize.js',0,'�H�<-�䐷.}Ẍ�','�H�<-�䐷.}Ẍ�',',zW+�7I�1]�|�\"���[(�ə�.�4�c','',0,'?'),('J���V䩘 5','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/Widgets/QualityBadgeWidgetTemplate.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/Widgets/QualityBadgeWidgetTemplate.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����YJ=MI�TJ_','k6�m\'��&Æ\'��r��x$V����.','',0,'?'),('J t�x�:���n\'Ȫ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/i18n/pt-BR.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/i18n/pt-BR.js',0,'�����VN�;M�o�j','�����VN�;M�o�j','��]%�!x����6I�dehRAF�F���','',0,'?'),('Jf�3?���_r�C�','wp-admin/images/w-logo-white.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/w-logo-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n���Jvۢ~�y�\\�','n��D��� _�;�!G�םcV�0M9i�=�','',0,'?'),('J|Q�|s_�j��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/parse.js',0,'Ժ�au �M�\r�','Ժ�au �M�\r�','��1�r�O6D�}e?�|j�dZ��C�1^���','',0,'?'),('J��E[�7U��\Z�~','wp-includes/js/plupload/handlers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/plupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ܸ+� �W�`Ƿ','�8a�:F\n�)we&CyC��Dm儶�ȫ%\"&�TW','',0,'?'),('J �r���3���!','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/stubObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/stubObject.js',0,'�f��x��@M��h�v�','�f��x��@M��h�v�','�8 ��)���P�3�R,�}e4T�u�\n9���','',0,'?'),('J���g����͡��%','wp-content/plugins/gravityforms/includes/telemetry/class-gf-telemetry-processor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/telemetry/class-gf-telemetry-processor.php',0,'�[����_�w{��s��','�[����_�w{��s��','Z�\0��3v�v�}��;���\rU���$�?�;�','',0,'?'),('J�Rf%G祈s�>#l','wp-content/themes/mint/node_modules/promised-io/engines/rhino/delay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/engines/rhino/delay.js',0,'*�H����9xje�\'','*�H����9xje�\'','��DZ�<W�6�#�lZC��\rK��V@ x���_�','',0,'?'),('J�̃,,�\\���ؐ��','wp-content/plugins/wordfence/css/jquery-ui.min.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/jquery-ui.min.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}O�^�0tGG��Q','�ٍ$rb=p�h�x�K��5]8�Q���R��jn4','',0,'?'),('J�J]���\rU�k2:','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/strict-equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/strict-equals.js',0,'�0��TV@�X/��','�0��TV@�X/��',']��[�ïn6lMv�\'���h0nLU�;[GF','',0,'?'),('J �;?��=�m��$�y','wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/FinalizeComplete.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/FinalizeComplete.php',0,'��ʫS��{��T���-�','��ʫS��{��T���-�','��P~�oGPy�a~Ѡ��\'l��z}�l/3D��t','',0,'?'),('J.��Ǝ=U˹!\\X','wp-content/plugins/wordpress-seo/src/presenters/open-graph/type-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/open-graph/type-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%@ݏ�g�Ր�a�[�','N)y\n���Fa�J�r��bW�%��C}u�u\'O\"','',0,'?'),('J0N����q\'�t�o#','wp-content/plugins/wordpress-seo/src/integrations/watchers/addon-update-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/addon-update-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\ny�bQ�E��U\r!','xXN7���{���e=�W��8^��\\F%)��=n�','',0,'?'),('J1�7��g �Q+��R','wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/mathml.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/mathml.html',0,'�]Gi��{Hӊ�zl\'','�]Gi��{Hӊ�zl\'','y#�c�E��ξbI��w !s�so� z��Ü�','',0,'?'),('J2\r���������\"b','wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/form_validation.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/form_validation.html',0,'�vvp��N�W�(��W�','�vvp��N�W�(��W�','>A�%@\0���f�PV������K?%�.��y','',0,'?'),('J8���[L:����hº','wp-content/themes/mint/node_modules/bower/lib/node_modules/figures/node_modules/object-assign/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/figures/node_modules/object-assign/index.js',0,'k��ؿ���G��A87�','k��ؿ���G��A87�','��G��m3g]r\r%�8a�Ғ�ҿ�K��','',0,'?'),('J8�E��Dh+���F','wp-admin/js/site-health.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/site-health.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f\"�-�������1','j*�w���鼸��P����C�sr�\r�q3�','',0,'?'),('J:���f|bjuN<�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/pull.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/pull.js',0,'/GXv7��|��!��1','/GXv7��|��!��1','x(����.�5��$ 9N�n���b)�#�D�','',0,'?'),('J<d�Ҡz�k}��0��','wp-includes/SimplePie/library/SimplePie/IRI.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�0^��[<H���1','\"u���T����nMrp8c�4�l�{�$Z��','',0,'?'),('JR�c�T�5$h�M','wp-content/plugins/wordpress-seo/js/dist/dynamic-blocks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/dynamic-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#�:��~.�.�','�sҼ ���L� _#%\\�K���ޚ ~+� Ev�','',0,'?'),('JV�������:�@��','wp-content/plugins/advanced-custom-fields-pro/pro/post-types/acf-ui-options-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/post-types/acf-ui-options-page.php',0,'�����<���,�m��~','�����<���,�m��~','�ϯ���N��;�uoQ89��\'1A�Pe��U','',0,'?'),('JW��8��!���~��','wp-content/themes/mint/node_modules/bower/lib/node_modules/hosted-git-info/git-host-info.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hosted-git-info/git-host-info.js',0,'�����Ҋs��N�','�����Ҋs��N�','A����AD��-c/�y�=T�P�o B�<aQ�-�\r','',0,'?'),('JZ��l�z��Wi��','wp-content/plugins/gravityforms/includes/phpqrcode/phpqrcode.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/phpqrcode/phpqrcode.php',0,'w�D���<�[�','w�D���<�[�','�`L�S\'�ɔ����^z�A� &Z�+��l�2','',0,'?'),('Je��\\\'D���J��﵏','wp-content/themes/mint/node_modules/bower/lib/node_modules/through/test/buffering.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/through/test/buffering.js',0,'���`s�y-_�j�','���`s�y-_�j�','F�$�|�����9�g�Ū��&��da��','',0,'?'),('Je��x�U�������','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/appendChild.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/appendChild.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@��\0�sm9�','�� mA�+ߜq��:&8��iD|ơ�z�','',0,'?'),('Jf\Z�V:�5|�b?4\r��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/every.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/every.js',0,'�U��Gb����3��G�','�U��Gb����3��G�','|1i�B���?4���n#�b*5|Kp���','',0,'?'),('Jg�\\\'�����o�t]','wp-content/plugins/wp-optimize/css/admin.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\0��WM�CEɤ�','O�O�ު�jf�G\rtp�����4�C+[ȯ��','',0,'?'),('Jj�\0pmw�㚉b(','wp-includes/blocks/code/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/code/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z� m�����E�J��','�w(�$���썎�B.���}�e�-���','',0,'?'),('JlMw��ys4~͓ ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/some.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/some.js',0,'�`~l��u|^_�^l�;','�`~l��u|^_�^l�;','�Ò��\\wH�>��?���c�{P�����l��','',0,'?'),('Jl���1������','wp-content/plugins/wordfence/models/.htaccess','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/models/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E\"xK��{�8�dS�','C����\'r�9��@�K�ކt�����w#@k�','',0,'?'),('Jpc�ۍEƯIv��Y(�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_matchesStrictComparable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_matchesStrictComparable.js',0,'��T*�AL_��I��c(','��T*�AL_��I��c(','k� ��y�)\r�À*�v�8�iih,��(���','',0,'?'),('Jq?���i12��?�/','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pickBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pickBy.js',0,'�J.p\0�@��mK�E8[','�J.p\0�@��mK�E8[','�����TҍF��\\*溔sRP>A�@�m','',0,'?'),('Jt�%��F;�3\rIB��','wp-content/plugins/wordfence/css/wf-roboto-font.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/wf-roboto-font.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]���O�uݵ�','�+�hJ~�ʆ��*��a*���Gb67�\r�:�','',0,'?'),('Ju箕���R(}H ','wp-content/plugins/advanced-custom-fields-pro/pro/admin/post-types/admin-ui-options-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/post-types/admin-ui-options-page.php',0,'k�LM�\"������','k�LM�\"������','�:h����k���}) �͔y��ZI^� $?','',0,'?'),('J{�ֹZi^ùx�I','wp-admin/media-new.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/media-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','낥Ұ��ۨݔeN�','��x�E)O�8�y\ntޖU�_Az}�[���u��','',0,'?'),('J�*(�f�.w�iL�','wp-content/plugins/gravityforms/includes/addon/js/gaddon_feedorder.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/gaddon_feedorder.min.js',0,'1��@��F�=O����','1��@��F�=O����','NO�(X�7����M`�\"~�OZ���\Z��N�)ǀK�','',0,'?'),('J��#Х!)\nS?���','wp-content/themes/mint/node_modules/bower/lib/commands/home.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/home.js',0,'��bVn���O�1��','��bVn���O�1��','^�.�i6N�O�V�?q��L��%+ŁQˠI5���','',0,'?'),('J�裑�@���o��XO','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/min.js',0,'���cd���v�m��p','���cd���v�m��p','� a�c�t�:OƲ�Y�Ď�>q6�Y�,3WQ','',0,'?'),('J�.�FG��Z�7cؕ','wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\')zW#��C�K!','졪\"z>/��W˪��ص -��rڵvM�o�!','',0,'?'),('J����e��R�6պe','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Escaper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Escaper.php',0,'�\0��n�h$�U�ZL(','�\0��n�h$�U�ZL(','S�?&��7/�߷i�2H��%���Φ','',0,'?'),('J�ܲ���e���[�H','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen01.92f42734050f856c83d6.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen01.92f42734050f856c83d6.min.js',0,'�q�M�g\'vMZF*W','�q�M�g\'vMZF*W','�8���e��*����u�}���iqT\0��h','',0,'?'),('J� �i�|�����','wp-content/plugins/advanced-custom-fields-pro/includes/locations/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('J��֓/n������','wp-content/plugins/wp-reviews-plugin-for-google/static/css/admin-widget.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/css/admin-widget.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����i��h-�~��','h���\'�9�֭���\'�&��\Z�S[\"V��','',0,'?'),('J�Q�\nh�h�Y1m�k�','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/crafting-the-perfect-office-lighting-plan/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/crafting-the-perfect-office-lighting-plan/index.html',0,'>bQ��r}\\��n�U�\n','>bQ��r}\\��n�U�\n','�_��4z\\5^�1n���B��l\\�0����(�s�','',0,'?'),('J���;<��C{߫��N�','wp-includes/blocks/spacer/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/spacer/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&P�G>�u����Y��7','s<��f7���\'��7$��`~H�\r|J�@','',0,'?'),('J��mz��-�ٰ3)H&','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/logger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/logger.js',0,'u3��wk�I��k]�','u3��wk�I��k]�','@����<����j��|��4��}�R�=F�~g�7','',0,'?'),('J���n�[��U��<','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/finding-the-right-electrician-in-christchurch-for-your-electrical-needs/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/finding-the-right-electrician-in-christchurch-for-your-electrical-needs/index.html',0,'\0BQ���o\'�u<9_','\0BQ���o\'�u<9_','�TMԷ�9�|k���P5��ǕE�1�8p˴�Q','',0,'?'),('J����Ҧ�XI1�aZ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/wrap.js',0,'A1�0$ˡ��\ZV','A1�0$ˡ��\ZV','���t�2�������R����m�S����\'','',0,'?'),('J�gh?qŕ�ݯ �~','wp-content/themes/mint/node_modules/bower/lib/node_modules/deep-extend/lib/deep-extend.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/deep-extend/lib/deep-extend.js',0,'s9��}���\r�u','s9��}���\r�u','f�\ZZ�]\Z��\\�IH�2e~ߕ�j��$�\'��','',0,'?'),('J��*���B�/_L�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/doLimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/doLimit.js',0,'#\\).Xg��h<��5�P','#\\).Xg��h<��5�P','܍��\Zw�\r:���9�؝�D���L�$�vz��','',0,'?'),('J�E�E���>�2v��K','wp-content/plugins/wordpress-seo/lib/model.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/lib/model.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��ulk#��Q���','��ƝÍ� #o�.rr?��s�h���O','',0,'?'),('J�j(\Z�3����#�\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/crop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/crop.js',0,')�5t�D߰�����u8',')�5t�D߰�����u8','Kx�;�xc}�`��3��Y��n����Q<\'�','',0,'?'),('Jӻ}YAHto��S0pE','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/bindKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/bindKey.js',0,'m�V~�\0��O�Jox��g','m�V~�\0��O�Jox��g','8�_K���yW1�Uҟ�}��`o��.����','',0,'?'),('Jլ4��\r�n���','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�\\c7�y�x�гl','�~��qV����*\'�1�����]3�^�����m','',0,'?'),('J\"d`l+]����','wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/phantom-polyfill.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/phantom-polyfill.js',0,'ِ���k���.hl�','ِ���k���.hl�','� _��ن����O�f.���z��Y�����&','',0,'?'),('J��ƲŔ���(��E','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����;�b\r�5E���','61��E�)\ri������J��K/�@̋e*','',0,'?'),('J�,�.[����D���t�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/weekOfTheYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/weekOfTheYear.js',0,'�E�$�\\ro���','�E�$�\\ro���','��lj)>0\r� �;mT���ҥ�Հ�\nU�','',0,'?'),('J�- �$�Ǖk������','wp-content/themes/mint/node_modules/bower/lib/commands/register.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/register.js',0,'k\r�9�J����R�U0�','k\r�9�J����R�U0�','i��Gl����,���j�]�_����^�','',0,'?'),('J�R��^[TӁ�k�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Container/Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Container/Container.php',0,'�>CQ�!�d��+cg�k','�>CQ�!�d��+cg�k','��\0��� z�0�E����(ԗ��rO��c-#��','',0,'?'),('Jߛ�^^��� ���ͫ','wp-content/themes/mint/node_modules/bower/lib/node_modules/cliui/node_modules/wordwrap/example/meat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cliui/node_modules/wordwrap/example/meat.js',0,'mٽŔb��9�\\`m','mٽŔb��9�\\`m','�?��1��ۛ���d`�/�T��g�G���v�','',0,'?'),('J߿-� k���sf���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/zip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/zip.js',0,'�w��NzoK~�@�_W�','�w��NzoK~�@�_W�','F�g+@�s�k&��\0c/梿�*��+]3��','',0,'?'),('J��5��I>����3�','wp-content/themes/mint/node_modules/object-assign/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/object-assign/index.js',0,'N���V�.��{7����2','N���V�.��{7����2','K��n�\0���e� 2�4!D5�1=]��� 7�Ֆ','',0,'?'),('J��!�s\\���q��2','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/IcuResFileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/IcuResFileLoader.php',0,':F�b܄F� �\\��',':F�b܄F� �\\��','���&��w�]3�r�x��z3�-�v�U*���','',0,'?'),('J�ϛ���&~�:Q�6�U','wp-content/themes/mint/node_modules/array-uniq/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/array-uniq/index.js',0,'JV\\������Y�ȕ','JV\\������Y�ȕ','`�� o��^mʸ|Fc$=�S�P*��F�','',0,'?'),('J�������ۋ�t�','wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax.php',0,'�7cg����ͥ�!�Ϗ','�7cg����ͥ�!�Ϗ','\r�o�E`y��p�^�8��bs��v\"&9,','',0,'?'),('J��p�j�OVf�I��','wp-content/plugins/envira-gallery/assets/js/gallery-init.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/gallery-init.js',0,'!F�oB��Z�Z�m��','!F�oB��Z�Z�m��','gŰ������iU̫�E���,�D�2?��','',0,'?'),('J����k\'$3/q�F�a','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/concatSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/concatSeries.js',0,'s1�n�}�h\"�(5��','s1�n�}�h\"�(5��','�乢�M��#r3��> �_�-�(.��TW','',0,'?'),('J��Oh��sDؾ','wp-includes/js/zxcvbn.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/zxcvbn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','| ���#PV /{�M�_','v�XI�9��n�1e�6��C�\\�.p+�\"��K�','',0,'?'),('J��vG\0a�>-��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/reduceRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/reduceRight.js',0,'�+\Z��Kh\n��F�','�+\Z��Kh\n��F�','�@�Y�K#�jh�l�>L�w�3x���zjR�','',0,'?'),('J�6���ؕ�\Z��o��','wp-content/plugins/wp-optimize/vendor/mrclay/minify/example.index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/example.index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R����S�U���q;�','��u�ݚX\"�V�\"�b�d�3�`%��d��','',0,'?'),('K\0�\nU$�, ��r:Ur','wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/test/quote.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/test/quote.js',0,'��)����v�߈�Z�','��)����v�߈�Z�','�˲���Ĉ��0��S��v�~v�⺩�','',0,'?'),('K��6��0�w�p�J�','wp-content/themes/mint/node_modules/shelljs/src/tempdir.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/tempdir.js',0,'XYYg3�*\n�3.�i','XYYg3�*\n�3.�i','���H�\'�8j�O<�X��5��:Y-�ў','',0,'?'),('K\n�-��*��~5�2','wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/rng.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/rng.js',0,'��-�# �m����lR�','��-�# �m����lR�','!z��Bz\nY�-Yz�t�\'U�k!R���','',0,'?'),('KC�vA�w�xst�','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-finite/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-finite/index.js',0,'Sg�yND�)�&��\r[','Sg�yND�)�&��\r[','Mv�7dĞ��$*o6���Dž�ʢ��ٚ��D','',0,'?'),('K���ߺ�b�','wp-content/plugins/wordfence/lib/compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>���z�x��C�}','�Nܓ�#d�t�B!\"M՞�==�@o��','',0,'?'),('K3�Se�R>�Ӈcb','wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/NoConverter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/NoConverter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S��.3|��F׆+��','���%\0��H��/�سSܫ|�OJQ�Qc','',0,'?'),('K�/��gm9Z4�TM','wp-content/plugins/wordpress-seo/src/user-meta/user-interface/cleanup-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/user-interface/cleanup-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��P��V؝N�?�]','�I�dt�!����/��H�_cvT�(��\n<','',0,'?'),('Ku�����v�do�B�','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php',0,'�l]�C0qOw�\r��`','�l]�C0qOw�\r��`','�ʪXc����]:m\"��֪���$�V0\n�6&�','',0,'?'),('K$�8�^�����;1vJ','wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/conditional_flyout.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/conditional_flyout.min.js',0,'�֤3�\\H���HS4\'','�֤3�\\H���HS4\'','��<e���} 1}���R���;�jڙ����','',0,'?'),('K0���\r��ܐcn�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Rop(�9��0�D�z�','$�$�O�V�f.i�{���\\��O��8��p3��','',0,'?'),('K1P�0�:���x���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time/convert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time/convert.js',0,':s���_I�-�!�4�',':s���_I�-�!�4�','������.�\"F��W�V-��a������_N','',0,'?'),('K6��t`�J�02�*�','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Commands/ConfigCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Commands/ConfigCommand.php',0,'n�]�TL��nJs[���','n�]�TL��nJs[���','ƚn�&�6!lQ�+�̀⡎���X�^G$D','',0,'?'),('K<��{#p�\'�����4�','wp-content/themes/mint/node_modules/load-json-file/node_modules/graceful-fs/fs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/load-json-file/node_modules/graceful-fs/fs.js',0,'�46�A��K��=','�46�A��K��=','@��H�{*�J��Jh-\'=��a��?#w�_%\0$','',0,'?'),('K>�^[�P�F�1�h:','wp-includes/blocks/social-link.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#��\'��r���l�','eF+)g��MP�y*�+���d��[���,���~�','',0,'?'),('K>�;�-�.�\'���','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Result/Success.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Result/Success.php',0,'�M���V��@�H���','�M���V��@�H���','�p��c��8Vˇ�*�&T\ZB��Vp�','',0,'?'),('KE\'��2m���M','wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/node_modules/deep-extend/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/node_modules/deep-extend/index.js',0,'��<1~�U��Z��\n�\\�','��<1~�U��Z��\n�\\�','/55\rHB�Si�a��o�3gw=ێ�%kUz�A�','',0,'?'),('KJ��@��L!�4@\\Xf','wp-content/themes/mint/node_modules/exit/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/exit/Gruntfile.js',0,'�̫�߯���@4�]','�̫�߯���@4�]','o�w�yf�>a�\Z%l��\"G�.yu?\Z1��\Z}','',0,'?'),('KJ�bd���2���&�','wp-content/plugins/wp-reviews-plugin-for-google/static/img/help-where-is-id.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/help-where-is-id.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��FB2A��Ĕ}X�','EkrEr��d��!Aw5[P�N�v��\0�7�m7H��7','',0,'?'),('KKOf�Sd�iB0Ov��','wp-content/plugins/wordfence/views/scanner/scanner-status.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/scanner-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2����v���t�','��9���`N�>ɞ�9:��A���\0��L����','',0,'?'),('KL�ʡr7\'Pݥ,8:�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>K���!`sѓs�(�%�','\nk|��lD��sg�gn�#�K�e[���O�','',0,'?'),('KL��X�\r�ѴM��','wp-includes/SimplePie/src/Misc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Iĵr�#����e','Y\'�)�S�=���_�#�b���-3~����','',0,'?'),('KN�5V�1i�II��{��','wp-content/plugins/wp-optimize/templates/modal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/modal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y��>-`g^����5�','��u�b�zI\Z�fK���.�\rtO�A#�/��W�','',0,'?'),('KShꦢyJvk��?7','wp-content/themes/mint/assets/vendor/jquery/src/ajax/xhr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/ajax/xhr.js',0,'f@��Ϗ�,�I����','f@��Ϗ�,�I����','#z�-�>��+����3�z�`��_�P����','',0,'?'),('KZ��Ѽ��˷��m','wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G��1�|jang��','�f��\r�p�|�l�j���\"����P@�','',0,'?'),('KdTb���VͲ���','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/lib/caller.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/lib/caller.js',0,'D��e�^��-����>�','D��e�^��-����>�','������\'������Z*��HA�u�ʇ:w��','',0,'?'),('Kjpީ��]��63rN','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchHome.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchHome.php',0,'�g�m�Iӯ �Y`hS`','�g�m�Iӯ �Y`hS`','���.<� �ɓ�Pg ��6��}��]��͟','',0,'?'),('Kt�}0��Ҫy_\Z�/<','wp-content/themes/mint/node_modules/less/test/rhino/test-header.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/rhino/test-header.js',0,'6�*��;l�&�\n���','6�*��;l�&�\n���','�P\'�/�u��{��^t-�L3(���[��h��','',0,'?'),('Kv9�r�Y�W~��]��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/findIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/findIndex.js',0,'LY���dU�{���+�+','LY���dU�{���+�+','�}��չn\0��k���C�7�`_#%J��p�r�','',0,'?'),('K�nҋD&sR�WU(�','wp-admin/css/farbtastic.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/farbtastic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�^�:�G�(���:k\n','4��7V�f�� �/��������D��W3p','',0,'?'),('K�͒��J��+ƺ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/find.js',0,'�:^HZ��d��xx��','�:^HZ��d��xx��','�o�s&�����I�u�n,xN缉�K���','',0,'?'),('K���d_�B�X-� ?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-diff/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-diff/index.js',0,'�WL\n�]kۺ�7Q','�WL\n�]kۺ�7Q','��M�(j�Y��QEM��|��t�g��Ҵ','',0,'?'),('K���\'\n�3)x�\Z��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Container/ContextualBindingBuilder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Container/ContextualBindingBuilder.php',0,'�W�N���S�4�','�W�N���S�4�','\n�nE�c�j�@p3�����B� �,P�nTr�%','',0,'?'),('K��a��@QaW�զ�1Y','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_charset.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_charset.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{Ҝ�T؝\Z�M�|5��','ȯ�e���S������|�kh�N�l� 0','',0,'?'),('K�T�X�k��_�#Ǘn�','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/platform_check.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/platform_check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�+-����rc-','Y��Y�7����������JP7̰��3�','',0,'?'),('K�I���`歐�:J���','wp-content/plugins/wordpress-seo/images/insights.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/insights.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�ձ��0N�o�*>�J','\"R{0l��i,7&��5Pp�a�W�,�)VH+�','',0,'?'),('K�i��O��\n?��+&�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/toUInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/toUInt.js',0,'�W���_�O:JT','�W���_�O:JT','�R�j�x�q��m�N�3��\'B3m�ahb��','',0,'?'),('K���R wA���e','wp-includes/blocks/latest-posts/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-posts/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P��i��)���F�','UK<��v*�#���)�#���7H���>��鼛','',0,'?'),('K�c��#2s�/(�\"�','wp-includes/widgets/class-wp-widget-pages.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��r��L�ZT�tϛ�R','�*��\"#倮��U�8���c��*[��j\'','',0,'?'),('K��<�H<7�E�,l��','wp-content/plugins/wordfence/views/waf/options-group-brute-force.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/options-group-brute-force.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��j�g_G~���y1�','.Ґ�����%�\\�z\"|�d�K�����*�','',0,'?'),('K����\r\\Uz��\Z:\'','wp-includes/sodium_compat/namespaced/Core/ChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�*��F谯��<��l','�®�R�l�U�����wz�ank��G�t�3�','',0,'?'),('K�op���Nd�_��1','wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\��e�Q�z~F��','\n7\r��� �� ����ĺ\'�c5i+���H�','',0,'?'),('K��]C��l7:�D\0','wp-admin/js/widgets/media-audio-widget.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/media-audio-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P IM�;p8vn��[�S','����9j��lxB�eH:�y�%}�c TP�_�','',0,'?'),('K���*�y�s�F`��|','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/lib/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/lib/browser.js',0,'�4P�u�3�em �V�','�4P�u�3�em �V�','rAc�.� *���ʬ.�(o(�\rf���l12����','',0,'?'),('K�Lx<C���H��e\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�EN�Ăۛ(\n�n','����Ѭ}^�EF����>��ڂB��','',0,'?'),('K��%�w�1�\"7��','wp-content/themes/mint/node_modules/tough-cookie/lib/permuteDomain.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tough-cookie/lib/permuteDomain.js',0,'�j�\Zθ���o�#�aR','�j�\Zθ���o�#�aR','k�śY!ڍ��(E�E^―�.���㟐n','',0,'?'),('K�=g9�؏��:�ϖH','wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/temp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/temp.js',0,'~#>xz�����O��g ','~#>xz�����O��g ','}}AK�����!���*ϕp�3�%���X�','',0,'?'),('Kҟ5�{�3�e�PR�','wp-content/plugins/envira-gallery/assets/js/dist/onboarding-wizard.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/dist/onboarding-wizard.js',0,'�B�hk,X��~��Iߴ','�B�hk,X��~��Iߴ','�n�H)s4��#�Ɓ\\j�27�r���\\Z��','',0,'?'),('K�%/��z����_d�m','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesJson.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesJson.php',0,'�E��Cg\ZV�V�l��','�E��Cg\ZV�V�l��','�.]�X�9)���Q^��GQ�r��(��','',0,'?'),('K�~�ɪh�hL���0�','wp-content/themes/mint/node_modules/source-map/Makefile.dryice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/Makefile.dryice.js',0,'\'`Z��E��~\n�&ˬ�','\'`Z��E��~\n�&ˬ�',' c~��&�X$���&���jDdW4j�6{+\'\Z.','',0,'?'),('K�����$=�jb','wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php',0,'ph���f�|=�k','ph���f�|=�k','W���T��e��V�\r)�j�2ѭ6<l��D��x�','',0,'?'),('K�z�1p62�P��\\��','wp-content/themes/mint/node_modules/source-map/test/source-map/test-dog-fooding.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/test/source-map/test-dog-fooding.js',0,'.���G�\'���_K#�','.���G�\'���_K#�','y�T�0�������Z\'��L!\0\r�\"r{��,\\�','',0,'?'),('K�iE�rMe\nub=c<','wp-content/themes/mint/node_modules/less/dist/less-1.3.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.3.1.js',0,'�m�|�B`��\ZsPa�','�m�|�B`��\ZsPa�','��^���F�,��tX3^�}!@`�p��iT','',0,'?'),('K��o��2x2o','wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-complete-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/indexing-complete-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yo*!2<�OC�2�¤`2','�|��.�ԍ�g?�y��;����?���+9��s','',0,'?'),('K�-G..�y!H�L��','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-lock.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-lock.svg',0,'r�<(�-�\0�tG���','r�<(�-�\0�tG���','k�6�G�4)�MT\'�~���V�e�g�2-�s�+�$','',0,'?'),('K�@B46������*','wp-content/plugins/wordfence/css/wordfenceBox.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/wordfenceBox.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C���WY�~�H�#�]','�r����{��\ZI�5�O1���Q��Ӈ���C��','',0,'?'),('K�7b{�r�u&�M�XD','wp-includes/css/dist/block-library/editor-elements-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/editor-elements-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���c|�$\0��{�o��','$�2iQf���~�\'�:�Sr��4:�����A�>','',0,'?'),('K�r���y8B~�\'YL','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/multiply.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/multiply.js',0,'���?6&�p��ͦ���t','���?6&�p��ͦ���t','uBo܊ F�_���9R�f���f��e`','',0,'?'),('Ka�ٓ1e��pGܰ','wp-content/plugins/gravityforms/includes/form-display/config/class-gf-pagination-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-display/config/class-gf-pagination-config.php',0,'�I\0�V֑�{Y�w�N','�I\0�V֑�{Y�w�N','�/��|1�\Z��\0�~��6ۦ�֣ ���3j','',0,'?'),('K}��]{)xh�!','wp-content/themes/mint/node_modules/autoprefixer-core/lib/browsers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/browsers.js',0,'�E��t����%�','�E��t����%�','7�6��?�U�=C�=����\"�e0�ԉ��>','',0,'?'),('K����.��Ѷj��','wp-content/themes/mint/node_modules/pako/lib/zlib/constants.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/zlib/constants.js',0,'Oln��mND,�P�','Oln��mND,�P�','�\'mG&�nW��+k��)Qyupf2sG}=�E�','',0,'?'),('K�ϥ�%:�{�Rj���X','wp-content/plugins/wordpress-seo/src/generators/schema/author.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generators/schema/author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��l�8x������A\r','�׃�>4�O�l��/�09����pu�c�;�','',0,'?'),('K���4�?���Ot','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/nthArg.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/nthArg.js',0,'Ѱ]��#���8�E��','Ѱ]��#���8�E��','��`$��Æ�O�x�>)z����� �g','',0,'?'),('K� ���*�;ܼ�nc','wp-includes/blocks/calendar/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/calendar/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�ܤ�Դп ڵ�C�','+�$��v�I�\0���MMM��\\��sꩺ���','',0,'?'),('K��W�&\0\0K�\06�G�','wp-admin/js/set-post-thumbnail.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/set-post-thumbnail.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':1N�(�xl�X��\'','v9�\n{lK��~q�#�>��ߦ��� J�`~','',0,'?'),('K�K+�2� aeZ�e','wp-includes/class-walker-comment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-3�eⵇb4�V','���b4�K,�}��ţ<m� �i ��ӥu�1G','',0,'?'),('LT��8-\r����','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/everySeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/everySeries.js',0,'6QK�U�f�J`I��','6QK�U�f�J`I��','�+��h���Z��6|?6d�;��(E�','',0,'?'),('L�ʆ�R�Q��cc','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php',0,'���:�8��ٷ�I��','���:�8��ٷ�I��','��\0���x\Za���&*�U<Ƌ�]��yܻ','',0,'?'),('LԘ�ȷf�BV;�','wp-content/plugins/wordpress-seo/css/dist/alerts-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/alerts-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�C_\\���C `!,�','�5��fvť�y4�a���c��I�Vr��6���','',0,'?'),('L�w*�ҚF���T�','wp-content/plugins/wordpress-seo/src/conditionals/wincher-automatically-track-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/wincher-automatically-track-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#�$��a���H��','�QE-�R���K/��S-�!VΈf-�Ȑp�.�]','',0,'?'),('L���⽆����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invertObj.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invertObj.js',0,'��L. �;\Z�[���,','��L. �;\Z�[���,','S侘y��=�˛i���.�y<��b7$`:?�b','',0,'?'),('L�b�>�oO�j��*6','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eos�Cg.h�#�;a`��','\r��Ӄ�EQŹ�i���o�?,ԜUP�>k�4���','',0,'?'),('L���˙��okiX�I','wp-content/themes/mint/node_modules/bower/lib/node_modules/user-home/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/user-home/index.js',0,'\\ �2eO`ā�����','\\ �2eO`ā�����','�ᠩ�mia������t��`�r��N��','',0,'?'),('L��5C�Z��z�','wp-content/plugins/wordpress-seo/src/builders/primary-term-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/builders/primary-term-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݘB���\nb*�*e�Cf','G�� G�qݿ�pgK4�Pqܙ�κ�qbV�E�','',0,'?'),('L<#���\Z����}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9K���M�:�Tf�9','��;���T��O`(6��,�sk�Z���c�R��+','',0,'?'),('L#��/۰*�3���\r','wp-admin/includes/class-wp-terms-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-terms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!��i�_�s���','��~�핝D�p}�sER�&�`/��l]�!���','',0,'?'),('L(��n�9[2�C6�','wp-includes/js/zxcvbn-async.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/zxcvbn-async.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��E��\nO\\��Y�b','��\'FP�\Z�/G\n��J����\\B��\Z��IT�','',0,'?'),('L)E�3e`���Q�ց','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/Branch404.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/Branch404.php',0,'��Rh��7�~���','��Rh��7�~���','�;�\n���Q=ut�2_����m�����l!�!','',0,'?'),('L)�����\\9��CQ�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__isset.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__isset.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\r|�V�:�A�R','}uοb�\n\n\"��6 N�a�VQ��rNJ�3�+','',0,'?'),('L-��ݎ˩-̅�%s�','wp-content/themes/mint/node_modules/hooker/grunt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hooker/grunt.js',0,'�)*<G4w=�}:��n�.','�)*<G4w=�}:��n�.','�� c��=��1���=De���:�Tܪh0�','',0,'?'),('L4�1�[4��\\\na��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/modArgs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/modArgs.js',0,'�4��H����d���','�4��H����d���','_,�f��`�&$S�˚ ���J�T�0F�t�i','',0,'?'),('L9P�X{���{�E���','wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-redirect-nopremium.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-redirect-nopremium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�J;������L�g{','pP�(D� �ȝ�GXQ\r�k�U�k����U�','',0,'?'),('L:/#\"ѯfpڷ�åY','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-c.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-c.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2p�f��{ɡ����','.��P�A��\Z|�(W�@]��q���nAm�p�','',0,'?'),('L:bg�\\�=����+','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ClosingDeclarationCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ClosingDeclarationCommentSniff.php',0,'KYT�V�9}7��','KYT�V�9}7��','�b�Θe>W��!W� �*��=�TGJ\n+?�','',0,'?'),('L:��g�HA\\Y�4�6','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/create.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/create.js',0,'����TW�#�T�','����TW�#�T�','���)LَS�V�\n\'��^�8g7K�H&}9WW�\"\0','',0,'?'),('LH)kQ{T∾�E[4�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/replace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/replace.js',0,'igB�����z��f�','igB�����z��f�','k\r�\'��{a��P`�Bu�\'l9� [��k','',0,'?'),('LIM��b�s���ơ�ט','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isInteger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isInteger.js',0,'�k�ti51G�kpb�=�h','�k�ti51G�kpb�=�h','�2���z_d@||X��B���+�3��^�Pp','',0,'?'),('LJt%�]�� �*�O','wp-includes/SimplePie/library/SimplePie/Cache/MySQL.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Cache/MySQL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����a�Vz�|�2�','��q!��/oZ�T�v�n�y�t��כֿ*�}','',0,'?'),('LJ�Ev��D�ha�OIȞ','wp-includes/Requests/src/Ipv6.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Ipv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��n�j���r','j�E����-�/�\"����/���\0�U��\Z5\\�','',0,'?'),('LL�k��:��E�iz{H�','wp-content/themes/mint/node_modules/less/lib/less/tree/keyword.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/keyword.js',0,'`3���Ma����z��U','`3���Ma����z��U','�Inbҗ#A&�`�ՙ%����L��~','',0,'?'),('LN�z��wI�@���','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/line_count.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/line_count.js',0,'�D:G/+RS���{e�','�D:G/+RS���{e�','?�m�ˬT)���J\n_͐աT \n�t\"k�����','',0,'?'),('LR7Q��ToG|�{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\\��F\r�v�C�','�X�74���u\rt{��Mlׄ��qT}���','',0,'?'),('L^��L�Y�_��c<?@S','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/line_count_wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/line_count_wrap.js',0,'\r�L�V�-�\"\04��>�P','\r�L�V�-�\"\04��>�P','�-�?��G\n�OEC[`\"�D�18h�Z��/d','',0,'?'),('Lap���8g�V�,��g�','wp-includes/js/dist/vendor/react-dom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/react-dom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��P��2mH݈���','�\0>h�*�>��8K���h�/�ҖZSR�U[','',0,'?'),('Ld���Ӏ�ٟs̡','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/multilingual.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/multilingual.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N*�$�tGA�M�ۙ','9�Gm�)���#ށ��2!Z��w> Yc���','',0,'?'),('Le��vI4��MP�5q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/require.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/require.js',0,'/X�H�N5;��~','/X�H�N5;��~','R�s�v\r^�\'\'�t@�R�Z� |��|\n� ','',0,'?'),('Lf��uj���=��','wp-content/plugins/envira-gallery/assets/css/images/icons/misc.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/misc.svg',0,'~<�TOŻ�nF05���','~<�TOŻ�nF05���','�v�J�Rߥ�/oʍ�=�Ư�Ģ >R����','',0,'?'),('Lh��fq�\rnh�','wp-content/plugins/envira-gallery/assets/js/min/clipboard-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/clipboard-min.js',0,'�C�PX�G\Z.�{6��','�C�PX�G\Z.�{6��','&v�l�W��u��� ϫ�p��f3�D:�ﱸ� ','',0,'?'),('Lp��\n�0qC�>J�`�','wp-content/themes/mint/node_modules/readable-stream/transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/readable-stream/transform.js',0,'�A�+Q�{}��3�','�A�+Q�{}��3�','PWF�fz ���^�B\\v\r��8�2��R�?��k','',0,'?'),('LsЇś\n�c}>�K��','wp-includes/css/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�=���\\\'.��','b\n���T/�j��G �I�@עh���y&��|','',0,'?'),('Lt�q=G�A��9���k','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createRecurry.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createRecurry.js',0,'Mo�{myt8�S�BG','Mo�{myt8�S�BG','F6͆vJq�PEZ}��E�L�^��O&үE�}�','',0,'?'),('Lv�q�;BQ�=-2b�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/rangeStep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/rangeStep.js',0,'~~l7��@j�!�4','~~l7��@j�!�4','�ᦁ4Ym�>����2�����F`\r��O��','',0,'?'),('Lz����Z��#�<','wp-includes/class-wp-locale-switcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-locale-switcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v(��F6w<L-ci��','�/�aFK&)9���cq��)b�_:�@Փ���','',0,'?'),('LzEk�R�BU�)Z\n�b','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBag.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r��_U��T��F(�','��h��)�xD�40�l]��M��tL�%�:\r�r','',0,'?'),('L���V�4RC�R7� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/pify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/pify/index.js',0,'ӪenȽ���d�g','ӪenȽ���d�g','\n�\Z10��_����<�<rfi��Y�u9','',0,'?'),('L�[�ɞ�c=�vĔ','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/schema/default.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/schema/default.js',0,'+}��A��Jg۸�9�','+}��A��Jg۸�9�','v�Ton�gO�d��UG���0LO\n��~� �<c-','',0,'?'),('L�ΎSd%�}��n�/','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',0,'�#S�]�r���\Z�H�','�#S�]�r���\Z�H�','lG��X������b[g*�}� ��=� �t��','',0,'?'),('L����-����\n ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/amdefine/amdefine.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/amdefine/amdefine.js',0,'��ģ�3wm�5fA','��ģ�3wm�5fA','`=�_IV�סtC!݀g�d�S��l��u���w','',0,'?'),('L��ջ˻vMlW��d�','wp-includes/blocks/pullquote/theme.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hR�<UG���t�','A�oi^����<h+F�y�Qԡ�No��x]L4�O','',0,'?'),('L���c2�4D���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/replace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/replace.js',0,'�i�6<h_M�\"��E�F�','�i�6<h_M�\"��E�F�','�CgfS����N\r\Z��23g���tG����B','',0,'?'),('L�[��)ڢ��z�.','wp-content/plugins/wordpress-seo/js/dist/languages/ca.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/ca.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5@�dl�L7���۸�v','�V��^���y���_\Z�(|�&�df����','',0,'?'),('L���,2�(�\'���\\�','wp-content/plugins/wp-migrate-db-pro/class/Common/Addon/AddonAbstract.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Addon/AddonAbstract.php',0,'�ƹ#ʳQ�Y� �H','�ƹ#ʳQ�Y� �H','�;��R�����I� �(\r2�K�v��۩)��d','',0,'?'),('L��e�t\"pc( �e�','wp-includes/wp-db.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/wp-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q�a�f�q@.�R��o','�t\\K�(ɮ�X�\'���[��&��xl���','',0,'?'),('L����E��g���F9','wp-includes/blocks/post-featured-image/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-featured-image/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']���l�ix�v:���','��M��\"�)N�X�$�%�WN�\"�U[X��(��Zq','',0,'?'),('Lƾ>�%T\\n�v��\"l','wp-includes/js/dist/script-modules/block-library/query/view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/block-library/query/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4��\n5�~K��\'|�','\r���C��줢(�lܶm݈<텽����Z���','',0,'?'),('L�I��D�@A�����S\"','wp-content/themes/twentytwentyfive/patterns/hero-book.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/hero-book.php',0,',P�KN͜1�/���',',P�KN͜1�/���','�C^;�����kχw�dTiĵl�+ك�q�v','',0,'?'),('Lթ�-�3Ɇ��!��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/create.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/create.js',0,',03܊�Q��E��\\',',03܊�Q��E��\\','-��d��7�V��G������� *.��GtQ\0٨','',0,'?'),('L�\"��v�T�̱L�','wp-includes/blocks/comments-pagination-next/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination-next/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��̅�az�aC�?��','����[�C���y9`�\'�#F/J0�C��','',0,'?'),('L����\\�9�ָwP�','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php',0,'�0\n�9��(̅�sG�','�0\n�9��(̅�sG�','���5\\�c�O�q���|�\r���l����U��','',0,'?'),('L�\r�%��{��','wp-includes/blocks/social-link/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z7yE���ycOx','�@RE�\Z�P�U��Ъ�5�؛��C��D9]�','',0,'?'),('L�&T��Zz�T�','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/ev-charging-safety-tips-for-kiwi-homes/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/ev-charging-safety-tips-for-kiwi-homes/index.html',0,'I�d�M�8���M�b','I�d�M�8���M�b','��^�,�+���M���r�j�%�rI�X�N��','',0,'?'),('L�\r��Ȧ:��n�h\'','wp-content/plugins/akismet/_inc/akismet.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/_inc/akismet.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Jk�X��(�4H����','��;�~mQv2 �Yk���^�/�\' L��@�.n���','',0,'?'),('L�̆S�x��J^S�9','wp-content/plugins/advanced-custom-fields-pro/assets/images/acf-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/acf-logo.svg',0,'��H�Zn�.�\r��','��H�Zn�.�\r��','ͱ�\0���u�9�-k؝�r�3k�q���Z�ɨ','',0,'?'),('L�RzH;�{=$5�','wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-runner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-runner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�{��6f���','r�������x��rN�d�;7�4�=H�Ӯ�','',0,'?'),('L+q�V�;�h��Y�','wp-includes/fonts/dashicons.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/fonts/dashicons.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M���N:��\'�ʤ��ȹ','J��!�����XLl`�e��O��s�H����','',0,'?'),('L�>t���N�����','wp-admin/css/colors/blue/colors.scss','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/blue/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����؝��= |\'T','�C���M���y�D��<�O\r��&��(�','',0,'?'),('L�֞+P�C��)~u�_','wp-content/plugins/wordpress-seo/admin/views/partial-notifications-errors.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/partial-notifications-errors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@e(���Z�C8|�+/','^9(�K\r]�yڅ��8O��W%���$g6q�h]','',0,'?'),('L�,^\Z�2�w�','wp-content/plugins/wordpress-seo/src/helpers/attachment-cleanup-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/attachment-cleanup-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'��wٵ�t�>@','H�O3��aB�_��Pjo#����\n�b���u','',0,'?'),('L��Gi��g���i','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseFind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseFind.js',0,'���_y���m�ƴ!�','���_y���m�ƴ!�','FnK��c�iȳ�}�?�\0�m�����`}G��','',0,'?'),('L��)��a$�D-�Ӯ�J','wp-includes/js/tinymce/plugins/wplink/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���R��p�Z:���=','b�ڢ\n����S@7/6����,a�sh�','',0,'?'),('L�1H�D#�ǭh`:��','wp-content/themes/twentytwentyfive/patterns/banner-intro-image.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/banner-intro-image.php',0,'���q�QYQ\'p�ҹ؆','���q�QYQ\'p�ҹ؆','-�1|��;*7e�?3���b������b*�','',0,'?'),('M\0�����S(�p��0�','wp-content/themes/mint/node_modules/shelljs/src/exec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/exec.js',0,'�p��@�N���|�ի�','�p��@�N���|�ի�','��9܂�k�=�\"~�R\"D�|x��BG��O5[�','',0,'?'),('M��lߛ�.�7C����','wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-indent/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-indent/cli.js',0,'�x��Vi�m�U��C�A','�x��Vi�m�U��C�A','\\M���E|���A�����ڂ5{*�����','',0,'?'),('M\r}��0���P�J`�J�','wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-bucket.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/analytics/domain/to-be-cleaned-indexable-bucket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�� �5���XR�)�^I','ԍ�9��Ꚏ�\"\0������=#����:','',0,'?'),('MS� ����ţ`t�','wp-content/plugins/wp-optimize/images/features/auto-optimize.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/auto-optimize.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+��>nq����a9�','�M���^I� ҽK |�e�\"O�0�\Z�,洄�','',0,'?'),('M$�R��Џ�� a','wp-content/themes/mint/node_modules/bower/lib/node_modules/extend/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/extend/index.js',0,'Ph�O��Y2{Q�s*','Ph�O��Y2{Q�s*','r\Z��i1��\ZK~Y�Z�C\0G�| ��њl','',0,'?'),('M]���}�w��-�!�','wp-content/plugins/wordpress-seo/src/generators/schema/website.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generators/schema/website.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5V �\r�/!�A���','��3��q�mA��{�J�]WXn���k\"F�','',0,'?'),('Mx1NjTm�R_2o','wp-content/plugins/wordfence/views/dashboard/global-status.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/dashboard/global-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˫\'�m�`�0>�+#��','���������p������Pv?Z�F��QQcj','',0,'?'),('MR�NE�/����ҤV�','wp-includes/SimplePie/library/SimplePie/Misc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ϋ���<}9���','ygJ߅��@YD�G1���S��,�1��q�','',0,'?'),('M!Y�:����^���\0k','wp-content/themes/mint/node_modules/trim-newlines/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/trim-newlines/index.js',0,'f�l*�#�Ć4m','f�l*�#�Ć4m','��Ң!$�\n`��!\\��:I�Wn�ol�%u:k','',0,'?'),('M!�\ZaH\\y������','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Filesystem/Cloud.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Filesystem/Cloud.php',0,'t�. �s�@�zp��m','t�. �s�@�zp��m','dΰp����C���?+\0r�.G���\"=E�Os','',0,'?'),('M#$�7�1-��� ����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/toNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/toNumber.js',0,'�f\r�V�������','�f\r�V�������','W֏�����c�&S#eDB/��=Y�7��Ƶ��','',0,'?'),('M$-9c��d�s���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/curry.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/curry.js',0,'cL\0��\'�\Z�\r��\'��','cL\0��\'�\Z�\r��\'��','p�\\�ȫ�`��x*��|��`�\"B# V-�+�','',0,'?'),('M0E�`�ʐ�C����g','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/384.d12a10c3ebbb.chunk.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/384.d12a10c3ebbb.chunk.js',0,'%�g�\nc��OT�kN','%�g�\nc��OT�kN','�o�Z�O-���ESۼ7�X���\"�;*���','',0,'?'),('M1��/�n��̖Q��','wp-includes/css/dist/components/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/components/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:���5���;��','��)P��F��/F(��/Xg�-�}@�:��o','',0,'?'),('M2:*�0v��M-~�^','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sv_SE.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sv_SE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�~=�>���M�)�','\n�T�h���_���*z��L=ã��x��u#�L�','',0,'?'),('M8:�;�P��-���','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/ResolverDispatcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Resolver/ResolverDispatcher.php',0,'�`���Ǔ�0���','�`���Ǔ�0���','�e33�J;jTk�{8h���Xt�Po~�Z�u�1','',0,'?'),('M?,5�*�����K*�f','wp-admin/js/post.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y\'�l������U2x','��~�Y��K{dB\\0!߈���4M�X��C�]','',0,'?'),('MDv��$���!h\'�','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php',0,'�0%�2�Yqs>���L','�0%�2�Yqs>���L','�rV+\"AAaYϭ/p�tO�T��e��m�a�-E8','',0,'?'),('MW� ���:��ي','wp-admin/images/align-none.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/align-none.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�eqd2���u����\r','�g(�1�X�{� [].���T����A��','',0,'?'),('MW��Q��;ci~8�','wp-content/plugins/wordpress-seo/admin/class-yoast-input-validation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-input-validation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�aф@9b��<O\0,',' �)�ƝW�:䳜��C�9��1}��S��H','',0,'?'),('MY��G��\\tX����/','wp-includes/customize/class-wp-customize-color-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&��S?��|��G','h �3|:Q9z���4Y1[�{^� $;�#�q��','',0,'?'),('M^��\0^̓�c4]�','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/commands.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h2����Ldx\'�;|','dC�����!��T�F�3x�������Q;o','',0,'?'),('Ma���fa.�m��EK�I','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/InvalidParameterException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/InvalidParameterException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�@-��C3\\�\Z]','�}2#���F�\'��?9��.�mϯ�ah','',0,'?'),('Mi�A���*i�L�l','wp-content/plugins/advanced-custom-fields-pro/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('Ml1����֊\'ȭ\\�[','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/link-reader.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/link-reader.js',0,'�b��vD71kN��T>�','�b��vD71kN��T>�','~�̤���ռ?��0_#�rImR�X��g�','',0,'?'),('MmQ��%�9k1�!','wp-content/plugins/wordpress-seo/src/surfaces/helpers-surface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/surfaces/helpers-surface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v?��~@�=��}��','\"�L�>;WH��յ%�Śe�\"$�䨞WD\\C7�','',0,'?'),('MqBQ�L��<��A��4','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/next.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/next.js',0,'{^�\Zm(ݫ��\n��','{^�\Zm(ݫ��\n��','�T�vx��?�F�Mv�E�s�TUS�/�z��','',0,'?'),('Mr&�7�K�Bi�H]0\r#','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/now.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/now.js',0,'om�:A/�D�\'s>��n','om�:A/�D�\'s>��n','����j������/��b�#n��e�','',0,'?'),('Mv�U�%Lҵ�����m','wp-includes/blocks/navigation/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G���$r�RBQ<�','�Q���?0�I���n�pѶ����m','',0,'?'),('My�c�u�G&+\\��Ī','wp-content/plugins/gravityforms/includes/editor-button/config/class-gf-editor-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/editor-button/config/class-gf-editor-config.php',0,'�:��\\�::&�q*','�:��\\�::&�q*','�K���{a H���R��Y���⯜&�+q��','',0,'?'),('M|A�B��}rҝ=h','wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/FileProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/FileProcessor.php',0,'ş=�V�.�5�1�','ş=�V�.�5�1�','�[�Ģ^9&j�~;�|���a\r�q e��\r','',0,'?'),('M��Y�y���Gr���\'�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Logger/LegacyHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Logger/LegacyHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;z����t�yg�','�H�Y�1�1}�>8�^���M��N�gW��','',0,'?'),('M���,���6\'v�L�&','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/throttle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/throttle.js',0,'�ɵ���hor�_>f얷','�ɵ���hor�_>f얷','�����N�n��`���MNSJ$�͇d�:�-�I','',0,'?'),('M�%�*M�9�븞�','wp-includes/Requests/src/Exception/Http/Status412.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status412.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ܖ[8?^F��YT�','�r�����rm팰\'��J�Wx�ʅC��R\Ze','',0,'?'),('M�p�&`���#E���','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/initialParams.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/initialParams.js',0,'XM������A:��I�','XM������A:��I�','Xs�I�gή<���%���qg��bs×כ,F�','',0,'?'),('M��9\Zg�������%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseReduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseReduce.js',0,'%��3\nd��W}�u�V','%��3\nd��W}�u�V','1Ʈ��í!�����2�?��z=������t4','',0,'?'),('M�Yd� �:�Hb�:V�W','wp-content/themes/mint/node_modules/bower/lib/node_modules/tough-cookie/lib/cookie.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tough-cookie/lib/cookie.js',0,'��4��9�>u��6','��4��9�>u��6','2<��{/�x���\"��Ko��av�f��pz�','',0,'?'),('M�>ժ�|>5�E݅$�','wp-content/plugins/wordpress-seo/packages/js/images/wincher-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/wincher-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\\�n�z��H�[����','<_������l�y����bc�\Z��?`x��','',0,'?'),('M�U+�m#D��\'Kw�','wp-content/plugins/envira-gallery/src/Functions/utility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/utility.php',0,'�+�S6K�ߚ���^�','�+�S6K�ߚ���^�','�6��鞈?�P�������\'`�8ST�c�=���','',0,'?'),('M�@6O�u�Pfa���','wp-content/themes/mint/node_modules/bower/lib/node_modules/ansi-styles/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ansi-styles/index.js',0,',Ƶ<�e�/�E�g\0�',',Ƶ<�e�/�E�g\0�','����N��{�}�Zv�\'o{Z�M(\Z\r��),','',0,'?'),('M��Pz�Q�Ap�\"�M+','wp-includes/blocks/read-more/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/read-more/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����+�`���A��0','O;�/l:��kW��P�(�Q.����?q��)','',0,'?'),('M��M�mQ����M�','wp-content/plugins/wp-reviews-plugin-for-google/include/step-list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/include/step-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+_d���\"9\"���f�','R�������Nt�����dp�In%�j�!�\0','',0,'?'),('M�N2���\':���n','wp-content/themes/mint/node_modules/chalk/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/chalk/index.js',0,'f9���\'N��X+��,','f9���\'N��X+��,','�\0@_�D��J?!�Pn�H��::���x�u۔','',0,'?'),('M�D�.�gU��~�/��','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php',0,'}����\nީM�E@�A.','}����\nީM�E@�A.','\'�so�~��>����� �� �]�,@��g_Y��','',0,'?'),('MР\0�A���9Q�+��','wp-includes/js/admin-bar.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/admin-bar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����y()��1 XE�',';9��%�#A����Wis�AA\0!�e�4?��','',0,'?'),('M��ii�9N9�b�:�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Writer/TranslationWriterInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Writer/TranslationWriterInterface.php',0,'�JlY����O��?0�n','�JlY����O��?0�n','\\D{���A+�U7*��6�(�g��A,�%��4','',0,'?'),('M�;C�����8Yyﲏ','wp-includes/js/twemoji.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/twemoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RC���m��T.�\r�-','Q-��kA�m��C�YX�4��&T4�\'G���Wt','',0,'?'),('M�2|O������','wp-content/plugins/advanced-custom-fields-pro/lang/acf-fa_AF.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-fa_AF.l10n.php',0,'��<t��h�����N','��<t��h�����N','=��\"=#8 �\n���,\\�V7�N���!��0','',0,'?'),('M��RB�e���d���','wp-content/plugins/wp-optimize/images/features/enhanced-robustness.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/enhanced-robustness.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3��~�M��si��G','���%�\'�rx\Z5xec玎ҹq+��/\n�M\n�','',0,'?'),('M�e.�?�.�L���k9','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/UseStatementParser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/UseStatementParser.php',0,'c?��Y2�J�@�Ǎ1@g','c?��Y2�J�@�Ǎ1@g','�gS��J6�Ϛ^ؙxe��hJ�̽$����f�<','',0,'?'),('M���I�M��rD��-','wp-includes/post-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���yö��/�?�DO','8G|TI�w��K �w���$����&-�Cպ��','',0,'?'),('M�q1U�I�s*Cܚ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/each.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/each.js',0,'l2V�[u����A���','l2V�[u����A���','���R�<�5��_��bƪu�]�Ll��v9','',0,'?'),('N\0�1C\'.q��\0B|�^[','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js',0,'����Ý�┲�','����Ý�┲�','\'h6:ܩ�]3�xy�V�+2w�*:P�y\"��r','',0,'?'),('N���F��@j��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/min.js',0,'q�Ds!�&���\'�W','q�Ds!�&���\'�W','��n�2ȴBim��WhgBz9���\rJs��Zڐ�','',0,'?'),('N���*�\'{ط��-�','wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-field-group.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-field-group.min.js',0,'�E *M%���QY#�o','�E *M%���QY#�o','G}��������Ż\Z�[�9)�6\\Q�\0�x�Ű','',0,'?'),('N\n����s���}��','wp-content/plugins/wordpress-seo/src/integrations/uninstall-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/uninstall-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r���R��\Z�mG�\'','�~�nr<R�3�>�=`������W��','',0,'?'),('N��6j�^z6>�U�%','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/IcuDatFileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/IcuDatFileLoader.php',0,'�`w�?�g�\n��lW','�`w�?�g�\n��lW','@/����`\n�_ag�&$���>�C�M��','',0,'?'),('N!�����:�`�% +','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/IndentationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/IndentationSniff.php',0,'f���q��;3��̉ ','f���q��;3��̉ ','Z�(�V&n�X�O�E�~��41�g��E�?L[','',0,'?'),('N!���,/� ��Y�','wp-content/plugins/wordpress-seo/src/services/health-check/report-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/report-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9ך ğ� ���G','� q퍚�N¬ԛ2���4�>qf>���P�K','',0,'?'),('N\"5v�67�⺘l���','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/base.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/base.js',0,'���T��3�K*��','���T��3�K*��','�:J��$~�w��/��\\_b��W��jW/�^z^','',0,'?'),('N#���z�OC','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/every.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/every.js',0,'\\��I�K�8�)�I4z�','\\��I�K�8�)�I4z�','�F���1�%u%@m�rK2�98�\r��<�p�','',0,'?'),('N\'���g��/.](L','wp-content/themes/twentytwentytwo/inc/patterns/footer-dark.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/footer-dark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:��K�3-vש\Z','o��0�^��|���,��b���3�+\0�T60','',0,'?'),('N-��i�j����','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/int.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/int.js',0,'}�~w}�0��ë��T>','}�~w}�0��ë��T>','��v�%��+�Q�$YȰ0��!on�-��I�','',0,'?'),('N/\n@��A\"�:�;1��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mime-types/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mime-types/index.js',0,'b�xM%.��,o\\i^�','b�xM%.��,o\\i^�','j)�՚A*. P�c�D�\Z�`�e7]����;','',0,'?'),('N7�A�\0�nnV�֑�','wp-content/plugins/wordfence/images/checkbox.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/checkbox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"��G\r�6|\'','��y~`w(j�~�=뤼&��ݴ���Q>`^�x','',0,'?'),('N9k���Ez��ދNU�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/index.js',0,'�}���}�T�V��4','�}���}�T�V��4','��9D�h��C%�F�Gܓ�L$] �[<��=|*','',0,'?'),('N=�f�>$K���H�T�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����?�G{�����g','ĀР<W�;-\Z��(C+�,M���U��W6','',0,'?'),('N@�W7�ϸ�,��Ɇfp','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/createObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/createObject.js',0,'�}��aZ��Ű��;r','�}��aZ��Ű��;r','SWO0�żHDp�\Z���e�A��D��L�U\0`','',0,'?'),('NB JK�|���+d��M�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/groupBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/groupBy.js',0,'��m\rl�4~\nF�yR','��m\rl�4~\nF�yR','�*�*���^��T��y������ϪJI��U2�','',0,'?'),('NH}%�0��T���E��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Routing/UrlGenerator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Routing/UrlGenerator.php',0,'v&���+���*��}��','v&���+���*��}��','d�H3����-Tg���[DU�B\"�<�k�J\ry','',0,'?'),('NQ1��\n�r�:�~','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/filter.js',0,'���uüD��pK�','���uüD��pK�','N�d@5�6�\n�*�՟�~���U���8㫔9U','',0,'?'),('N]�F��@7Sv��]�','wp-content/themes/mint/node_modules/less/lib/less/tree/directive.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/directive.js',0,'q�ƴF[��Z�g�c�','q�ƴF[��Z�g�c�','��e_�̽�>7ԢS�\r��U��..��!�i��','',0,'?'),('Na��t�Bh�m���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/last.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/last.js',0,'��X@�6�iQ�|�� �','��X@�6�iQ�|�� �','Q�%�3��O��d�U�\Z�Ӌ5d|[��O;�8�','',0,'?'),('Nbܪ��:�|E�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin-upgrade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin-upgrade.php',0,'\0\"v\"g�aJ�R��i�','\0\"v\"g�aJ�R��i�','���1��&�7IE^R���\Z(���u@����','',0,'?'),('Nd^��\0\Z�c\\�\ZV','wp-content/plugins/gravityforms/images/chevron-down.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/chevron-down.svg',0,'������~z��s��','������~z��s��','�iK��Gj��k��;c#\\��2��W�B-� �','',0,'?'),('Nfr�&ܐ�Z�Sa\ry','wp-content/themes/mint/node_modules/bower/lib/node_modules/brace-expansion/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/brace-expansion/index.js',0,'�E%.�T���|�)�q','�E%.�T���|�)�q','�Au$\Z1E���c��\n� FU�amaZ{ Ԣ��s','',0,'?'),('Ni�~ �`���W�E','wp-content/plugins/wordfence/lib/wfAlerts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfAlerts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�(A��|�ϯy��L','�\'_�;?�|US5d}K/+,I!|��t','',0,'?'),('Nlo@�\"��T��(9','wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonpointer/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonpointer/test.js',0,'+x?%�s�[ۉ@9&','+x?%�s�[ۉ@9&','�`浴4U��1�~%�Ĩw�`_\r��?�','',0,'?'),('No2��\'}�+��;��W','wp-content/plugins/wp-optimize/images/notices/black_friday.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/black_friday.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`P�c��(0w�','/a�j��/�3��9�/J��,J^A���bB�','',0,'?'),('NuO���xT�͓H','wp-content/plugins/wp-reviews-plugin-for-google/readme.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F��1<�˵���',',Nm,�R1��u%l0�H�L+���\"-�a^�','',0,'?'),('Nv��b�Wä�?','wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/util.js',0,'��\0�|�f�a*ͨ�','��\0�|�f�a*ͨ�','g��ӥ����,R���PM~�!|�)\\�i|���','',0,'?'),('N|�Jв�zn�sw','wp-includes/pluggable-deprecated.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/pluggable-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@���\"�j��2�ߖ','��U����=����co��=t1�-\\�\r�=','',0,'?'),('N�Ud����Hш��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/append.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/append.js',0,'ט?�(\Z:S���O��*','ט?�(\Z:S���O��*','�It�S���DyN]H*��%�*<�0�E�d�c�','',0,'?'),('N�3�j@pu5����^��','wp-includes/js/tinymce/skins/wordpress/images/more.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/wordpress/images/more.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\n�\nm\0;�˫�z','$��v��o^���U� �A\0���:�\\C�u��','',0,'?'),('N�v�v�g�','wp-content/themes/mint/node_modules/hooker/dist/ba-hooker.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hooker/dist/ba-hooker.js',0,'��,�\\�D��ho','��,�\\�D��ho','���z682�Lʀҍ��y��V��DO���^F','',0,'?'),('N�Y{�)QB[�A�#','wp-content/themes/pinnclonesmalltest/vendor/illuminate/container/Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/container/Container.php',0,'�k�̹Ȼ�F����','�k�̹Ȼ�F����','��ӽ�)���\'�9������hx �ȗ','',0,'?'),('N� JC�bw�t�(\0�','wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-max-data-size.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-max-data-size.js',0,'��mw�>RQ��Q��2','��mw�>RQ��Q��2','��rc*F ��k��N9s��\\Sj�ڡ�&�','',0,'?'),('N����KNL��kM�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Fixer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Fixer.php',0,'m�De��#sx6Dq�','m�De��#sx6Dq�','2���ս�4�$�ܞX���)�~��� F�R*V�i','',0,'?'),('N���Ɔ�b�@�9q�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/MoFileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/MoFileLoader.php',0,'\03*�UQO����⦜','\03*�UQO����⦜','{}�^a妢�Ł�Ӎح�O���&�܊�3k','',0,'?'),('N��hg�C����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/MAX_INT.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/MAX_INT.js',0,'Zޒ����\n �i���>�','Zޒ����\n �i���>�','h��,j,�Sg���0}K��S4�D���S�ȧ��','',0,'?'),('N��͔QsOtڶ�-�!','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/min.js',0,'�<��zq�⃧�G�','�<��zq�⃧�G�','2 H��t\'<�@��2�%ߙ h�y�8i΄&L','',0,'?'),('N�3�B����?�T��z','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kX�Zb����5��','[\0N����E�g����gd�q\r����*\'I�','',0,'?'),('N��iۻs�`OT�7Ţ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/max.js',0,'+��0�$\"_���>ڡ','+��0�$\"_���>ڡ','��~��F$�,~���dϹP�(��~�;�Č','',0,'?'),('N��m\n\r�imS��`','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/test.js',0,'���v�S�[�,�\nʄ','���v�S�[�,�\nʄ','I�)�F��jD�\"����/�3O$��0���','',0,'?'),('N��|1����֚�[\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/perm_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/perm_sync.js',0,' �I�q�����L',' �I�q�����L','(H�_a>���5��|��w���\0�H*,��� ','',0,'?'),('N������������CL','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Generator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Generator.php',0,'�\0#����Nl���','�\0#����Nl���',':Z�vk�2�jI�N�քv�ʮfK�W���Ui��','',0,'?'),('N�|Jަ�I��#��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Access/Gate.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Access/Gate.php',0,'�a�z����}��.�','�a�z����}��.�','�s���\n��~v �R��|��z��|�j���\0','',0,'?'),('N�E\\���|���J�S�','wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{�D�i\"� R��','�f�jt��X���iwF-.4MP�ƅs��H�YH','',0,'?'),('N�_w2�9��x����','wp-content/plugins/wp-optimize/images/features/more-settings.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/more-settings.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-+3�~�.KhN�d2�','�=����kW���#R|��~��&T�+���\0','',0,'?'),('N����E�ѶR�U�\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayAggregator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayAggregator.js',0,'�m럚��耺�w��O','�m럚��耺�w��O','�yIbd�� \"\ZЌ��El��Ds���\\�NoN`','',0,'?'),('N�9��6�6����^�','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���)j�G@-{�bk!','р�a����jfV,��H�?��\\��t�F��','',0,'?'),('N�h�_��BH�\Z�\0c�','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@�#V,aq�|�Mg�','����0��^ª#vp�< �,x���I+,��\\','',0,'?'),('N���U�a���cv','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/zipObjectDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/zipObjectDeep.js',0,'�F�c�gL��:2`K7','�F�c�gL��:2`K7','ы��.=�\'��و��l8�0R�=���n�)H.��','',0,'?'),('N�XjW�N4����A�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/repeat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/repeat.js',0,'��{-���?���','��{-���?���','���~��\n���W����qFld��.@���','',0,'?'),('N���J��Z\nD{ݸU','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/every.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/every.js',0,'�FJ�trb-��ׯ��q','�FJ�trb-��ׯ��q','N���B�:��W�1?]a(��\nř�\01��','',0,'?'),('N��HV����}�4G','wp-admin/css/customize-widgets-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/customize-widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Eq�_����U�R','��Q.$�J���%b����&M1a�L�W�mF`','',0,'?'),('N�r���K� T��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/config/Repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/config/Repository.php',0,'�N� �Or�wF\Zo�,','�N� �Or�wF\Zo�,','��%�������������ڷ�_�A�+�a*�','',0,'?'),('N�UBy�a�� ��','wp-includes/blocks/columns/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/columns/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R���r��4{6G�','yU4��7��\"!��\'R�@��rO�k<=�NI\n~UX�','',0,'?'),('O�鴭f�Gi>Ӑ��','wp-content/plugins/gravityforms/includes/updates/class-gf-auto-updates-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/updates/class-gf-auto-updates-handler.php',0,'Wx����?���x.� ','Wx����?���x.� ','���brG�/��S,�\\�h���b�E�-�MV��','',0,'?'),('O*�]�����m�ռ','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/RequestException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/RequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�&N�!8\0��Ļ���','f�a�|��Xɷ(��h�5�aD��DD�3��? �q�','',0,'?'),('O ��S����#�Yi�v','wp-admin/includes/class-wp-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^���X�v��ԱiA�\Z','�ӎ�S��x���i���V��������','',0,'?'),('O����#D)\n3\np�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random.js',0,'B��z��M��me�','B��z��M��me�','������RK\\{A��l�-߸�:�k�P�#VtW�','',0,'?'),('O�ҽPT�^�4~��B','wp-includes/css/dist/editor/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/editor/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&�/42K���#a��','2g��@�`Ӌ�{��>��#� i�z!総v','',0,'?'),('O�8`Q�^��0�1ݷ','wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/examples/verror.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/examples/verror.js',0,'�]�,b3��]�ǏWF��','�]�,b3��]�ǏWF��','��J���q�No30��q����NZ\'/�=��','',0,'?'),('O�L˲�ކ��p\Z�','wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Queue.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Queue.php',0,'O��=i��@+���̬�','O��=i��@+���̬�','k#�KA�P��\r�B\'�>\"�R�m����','',0,'?'),('O�3��e{}�w��','wp-content/themes/mint/node_modules/glob/test/00-setup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/glob/test/00-setup.js',0,'��1����gʩ�y�:?','��1����gʩ�y�:?','�*���;U\0�z.��ڤpWa_I�K`�?U','',0,'?'),('O =(�:��<� �1F�','wp-includes/class-wp-feed-cache-transient.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-feed-cache-transient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"�&�A��P��x�,',')�d�T9��8#\'��G�y��̹O��<3��i�t','',0,'?'),('O!�)VU���)79�\\�','wp-content/themes/mint/node_modules/bower/lib/node_modules/number-is-nan/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/number-is-nan/index.js',0,'�}�3ᾼ���OK','�}�3ᾼ���OK','��lE/\'���=�\\m�����oG��.G�','',0,'?'),('O\"��l�!n�M_��','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-react.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-section-react.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ւn4�HG�D�l�had','=Z��W�������$��3%�ϺOh��2�t�u*','',0,'?'),('O&���s�x�c:�;�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_CL.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_CL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�؋&TE�f�x�g�A�`','���㟧[k��+ݲ�)R\r���<���k�,','',0,'?'),('O+���[�IB���m�m\'','wp-content/plugins/wordfence/images/wf-central-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/wf-central-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�(��VѤ���','\0{\r�ߘ�J/� �^�+��,��S������','',0,'?'),('O2v�l߰�<*V��!','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/MailFake.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/MailFake.php',0,'�5է#��|g��','�5է#��|g��','���QN�������<,C���G�8\\d$�','',0,'?'),('O2ɂH���!֒�[=','wp-includes/blocks/pattern/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pattern/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2[�hY�������','������S��49�J��<����o�,��B','',0,'?'),('O4�dzWQ�\0��R��','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Lj���\"C�ix���','��x眪!����}�\Z�����W����d','',0,'?'),('O@�[[���J\Z�N','wp-content/plugins/wordpress-seo/src/conditionals/should-index-links-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/should-index-links-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�=�·b!�9á����','����fB��j��O�;��Y�#�~\r���','',0,'?'),('ON�J�\r�Ŋ�j��BYw','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/loop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/loop.js',0,'�Bw��O�b�H%G&','�Bw��O�b�H%G&','I]`�u$M�K�»�MT^U�g0���/]<7�2�','',0,'?'),('OS�Y�Wz!8�ʣj�','wp-content/plugins/wordfence/views/gdpr/banner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/gdpr/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>6�9!�G��z�>�S','�Z��Q�a̿�|`!�C��2C�K�%#�l�','',0,'?'),('O\\F$�9�H#V6�l�N','wp-content/themes/twentytwentyfive/patterns/header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/header.php',0,'\"1�X�����A��\0z','\"1�X�����A��\0z','8~9,�c��@��A�.{J��n(G���?�','',0,'?'),('O_ :��-��H�v��','wp-includes/js/dist/vendor/react-jsx-runtime.min.js.LICENSE.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/react-jsx-runtime.min.js.LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4[[8�]�Lڱ�)�7','�[&>�}8��� �,a��8¿d��ح>.Rb','',0,'?'),('O`�������dj� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/compact.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/compact.js',0,'ҙ���U�\r�{k.Z��','ҙ���U�\r�{k.Z��','xH�$���QJ7�·�T��g`����:�','',0,'?'),('Oa_���b,�+�7tg�^','wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\n:X,�|$_����;�','�p 2�& (y��R:�1�?^+^��ߤ�ۢR�','',0,'?'),('OdDl��?C.������','wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/draft76_parser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/draft76_parser.js',0,'�>���2�C L���\"S','�>���2�C L���\"S','�r�Ң��LN�Xc���|=�:\nڝ�5���','',0,'?'),('OfnzY(���i��d�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/contains.js',0,'�-�]J�^�QsjA\\�l','�-�]J�^�QsjA\\�l','hg��ջ��E}c1v���ԛ�[C-�QI�m','',0,'?'),('Oj�K�\n2/��Id_�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/encode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/encode.js',0,'�!#�$�pY���I�','�!#�$�pY���I�','/�@�u�X��Q�^�HZ\\us���k��F�0W','',0,'?'),('OlqCcێ���������','wp-admin/css/forms-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/forms-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,/�c���+��f��','�!,Y�}�k� +�-����X�Bz��U��n','',0,'?'),('Otþ�|���!a��]','wp-includes/blocks/code/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/code/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q�\ZQ����響�','�� ��$�\r�$��gI`@�+9�\r�����mf','',0,'?'),('O�潼m$��&_','wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����/��M�aW�','��dJ���[���P���rM��V\Z�C�m��X�','',0,'?'),('O�ޕ�=���m�5h�4','wp-content/plugins/gravityforms/includes/wizard/class-gf-upgrade-wizard.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/wizard/class-gf-upgrade-wizard.php',0,'�a�d��v�sY��:�_','�a�d��v�sY��:�_','E�{����\'/�sf��JXX�\\K���A,����:~','',0,'?'),('O��\\���P5��{�R�','wp-admin/plugins.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���.[���0�O��','��\\��*�P���8@d�=�5�:�A�J��','',0,'?'),('O���K���U��O��','wp-content/plugins/wordfence/css/phpinfo.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/phpinfo.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��Q���!�0w/�蓴','���a�@|��I\r=\Z^ε�d)�[�����W��','',0,'?'),('O�5Xs}���=�O^r/','wp-content/plugins/wordpress-seo/packages/js/images/tec-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/tec-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+խw�J�Sݳ��','W(������������bx~,�N�/��t','',0,'?'),('O�j��3��U��:c6I','wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-bucket.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/analytics/domain/missing-indexable-bucket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��G_Y�0�F�?�6�c','��\rE$��|��2k0�|Ҵ!Ʒݵ��l�8','',0,'?'),('O�˂̬��otzO)','wp-content/plugins/gravityforms/js/tooltip_init.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/tooltip_init.min.js',0,'o�~�wyPo�;M�E�z�','o�~�wyPo�;M�E�z�','xh���#CTD�bEj�X�Ki[M\rk�j0=ϥ�','',0,'?'),('O�f��[Q������ڃ','wp-content/themes/mint/node_modules/postcss/lib/css-syntax-error.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/css-syntax-error.js',0,'���^�_\\ʁ�l�h�/','���^�_\\ʁ�l�h�/','L�i�%�t�eΡ0�ד!�$�k�6��','',0,'?'),('O�������a�+���','wp-content/plugins/wordpress-seo/admin/views/tool-import-export.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/tool-import-export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��L�ڝ�\0�9=��','���O�1og�v1E(\0�R�Y�C�|Òx5��','',0,'?'),('O���gT3�h��-�','wp-content/themes/mint/node_modules/console-browserify/test/static/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/console-browserify/test/static/index.html',0,'��A�����M�-��!2�','��A�����M�-��!2�','�s��wO��+D�V�Knַ �����kT','',0,'?'),('O���*9-C:,�>�','wp-content/plugins/envira-gallery/assets/js/envira-gutenberg.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/envira-gutenberg.js',0,'���A�~w���m�','���A�~w���m�','�8n� ���������:Vw3@���L�x','',0,'?'),('O����&�r�蓏�� ','wp-admin/freedoms.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�D]��6�L)`���','r�L@�]����×���v��|�: S�b*��=','',0,'?'),('O����R�r����D�?�','wp-admin/js/postbox.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/postbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^��V2�W?*��]\0��','Ѧ9O�*\Z�vuJT���6���~Aj�|�T','',0,'?'),('O�F��OP���B��ٴ-','wp-content/themes/mint/assets/js/scripts.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/js/scripts.js',0,'@��j��h���+b�^','@��j��h���+b�^','d�\n?Hq����~�^�w \'�����lOj�,�{P','',0,'?'),('O�~|�\"�����c~��','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-post-type/list-empty.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-post-type/list-empty.php',0,'�L���\Zo�/݅=R','�L���\Zo�/݅=R','��(��XG06Q����w�=��n�H@�|aq','',0,'?'),('O�����8�14A���m','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/ProcessUtils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/ProcessUtils.php',0,'�T��\Z�!<x�,W�^','�T��\Z�!<x�,W�^','Y*8��,#W��+�n�.�MI��!��S','',0,'?'),('O�B�$α�\0�L��\'','wp-content/plugins/gravityforms/assets/js/dist/968.1cc602def43c1371e658.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/968.1cc602def43c1371e658.min.js',0,'�C�Z1!7u��B���','�C�Z1!7u��B���','��@Gn�BH@�Ɠ�X1>@�SM7Xz��\Z','',0,'?'),('O��?�s�\ZK��?�','wp-content/plugins/wordpress-seo/admin/filters/class-cornerstone-filter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/filters/class-cornerstone-filter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\n~��؛��ƜE~,�','�N7���\')Ҩ�U.�7U�f�LMvIv\'�','',0,'?'),('O�_�Vʱ�Z�^�{G','wp-content/themes/pinnclonesmalltest/config/theme.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/config/theme.php',0,';^�|J�����q,�',';^�|J�����q,�','X��Q�z��_k�h��t:�kD�i�����','',0,'?'),('Oϯ�mK$�y���SU','wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/file-sync-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/file-sync-test.js',0,'f�B$�a�Fo�\nփB','f�B$�a�Fo�\nփB','4��/�v̌5cՓ���|���VV�=@@O7�','',0,'?'),('O�-j����e��k�\r','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/Throwing.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/Throwing.php',0,'��\"�{J�݁G���(f','��\"�{J�݁G���(f','�%�\Z��ރ �Lś�3�Yj�-6�����','',0,'?'),('O�=��2��!��:','wp-content/plugins/wp-reviews-plugin-for-google/static/css/admin-page-settings.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/css/admin-page-settings.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ֿ�G�á�v3�t','r귟G�����h�ߑf����qɋ���g','',0,'?'),('O�̭�$%�4�.��x� ','wp-content/themes/mint/node_modules/argparse/lib/action/append/constant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/lib/action/append/constant.js',0,'j��p�NsZ��&3��V','j��p�NsZ��&3��V','�(79�Ӑ�m���C�Ղ��j Szd�V�@?','',0,'?'),('O����y ��k b�','wp-admin/css/customize-nav-menus-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/customize-nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� ���.|G�WX�','�\r 0U�n]����Xڈ�b�eG�D�SϾ','',0,'?'),('O�m���v��s�7oP','wp-content/plugins/gravityforms/form_settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/form_settings.php',0,'?.\"�[��w`�����O','?.\"�[��w`�����O','�lX�U-��h��<Z��@��* f�ӳ$�\0[3','',0,'?'),('O�����HI!K!0[�','wp-content/plugins/wordfence/lib/menu_scanner_options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_scanner_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dr��mQ?Nد�E�','�0��z��!_N\\�×���\n���~N�|��ds�m','',0,'?'),('O�*��m�_)�8_3�','wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�.f+� {���o','[��5%�b��+r4ظ����i�7�+H�\"�B1�','',0,'?'),('O��O�M_K7�n��','wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B:�W�@N�','aH�lq�QH5��Vh|���7�h���f�KN4','',0,'?'),('O�gZɳ;uM��$�0�$','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/helper-missing.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/helper-missing.js',0,'��r��Bl3���)W��','��r��Bl3���)W��','�o(^}�\Z�`���Ϻ����U9�\n�l���NQ','',0,'?'),('O�hu�G���&\0�L�','wp-includes/Text/Diff/Engine/native.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Text/Diff/Engine/native.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K����j���JB','�5�lݲU���goK�\\�c�-F`��A{�^{�','',0,'?'),('P\0)�)�\'�k�V�^','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ShorthandSizeSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ShorthandSizeSniff.php',0,'?�8�iݺe�P�\"��A','?�8�iݺe�P�\"��A','\Z��u�2�e�8㔭RU/�t�Vĕ�� �','',0,'?'),('P��H��Z`�=���','wp-includes/blocks/pullquote/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�υ V�9���ϻl','H�jx��wY\"b���&�c\\�T&��1C','',0,'?'),('P�bw�=����i��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\Z��Iw5AlLۢ�','��K{�8��fl��7s�Rh���嗋��I','',0,'?'),('P ������kw','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/vendor/qunit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/vendor/qunit.js',0,'cB���۠}5����','cB���۠}5����','�<p��[#oM����!���Zd��H��EǶ','',0,'?'),('P�/:��̮�҉���H','wp-content/plugins/wordfence/waf/pomo/streams.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/waf/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"����xx�!3�W��','\r,���&�����ɩ�!��:�xl��[','',0,'?'),('Pw\"���\r��v-���','wp-content/plugins/gravityforms/includes/settings/js/tabs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/js/tabs.js',0,'OC�%�&����y�','OC�%�&����y�','-��d��� !�����P�m��δ1��N]�,','',0,'?'),('PN��iC�\"\0+�O�#','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ServerRequestFactoryInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/ServerRequestFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b����z�U3�W!�','+���wW�xF��7�.m�@��S`�S;/�*ɜ','',0,'?'),('P\Zi�p6`;S�,L�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Commenting/FunctionCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Commenting/FunctionCommentSniff.php',0,'�2�P�o����\n:���','�2�P�o����\n:���','@)wA��E/+����o[��R#��腧���?+','',0,'?'),('P\Z�y��mY(�C','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-hyphens.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-hyphens.js',0,'��)�G?��lCG��','��)�G?��lCG��','.{c��4�s\0�oY�pS�a�>�O��\'�`','',0,'?'),('PE۫�7r|oI�6��>','wp-includes/js/backbone.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ư{�e�@(9��ES�','�n�yU���@\'�]�FRݛ��TcM��@�w�/','',0,'?'),('P\n\0�����[�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/functions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/functions.js',0,'g�T&��\"�f���Jj','g�T&��\"�f���Jj','4�c��s��Ł���/���2��w�.5���','',0,'?'),('P�~�?d�4\r��9q��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/size.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/size.js',0,'����^����� ^','����^����� ^','��W�eGF�fᩕUD���n�XT\"7C��\n6','',0,'?'),('P ���NtD��n\"�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y����K�]�� �','b}\"�o�z�V(\rV\'Qu�I�v�����','',0,'?'),('P\'�(���?+�z��$�','wp-admin/js/postbox.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/postbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�=%�(\Z��f6�9�0�','�I��a1�%�&�ܜ��a�;�^%�3isJ�','',0,'?'),('P4{�B_w�28E8��s','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/race.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/race.js',0,'���b�+��� Y9y','���b�+��� Y9y','�\Z%��$-��!�_f�צb�Ny���\Z}�','',0,'?'),('P73o� ��\0�=��','wp-admin/js/word-count.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/word-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\rffB)��������','��6j�,A�ުǭs�D��eC�z�&���\n���','',0,'?'),('P:�#%]�w$�C@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/assignInWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/assignInWith.js',0,'�xu�w��$d�kV1�B','�xu�w��$d�kV1�B','.3}c�����!�\n�:�6��C�p���\rc&J','',0,'?'),('P<a�Ď�vF3�x��i&','wp-content/plugins/wordpress-seo/css/dist/workouts-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/workouts-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�ˀ�t�����','g릮�7�*�Jc�28z�0bjcYim@s�~n','',0,'?'),('P?�2��Q���m$@\r','wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/html-settings-updates.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/html-settings-updates.php',0,'�}g�~�83n(c','�}g�~�83n(c','�L����=d�>��lp�3��qJ?ҧ�.5�R','',0,'?'),('PJ�~]��; ��`y','wp-includes/widgets/class-wp-widget-media-image.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-media-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����_$��/�̜�','1��MP�r!�t�S���vV�o�=�#��8KRf�','',0,'?'),('PK��2�I��)��','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y��w5��(n�b�m�','m!`�~:��-\n�&3@��N���[�9��d\r�','',0,'?'),('PL��F^�9�R�6z�p','wp-includes/blocks/navigation-submenu/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-submenu/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f�H�2X�m.��W','�\Z(f)�gW�NV�y�!�qܹzg��%��','',0,'?'),('PV�`�v��5�F�Ag�','wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/runner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/runner.js',0,'O�o��r�C��J�c�','O�o��r�C��J�c�','��m�I9j����gO\n�2��B���%�\n','',0,'?'),('PY�g����G(�Ȁz','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#=�V��G���MGf','\'cf\Z5�uɩ+N�Iv��鍛,_���@��l�x','',0,'?'),('Pl�Q5#��a��R��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue9.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue9.js',0,'^\n�LF�����Q��','^\n�LF�����Q��','ԩ�ހ�G�US�`3l����W��n�J����','',0,'?'),('Pp��rZj��w�Uկ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/T.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/T.js',0,'��|m\"��(��� �s~','��|m\"��(��� �s~','�q7\"H �jɢ�B��z��׳��,�l��T','',0,'?'),('Ps��8\0�p5��m�q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/isLeapYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/isLeapYear.js',0,'���hT�r-��X�)','���hT�r-��X�)','�\Z[��?iN�#Kw��`\"��,�(i6�ҕ�c�Z#','',0,'?'),('P}�vA�z�>0�1,','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInputException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInputException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e���/ׇ+@�zҟ��','�Ȏ\"`�e�6��㊥A{����G�Z6�[��juP','',0,'?'),('P��Z��g�Z��J ','wp-content/themes/twentytwentyfive/patterns/page-portfolio-home.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/page-portfolio-home.php',0,'��;VȮ8�T&0����','��;VȮ8�T&0����','�����S����4!ܝP\"K3je��Y�','',0,'?'),('P��iz�t�a�}�a','wp-admin/users.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}2��+9�D��','ں�5T�i.��,2:iNE�������XZ$��;�','',0,'?'),('P�&K�LՒ��t�4��','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/get_display_size.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/get_display_size.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�>E?��Yl�q�','�/���x?ٜ:��Ύ[K_�x3=�Ce��Y0o4�','',0,'?'),('P�5�T�814��h%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/where.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/where.js',0,'Y�m��촐M��{J��','Y�m��촐M��{J��','�dK�]^�jBn|��:��{?~�(��\rr=','',0,'?'),('P��8.�g��%��f�','wp-content/themes/pinnclonesmalltest/resources/views/partials/sidebar.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/sidebar.blade.php',0,'��k�n�;�^L��E�1','��k�n�;�^L��E�1','��|Ly�Z.b\\In��m�:o��Ĉ�8�','',0,'?'),('P�DI��9��b(qP��','wp-content/plugins/gravityforms/js/layout_editor.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/layout_editor.min.js',0,'&���Cv�W\nv���','&���Cv�W\nv���','`���{�a����%ǃ����`6�8�Q9J=q�','',0,'?'),('P��h���~��P�','wp-includes/blocks/page-list/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8� �x�� ��vR<��','I�I�|{8�ʰ��$�N�i��0<&[�v�HV�^','',0,'?'),('P��\n�e���u�\"�','wp-includes/sodium_compat/lib/php72compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&��F:B�\nj�|-�','\n�1m���kss���Aog���������p�','',0,'?'),('Pè�&R�{(6�M�]8','wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/dashboard.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ϣ�7fU�c*','��\0p�����nh�a(�}/6X!+�����','',0,'?'),('P�@���;b<\n�c�','wp-includes/class-wp-oembed-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-oembed-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v�G�w�E�JW�&','-#�&���{�̡��6�e`�C�+E��\'�\\�','',0,'?'),('P�\r�5�\ZV�u��o�','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/vendor/qunit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/vendor/qunit.js',0,'cB���۠}5����','cB���۠}5����','�<p��[#oM����!���Zd��H��EǶ','',0,'?'),('P�M�\Z�I̸�ݭY`r','wp-content/plugins/wordfence/lib/wfHelperString.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfHelperString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')����`����E��','OM�Cn=��O5��h�K���E�,q�`���*�','',0,'?'),('P��J1h��|���r�','wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-taxonomies.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-taxonomies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4��3����,','U�0`��7(t���Y��s�\\�h�tr(\'ݩ1�','',0,'?'),('Pˏ�Q�\0�F�� �W','wp-content/themes/mint/node_modules/path-type/node_modules/graceful-fs/fs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/path-type/node_modules/graceful-fs/fs.js',0,'�46�A��K��=','�46�A��K��=','@��H�{*�J��Jh-\'=��a��?#w�_%\0$','',0,'?'),('P̐����JW �B�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/printer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/printer.js',0,'�������Z(d\0','�������Z(d\0','FQ>o�eJϜ\'�՜�\"5�&S���[?8�ETj�o','',0,'?'),('P���J2NBh;8�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebP.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sz��rw�V��R','��*h@ȝBP�YAD8̓��sK�Nt\06�����','',0,'?'),('P�E��:^�N���\0*','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/pinterest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/pinterest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0��(���Mu]�� ��','�[E-v5!Bu����(偝/��a�ue3Gk','',0,'?'),('P�1$���\\*�C','wp-admin/images/stars-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/stars-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A���#�S�Me.^','[��耿�_(\rh���Y���T��qZ��','',0,'?'),('P�`��\086���ZE�7G','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/sortedLastIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/sortedLastIndex.js',0,'t�PۣZ{Y��/M?���','t�PۣZ{Y��/M?���','vN}�uH³ ��9�F{��7j ��\Z��T','',0,'?'),('P��0��a��R�z= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3�gkeͿݾ���|�h','�H��zj鞨%�����p=�Z��iNA�Z�','',0,'?'),('P�W :�Q`�LW��B','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isPlainObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isPlainObject.js',0,'�]�:��XIj�<�','�]�:��XIj�<�','��¡H���������?�}�E���=��)��','',0,'?'),('P�s�H��)�>`�=E','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/pickByArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/pickByArray.js',0,'�;d�b<��4�b\\�','�;d�b<��4�b\\�','ۡ�c��{7Jle^&Ռ@i�*X>l�_us�','',0,'?'),('P�Zy7�qX�I9��','wp-includes/blocks/post-author-biography/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author-biography/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s�3A���hd�~@_�P','�T�|Pj���4h����(/�ؗd��l�l','',0,'?'),('P���VV�N{��j-','wp-content/plugins/wordpress-seo/admin/exceptions/class-file-size-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/exceptions/class-file-size-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�iy�v��#<��Q!��','�r���kv�\")6�B}�zE8�7R���E�','',0,'?'),('P�/�v����.�X��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Notifications/ConnectNotice.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Notifications/ConnectNotice.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3X�b��0�gqs�P','����~�>i9o��,��Z \n��D;�Ѳ','',0,'?'),('P�9�����@��wGo�','wp-content/plugins/wp-migrate-db-pro/frontend/mdb-2.0.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/mdb-2.0.js',0,'&��(�\\n�>�xά���','&��(�\\n�>�xά���',' ���\' �ⴏ�x�;������GON��','',0,'?'),('P������A)�W��J�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/everyLimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/everyLimit.js',0,'�M������^�zN�`','�M������^�zN�`','\"<��B�[��qV��D�\r?��O2\\�\\�','',0,'?'),('P�7#�B��ig�Z �','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/Flywheel.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/Flywheel.php',0,'����:���O�̨�E-','����:���O�̨�E-',',[_��\0�p�l�(�W�B9��7h��a5G','',0,'?'),('Qdt�`o*��]��w','wp-content/themes/mint/node_modules/bower/lib/node_modules/user-home/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/user-home/cli.js',0,'�!~����<���ˊ�','�!~����<���ˊ�','�?���i�@M�����#3��=���\\�z>l��','',0,'?'),('Q�������\r���','wp-content/themes/mint/node_modules/underscore.string/test/test.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/test.html',0,'�;��k��3����S�','�;��k��3����S�','����n�p�\Z��ݔ�����9�}�� :���]\'','',0,'?'),('Q\r��� V��Au�','wp-content/plugins/wordpress-seo/src/services/importing/conflicting-plugins-service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/importing/conflicting-plugins-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��R���J�$��&�>','�X��\n�C�Dn�;\'�+&$�7[��K��B�k','',0,'?'),('Qef�X_���كY&�','wp-content/plugins/wordpress-seo/js/dist/externals/reduxJsToolkit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/reduxJsToolkit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`H<_� ��7�:��','�S�Oی�P]����%>�φ+n�I�T��A�','',0,'?'),('Q�����-�Q[�+��B','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/randInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/randInt.js',0,'<�Ky9��QS���M�','<�Ky9��QS���M�','�}:\n�����T�(����KKs&�Y�Ⱦv��b\\','',0,'?'),('Q%Ep��au�]�G7�','wp-content/plugins/wordpress-seo/src/conditionals/new-settings-ui-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/new-settings-ui-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Kh[J�!�N��','�P�\ZB\'A|!����ڔRm�%���(\\o#�+�\'','',0,'?'),('Q%kN�7�ˑ�.\r|��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/reject.js',0,'�/NDC�Ir\rwĄ�eu','�/NDC�Ir\rwĄ�eu','e^��gk�ś\\I����x�tu��ǩ$1`s\Z�','',0,'?'),('Q&[DU#%��B\'��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toLower.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toLower.js',0,'jG��u����ʗ�Ɛ','jG��u����ʗ�Ɛ','��l���j^���xv���~ȩ���]��1�','',0,'?'),('Q&�|��T\'��d�','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/Gruntfile.js',0,'��O��^�H\r4�e','��O��^�H\r4�e','���N�I@�\\��K8r`5�9�xgU,�','',0,'?'),('Q:,�J�a۬�|��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/templateSettings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/templateSettings.js',0,'C_X�����=�;�\'�@�','C_X�����=�;�\'�@�','���>�^_�IPk�2\\p�Q�+5YԲݥo','',0,'?'),('Q:�#�Ǥ���g�I�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',0,'���!��mV9q�}�','���!��mV9q�}�','�t.t�X@i���ZT�7�&�\\�&�����-Yd�','',0,'?'),('Q;���(����Mp*�','wp-admin/js/widgets/media-widgets.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/media-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d���G\\��)�n','�U�U�0n-�՟�b��&��NEc\\�5Ɠׁ!','',0,'?'),('Q=z=��B9P�����h','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/innertext.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/innertext.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$U������HSI ','���eh״�h��+v/��c��9-?m�5�Y�`','',0,'?'),('Q>�]7�7j�GG-�\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/slice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/slice.js',0,'@AΉ}Y���@��F','@AΉ}Y���@��F','x�ʌ3�����P_R��X�yv��S#��xX','',0,'?'),('Q?��ٟ�g�L�|ua','wp-includes/class-wp-textdomain-registry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-textdomain-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vk����Df��\\g��',':�g�t�� [��9Ɂ��[�L�v*�^�L�g','',0,'?'),('QC�ȧ���$9B)��M','wp-includes/blocks/tag-cloud/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/tag-cloud/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`�A�(����','7ђ�m\\Ve[��#?Z�\Z�Y�d{�Zr��#��','',0,'?'),('QG3��G]^pXS~��','wp-content/plugins/wordpress-seo/src/conditionals/semrush-enabled-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/semrush-enabled-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-I�\Zʑ*0\Z���7�','��\"-_z/�VFd�a���{�vp<f��i���&','',0,'?'),('QN��Uw�{��`�2K ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/bindAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/bindAll.js',0,'�BtJļ�D��+\0','�BtJļ�D��+\0','_�ސ�JBmk���U�ʅx+ Ǿ��S��To','',0,'?'),('QR�;\rA#�A*�q�`','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ScssCssSource.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ScssCssSource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\"!��͓7u`+q','>U�\'�}s&<<.ӳc���\n���kʡ�()*','',0,'?'),('QR����_)���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lowerFirst.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/lowerFirst.js',0,'G��|H����s�b','G��|H����s�b','qtIv���YJ�E�uD=;.\0A\"R� Tr�<W','',0,'?'),('QT���*�f�P��.�','wp-admin/includes/file.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?�+��S|Q0��7 ','�L�!�(�q�>[k��u!1)\Z~ ','',0,'?'),('QY��1�Tl��Vr<','wp-includes/js/customize-views.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r�<`����D��','b2�M��!o�;�-�veq��\\f�]l����:','',0,'?'),('Q]�0*�q9�Y','wp-content/themes/mint/node_modules/postcss/lib/vendor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/vendor.js',0,'C��%T�|U��','C��%T�|U��','�n�b�J���b��9d�Tğ��>n��Ű��','',0,'?'),('QcOaƐ}-ŋ��G�','wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib-zero-byte.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib-zero-byte.js',0,'ӽ��LŸ��q��[u','ӽ��LŸ��q��[u',';B�6�0=�;���7���L�ճ�X2�b','',0,'?'),('Qp����PS΅���','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-speechinput.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-speechinput.js',0,'(�ri;�xb#�)hR+','(�ri;�xb#�)hR+','ݖ`(�{�c�x�.� c���R�����','',0,'?'),('Qq�P�OQ�����J��','wp-includes/fonts/class-wp-font-face.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/fonts/class-wp-font-face.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݪ��(Ui��>��Ss','M-)ڧA�>�J\r.�ȃ�&om��)z��+','',0,'?'),('Qr��9G�a߸��}�P','wp-content/uploads/cache/5bf7a22ed747d408b6e6b3b51e0361ccec4fb6a7.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/5bf7a22ed747d408b6e6b3b51e0361ccec4fb6a7.php',0,'5q�J����M�0���','5q�J����M�0���','��Ѡ.���a��@���S��ܨ��R�m�','',0,'?'),('Qr���ҚDW:M�*E','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_wrapperClone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_wrapperClone.js',0,'N��x�4� _�mcJ:','N��x�4� _�mcJ:','>\'�T�¦T�O�k�.��Sm���O�lJgp�','',0,'?'),('QuoPX��\0��Sڞ','wp-admin/images/bubble_bg.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/bubble_bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�g<ć�I����0','\'+u�W�`-A�����S\'�}S~S��b���','',0,'?'),('Q~\0�@zϟ��_��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Report.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Report.php',0,'ȼ�$>�z�X����� ','ȼ�$>�z�X����� ','�D�t&�@�(Ŕ9SJ��(���D����KЈ�','',0,'?'),('Q�����7��d�','wp-includes/SimplePie/src/Sanitize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0,k��I��V;uwh-','���\0����Zs��w�^�ө��x�W� ��','',0,'?'),('Q������F\rT����','wp-content/plugins/envira-gallery/assets/js/lib/enviratope-item.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/enviratope-item.js',0,'6v�k�+|�)[*r��@','6v�k�+|�)[*r��@','��a���m��~A�蘧B�cO%@�A�','',0,'?'),('Q��cm�uX\Z3�B+��X','wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�mR�_��`�W6�\0','s)W�?Pӎ�B�*?x�BZ��dɗ�eZٞ{','',0,'?'),('Q��N��~�X�O^','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/stripHtmlTags.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/stripHtmlTags.js',0,'��rH M��¦�y��j','��rH M��¦�y��j','��45B�SK���k�F�c�J2�P.3\"k��','',0,'?'),('Q���PA���鐚�z�','wp-includes/blocks/columns/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/columns/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R���r��4{6G�','yU4��7��\"!��\'R�@��rO�k<=�NI\n~UX�','',0,'?'),('Q�P5Z���w�Nia�','wp-includes/blocks/quote/theme.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/quote/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u��Fӈ@T~�S}','A3��m�{��dIƐiw ���� \rl�i�','',0,'?'),('Q��6K4������H','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i0���\Z��_�c','SBY��l�MЪ�D撧�}��\Z��+��>�#�};','',0,'?'),('Q�n���Q���ގ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isMatch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isMatch.js',0,'23n���!R���Ƃ��','23n���!R���Ƃ��','�`л�Q����+c�p��~�v�ё`����','',0,'?'),('Q����\0I�V���I�w','wp-content/plugins/gravityforms/includes/query/class-gf-query-literal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/query/class-gf-query-literal.php',0,'A�Z�@����J��\n','A�Z�@����J��\n','�\0��e����\\��a[��j��ކ��','',0,'?'),('Q�x��̿Py���\'uE|','wp-includes/blocks/page-list/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z�-��ݒ�|�3���','��-x�Ñ�&�>�&�r\0�IB\r��\n�����/�','',0,'?'),('Q��-�C-]C����','wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E/i?�ݶ83|��E]','C�#�OK�Kؗ�B.FY�Ɖ+E�w��F�KY�9.','',0,'?'),('Q�Gm���@�s�\\:e:','wp-content/themes/twentytwentyfive/parts/footer-columns.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/parts/footer-columns.html',0,'/Cɾ���K���IpA','/Cɾ���K���IpA','��5%�3���3BԊߋ2�+ �e���G�','',0,'?'),('Q���l-�H���1','wp-content/themes/mint/node_modules/bower/lib/node_modules/concat-map/example/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/concat-map/example/map.js',0,'B�4u��y<1\",\'�','B�4u��y<1\",\'�','f��2�s�!MZe�Oi�2B���+��_xё','',0,'?'),('Q�9nb7\rn�H/�?0,','wp-includes/js/dist/private-apis.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/private-apis.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���5�.}pp�w�̫k','�E\'��I\rҋ�Eg�g�NR��w;@%����','',0,'?'),('Q�`���8�M�8','wp-admin/press-this.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ƛ{t��Y[:��g\Z��','�i>[t\"{D[�\r:gU���l�t:P,�p�','',0,'?'),('Q��4��%��z�>*��I','wp-content/plugins/wordpress-seo/inc/class-upgrade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���t�y��D���','�F\0����ohGB�`�B�ɰhZ�R�����1','',0,'?'),('Q�p4V�:(�a�6�','wp-includes/js/dist/script-modules/interactivity/index.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/interactivity/index.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�K��q��\r�%o�','�$�#<#�;��6PC�=��{��T�b#jp~�J�[','',0,'?'),('Q�{��DD��}ج� [','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/kebabCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/kebabCase.js',0,'k�3���|�X���f�','k�3���|�X���f�','��Dc���cd,8�������U�KZ��6���=','',0,'?'),('Qˢ�I��E��Z0k','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seopressor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-seopressor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Of�ȶL����c','Q��+���V��\'?��H��ɦ�]ĈhX�\'\n ','',0,'?'),('Q�W+/�XM����<�L','wp-includes/SimplePie/src/Cache/File.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��p��Mʪ/_�,@0�','��A�;��My���K2W$\"j�#D�8�#�','',0,'?'),('Q�_�� �fL�]B��','wp-content/plugins/wp-optimize/templates/admin-medialibrary-smush-column.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/admin-medialibrary-smush-column.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��yP��Z�G�W�','s�L��\r̮��*|?�W#j����ODƍ]��','',0,'?'),('Q��@b�w؏�YU�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php',0,'ca\"�3���AM��\0','ca\"�3���AM��\0','S�^ j���+�]v�u�xÁh��r�ƀ�A','',0,'?'),('Q��b�3̍��w�Y��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/constant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/constant.js',0,'�pP����l��L�','�pP����l��L�','r���/^��--�@����TΊ�h1��F.�','',0,'?'),('Q�Ў.��t9�W��R�','wp-content/themes/mint/lib/extras.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/lib/extras.php',0,'m�&�Ŭ��ȟ6bU8h','m�&�Ŭ��ȟ6bU8h','�X���á��n։$�,;�0��<̄ڍm�','',0,'?'),('Q��c�mَ�40�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/close.265fcfb5.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/close.265fcfb5.svg',0,'pH)���\r\"�2tOUH','pH)���\r\"�2tOUH','��!��X�����X\\D���!������','',0,'?'),('Q�n+��pAICx��4','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Exception/FileNotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Exception/FileNotFoundException.php',0,'Eg��+��(�5�\r','Eg��+��(�5�\r','�)hO*A��r�A�ַ�It`�h;��*�܊��','',0,'?'),('Q�G��7��2C\r�i','wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|���� A�כ�2���','n�����\0�~�=�ز����P�r���4�Y','',0,'?'),('Q���<��\'se�ݓ','wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ĐIRV��;��D�','�����@��h��A\0v>�_}��m�L�\"g','',0,'?'),('Q�.ì�\\���XeOI','wp-content/plugins/wordfence/views/dashboard/options-group-general.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/dashboard/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�t*�-6�ـX��','mV�d�h�I�∂�d����TK�{�z��\Z�','',0,'?'),('Q��)*8O�ԫ4;�i','wp-content/plugins/wordpress-seo/src/helpers/wpdb-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/wpdb-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y:\Z��6Q\rAe\'��D','B�H��\r$��i���$�Pd� �!٧9','',0,'?'),('Q�����l��g�-��','wp-admin/js/comment.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/comment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%�Xv4��\n����l�','�G��}P��8����wC�jIȀOKîX~��3','',0,'?'),('R�v5��W6�`�ھ�','wp-includes/css/dist/nux/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/nux/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v(���b�JI%�\ZV','�������xE�g���$\0K�� ��3`��.?','',0,'?'),('RD������UX�Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/once/once.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/once/once.js',0,'c��0&�85R,�R&]','c��0&�85R,�R&]','\ZFu�����7�{�^����C��\ZگxLtM','',0,'?'),('R��/�ey�&��s�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/util.js',0,'>�]����Bjw�Q|�g','>�]����Bjw�Q|�g','�I�/o�:;�L�<�A�f�M�$ۡ��z','',0,'?'),('R�WĨ�&8��a�1/','wp-content/plugins/gravityforms/fonts/gform-icons-common.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/fonts/gform-icons-common.svg',0,'�Y���6�|��Eb��K�','�Y���6�|��Eb��K�','\"�9;�)忶<_�L���SOh��\r�lk����q','',0,'?'),('R��v_/�ЅԻ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/detect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/detect.js',0,'vx;/F5�\0.��A6�=','vx;/F5�\0.��A6�=','��=.����+��i\Z\Z3x�iS:�;N�6','',0,'?'),('R��q@�+qĄ/�])','wp-content/themes/mint/node_modules/bower/lib/node_modules/wordwrap/test/wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/wordwrap/test/wrap.js',0,'�Np�N����\'�m�','�Np�N����\'�m�','¿�,��|��M��f��Φy�35\\a÷ԁ[','',0,'?'),('R\'I\rY�ӻ\\r���1','wp-content/themes/mint/assets/js/scripts.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/js/scripts.min.js',0,'��P�H����Q','��P�H����Q','�-���܋��_FWѺ.�\"�Ji���dͣUC�','',0,'?'),('R*�z\'*y�r}��i�Z,','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/Container/ParameterNameContainerResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/Container/ParameterNameContainerResolver.php',0,'Em\'>ܤ��%ն�','Em\'>ܤ��%ն�','bx��AG�0 �9�_����b�\Ztܛ���','',0,'?'),('R3�Us�3��}T��','wp-includes/js/autosave.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/autosave.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Nj�cJ�n�H�\'','��T%��#�5r����c5��꘩����m7','',0,'?'),('R8y��Ҟ綄���','wp-includes/css/dist/block-editor/content-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-editor/content-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3ͅ4��&����HQ',')^lt��u�ÎBۢ,��8�`8b�=�8\ZM9�','',0,'?'),('RJ��X}%v��4-\0�(�','wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/definition-engines/class-definition-engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/definition-engines/class-definition-engine.php',0,'��+XΩ�㏖���܅','��+XΩ�㏖���܅','��U���>���γ�x��h�TV���','',0,'?'),('RM���T�xߝwxV�Q','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__get.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__get.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u���p���*�@�','%7�����A�ͭ���\rh;���]�:S&�','',0,'?'),('RQ�b7f�� |~ۓ�(','wp-admin/js/widgets.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4�>�A�P�P�u4Ą�','�����v�5ᐪmє\"-�*~`�`Qg1F��/','',0,'?'),('R]��t5o��U','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/lib/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/lib/browser.js',0,'���S�A�_$���','���S�A�_$���','��۶��*�V�#�M����]����<9fH','',0,'?'),('R^\Zinؚ�M����V�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Question/Question.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Question/Question.php',0,'��t�\\�(Ud��v9��','��t�\\�(Ud��v9��','vif[M�Ӧ�c�[�:��)e7�@Oi�0','',0,'?'),('Rb��Qݼ��� ��)','wp-content/plugins/wp-optimize/images/our-other-plugins/easy-updates-manager-sm.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/our-other-plugins/easy-updates-manager-sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&<�Ʌ�� ��`��','�������ɥqe�l�R���3ȃ��?�d��','',0,'?'),('Rc����-�fx@�ju�','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/parse_modified.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/parse_modified.js',0,'�OW ��{���','�OW ��{���','ۤ.S��8��\Z}X���R�dC%͆�u��DQ','',0,'?'),('Rd���\n��|�M��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/hasIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/hasIn.js',0,'y0�d�zG}S�','y0�d�zG}S�','r}�d݆��Z��ǎ���\rB�4Σ=���o��a','',0,'?'),('RfO�<1��X �����','wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/core.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/core.js',0,'�y�o�\'�I�(','�y�o�\'�I�(','��zk�:��Ԅ��$~5<����c��_��>A','',0,'?'),('Rf�z�5ⴤ=��4�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/setWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/setWith.js',0,'����=�c���dꇫ�','����=�c���dꇫ�','�VmU\nM4���4�v@���Ѵn�i64���','',0,'?'),('Rhz���%�s!ӇVd','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-editor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6.��V�h猜��/','D�oF|�8�)��!��Q>p8k~�2�{oY\\�hsU','',0,'?'),('Rj�q�Iӏ\Z�Y&�','wp-includes/sodium_compat/src/Core/Curve25519/H.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���0\rJ`X�\"8�by','oHi��Y�N3 >����_����J�,���S^','',0,'?'),('R|>u���Ps�`��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Hash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Hash.php',0,'����҉��]��ʇ�','����҉��]��ʇ�','yxD�1���=LB�y�*x�X���r�I����yZ','',0,'?'),('R�1/�B)�+���B�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getFuncName.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getFuncName.js',0,'�[W\"��\Zͽ��7j�J�','�[W\"��\Zͽ��7j�J�','Ry�W3��.&n�R~���%G��rQ�*)�>�','',0,'?'),('R�F0!M��H����B','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString.js',0,'{V�s�a����NK�k','{V�s�a����NK�k','+�\\�SW�>\\m98�p\rx�F���ԓf7?�','',0,'?'),('R�������M3-','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Exception/InvalidArgumentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Exception/InvalidArgumentException.php',0,',�E<�!�t���1�c�%',',�E<�!�t���1�c�%','�W�N��*o�\n�×��������N��','',0,'?'),('R��ij�Q�fŀo`6�','wp-content/themes/mint/node_modules/uglify-js/lib/mozilla-ast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/lib/mozilla-ast.js',0,'v�&JF�BϬ*FƤ','v�&JF�BϬ*FƤ','DM8^C6��Jʏs�3�w �F��3��Ă','',0,'?'),('R���1?���Y�VDt�','wp-content/plugins/wordfence/lib/.htaccess','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E\"xK��{�8�dS�','C����\'r�9��@�K�ކt�����w#@k�','',0,'?'),('R�� ��a$x���\0��','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/code-gen.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/code-gen.js',0,'F�P�&iJ��׳�Z','F�P�&iJ��׳�Z','�i��U��ZI��w�m�s4�R�nC����','',0,'?'),('R�b�:Z�K��L�','wp-admin/js/application-passwords.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/application-passwords.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�\"5pC\05���P;�.',' �>W̞6���6��}{�F�+*�CWV�J','',0,'?'),('R����q8U�{\0��','wp-content/plugins/wordpress-seo/src/surfaces/open-graph-helpers-surface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/surfaces/open-graph-helpers-surface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\\9qP\ru!�s�D','���-rhC�*����?�Өo :Ç�o���','',0,'?'),('R��A���H=��W�>�a','wp-content/plugins/wordpress-seo/src/integrations/integration-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/integration-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q��0\0N���D �F�','�Sl��fA� O� �w|=EB͐�Df���q','',0,'?'),('R��{@Nf�����b�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/ReviewNoticeDismissed.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/ReviewNoticeDismissed.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|io�A3��ί��v�e','��a�����[@ZQmD��O�f�mZsB�T','',0,'?'),('R�x�4Mp@�9u\n֊ p','wp-includes/images/wpspin.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/wpspin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��$����n��4H{��','-*z�n�D�,\"aH�K�H�rޱ~\Zy��\Z�%�','',0,'?'),('R�0��yK�u^1ˋ��','wp-content/themes/mint/node_modules/bower/lib/core/PackageRepository.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/PackageRepository.js',0,'?��::�f�_w�=XM*','?��::�f�_w�=XM*','���?���6�K�M���\\�0v��h�[69�W','',0,'?'),('R��|Rx/�bzn9\0*�J','wp-admin/includes/plugin-install.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xP��������U@�~��','z;�w���ާO��N�pI�뇲|Fް�_w��Ab','',0,'?'),('R�� �_ku<�g�E7n','wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/arrays.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/arrays.js',0,'�����Y�젗e8=+��','�����Y�젗e8=+��','�?1��U^��*�\\8b����.D�UJ�@','',0,'?'),('R�\\SC�|ju�9��A','wp-includes/js/media-grid.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/media-grid.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mr�$Sb�qԞ�Y\0','$x(���<s�Ɖ����U�/���ȰXKK','',0,'?'),('R�����7ʃ�/z��','wp-content/themes/mint/node_modules/iconv-lite/encodings/gbk.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/iconv-lite/encodings/gbk.js',0,'���-��9����v�','���-��9����v�','p��n��\n6mGU⤧U��L�Y$̂�&X&','',0,'?'),('R��Sr\\?��`�M݁I','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/last.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/last.js',0,'xjS6*W`(�U{','xjS6*W`(�U{','���A�}�1>^6�d��[���k�^0[qAy','',0,'?'),('R�`�7/�����Y','wp-content/plugins/wordfence/modules/login-security/js/admin.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/js/admin.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Y�a(�~�D�4�X�<�','��m�_����fg��� ]B�{#2\rA�b','',0,'?'),('R�Q��(j���]�k��t','wp-content/plugins/envira-gallery/src/Views/partials/onboarding-wizard/step-2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Views/partials/onboarding-wizard/step-2.php',0,'�+8�5l�e�Cz�č�','�+8�5l�e�Cz�č�','.���%&\\���\'��1�a$^�8��G�����','',0,'?'),('R��W��R�9~I\0Œ','wp-content/plugins/wordfence/css/license/response-global.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/license/response-global.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}��#�!+h�N�i@','V��[�\'���yyX?�yeV{F����eC�l�%�','',0,'?'),('R¥�����Le�q �&�','wp-admin/js/user-suggest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/user-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jl�,��f.�Vh��','��\ZԂ 8�՜g\\����IS�����グ6���','',0,'?'),('R��siW����[�%��','wp-includes/SimplePie/library/SimplePie/XML/Declaration/Parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/XML/Declaration/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^#�+�{��6��756','U[�ǥ��)R<�y��q�����>�k�q�','',0,'?'),('R��ܰoL�8~\\�lCR','wp-includes/blocks/audio/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/audio/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z���#�@ϛ���\0v','Ͳ���CO��R̋�<l%�n�\Z�S>��*','',0,'?'),('R�5<5���0g��0��','wp-content/themes/mint/assets/vendor/jquery/src/css.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/css.js',0,'2�),�0\0�yS�k0�','2�),�0\0�yS�k0�','�J�5����CO�5\0��Ұ\'K�5���K�wP','',0,'?'),('R�Zv����\0�u��o�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/split.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/split.js',0,'�:l~6�m��#�c���','�:l~6�m��#�c���','L�/H�l7WA��,�a�D��&ɐ�&�V9Q','',0,'?'),('R�X�;U�0�,���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/lerp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/lerp.js',0,'<�\\�+�/��o���','<�\\�+�/��o���','�C�0�:� �v�7�s\n\Z#EN�3ѫ��','',0,'?'),('R�1Ϥ�@���/~\'!','wp-content/plugins/envira-gallery/assets/js/list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/list.js',0,'����R�S��\"�k�8�','����R�S��\"�k�8�','���\02��������5AGAA~e��y�,','',0,'?'),('R�H\r0��!�d�?c&','wp-includes/widgets/class-wp-widget-categories.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���bo�fOճ�K�','�jc\n�y�;~;�3RH�3z4U����h��G','',0,'?'),('R��G5�����to�$o','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-greg-high-performance-seo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-greg-high-performance-seo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\\��3\rfKct��L�','l�9X.���(������g���Z��SJ:(�*','',0,'?'),('R� ��yy�+_�q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/has.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/has.js',0,'����\\ ��c��Y=','����\\ ��c��Y=','�{���o>c;�60 H���h��<Ǔ��r�','',0,'?'),('R���̡�6n��Q��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/matchesProperty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/matchesProperty.js',0,'x����rҷM��X�k','x����rҷM��X�k','�y�ɻ�`!:� N�ɱv��E�b\r���','',0,'?'),('S?�d�xS���َ@','wp-includes/blocks/query-pagination/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?k.����*נ� �','؊r�����H��L=�]ؙ�!_\'�d��','',0,'?'),('S_�Q�_�<�E�y','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesLayouts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesLayouts.php',0,'��oua��8M�v�j','��oua��8M�v�j','Mo�\\����t\Z������Z�l��n�b 7N�$|','',0,'?'),('S\r]�$�b�\\�NF','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/ResourcesTabTemplate.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/ResourcesTabTemplate.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ѳ:Y��V��8?�z','O��F�2qR�[$������\'�H��˒��+','',0,'?'),('S��v� joI','wp-content/plugins/wordpress-seo/css/dist/black-friday-banner-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/black-friday-banner-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�#2�hiZ�e��hͱ','M�s�5��@F��P\0���^u`�&���J�h','',0,'?'),('S��.f;$\n��\r�$0|','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/repeat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/repeat.js',0,'�+��m�!N����3X�','�+��m�!N����3X�','6(v��N7�X�xM*o2��\r6��gwl|���','',0,'?'),('S{����8�\'E�q%1�','wp-content/themes/mint/node_modules/jshint/src/lex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/lex.js',0,'NXZz5���r\Z��ݓ','NXZz5���r\Z��ݓ','q0�kQ<ڛ>:U�k���\Z ���)�+7%�','',0,'?'),('SVf=�1_Mw�r>\"J\n','wp-includes/blocks/comments-pagination/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!4����1Q7m�J6�','���R�LJ݅eC�S�d�1�]`<P��ڽ�/a','',0,'?'),('S!7�Y*e4�J���S','wp-includes/blocks/comment-template/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-template/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L0H��s$�8�\"!�','���>G��i��d���V�� �5���uv4','',0,'?'),('S.FȫA�j���(�:','wp-includes/js/hoverIntent.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/hoverIntent.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����ң��4�K','z�\\�:Ǝ�[4d`}{;�ѕ�fx�Lԩ�=','',0,'?'),('S0�־��K/17u���','wp-includes/js/jquery/ui/selectmenu.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/selectmenu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ԧ_���g��rm-�','�OB�� ��x�u�N�B���>q9Zx윚�v���','',0,'?'),('S1�YJ�\n���s�L�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#���Һ�@�e�{�=','��Ԃ\Z\'��랙g�ԫQA���U��b�M','',0,'?'),('S4�mj\nN�Ķ�\"���','wp-content/themes/mint/node_modules/bower/lib/node_modules/findup-sync/lib/findup-sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/findup-sync/lib/findup-sync.js',0,'�4Iel`�j|��Te�%','�4Iel`�j|��Te�%','C�7�0�qw�� �Y��\Zb����pl�j��','',0,'?'),('S5�đۋc(f֮#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/difference.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/difference.js',0,'�\"gF�}���?d�!r','�\"gF�}���?d�!r','�2�\n$vz�Q��K�[tVF=��B��kZ','',0,'?'),('S;���X&Z��)�','wp-content/plugins/gravityforms/includes/orders/exporters/class-gf-order-exporter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/orders/exporters/class-gf-order-exporter.php',0,'�<����\\�6.����','�<����\\�6.����','y�yi�Ζ�!CZ0:@���/��O�A�]�$���','',0,'?'),('S@Ko�\0�@���J','wp-content/themes/mint/node_modules/minimist/test/whitespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimist/test/whitespace.js',0,'ʡʼn�*��Av$q�̹�','ʡʼn�*��Av$q�̹�','�\0ܐ�(�z�ڋk=[#q�1�Z�l��$\r���','',0,'?'),('SA�BQ��:�m��4�','wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/minimatch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/minimatch.js',0,'�WpUP\rve�\'ҎH�','�WpUP\rve�\'ҎH�','j����$V�\\�$�aLF{VD]�\Z�퀴','',0,'?'),('SCmnz�z0U3��e','wp-content/themes/mint/node_modules/qs/test/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/qs/test/stringify.js',0,'6�.�8����H�*','6�.�8����H�*','��i�fD� bg���g��-�\r��V�o�,�i~','',0,'?'),('SE�큤+^�Gc���','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/contentsecuritypolicy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/contentsecuritypolicy.js',0,'LŦ-��_ܼU 1�[','LŦ-��_ܼU 1�[','dw��Gq=/�K������2%kba��\\ӕ@��','',0,'?'),('SJ]Bj(���*���V','wp-content/themes/mint/node_modules/deep-equal/example/cmp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/deep-equal/example/cmp.js',0,'6�%&���vf���{%','6�%&���vf���{%','N��L����B�E]�<��\'})�2+U��','',0,'?'),('SN>�J��h��j�=','wp-content/plugins/gravityforms/includes/libraries/gf-background-process.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/libraries/gf-background-process.php',0,'4\0���\"\nf�I�J�-n','4\0���\"\nf�I�J�-n','J�J=8����� ��ʑ��R��j��5�o','',0,'?'),('SP-��΄,S�Y�� �','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/StaticThisUsageSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/StaticThisUsageSniff.php',0,'�\\?�ȳ6�1R��Y�','�\\?�ȳ6�1R��Y�','@���n\" �z���^��Sf�R4���r�','',0,'?'),('SX+7�1?���-','wp-includes/js/jcrop/Jcrop.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jcrop/Jcrop.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z��7e�����Q�%K','!��@��X�7JŃ��p�3K�;S*!���L','',0,'?'),('SX�@�#�фq���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/isNaN.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/isNaN.js',0,'����T}eo�@^r','����T}eo�@^r','�:������G�� \0y*� ���q3����Y�','',0,'?'),('S]�!��\n�f�~8��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/container/EntryNotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/container/EntryNotFoundException.php',0,'��j�-<xL\'�Oͮ��','��j�-<xL\'�Oͮ��','6}e��oAp鲮���L���)=pȨ�%(��s','',0,'?'),('S^������(DD�#','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/fixtures/foo-with-errors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/fixtures/foo-with-errors.js',0,'�#D��Ww�� wA�V','�#D��Ww�� wA�V','6�<X��m�!�fO��Sg��)q��','',0,'?'),('Sa�y�r/�aԿ�5�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_SetCache.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_SetCache.js',0,'��d�3���}rWc\\2','��d�3���}rWc\\2','�+-{=)DnkG������+q��CP�\'0','',0,'?'),('Sc�S����1�W^','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(%�d���X�� Ba}�',';TF��m�rMg��p}��f��#L(�\ryv]��$','',0,'?'),('Sj�~6��{�����X','wp-admin/css/colors/modern/colors-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/modern/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r\\d�^e�Kr>\r�','��#�Sl��%�&��em�ư�0y/���s�E','',0,'?'),('Skiw\\u�h=`.k)Y*�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/valuesIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/valuesIn.js',0,'2��,����*E\Z��zd','2��,����*E\Z��zd','r����v�ꔁA���v�;�P��!�F�','',0,'?'),('So���U��������2','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/index.php',0,'\'jG��8�v��]�','\'jG��8�v��]�','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('Sq#c�����k��[�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/unhyphenate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/unhyphenate.js',0,'��[��1��I����x0','��[��1��I����x0','`�����ձ!jD/����}��-��メV�S','',0,'?'),('Sq����� E�rt�.','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/YamlFileLoaderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/YamlFileLoaderTest.php',0,'�B��rtz��j��nT','�B��rtz��j��nT','����_�{o��Ws\0b���=�����`?','',0,'?'),('SsF%ܳ��~�u� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayFilter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayFilter.js',0,'����A�)��\\��6','����A�)��\\��6','�Z(vo�\0��\\`O��6�h8s:{`�n�','',0,'?'),('Ss�ֺc�bR;�6\"%\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/noop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/noop.js',0,'`����W*�������>','`����W*�������>','De�`�4%�5BʙwTM�H_<M� ?�/�','',0,'?'),('Sv��g*��tm�Q�n�','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-relationship.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-relationship.svg',0,'1kX���M͙��','1kX���M͙��','���;�VtG����h�8�J<f0�Q','',0,'?'),('SzW��NKUS��','wp-includes/blocks/calendar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���a�d(G���ڧR*�','�r��so�?�+��vL���A�T�kѮ<؍���','',0,'?'),('S�C��i1ۭ�j�','wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Я�Y.�~�b��n�=','� S�̣�i�\\N��;�|~(!�{���F~','',0,'?'),('S����p�>��Wr�YE','wp-comments-post.php','/home/adaptiv2/juiceelectrical.co.nz/wp-comments-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A��J�3�^!�@Dx�','w����s�n�8���`�w������i�','',0,'?'),('S��l�+d{�\0%�L�','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-notification-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-notification-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'����}�oT�\n','� �ƠN�)}5��*Po��`uT�ڹ�oM','',0,'?'),('S��[���=v�S��L','wp-content/plugins/gravityforms/includes/fields/class-gf-field-consent.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-consent.php',0,'�za�� Ɯ&x�����','�za�� Ɯ&x�����','�<��,�j�3\\�� �(7N�`�i@w��','',0,'?'),('S���Y����Y�6�\Z','wp-content/plugins/soil/tests/Unit/DomTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/Unit/DomTest.php',0,'�ڳ˨F8�}�4��\Z','�ڳ˨F8�}�4��\Z',')�{��^�:����|$Ƽsh��ُ$�H��','',0,'?'),('S�5�C�_��ݱ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_toSource.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_toSource.js',0,'���5b�ρg(Ħ] ','���5b�ρg(Ħ] ','�#�W�(�8��0:���g�f�%�����-','',0,'?'),('S��t� ��J�9���G','wp-includes/css/dist/block-directory/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-directory/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a��vF��*�ރG���','�=>JK �[��\n�dED{2鳉o[����2�','',0,'?'),('S���\n�pލG%�','wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]_�#D���\0��','\Z ��ے�%�4~N�~Gh!b��:w��Ɍ��\'','',0,'?'),('S���7�d6�r�q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/once.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/once.js',0,'�OaUD��m7�I�̨�1','�OaUD��m7�I�̨�1','���\'2)7E���_��ӲR��-6\r���^Z','',0,'?'),('S���)SK=�u���,','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/lc-plus-wp.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/lc-plus-wp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�\0��r�0g�\\�E�b','_;SO�r��2�\rH� �|\rɢ}ʈ�v$#��L','',0,'?'),('S�i�l��-\\2=�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/resources.html.twig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/resources.html.twig',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r&�d�%�&��_��','�\rOJ��0]����LOůT(�Kiz�\ZG#mC�','',0,'?'),('S��aD��l!�i��H��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/head.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/head.js',0,'���\r}�Zf���4��>','���\r}�Zf���4��>','e�A:O���W:��]�M��bIV\0���\Z���;','',0,'?'),('S����B��w{�N_>','wp-content/themes/twentytwentytwo/assets/images/icon-binoculars.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/icon-binoculars.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����2=5\'�','ԗ�&Iپ���ȡ\0��� ��P��a!\\c7�','',0,'?'),('S�(`J��:�&�����','wp-content/plugins/wp-optimize/templates/database/tables-body.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/database/tables-body.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9�_�QXK������ŗ','ֽ��LR@���!9�#B�q}����\\ɩ`','',0,'?'),('S�yV��D0�ԅ9','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/typecast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/typecast.js',0,'d�mq,ٗ?�À�~�;T','d�mq,ٗ?�À�~�;T','�(2� mf=w�8wB\\C�.��J��8','',0,'?'),('S�B���zR�ʞf','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string.js',0,'<�wT���x�r�','<�wT���x�r�','&�P��z*l�C7�m���u+���e�ЭZ��?�G','',0,'?'),('S�cU���1�V.(�c','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-endpoint-parser/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-endpoint-parser/test/test.js',0,'[��L���$���','[��L���$���','~���%���!��N\Zc�=���|钓���','',0,'?'),('SѼΧD;\rH]dao\0�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/gu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/gu.php',0,'<3��緷� ��IN�','<3��緷� ��IN�','Fo�&�%Fa���Ξ?�\n_�a�\r�X��O�~���','',0,'?'),('S��j��%�`��d��','wp-content/plugins/advanced-custom-fields-pro/includes/third-party.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/third-party.php',0,'k�k�̲6��\0�T�','k�k�̲6��\0�T�','=,��ЉdT�>��*é�U�si;�^v�','',0,'?'),('S��Х��W��cQq+7','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/author-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I(0��ʚh�4\"�X��','��o�t�~@:���ޥW��a��u�ֽ� �','',0,'?'),('S��&�az8�Jض9�','wp-includes/widgets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U�����g����','�i3������צ�օ��CӸ�;�Din�&\"EQ\r','',0,'?'),('S�n���굇�K1j_�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/list.js',0,'j���|��Q�����','j���|��Q�����','o��o�M&n��RL�de��Id��_,','',0,'?'),('S��$ld���I%:��w','wp-content/plugins/gravityforms/includes/fields/class-gf-field-select.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-select.php',0,'Y������$2y�ڏ','Y������$2y�ڏ','�r���n\"�-��6[��t� U��x�[�B�','',0,'?'),('S�\\8z;�X��8�','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-term-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-term-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�^@Mz9�u<Hq?�','�2��B/\n�ᆺ�Ѳ�tJ3\"���ݨ\0�7ι+�','',0,'?'),('S���r쀸WF� �G','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isSafeInteger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isSafeInteger.js',0,'�`U\0�VwC㥍V�,','�`U\0�VwC㥍V�,','�>�\"�/��S|�[�����Bd�(ϫ�J���','',0,'?'),('T\0ۡq�_�}�[J�\\%','wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/test/open.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/test/open.js',0,'�\"lr+�$b��?n�','�\"lr+�$b��?n�','*%��3�i��lf��,@ �@�.{��xQ�l�','',0,'?'),('T\rL����!�0��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/trimLeft.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/trimLeft.js',0,'I}�,C�j�SFG���$','I}�,C�j�SFG���$',']h|W����0+LYG.eG�����M�:.�W','',0,'?'),('T��H ��`�(U9s','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/Platforms.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/Platforms.php',0,'�{���-��A!����A','�{���-��A!����A','XI&��xG\"�^�0��ӵ�n�;�\0���','',0,'?'),('T�r���~�W]�','wp-includes/class-wp-comment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���v��@����','��w�}4r�K5/��i�*�Rej8QVkz]a','',0,'?'),('T[O~#����S2���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/upperFirst.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/upperFirst.js',0,'<�II�Zx��\0�m<V�G','<�II�Zx��\0�m<V�G','��iD�Lf0)��͍C2wѓ0�*��cYXڙ�','',0,'?'),('T�n/M���N��\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/toPlainObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/toPlainObject.js',0,'tV߯+ ��b��A�Gv','tV߯+ ��b��A�Gv','��0�Cڙ�-�~��5�Rţ�6W:+��e�','',0,'?'),('Tj�r8��r�����','wp-content/themes/mint/node_modules/pako/dist/pako.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/dist/pako.js',0,'��I�Nun �\r� Ly[','��I�Nun �\r� Ly[','�ߌK�~�=&�Q�5dy�x?��z���.�[�','',0,'?'),('T Σ��H�8z�#�˲�','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/dist/underscore.string.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/dist/underscore.string.min.js',0,'���+�q �E�\r<���','���+�q �E�\r<���','g� 6>V ��j��^$u,��RbH�+\'\r/','',0,'?'),('T#��ϑ����ٙ~','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/isNear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/isNear.js',0,'�/p��n�=dJC��','�/p��n�=dJC��','_�k$O�vK��,_>z濘[�W&��9�P','',0,'?'),('T(��̛�E����ѡ�4','wp-content/themes/mint/node_modules/less/lib/less/tree/ruleset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/ruleset.js',0,'t]�.�����s�9','t]�.�����s�9','��h�{����$��\'�Ix��DR�Z�`ݎ��O�','',0,'?'),('T+!�������~%R�y','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidFunctionNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidFunctionNameSniff.php',0,'+)ޝ��~K���','+)ޝ��~K���','aQ�i �D{P��L~��\0&��gi楕��>#��','',0,'?'),('T0����\0/̼@�^�','wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/sorter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/sorter.js',0,'l��P�@�5��\\','l��P�@�5��\\','y/C�dP-~�M�J2�l��c��Ԝ����U','',0,'?'),('T2ޕ�������','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/XliffFileLoaderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/XliffFileLoaderTest.php',0,'��]����UCE辏�o','��]����UCE辏�o','JE�ӈ���C<h@���l�7�q��h�6��d�#','',0,'?'),('T6K?���s� �7(�','wp-includes/customize/class-wp-customize-sidebar-section.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-sidebar-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vj��B���ر���q','��{#�i�`��\0���j���` pǍ+�fF�','',0,'?'),('T:(K�Z��3��2��','wp-admin/user/contribute.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/user/contribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Eg�� �\\v�','�&�\0J��<��4�\\Jq�8����L��q\'���','',0,'?'),('T?�?:qP��ah\'��','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���AN�X[`h\0����','�\"xI�B6�E?�����i�\'26�5y/��','',0,'?'),('T?�!��0]�?#��\\b','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPDismissOption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/WPDismissOption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<�y� �����k��L','V]D���9a�X,pL]��Z>\\d��B� ��=�','',0,'?'),('TL*֖K҅v~����','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/Arrayable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/Arrayable.php',0,'�ȌY��S�����K�','�ȌY��S�����K�','zdT\"�S,��9������C���7+C�[[1','',0,'?'),('TM����l����','wp-admin/includes/class-wp-screen.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�_d�ፆ�����','�\Z�;�b�M(�9g�\n4�j`1�j�7�(�','',0,'?'),('TO,�,9�R��5��V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/base64.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/base64.js',0,'5�\'�Q�R^����ry�','5�\'�Q�R^����ry�','�.H��ML��/q/\Z[��T�L2�,�h5','',0,'?'),('TO_רwEϧ<�v�','wp-includes/blocks/navigation/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4�ȑ,���Q��','����( ���\Z�4��2�y!�Ox*D��','',0,'?'),('TZg�~#:���Մ','wp-content/themes/pinnclonesmalltest/resources/views/archive.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/archive.blade.php',0,'��8���|��wȴ�q��','��8���|��wȴ�q��','O��o�}_�ﳚ�=��$�XbD��K}�/�','',0,'?'),('T\\��Nܣ����P','wp-content/plugins/wp-optimize/vendor/composer/include_paths.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/include_paths.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xN���ٝ�z�Z�`','KQ���\0Xh��>uH�i����5S ܖ\r��','',0,'?'),('T\\�>\'�x#�=��^;','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/norm.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/norm.js',0,'��`��[�C{����S;','��`��[�C{����S;','q���R.F���{��|7� U��$�����k4�','',0,'?'),('Td\Z��(m۱Q�0�','wp-content/plugins/wordpress-seo/css/dist/structured-data-blocks-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/structured-data-blocks-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k��||����<<HQ',':�累��)�U��;7��C��-�\0��e��x;','',0,'?'),('Tn��;��3�P�S6','wp-includes/css/classic-themes.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/classic-themes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z��Зe��|�LZ','�U�ؚ�`�\0�j�Am����\r�ǩ2#��#�','',0,'?'),('Tnbchp\0j����-u','wp-content/plugins/wordpress-seo/src/introductions/application/version-trait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/introductions/application/version-trait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���״Ð��\nO��e','�iJ�/�;�\0���=�X6����br�xd0ئ','',0,'?'),('Tn��hLۡ��EY','wp-content/plugins/wp-migrate-db-pro/class/Common/Exceptions/EmptyPropertyException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Exceptions/EmptyPropertyException.php',0,'l��G�:�l�9�>i�','l��G�:�l�9�>i�','u���Y�ԓ1�E\Z�P2�\\rw܂D�A�F','',0,'?'),('Tw��=��+�6����','wp-includes/js/tinymce/wp-tinymce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/wp-tinymce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�-�J\\�8hB.�ݝ','�}�z)����M/�:���rl����x(L','',0,'?'),('T}&K.��b�6�ؖs','wp-content/plugins/wordpress-seo/src/routes/first-time-configuration-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/first-time-configuration-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0�V�f^��HH��k','0�w�g�Vqَ���0O��Q��)����r��','',0,'?'),('T���e/: b�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/seq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/seq.js',0,'��Z��+�Ĵ��6_���','��Z��+�Ĵ��6_���','��]l�9R���s\\x��ƷSG��Ș�p(��','',0,'?'),('T�.o@Ψ2�w�v��X�','wp-includes/js/jcrop/jquery.Jcrop.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jcrop/jquery.Jcrop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Fj��G�Zv�CQ\0`�[','U=�����O��m�C5y���}��5�\\��|\0','',0,'?'),('T���vm?,�a���T4�','wp-includes/ID3/module.audio-video.quicktime.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/module.audio-video.quicktime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0:D��~h(WI�}','�}��`��)�ȅH���\r+45���q�k��X�','',0,'?'),('T����bv9FeV�w\";�','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/lib/make_warning.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/lib/make_warning.js',0,'D��\rpaNk��2�m�','D��\rpaNk��2�m�','�\\��f�:%�ٰ��N.�s��uSo��2���+','',0,'?'),('T�6�ݘ5���A�5�uq','wp-content/themes/mint/node_modules/bower/lib/node_modules/jsbn/example.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jsbn/example.html',0,'.�n۷���y�Od�','.�n۷���y�Od�','�do���¯-���uԡ}9_j�~-�u�&','',0,'?'),('T�84��<۹K��L','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isMap.js',0,'1��k���+��\'�_�','1��k���+��\'�_�','� u�9ʼ�h��d��wpGv\r��O��1�d\Zb�','',0,'?'),('T���SZ�P/ZF@�n<�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mime/build/build.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mime/build/build.js',0,'�A�c��Af���','�A�c��Af���','9qS�J��:��J)��?��Nͯ�Rz��zh�/��','',0,'?'),('T���\r�fV�+� j�','wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gxX��JT��bx���','f��x�/�x��G�\n8�5�6� Z�+','',0,'?'),('T��\r}a��`ѥ��A','wp-content/themes/mint/node_modules/bower/lib/node_modules/md5-hex/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/md5-hex/index.js',0,'�15D�5��$��{�R\r','�15D�5��$��{�R\r','��+��||7WFt���]�%H;[��:5','',0,'?'),('T�������*��x�','wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php',0,'�*\0�����c�\\G�P','�*\0�����c�\\G�P','�\r��+��!��(ۥ4�7��#�k��$R�+\"','',0,'?'),('T�9Af$�)S�<��~�','wp-content/maintenance.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/maintenance.php',0,'���1��2��@RB���','���1��2��@RB���','�5�e�6���.���1�냘9<\rc��','',0,'?'),('T��`a/t��)�m p��','wp-content/themes/mint/node_modules/mkdirp/test/return_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/test/return_sync.js',0,'��*!�>�M��\n�\\i~','��*!�>�M��\n�\\i~','ɚ�o�b����:�im\n�Em�4���5�JI��','',0,'?'),('T¹w[�d�*,���WT','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zipAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zipAll.js',0,'|<B\0c�ά�� J�','|<B\0c�ά�� J�','� L<��\\��i�qyi������LJ\"��M�','',0,'?'),('T��`5���2z/>�w','wp-includes/blocks/query-pagination/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?k.����*נ� �','؊r�����H��L=�]ؙ�!_\'�d��','',0,'?'),('T��d��iu�.wю','wp-content/uploads/wpo/logs/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/wpo/logs/index.php',0,'����i�j�>ֱ �','����i�j�>ֱ �','�[�T�n�Ejd�(�$�:!�h�Ν\0�s�><','',0,'?'),('T�4�c�G�dF�\\>','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-shebang.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-shebang.js',0,'�_Xz��,S8;Ľ�/��','�_Xz��,S8;Ľ�/��','�h��Dr�\Z����aj����TܻQ! $�[v�','',0,'?'),('T�m�\0u��pmn5�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/compact.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/compact.js',0,'d0{А;t\\͂P;m:�*','d0{А;t\\͂P;m:�*','L��Ʉuy�\\��Âg�y٫�g�V/�H�\n�&','',0,'?'),('Tړb�I��v}�z5��','wp-includes/blocks/avatar/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/avatar/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D||���P��y�XG��','~_�8x~5K���<A����{��ؚe ��','',0,'?'),('T�tk!��^%n����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/clone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/clone.js',0,'ϖQ}[!dI�B�NV�#%','ϖQ}[!dI�B�NV�#%','\Z�Ot��R�-n�q����8U��s�2���','',0,'?'),('T܌�7`\0���(�','wp-includes/js/mediaelement/renderers/vimeo.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/renderers/vimeo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C9���Y�O���','���+�®-FVp�ݨIht�L�iP%K��i��6','',0,'?'),('T��p����{�','wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/less-1.7.5.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/less-1.7.5.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Apb�Oi\0��','��L���ͮz��;�j��ƏyRͅ�����','',0,'?'),('T�<˳\Z\\K�HY{U','wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/parse.js',0,'W..˃�?��Yr�$q','W..˃�?��Yr�$q','�<�w���`�\" X|����m\\]����ϔ��','',0,'?'),('T�ĭ9�8������C','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/adding-nodes.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/adding-nodes.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`n�4Y�65���K�9�','�!ƻ�/:?�~��&i>cN�I�6y$H4�K|�','',0,'?'),('T촻~)ū9b^�d_�','wp-content/themes/mint/node_modules/promised-io/observe.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/observe.js',0,'T�E����\r�O� ��','T�E����\r�O� ��','h�ۗ$jͪ�\Z�e^Ϭ��eD�]�B��RO\r�','',0,'?'),('T�7\nGR�edvW��m#','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/pluck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/pluck.js',0,'�~���R�N�Z��@D','�~���R�N�Z��@D','xz���6?\0�x�|�m��;���.h�+�(E�','',0,'?'),('T��ag,���2I�`','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�VJ^���G`-I��','�;y�?��r�(6|\"�<�A�wpN=�Xf6','',0,'?'),('T�^�>;�V����� �','wp-content/plugins/wp-optimize/images/features/updraftplus_logo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/updraftplus_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�\naqY��p �F','K&I��O�k4.�;ZC�C�+y�OEd�P�r�','',0,'?'),('T��ՙJ�Q�����o','wp-content/themes/mint/node_modules/bower/lib/node_modules/exit-hook/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/exit-hook/index.js',0,'븻>jM��B�f��o*/','븻>jM��B�f��o*/','�=/�a5T��|���ӗ��{��J%4��5CD�g','',0,'?'),('U\np} �%����kד-','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/values.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/values.js',0,'���gٗ��Q�{�kq�','���gٗ��Q�{�kq�','���4��il0Y�fP=l�aF8T��ٓ3.(','',0,'?'),('U[��@�h�zY³�o>','wp-content/plugins/wordfence/css/license/response.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/license/response.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V����7�iixWC�','��\'��=�Ұ��\0�̀> �P�5a�� d�','',0,'?'),('U\ZԸ�u�6+sm���i','wp-content/themes/mint/node_modules/bower/lib/node_modules/right-align/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/right-align/index.js',0,'��N�����J���','��N�����J���','�or�!c�[\ZE,\0��7\'�1^y����772','',0,'?'),('U,\r���׀ ��x�)�/','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue68.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue68.js',0,'�\Z�ʃn�� �4�X6','�\Z�ʃn�� �4�X6','�Oe�=��N�!���Ȍj����#Q6lM��8�+�','',0,'?'),('U/���%�уZ�֍','wp-content/themes/mint/node_modules/tape/lib/render.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/lib/render.js',0,' �O\"�zA�6���,',' �O\"�zA�6���,','�4a�3����c���W?|���!���Z�]��','',0,'?'),('U7$�����O�U','wp-content/plugins/wordpress-seo/css/dist/general-page-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/general-page-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7��ަb��,��','7�R&�P�R��I\Z���WBp�`��D7\0�<�','',0,'?'),('U<�R�R�J\'ߎ%�[','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-feeds.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-feeds.php',0,'¹U��f���Z��<V','¹U��f���Z��<V','\Z�ȤO��y�\0����U �u�$a�������T�','',0,'?'),('U>��+S%#C���','wp-content/uploads/cache/ef49f1092112a9fde3232a27f15d4114c6184aad.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/ef49f1092112a9fde3232a27f15d4114c6184aad.php',0,'Y9f��~n?�`�H�!','Y9f��~n?�`�H�!','�/����}�l��!#C��T)�]W%� ��','',0,'?'),('U?6w�TQ+SM��0ʹ�','wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' l��#Y^�=u��','r�=X��,�lU���*�F]�� ZQ[6�qф','',0,'?'),('UI�_����Ym���_','wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pv�Bi����Y_��','��z\0H$y�D7����s�{��w5������','',0,'?'),('UKk\\P�5��Ptƿ9!','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/trimmedLeftIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/trimmedLeftIndex.js',0,'N��V:��fw3e;','N��V:��fw3e;','#�8��q�>�`��XVsgs�T\"9w���Z�','',0,'?'),('UW���ۀ+V2�^Dn','wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/lib/_stream_readable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/lib/_stream_readable.js',0,'jူS|�a\\�̛��','jူS|�a\\�̛��','3�{І�T�̬���d�.��+����}U��','',0,'?'),('UX3�O0iW�ʘJ�e�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedIndexBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedIndexBy.js',0,'�·��(�ojW�ilb','�·��(�ojW�ilb','C�_��&�P~��]�E�QI��8G�_GK��','',0,'?'),('UZ��R�f�l��xRS','wp-content/plugins/wp-optimize/includes/class-updraft-logger-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-logger-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�i�J��*��e','���/��UY���a(&M�,�j ���?�:�L','',0,'?'),('U\\B��\0�7�;ꑝ���','wp-content/themes/mint/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/chown.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/chown.js',0,' �R�wM+2Y6��EFU',' �R�wM+2Y6��EFU','\\�Aձo���y��K���&x(����p]��','',0,'?'),('U`i\"#�j ޭ��0?�','wp-content/themes/mint/node_modules/bower/lib/commands/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/index.js',0,'8E�Q��9Ct���;','8E�Q��9Ct���;','Z(����p�y���5��H�H���-��@�&8/','',0,'?'),('UfG���߯%���w','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ForbiddenStylesSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ForbiddenStylesSniff.php',0,'U�G�=�z�*���/','U�G�=�z�*���/','�2��F�5H�j�#��f���D/;��JTS|�Nn','',0,'?'),('UgЮA�D�eN\\ڛм','wp-content/plugins/wordpress-seo/src/generators/schema/faq.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generators/schema/faq.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W�Qf:���&=��','O@�R��v��F��p��.E���?���\Z�iKC','',0,'?'),('Um�D���3���%x','wp-content/plugins/wordfence/languages/wordfence.pot','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/languages/wordfence.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':�@S��\n�*6�%��','�\'��Mo�}�d��c�V_i��dCD^��!c','',0,'?'),('U}/�j���~)����c','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseMergeDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseMergeDeep.js',0,'%�r��~��թ��','%�r��~��թ��','k�o�s�Rs$[��Q���^�Z�F\Z�`���','',0,'?'),('U�.��G\0��h7K','wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{��Dz��겊��T','s�my(�[�~��M������N�Ԙ��;i','',0,'?'),('U��5�s(&�VFd�i�','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/index.js',0,'����Xާ�$����֙','����Xާ�$����֙','�{r��2^�l2�gR+_Brw���W','',0,'?'),('U��1 kl�I�R��+�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/apply.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/apply.js',0,'�ʃ����������v','�ʃ����������v','B���x���k�g��؈g$���6�Na�K��','',0,'?'),('U�N�U�E����:','wp-content/plugins/wordpress-seo/images/academy/ecommerce.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/ecommerce.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7���� ��~lǤX�','����W�J����ċ�E\"��O�U�!F�M','',0,'?'),('U�×H� m�H/�','wp-content/plugins/wordpress-seo/js/dist/languages/fr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/fr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ݼ��/��$p$��u?','y��s��y�J!{�!�䰮gL������ÌJ','',0,'?'),('U�9oy?gzW����HW','wp-content/plugins/wp-optimize/js/handlebars/handlebars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/handlebars/handlebars.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1I?��&o=�%v-\\�','��k^�eܖ;0w.��OU-R`(�O?���','',0,'?'),('U�\n)şБy��nԩ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isFunction.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isFunction.js',0,'˩�4$�@q�\rө�\Z','˩�4$�@q�\rө�\Z','� �z}\'YFֳ���)j�\"�sO�O��� \n3','',0,'?'),('U�\0� 2$�M���\nk','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/removeNonWord.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/removeNonWord.js',0,'\0)?��=�c��&z�','\0)?��=�c��&z�','���_B���\0��W�����?!�UK>3��0I','',0,'?'),('U�;�0Sr3Tq\"8�N�\\','wp-content/plugins/gravityforms/includes/theme-layers/api/class-gf-all-access-theme-layer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/api/class-gf-all-access-theme-layer.php',0,' ���Jo�%D)�',' ���Jo�%D)�','�Y�͙��z�{�6��+���S~>{z�E��','',0,'?'),('U�FDJu�̳?�Sދ','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/SyntaxSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/SyntaxSniff.php',0,'Da�&g�w����u�A*','Da�&g�w����u�A*','�U!�Ԏ�4�1}�J9 =�Y�0��`�g.��','',0,'?'),('U����5���O���','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php',0,'��k�CQf>5�˹','��k�CQf>5�˹','2`ZN���s���3�T[L�E�SOTlU�w�','',0,'?'),('U�� �BY{9��uk���','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Event/ConsoleTerminateEvent.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Event/ConsoleTerminateEvent.php',0,'���S� R���e����','���S� R���e����','�C�zLA��.�J��gu����iy�1��','',0,'?'),('U���u�V�X~��,i','wp-content/themes/mint/node_modules/uglify-to-browserify/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-to-browserify/test/index.js',0,'I��3u�p$q��&�','I��3u�p$q��&�','����[�\n����Ւg�ܯ�pxBcx���u','',0,'?'),('U�nɓb4lZ,I','wp-admin/css/about-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/about-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y �y� �z��x4G�','�L��s��a��D>�q��.=��U�X8� k��','',0,'?'),('U�KL��N��n��:�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/dropRightWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/dropRightWhile.js',0,'�x�(�)�﵇�<','�x�(�)�﵇�<','���O����6Jf�����U\\���c���y�','',0,'?'),('U��4�,���S�r�@','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php',0,'����x�u�eb�','����x�u�eb�','8��n�_6��F׃~f�>#{u�RT�i��V��','',0,'?'),('U��&�MuT\"iO?','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/flush.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/flush.js',0,'���������','���������',' ~�㤓=�iMH�W�W��[V\0�`�(��','',0,'?'),('U���$i\"u��&��9','wp-includes/images/crystal/video.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/crystal/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���l��ڤ�;�=','��S\rI��U��9_<�f`��&HYw�u�','',0,'?'),('U����BT{<�P]Jf�','wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C���|�$��@�','�h0�ՒR��Y�n�w�@�>Z<�T��N+t�','',0,'?'),('U������n3��ْ','wp-includes/js/dist/script-modules/block-library/navigation/view.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/block-library/navigation/view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&݊YvA�؏�q%','�o �7Y�*2�����Q=�c�f�p��U�','',0,'?'),('U��=���>��wX','wp-content/themes/twentytwentytwo/inc/patterns/header-title-navigation-social.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-title-navigation-social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5���]�P�\"�F�.','�����W\"��f�#1���Etb��j�','',0,'?'),('U� Cs���S�7s�','wp-content/themes/mint/node_modules/bower/lib/commands/uninstall.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/uninstall.js',0,'�0��,�����\r�ħ�.','�0��,�����\r�ħ�.','����\\L1a��.|I�9#�a�=-����E','',0,'?'),('U�D�b�$.�?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFindKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFindKey.js',0,'Z:F��VN2���-_','Z:F��VN2���-_','-���^��\0�x�C�Ķ��X3��E hTQ�','',0,'?'),('U�Gڀ�\rE��B�D','wp-content/themes/mint/node_modules/jshint/src/messages.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/messages.js',0,'\"��+���K��<�Q�','\"��+���K��<�Q�','�>e����C``�m���ުT�llge�9�','',0,'?'),('U�w�A:=P|h��y��','wp-content/plugins/wordpress-seo/css/dist/support-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/support-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�q�-��|�<���i�:','���| }��7��9yp�7��@p�`�:g','',0,'?'),('U�G&��t�_T�r��','wp-includes/css/dist/commands/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/commands/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8�s�N\Z/eTr�Zͮ','��)v�|Ҕ��<yd�oU0�9��><�7a��I�','',0,'?'),('U�8:�~�{�UsX�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/visitor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/visitor.js',0,'@r��EW Y�;����b','@r��EW Y�;����b','���(�4=�ev�I߱iR}�=�����݀g���','',0,'?'),('U�����/VZ�&5�\'�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/assign.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/assign.js',0,'��\n�w���B���i','��\n�w���B���i','%�I�%�)Q5sX��˹�m�����/�~�~\'B�','',0,'?'),('U�GJD�; �dۦx��','wp-content/themes/twentytwentyfive/patterns/event-schedule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/event-schedule.php',0,'Q���{}�f����`�','Q���{}�f����`�','2T��7f5{(Xi��3�����s.#xk�깐��','',0,'?'),('V\n�KOZ�7�!J�O��','wp-includes/css/dist/block-library/editor-elements-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/editor-elements-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vHօ�<��Uj+�@T','����VLb����4d�op���w���X�K��','',0,'?'),('V\n��U`�_�5���8','wp-includes/js/customize-base.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-base.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����L妽�uW�?t','��LI���IM c$�kƁd&�������@G','',0,'?'),('V��<�7G�n���','wp-includes/blocks/separator/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �t�E�o?@�{','��kL��#G��a^ ,І\rF\'\n�g:}FLz','',0,'?'),('V�y?{b����X�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Notification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Notification.php',0,'����%�LX�o���%�','����%�LX�o���%�','�Z*)�(I�S�\\k9$ݸ�^��!J�I��1','',0,'?'),('V6�D�[-���f�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php',0,'�;���\Z�S���','�;���\Z�S���','2�]�-U�V*�a-=�p�;�v�ǩ(������','',0,'?'),('V���o�C�}�','wp-content/themes/mint/node_modules/less/test/browser/runner-relative-urls-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-relative-urls-spec.js',0,'���������>Ҩ@','���������>Ҩ@','\ZO_�`�]u��P�U��{ܨY�3�/�B��','',0,'?'),('V���y5PKiXL|','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/slugify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/slugify.js',0,'\\����A����5ɇ�:','\\����A����5ɇ�:','���hx�$S�^�dU���K��h�4�zm0�','',0,'?'),('V�\r�3#��J��{','wp-includes/sodium_compat/composer.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X�7�{(G5��','5<��H���X0���t�>�-�������','',0,'?'),('V��Km��}%20�ee�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/plant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/plant.js',0,'w�d%�A���Ī�E\0','w�d%�A���Ī�E\0','��z�c~��-��Z<6�`��~�8���Цl','',0,'?'),('V�B.iхDi������','wp-content/themes/twentytwentyfive/patterns/page-cv-bio.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/page-cv-bio.php',0,'Qu5[s�����o��U','Qu5[s�����o��U','�x�H�+�Cmi\"����sC]3N���','',0,'?'),('V�T��d8>�','wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����U�I;�Ŝ7','�K�H@��5���b��P:�r�u�n','',0,'?'),('V!�h��U��u�T�','wp-content/themes/mint/node_modules/grunt-legacy-util/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-util/index.js',0,'���>~���Hf\"צ*�','���>~���Hf\"צ*�','§��:�=vCv�%�ІO�V+^��5���','',0,'?'),('V#7A�����@�?���)','wp-content/plugins/wordfence/views/unsupported-php/admin-message.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/unsupported-php/admin-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A ��H�RQ��~','j�Z���=8<���O���c�-R=s.��)4ƃ','',0,'?'),('V*z4�i���\n�ȸ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/request.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/request.js',0,'^X���-��w�I=g���','^X���-��w�I=g���','�a�{qwԳ���W ��Cw� 2�HD��Z8�','',0,'?'),('V2�L��\0ۺ��','wp-includes/js/jquery/ui/controlgroup.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/controlgroup.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<�Rv���cH��52�','(��}�f�\n��7-��Qo6daέ�/Px��','',0,'?'),('V8|\0��m�FA�6]^]','wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/test/caching.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/test/caching.js',0,'�G�����M��@82�k','�G�����M��@82�k','k�CޅY4u�\\=��F�Օq�~���D�`q','',0,'?'),('V:ڗ~�3��Aؑ�','wp-content/plugins/wp-optimize/vendor/composer/ClassLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+��fq��(���4Ȯ','�k(�\r(N�jj���\'�̣�6.�/���\'','',0,'?'),('V<Z�X��ASh���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/unnest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/unnest.js',0,'/ݙPbR��c��6s�','/ݙPbR��c��6s�','��q�1��i(��� х�\r܌؆�೬�/�','',0,'?'),('V<����]���\r ','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Exception/InvalidArgumentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Exception/InvalidArgumentException.php',0,'��Y���d=�l�','��Y���d=�l�','�e�=��.�� �on����Ҵ�Կ��gБeu','',0,'?'),('V?�O�N���e�ZF\\�','wp-includes/js/jquery/ui/accordion.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8��O��l\0�}��','��o=���/Z�`�Lm�B�lc�qκ~��','',0,'?'),('VD/�B��J�X�|�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/finding-html-elements.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/finding-html-elements.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n����H�3����p�','�3��/�q�)���w�x@ �*L̃�\ZGl�','',0,'?'),('VE��8�k�b�g&:,','wp-includes/blocks/post-content/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-content/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D�\rL�&���^T�L','?w@Q����wT�\Z�0��6\n�>�=�h','',0,'?'),('VH�v��� `1��T#{^','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/combine.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/combine.js',0,'T�U�K����&0��','T�U�K����&0��','�+���B$�?�S�g�pJdZ,Y �=��W','',0,'?'),('VL6�7G^l%D5z3��','wp-includes/default-widgets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/default-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �B z\\f\0�����','%�rN8*G#��C��UᴭP�z�p_-���\n','',0,'?'),('VUr�U��G ����','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-states/checkbox-indeterminate.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-states/checkbox-indeterminate.svg',0,'���ˑM��\"���','���ˑM��\"���','�홒pl�c��r@0���C��1y�I\'K��Z','',0,'?'),('VW�;z��*���(���','wp-includes/blocks/navigation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�rcS�DL�?��#\0�','TI�ə����Dg�[�I�y�?̑]�K[l','',0,'?'),('Vd`e��_��0����','wp-content/plugins/wp-migrate-db-pro/class/Common/Http/WPMDBRestAPIServer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Http/WPMDBRestAPIServer.php',0,'V[�o1يx�����','V[�o1يx�����','W-DdD-��sx#�b�1@\Z.�\rE;�G����','',0,'?'),('Ve��vC0f��A-)��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/lowerCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/lowerCase.js',0,'��c�̪Cz%�.�)','��c�̪Cz%�.�)','m��-\Z�#EV���\0Ur>)���S,*��','',0,'?'),('Vh��Xn�A��.�2�z','wp-content/themes/twentytwentytwo/parts/header.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/parts/header.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�E��H�]jb����','@y��ˎ~�S|���t(�@��l�,�f~��','',0,'?'),('Vi\'��Ru�h:���u�','wp-includes/blocks/query-pagination-previous.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination-previous.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��bī��Q��_NEU�3','W�e��x��\'�Y����㾓mF�b�Lw��p�','',0,'?'),('VlGI?ԙc��f\r[�y','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/collections.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/collections.js',0,'���[qw>�����','���[qw>�����','<n.Cy�韗�5��b�E��W 2I�%�ϋ:�','',0,'?'),('VlJ�y���e����','wp-content/plugins/wp-optimize/wp-optimize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/wp-optimize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,-��[�����0�','4+!�uI7�G1g�,�\r��\'u��Z7OX��2�','',0,'?'),('Vne!�z0u1?��','wp-includes/shortcodes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<1�4w��6��e�\0','wG&;�;R��0VGܕۧC@��8\\7����M�=','',0,'?'),('Vo�ToЮ�?��','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/upgrade/notice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/upgrade/notice.php',0,'kQ����oY��o��ʩ','kQ����oY��o��ʩ','���Rz܀�}*9��[7_�S!X�=K�v5','',0,'?'),('Vrm�KE�p�j��6�','wp-admin/images/w-logo-blue.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[N�W��_p�w�0','ޣ^Q�t�3�H�unU❻��~�\'�T2','',0,'?'),('Vs8إ՛�r<}ѦC','wp-content/plugins/envira-gallery/assets/js/lib/min/pollyfills-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/min/pollyfills-min.js',0,' �w���8|���\r�V�',' �w���8|���\r�V�','Y͢3��\0v\Z֪/�\"c�,��0�+�\"?','',0,'?'),('V,�~4}L-n��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesLoops.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesLoops.php',0,'m�K��l�X�=','m�K��l�X�=','�a�4m5Xa�l���ǜ�U)W�\\LA�S���','',0,'?'),('V�����T���;{r�','wp-content/themes/mint/node_modules/less/test/browser/runner-errors-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-errors-spec.js',0,'�Y*۔��3d�0','�Y*۔��3d�0','���|�>�U��+�Aw��P����6Fi���/','',0,'?'),('V��p�&��uw�R�T','wp-content/themes/mint/node_modules/postcss/lib/map-generator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/map-generator.js',0,'���N�$�>�K��-��','���N�$�>�K��-��','�<�J|�h�S2��?�̿�~���ڍ~vo�Y','',0,'?'),('V�驺�<S�D�զ\"','wp-content/plugins/envira-gallery/assets/css/images/icons/slideshow.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/slideshow.svg',0,'��&��)�O??��','��&��)�O??��','��ed��&K�nc��Vk{So�6���[','',0,'?'),('V���9�w0ÅF+:�','wp-content/themes/mint/node_modules/read-pkg-up/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/read-pkg-up/index.js',0,'\"�2H�\r�K�\r��Ҫ�','\"�2H�\r�K�\r��Ҫ�','*(n�\rC�ˎ�\"F�[koH�z�Q}𰓻�~','',0,'?'),('V�����댏$�x','wp-admin/js/post.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n����h�<r�U-��b�','�G�E+���.z�gۺ_�Sk$S1��9Ԏ#�Uf','',0,'?'),('V��|�s2��&I$�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/applyEachSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/applyEachSeries.js',0,'�d�?��!Np 66i>','�d�?��!Np 66i>','e��������j��A�~K;?%Z�*��\0�0��','',0,'?'),('V�!�U9�D��`�}�','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/RequestInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/RequestInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X\n).3�`KX��0','��@b\'PHF�>u�f�T���=�D��\n','',0,'?'),('V���P�,Y�`�H#�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__set.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__set.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǩ��u봱m$�;','�G����\\�?5�m�qn+�S]�&DDU�','',0,'?'),('V��$l�q�?C�VB q','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedUniqBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedUniqBy.js',0,'K�q���?���i�L','K�q���?���i�L','w~L�/�Uae�=w0sg��������ٻ���7Q','',0,'?'),('V�}�b�r��@� �\\��','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/BACKERS.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/BACKERS.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+;53@}�\0�4���','Ҵ7��3ſ�=Z��*��\r�:\'�|S�u)�','',0,'?'),('V����rz�(�nol*','wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OU��0!�u��bG|��','h�]�%�����I � ���I\0|�1�V~�\n`','',0,'?'),('V�����k�W�x�ff�','wp-content/plugins/wp-optimize/templates/database/settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/database/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q��!��0|�C�Z','���1ysvM�dڿ�I�\0IŊ\r��&�,��~','',0,'?'),('V�)��q2%������','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/clamp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/clamp.js',0,'O���\Z�?�7�c_�+','O���\Z�?�7�c_�+','��0�A�hU��2Ji o��q��k+D�d�= ','',0,'?'),('VÄ�nͲ�$��mq�h','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϷN=|�Уwu�����','��$,oo����]҇fY{B\\\0Q��_�n','',0,'?'),('V׀��\'h��Ĉ+:��','wp-admin/includes/network.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8iЮ���ŧ�G��','��]���&�;�!`�� 6��W�G����;','',0,'?'),('V������h�l!A\"�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/timesSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/timesSeries.js',0,'������C� 08�i','������C� 08�i','��zsEW\r4��� B\0��d5�{��F�Ǡ�','',0,'?'),('V��>ee�4, Gӆ','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/IdentityTranslatorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/IdentityTranslatorTest.php',0,'�INs-q��^�a��g','�INs-q��^�a��g','�mn0C�6�J����<#^\'�v�\"�x�n�Y','',0,'?'),('V�|����iX�UY#','wp-content/themes/mint/node_modules/bower/lib/node_modules/node-status-codes/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/node-status-codes/index.js',0,'�(O�#rQ�A��Cs��','�(O�#rQ�A��Cs��','f�}N�x��ci�a�,�\rKǦ����_�N�m','',0,'?'),('V�NH��C�\\��8�','wp-content/plugins/advanced-custom-fields-pro/includes/acf-utility-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/acf-utility-functions.php',0,'����E�[�1����O','����E�[�1����O','�?��0obNi\'WX�\r ��pm��\n���KC+�','',0,'?'),('V����7�*�:��B`','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/tools/tools.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/tools/tools.php',0,'�2��*��#�','�2��*��#�','�TP7���hK�}_p�����Ȑ$;Kݔ�L\\','',0,'?'),('V��E����r��u0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/debounce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/debounce.js',0,'w���)R\Z��I���','w���)R\Z��I���','f�����L��Ji�8��.a�Nv?�?','',0,'?'),('V�r9���=\n�|�{�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/EnvironmentVariableDefinitionHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/EnvironmentVariableDefinitionHelper.php',0,'�B�/w����Uf','�B�/w����Uf','Hx1��y_�h|�/\"\nqʊ��=�� B��t�','',0,'?'),('V�u�xp��R�cQ�\"�','wp-includes/Requests/src/IdnaEncoder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/IdnaEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ދ}���2e�e','}C\r�0gN5��#��<�W`+\0%F�d�s�{�Lrd','',0,'?'),('Ws�$8�~��Nȁ-�@','wp-includes/js/mediaelement/mediaelementplayer.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mediaelementplayer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�ĪL��5��!\n�','o��^:v\\���m���o����cTW[���k','',0,'?'),('W?�:���%�\' �','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_before.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_before.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fҤ�]�B?��2f�/','k���,&oA^��m���R\Z�O��G��3~��','',0,'?'),('W��WO���>��mA','wp-content/plugins/wordpress-seo/src/presenters/open-graph/title-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/open-graph/title-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:=I3�$,�.իCN','A�_Sķc1��IC�Zcd��0Ini�AF�e','',0,'?'),('W���4!\r�,\"��Z,','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-el.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-el.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����&�l�ؘ]-',' ~�A+?��Iun�m�M��ck@�P,.J','',0,'?'),('W��qꑭg�JXŢ�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/arrow.c76607c1.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/arrow.c76607c1.svg',0,'��\r���$S}�Y��iL','��\r���$S}�Y��iL','�iC9?�����z/�2�R�qs�-E�b�\Z','',0,'?'),('W�zM�t\'�>','wp-content/themes/mint/node_modules/less/test/browser/runner-global-vars-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-global-vars-spec.js',0,'�SFx`���|k��&�','�SFx`���|k��&�','+�,$+�\'j�\'�yF%6��C��lS]6l�','',0,'?'),('W�N�x�8�8O:�r�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/with.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/with.js',0,'��y��iŤ��{f�L','��y��iŤ��{f�L','T4E�a8��f\0j`������C��l�|9`','',0,'?'),('W>fg>��:{��<&','wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-check.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P��\r�Ekܙ-��/5�g','U�^�\Z�%� 6x�߆D��s�[F� �X','',0,'?'),('W&�ִ �)+�ڱ���','wp-admin/includes/class-plugin-installer-skin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-plugin-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨7I��p0N~��\Z��','9g������8�,7�d��] 䏨L!�N��S�\r','',0,'?'),('W+�e�d��l�%','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseExtremum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseExtremum.js',0,'B��L����G �T8�','B��L����G �T8�','kR���\Z�1��ڈ���v�>��i�6��`','',0,'?'),('W,]��i�t�Ƚ�a\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getHolder.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getHolder.js',0,'��(�X��F.W��yhl','��(�X��F.W��yhl','|r?�J4���g�d>� W*m)L�+�O��','',0,'?'),('W2�~�3�xPk�>F','wp-content/themes/mint/node_modules/less/test/browser/runner-legacy-options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-legacy-options.js',0,'��BT¨;J Z�','��BT¨;J Z�','o��v�%�>�O>�$���q٨�zsQ���h�','',0,'?'),('W8h�!ɩk�ĉ\'�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�RU�b�*��\0\'�','x����<�s��BZ�2�j��RM\'0%$��i{ V','',0,'?'),('WD>�bb�������','wp-content/plugins/gravityforms/includes/editor-button/dom/class-gf-editor-button.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/editor-button/dom/class-gf-editor-button.php',0,'��}�Z�tR3\r;6�4�','��}�Z�tR3\r;6�4�','@���ܙ/wg��p�����j@��LlJ���?','',0,'?'),('WD��탟\"���u','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsEqual.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsEqual.js',0,'��ĸ�\r|2{�*]�','��ĸ�\r|2{�*]�','�ὡN�Kӑ�4��lj��[�0�ⲝ;�','',0,'?'),('WEh���a�An���Yl','wp-content/plugins/wp-optimize/includes/class-updraft-logger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ʹ�q����Ff_�<','i��[�1��k��\\5~�\nƽP��I�Oq�t�','',0,'?'),('WQ�f�=�����\'�','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/Container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A� �=Ξ��','[��$��ί�&�Ҫ�T�>ux�gOm','',0,'?'),('WY&���Vɭ��e=','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Exception/ParseException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Exception/ParseException.php',0,'��b��<D<mn�<³','��b��<D<mn�<³','夆��6�(�$��O#H�rݮ*z�)9�ō','',0,'?'),('Wa��#��I=Є՟_','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/index.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/index.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ev�I!k�O~����','\0�7!X\05�\0h�`�:�dbA�ߊ��\\��-�\"5','',0,'?'),('Wf��)xu��K����>','wp-content/plugins/wordpress-seo/src/config/migrations/20200513133401_ResetIndexableHierarchyTable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200513133401_ResetIndexableHierarchyTable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%/�d��^��N�`T�}','S�c8���L��B��ܮ�Lu%۔��u','',0,'?'),('Ws��{N�hP�r�㼱','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/dashboard/widget_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w��9�64\"�k��y','�X�������\"v����-*������3','',0,'?'),('Wu�笑2�Xg��)�','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-message.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-message.svg',0,'�ug��h�����G�','�ug��h�����G�','$C�:�LMlR,�7��H=�L��{����F','',0,'?'),('Wx\Z�Ta��7{��','wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���1�-�yS�kg','4\Z��H+*P��`�,汹��҄|�*��Վp','',0,'?'),('W{�g- X��\'=n8','wp-admin/moderation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/moderation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�EVU��u�������','��Fq�6��1����<���w�t&�b����1��','',0,'?'),('W|��ӽ��^�K1�','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php',0,'s�p��)f1z�\Z','s�p��)f1z�\Z','��c�7y�e�v��1E�=��A�\n�`��9!�','',0,'?'),('W|��}��E:��ʾ��1','wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-title.php',0,'շ���G��J2}3','շ���G��J2}3','�N���}�\"$�ġ���g�e��S�>�j,*','',0,'?'),('W})Ӗ7���e�}5�9,','wp-admin/load-styles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/load-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2t�m���*GK�t� �','\Z��9����..�u0C8���\rF~߀~s�HM','',0,'?'),('W��\0e��mP�?к��d','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/WidgetURL.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/WidgetURL.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?=~W�1�pߔ��4ћ','�e%�6�.�P��t!ux��G��X����','',0,'?'),('W��a��H�����(�','wp-content/plugins/wp-optimize/js/jszip/LICENSE.markdown','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/jszip/LICENSE.markdown',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�֔<�*<a�*�]xa','σ�L��P�[�>��)�л��L�d������','',0,'?'),('W�) ��(v/���3�1','wp-includes/html-api/class-wp-html-processor-state.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-processor-state.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<t.c�0`�y0�h�','���;���V[<ƃ^�>V�k�������#p��','',0,'?'),('W��������p\ri','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_setCacheAdd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_setCacheAdd.js',0,'�v�&�l5D��]Q��:','�v�&�l5D��]Q��:','(�%���&��!��{��C@�Ai�/�_��','',0,'?'),('W��LjN/�@Ϣ�ư�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T ��nr�k���','�;\\��Xځ��/0;��Q�P�.�B4��\Z�','',0,'?'),('W�\r�||0W�p\rF�6] ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pullAt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/pullAt.js',0,',��\Z<c��Z]ˆi��',',��\Z<c��Z]ˆi��','�P��P�Cw�+a#$����ۃ�J�$<F','',0,'?'),('W�.D�]� 2���{�7','wp-content/themes/mint/node_modules/abbrev/abbrev.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/abbrev/abbrev.js',0,')\\��uɟK���̝�',')\\��uɟK���̝�','�ߝ�~`{�O\"���(C������G��=�T','',0,'?'),('W�[��d�K�@d�Z��','wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Connection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Connection.php',0,'Ѵ�i�/%@�_�Ϋ�~','Ѵ�i�/%@�_�Ϋ�~','���=(t�@{���-�8���.�6zz�P�C�','',0,'?'),('W����C��z� ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/binary-search.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/binary-search.js',0,'��K0���\Z�(~쨎','��K0���\Z�(~쨎','c/���6\Z�zPw�@��w]�%s�hP�d�ѻ','',0,'?'),('W�[�v?��jϥ��7�','wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/test/max-open.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/test/max-open.js',0,'�k̋�\0~q��.���','�k̋�\0~q��.���','ѡGu�H�i�B��k�:�N�=�>\nPw��~y�','',0,'?'),('W�b��춛b��}�','wp-content/themes/mint/node_modules/argparse/examples/arguments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/examples/arguments.js',0,'���#�\"$Rtr&�iw�','���#�\"$Rtr&�iw�','�bRv��jX=r����6.�@�k\'w�iD� |�','',0,'?'),('WʔBT�rn�߷�����','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Interval.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Interval.php',0,'7��G�����2��H','7��G�����2��H','��l�W���V�a8`��\Z�\Zֺ$���U','',0,'?'),('W�����Z1�Bዅ�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Engines/CompilerEngine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Engines/CompilerEngine.php',0,'���Q�P�\r��#�','���Q�P�\r��#�','�6�ִ4Z;&��XC���{����x�/,�ٺN','',0,'?'),('W� �x�.�*���|','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sk.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sk.php',0,'�G��\rq`#�\\�B��`','�G��\rq`#�\\�B��`','\' E�e6{|:�,����|�%\"�(2��LJ��[�','',0,'?'),('W��Q�}��m+�W','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Store.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Store.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u$9.�S�C�-�t�','��M�_��P��]�}�V+\Z�h+��#u[\n�','',0,'?'),('W�\0 �L���B&�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/CacheSchedulingMutex.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/CacheSchedulingMutex.php',0,'};Bx6�YF�����<','};Bx6�YF�����<','qTƟ rZ\0:9���b�#_kԧ����!�','',0,'?'),('W�B}LQ}&�Ju�>�\n','wp-content/plugins/wp-reviews-plugin-for-google/include/update.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/include/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&��v`ِ\n\\j�Z-','���YtZ�{i�~��؋�&W�槭P��ߚt� ','',0,'?'),('W��0��z����\Zg�e','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`]�R�?������=:','�śݾ_��1�V��n��@\n?~�ABS<>%�X','',0,'?'),('W�8\0��7v#i8�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/source-map-consumer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/source-map-consumer.js',0,'|UM�$sn��RX�W�','|UM�$sn��RX�W�','�������Ղ���~6\Z)r��\nz瘇�(�K��','',0,'?'),('W�}��ƾ6���d���','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/search-replace-arrow.1795aa05.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/search-replace-arrow.1795aa05.svg',0,'9,#u��x��R�','9,#u��x��R�','�}�!z�$vΚyԊHJ4�B���m8�\"��','',0,'?'),('W��IJ�+-�Z.\'��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/umask.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/umask.js',0,'��=���c%n���:��','��=���c%n���:��','Kʪ���Sׂ��Mء�H_�K�x|��u5Gn�','',0,'?'),('W�XJ�r��x8�L��','wp-content/cache/wpo-cache/juiceelectrical.co.nz/heat-pumps/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/heat-pumps/index.html',0,'��{����\"��f��Q�','��{����\"��f��Q�','��G�S���Y�\"�C����kC�\ny\0��\\�','',0,'?'),('W�%�)�`QC�r','wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonify/lib/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonify/lib/stringify.js',0,'H���ӯ��}D��1','H���ӯ��}D��1','��D��7���]jf9sT�5&����a�Ȼ.�I','',0,'?'),('X�/�s\0��(�','wp-content/plugins/gravityforms/includes/settings/fields/class-notification-routing.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-notification-routing.php',0,'E��>�b\Z��s�K��&','E��>�b\Z��s�K��&','/�� Fٺ\\M���x$��4^O��4v��\'f','',0,'?'),('X\ny&eP���$O��t�.','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/BufferedOutput.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/BufferedOutput.php',0,'5,�,x�T,�Of�P\0','5,�,x�T,�Of�P\0','my�(B��F>r\'n��c^��:Ϋ���\rmS�','',0,'?'),('X\rKػ�}�x)�����','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/align-items.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/align-items.js',0,'�:�C��&����Њ�','�:�C��&����Њ�','���y������N�Z6AH_\rM-*�\\�','',0,'?'),('X�a&�ؚ�\Z��2c�`','wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/output-engines/class-output-engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/output-engines/class-output-engine.php',0,'��� ��k\n����','��� ��k\n����','�J��v�H�(�I�2�L��yF�EH�����}','',0,'?'),('X��^.�kC��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Imagick.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Imagick.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0���Z5�`�r�\0','4Tn����[��h��(nrS.�=)Б��MbG!','',0,'?'),('Xͮ���xⷙ�#��','wp-content/plugins/wordpress-seo/inc/class-wpseo-replace-vars.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-wpseo-replace-vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z\Z��ȫ<jN�_ 6',' yLX��=-���yA5�F\n:9$@\Z^\Z2r1�l�','',0,'?'),('X͉8�S ����U2�','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidOperatorType.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidOperatorType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ߺ�q��*��E��;�s','n�^�͛��c���7\0��d.&��@x�\0`�','',0,'?'),('X!ʺZ�P灭ϋ�P<<','wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-checklist-promotion.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-checklist-promotion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�݈or���m�Lw^�','��q��M��(��A�/�N�1qv�I^�-?��','',0,'?'),('X,�E�Cj$_��8I��0','wp-includes/images/smilies/icon_cool.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_cool.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n��`����ivj.�','�事F�9;2_ �$�$~�LO�a��6���_','',0,'?'),('X;�8��`#(�$x','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ElseIfDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ElseIfDeclarationSniff.php',0,'��Um�?����\"B%�{','��Um�?����\"B%�{','����+Yf����/�Z�<i�aX1Xu�c\\','',0,'?'),('XA~�&a5�\0�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/conforms.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/conforms.js',0,'�����,�~���','�����,�~���','��h���0FM� r�*DK�/X����i2�7!w��','',0,'?'),('XJ��\n�sp3t9!҈','wp-includes/style-engine/class-wp-style-engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/style-engine/class-wp-style-engine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sY�[ KI}�u?��;','�C�Mf΄��I�/�}���\0�/&�� �p&K','',0,'?'),('XO��R�m���&�-;�','wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/test/integration/test-timeouts.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/test/integration/test-timeouts.js',0,'��3���.?�(w�|','��3���.?�(w�|','_dO�c���`��hա��}��\"��!�.�͛','',0,'?'),('XU�&C)4��UQ]�su','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/bindAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/bindAll.js',0,'}*�1�G�j��`Ҋ�','}*�1�G�j��`Ҋ�','������\'�]�Ч�w�_Ku\r��Hrv��Q�3�','',0,'?'),('XYmV��n��-�(�\Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/every.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/every.js',0,'Փ��Cɺ��i�JC|','Փ��Cɺ��i�JC|','����@�.\0���}?v��낲1\r��ߥ>�$N�','',0,'?'),('Xd�l!�\\yG��wZ�','wp-content/plugins/envira-gallery/assets/images/icons/instagram-black.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/instagram-black.svg',0,'��ҝ_yOO����uI��','��ҝ_yOO����uI��','��r���\'���_�1� &C�(a�L�O��\rC','',0,'?'),('Xf���N�f���','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/node_path/y/bbb/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/node_path/y/bbb/index.js',0,'M�c\0���[�+��ø�','M�c\0���[�+��ø�','7��<JT����\\f�#��M��b�h�','',0,'?'),('Xg#�m\rf�j�7m�^','wp-includes/blocks/post-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v��Ҽ�Y���r','��o����l�KJi<\0I&�ysy�R�\r�6�.!','',0,'?'),('Xl�\n�Jȱ����E�','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/abstract.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/abstract.js',0,'���w��I[�H�{','���w��I[�H�{','[l�I�T�{�bӜ�Y3�����[�+.U4','',0,'?'),('Xo��h�3�`ϱ��','wp-content/uploads/cache/1a39e5fcf44c1993b8883c0365ad3d15f6d1cac3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/1a39e5fcf44c1993b8883c0365ad3d15f6d1cac3.php',0,'7�f�x\Z.�g��','7�f�x\Z.�g��','��Ԝ��}}lI/�cT���h�~��!\"','',0,'?'),('Xr��Iv����aS.�y','wp-content/plugins/wp-optimize/images/features/optimize-individual.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/optimize-individual.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]�>ͧaY�$�w|�f�','�7Ҝ���B;���=�0za64˅f�C��z���','',0,'?'),('Xt���Χ?p�@�x�af','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/indexBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/indexBy.js',0,'�\'US!�^fW!K�O','�\'US!�^fW!K�O','�;�O��8m!�qi�2mX�S2 R6\\_>x{��','',0,'?'),('Xuh͉@�l��V5�Dg','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/mapping-list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/mapping-list.js',0,'�z\n╘\"m�E!�L�','�z\n╘\"m�E!�L�','xN��n�;5P�(��p��y�u��e���6','',0,'?'),('X�)`ֿo�^\r�hd�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/randSign.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/randSign.js',0,'ν�H�צ�b�7Nn%#','ν�H�צ�b�7Nn%#','X��4�LFwH�E�pdC9!�p�i�!��','',0,'?'),('X�a�ٸ�C���','wp-content/plugins/envira-gallery/assets/js/admin-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/admin-min.js',0,'R��jy���*���','R��jy���*���','$lՏ��������mhPB���5��t��DT��&','',0,'?'),('X�x8�^2K窹�Ռ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_listCacheClear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_listCacheClear.js',0,'< u�[�y8�:�\Z�Jt�','< u�[�y8�:�\Z�Jt�','6)���edVB�Gɑ_�6}��,�l�T','',0,'?'),('X����Xؓ͢�S','wp-content/themes/mint/node_modules/bower/lib/node_modules/xtend/immutable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/xtend/immutable.js',0,'��U�O�W�h�>�|�','��U�O�W�h�>�|�','��w��/���bۼA��.�Ka��[4a���R`�','',0,'?'),('X����$W��ir�','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/stubs/Bootstrap/scripts/autoload/_bootstrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/stubs/Bootstrap/scripts/autoload/_bootstrap.js',0,'�z#U���[���!��','�z#U���[���!��','�\nU��W��e7���\\�a3��C7b�.����c','',0,'?'),('X����{)�?G��w�?','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/ConverterFactory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/ConverterFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B�{��7^�~�5��G','�:y.��p>���~��G�8Lށ�&�K�+HAt�;','',0,'?'),('X��ӭ���xb�%��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toPairs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toPairs.js',0,'N����>*���+','N����>*���+',',I��i$\"��=R]Y,i�BF�z�k�\0/G�','',0,'?'),('X�SKH__��-��\"(','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hashClear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hashClear.js',0,'IܡƔ\nER�Mwi��','IܡƔ\nER�Mwi��','ZJ�Z�\'Wt���7���߸�~�%�.�O','',0,'?'),('X�:8+˓2>V]��8�','wp-admin/images/sort-2x.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/sort-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Aìk�:�bтvFj','\'���aK�\0tGJ�Bq��XW*(J|1���z[(','',0,'?'),('X�i83��qb|��,\r','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f!Ɏ�Г�°�','F�v��^Z��Su؞��Ł��p�\n��Ck','',0,'?'),('X�z�C���08ȗB�','wp-content/plugins/gravityforms/xml.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/xml.php',0,'_y-���/��Ij��pw','_y-���/��Ij��pw','�k̋O]����V�\'4υZ�Ԟ*����mU@v','',0,'?'),('X��r*p��ē�D��w','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/remove.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/remove.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"���Ԍ��W.�*��','U�L��C�*��~�a�_3����Jl�l*�kW','',0,'?'),('X�AY��A��bM��^','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/VariableCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/VariableCommentSniff.php',0,'pW���e�mЕ��3.','pW���e�mЕ��3.','�`�ů�T}���ر��������3W`�','',0,'?'),('X�2�FGr��m��F��','wp-includes/blocks/button/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/button/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�����{��_��','��^�SnQ�f�@ս��mEl܁�X{���J�N.','',0,'?'),('X��p�5\'�d� �\'','wp-content/plugins/wp-optimize/css/wp-optimize-global-3-8-0.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/css/wp-optimize-global-3-8-0.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֤Ѷ���7jT��v�\\','\'�\nN�lbq#r&�i=��S��ʝt�� ','',0,'?'),('X�s��Yq���ePL','wp-includes/blocks/code/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/code/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a����V�0_��','�\"=��P��*ѐ|6L��E�?��%B�i�k','',0,'?'),('X��e�\"M���1�:�','wp-content/plugins/gravityforms/includes/class-gf-osdxp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/class-gf-osdxp.php',0,'����ި�\'���(l�]','����ި�\'���(l�]','�4o��P���-)Scw�(D{Z�<��^�_E','',0,'?'),('X�-��7P�>vůiau','wp-content/plugins/wordpress-seo/src/analytics/user-interface/last-completed-indexation-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/analytics/user-interface/last-completed-indexation-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4���o\'n����','��3V���@1RCM�\";��c��]Ebr^�:','',0,'?'),('X�y�#�e�фi�o0','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/DependencyInjection/TranslationDumperPassTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/DependencyInjection/TranslationDumperPassTest.php',0,'�s�~�>����/0Q','�s�~�>����/0Q','�^M`/��Y�3v�5�=_X��]-Ӥ�֯���','',0,'?'),('X�֏�|5_8Ep�A��','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/BufferStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/BufferStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʟ@�2$a��oJl<','Nk{n�\'_Mv�a|��guȟ�n&�F��I','',0,'?'),('X���G������z�X','wp-admin/includes/class-wp-upgrader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cr:�ctCRQ���h','�4�;1�J���(���,8�\'�c$#\Z��t=�','',0,'?'),('X�~�Vzl!_�]/�-3','wp-content/plugins/wordfence/models/firewall/wfFirewall.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/models/firewall/wfFirewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X��C��#B�sT�b','×GH����5kӹr�ܰRR��_�x�-�','',0,'?'),('XȚ\Z�M�HPY�h','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/upperCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/upperCase.js',0,'k�p�ᜳ2�q�R��x','k�p�ᜳ2�q�R��x','��w�]r�r��ULi\rݧ���>����p8�','',0,'?'),('Xʔ��1^!ہ�K\'c��','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/JShrink.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/JShrink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɬ�b|�)���ü','��m$�Gx\ZJָ�)����m�´���6���','',0,'?'),('X�k(D��qț��G��','wp-includes/js/jquery/ui/slider.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5��|���c�WK�xb�',' u�/\\G�؆�#���(�,gMw�+yțF��T','',0,'?'),('Xү����{e�','wp-content/themes/mint/node_modules/asn1/lib/ber/types.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/asn1/lib/ber/types.js',0,'��G�j(Y�A���O1','��G�j(Y�A���O1','Xډ9�#�T��\\\"�/L8�F�5��B\n20n��\nK','',0,'?'),('X֚�����G+7��D�c','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Engines/EngineResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Engines/EngineResolver.php',0,'\'��_s��k*nF�e���','\'��_s��k*nF�e���','(�����{Ln@�-�E�H��� t�rmS�','',0,'?'),('X��N��8�j����c�','wp-includes/blocks/post-excerpt/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-excerpt/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=u�`��6��R�B\'�','���X�9�s�3�|����y���a,[�a1','',0,'?'),('X�^��N�]{�1]\r\"+�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/const.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/const.js',0,'0=��S���a��&�','0=��S���a��&�','W�ѭë�A�k5xr��}|��=^f\"�(�','',0,'?'),('X�1����\nIhj�q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_readable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_readable.js',0,'��B�5���HUY}߹�','��B�5���HUY}߹�','j{Y�䤣�\Z����x����D�ʝ�@�<e','',0,'?'),('X��@;yl��-�kf3C','wp-content/plugins/gravityforms/includes/save-form/class-gf-save-form-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/save-form/class-gf-save-form-helper.php',0,'H�|{����A�e���\n','H�|{����A�e���\n','6=\\;N��/4vTNNPW0��e+����','',0,'?'),('XݸnzW�z��kgZ،','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/FileParser/Json.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/FileParser/Json.php',0,'!�t\"L5�.��62 D','!�t\"L5�.��62 D','�@k̗+��5�g��P�~4 �.O�\Z�(�On�f�','',0,'?'),('X�+hv����J��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invokeMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invokeMap.js',0,'\'j��9�\'Bh���','\'j��9�\'Bh���','�k�}����cU~S\"�J\'>\"c�(\r�];�:z:','',0,'?'),('X�=�2h4�/{�+','wp-includes/spl-autoload-compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/spl-autoload-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��u�{�t���','��,�Z\rM >܅��g�p�/� Z\Z#`!�.','',0,'?'),('X�TCW_^��og��','wp-admin/includes/class-wp-debug-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-debug-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���&�p���z���','�)cu���:[ܿ�n����� |��3��jN','',0,'?'),('X��1��ء� k��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��&\np:�.�eD�Ɋ','\0��xov@�+�c�n�Y���=1_cm1','',0,'?'),('X��lm(��W,8`�d','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseWhile.js',0,'*4b�1ɻ��Z�X\'+','*4b�1ɻ��Z�X\'+','�\'���� ;X��F1\"px��o�%4{_','',0,'?'),('Y\0�O|$�B�Oa�0�U','wp-content/plugins/advanced-custom-fields-pro/includes/deprecated.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/deprecated.php',0,'�ub��\"�����2&�','�ub��\"�����2&�','m�L�2��6 p&,�e�p�T�F�.v\Z��','',0,'?'),('Y�����H= �fؚ�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%\0�Z�Y�����','�T2����\'��[?9H�H�FQq&��17�','',0,'?'),('Y$����w&n<','wp-content/themes/mint/node_modules/domhandler/test/tests.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domhandler/test/tests.js',0,'��3xO����C>��','��3xO����C>��','O_����V=[:�6�\"�jI>�?�k�����k�`','',0,'?'),('Yc&�w�Vk�k�','wp-content/plugins/envira-gallery/src/Functions/cropping.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/cropping.php',0,'�n8���b��n$Y��','�n8���b��n$Y��','�f�p(nC��C x��ǁ�O�z�A��','',0,'?'),('YzP���� S��C�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/forOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/forOwn.js',0,'H�V7�!��|�W!�Z','H�V7�!��|�W!�Z','���v<�?yGw�2�u\'��ݭR����I(�','',0,'?'),('Y!Q9u�Y+��zT��*','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php',0,'��W��}������B=H','��W��}������B=H','�jPG�\r�uDc=p\Z������tz�m6=��','',0,'?'),('Y(�K���g\0��_��','wp-includes/js/dist/annotations.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/annotations.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P[�ȼ�B]��\0��Q',' �^=��du��[�Ӛ�����fdy�σ��\n','',0,'?'),('Y,Qp�gmu#�e���~','wp-includes/widgets/class-wp-nav-menu-widget.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-nav-menu-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��oD���gI]�.op[','U��ŋ�d�#�mdƂ26�\r�z,���v*�f','',0,'?'),('Y.�{=�c�F���C','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Formatter/MessageFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Formatter/MessageFormatter.php',0,'D�I���C����@�B','D�I���C����@�B','�r�I�^��J�d����K�9?��N��#����','',0,'?'),('Y/�ޑ� ���\Z���','wp-includes/js/dist/escape-html.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/escape-html.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W�0�OĎ�X�*Z��','A� �P� S��_:f\'/�%�M��,�','',0,'?'),('Y9wjH(q� �$��x','wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/examples/g.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/examples/g.js',0,'*�,u�`��uf���(�','*�,u�`��uf���(�','�1���*���XJր����τ��!��ZP���','',0,'?'),('Y;ό9B�J�Y�q\'v','wp-content/plugins/wp-reviews-plugin-for-google/tabs/get-more-features.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/tabs/get-more-features.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'b�_��&�����','�R?�o�}���R��M��W��m*���\"^�','',0,'?'),('YBt\n�\nc�ݟ.��vi','wp-content/plugins/wordfence/views/diagnostics/text.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/diagnostics/text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z��ɬ�5�3���;�','�n�TY/൪_,nl�[�lW�����ZA�s�%','',0,'?'),('YC��p�n#B��)*q','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js',0,'0����ZQ�#���','0����ZQ�#���','�P�PN0��l8OK,1����$�s;K,�3ܓ','',0,'?'),('YM�<R?���\\Ü��','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchTag.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchTag.php',0,'��%q�]�f}�\r��C�','��%q�]�f}�\r��C�','0�-�\'�I���^�(5s����kIsW�-','',0,'?'),('YPq7g*d\"�.��','wp-content/themes/mint/node_modules/cli/examples/static.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/examples/static.js',0,'\0�/��0��A6l','\0�/��0��A6l','m����\"�d�l�G�m��ϟ|i�f_���1','',0,'?'),('YV�2��9}D8�','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�CZ?��@J�N_ji<�\Z','�<�H���\"��F�@����%���1`7<�� ��}','',0,'?'),('Y[r6\0��[��NN\"R�]','wp-content/plugins/advanced-custom-fields-pro/includes/admin/tools/class-acf-admin-tool-import.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/tools/class-acf-admin-tool-import.php',0,';~�����/�f�,�',';~�����/�f�,�','�%Q���y��ᬛ��n�N�8�%���N+','',0,'?'),('YpZW���xO���c��','wp-content/plugins/envira-gallery/assets/js/media-insert-third-party.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/media-insert-third-party.js',0,'U��]��}�k�E�y�','U��]��}�k�E�y�','*m��vji�3Q:�8O�}�B���~h.�f�','',0,'?'),('Yr9q�ӷ�e��|L�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/any.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/any.js',0,'C���~[[�\0Wo���','C���~[[�\0Wo���','�ޙѝx�p%�J]n��D���e�+#�Bn','',0,'?'),('Yt�L�����B�^��','wp-content/themes/mint/node_modules/uglify-js/lib/output.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/lib/output.js',0,'���_l,8Է�s~���','���_l,8Է�s~���','}���W��BO����bDunI\\O��m�#��','',0,'?'),('Ywv��2:�\rV�\\�{�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/min.js',0,'W \Z�����<n�|�','W \Z�����<n�|�','�\Z�vQk\0��Lz�s��0�r\rA:\rjq��','',0,'?'),('Yye��FV�WU�ߦ�g','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php',0,'I�:H��ώ�!\\`��','I�:H��ώ�!\\`��','���[�Y��LL��<c�fT�x@k�`HlW','',0,'?'),('Y{� ��xB?���M�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/TranslatorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/TranslatorTest.php',0,'�ě��Q�Y�ڷM','�ě��Q�Y�ڷM','��a��N�5M��I�x��d���P��','',0,'?'),('Y�6\0>�,�ȡB4>��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/with.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/with.js',0,'���\n�(|�T�y\Z�','���\n�(|�T�y\Z�','��;��ݰ����~��_�:�j̕{�`D蠃_�','',0,'?'),('Y�La���h�(','wp-admin/edit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x��BI���j����p�','�G��X��Ncw��/-����w\'i����6J','',0,'?'),('Y�,�e�A��w�`���','wp-includes/images/media/archive.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9����h�\0��ì�u','\0�Bb�3��\'��\'��)JG ��](G�9Pr2 s','',0,'?'),('Y�L53j�*f(X��','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/pathfilter/deep_ref/main.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/pathfilter/deep_ref/main.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('Y�C�RZ��V.[]�p�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/requirements.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/requirements.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')��^����b���','h\\AG��M�|� ]�MU�sT�7��\n��è','',0,'?'),('Y���^M|d\Zv�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/take.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/take.js',0,'k�u:�|�阪��k','k�u:�|�阪��k','֓6]��X0�O�. \"l 9���-�~$','',0,'?'),('Y��i<���f0��}s','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-d6d11dee.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-d6d11dee.min.js.gz',0,'��߮FIfh�yY�� ','��߮FIfh�yY�� ','�aM;uCk���#�t)��J\"=+��U%l�','',0,'?'),('Y�<\\�(jΈ�6b):�','wp-content/plugins/wordpress-seo/src/integrations/alerts/trustpilot-review-notification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/alerts/trustpilot-review-notification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F|�O>I[}~C:��xI�','�eV�Lxk:��G�_7�b�z�<<SԈL��_�#�','',0,'?'),('Y�.ˠ��E�d�\'','wp-includes/blocks/post-content/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-content/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q@�EXbn��p�eН','V2����, ��`�\ZͯM&�\\xFq�[�Ɵ�','',0,'?'),('Y�BWy +�B�Om�z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#��:��N�\'�Dx��N','�[��_|А�~E����+�~�E�(�`�_��','',0,'?'),('Y�68�H;%,�_c\n�','wp-includes/css/wp-auth-check.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-auth-check.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aק1��~^w��F���','O�������l�T,�R3G ;��_7� ','',0,'?'),('Y�5�_k^��|u_��s�','wp-content/plugins/wordpress-seo/css/dist/edit-page-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/edit-page-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r��i$؞n��q�e_Sc','!X|y�X�h,�ۧ�S!͠xɟf�^D����','',0,'?'),('Y��!ca���!R����','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseGet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseGet.js',0,'�hR��C�H�Lx��','�hR��C�H�Lx��','��\'#÷[N�o�ο!��9#q���i1!','',0,'?'),('Y��#��j�D�_2n','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/keyphrase-data-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/keyphrase-data-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�nw��>5s١�@+ħ','Nݝ+� zR4 �턻~��9q:a�M���S','',0,'?'),('Y�&)_�����w�o�8�','wp-content/plugins/wordpress-seo/images/alert-success-icon.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/alert-success-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?h�0X���','�,�0\ZA/�Z�eK�O\\pң\ndF��\nef�i�','',0,'?'),('Y��s{>�8���o7(�','wp-content/plugins/wordfence/js/jquery.tmpl.min.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/jquery.tmpl.min.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\}�\"���7ڷ��DZ','�.I�H\Z�g\0�H!7`��gޠZ�zȄ�ž6|','',0,'?'),('Y���\'K`HP�Y�s','wp-content/plugins/wordpress-seo/src/config/migrations/20210817092415_AddVersionColumnToIndexables.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20210817092415_AddVersionColumnToIndexables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�HFjb�Uv��|�I�','�!�O�N�}#����쒦=���Ev݄�\0fTٶ�C','',0,'?'),('Y�J��|��[D��y�Y','wp-content/plugins/wordfence/waf/.htaccess','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/waf/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E\"xK��{�8�dS�','C����\'r�9��@�K�ކt�����w#@k�','',0,'?'),('Y��-�)�����?�','wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/html-options-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/html-options-page.php',0,'���:6�-�^]�Tl�z','���:6�-�^]�Tl�z','�4u\n�ZSwl\nQ�%ۙ����`4�|����','',0,'?'),('Y�6�{x��)`=��M','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/fixtures/foo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/fixtures/foo.js',0,'5�vĀ��bY��0�?','5�vĀ��bY��0�?','�a�Z���w\n�:�b�Z �-x�eB���7���','',0,'?'),('Y����]���ŞI���','wp-includes/js/jquery/ui/effect-slide.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-slide.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m��8���+�','��IF\0a{|�\'(�nJ�/�c�\n��-��:G9','',0,'?'),('Y��v\nS4��7Vh��','wp-content/themes/mint/node_modules/autoprefixer-core/lib/prefixes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/prefixes.js',0,'\n���$�K�T�~&�|�$','\n���$�K�T�~&�|�$','gK�\0��S�\\���� N��{T�}:�W@','',0,'?'),('Y�rA��r_ڄﺩV�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findFrom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findFrom.js',0,'{�:x;��?&b��','{�:x;��?&b��','e���w�v趔?��د�J�J��6gl7��V��','',0,'?'),('Y��\"v�I�G��uͻ','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Scope.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Scope.php',0,'Z8���n��\n��','Z8���n��\n��','\Z��l�#Y�*���z�u݅Cz9�e��]����s<','',0,'?'),('Y� @��`�\"t;����','wp-content/plugins/gravityforms/includes/fields/class-gf-field-date.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-date.php',0,'��=�*g�B�Q����','��=�*g�B�Q����','6 ��C��\\��;6a���S��{�+��M\'�Q�','',0,'?'),('Y�UL�5J�ޔ�v[�','wp-includes/rest-api/search/class-wp-rest-search-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/search/class-wp-rest-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �$[���wL��ua��','�ˍ^� ;\0��d2Œ�43s.~$[�Z\"','',0,'?'),('Y��O���2F&�\"���','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/gradient.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/gradient.js',0,'Y�P̰� �2�Ǯ�k�','Y�P̰� �2�Ǯ�k�','���S���gW�^����`p�E���i�','',0,'?'),('Y���~��S9_�I','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_initCloneArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_initCloneArray.js',0,'��L�$�o�ܼ ��x�','��L�$�o�ܼ ��x�','�_+ؕ����d�>\nW���4��Ȫ_���k�','',0,'?'),('Zu�RA�Q��~��','wp-content/themes/twentytwentytwo/inc/patterns/general-image-with-caption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/general-image-with-caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z�)\r^`vO�!\0��','����?\'�1E\n9�ZxG1�\'��~8����[�','',0,'?'),('Z���UƖ���*5�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-json/lib/util/isComponent.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-json/lib/util/isComponent.js',0,'<,�#z0|0:N�z�$','<,�#z0|0:N�z�$','I���:�,_Ka��Hm\0�z�,���H�)]p','',0,'?'),('Z^��ƕ͑��;��8','wp-content/themes/mint/node_modules/minimist/test/dotted.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimist/test/dotted.js',0,'�>�;|��y�������S','�>�;|��y�������S','r���$a��ea_lF��ɼ� ��Y?~L��P�&','',0,'?'),('Z\'L��Q���j�m�e','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-notes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-notes.php',0,'�Z\"�P ݧ�h}��~�','�Z\"�P ݧ�h}��~�','�g͘4�j�]�i�G��\\�ȉ�\'|oqOҡq�','',0,'?'),('Z核A@����t��','wp-includes/blocks/search/view.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/search/view.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ft� �s��Z���','���t띙�8�l�\"êK�8@�N�1��gY#x','',0,'?'),('Z<�[KUu�e����','wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[��_�@���F�','� ��Ώoo`�<��D�YQa�^<w���]��','',0,'?'),('Z�ұ�bi��.\Z��','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/GrantFactory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/GrantFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���x�*��^�l\r�n-','���$�=�Y#=Y�X�/2��o���s;Np','',0,'?'),('Z �̾��>Qks��\Z','wp-includes/SimplePie/src/File.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���2�́�cʡ��','%w �\'O;||K�nKL��v��2���,�KM�','',0,'?'),('ZL��v�N�%�%_','wp-content/plugins/wordpress-seo/vendor/composer/autoload_static.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8tH�vS���4��','@@bY�eX*����G-H�:�0�{�!�*����!�','',0,'?'),('Z�z�zн��*=�Jp','wp-content/plugins/advanced-custom-fields-pro/includes/wpml.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/wpml.php',0,'c����g*|�4�� �','c����g*|�4�� �','όrw�Z�J2�@�xض?��s?���l�Z ','',0,'?'),('Z3�\Z�l�1s�$','wp-content/themes/mint/node_modules/bower/lib/node_modules/loud-rejection/api.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/loud-rejection/api.js',0,'�ŀ�)m�95\"�','�ŀ�)m�95\"�','�.Ds�=A����K�^𥏏�����\n��9=','',0,'?'),('Z4<n?e�����','wp-content/plugins/wordfence/lib/wfConfig.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\rY�E��d�݊U','���B�ڼ����{���\n��`�h2-˯NL','',0,'?'),('Z5�CS_��\0�6\"��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/QueueableCollection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/QueueableCollection.php',0,'n�p4L�F�ً\'P�','n�p4L�F�ً\'P�','����CeI�c7`�ȑ������)�V)��4�','',0,'?'),('Z9���}.��J��k=�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I��\Z\n�ӣ�','i>z���R�@������k�W��6u�k�y�','',0,'?'),('Z:cX�L��j���Nc','wp-content/plugins/wordpress-seo/js/dist/languages/hu.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/hu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�W?(07���*(','B��֥v�&/\Z+hk�ƛ��.��1�!��','',0,'?'),('Z>�n؏/q��Nb�','wp-content/plugins/wordpress-seo/src/helpers/import-cursor-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/import-cursor-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=��\"x�������#�','��\\Ե2��˚���fw�S�jD0�s��}Q','',0,'?'),('ZA�P��z����','wp-includes/blocks/pullquote/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D|s�}Gq�*J�@W�','3�8����Ǣ�]��0D$�|��B� ]s','',0,'?'),('ZD�:-h�${�ma�','wp-content/plugins/wordfence/images/sort_desc.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/sort_desc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?զ�)X�?�N�','b�EԚ�B�#:�(�#�=_(�\Z���|��U�#�','',0,'?'),('ZG�n:���@���T','wp-content/plugins/advanced-custom-fields-pro/lang/acf-en_ZA.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-en_ZA.l10n.php',0,'X6�P80\0�M�P�','X6�P80\0�M�P�','�G5�3���#&J��}�gw��ò�sG�{9g��','',0,'?'),('ZH�\Z��\'�B��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsRegExp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsRegExp.js',0,'7�{�QD%���=�Ŏ�','7�{�QD%���=�Ŏ�','3�&:#\'#m]�zJQ4�g��tڏxG� !','',0,'?'),('ZL�`L ���;���','wp-content/plugins/gravityforms/includes/telemetry/class-gf-telemetry-snapshot-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/telemetry/class-gf-telemetry-snapshot-data.php',0,'��� Թ�����&#','��� Թ�����&#','�/68`#f˶�+\"��l�Ux�`IzP��?�Vv','',0,'?'),('ZTd1�y���/��','wp-content/plugins/wp-migrate-db-pro/class/Common/Migration/FinalizeMigration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Migration/FinalizeMigration.php',0,'�v�y�������M6','�v�y�������M6','�5z�Rj�#�����ů�jv�;��','',0,'?'),('ZV�0��ݤj�.|�� �','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/filter.js',0,'�t�H�%��+\n��','�t�H�%��+\n��','V�7)�K�T��tV0�VȨf��9��~0ͼ��','',0,'?'),('Z_P%0����]`','wp-content/themes/mint/node_modules/shelljs/make.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/make.js',0,'|�X��yvDƐj�o8','|�X��yvDƐj�o8','��`���\\��\r�`�\n�IʀVs΄���h���','',0,'?'),('Za��a���|�8<u�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isNull.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isNull.js',0,'�\Zc�&�3)���\rs�','�\Zc�&�3)���\rs�','!ậ52�d^VT�ZL���4�A*���UA','',0,'?'),('Zc{�<����5','wp-content/plugins/wordpress-seo/css/dist/metabox-primary-category-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/metabox-primary-category-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=�ۡ{U�?pZ\'ے?','y�e�G�W#,�AY/�7�aʨ�4㼫s�y��','',0,'?'),('Zd����kL��ş�T','wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t�5�<7��^A�nr�','�k��+Q�Ⱥ�F�4���/r��ij�X���j�5�','',0,'?'),('Zu��%�=�,#��ǘ�','wp-content/plugins/wp-optimize/compatibility/class-wpo-translatepress-compatibility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/compatibility/class-wpo-translatepress-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+�\0F�#�l�6��r','B��nS͋ڽ\'��_�*�C⒚�c�C�','',0,'?'),('Zx��1�2K�Z�,��','wp-includes/customize/class-wp-customize-header-image-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-header-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\r�H�=�#b�(r��E','y��^�D�E��a�z�-�O96^�� $�F�J�','',0,'?'),('Zy�Vӛ7�\'��UQdR','wp-content/themes/mint/node_modules/bower/lib/node_modules/package-json/node_modules/object-assign/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/package-json/node_modules/object-assign/index.js',0,'k��ؿ���G��A87�','k��ؿ���G��A87�','��G��m3g]r\r%�8a�Ғ�ҿ�K��','',0,'?'),('Z}My�R6��#�`v\Z�s','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-list-item-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-list-item-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0E�����\Z�K�ԏ~','GΪy*+���q��-������\'�m��7P','',0,'?'),('Z���`̚��a2<T\\�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/PasswordBroker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/PasswordBroker.php',0,'��;�::+,����','��;�::+,����','�E��wMA%qe-�s��ws�*Q0y?��ǒ\n','',0,'?'),('Z���P2�g��4�S�','wp-content/themes/mint/node_modules/bower/lib/templates/helpers/colors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/templates/helpers/colors.js',0,'b��ǩ�D*0��Y�','b��ǩ�D*0��Y�','� ���,ƈg>��n��\"�Cw��$+4vr�D2[','',0,'?'),('Z� >XX����m �','wp-content/themes/mint/node_modules/coffee-script/lib/coffee-script/grammar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/coffee-script/lib/coffee-script/grammar.js',0,'���WX���U=q��Ar','���WX���U=q��Ar','��_�>��@���<|o��\r�o��?S���>','',0,'?'),('Z��0s{�\0Gt��Z','wp-includes/blocks/categories/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/categories/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m!�^�̻�lPâ','�r)a�Ӟ���hut����\0��+�Ua','',0,'?'),('Z�.zY#����O��`)�','wp-content/plugins/wordpress-seo/src/integrations/front-end/rss-footer-embed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/front-end/rss-footer-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M}��U���)%�','4�H\0 �=��(/��������L���2\0�','',0,'?'),('Z���A�m��u��\r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/ordinal.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/ordinal.js',0,'Pt�L���e�J*}���','Pt�L���e�J*}���','c��] ��\\I�I��X3&����X�ȷ��','',0,'?'),('Z�WI��o��H���','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Translator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Translator.php',0,'J&+�槐:��1�B�n','J&+�槐:��1�B�n','�l�<�T}�5.HZ�`;��p���\ZU','',0,'?'),('Z��8�\n���ϝ���','wp-content/themes/twentytwentytwo/readme.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',��gM�����+�I','*��6�?ǶF�O���2H�M~� c!�������','',0,'?'),('Z�_\"��~�J�����','wp-includes/js/wp-custom-header.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-custom-header.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��g,ﶸU�����','W�#iԽ�M�ǟ�v(����Q�\rR����C��','',0,'?'),('Z�.�l��E��%�/�8','wp-content/themes/mint/node_modules/argparse/lib/action/append.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/lib/action/append.js',0,'A�5S��p��R�','A�5S��p��R�','i��\'���A��9ҽ��+����z���','',0,'?'),('Z��я�ݒ��S�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�\Z^Z�HG�%�O�','�m���c�;�\ny㐲��0,�5���F|=�C','',0,'?'),('Z�=��Ӷ�/�-|�','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/BnB.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/BnB.php',0,'b&�굥t��P�N����','b&�굥t��P�N����','X�m}�����j��a��R�%j�Gqެ��9','',0,'?'),('Z�i���yH��a�/�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/list-empty.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/list-empty.php',0,'�7�8�Rk��Qr�����','�7�8�Rk��Qr�����','�p�1��)�a]��:Ot��~�7�oE}I� {�','',0,'?'),('Z����� %/�Z�z9��','wp-admin/includes/taxonomy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*��{j���QP��B','��h�}�y�U�^l\r�<�O�ju�9=\\�#��','',0,'?'),('Z�\0��Y���� æfg','wp-includes/js/crop/marqueeVert.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/crop/marqueeVert.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\0���9��R���','K�cg$�e���2\\p�$�1z�����`CkJ�','',0,'?'),('Z��]rlM���/H<','wp-content/plugins/advanced-custom-fields-pro/includes/locations/abstract-acf-location.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/abstract-acf-location.php',0,'�\r�F��Nԯ���J�','�\r�F��Nԯ���J�',']��u?����4�*|�����{� �+̟/*R','',0,'?'),('Z���]��8�`?�+�','wp-content/themes/mint/node_modules/clean-css/lib/selectors/tokenizer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/selectors/tokenizer.js',0,'�\"�.�)�!_nk�','�\"�.�)�!_nk�','��M�.;���= �W\0ܴ6���\\��}S\Z6��','',0,'?'),('Z��{��K�����BW','wp-content/plugins/advanced-custom-fields-pro/assets/images/wp-engine-horizontal-black.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/wp-engine-horizontal-black.svg',0,'Ic���%\\^����F','Ic���%\\^����F','�����Z�g5{��7�[�c�t�}A�ZG�I�','',0,'?'),('Z�HR�Ia#�l}�E\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/lastIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/lastIndexOf.js',0,'���y/JķYDh��O9','���y/JķYDh��O9','�I�m-�^�j\Zzډ�����rH�뛅� 5�','',0,'?'),('Z���� 2=^b(��','wp-content/themes/twentytwentyfive/patterns/banner-cover-big-heading.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/banner-cover-big-heading.php',0,'l�H�]@���v<�','l�H�]@���v<�','���V�Nu��-)u��v�,^�M�R�4t{','',0,'?'),('Z��kc�a�D�\n.�~','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/now.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/now.js',0,'�X��,�_+��]���','�X��,�_+��]���','�s��ۭE>j8gՉ�4�^VJ�����Y�<�&','',0,'?'),('Z�߆��*�\Z��C��,','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/awaitDelay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/awaitDelay.js',0,'�PD��؝�\n�<��tr�','�PD��؝�\n�<��tr�','��x���Ί�g� �e|�����-/y���|^','',0,'?'),('Z���ϡ����\r�cY�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/var.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/var.js',0,'G�ߺ�^P@���G��/','G�ߺ�^P@���G��/','h�7%���h\"�3P-H�\n��ڂEw�4��V','',0,'?'),('Z�H7)z�u��Nx\"�','wp-content/plugins/wordpress-seo/src/config/migration-status.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migration-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?�,qLF\ZA�G','i�����L�>����b~�z/�5ʤ�q���','',0,'?'),('Z�*Է�!�\"E\Z�@','wp-includes/blocks/pullquote/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����J���}�Y','�FF8�QΑyޖ/��W�-ͣ�Í+����K[�','',0,'?'),('Z�R���r(�&b��:�-','wp-includes/css/dist/format-library/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/format-library/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O 2���t�O&t���','�|3RV���Y�b��yf��CEh ��%�5����q','',0,'?'),('Z��=ӧ�rc\"��y�','wp-includes/IXR/class-IXR-date.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/IXR/class-IXR-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I��VdB+A�J?��#','��{~�(#�\Z6u����,����?�jk2��`','',0,'?'),('Zꖱ�Ju���і�r\'','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/concatstring.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/concatstring.js',0,'N+�&�4�M��D)�','N+�&�4�M��D)�','����j!i�/��<^���.5�t���b���Z','',0,'?'),('Z���U�_�e܀R\"�C','wp-content/themes/mint/node_modules/jshint/src/vars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/vars.js',0,'b�C7;kL��;��J�Z�','b�C7;kL��;��J�Z�','���u\r������h�|Z�龊E�z�!�\n��','',0,'?'),('Z��72�E�C��7/','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/schema/minimal.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/schema/minimal.js',0,'��������d��8o�','��������d��8o�','w\\4��]re�� /�AʎI���(?������','',0,'?'),('Z�t�f�G���\n�uŭ','wp-content/plugins/gravityforms/images/template-library/eCommerceStripe.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/eCommerceStripe.svg',0,'-h]G���������{*','-h]G���������{*','�X��kT�T#���r�����߽K[�M��','',0,'?'),('Z���d�mvoQkt7','wp-content/themes/mint/node_modules/bower/lib/core/resolvers/pluginResolverFactory.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/resolvers/pluginResolverFactory.js',0,'��ր��O�ċiF�b�','��ր��O�ċiF�b�','��>}��gg���\'5Fz;�BZ~џ�:�','',0,'?'),('[_�[�+ekb���','wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Colors.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���}}}��Q$o�','냍3lB��{R�z�5`̱���\\�O���̘���','',0,'?'),('[i�y�([���ih�J','wp-content/themes/mint/node_modules/less/test/browser/runner-errors-options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-errors-options.js',0,'^��[\Z*(�yJv;�','^��[\Z*(�yJv;�','��C}@�E��G��qD!~+ԯ](�7:�+����','',0,'?'),('[�G���e�a\'�i��','wp-includes/js/jquery/ui/datepicker.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/datepicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���������:<��R','�:*aD֬�b��&�W/��rBpm\\5{��7V�l','',0,'?'),('[�hFZ��,���0','wp-content/plugins/wp-optimize/webp/class-wpo-webp-test-run.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/webp/class-wpo-webp-test-run.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h9j�\0Y���<�x�','F$�!\'��Q�z�Gwϸ1lX�n@�\n���Ry{i','',0,'?'),('[!������\nI��s8','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/notice.html.twig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/notice.html.twig',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����ڋ�Ï�R��','�q��:�o)-�لkhuۡo��9 �','',0,'?'),('[\"S2�3���kR6ܔ�','wp-content/themes/mint/node_modules/less/test/browser/runner-rootpath-options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-rootpath-options.js',0,'$D:��@�F 6V�0�','$D:��@�F 6V�0�','��ߢw�c���D+�.�4�o0��k��','',0,'?'),('[&a�d��Xm�0��Y�','wp-content/themes/twentytwentytwo/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ݞdXmk�_L�\0W���','��k��\\�h��6k��K4&�my0�g���F','',0,'?'),('[(��W�c�������G','wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�XW��b�K8���i�','.����77��5�O�nm��g��L�I�/we','',0,'?'),('[4��K�h��i�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_setCacheHas.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_setCacheHas.js',0,',r`;\n�q�P��לd',',r`;\n�q�P��לd','ӡ�كF�? ۵�O:����MN��9�r','',0,'?'),('[5���Y�Nh���K�M�','wp-includes/customize/class-wp-widget-area-customize-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-widget-area-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T:\'l�),�6��P�\Z�','�r���H]�yEwF/[0Z3�[���\"�','',0,'?'),('[9�ڥ�j�Q��փ�;','wp-includes/SimplePie/library/SimplePie/Author.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)�\r^럊�k3պ7',' ,���=�;n(}rN�-�lj4�ɡ��\\�+C','',0,'?'),('[9�J=\nuE\0O\n\\P��','wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�κ2��}�������','[,��<X�Yyy��~E�J�Z?6�\r~��ש����','',0,'?'),('[;O;��+�$���84','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-attachment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-attachment.php',0,'�j_ٖ_�CB��ǁE','�j_ٖ_�CB��ǁE','��E�����M�L���F\ny�9��!o>;�n','',0,'?'),('[=���Yw�����K=','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__construct.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__construct.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�^�{�4��Xv�','�D{@���_�ț��D$9A�4��4��ԏ�','',0,'?'),('[D/9��uS\'� en�','wp-content/plugins/wp-optimize/vendor/pimple/pimple/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Η@PS+U���$��','��O��}]`�j�˃ѩ���C2i�q��.�W','',0,'?'),('[E�x\"BL�\\l ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/result.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/result.js',0,'�?�\"�,8�c��n','�?�\"�,8�c��n','���A�f� ������Vɸ�ԥ�F��','',0,'?'),('[F�����Y\n@d#�b','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/CHANGELOG.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����y8��^��e�`{','���;�^,�������s0.:�V���`�','',0,'?'),('[G��]�~$�*2�EX','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/TargetNotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/TargetNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)�S���Gag�V�','�|\'��_�P�C�z��,�F���{Sf�2�=','',0,'?'),('[Wl�\Z��tPar�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/decode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/decode.js',0,'�V��y5\"i���6�<','�V��y5\"i���6�<','�y��������aO\0*z�\Z��qG=5�.p','',0,'?'),('[[|�n_��f:z�עH','wp-content/plugins/wp-migrate-db-pro/version.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/version.php',0,'�q�mԆ��\"���','�q�mԆ��\"���','�^�[�h t?6�8Rm����էJ�skT��l','',0,'?'),('[^��G@%p�� ��˲I','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/strftime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/strftime.js',0,'�Zޒ}���?2G�d','�Zޒ}���?2G�d','o�j�7�U3$+�i��F�/�Q͉>M3B48','',0,'?'),('[_�L���Vm�%�\Z3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/lib/_stream_duplex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/lib/_stream_duplex.js',0,'��<�=�����`��>�','��<�=�����`��>�','i�N�K���(F����2������K;���YT','',0,'?'),('[_肒9�\\�� ��','wp-content/themes/mint/node_modules/pako/lib/zlib/inftrees.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/zlib/inftrees.js',0,'ȟ�u�nV���g_���','ȟ�u�nV���g_���','!\'R���Oc��+:�%^��_�\no�\'\\@���e','',0,'?'),('[cR��T\n��`�+��','wp-content/themes/mint/node_modules/concat-stream/node_modules/isarray/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/isarray/test.js',0,'���Smv]�ET����','���Smv]�ET����','D��C���\\�]#���W�m�������ĭ','',0,'?'),('[f);�s��n�ؐ�E�','wp-content/plugins/wp-optimize/images/notices/sale_spring_24.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/sale_spring_24.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','嫉;X�]:\0��q','�N1���c��#>~ͳ�d+X];j��87?','',0,'?'),('[iJ�%\r4��5��j','wp-content/plugins/gravityforms/includes/embed-form/class-gf-embed-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/embed-form/class-gf-embed-service-provider.php',0,'o\'�m�i5�`�����','o\'�m�i5�`�����','z�y�`z��v~�K�i�Q�jW�\"�\0Μt','',0,'?'),('[t�s8�U# ����\\_�','wp-content/themes/mint/node_modules/pako/lib/zlib/adler32.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/zlib/adler32.js',0,'>��iUӷY�&�<I�','>��iUӷY�&�<I�','Iڶܔ+�I��=����va������\"c�5�','',0,'?'),('[u�/|�-��`QQ-.i','wp-content/themes/mint/node_modules/bower/lib/util/createError.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/createError.js',0,'�i�e�\"5���T��_','�i�e�\"5���T��_','̂�����M8J�*���2<k[_�UZU�`<','',0,'?'),('[}oh�M��p�jX�\Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/map.js',0,'I��9��A�FJ�G','I��9��A�FJ�G','��`���tЉ%��t�Pu&�g����~�r','',0,'?'),('[~6��Mp�\'���q','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-wpseo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-wpseo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��UQ#�b�Q���#E5','�\Zm\Z!F���=���xًu�yAvst��Pޅ��','',0,'?'),('[�g�Uk��d�`�ݾf','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-emptyBody.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-emptyBody.js',0,'���ِe@��ˇ�y','���ِe@��ˇ�y','�����,Qrͨ�26�=�V�.�����ߔ�','',0,'?'),('[�,��j�rFl/��9','wp-content/plugins/wordpress-seo/css/dist/new-settings-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/new-settings-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cđ\0�>ڦ��\'+�|','�)� ��.�5�Aa�}y�]�?*º�9��g2','',0,'?'),('[�0hd���G��7���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/trimmedRightIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/trimmedRightIndex.js',0,']=9K����5%�S�',']=9K����5%�S�','�n�k����3ENb�\\���HOm�','',0,'?'),('[�����<(o��Gü','wp-content/plugins/advanced-custom-fields-pro/includes/legacy/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/legacy/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('[�ΡKf\"�d��K�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/totalDaysInMonth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/totalDaysInMonth.js',0,'#^IpY�7bNڐ�B�0','#^IpY�7bNڐ�B�0','��\Z��I�P��\Z�)�@l;i�䂴���','',0,'?'),('[��e$,?���y�o','wp-content/plugins/wp-migrate-db-pro/class/Common/UI/Notice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/UI/Notice.php',0,'\\�ڊ���j\"��]�R�','\\�ڊ���j\"��]�R�','c���&��rKBh� u �L����Y���&:�','',0,'?'),('[�5����a\0֭e2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/enforcePrecision.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/enforcePrecision.js',0,'7$.�ia�{��W�l�t','7$.�ia�{��W�l�t','���d|Fu��R�:���]@H�����E#�>Tu','',0,'?'),('[��#ܧ\Z>]��<�','wp-admin/css/colors/ectoplasm/colors.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/ectoplasm/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[�vY�iܲ ��i','\\�c�މsU�$c�B[�/�ny����)|','',0,'?'),('[����q`1�����x','wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-runner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-runner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',���W�9�B����','eZ9[L-�e_��r��e�G\"�\'Km���\'','',0,'?'),('[�>�x�;�wn/t�H','wp-includes/js/wp-emoji.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-emoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>�e��H\'�]e�B8','�%)9��\nKi�t���5,��-�)�і�Z','',0,'?'),('[�BڷS��W���E��','wp-content/plugins/gravityforms/includes/theme-layers/api/json/functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/api/json/functions.php',0,'���u\"V]�\\�g\'ğR','���u\"V]�\\�g\'ğR','�|Y�J~�Rb�?�W\"�t�1JAQ�����','',0,'?'),('[�Uz� ?��t�����F','wp-content/themes/mint/node_modules/bower/lib/node_modules/isstream/isstream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/isstream/isstream.js',0,'�L�̨�/��/.]��','�L�̨�/��/.]��','�b�s���� ��DŽ�v�}KؑJj\n8\"��ŋ�','',0,'?'),('[���7Z/Y�k�lj�','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/example/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/example/async.js',0,'y�\Z~�\n}/|�8f���','y�\Z~�\n}/|�8f���','�iV�T�Z���1*=3��V���A:���W��','',0,'?'),('[��Յ�}��|��V','wp-content/themes/mint/node_modules/cookie-jar/tests/run.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cookie-jar/tests/run.js',0,'axQ�{ɣo]^w5�g��','axQ�{ɣo]^w5�g��','Q�&�U��m���j��Xf�� ;���^�','',0,'?'),('[��Ko�5��D/�$E �','wp-content/themes/mint/node_modules/has-ansi/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/has-ansi/cli.js',0,'�?f�V{�&�s8��','�?f�V{�&�s8��','8*����X:T<�:�BLaSǞ�O-��d��u��','',0,'?'),('[��2�;��:�ע��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/lodash.js',0,'[ʮ�ߘ�\r2@V�-','[ʮ�ߘ�\r2@V�-','�.m��j�6A��6J��L�b�cS���b^�rc','',0,'?'),('[���n�5�T�������','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-7bc10e49.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-7bc10e49.min.js',0,'Z\0ӌ�<T���1}to4','Z\0ӌ�<T���1}to4','�\'���v�����`�a�F̣1�z�Pf?\0�Gv�k','',0,'?'),('[������U���t��@','wp-content/plugins/gravityforms/includes/embed-form/config/class-gf-embed-endpoints-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/embed-form/config/class-gf-embed-endpoints-config.php',0,'&�)��v�<![�0','&�)��v�<![�0','\\&ZӬ����P��Ƭ�=Sŷ�4����U0܆�','',0,'?'),('[��A�0�b[�B�G','wp-content/plugins/wordfence/images/logos/shield-free.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/logos/shield-free.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m3k#�^��\Z\Z+W','�Lmd��1��a ףM�\\�m(#p��^1M��','',0,'?'),('[�v�Y�=�r��K�%�\n','wp-content/themes/mint/node_modules/less/dist/less-1.7.3.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.7.3.min.js',0,'�N*���{jm��@w�&','�N*���{jm��@w�&','L���Ё�xk&�/�%����a���4zf��_I','',0,'?'),('[�I�l!h�������3','wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@�Z�ɳ�|3�','��_��i���c���B���7H�%K ��','',0,'?'),('[�I�aC�����Ň��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/min.js',0,'�6���1�3\0ck��ӈ�','�6���1�3\0ck��ӈ�','�\\�+p��շ�R|V��2�D�b�Vl�D:','',0,'?'),('[�x\\M-��;!��ܶ�','wp-content/themes/mint/node_modules/hawk/test/message.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/test/message.js',0,'n���4�6��4���Y','n���4�6��4���Y','�J��&�V `n��L-��r%[�z4�&�?G��','',0,'?'),('[�BX\n��Q����c�','wp-includes/blocks/file/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/file/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���S�4��/�gyT�','i��=|����3ؐ�+�lf v������BY','',0,'?'),('[��2���j����V�','wp-content/themes/twentytwentyfive/patterns/template-404-vertical-header-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-404-vertical-header-blog.php',0,'f�l���J��G�x�a�','f�l���J��G�x�a�','������&��ad-@!�>5ŜL;3,\"5��n��','',0,'?'),('[��ӽ�$�qj�g_5�','wp-includes/css/dist/block-library/editor-elements.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/editor-elements.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vHօ�<��Uj+�@T','����VLb����4d�op���w���X�K��','',0,'?'),('[�{Lzҍ7A��җt�','wp-content/plugins/wordpress-seo/packages/js/images/succes_marieke_bubble_optm.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/succes_marieke_bubble_optm.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n ti����[D���','�E�Vhuv�a!�A�h�į��\rR�8*gu9$}','',0,'?'),('[��P4_�D�:�Q\\','wp-content/themes/mint/node_modules/grunt-modernizr/lib/build-files/html5shiv-printshiv-3.6.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/build-files/html5shiv-printshiv-3.6.js',0,'���1&�N�k���l�','���1&�N�k���l�','4�Y���!q� �C9�Ź(x�w��.��;9��\ZP','',0,'?'),('[�q�E\'�a�?���','wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̝n8�R�OM�Skʁ','��݁)���8|K����Q�y1NK��rR;\0','',0,'?'),('[�>��r><8X�*�,Y','wp-content/plugins/gravityforms/includes/assets/class-gf-asset-processor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/assets/class-gf-asset-processor.php',0,'��FS�2u�AH���','��FS�2u�AH���','��.�=��i������^�`�L���r�','',0,'?'),('[�ئ�m��Np�h','wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��mD<I-�o�@�. �','hc�)e�vd���k?�\r�l�9T]��]��͏','',0,'?'),('[���lx��{��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/escape.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/escape.js',0,'!���7r۬��m5�\\k','!���7r۬��m5�\\k','��G9>�v�풄�̂���C���lq���@��n��','',0,'?'),('[ꠏ�|K�o�یb7�','wp-admin/user/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/user/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xCS6�LC�2!�u�','�`K����y2M��plξ\"a\0אּ�t�ޡD','',0,'?'),('[�k��W-�1&g),&�S','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/union.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/union.js',0,'{���lw�g��1vM','{���lw�g��1vM','�E�kSy,�r1f���4#9��]$�-�m','',0,'?'),('[�\r^`oz?�FV��$�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/index.js',0,'���]Y�䷉�f��#�','���]Y�䷉�f��#�','7so�x9n�&X������\r��!\"�]�@�o��ݴ','',0,'?'),('[�Մ)��ƚ2]���)E','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/InflateStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/InflateStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rm�,�09=���Vƫ','@���#�!�l�\Z������蠤��I�(','',0,'?'),('\\\0#�jdG��A0Pm�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/setWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/setWith.js',0,'��J?��d��IJ��','��J?��d��IJ��','��������\\b��َ%��W�X�����','',0,'?'),('\\\0����� rw2�)�E','wp-content/themes/mint/node_modules/lazy-cache/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/lazy-cache/index.js',0,'@8��ش��~�6�`$�','@8��ش��~�6�`$�','���ʂ�P���ǤA��| ������6גc','',0,'?'),('\\{&nn���w�ΩX3:','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/root.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/root.js',0,'t�n�k�[i��k�s�,','t�n�k�[i��k�s�,','���\\>6��ct�֧�k�ǥ���^��Ge','',0,'?'),('\\�%�?�>����e8','wp-includes/class-wp-block-pattern-categories-registry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block-pattern-categories-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o�3��sCƻy�6�_R','\0qҥ�i��/sc���m��������','',0,'?'),('\\��#���r�wF','wp-content/themes/mint/node_modules/bower/lib/node_modules/rimraf/rimraf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rimraf/rimraf.js',0,'zM�? Bg��`�`�A','zM�? Bg��`�`�A','ӫ7�\"�TRڣ̶�GO����[MU�t��6q','',0,'?'),('\\>r}��=��_P[�','wp-content/plugins/envira-gallery/assets/js/lib/jquery.easing.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/jquery.easing.js',0,'�Z������Y��c��','�Z������Y��c��','�\'��Uz�vD{��R�V��ݚ1~|II��','',0,'?'),('\\�H�~�z�)x�7C*','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/x509.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/x509.js',0,'1���L!�h�o>Um','1���L!�h�o>Um','�NOW>����R,1���-�7������ŭ�','',0,'?'),('\\q�Xr�`}V)��j�s','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/mdb-branding-transparent.edbb2b6f.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/mdb-branding-transparent.edbb2b6f.svg',0,'(�ʢE���SB����~','(�ʢE���SB����~','z�8M��32-�ȁ\\����a��Hp%�%Ҵ�','',0,'?'),('\\e&$�1I�>��Q','wp-content/plugins/wordpress-seo/src/surfaces/twitter-helpers-surface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/surfaces/twitter-helpers-surface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�O�\r���l��*','����4������,a��0���1�պ�y�','',0,'?'),('\\�Ɋ6O+t��jR�{','wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_man_1_optim.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_man_1_optim.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w2+�6:+t�T���@','`w,�ݯc/���>B���i�_Kh�iM?�','',0,'?'),('\\�����9�����','wp-admin/ms-upgrade-network.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/ms-upgrade-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qc��8���E�%��!',' �H�_c��Q�X��̤�ՏLs�ڭ�','',0,'?'),('\\\Z���c�?.+','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/elem-output.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/elem-output.js',0,'��.�n\"\Z��\\��[','��.�n\"\Z��\\��[','\"9�:���46/LHN�A֮��}�,x�4}�','',0,'?'),('\\x�\\u�j��ҹ>P','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/duplex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/duplex.js',0,'��DanoI� M<I.�','��DanoI� M<I.�','ǫ��@���v���*1DU\" hT~����','',0,'?'),('\\&�\'�`7jш9��','wp-content/themes/mint/node_modules/minimist/test/default_bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimist/test/default_bool.js',0,'�Y�u���TU&�;ELf','�Y�u���TU&�;ELf','N$�m�n���X����6*[�?��R)\\L�v�','',0,'?'),('\\4qn��7�}b�2)y@','wp-includes/blocks/comment-date/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-date/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���[�n�B}\Z�9�>?','#$Et��\'U�A3P�ss��*3�\\���?V\r���','',0,'?'),('\\=��i*����%��6�;','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0������6��m4','3�yU�Fi�vdH��ț��,3[*�\'�','',0,'?'),('\\C/{�_�b�� [��','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/soundcloud.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/soundcloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�縤�e �^0��','�iQ�����Ѝ� ���!P�Q�}��TĒew�','',0,'?'),('\\F��)(���BR@�}','wp-content/uploads/cache/78433a8bdd0cfd94bd095a0770ea356da71e57a4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/78433a8bdd0cfd94bd095a0770ea356da71e57a4.php',0,'��r��GE���d-V','��r��GE���d-V','Ĭ�\ZzLj�A�&S(�D�~}2��aI��)','',0,'?'),('\\H���:��u3�%�Fw','wp-content/plugins/wordfence/views/waf/waf-install-success.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/waf-install-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�2�H���$�\n�','5�(�/��PhJS�Z\"&]}���r�Ip�(�-t��','',0,'?'),('\\H��ju�˙�1���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/StatefulGuard.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/StatefulGuard.php',0,'}Ih\r S�>A�c��T�','}Ih\r S�>A�c��T�','��!]>E������2�j+�eEIڝ����n','',0,'?'),('\\J���Z�I�g�H��B','wp-content/plugins/wordpress-seo/src/editors/framework/word-form-recognition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/word-form-recognition.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AV7s��7�-]�2�ʼn�','\0ۺ��PpL~-�G�@�ڰ�l�ߟg� ���L','',0,'?'),('\\L�C�2kt\r��\'b��','wp-content/plugins/envira-gallery/assets/js/min/list-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/list-min.js',0,'���M��( ��>Y','���M��( ��>Y','r��)�ESIt[_��7���wS:�S��ER`','',0,'?'),('\\L�}��Y�~�la��','wp-includes/blocks/gallery/theme.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/gallery/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3J�D��Fĭ�~2�?','kRE�LM���X��]l���f,���*h�O�I{��','',0,'?'),('\\R$��GO΄���y','wp-includes/css/dist/block-editor/default-editor-styles.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-editor/default-editor-styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' +�bpe�����Q5�','MnP�S�0}s�vـ Cy�O�zO���z����%','',0,'?'),('\\U�s�:D���5�T\\�','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/readable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/readable.js',0,'3��k�9L���臺F','3��k�9L���臺F','!=FŔj���q!z~��(8\"/�h ��HW��','',0,'?'),('\\V�AKa�ydw�\nSQ�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php',0,'�>���:5���)\"`=�','�>���:5���)\"`=�','�mը��k5��3��J�Ϭ�ǵJ�L\"�B','',0,'?'),('\\X�w�M��[��~�','wp-content/plugins/envira-gallery/assets/js/lib/pollyfills.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/pollyfills.js',0,'��5����X�Pܱ]}','��5����X�Pܱ]}','�H����A�A��rMv�_�Ev$��T�3+k','',0,'?'),('\\[��F��DnSk��y','wp-content/themes/mint/node_modules/bower/lib/node_modules/read/lib/read.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/read/lib/read.js',0,'����1{~�mP}>��','����1{~�mP}>��','�u�\n�y���if6!:@�۲�t}����`Z�\0','',0,'?'),('\\[��i%Ͱ<��e�>�','wp-includes/css/wp-pointer-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-pointer-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�╄)���y-?�','�&��P�\n�e5�o,V?�A\Z�U�;��9�;��z','',0,'?'),('\\^zP^��n�cc_���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/groupBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/groupBy.js',0,'�I�2\rg����Z���','�I�2\rg����Z���','�m��IG-|�i��E`���Q\r�:ȴEܡS�','',0,'?'),('\\`<��@&�P���g�','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php',0,'~VT|,�2�D����n�','~VT|,�2�D����n�','�-���i�N6�j���Q�P�)PЕ�46�\0Z','',0,'?'),('\\`i�}~�I�ߩ �K','wp-content/themes/mint/node_modules/bower/lib/node_modules/throttleit/example.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/throttleit/example.js',0,'xi��`]1;Nx��Pj','xi��`]1;Nx��Pj','�{e\"c�k4.��7����٦�(N�p����Cw�','',0,'?'),('\\k;Sc(�Li`�]','wp-content/themes/mint/node_modules/esprima/test/run.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/esprima/test/run.js',0,'����@D�ω��\Z\'�','����@D�ω��\Z\'�','��CnÔ���; �k�W�|^������T2J~�h�','',0,'?'),('\\o�\r��x��b��6~','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/forEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/forEach.js',0,'���H�k���l.��','���H�k���l.��','������Y^6�%Z[yӚ��1|�+�\0�-��','',0,'?'),('\\sR�(6�C��Fݸ�Ջ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/propOr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/propOr.js',0,'�|�6����E�$3��J','�|�6����E�$3��J','��c���o�W!;D��-Vp��㒰���!�V','',0,'?'),('\\v\n��H/��-s��','wp-content/themes/mint/node_modules/uglify-js/tools/node.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/tools/node.js',0,'<U\'i�����\n���','<U\'i�����\n���','\0�g8ER���i�!=/�\Z��Bd�R�l��!b<','',0,'?'),('\\��� �6��5q��','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/source-node.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/source-node.js',0,'�͖E�INc;���i','�͖E�INc;���i','����\r:%(���d��*�ɐ��8A�5����','',0,'?'),('\\�S�U��{�R�8T�','wp-content/plugins/gravityforms/js/datepicker.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/datepicker.js',0,'�\\��(�}�����','�\\��(�}�����','�R�՚���2d����u��]�ר��ۤ�½','',0,'?'),('\\���+���~�~��','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-nb_NO.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-nb_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b��\\�R�V��#~J','�۶=Agxi_<Ш�v@��N����o G','',0,'?'),('\\���<dHV�|:kC��','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Exception/AccessDeniedException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Exception/AccessDeniedException.php',0,'n¿�6`:���0W','n¿�6`:���0W',':���a|9*�����W��p6q\0��{`I|J#�','',0,'?'),('\\�l ���v��G�R�','wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-indent/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-indent/index.js',0,'��(9��P���','��(9��P���','��E3>�O���rvc��?t�<3���e','',0,'?'),('\\�;l(��}z�o���yP','wp-content/plugins/wordpress-seo/src/editors/framework/inclusive-language-analysis.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/inclusive-language-analysis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Z�c��D�N�c','\0�[{���!_����G��g�sW!��\0MTv��','',0,'?'),('\\������7���Q�o','wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|��%;w���Q�8��@','wi>�6�Ƭ�4��.N�C���\Z�4�IO��','',0,'?'),('\\���c���\0�/','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/map.js',0,'�#�l(8�`\Z=�>ݛ{','�#�l(8�`\Z=�>ݛ{','��xـȧοcaO��^\"��~d�^;ވ�(K>','',0,'?'),('\\�͖�w���˶| :�','wp-content/themes/mint/node_modules/less/dist/less-1.7.2.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.7.2.min.js',0,'��9���\"nlq�X�','��9���\"nlq�X�','�4�DzR\r0y��;����zZ�wÇli>q','',0,'?'),('\\��{@U�>��5���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/mapHas.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/mapHas.js',0,'��@5�]\\ta8[��','��@5�]\\ta8[��','�zf��d�r��-4z7�K^Q=M�9ɔfG?','',0,'?'),('\\�т�?$�̈́8����','wp-admin/includes/dashboard.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�D���NR7�7}[�','L�`6�@\0��`�FcңZ�7���V\0�ºԨf','',0,'?'),('\\�Ҵ�2=���=P��','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-utils/test/spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-utils/test/spec.js',0,'v�4��D ��H\Z5��','v�4��D ��H\Z5��','�A\Z����O��zH���̯�N�s3�MLL#<��','',0,'?'),('\\��F�\'g�+��|\"\'��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����4���t�I��','���ɏ<��ک��Zz��0�b�k���q�n]�','',0,'?'),('\\�ds�!v/\r���7u�','wp-content/themes/mint/node_modules/less/lib/less/tree/call.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/call.js',0,'CZ\'�*�T��/`�','CZ\'�*�T��/`�','0e��)\n-K�����E��\"�To��%��6l�','',0,'?'),('\\���9���e�E�`�\n','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidClassNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidClassNameSniff.php',0,'�(�R�Z�_ϩ*���2','�(�R�Z�_ϩ*���2','\'���\\��m(���X�9d�v�� ��','',0,'?'),('\\����T����J^{','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/snakeCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/snakeCase.js',0,'��zz�a��r�GV\0�','��zz�a��r�GV\0�','e���C(�vk����㕴�/��3���4j\Z','',0,'?'),('\\���,݊�x��.�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/ForbiddenFunctionsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/ForbiddenFunctionsSniff.php',0,'Ӭӭl�N\n�R�|���','Ӭӭl�N\n�R�|���','~�=�\'���\'6nxu�}<�T�\"���h0','',0,'?'),('\\�h�)��Q��M�:�','wp-content/themes/mint/node_modules/bower/lib/node_modules/getpass/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/getpass/lib/index.js',0,'�v�C0���~B�','�v�C0���~B�','����}�&sW�}M�:�hd&W�4��r�ȗ<@\'','',0,'?'),('\\���.\r�xO(+','wp-content/plugins/wp-migrate-db-pro/class/Common/Migration/Flush.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Migration/Flush.php',0,'r.��\'6�q�߁a��','r.��\'6�q�߁a��','�O�p�Ito��Ӓ�����Q�*aH�Mp-�','',0,'?'),('\\���9̱�Q�&pHT�','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/index.js',0,'�O�CGx���i�4��','�O�CGx���i�4��','�:�ؗ~����Y�l����z)\'�#v9[KV�j�','',0,'?'),('\\�io��sB�9���c','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceIterator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ���6)������','34�B\\��m�=��|�}LL��8ޏ��cd�','',0,'?'),('\\ÿ5ԋZ^����ʦF0','wp-content/themes/mint/node_modules/nopt/bin/nopt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/nopt/bin/nopt.js',0,'q\n��7��P����','q\n��7��P����','�c��C]O�Ma Y��(c��2��_<R/��','',0,'?'),('\\�\0��>�+���Fb��','wp-admin/revision.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Znk�]?\nP\ZFt�','#�Y0�i�00 �u)��8L\n�L��B','',0,'?'),('\\�?P#7 �SA y\r�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Facade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Facade.php',0,'d�{�]�[�$OXd���','d�{�]�[�$OXd���','l�CZ5I�<JW�\'(B���E�����}]���!','',0,'?'),('\\׀�@��U�m�k~�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/transform.js',0,'B`㊑/��,Z��&�q','B`㊑/��,Z��&�q','�2�g�8P_\rt�Ωr���b.����/�\Z','',0,'?'),('\\�#��/�>��GA@Xb,','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/index.js',0,'�/Ȉ�K��k�QVyx','�/Ȉ�K��k�QVyx','<�u9�PA��.�iڃ�q/b/�Ծ̾%,-�','',0,'?'),('\\�L����\rn�i��','wp-includes/blocks/template-part/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/template-part/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[���\Z�u�7� ���','%���F.R8�c��@�B�LH�g#�Y�S �','',0,'?'),('\\��Le���/�s�','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericResourceOwner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericResourceOwner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V����>t�������\Z','<\rQ�QV;��|JR>R<P�?�������\\8�','',0,'?'),('\\�8�(�\n���4y�','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library-utils.c489c3c2e4a6c318faa5.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library-utils.c489c3c2e4a6c318faa5.min.js',0,'��HXV�^[y�q�n�','��HXV�^[y�q�n�',';�/kM\"� e��E�tin��;����.��','',0,'?'),(']Tc7���tS����f�','wp-content/plugins/wp-optimize/webp/class-wpo-htaccess-capabilities.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/webp/class-wpo-htaccess-capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vAK{Oي}e�C,�Z','�}�aݟ���;`���[Yc���=�Pa�����','',0,'?'),(']��P�%��A9�L�','wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreContent.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreContent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e~��\0�ē;^��I','�bX�LЖ�Ng��c�����Oy��-�q','',0,'?'),(']�J*ƒX��RE�','wp-includes/block-supports/dimensions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/dimensions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Uz��/\Z;n\'zQF�',':��a��.9=}`|n��ܽi{B�WA�hKL�','',0,'?'),(']?��5|��$��\\� ','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/IniFileDumperTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/IniFileDumperTest.php',0,'&>�3��]��!z/3�','&>�3��]��!z/3�','\0z-��i��� �\0���A��P���F�Y�Ke�','',0,'?'),(']p�rnn��>�>�e�','wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.underscore.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.underscore.min.js',0,'�w���#��ʄ��','�w���#��ʄ��','x<�����%K���G0�R�Q5�ne�C��l�I:]','',0,'?'),(']��K��X��9�ߌ:','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue14.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue14.js',0,'\"i���Rz,FE,.�','\"i���Rz,FE,.�','2>�����]�8�Y���_����J�/��','',0,'?'),('] >!c<;�S���','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' l��#Y^�=u��','r�=X��,�lU���*�F]�� ZQ[6�qф','',0,'?'),(']g���\'Q��Ef��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/startsWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/startsWith.js',0,'�^B�/W�۷�_E��','�^B�/W�۷�_E��','5G՝`�v�����<����m����S�','',0,'?'),(']��Q2�ЦM��I�F','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/tap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/tap.js',0,'q\'�hc���2��. �','q\'�hc���2��. �','�b�T���!��\Z�0��{:��t�u%l�)��','',0,'?'),('](R�&!��1;�3��','wp-includes/js/wp-ajax-response.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-ajax-response.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R�4�.$�T���$i','Xrg Z�⻲�O��Ls�]0%�S�n��L��X','',0,'?'),('].���\'�O|���','wp-content/themes/mint/node_modules/js-yaml/examples/dumper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/examples/dumper.js',0,'Ŵ��9 LѠ�����X','Ŵ��9 LѠ�����X','��5���ے�I(\"�1vh5������s�\\\'CA�','',0,'?'),(']0�L�w߸_� n^�_','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/partial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/partial.js',0,'�A/����a�o.�;��','�A/����a�o.�;��','�s�,�mEp�7��)6\r���;e��^��\Z���','',0,'?'),(']7��[�g�\n��}�','wp-content/plugins/envira-gallery/assets/js/lib/imagesloaded.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/imagesloaded.js',0,'\nPb3�a@���7��','\nPb3�a@���7��','�լxp���s���������{�4��#�3#','',0,'?'),(']7��InW�}Y��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lockfile/test/stale-contention.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lockfile/test/stale-contention.js',0,'v����*�1h1�sDn�','v����*�1h1�sDn�','�6�5YY��Ǿ,�M ��pV��e���m��P3','',0,'?'),(']:��\n���g�60�A','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/abstract-post-seo-data-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/abstract-post-seo-data-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x_�$�)����-�Q','������/�$��<���d���1���6Q\n','',0,'?'),('];��Iy���w�[�Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/filter.js',0,'���zT=�#o\"+�','���zT=�#o\"+�','+�����8�����F�N�G �%�p#��.k','',0,'?'),('];�u+F*v�Wj\n','wp-includes/blocks/post-author-biography/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author-biography/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�,P�J��p�b�','é~��\n�m�x��yD���w���c�C�\'','',0,'?'),(']<a��[4�r�g?�','wp-content/plugins/wordpress-seo/src/repositories/seo-links-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/repositories/seo-links-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h!q��� ʽ�:��','��\0\\�(\'7����Q��zr��|�9`���3$�','',0,'?'),(']B#�2�z��bU��/','wp-includes/Text/Diff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Text/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���F\0��(�En�','��,����\ZQ��!�u\0�5N�+ٹ���@Y�','',0,'?'),(']C�`p�)Ƙ�qKC�#0','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/commit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/commit.js',0,'Ju5H�������^@�','Ju5H�������^@�','C��؞=��Zً����A��9����e}�}�\n��','',0,'?'),(']H�i#,�?W/O\\�� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function.js',0,'P��_ R�Ep�f','P��_ R�Ep�f','�2Dn�� ��F�@7O3d�11֤f�\n�d','',0,'?'),(']I�?�q� |��M','wp-content/plugins/wordpress-seo/src/config/migrations/20200616130143_ReplacePermalinkHashIndex.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200616130143_ReplacePermalinkHashIndex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k���-e���D�F�X','�1��&�t�ݼP��elל�����^K�','',0,'?'),(']L0���eE�\"u� ��','wp-includes/js/mediaelement/mediaelement-migrate.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mediaelement-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q0���b��lz���7�',';Y��R�/���(�v0v�saDy�����','',0,'?'),(']R��ٌ���/7�C�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Input/ArrayInputTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Input/ArrayInputTest.php',0,'[t\Z\rQ�LC��7S\\b�','[t\Z\rQ�LC��7S\\b�','��ֽ�|�q`|����.�n�^*/�[<P�f�t�','',0,'?'),(']T\\ښ��\0b�O}Y�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/perm.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/perm.js',0,'��EĖ��ms��','��EĖ��ms��',' �a��0��Ϋ�[^� ��X�����u#c��','',0,'?'),(']Z5{~��I4�;�T�','wp-content/themes/mint/node_modules/aws-sign/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/aws-sign/index.js',0,'�o�y���\\����w�','�o�y���\\����w�','jܺ�Tx�R?p��|*��/E�)P��X','',0,'?'),(']^Ʈ��ݱ�a�P��YC','wp-content/themes/mint/node_modules/bower/lib/node_modules/pinkie/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/pinkie/index.js',0,'��`������Pg','��`������Pg','C��5�\\IjI�x��K��W���uVj�\"n�','',0,'?'),(']e-Ck#�~\"��DFb�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/at.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/at.js',0,'�T�\\���vՒp��','�T�\\���vՒp��','�&�a8�~.�jA�eK�k\' �fpX����1�','',0,'?'),(']i=��w��挥����','wp-content/plugins/envira-gallery/assets/js/lib/mousewheel.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/mousewheel.js',0,'l�%*�H��{T<Ӻ,(','l�%*�H��{T<Ӻ,(','��E� L���T]��H��<C��u�WY)+\\�38','',0,'?'),(']i�@Q�oL)SG6�.�m','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/DefinitionArray.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/DefinitionArray.php',0,'v�Oeܻ�*{�=�s+�6','v�Oeܻ�*{�=�s+�6','dX��&�(��b��b���(m� ex��','',0,'?'),(']r�.]��7���d','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/formats.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/formats.js',0,'K� ��,͆|1�P��}','K� ��,͆|1�P��}','�29��ޠ\0ނ\0���=��)S;%�O�l��+�a','',0,'?'),(']v����V/g(�ޗh�\"','wp-content/themes/mint/node_modules/yargs/lib/completion.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/yargs/lib/completion.js',0,'\"�i��L*�����RI�','\"�i��L*�����RI�','���c��l�&�p�ŔaJ�6$����������}','',0,'?'),(']zR`W�/.��$�\\�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/upperCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/upperCase.js',0,'j�2J�����i���Ia','j�2J�����i���Ia','�6f��@k�3�C?�8�VY��l�0�[�','',0,'?'),(']���N��Jjӎe���','wp-includes/widgets/class-wp-widget-media.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�L�t��<���','L�}K��f\\�A�R� �ŭ�(�s��i�{���U','',0,'?'),(']��{<c5Q�i�PoE','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/CSS.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/CSS.php',0,'\'��\"��|f�9ιs','\'��\"��|f�9ιs','{|���)!�fk�+��\\�B�\"��u���S�`A','',0,'?'),(']����9�7y��D��','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type.js',0,'\"����QL.Ҩ��','\"����QL.Ҩ��','�G*������9����x�zN��E�i6� �','',0,'?'),(']�-�L��`^{��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/race.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/race.js',0,'�JPu�L�\"�8�b�y','�JPu�L�\"�8�b�y','m�\Z$z� �H�hӌ��1\"]�\nE5ed}�0�','',0,'?'),(']�I��=�lY)��.','wp-content/themes/mint/node_modules/bower/lib/node_modules/glob/common.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/glob/common.js',0,'r ��6L����*C��','r ��6L����*C��','a\nLL֩�ĭ>�T�=q���|�5�� x��Ӧ�d','',0,'?'),(']�+�Y��sj�)��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/map.js',0,'N�˕-������Y�','N�˕-������Y�','j_G;�7��t��|�5��=�\Z�4�=�N�D����','',0,'?'),(']� ��U=l����W��','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-updates.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-updates.svg',0,'$�\Z�S��/�n\0u��','$�\Z�S��/�n\0u��','y�%���c���YY�(ZJ�5��$��ե!���','',0,'?'),(']����Z���+�+a�','wp-content/plugins/wp-migrate-db-pro/setup-plugin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/setup-plugin.php',0,'e�.W���5%���','e�.W���5%���','/���Q�Fz�0����Ď�=��0z0�vJ��H','',0,'?'),(']����c1���O����','wp-content/plugins/wordpress-seo/wp-seo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/wp-seo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ڠHu%\\Z�(���','�P�_����s:8W�D�_\'�X�V��','',0,'?'),(']��P���Tkvt��8A','wp-admin/network/menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���J/M�9�e���Ye','���kd�?\0c���Q�kt��߸F��j�f�','',0,'?'),(']���*������J�','wp-content/plugins/wordfence/images/icons/email_go.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/email_go.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��j��E��H)�.��','��& �qC1QU�_.O��3����1!&��۴��','',0,'?'),(']����\"}[�Y�R�','wp-admin/css/edit-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���R�K�p�/R��yK�','�)@�_��UV=�C�\n��1*N�%3FjX','',0,'?'),(']���Û�b����/_�','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/ExpiredException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/ExpiredException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aob����e��F}m�','�rGa��F]����+���uP�*@5m','',0,'?'),(']�1I����.I}ڗ͋','wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G���ASn�2#�9J�h','Lc����W/%U��[�w4�<���$�Zph��','',0,'?'),(']��Qn��q�*��m��\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/node_path/y/ccc/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/node_path/y/ccc/index.js',0,'��|渤�)���{D','��|渤�)���{D','?]�P�Q� �ڦ��l�!z�0�z��S�����Y�','',0,'?'),(']���gĸ��(��=','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/ror.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/ror.js',0,'_����{��j��7��:','_����{��j��7��:','��XV8�ӎ�W�������f\nt�}�\"ͩ/Q<','',0,'?'),(']����i���U�ݼ�','wp-content/themes/mint/node_modules/less/dist/less-1.6.1.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.6.1.min.js',0,'���|9�>���','���|9�>���','�>}W���g!p\0�F��pY:�Z?�vU^�\n�v\0','',0,'?'),(']�!��8fj7����','wp-content/plugins/advanced-custom-fields-pro/includes/rest-api/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/rest-api/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),(']���ĻT�m_���','wp-content/plugins/wp-reviews-plugin-for-google/static/img/platform/logo-dark.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/platform/logo-dark.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n����+F��L_�','��6��ds�XK�3�K��v�zq�J胕','',0,'?'),(']��a�D��Vr�0$','wp-content/plugins/wp-optimize/templates/notices/install-or-update-notice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/notices/install-or-update-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�tl�^}�qXv��@A','l��_���\0ǝC/s7c�ږ�2�Ҵ����ts','',0,'?'),(']�|�Y�g�o�\"�','wp-content/themes/mint/node_modules/loud-rejection/api.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/loud-rejection/api.js',0,'�ŀ�)m�95\"�','�ŀ�)m�95\"�','�.Ds�=A����K�^𥏏�����\n��9=','',0,'?'),(']�d^�]�ۃ�ᮼ�','wp-content/themes/mint/node_modules/less/lib/less/tree/extend.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/extend.js',0,'�B&����o�7�_nxl','�B&����o�7�_nxl','Q:\\��-�VK��{�W]0�pn�\\mH7�)}p','',0,'?'),(']�?\'A��1����P�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arraySome.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arraySome.js',0,'�E\'/_:Q\r��\'Z�`�','�E\'/_:Q\r��\'Z�`�','Q��^�˅\'�� �d* �W=/�� �6)@`h�','',0,'?'),(']�U!Iw�QX��N\n','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/speed.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/speed.js',0,'|�Y���k*�f$|�','|�Y���k*�f$|�','@!�U��C2&�ݢ\\2p\'P�?ۜ�*\r','',0,'?'),(']�L��&[�R���','wp-includes/blocks/post-content/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-content/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�^��{�V5*M','l�p��[xu?æ�\Z�K�W�6dt}1W�6oh`','',0,'?'),(']�%jk\0������Q�i[','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/index.js',0,'wM��殦6�Ntjp�','wM��殦6�Ntjp�','�B\"��< `�%�c=��@�3��sbiH�l٦','',0,'?'),(']�4d�9���C�<s�3','wp-includes/blocks/video/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/video/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ـ���T��?��E�?','[��g�{~����U��D�݈�(�r','',0,'?'),(']�^V�<�j�O�-�Rs�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/placeholder.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/placeholder.js',0,':�e��m��>m6P$�',':�e��m��>m6P$�','�����f��!�OĽcu/���E��eI�u','',0,'?'),(']�V�°�/D�ܶ��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/plugins_conflict_notice.html.twig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/plugins_conflict_notice.html.twig',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Cʗ{���0��S','Y`�����a>��3��=qt�m<6��+{��[I','',0,'?'),(']����I��;/s9e','wp-content/themes/twentytwentyfive/patterns/template-page-vertical-header-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-page-vertical-header-blog.php',0,'��#�9�7֫տz','��#�9�7֫տz','���6o��D�wv��Ȧh���7Z��.����','',0,'?'),(']��s��ê߶��k','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cacheHas.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cacheHas.js',0,'��e�\'�}�;;�M�s}','��e�\'�}�;;�M�s}','�b$�C\"2�<��e�ژWڍ~F���','',0,'?'),(']����Ķ�HF2*�ӓ\r','wp-content/themes/pinnclonesmalltest/app/helpers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/app/helpers.php',0,'�&X�%���Lbs�� ','�&X�%���Lbs�� ','v�|!�%�6�LNW�#�����k �����`','',0,'?'),(']����?Q7]��hIM\\','wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Loader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Loader.php',0,'�\r!�:��G(��Uَ','�\r!�:��G(��Uَ','��Y�3+\\���&���4!��M�oQ&�BP߇�','',0,'?'),('^�>�h�ۗ�VϜ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/parse.js',0,']�����mn#��\r',']�����mn#��\r','_1�P��S�L\'��-��ZUm�Btb���\\��','',0,'?'),('^��xѵ�m��1�5GI','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/CachedKeySet.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/CachedKeySet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)ßb�̆�F\\_','��ے�lq��I��\\�}\"��\n�?�6{[�','',0,'?'),('^CY�W!Ĝ��-��OE','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/livechat-icon.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/livechat-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���#��DK�D�K','=�UW�0��\r|EǪY��i��U�b�)�_NG\Z','',0,'?'),('^K{v�-^p���#�;','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/pluck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/pluck.js',0,',��@f�o\r^��`��',',��@f�o\r^��`��','4C�Puk��<C��G��L�D@�x��$�~+�','',0,'?'),('^�,�$RH����','wp-content/plugins/gravityforms/js/datepicker-legacy.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/datepicker-legacy.min.js',0,'�VM�䷺��8�?���L','�VM�䷺��8�?���L','[�� aҽ�p�4��9�\Z�+P����7��4y','',0,'?'),('^2/���a�QǨy4�ʑ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/startsWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/startsWith.js',0,'�iw�?���Nif�f','�iw�?���Nif�f','7T���:�t��[ן��5�l�lB>���R_ ','',0,'?'),('^9u�6����4pW��','wp-content/plugins/soil/tests/helpers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/helpers.php',0,'�r�X�˧L1� ��-','�r�X�˧L1� ��-','��QÓ\Z&y��w����\r7�O����\"�˩\"','',0,'?'),('^9(-(Ų�y ���0q*','wp-admin/user/about.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/user/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�N ����9�3nDl','r���R89�<�;9i1l�Z���Q��oC#�Y��','',0,'?'),('^@ղ{\'��_���92','wp-admin/upgrade-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/upgrade-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���[a�@1.��Q��Z','�tˁ�����9{��/��y�g1\'�uV��l�','',0,'?'),('^Cph�\"-�S;���`|','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/escapeHtml.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/escapeHtml.js',0,'���Wj��\\�J��u�','���Wj��\\�J��u�','^[�Nr��{F�߀l#��K��\\���� [?CY','',0,'?'),('^GH�*NM��m�{�','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/background-size.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/background-size.js',0,'�V���]�ˢ\0�-�L[','�V���]�ˢ\0�-�L[','JUg��\Z�����_�f7��*e�^ف�+���','',0,'?'),('^H\0�B|��4�@z��','wp-includes/IXR/class-IXR-error.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/IXR/class-IXR-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g6\"���u\\\'3����b�','*?�ۧU�=�?�,]��0=C����Z-�6Dq.�G','',0,'?'),('^J\\M��[y}x��ع','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js',0,'��F��I�m@l_a-','��F��I�m@l_a-','F6 �d����N��Th�\nU�(ܓA#�?��','',0,'?'),('^U�.i��ypG���','wp-includes/js/mediaelement/mediaelementplayer-legacy.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mediaelementplayer-legacy.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A�V�t�Fƣ���','�2�q{Y�*lX�[q�kd���}�Jp�����','',0,'?'),('^d[b�PD/���ő�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/merge.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/merge.js',0,'B�{/`�V�<�b5�tp','B�{/`�V�<�b5�tp','ݚ�B`�0QK�+_N�V�C���U�yMN\'%','',0,'?'),('^gv�,��Ɓ�H���','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/example/sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/example/sync.js',0,'T�k�ͳMK�~%�V�','T�k�ͳMK�~%�V�','w��N�SL�cB��i)���\n��9F��my�','',0,'?'),('^h4<���ɠ8�ڨ,','wp-content/plugins/wp-reviews-plugin-for-google/static/img/trustindex.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/trustindex.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pkk�����.H���->','/m\'8I�@Es���BOh�f82Ƙąk�e�K','',0,'?'),('^k������V/��H','wp-content/themes/mint/node_modules/argparse/lib/argument/exclusive.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/lib/argument/exclusive.js',0,'��p�/k���m#�|�','��p�/k���m#�|�','���S�}q{\'M���c2�ʔ#��T\\4��D','',0,'?'),('^l�<����m�M�U','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/subsite.426375ab.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/subsite.426375ab.svg',0,'����ɥB�Kh�Jq��P','����ɥB�Kh�Jq��P','rPj`�OD^�l/�#n�YU�L�(��~','',0,'?'),('^p�<t�3���}�T��','wp-content/plugins/advanced-custom-fields-pro/includes/acf-form-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/acf-form-functions.php',0,'/UQ����kn�����','/UQ����kn�����','�.�#d(��W�&�E�>��K��Y\"��}','',0,'?'),('^qI�W=�S�!��F','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/if.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/if.js',0,'���f���7��','���f���7��','�t�<��Ƥ{+��$t�$z)⚚t���X��','',0,'?'),('^tv�߲J����%','wp-content/plugins/wordpress-seo/src/conditionals/web-stories-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/web-stories-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+�)�tL�5=','��U}��o�+�SO�Y����:<�WQ2T�g\0H','',0,'?'),('^yG=ڜFg;3�á�','wp-content/plugins/wordfence/images/button-grad-grey.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/button-grad-grey.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��RC���Ty�?�','D����H�~����Ϩ�P�_�{�!��','',0,'?'),('^}\">��\r��F�5s','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/YUICompressor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/YUICompressor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����sg[��?','��)۵���\r�{�}�6(�������\0�Y�','',0,'?'),('^�Ð��+�y|�','wp-includes/images/crystal/spreadsheet.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/crystal/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�9�Т1�T��n��','e\rC��i0��[��R�8@���G���aJN�','',0,'?'),('^��q�n��k\\���[�~','wp-content/plugins/wordpress-seo/src/config/migrations/20200428123747_BreadcrumbTitleAndHierarchyReset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200428123747_BreadcrumbTitleAndHierarchyReset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ma�;_d�_�3���','��2�ć<��N����J(,�I@qފU=j�','',0,'?'),('^��m)`P#s��$�Hȁ','wp-content/plugins/wp-optimize/images/notices/sale_20.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/sale_20.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S^T#��j灆�\\�','�.T)y��a,s���倕X[����sY�Zv�','',0,'?'),('^���I��Sb3�lx�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/spread.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/spread.js',0,'�!�eE��h���݇','�!�eE��h���݇','��&���N*\n���n]�j�y=S�9��,h�5N','',0,'?'),('^��q9Z���wFf��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/DataCollector/TranslationDataCollector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/DataCollector/TranslationDataCollector.php',0,'��i�%5q�9��','��i�%5q�9��','�,��[��I|x�� �O9ᬓ<��W��_W\'��S','',0,'?'),('^�\ZH�i�1˨���','wp-content/themes/mint/node_modules/promised-io/tests/promise.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/tests/promise.js',0,'*4�Q*:Z>���S','*4�Q*:Z>���S','��ΰ.��(�C_2�駒o�w���Wq�N�','',0,'?'),('^�Y�Kb��F2T��T-','wp-includes/blocks/avatar/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/avatar/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*���(\Z���Iz�','e2�,�Ք��e��n�C��L�]���s��+��','',0,'?'),('^��O������m','wp-content/themes/mint/node_modules/uglify-js/lib/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/lib/utils.js',0,'*�1L��ђtV5{�<�','*�1L��ђtV5{�<�','�ƌ��W\"�[�Gt������/1LB�','',0,'?'),('^�.2:/��=G�g','wp-content/themes/mint/node_modules/argparse/examples/sum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/examples/sum.js',0,'˺I���s��S���','˺I���s��S���','����a�����h�G�.� ��§ʫ�]�,','',0,'?'),('^���!��.*:��4�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Strings/JoinStringsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Strings/JoinStringsSniff.php',0,'\Z`p]�G�I@��x��','\Z`p]�G�I@��x��','��Ԯ{�A!��H�7q�;�~.���F1','',0,'?'),('^�5�O Z}�ciV�j�Q','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequiredParameterTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/RequiredParameterTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/�-�Pm9������P',')d�ѩ�dց/ɑ�l�%��\n\\�\\n����}��','',0,'?'),('^�O;��\'7�#A>�U�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/rand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/rand.js',0,'��S�p%L���A��','��S�p%L���A��','�Ë pHȴn��D(��a�5ֆ�ԋ�ޔA�^�','',0,'?'),('^���#�p����%-\\','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/OpacitySniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/OpacitySniff.php',0,'�8}\"�~��\Z�/���r','�8}\"�~��\Z�/���r','��S<�����tKu��S)�⮓Iy\"���\\','',0,'?'),('^�˷�f�Q�hy�˽','wp-content/themes/twentytwentytwo/styles/blue.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/styles/blue.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��gt�I��Сغ*#�3','��s�-_n��(��&E��>�O\r������','',0,'?'),('^���۸��HY�Ѫ)_','wp-content/plugins/wp-optimize/templates/images/dimensions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/images/dimensions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�p��\nG0�A}','Gƒ���(�Q�Xz>��˻a���:�a��f\r�','',0,'?'),('^���c/�o\n\Z+','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŕ��>i7��:[}<\n',')UuI� ��I4�� �.z���M�_��p��*','',0,'?'),('^��%�&��?Ma�A�t�','wp-content/themes/mint/node_modules/argparse/examples/testformatters.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/examples/testformatters.js',0,'.\nwH��[+#~�[+HZp','.\nwH��[+#~�[+HZp','\'|�����G\'t�3�O/�����.R p؍�','',0,'?'),('^��u�u��W�d�M=�','wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z��=E�o0��[�','�m?\Z�\"�g��=�0�N\"��Q��`�u\'��~I','',0,'?'),('^�*n[\rP �E� �WF','wp-content/themes/mint/node_modules/less/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/index.js',0,'�SD�V\nOgU��2m\n�\Z','�SD�V\nOgU��2m\n�\Z','3��\"@�L��\0��^c�\\\"e>���Ȭd','',0,'?'),('^Ո\r|��$G\\T��J�','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/autoload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{q�\r�_|,k�,�)','�b}<ؗ�(x�by5w\\JO�Oc�O\"z$ْ�s�','',0,'?'),('^�z��N{�&��W�\0�','wp-content/plugins/wordpress-seo/css/dist/edit-page-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/edit-page-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-ah���-����','���\"�n&�C�Gp-� ����0̜�4YC�k','',0,'?'),('^�x�Lاq��[����','wp-content/themes/twentytwentyfive/patterns/template-search-news-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-search-news-blog.php',0,'\Z&��6M>�%n��{�d','\Z&��6M>�%n��{�d','�V�`J����E��|��y 8w��x�䣮�t','',0,'?'),('^�� ���0�\\�O&','wp-content/plugins/wordpress-seo/src/helpers/notification-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/notification-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�.�\0�?�:�3! ','D�5�]�,���ϼ���c��G\0�0>+����','',0,'?'),('^�\"�we�)�WQt�[','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ValidClassNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ValidClassNameSniff.php',0,'k�w��l��n�*Y��','k�w��l��n�*Y��','���=��\0.R�I7>�x�|��U��9�','',0,'?'),('^���!��1���;Ӥ','wp-content/themes/mint/node_modules/bower/lib/node_modules/got/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/got/index.js',0,'k�57\Z��;�sz��U','k�57\Z��;�sz��U','_k��]��FT^\Z����D��J� v�o��T�Q','',0,'?'),('^�^\\Q��=(w��','wp-includes/js/imagesloaded.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/imagesloaded.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h#vɯȒ�ɦ��C','�I�j�+V`)�� P��3�J��(\"�xR`','',0,'?'),('^�����b\\�I�_{','wp-content/plugins/advanced-custom-fields-pro/lang/acf-uk.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-uk.l10n.php',0,'<-����[9�\'�}��u','<-����[9�\'�}��u','�W�ݶ�3Y��7���a:�eR��e���','',0,'?'),('^��J�dc��U+�~�','wp-content/plugins/wordfence/lib/wfScanFile.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfScanFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�N����v�$�>��','������:<QM7��٧F�&g�\\F]|t��','',0,'?'),('^��0������ޕ�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M@�gg����X�x�x2�','�9�|�a�{�R�`;��\'������:\"�:/���x','',0,'?'),('_�\0��d �MP~��D','wp-includes/revision.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ȁ>�#q�(Y!y1','�T(���H���A_Y&���xz�68','',0,'?'),('_�k4�!*}��݄ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"UE\"�Eb;D�n�','��Ա�r�g���CXJU�1��։Ya,��1','',0,'?'),('_P�?�S��PH�:�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isArrayLike.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isArrayLike.js',0,'������棍��K�','������棍��K�','ՠA���=w>(��_tQ���Y�k��^/nN','',0,'?'),('_�\'�� ��r�<ٽ','wp-content/themes/mint/node_modules/bower/lib/node_modules/wordwrap/example/meat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/wordwrap/example/meat.js',0,'mٽŔb��9�\\`m','mٽŔb��9�\\`m','�?��1��ۛ���d`�/�T��g�G���v�','',0,'?'),('_�KB�0�e?ӆ','wp-content/themes/twentytwentyfive/patterns/contact-centered-social-link.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/contact-centered-social-link.php',0,'��OG|���+�\0��6@�','��OG|���+�\0��6@�','N`[�L];��� p\'�ui�x�.G� }��p','',0,'?'),('_\Z�\n���x��C�i��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/delay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/delay.js',0,';��pOt�3��ש���',';��pOt�3��ש���','����Az�//֊�������<�pq���','',0,'?'),('_*�⽞L�0�>\r','wp-includes/feed-rss2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/feed-rss2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��lN+�5 ��O?','�@!�`C��*Me��z�j@ �@���L�jw�','',0,'?'),('_�#��U1p�GS�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z���rt��w��(�e','�ҿD�I<�^�i2dW�]G�_�-+�A8�W','',0,'?'),('_ y%���S#2�ȣ2','wp-content/themes/pinnclonesmalltest/vendor/psr/container/src/ContainerExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/container/src/ContainerExceptionInterface.php',0,'פ����?e����>��','פ����?e����>��','Q���yH�n�����**59�p/s%�Xh#�','',0,'?'),('_\'�U_�<�Y<���','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/eventsTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/eventsTest.js',0,'�ߙ�Ř�?4-I��X','�ߙ�Ř�?4-I��X','��ZPQ�8�*�i ȓ�\'�:��0�o1��','',0,'?'),('_;�a4C8\nH�~SRZh','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/max.js',0,'$�A�35l��(','$�A�35l��(','�V;N$K~*<�I+*�K���H�;���]G6�Ӎ','',0,'?'),('_A\"y��5]���\Z��','wp-content/plugins/gravityforms/includes/theme-layers/framework/traits/trait-modifies-markup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/traits/trait-modifies-markup.php',0,',�?&�afp�{,�}',',�?&�afp�{,�}','k��L��= ��{W�+_XW2�ɤ�+q��K�','',0,'?'),('_A�Y�_�U���','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/BufferList.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/BufferList.js',0,'�އ�6phZOg� �x��','�އ�6phZOg� �x��','�iq�C��=U�Q��\nPh�߁%��T��L��g�','',0,'?'),('_DF��/���ie�6�YM','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/methods.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/methods.js',0,'V�v\Z �\n�Q��_���','V�v\Z �\n�Q��_���','V�|�\0�f5a�ǘt�.�bk�/��UZ�p','',0,'?'),('_I�s�1��*g�#�786','wp-content/plugins/wordpress-seo/css/dist/monorepo-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/monorepo-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r4�y��蝌�B��','d�1\0O^��^�bO��.���0�l����Si/�','',0,'?'),('_Jļ��?<k Yb/��\0','wp-includes/blocks/comment-author-name/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-author-name/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�\\�IF��f�y�L��Z','���=N��I�9��\0:�#��$y��nq���','',0,'?'),('_W�h\ni�XlE�Q�t.','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.1.js',0,'P�V�_���#b(gN`','P�V�_���#b(gN`','��AVZi��\Z�⏆���S��^��n7','',0,'?'),('_d1@�_9��,���p','wp-includes/blocks/tag-cloud/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/tag-cloud/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gwĩg1I�{4n����H','x��J������E��[mF^e�#�i��0�','',0,'?'),('_j��_��/���yӱ','wp-includes/load.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�SL�����f�K-Ph�','���s2 )�/ZQ��D75��` ���/','',0,'?'),('_w�����\'�JS6','wp-includes/blocks/gallery/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/gallery/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ދ��l�>n�q�yW�','��ɹa߿���Kۘn�͓�+�n�b�','',0,'?'),('_y������<��%s2v','wp-content/plugins/gravityforms/images/template-library/Donation.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/Donation.svg',0,'� �u!�J�r�V�n�','� �u!�J�r�V�n�','�^�@s���t��z��f����%�jز�','',0,'?'),('_{�F�ZW�8�\"r�/�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Response.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ЃBH�F�-*{�\"�','ç���I��9�Y��x��?G=Dl�?�9�','',0,'?'),('_~�[H ��y@x.+','wp-content/plugins/wordpress-seo/admin/class-yoast-network-settings-api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-network-settings-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0:����)!�@I�','#����C ��j��8����Z�c�W�k:�$כ�\':','',0,'?'),('_��Eeo�\n�Do5���','wp-content/themes/twentytwentytwo/inc/patterns/footer-about-title-logo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/footer-about-title-logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B�A�w�-E�D','IfQӹ<�����bE��J|8�v(8��C���\Z','',0,'?'),('_��q�Pn�cRҢ1','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/ed-compat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/ed-compat.js',0,'�~\0w =�(AZYS�K�{','�~\0w =�(AZYS�K�{','�!}?^��3+��i��Y)����,a�}���Q','',0,'?'),('_���2\\������� �','wp-content/plugins/advanced-custom-fields-pro/includes/acf-meta-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/acf-meta-functions.php',0,'u5Dju,C>ɟ+��J','u5Dju,C>ɟ+��J','<?c$���0��-�cn��BH��m\"�G�\n�','',0,'?'),('_��9�Q�]\n��\n�\n\"','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/Scripts/QualityBadgeScriptDependency.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/Scripts/QualityBadgeScriptDependency.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?s]��~G���T_[c��','�����V���aq_>@�?L�*5h�ۻ�@�b�?j','',0,'?'),('_�8������D���','wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-wp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+vY!e�\\��9h2�','�&a�=��s��g;�T�\"���U�O_CL3k*','',0,'?'),('_�ۆ�Y��5cP���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/merge.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/merge.js',0,'h|�){��n�sI�','h|�){��n�sI�','\',�X|�/ij�C�M4�}�\"z���M���','',0,'?'),('_�+��+��9�u��3','wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/reporter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/reporter.js',0,'m�`�`��i\0��9�_aX','m�`�`��i\0��9�_aX','�@{���Vc=8>�pI�z�e��v�����','',0,'?'),('_��͋S1eV\'Ǎ�ٹ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/transform.js',0,'4Zw���]%���@Kc','4Zw���]%���@Kc','uw��������^h�x+�5�� �!��\'�','',0,'?'),('_��m�s�*�v\'��*','wp-content/plugins/wordpress-seo/src/presenters/admin/badge-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/badge-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����VȝmQ��W{�','�\Z/OE,��p���8g\\���h\\\"��5','',0,'?'),('_�r��ŵ��@E�\\��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v���,��}�%�ņ','�B������x�W�=��U��wuL*`5�x���7','',0,'?'),('_���h���v�\\�xR�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/workers-dataworkers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/workers-dataworkers.js',0,'u�E��qe\\�}[t\'','u�E��qe\\�}[t\'','%�$��y �hݻ�=\\�nA@��r/�wd�','',0,'?'),('_��������a��{�{','wp-content/themes/mint/node_modules/grunt-modernizr/test/js/vanilla.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/test/js/vanilla.js',0,'�3�M�V�2�M�F�','�3�M�V�2�M�F�','���7�D�~�}�4�ڤ�3�z\\�y8U�)��e','',0,'?'),('_�G�^=�暖4��/','wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N��2J娳�YB瘱�','\ZP�L㨒���Zi�t�A�������7d�','',0,'?'),('_���˄_1t��|tP�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/padStart.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/padStart.js',0,'\04�+�7����u���','\04�+�7����u���','\\43�=��*���3V�M�g-�\'l�A�V','',0,'?'),('_�L�\'!P{q�� O*','wp-content/plugins/wp-optimize/templates/database/settings-general.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/database/settings-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`C+R��!��C�b','�i��9���g<�x7��e�kk�3Y�Óa�ɸ�','',0,'?'),('_�\\c��lC��7','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/guid.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/guid.js',0,'�J����|z���','�J����|z���','4t0�br��`���h�-u�N1vz�<�T���','',0,'?'),('_�4ᩯ�����$���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/GetRequestDataSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/GetRequestDataSniff.php',0,'_��$�V�A����.b�','_��$�V�A����.b�','q�LW!��E�seǨ��� @��C-��J�','',0,'?'),('_��1Q��4�XT��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{z��\\U����S�j','��²�$q��j���\n�l/��\0R�F>4I\'','',0,'?'),('_�*�IgP��i�Հn','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/clear.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/clear.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G��ev��MN�i3Қ�','��^�+��e�X����@,�UkB�6��YA���','',0,'?'),('_�<��* �D��','wp-includes/Requests/src/Exception/Http/Status503.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7��Ϸ���\r|;�%���','�����^�J9$ Ň��\n�\"]k�[q���N','',0,'?'),('_��|��R�:�`֥\r','wp-content/plugins/wp-optimize/templates/minify/cached-file-log.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/minify/cached-file-log.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Cp�{.��','�y�X!(7�I^J�����]2��}a�R%٥�','',0,'?'),('_�|��T�M^���J','wp-includes/css/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_F<VL)L;�?�1xD','R#U���1ha�ݤ�0��8�4^뤾��,/��;','',0,'?'),('_��4�3���=��','wp-includes/images/uploader-icons.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/uploader-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\M�����m��','�p����+/������i��!Z�ţ6�m�','',0,'?'),('_ڧ�<�����7S�','wp-content/plugins/wordpress-seo/src/conditionals/robots-txt-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/robots-txt-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e\r��w�\Z�KsYy�;','����=�N�lOl���H���:��限�IH','',0,'?'),('_ߐؕ�bĐ�U\n\r��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/race.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/race.js',0,'\0�S\"\Z��Z��ƒ','\0�S\"\Z��Z��ƒ','8�a�����2��C![F7i~#\nfb�Lv','',0,'?'),('_�X!�V�Lp �xO�','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/writer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/writer.js',0,'� ��I³�\\���IM','� ��I³�\\���IM','���vX�+��;��5��H-�+�_�f϶3[��','',0,'?'),('_�8�>q��op�&','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/source-map-consumer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/source-map-consumer.js',0,'�ʜ�|O��� 0','�ʜ�|O��� 0','�\"Ht��r������}t�B��4�z�<','',0,'?'),('_� ��S\\����o>�','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wp-meta-seo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wp-meta-seo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�O�S�M��&��','2����d�c2�v����[������\\Ebj�','',0,'?'),('_�(\r�¦�sq4]��\Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/insert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/insert.js',0,'�u���[�)�Ƽ�K','�u���[�)�Ƽ�K','������\n�\"#8��B�S���j���\'�W� J�','',0,'?'),('_�3A\Z�\'9�O(','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/img-webp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/img-webp.js',0,'F��\0.�ۋ@�5','F��\0.�ۋ@�5','2C��\'��v�e�zi�)v�i��N��','',0,'?'),('_�LL9�ۓ���<�r','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('_�Hʟ���\n����Yq','wp-content/themes/mint/node_modules/less/lib/less/parser/parser.js.orig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/parser/parser.js.orig',0,'�� ��G���&X|�','�� ��G���&X|�','���=w��%�C�-=Ȓ�\Zv�=�9�q��','',0,'?'),('_�(�C���M6�9�','wp-admin/includes/class-wp-links-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-links-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��db�K\06Zwp*-','�=��Zwo��S\"C͒���R�IVP��N���?','',0,'?'),('_����8}���?�','wp-includes/css/media-views-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/media-views-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\Zq��âf�u�','�%U�rЈ�u�{Cb�X��F�o�Br{��','',0,'?'),('_��2o���U���E6','wp-includes/blocks/query-pagination-next.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination-next.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PV\r�q��FM>���g��','X�*�@w��� \n��\"�\\�*��s�Or���','',0,'?'),('_�C����j�mkA!\0!','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/dotted.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/dotted.js',0,'�>�;|��y�������S','�>�;|��y�������S','r���$a��ea_lF��ɼ� ��Y?~L��P�&','',0,'?'),('`\0W����L��H�&','wp-includes/blocks/query-title/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-title/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�l�¥ˀ����3','d\"Q�٥[�Rf?а-[1�����#x�r,md\r_','',0,'?'),('`��\r� �?�RιMy','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/min.js',0,'ex�ŕ5�!���O�','ex�ŕ5�!���O�','��T^a�\r3�t&oԮbK�A½�.hAI9','',0,'?'),('`���d��1�P��','wp-content/themes/mint/node_modules/colors/colors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/colors/colors.js',0,'#��c�7��%�9�L3�','#��c�7��%�9�L3�','���:�:c��\\$/��H����x���q��','',0,'?'),('`\rw��p8�r���','wp-includes/SimplePie/src/Copyright.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Copyright.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/l�ә̥�4Kd�>�','H�?6[0�D�}�7Aoצ�f�����k(','',0,'?'),('`.fI�ӱ\Z�Ba��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/browser.js',0,'-��k�F�R#Cl3}��','-��k�F�R#Cl3}��','�ާ�ȓ�3� �ڊ�x�I�������{T�','',0,'?'),('`��S�`NI�^G�','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�i@�G�g��0�p','G��<�/�14Ņ�L��5�������!','',0,'?'),('`\Z�������Q&�`4�','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-headspace.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-headspace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�wQ�z3���1vl','�>\\=��so�&�������I�jK�','',0,'?'),('`\"f{��b�P�� ��','wp-content/plugins/wp-optimize/css/wp-optimize-admin-3-8-0.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/css/wp-optimize-admin-3-8-0.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֈ�X��↵n��?6�','�G�T��@�����Fl�D*�t�R���Cd��z�','',0,'?'),('`\"�ސ��@0��Ú','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)/4;�$۔�ެvi\\','�n���i��뗅�N�vX�7�Y]�����D','',0,'?'),('`#�pq���)�:&n','wp-content/plugins/gravityforms/includes/addon/js/gaddon_payment.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/gaddon_payment.min.js',0,'q9��g�s}��m<�','q9��g�s}��m<�','���\r�\0�;���\"��\nﶫ ��^V�','',0,'?'),('`$��YH|�㩢�^\0��','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/wpmdb-runtime.978a0a48b9ee.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/wpmdb-runtime.978a0a48b9ee.js',0,'#E�����ԬI9��','#E�����ԬI9��','���-s5��N>װ(^9��6{i�S�t','',0,'?'),('`%�ֽ�j��\'��P��','wp-admin/js/edit-comments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/edit-comments.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hX`&�b�`O�,Ji^G','���+�{jZΜ��ty�v�%�~IG�q','',0,'?'),('`\'-�l�z����;IX','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/every.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/every.js',0,'��X�b���E���','��X�b���E���','��4�<A�&��Qɭ.-N�T���v�?M�Mvyn','',0,'?'),('`)d�%ӡ����P?��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/i18n/de-DE.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/i18n/de-DE.js',0,'���s���A��f���','���s���A��f���','�y�;6�R)�\r�k���I���&V�~ZI\'(�','',0,'?'),('`,8Vi�4N������P�','wp-content/plugins/wordpress-seo/js/dist/languages/nl.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/nl.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/�8��g�D����','��ۻ�С�X��Vɔ:��X�v=U�E#(x���','',0,'?'),('`1�{3|�EbjC�L$','wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/abstract-term-seo-data-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/seo/terms/abstract-term-seo-data-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#+\r�8\n����_�h�','�V�i�\r%\"$�b������|\"P���f','',0,'?'),('`1�;\'w���l���','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Requirement.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Requirement.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%ImP�B���9�','�Q�#{e����{V��*A��q�EǍQ��]�','',0,'?'),('`1�ӱ�]�>���G�NK','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/bu.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/bu.js',0,'���W5��d������','���W5��d������','����]����Q�?v\n���g3������','',0,'?'),('`2���\Z�Y�S��9�','wp-content/themes/mint/node_modules/argparse/examples/parents.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/examples/parents.js',0,'�g@��q\nٌ��4w��','�g@��q\nٌ��4w��','���B!�E�z���e�d&��{O$\n�݃Ӿ.�','',0,'?'),('`5+�����͙{c_t','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/pt.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/pt.php',0,'.�;���Ц\"m�Kj���','.�;���Ц\"m�Kj���','�q��Յ�@\"�g����N=$,j�qoW���Z','',0,'?'),('`Bd3� C�j�3��n','wp-includes/blocks/verse/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/verse/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v��<_55ڬQ785','+�.�����D[�7� U�=�aI��-H\0w','',0,'?'),('`Kb��$\\�R�/�','wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/test/brace-expand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/test/brace-expand.js',0,'�jM��9MVI\"J7y[','�jM��9MVI\"J7y[','U�P2�J��@Ӎ��>]�#�_;&��k��w��','',0,'?'),('`K������\0\ZÒˑ','wp-content/plugins/wordfence/css/fullLog.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/fullLog.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�.i�`���U�v','?�>��?h�ξ[�²�P�u�{�pu�a����a','',0,'?'),('`K�QZ7:]c+-�G','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionValueException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionValueException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ϭ�,�g�` ?��',' =oi�r�Z׀>�`s-�i�bU�XtOb���%�','',0,'?'),('`Q!B����V�:��','wp-content/plugins/wp-optimize/js/wposmush-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/wposmush-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iW��/E�\nܛ�?Hu ','���À3�b��C�\0�%��e�G,.�b����','',0,'?'),('`Xk��}V����}�54','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.js',0,'��6Ƥ>����^ �','��6Ƥ>����^ �','�Z�1�֯��߁�/�����>v֮�Ng��','',0,'?'),('`\\\n�F�\"Q��+�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sample.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sample.js',0,'a��K}K9�k�Ӗ�','a��K}K9�k�Ӗ�','>C���9�b�5��u�3R�)�)Q���=â�','',0,'?'),('`o�ٴT�&\n\'|{���a','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6��0�4����','j~{K�e�=^��(\"~e�\'L5�i��ʲlEG','',0,'?'),('`q���kN��w�I���P','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchAuthor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchAuthor.php',0,'M�UȻ\n!`LP8�c','M�UȻ\n!`LP8�c','o�+�I7�RuJߎe,�N���b�\0?�((��2�','',0,'?'),('`����F�u:.wa�D�E','wp-content/themes/mint/node_modules/less/build/browser-header.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/build/browser-header.js',0,'!I����}�Pn\Zڲw','!I����}�Pn\Zڲw','uO�u�`�O����b�Y���`�IJ1>�W','',0,'?'),('`��N2E�ᆴ��pC�','wp-admin/images/privacy.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/privacy.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P��o��%ф�C�u�','�!é�o�T���u5�HF���#&�H��h�V�~','',0,'?'),('`��\n���2����','wp-admin/css/code-editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/code-editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���V��DBQVgF','w��86=�ݔ����2�\rD%V��E5�S� �T�','',0,'?'),('`�����@G��nK^','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/whitespace-control.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/whitespace-control.js',0,'�����[�V`k��/�','�����[�V`k��/�','���w�˯�-����; �2��q�5�LyK�$2X','',0,'?'),('`�b�ū8�0J��X','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/reduce.js',0,'ec���1���YIR','ec���1���YIR','�ե��8��͂*��lld�d� �_�^-�k�\'�','',0,'?'),('`�ڃ�j���e�&��','wp-content/plugins/wordpress-seo/src/helpers/blocks-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/blocks-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kp��|k4��C�|=/','����F8���M7T�{߄q�j�IPS���','',0,'?'),('`��Y�Ĺ|�s�j�s','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K����`�7v�͓mN','\r>����ޱV:��o��ѭ=�uw���>e9','',0,'?'),('`��\'?��� �ݒ$�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/FulfilledPromise.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/FulfilledPromise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yj�p�� z�~��','�ކQ�\"���b����I�슫�3\ZB\r�WV�','',0,'?'),('`��=>�Ϲ=V�@�!','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/unset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/unset.js',0,'y��q�in�f�2�JuM','y��q�in�f�2�JuM','�qwg=�?�쿹)��<p\"��LNe�','',0,'?'),('`�(�>��#�*��AW','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/all_bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/all_bool.js',0,' ���3�E�&i�c�� �',' ���3�E�&i�c�� �','Rr��Ab�R��_����c`COnG(���OG��b','',0,'?'),('`�a�(�g��\"��','wp-includes/js/dist/html-entities.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/html-entities.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_���Xh�G�@�5�i','�h�����r��m\'6��FF��:[�j,���','',0,'?'),('`���Y�u�7�2��','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/StreamFactoryInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/StreamFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dh�f%E�n|1�N���',']�\\s�U�S1�U�{MQ��^W3�D�','',0,'?'),('`��:�³����Y��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/AutoQualityTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/AutoQualityTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�K��F�bf\'r}��W�','0�}�*��n�c��C9���#W�J�����l�=','',0,'?'),('`�c0���\\���3�','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QD2jF��D*.e��q','5r]��$1䘦�\0jfF�D\0t%�g��q','',0,'?'),('`��8U7���3��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/CacheEventMutex.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/CacheEventMutex.php',0,'1�y�k�.ƣ���$','1�y�k�.ƣ���$','�Z6���]�=&�\'�.2�ʱ�Թ���','',0,'?'),('`�S�\r4n2{ �:�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/whitespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/whitespace.js',0,'�4(D�m�m8��9�','�4(D�m�m8��9�','� �Ag-���3��A}/��V�J�z�%*�n�','',0,'?'),('`��&��cV�J�9]x�Y','wp-content/themes/mint/node_modules/strip-ansi/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/strip-ansi/index.js',0,'�,x�Ŗ�9�&A<��','�,x�Ŗ�9�&A<��','`6۲��JժΌV�H����\04����v��','',0,'?'),('`ȶ\Zf��v���vF','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/duplex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/duplex.js',0,'��DanoI� M<I.�','��DanoI� M<I.�','ǫ��@���v���*1DU\" hT~����','',0,'?'),('`�o�o�����Z�W8�`','wp-includes/js/dist/preferences.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/preferences.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[�@2�r���ʬ�','��|��ln�<rbT�{hc����S���$�','',0,'?'),('`�W���Q�蕻1�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/convert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/convert.js',0,'\"`\ZA�51�$�Q�x','\"`\ZA�51�$�Q�x','8� t��ݱ��L��A��Ț�gn��J�','',0,'?'),('`ۗ���f\n�@��I��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mapToArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mapToArray.js',0,'D�BSX��6ANh','D�BSX��6ANh','v��;�X�|h%h��E`��S\"~������F','',0,'?'),('`�/��pI�\'�.�Q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/dayOfTheYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/dayOfTheYear.js',0,'�t�}v�]u_���','�t�}v�]u_���','�T�A@r�}��->z�~�i��o`)�I0=�c','',0,'?'),('`�i��o8?s���j\\','wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/objects.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/objects.js',0,'�\\�ȷ���ې��\0','�\\�ȷ���ې��\0','V�)ڏk��]�!nZN\Z���%�}vJ��Oh','',0,'?'),('`�\n_)�5g�=�\r�','wp-content/cache/wpo-cache/juiceelectrical.co.nz/contact/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/contact/index.html',0,'klH+�,(�G-wG<�','klH+�,(�G-wG<�','em�ک\"/[��lY���>�Ob(��J�\\}x','',0,'?'),('`�r�iw%`��o���','wp-content/uploads/cache/995be660e399cc8dac1769cedc19385980dc6a16.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/995be660e399cc8dac1769cedc19385980dc6a16.php',0,'u�E��>���b{%8��','u�E��>���b{%8��','�1Q�l�V�u��%�I�o��O[{XQ;nX\r\0I�M','',0,'?'),('`�XwNg�/��@� T�','wp-content/plugins/gravityforms/images/datepicker/datepicker-orbital.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/datepicker/datepicker-orbital.svg',0,'[;LJ�!�]�?mZ���','[;LJ�!�]�?mZ���','���3�砚\\=��yn\0r�V*�������I','',0,'?'),('`���;�\"�-���+~;','wp-includes/js/tinymce/plugins/media/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/media/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#@,�4dG��M','XHx����0�֍X�\Z���OG��|�{�F2','',0,'?'),('`�c���-=����_�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inflight/inflight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inflight/inflight.js',0,'B��b*���Xb�\rD\Z','B��b*���Xb�\rD\Z','�3R@��>��Li����s�PBa=��L;B','',0,'?'),('`����mvO�sE��2,','wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-user-setting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-user-setting.php',0,'f9�]<�����^Y���k','f9�]<�����^Y���k','^4�_�fK�eS��r���7���f;2�E��h�?�','',0,'?'),('`���EK�WA*���a�','wp-content/themes/mint/node_modules/text-table/example/center.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/text-table/example/center.js',0,'�?W��H�}K�� ��f','�?W��H�}K�� ��f','�_���&:&p�m����ܱ�f��n��./G��','',0,'?'),('`�}+�6�L-q[��$','wp-includes/sodium_compat/src/Core32/Util.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1�`���0�����','�qƖ����%/�y�g�rwÛ�\r�LR>=Y','',0,'?'),('`��U�2���mdW','wp-includes/class-wp-customize-nav-menus.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-customize-nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Yѓ?���H5�NYP�','��^�����Y�\n�dr�����7.�ʹ�P$r\0','',0,'?'),('a�����Q����','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/EventListener/ErrorListener.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/EventListener/ErrorListener.php',0,'�.>���O.^��dž$�','�.>���O.^��dž$�','��w��?./vqaP��\'ָ���A�\"��E�','',0,'?'),('a�)6����ю�','wp-includes/js/plupload/moxie.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/plupload/moxie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#C\r��5DZ�ǒ����','����I�9_/x�t5���(�.g�tT\Z}&���','',0,'?'),('a�C@�>\ny��N�J��','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/sources/log.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/examples/sources/log.js',0,'\"�ոtTg̡�h���@','\"�ոtTg̡�h���@','�ˬF]���P�V_��R\"����m��\"V�','',0,'?'),('a�5��c \"��%O�R','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/deepFillIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/deepFillIn.js',0,'���T�eT�pՈ��;�','���T�eT�pՈ��;�','Gw�A�ªv�g�Z�\"�8FM�S�ϻ��-','',0,'?'),('a\n+�߮�)X��]m','wp-content/plugins/wordpress-seo/css/dist/adminbar-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/adminbar-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�VM*@)��yT�,','�\\s�~:��ܨ ��f/M�^�h�����1�','',0,'?'),('a\nd�=����L*|��','wp-content/themes/mint/node_modules/tape/test/max_listeners/source.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/max_listeners/source.js',0,'\'���ư����I����','\'���ư����I����','m����?z� r��� WQW�ob��\ZY����','',0,'?'),('aG�*�[�Z�����','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-da_DK.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-{��3W�̐� ','.��;RIy�7ѽ���c�rh��g�]�:�','',0,'?'),('a!�2FE����$bz`+','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/maxmin/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/maxmin/index.js',0,'F9�t��PY0\0����','F9�t��PY0\0����','/u��R�qʥ�� L������|C�/�EdB','',0,'?'),('a(�\0�\'~��u����W','wp-content/plugins/wordpress-seo/images/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EЛ��O0��c���Ag3','�� 蚠{�c�FJ�w��!}a���9�','',0,'?'),('a)\0����x�r�I�9','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-d6cf1dee.min.js.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-d6cf1dee.min.js.json',0,'�ebc6�JA�_{','�ebc6�JA�_{','�UAU��,f���djS���գ�aK�q�t��1','',0,'?'),('a)�TMW�Oo��Q�|�','wp-admin/images/media-button.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/media-button.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����6@p�z^ye��','_\Z���SjזY ����V�Z��Gen�_','',0,'?'),('a5����e���/��}','wp-content/plugins/wp-optimize/includes/class-wp-optimize-gzip-compression.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-gzip-compression.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','묙�J����!�\Z','�\"_K�cdy��b��ڼ �a���^:ߕ��','',0,'?'),('a61����K�#ؘ�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/HeredocSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/HeredocSniff.php',0,'�b`K+)c��4�� 2','�b`K+)c��4�� 2','+�F�}+u�,ٝ����k8I�a������G�\'�','',0,'?'),('a9TR�$oV����','wp-content/themes/mint/node_modules/bower/lib/core/resolvers/SvnResolver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/resolvers/SvnResolver.js',0,'B��JG��߃�','B��JG��߃�','q�tF_�Jz��.\" ��=���ka2$8��','',0,'?'),('a=�>���j�G�� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/i18n/pt-BR.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/i18n/pt-BR.js',0,'R��25�\r&ጳ�L\'�','R��25�\r&ጳ�L\'�','^:�ɵnI���;!�u:\'�ѥ��2�ٰ�&�','',0,'?'),('a?V�s���#�@,6m�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Exception/ExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Exception/ExceptionInterface.php',0,'mr^�� )S&O��','mr^�� )S&O��','z��H&]��TG|V��σx�eH�G0(Q��p','',0,'?'),('aB���I~�G��d^(','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Assets/JsonManifest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Assets/JsonManifest.php',0,'���Ꜭ��\'O��C-','���Ꜭ��\'O��C-','Dvuz`�0�W�h�@̠�l�#c4��˕�:z4','',0,'?'),('aG��vo�W�u5tD�','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php',0,'d &�����m���y�','d &�����m���y�','v�+��O0���Q���nx���d��Qِ(��z','',0,'?'),('aKl(BO�}�i���R[-','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/bindCallback.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/bindCallback.js',0,'MԶ\n�+P���ośw','MԶ\n�+P���ośw','�b?6;˥�?U��}��Wl��N~KKKi��','',0,'?'),('a\\c,I\"5T��#̋�','wp-admin/images/media-button-music.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/media-button-music.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9� M�\n��5�E��','��x��\"0��$���!��H��]������','',0,'?'),('a^��O�Z@&��\";','wp-includes/css/dist/block-library/elements-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/elements-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�Y�p���U��','��������)m.~���yw`�@y�c�ZB','',0,'?'),('a^�p���°��x\Z\Z�G','wp-content/themes/mint/node_modules/combined-stream/lib/combined_stream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/combined-stream/lib/combined_stream.js',0,'r�{:���#,#f_�b','r�{:���#,#f_�b','�lKIZ�c(_�H5L=,�N8+�i>Պ\'[','',0,'?'),('ab*��~g��y���y�','wp-includes/block-supports/position.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/position.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�|�⪭�w$J�D','ufU�C���q�$�q��x+0�l!���26fX','',0,'?'),('agOIK�1އ.\n�gB�','wp-includes/blocks/navigation/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�3�����4�E�','��4��\Z�r�^��\nj̠��ع�~`�','',0,'?'),('arx7;�zj�����!','wp-content/themes/pinnclonesmalltest/vendor/illuminate/filesystem/Filesystem.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/filesystem/Filesystem.php',0,'n�l��\r�I-�[>�','n�l��\r�I-�[>�','���~�_��QP/�LS}9��$�R9_�','',0,'?'),('at�ƽ@,c\\��@ڦ','wp-content/plugins/envira-gallery/src/Views/partials/onboarding-wizard/step-1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Views/partials/onboarding-wizard/step-1.php',0,'�K?��#��7�.�','�K?��#��7�.�',' �Ŧ^zV`�jbL���C@9��N\"#�','',0,'?'),('auК�>p�U���N|�','wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/acf-ui-options-page/create-options-page-modal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/views/acf-ui-options-page/create-options-page-modal.php',0,'ê˷x*2���/l�','ê˷x*2���/l�','�It�0��lV#_�(PnZO����H��\'>��','',0,'?'),('a{7��o�*�6�}��','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/BnB_Item.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/BnB_Item.php',0,'ـ�Vq��}2�v۬�','ـ�Vq��}2�v۬�','��r#o�E`tE���WT\"���\0�D�Q`�.)�','',0,'?'),('a�����az�VuA�#','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/parseInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/parseInt.js',0,';�=�^Ve8YTL�X',';�=�^Ve8YTL�X','�o��yNяk�ƩKQ//|�\0H�b���4�','',0,'?'),('a�w�U��\ZTz�K�','wp-includes/blocks/post-excerpt/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-excerpt/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ե���L��`L(ҩ�','�BO���!7���R��?0��yď���5','',0,'?'),('a�rz,h.�|)���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/time/convert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/time/convert.js',0,'j-�wn���%Df�3Co','j-�wn���%Df�3Co','�Ò3j�1�+A?�u�+*u�����⽂_�','',0,'?'),('a�N�x��g�`X���e�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/time/toTimeString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/time/toTimeString.js',0,'�q� O�/�d�o���','�q� O�/�d�o���','��a�\0�߆�J��ɻ�C�cǧ��A�Lc�x','',0,'?'),('a���!�P�Sc����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isUndefined.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isUndefined.js',0,'�J����\0�uy+���','�J����\0�uy+���','��Z5�$\0���O\'3busdj\'�(&�u[��','',0,'?'),('a�?��_�ˢ��6j��X','readme.html','/home/adaptiv2/juiceelectrical.co.nz/readme.html',0,'�T���1�KF�>','�T���1�KF�>','�^�^��U]c9����A�=\'�UM?��}ʸ�','',0,'?'),('a��|��.�)�>t�v','wp-content/plugins/gravityforms/includes/locking/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/locking/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('a�\\9���a�#���','wp-content/plugins/envira-gallery/assets/js/min/editor-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/editor-min.js',0,'!16rD.��z_%��','!16rD.��z_%��','-:�6��x���ۊ��A/\"[)e��tBBU��','',0,'?'),('a�m��ew6�a&g�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/license-checked-blue.c304fe20.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/license-checked-blue.c304fe20.svg',0,'n�7��N]�ӹT','n�7��N]�ӹT','G}��)F���J�q��S��{��l,G\nH���s�+','',0,'?'),('a�����@�r��I','wp-content/plugins/wp-migrate-db-pro/vendor/phpoption/phpoption/src/PhpOption/None.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/phpoption/phpoption/src/PhpOption/None.php',0,'�]!����q/>5','�]!����q/>5','�Cx�5�?J:��@H�6��\Z��J�}�.��@�v','',0,'?'),('a��f�n7\0}\0UqDGm[','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/confirm_identity_notice.html.twig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/confirm_identity_notice.html.twig',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�yF��Pů�^�\"��','~d���H\n�L1 $���6�_�/�8n9r��0/f','',0,'?'),('a�pۨ܅+tao(��J*','wp-content/plugins/gravityforms/includes/query/json-handlers/class-gf-string-json-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/query/json-handlers/class-gf-string-json-handler.php',0,'U������ ���','U������ ���','tZ�b���rv-��o��鍿+*(*U,�','',0,'?'),('a�����m{�h���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/kebabCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/kebabCase.js',0,'^��?��>�s3Q���','^��?��>�s3Q���','�Of6�N����;\'x�8�^�����P5�q','',0,'?'),('a�J��r���&�-D�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U��o��}S}���8.','�$��s�����?;f�Ġ=`\r� ��&��!','',0,'?'),('a�;9��r\Z�@�/��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Validation/Rule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Validation/Rule.php',0,'@�sZ���X4U;p�!1�','@�sZ���X4U;p�!1�','o�TF�F��ۄ`�\0��tpxL«��7\r<��<��','',0,'?'),('a����(m�EB�l�','wp-includes/media-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/media-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T�TU�ݮd�g s�R�','�=8�?�����c�tr��MK��� 20�����','',0,'?'),('a�H��3�d�����','wp-content/plugins/gravityforms/js/jquery.maskedinput.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/jquery.maskedinput.js',0,'�Z����\rʟ�+��','�Z����\rʟ�+��','c�9S�lJ?�uk�����0���4䌲µ�6@','',0,'?'),('a�[�.j�(���\r���','wp-content/themes/mint/node_modules/hosted-git-info/git-host-info.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hosted-git-info/git-host-info.js',0,'�����\\:\Z�eL��6F','�����\\:\Z�eL��6F','� &��tz�sz0Q���zo\0(�s\Zk{��M','',0,'?'),('a�c�CH\r��=l@ĸ','wp-admin/plugin-editor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M���}{���+�V�z',':�=bM5O*M\r7�#�~�e^��b��\"��6','',0,'?'),('a�y�9�}`n��l�','wp-content/themes/twentytwentytwo/templates/page-no-separators.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/templates/page-no-separators.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g� �lp�GQ��O�l','����8FH>/>�(ŶfXW =0&&\r� \r','',0,'?'),('a���o��lՓ\Z\nO�[�','wp-includes/class-wp-plugin-dependencies.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-plugin-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��VM1z�$w7�蚾�',' $��1\0��]*������ �{\Z콿�h�5iT','',0,'?'),('a�6jj�r����C','wp-content/themes/mint/node_modules/validate-npm-package-license/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/validate-npm-package-license/index.js',0,'2yeV%*�Q��;�\0','2yeV%*�Q��;�\0','�گ*�����jށz��u�ya�9�����q���','',0,'?'),('a�U��Ԃ�?���','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/negative.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/negative.js',0,'8��喅�A�@���','8��喅�A�@���','8v1Һ�S{��&oa-mq�+Q\"��ۘXc<�w','',0,'?'),('a�ai�G����}��\Z �','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&g/��U;3��œ��','.�\\�pP�X�j\"�W����p�e�.kW&}u','',0,'?'),('a�^L��\"��z�\0o�X','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/isSame.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/isSame.js',0,'��Vc���OTy��C�','��Vc���OTy��C�','7�SW�\Z��߆��\\!�Y�`؟/�t�Z9;�','',0,'?'),('a�\n/�>۹�6�aԮ','wp-content/plugins/wordpress-seo/src/actions/importing/importing-indexation-action-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/importing/importing-indexation-action-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F��0�\0\Z�㋯M]C','���j-��#*�ʺ_���\r�D�3WwT��','',0,'?'),('a�\Z��^�����K�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/isSame.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/isSame.js',0,'��*�PS��M��Z\\','��*�PS��M��Z\\','� �}D}�N�`0 ���˵�h�����L','',0,'?'),('a�XʤG\'ɀn\r|t�N','wp-content/plugins/wordpress-seo/src/wrappers/wp-query-wrapper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/wrappers/wp-query-wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������&ҙm?�D�','vڣg�`��fv�0n;\\��U\'��','',0,'?'),('a��̻���ܴ#e��','wp-content/plugins/wp-migrate-db-pro/class/Common/Util/ZipAndEncode.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Util/ZipAndEncode.php',0,'R��>���v��=/�!','R��>���v��=/�!','0�J��\r�������;/�iF�y}�� �D','',0,'?'),('a��b���r�{��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ResettableInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ResettableInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�9�w��ioei!�','c*T[�ߗ��+�����n�J�̠KeT1��Y;','',0,'?'),('a�9��\r\\H*����','wp-content/themes/mint/node_modules/bower/lib/node_modules/chainsaw/test/chainsaw.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/chainsaw/test/chainsaw.js',0,'�6[8[� �DVM�b�','�6[8[� �DVM�b�','M���s\\�*�ϩ�P���-`T�6�1iM���f�','',0,'?'),('b�N�G�5���B�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/omit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/omit.js',0,'>y.�� �+�߆�P','>y.�� �+�߆�P','����%@VF#��M��� i�Q�\"-����','',0,'?'),('bc�W@ɉ�+_���','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?��U�E>A��n','%��7�Y(-��F�SMY�E�?���,��Ҩ�','',0,'?'),('b���۫�����j6','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/quarter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/quarter.js',0,'�x��~��M��EU','�x��~��M��EU','u�9|K��rJf��RJ��Cp#\"<����� �r','',0,'?'),('b��\'{x�쟨�tE3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/toArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/toArray.js',0,'Ά�)�7� ؏\Z��w','Ά�)�7� ؏\Z��w','��*��������R��B��>�% �������','',0,'?'),('b*��/��Z�PDW','wp-content/themes/mint/assets/vendor/jquery/src/exports/global.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/exports/global.js',0,'hl�ݿZ3Qhm�o�','hl�ݿZ3Qhm�o�','I�r���=,�\'m/�X��zV��ZK=Gct�%','',0,'?'),('b.��1^�V��)��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/wrapperValue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/wrapperValue.js',0,'��8�Yw�QkW\0����','��8�Yw�QkW\0����','S�N�)�<��NBZ��n�p�����]z��','',0,'?'),('b/���|a\"#�^\'��4�','wp-content/plugins/wordpress-seo/packages/js/images/jetpack-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/jetpack-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ah�N��N>W���\n�w','`��h�-ݯ��rb20і�;<r�f/i��\\|{','',0,'?'),('b5��W���@�����','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/PathChecker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/PathChecker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N1�P�h�y��,h�','��4��O��~H�aQܲ���|�\r~ag-��n','',0,'?'),('bUND>�k���Gȸ��W','wp-content/plugins/wordpress-seo/inc/class-post-type.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�=ƴ���.Kt','�\"yx>�ciٍV{Z4��Br�i��1�','',0,'?'),('bV��X˾���$L��}q','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configuration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configuration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g}��0�_����t3\\','�^T��\'�O {q�5�2����k.^+h��','',0,'?'),('bY�,��ϥY�r�;�','wp-includes/js/crop/cropper.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/crop/cropper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ky5�ni*M(��','�ٸ�T��ޝO���wL��y=}�gTl������','',0,'?'),('b[�����X������','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/lib/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/lib/browser.js',0,'r�_�}���w�-','r�_�}���w�-','>IIRl�ZN-��k��`�ĉ[���.�۾�o','',0,'?'),('b_�^��b� �:���Z�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��9�g���Gֲ^���','@Y��#�G��%l^�U\'�@���=��Q\"�','',0,'?'),('b`ͬ��APrE�b�','wp-content/themes/mint/node_modules/mime/mime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mime/mime.js',0,'�N͵v!��#%��','�N͵v!��#%��','JP�\n>a�Fv��\"1�=O\"�S^��%�','',0,'?'),('ba �B�Jq�q�H�C�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Routing/Registrar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Routing/Registrar.php',0,'�$��$�!b3],@��','�$��$�!b3],@��','1<-��9�\0��0M���n�ZF�&s�K�','',0,'?'),('bb\n�n\\V���o&','wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ڪC<��b��tp߯�','mB2p���h�ʧ�Ϧ�l`70.u�ՠ��\n3�VO�','',0,'?'),('bk�i�.�&�hRC ��','wp-content/plugins/advanced-custom-fields-pro/assets/inc/timepicker/jquery-ui-timepicker-addon.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/timepicker/jquery-ui-timepicker-addon.min.js',0,'q�\nq�h\\w]/��)���','q�\nq�h\\w]/��)���','/l�l���r�!�Ì.����m���_�*���','',0,'?'),('bk��S@��S��Q','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/forOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/forOwn.js',0,'q�|�˿��w��qʌ','q�|�˿��w��qʌ','s�2-0n)b��d����\\rM�.C�l#����\Z��','',0,'?'),('bk�[4��,�_��&�\\','wp-content/themes/mint/node_modules/source-map/test/source-map/test-binary-search.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/test/source-map/test-binary-search.js',0,'U�q�H�e\0.\r��_�','U�q�H�e\0.\r��_�','��NH⻉%U}��x�-�6e`cT�a!6�R�C�','',0,'?'),('bw�Z�qt�o����V?','wp-content/plugins/envira-gallery/assets/css/images/icons/breadcrumbs.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/breadcrumbs.svg',0,'Q��L<Db���m\rs�|','Q��L<Db���m\rs�|','6��:ҷ�u�F�_���V�i��P�ƹ�k~��','',0,'?'),('b����_iE�=�f]','wp-content/plugins/wordpress-seo/packages/js/images/wp-recipe-maker-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/wp-recipe-maker-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��EVV��#�J�@�','p���>�H���̩���5��g����(@��9�$','',0,'?'),('b��n:ze�ۀ��U�1�','wp-content/plugins/advanced-custom-fields-pro/includes/acf-helper-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/acf-helper-functions.php',0,'��r�R[��X�r�\n','��r�R[��X�r�\n','FMN�߳��=c �D�4��i�y)��X����6','',0,'?'),('b��=Q�z\r)Vx�|z:','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/local.8a615e13.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/local.8a615e13.svg',0,'�j`E�36��^\r�','�j`E�36��^\r�','�8�b�64\'��AY��n�1���wS=L6�','',0,'?'),('b�E�#�vX�9Ư,','wp-content/plugins/wordpress-seo/images/error-icon.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/error-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+9�U;1p�Ŀkt�[','�Zrg���6���J��v`�<�cěb���&','',0,'?'),('b���CyOk$�mr\Z��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/passthrough.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/passthrough.js',0,'7���[�`=����G�','7���[�`=����G�','�<�ɿ`����G���ڔ��&` x��t�ΥF','',0,'?'),('b��;.����[�7�','wp-content/plugins/gravityforms/includes/settings/fields/class-checkbox.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-checkbox.php',0,'�v�m���}��J��','�v�m���}��J��','1����n�frD����`Tݗ��a�N�','',0,'?'),('b�������g�5','wp-content/plugins/envira-gallery/src/Utils/Copy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Utils/Copy.php',0,'���ÂH<}�>,�{','���ÂH<}�>,�{','���qZ4f��tsT���GB��@N_.��R��t','',0,'?'),('b���zK��S��:B��q','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/multisite.b8c0ef24.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/multisite.b8c0ef24.svg',0,'�F�������u�p','�F�������u�p','Q \"J��x�R�#`;C���R�1��7��1�l ','',0,'?'),('b��N�_s�K�Um�','wp-content/themes/mint/node_modules/less/dist/less-1.2.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.2.1.js',0,'B6#�DI�]�N\Z�<','B6#�DI�]�N\Z�<','�f�R�%�Ne��*�s���\n;�\r�K��','',0,'?'),('b�&�i���鹋�(I�','wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-promotion.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/promotions/domain/black-friday-promotion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��OC��Y��o㉦�','J6��K��0��7�\0�n ��ґNo5��8}�g','',0,'?'),('b����m���T�\n��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/flow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/flow.js',0,'Ψ�p1ijhv������','Ψ�p1ijhv������','c3/�и[;t<���us��:�����rP ~-˵','',0,'?'),('b��=�nN��*(~7w�^','wp-content/plugins/wordpress-seo/images/academy/local.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/local.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8�&�{�����p<�;','g3���3�:��T��^��$.Q\Z0��1�','',0,'?'),('b�6�}�r���f�:S','wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/api/event_target.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/api/event_target.js',0,'iO[Xv�^O�\\&��b�','iO[Xv�^O�\\&��b�','@�2�{�����rIw��C9G��́��','',0,'?'),('b��帧�co\\��<��','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/writable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/writable.js',0,'�}�\nC1�p|G����','�}�\nC1�p|G����','����<\\�lj��`�uWՄr2�:͆@N�J','',0,'?'),('bƘ�9�?KC��D2��','wp-content/plugins/wordpress-seo/images/seo_analysis.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/seo_analysis.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d��&Q�ڞx/\r�l�^�','5ʑB�Jf�������A>�m���디','',0,'?'),('b���WT�kfx','wp-content/themes/mint/node_modules/tape/example/nested.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/example/nested.js',0,'0!�/P�R���6m�','0!�/P�R���6m�','3�U�)Bb��;7�S-�z͔��n��=�','',0,'?'),('b���HzfW����gw�','wp-content/plugins/wordfence/lib/wfSchema.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@�Lo�c��\n�\\n','�»�Ն��b��߰���XtT˅t�\\�va�','',0,'?'),('b��V��s��s�Vo��','wp-content/themes/mint/node_modules/time-grunt/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/time-grunt/index.js',0,'��c��b�^�dk�4��','��c��b�^�dk�4��','t���ľ�܅!�āTƟ��ɥR�U��)','',0,'?'),('b�P�n�^��k!�E$','wp-includes/js/dist/undo-manager.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/undo-manager.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���W8�6�K\'��M�\"','�:!��kW{�����iV����B}0.�Wtm�\\','',0,'?'),('b�iq%��LQ�\"�`��G','wp-content/plugins/wordfence/css/license/premium-global.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/license/premium-global.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٬5�&���]U��\0','=:I��#_A�\\R���֣X��F��SO��re�c','',0,'?'),('b݂Y�CƜ�Y>��','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Dotenv.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Dotenv.php',0,'ǜ��_zX=��$��','ǜ��_zX=��$��','�ӌi�_K��֮Ֆ��v#TQ#--a��ܩ�c��','',0,'?'),('b��BoЁ��R}�RY�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Gate.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Gate.php',0,'lI.*����kފ��h','lI.*����kފ��h','�^��\"O}�Q\'`s{xR����jf(Z\"$�$8�t','',0,'?'),('b�\r#9��a�$�wn��','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-squirrly.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-squirrly.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s��|a*�e��3�_','WCA�@�?�u2,�S�*(mR���]|5���','',0,'?'),('b���Ҍ &�?�{','wp-includes/js/customize-loader.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�,yV��~=���','��r�\'�b\Z�v�����i�|�~�4K�]�^�5','',0,'?'),('b�+ƴݟ�3�','wp-includes/customize/class-wp-customize-nav-menu-location-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y���1�����]Fh','VӒk\0��7��\'��b�����aK�X�����-','',0,'?'),('b�I��P����G!��H','wp-content/plugins/wordpress-seo/js/dist/languages/ru.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/ru.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�PAl�=����dxn�','��U��(�P&X��v�\\a3�\'ƞo���Q&','',0,'?'),('b�����+�@ٕG','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/paths.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/paths.js',0,'\nB\\j�bt�G=��b2B,','\nB\\j�bt�G=��b2B,','����)͡8��L��g4.j��r��F','',0,'?'),('b�DBH�3{M�����','wp-content/themes/mint/node_modules/bower/lib/util/userAgent.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/userAgent.js',0,'�|�V-��rأ��X��','�|�V-��rأ��X��','݁T�v��v�@��#v�MK�L]���ܓ��.�','',0,'?'),('b�~Ѣ��1��','wp-content/plugins/wp-optimize/js/loadCSS.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/loadCSS.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5v}?v�l[\Z|�e��g','��2�KX��-�[(��O��fxUKkB��\0�\"��','',0,'?'),('bK�+x����wF','wp-admin/css/site-health.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/site-health.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�@���ܾ�6l��','dK��\"����hs�P��?�G�%\0�A� Ǎ','',0,'?'),('b�]���zD9��?/1�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-isUrl.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-isUrl.js',0,'��\'�׳���[��','��\'�׳���[��','�v�:�03��q�8Q�v�L��;��̔\"�5','',0,'?'),('b�s�.u�0��F5���','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Factories/ElementorWidgetsFactory.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Factories/ElementorWidgetsFactory.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\Z���{��M�eJ','ue�vGmsS�qԑ,��~����$���mEV�k','',0,'?'),('b�TqM�������s','wp-content/plugins/gravityforms/includes/form-display/class-gf-form-display-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-display/class-gf-form-display-service-provider.php',0,'ލ������\"L���o','ލ������\"L���o','���{��g�x}i|[�f���|�#h','',0,'?'),('c餟��(Ok1�!͂','wp-admin/privacy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�6��[�$@lڜ�S','�RiS2�&x\Z8T\nGta�Mt��r��y �','',0,'?'),('c�.�K-��k3��d�','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)f�5�)W\n�u�iW4d','G($��mX&x����1���c�0N�3�R�+','',0,'?'),('c�?T;L�\"J\Z^�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/TranslatorInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/TranslatorInterface.php',0,'/j\\T�4A0�zb<\Z��','/j\\T�4A0�zb<\Z��','W�<\rϊ}�/P]��{%\n�� iT���x�$rxP','',0,'?'),('c���#5?�l�C�Th','wp-content/plugins/wordpress-seo/src/values/robots/user-agent.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/values/robots/user-agent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�n\0���T#�_X�>','�`%�[hCX��6�ȍ��͖�GO�~o3�J�','',0,'?'),('c�Z�l`$X�X����','wp-content/plugins/envira-gallery/assets/js/min/table-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/table-min.js',0,'��52��,!Ȇ���ϒo','��52��,!Ȇ���ϒo','�)�S ����q�T��V��V7,0fZ�j5��','',0,'?'),('c�4L]�˞��Mc','wp-admin/includes/class-wp-post-comments-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-post-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2��aSYyl)�K�6','F_۰�G\ZO0�c��~��I�h��\nY;jƣ��','',0,'?'),('c���p �PU3/�','wp-content/plugins/wordfence/modules/login-security/classes/model/request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ܮM���,~/���r','F;���W]��&��z~o\'�/��q�+��','',0,'?'),('c%�;8�QVWƝdȇ�:','wp-includes/blocks/paragraph/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/paragraph/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˽�����` ��Ȃ�#�','����-�ӌ��> �E�Zh��6F�A$$gө�','',0,'?'),('c&f�M\Z�>�/\n���','wp-includes/css/dist/block-library/elements.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/elements.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�Y�p���U��','��������)m.~���yw`�@y�c�ZB','',0,'?'),('c(u���u�+Kx�hL?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/deepMatches.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/deepMatches.js',0,'B����C�%ۭ�','B����C�%ۭ�','l$�a�y�>!td�\Zӡ(�M\n�^q0��`C�','',0,'?'),('c)��]��$ug�T�a�','wp-content/plugins/wp-optimize/templates/images/unused.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/images/unused.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0�/������3��','�ri��mo��\\VI�@k�ys5�ݒ���\\�4:','',0,'?'),('c,���[xޫ�3�\n�@','wp-includes/js/jquery/jquery.masonry.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery.masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@`���&n|�}A��','�\\ۙ���� }M�g� �$�0� [���B','',0,'?'),('c0k\"����gi��/','wp-content/languages/plugins/gravityforms-en_GB.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/languages/plugins/gravityforms-en_GB.l10n.php',0,'���e{#yY<�3+','���e{#yY<�3+','��#���q�[��k�e�}m8�\"�\"I\0���','',0,'?'),('c;ƹ#��և�R#�^','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/ConnectToken.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/ConnectToken.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Mޮ�s`l\"Y��{','�\"q�ܓPh�ý�P�mE�ʪ�IZ!��gJ%','',0,'?'),('c@����a�����','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Validation/ImplicitRule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Validation/ImplicitRule.php',0,'��G��AD��C��','��G��AD��C��','~U�~�i,�Gݶ��(bx�Ȝ�V��X5��3','',0,'?'),('c@�l7*�(�Z���#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/escapeHtml.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/escapeHtml.js',0,'�9����Ǜ;�Q�7�','�9����Ǜ;�Q�7�','��`Rl�g�8{1q��m�$D�~�vp{�','',0,'?'),('cFK]��ht�蜐�','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Regex/Regex.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Regex/Regex.php',0,'[[����t��:Dw�','[[����t��:Dw�','���mjۊ�}�\'��h���p�~{/�!\\��ژ�','',0,'?'),('cF�V�� �\05vc�7�','wp-content/plugins/wordpress-seo/css/dist/ai-fix-assessments-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/ai-fix-assessments-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z���>��{V�Ua�','�<-�A�{�:�6c$9�-�8&aF�-�kGe�,�','',0,'?'),('cG9��4��J!b�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSortBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSortBy.js',0,'�\'\n�KC�p��FVjB3�','�\'\n�KC�p��FVjB3�','�/� ��Ͷzҝ{����7n� �e�C��C�','',0,'?'),('cJ�,l�{@��g�/�U','wp-includes/js/dist/router.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/router.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K6�7y3ʷ��|��','�2�̸6e�r����Z���$ �\Z\Z�iF���','',0,'?'),('cN�*j�>��\\�3�2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-utils/semver-utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-utils/semver-utils.js',0,'+PF��Ɗ��{��\'','+PF��Ɗ��{��\'','|���\0��5���cNHg�Ve\'h�_]wvu�','',0,'?'),('cS%+�P�.p��&,','wp-content/plugins/wp-optimize/compatibility/class-wpo-custom-permalink-compatibility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/compatibility/class-wpo-custom-permalink-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��dh��/~���\r� ','�oU��f�+[vؠ�KZˁrG=�5�o�©@�e�','',0,'?'),('cX��j�(if�]f@','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/floor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/floor.js',0,'a&k��F]��lA�y$','a&k��F]��lA�y$','�B:�5$��p�r��t�F�u�6MW�.�=','',0,'?'),('c[�\rOG@\0�v�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/stringify-object/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/stringify-object/index.js',0,'���F�;a�b��_�\Zf','���F�;a�b��_�\Zf','�3�#k�+T%ߍ|��iV:�n}�uX�D`��','',0,'?'),('cc?ÿ���튇\"`4Lz','wp-content/themes/mint/node_modules/wordwrap/example/center.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/wordwrap/example/center.js',0,'K)��dg��-D��S','K)��dg��-D��S','0��+����=�yQ\rђ��?�X\Z �r&J�','',0,'?'),('cks���T,��ֺ�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue17.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue17.js',0,'w�gt�=Q�6��|\'','w�gt�=Q�6��|\'','�Qꗖ\\��^�|(�\Z�OC}�{7������g','',0,'?'),('cp�nA\\�D��{�n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/time/now.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/time/now.js',0,'��d��^OP�P�','��d��^OP�P�','|bKvH�n0c� }���Hx1����]Fف','',0,'?'),('cqp|b%��|�,&S�','wp-content/plugins/wordpress-seo/images/academy/multilingual.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/multilingual.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#{9���S��Dd�P','��H[��`��b7U�U���ܜ(�q�:���','',0,'?'),('ct�ש�X�پ�u�yv','wp-includes/blocks/image/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W(��p)r��\nZvp','U��Vw���&#���#e���B��!��Jdk��','',0,'?'),('c}\0��v�\Z�n��}�','wp-content/plugins/wp-optimize/js/queue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/queue.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s��*\n�����OG�','��Zhn����en�C67�� 9�4\\+ɍ�','',0,'?'),('c~]��=!3z�XI���','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/strings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/strings.js',0,'LT�������}\\�','LT�������}\\�','=O,Q]��h����e�.�ѡ���Z�%��W�','',0,'?'),('c���$� ˹ɰ���','wp-content/cache/wpo-cache/juiceelectrical.co.nz/heat-pumps/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/heat-pumps/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('c�2�ւ]��&3\\\Z��?','wp-content/themes/mint/node_modules/mkdirp/test/perm_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/test/perm_sync.js',0,'c��(��;7��:! �','c��(��;7��:! �','��Q��\"�v��@u���� �`���W���','',0,'?'),('c�°N V1Wg�S;','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen05.3b79ba20bc390cf056b8.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen05.3b79ba20bc390cf056b8.min.js',0,'���nVYV�RFE/H�<','���nVYV�RFE/H�<',']�A����e�Jdi<�����ݥ���\0���u','',0,'?'),('c�Q��i�����Qv','wp-includes/css/dist/editor/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���v���\"���=��','Ų�� �h�����X(\n�2��+���N','',0,'?'),('c���alL���az�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Broadcast.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Broadcast.php',0,'{�1�y\n�j�D�^n','{�1�y\n�j�D�^n','b5��p1�%�MD?\n2�%Љ�F�����,�D','',0,'?'),('c����Lإd�U�5YK','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/default_bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/default_bool.js',0,'�Y�u���TU&�;ELf','�Y�u���TU&�;ELf','N$�m�n���X����6*[�?��R)\\L�v�','',0,'?'),('c��\'R�$��/�5\"�,','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFilter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFilter.js',0,'�8p���1*�h t���','�8p���1*�h t���','��X/d+��\0��Kwel����ߪ��O�&�ap','',0,'?'),('c�T�6p��}OV>���','wp-content/plugins/wordpress-seo/src/integrations/watchers/woocommerce-beta-editor-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/woocommerce-beta-editor-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��vf��@z�)�','��pi�\"��Yz=�=�ù�\'� ��U�','',0,'?'),('c��R��1��^㠛 ]*','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/InputOption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/InputOption.php',0,']�i~��Cv͓n�q�',']�i~��Cv͓n�q�','cb:�a�j�j 180\0��n\'�36�� _�d','',0,'?'),('c�YO5Dh�[8���','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.0.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.0.js',0,']{���m��qlf���',']{���m��qlf���','�QM����_�Uk����1\\�An�>����','',0,'?'),('c�S`��4�-�Ծz,','wp-content/themes/mint/node_modules/bower/lib/node_modules/map-obj/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/map-obj/index.js',0,'-�.Q��a��$�P<��','-�.Q��a��$�P<��','��M3���艪N�����J�\Z�T�TpoG�?','',0,'?'),('c��FQ �M�mo3R2v','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/doDuring.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/doDuring.js',0,'G���n\r�鐓��2td','G���n\r�鐓��2td','c֛\r�\0��;o&�����ϩ�g������Ô�','',0,'?'),('c�P��V[b�� n\Z�z�','wp-includes/images/media/text.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/text.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���c4�t;GJ�\n','����f-��@0��=��IKE�%>pYaF�.Ik�','',0,'?'),('c������䢔4\\','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/myspace.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/myspace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*B������j�Х','$�6�u�H�����6���5��읟��6|��3','',0,'?'),('c�5&���aP\'�ì�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/481.adbbff83ff0c.chunk.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/481.adbbff83ff0c.chunk.js',0,'�mM:��w/�����','�mM:��w/�����','�?E$(�;х���dد�e՞6=�h����-��','',0,'?'),('cؑ�~�=Ey�BO9�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/DependencyInjection/TranslationPassTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/DependencyInjection/TranslationPassTest.php',0,'/�#�hr�y���','/�#�hr�y���','HyE�ٳ��A�E���B�Q$٤�`\r���|�6�\r','',0,'?'),('c����G�pdJ�K','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/opts_fs_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/opts_fs_sync.js',0,'�W.e3�����X','�W.e3�����X','��U�.9 F_{��f��F��I\'U@�|��','',0,'?'),('c�u�2��gՑ�[3+','wp-content/plugins/akismet/_inc/img/akismet-refresh-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/_inc/img/akismet-refresh-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b��\'�h�2� ��~s','��m���Rzтq>kK 8���g��l��o@n','',0,'?'),('c�6L�DL{:}�X�K��','wp-content/plugins/gravityforms/includes/fields/field-decorator-choice/class-gf-field-decorator-choice-radio-markup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/field-decorator-choice/class-gf-field-decorator-choice-radio-markup.php',0,'~F�e9�� �]%N~�^','~F�e9�� �]%N~�^','RЀ������\r��\nі\Z��|�^ S[6bsC�','',0,'?'),('c�X*�M�z,���w��','wp-content/themes/mint/node_modules/bower/lib/node_modules/glob/node_modules/minimatch/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/glob/node_modules/minimatch/browser.js',0,'ɼ\Z*\Z�פ�:��/(�r','ɼ\Z*\Z�פ�:��/(�r','K0��-Ɓ>t!�7ؼ�R�m>4���oX��Ǎ)','',0,'?'),('c�S͘�#�ޢKh','wp-content/themes/mint/node_modules/mkdirp/test/root.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/test/root.js',0,'��4C�y?K������0','��4C�y?K������0','���\nhs��2W��h%�ݳֿm�ʹ','',0,'?'),('c�X��*a[O��{$�','wp-content/themes/mint/node_modules/bower/lib/node_modules/slide/lib/chain.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/slide/lib/chain.js',0,'b�\n7�#�#J�\"�ë','b�\n7�#�#J�\"�ë','=g�hth@Lf�t}F�E�eq+5\"�����9','',0,'?'),('c��Ɯ}\rƪ+���]B','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/Input.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/Input.php',0,'h�<���2�(7Ж','h�<���2�(7Ж',':|�㛆ڏX!��&gQ�pOھwB_3修&͕','',0,'?'),('cM\Z�}/��Q%/�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_unicodeToArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_unicodeToArray.js',0,'$�\'�Q�Q�w[AfӋ','$�\'�Q�Q�w[AfӋ','�}2gNV��x��[�E�I�u��{���ظՕ','',0,'?'),('c���H~f;��8�@','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/extendWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/extendWith.js',0,'d�ͅ��q\ZO<|��','d�ͅ��q\ZO<|��','���\"f梀�@n�{�ș6��i�m��b�o�','',0,'?'),('c��fh#��=�\\�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/defaults.js',0,'dl����}*)s�̰n�','dl����}*)s�̰n�','p�DNK�YM�Pd��\n�g1������u�Rǫ�G','',0,'?'),('c�D�\rO�;��`','wp-includes/interactivity-api/class-wp-interactivity-api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/interactivity-api/class-wp-interactivity-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?���-�%��1��-','�Q)��i�&-���?p�y���o.,�;�3�4','',0,'?'),('c��[b]��ݽ�JF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I]�U�� X�g����','�T�Ϛ-�1 [�@./i�i��q��0�o','',0,'?'),('c��O��S�Q�˓Y�>','wp-includes/js/dist/script-modules/interactivity/debug.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/interactivity/debug.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��d�-���1�hY','�M��\"�9�ocO�ժG��we�5�lr Zv����','',0,'?'),('d��:w���O�І','wp-includes/ID3/getid3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/getid3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Lo�n�B�ğ�?','ĥ7f����H��Q�a./�� �oQ�8�\n�','',0,'?'),('d�������\'ra','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GraphicsMagick.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GraphicsMagick.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ݭ#z��k��oZ�؛','#�C9�8���t�sN0��{�\r�B5O��3��','',0,'?'),('d QKI��_e��M��?{','wp-content/themes/mint/node_modules/bower/lib/node_modules/spdx-expression-parse/parser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/spdx-expression-parse/parser.js',0,'����:�z}�P\'��','����:�z}�P\'��','��W�\0��q�ck.\'�{Qs,}Pn\Z�X�v','',0,'?'),('d��1�쵓-�;O��','wp-admin/js/custom-background.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/custom-background.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��P�A3�� K�}Û�$','4hN\n��:Q�qX�z!���iq�^sYĄ�,i�','',0,'?'),('d��_�;ſ�sķ','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/new-glob-optional-options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/new-glob-optional-options.js',0,'ޭ���7:�������','ޭ���7:�������','~mo��d7P�A��#ZΪ\r��=-���٣?]','',0,'?'),('d�BA쌊 �b�\"s�','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/Addons.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/Addons.php',0,' �x�(�qޫ#���*:',' �x�(�qޫ#���*:','���t9S��T�[�е4}�\"�>��ۦ%_B�','',0,'?'),('d��}�8��*u�','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-close-circle.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-close-circle.svg',0,'gq8[g�W��1�/�-�','gq8[g�W��1�/�-�','�4\\�\Z�v\n�d��N5���DF�+D���\Z.j.�','',0,'?'),('d\Z*ӻ�-t��ѤPZ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/number/inRange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/number/inRange.js',0,'g\0j_�����]X�8�;','g\0j_�����]X�8�;','��!&�ܷ=M��^%�i�t�G�)w幧��!�','',0,'?'),('d\Z�`��E���N\'���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/timeout.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/timeout.js',0,'�^8�b�&��@Ĉ�B','�^8�b�&��@Ĉ�B','�\0�XL$d)�t�`�\Z*���o%~ҧ+� #�K�','',0,'?'),('d�w~�`Y�գ�ɀ','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue4.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue4.js',0,'�X\"�~�����Fh�]��','�X\"�~�����Fh�]��','�� �e��r���S�0�I�p��l���6�','',0,'?'),('d1��-,�Q���','wp-content/themes/mint/node_modules/bower/lib/node_modules/nopt/bin/nopt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/nopt/bin/nopt.js',0,'�2=(W>�rh���','�2=(W>�rh���','��d��8>Zz��T�h�*�\rT��i��*','',0,'?'),('d4c\r/-�\n���>��','wp-includes/blocks/post-date/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-date/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3����٦>�L�\'','����?��a�h����Ɩov���5nh','',0,'?'),('d5f��£�M��Dg','wp-content/themes/mint/node_modules/bower/lib/node_modules/pinkie-promise/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/pinkie-promise/index.js',0,'jՏ� ��O\0/Y0','jՏ� ��O\0/Y0','H�H�?�})<FC�Hj-i���)wi��<�@��','',0,'?'),('d6.y�5#Lߑ��F�','wp-content/plugins/gravityforms/includes/query/batch-processing/class-gf-batch-operations-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/query/batch-processing/class-gf-batch-operations-service-provider.php',0,'�-����_��X��F�Ԧ','�-����_��X��F�Ԧ','��%K�!�|d~��SG��%@\n���','',0,'?'),('d9r��*��`�ꇩϟ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/value.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/value.js',0,'��Q�� !��p�{V','��Q�� !��p�{V','�K��oa_M_3o�̷���5�ٲ�u��)','',0,'?'),('dA\r�w�^��f�����','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php',0,'_���d{0��}ϋ:r','_���d{0��}ϋ:r','��}l�;��\"ٽ�u���\n\0Sa��$�(y0p','',0,'?'),('dA�#�fu�o�Mg�z','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/with.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/with.js',0,'\rI3R~+�k+��k!�','\rI3R~+�k+��k!�','C��\rv���ݮ����4ЗB��i<Rp�8�\0)�','',0,'?'),('dF=���j��Hc�����','wp-content/plugins/akismet/wrapper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YN����im�5��],','���s\\�ҁ�\\z�i�����0�PK�f','',0,'?'),('dJ*���|G]�~D$�','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/ExifImageType.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/ExifImageType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=�K|�(@����','���� J +�-�\r���<\"�g�(-�5��','',0,'?'),('dJ��Ґ�Ugx/P�,��','wp-content/themes/mint/node_modules/pako/lib/zlib/crc32.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/zlib/crc32.js',0,'�䊪l�����','�䊪l�����','��+��ҏ��c�1Y��_��XC�/�2��yD','',0,'?'),('dO����6��x�*','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/string.js',0,'r\Z����+�䬐���','r\Z����+�䬐���','��M+�\'��X��oO9-�<�֗��{�(�I�','',0,'?'),('dT�7����ɛJ|�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/utils.js',0,'H�)���K[����LC','H�)���K[����LC','�g.� ۴����&����?�\'n������','',0,'?'),('d[\\n5�@�$�F.}K','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/wrapperConcat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/wrapperConcat.js',0,'uq/�H1��-�ԍ�','uq/�H1��-�ԍ�','8�`�F1Բ)g�Ba�B�z���,yR�iv#,','',0,'?'),('d`i�1*\'�m������','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/has-ansi/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/has-ansi/index.js',0,'I,�\0a��\"}rQ�B\n� ','I,�\0a��\"}rQ�B\n� ','c�}��gm�P�ӗ!��+�5��4�r3','',0,'?'),('dh��ʞ�^A��{�gP�','wp-content/themes/mint/node_modules/less/dist/less-1.7.3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.7.3.js',0,'�J��\r8��!ּ��','�J��\r8��!ּ��','o%\n������9��є�&�6��Q�\r\n0\'$�','',0,'?'),('dqMa�_��e��Ν�fN','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/fixtures/custom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/fixtures/custom.js',0,'�F���Ҳ<�p~Gq5��','�F���Ҳ<�p~Gq5��','i�S����g�r=��-0V���sۄ��ݫ���','',0,'?'),('dt)a{��[��9��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isSpace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isSpace.js',0,'yÖG_�\'�l�R�0��','yÖG_�\'�l�R�0��','y�\'�c���`��k@|�z#�z�Gu��۱,t�','',0,'?'),('d��Y��\"~eW!','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/decode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString/decode.js',0,'�V��y5\"i���6�<','�V��y5\"i���6�<','�y��������aO\0*z�\Z��qG=5�.p','',0,'?'),('d��e�g�oO�;q�$k','wp-content/plugins/gravityforms/includes/settings/config/class-gf-settings-config-i18n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/config/class-gf-settings-config-i18n.php',0,' @;�#[��pGam',' @;�#[��pGam','�5 ���\"R}���q�5��\Z�K�뒲\'��,','',0,'?'),('d�k�JQAw6im<B1','wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^tZH8* �����x�w','Omg����髿CHW0\0���Q(KN�4��','',0,'?'),('d�S�6C�Of�r�/K�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/property.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/property.js',0,',��ם���`���G�',',��ם���`���G�','4�MLK�w\\w���ET�r`��a�*���Y�2ML�','',0,'?'),('d���Auh��041�','wp-includes/blocks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8`��\"g�Fi{�\r\n�','ti��pR\nn�w��W��^�e��V|Ȧ�f','',0,'?'),('d���DM\"k&-��t�b','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/templates/after_request.js.tpl','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/templates/after_request.js.tpl',0,'R����`�����','R����`�����','��r���j���.l��v�>ݎ�\\k���%','',0,'?'),('d������.b�\\���Cu','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/View/Engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/View/Engine.php',0,'���f�eQ�h�iʏ��Q','���f�eQ�h�iʏ��Q',';�^3�_��w+�%J�]��[�Õ��\'��(�P��','',0,'?'),('d�>KhQy1�6_\'\\*','wp-content/themes/mint/assets/vendor/bootstrap/js/collapse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/js/collapse.js',0,'��(�:����JQс','��(�:����JQс','�ퟝc!��ԥ��@��E�Xᰬ��n3��','',0,'?'),('d��>�,��������','wp-content/themes/mint/node_modules/iconv-lite/encodings/singlebyte.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/iconv-lite/encodings/singlebyte.js',0,'�N��Z�� �z�&�)�','�N��Z�� �z�&�)�','NL�|��\'�<9�gCt�4�D�!��y�f��','',0,'?'),('d���8j3\'�=:','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/QueryTemplate.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/QueryTemplate.php',0,'gpU��?�� L]x�:wS','gpU��?�� L]x�:wS','RL20��$?Ε��$[��U;@�� ���|��(�','',0,'?'),('d�k�kF�1R�0�.','wp-content/plugins/wordpress-seo/src/actions/indexables/indexable-head-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexables/indexable-head-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��W!�V�t>��s�','7���~��>����D�\"�[�����j��n�','',0,'?'),('d��B���9Sh7Aw\n�','wp-content/plugins/wordpress-seo/src/conditionals/primary-category-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/primary-category-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cb�2SAr��������','�h�-Nڔ!�)���̸vh�v��r�bh�Z�D','',0,'?'),('d�0�ٷ\Z�����Ԍn','wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0<N5Җo���uM','p�\"\r���<��P13�r��z���=����Ɠ]','',0,'?'),('d���Q�3E��','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_AR.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_AR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�؋&TE�f�x�g�A�`','���㟧[k��+ݲ�)R\r���<���k�,','',0,'?'),('d�qR��r̟Z3Ⱦ','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/negls.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/negls.js',0,'��~�^�+���C','��~�^�+���C','#�ߴ�@��̃BP���SϢP�(Q|�+\Zجs','',0,'?'),('d�̪�qz�0�����','wp-content/themes/mint/node_modules/faye-websocket/spec/faye/websocket/client_spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/spec/faye/websocket/client_spec.js',0,' ���������%ڍ�',' ���������%ڍ�','F��0�,o|�14�:�V%����Yn?>�M��','',0,'?'),('d�e+�4�\0�\0����','wp-content/themes/mint/node_modules/bower/lib/node_modules/tar-stream/extract.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tar-stream/extract.js',0,'D���R�N��bR��f','D���R�N��bR��f','A�tv��*��l?E�h#|������_�','',0,'?'),('d�Ȕ-�=�y�`=y�v�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/toString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/toString.js',0,'�&)Ǹ\r)eM\';A,','�&)Ǹ\r)eM\';A,','���>�7���9��x�$�z�d�-�#���@�','',0,'?'),('d�B\r�w�䒠_]���','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Command/CommandTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Command/CommandTest.php',0,'��O[��U��\n�C��','��O[��U��\n�C��','\"�(�ݦ���8���ߠ[�Z)qd�p','',0,'?'),('d�(��%J��@�G�','wp-admin/options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',)b��C#���wgX�','y�1t�U>�[g;\r�����(��\\����.��j','',0,'?'),('d��1T�g�b���!','wp-includes/blocks/query-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~0YJ!�3��%�n�x','4��ߊ��g�ThCj7!b��M$x+ѝ݀`�2','',0,'?'),('d�:�\"g�(搈{���','wp-content/themes/mint/node_modules/bower/lib/node_modules/url-parse-lax/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/url-parse-lax/index.js',0,'+���+�jN�� `','+���+�jN�� `',')Za��T.\\Jm�A㴘 :{c:��m9z','',0,'?'),('d�}$� 8d+s\0����','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ja.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ja.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\0A툜~?��.�ޏ','���p���J)��G��z�\n^�VCx@��v�','',0,'?'),('d��a��r\0\r�F0&%','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7.MG)fLo���.P�K�','����g�����^&�l�\0�U�X9�*S�C','',0,'?'),('d�4�j�2U�V��$�P','wp-admin/css/wp-admin.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/wp-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7#Q�&M?»��|�[','Q�D���6���hP���qqM9�F�O��\\O�','',0,'?'),('d�@!��d�J���','wp-includes/js/mediaelement/mejs-controls.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mejs-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.۷Z#e0�<�l���','�X�*��\Z��X�(�Z!�Ƚ��D2aB','',0,'?'),('d�2v3���(x�I�!','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php',0,'�@!�����bB8�','�@!�����bB8�','R�9Ӫ���Z��h�\"L#���c.�U%N�:�','',0,'?'),('d�|��K<c��:8�Q�','wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-woocommerce-post-types.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/third-party/exclude-woocommerce-post-types.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�R�y�\n㨁���','��a� ��B|[4�����]ӛij���)�$�[�','',0,'?'),('e\0���h�L���щ��','wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y���ѱƔUy��{�','pa����i��v��INa\'%��fE?�Mv��','',0,'?'),('e��u�aN�k��Xb','wp-content/themes/mint/templates/content.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/content.php',0,'�P��/��e�̵D�','�P��/��e�̵D�','��c���٤ ��<�����\nC��@7��\0|�z~','',0,'?'),('e\n�,�-Љ>�z�gI�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/stubTrue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/stubTrue.js',0,'����?{�gA/,A\r','����?{�gA/,A\r','���!�N0�^8�� x.�4�&�}�r0�v�w','',0,'?'),('e\r��Zf���ޞ��|�','wp-includes/js/api-request.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/api-request.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���[\'�|\")!ô\"�p','����\nd�P�K3*��R\'5Ē�� \Z���\'�?','',0,'?'),('e���Xnj.\\�(&�d','wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a��4��P^/��7�E�','ѧ\n7Y�GĢj*�D_.���~C��b�','',0,'?'),('e#��\"{V��eB�ͭ�','wp-content/themes/mint/node_modules/pako/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/index.js',0,'g��\'��b�>t*gp','g��\'��b�>t*gp','U1�᷒�g��}*��p�\'��Gɡ�F�ʅ','',0,'?'),('e.PȴNB�Sx[�&��','wp-admin/includes/class-wp-plugin-install-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-plugin-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�Q�!e�L�05=r�','��\r���ˀ��A����\Z{Og\"���\\�N�\\','',0,'?'),('e0�8��/�;t�','wp-includes/blocks/tag-cloud/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/tag-cloud/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r!Qf��KD:v<�','p�4J)\0��\"k�W��������<V�����d','',0,'?'),('e2T�+݅�e�NżUb','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',0,'���՝�Vo5��ڐ\\','���՝�Vo5��ڐ\\','���>�9�Y\rYO��C4h�������u�G�[','',0,'?'),('e6�uV�@<?�wC��C','wp-content/plugins/wordpress-seo/src/helpers/wordpress-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/wordpress-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ñ��܃����','�pj8A2�a�&�{� ����\"9|��ZX ;WV','',0,'?'),('e@n�]����Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/escapeRegExpChar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/escapeRegExpChar.js',0,'Y�s�\\٫��7_�1?','Y�s�\\٫��7_�1?','a%���+�M��$q* �}��g�����g','',0,'?'),('eD�؊�^$�o�g','wp-content/plugins/wp-reviews-plugin-for-google/static/img/woocommerce-logo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/woocommerce-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B[PG3KH�[Zn��:','�Yw�ҍ�k�O�<�־~+S�$p�>ͤR�%�J','',0,'?'),('eHfG��Yȴ �V�8','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/randBit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/randBit.js',0,'�8��g&[$����v��','�8��g&[$����v��','PCc�%E��i\"��VP��ʶhSO��9�gX�|','',0,'?'),('eH8�\rꨊ�\'T��\ZG','wp-content/themes/mint/node_modules/bower/lib/node_modules/yargs/lib/validation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/yargs/lib/validation.js',0,'Չh��ﲙO�,/@�','Չh��ﲙO�,/@�','\\��wR��9 _*nIn��/�N;���/�\\','',0,'?'),('eH�T� �\r�Fc�','wp-content/plugins/gravityforms/includes/addon/css/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/css/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('eQ\\ D���J��','wp-content/plugins/wp-optimize/js/loadAsync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/loadAsync.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n�t�����q���\n',':�T������U������_@jz�b`�N','',0,'?'),('eXdx\"���Q�(��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/short.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/short.js',0,'�d�,e}nq�âȼ\\�','�d�,e}nq�âȼ\\�','��kx���F%{��� �����G`�L�!p','',0,'?'),('eX��\"ܣu�\n3�J<','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseProperty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseProperty.js',0,',z�~��=2]��DJ?�G',',z�~��=2]��DJ?�G','��[M�)�(O�rs��_2V�X=3z�\\�','',0,'?'),('e_�,�f�&�����X','wp-content/plugins/gravityforms/images/template-library/Gift.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/Gift.svg',0,'��\'�����o��','��\'�����o��','��R����m�Z?�m�oP�X)����cQ','',0,'?'),('ee74B�ݧr�XI!o','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/series.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/series.js',0,'�G��!�+U��;�','�G��!�+U��;�','�鐠�E`l��\r��jaH��v��]�� ','',0,'?'),('en�ڪ�\\z<���V���','wp-content/plugins/advanced-custom-fields-pro/assets/inc/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('ep\r}�u_4������','wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Щ3�^7�DPk�@c_�l','e�����נc�1��0F��^�b��B�Q@Bu��','',0,'?'),('es� ���E�n��ʥa','wp-content/themes/mint/node_modules/date-time/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/date-time/index.js',0,'}��N���zd]�t�','}��N���zd]�t�','�Φ;�*���Cf��E�A��6-�����','',0,'?'),('esȿ��a�wM���[8','wp-includes/SimplePie/library/SimplePie/Parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ʪu\Z � \\w&�','F ���X�ezB�NF-�L&�*���r\r�=��P','',0,'?'),('euo���(���8?5','wp-includes/js/jquery/ui/menu.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S8��6�;������','��`_$o�\0���%�oV�dOhg���','',0,'?'),('ew����H���J�','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/kv_short.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/kv_short.js',0,'t�/�2��͕�`���','t�/�2��͕�`���','�t�n�Ow���� W=�@QHI�Q2���/�&*','',0,'?'),('e}0wTnv_�g�~','wp-content/plugins/wordfence/views/scanner/options-group-basic.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/options-group-basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VE�gO�`#jV�4�C|','�s�c�� ;���*r3$X����G8ͬRK�','',0,'?'),('e�8}QY�Fȿ�C','wp-content/plugins/gravityforms/includes/form-display/config/class-gf-product-meta-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-display/config/class-gf-product-meta-config.php',0,'�1�M��(��-�r�','�1�M��(��-�r�','�m�j�� \Z�X�N�d5}��ֱ�C��','',0,'?'),('e���I�5m��5Q�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Container.php',0,'��\0�\"���+��{<','��\0�\"���+��{<','�ͥ�r����p�}���lyd��yN�~�','',0,'?'),('e���3��C?��n','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/spread.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/spread.js',0,'�d�N����F�/','�d�N����F�/','��&�H��`@}��&],�>f��drme�\Z','',0,'?'),('e�Y�\rmbs�F��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/omitAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/omitAll.js',0,'\"x���L�T�T����','\"x���L�T�T����',' ������^q\Z0\'�;)�b\"�H����g�R','',0,'?'),('e��R�,zp�@NT�KE','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-widget.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-widget.php',0,'�o�\\�b��n�r\"!�','�o�\\�b��n�r\"!�','xE�Z�Vɛrr��x����$-�&����p','',0,'?'),('e�Ҧm+R�P�f��U�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/round.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/round.js',0,'��nDe�y����+\0','��nDe�y����+\0','x鿬9��V�)��;�n[{�l���{ӸB�f','',0,'?'),('e���~ґ`b�2si��','wp-content/plugins/gravityforms/common.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/common.php',0,'~��n\"��d�IM#2�c','~��n\"��d�IM#2�c','\rA���srf/�7���k���*|ӝ��%��','',0,'?'),('e��#dt�[��','wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/test/non_unicode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/test/non_unicode.js',0,'�i/��S~^H�!��','�i/��S~^H�!��','�)�:\0+����&�-�\rl©��\'�T��� �','',0,'?'),('e��lsUO|�R}ܝ�i','wp-includes/sodium_compat/src/Crypto32.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\r}j�NJQX]m��','ɱ��䱃Fn����2c.n�M��ڣ� A���','',0,'?'),('e��__�%��x���','wp-includes/class-snoopy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-snoopy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k����Y$0���{','3�[D\'��\ZX5ܝ�MHm���$«R6蛃�','',0,'?'),('e�Eh\n�0�,t(�!�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find_ancestor_tag.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find_ancestor_tag.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �I�nIЧ|:�b�','�гW�)�O��\r��f��J8� UG�rL��\ZX','',0,'?'),('e���cU�M�b�.A�','wp-content/themes/mint/node_modules/bower/lib/node_modules/boxen/border-characters.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/boxen/border-characters.js',0,'�!��D�ib��1���','�!��D�ib��1���','���ctFhj��{��E�A���5��H荨�o','',0,'?'),('e���I�X�R�2�vm','wp-content/themes/mint/node_modules/ansi-regex/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/ansi-regex/index.js',0,' [�W����_ b',' [�W����_ b',';��s�2��&]�w?�@�$�~��3����\Z�','',0,'?'),('e�^#|ۍ�TЩ��z','wp-includes/Text/Diff/Engine/xdiff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Text/Diff/Engine/xdiff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^�L�4Xטo ��','L\Z�(��M ���b��;�E�.�:��)��C�p','',0,'?'),('eï-�N�yv��nS','wp-content/themes/mint/node_modules/bower/lib/node_modules/touch/touch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/touch/touch.js',0,'�Q�=è8;�$*dм','�Q�=è8;�$*dм','�o^59�Rx�oU�����FIX��0ʚ=j�7��','',0,'?'),('e�l��>����L�','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N0!?�5J�l���]','�⑨c�m����\'�T�}�#�xSF��<B','',0,'?'),('e���F�Ν���','wp-content/plugins/wordpress-seo/src/promotions/domain/promotion-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/promotions/domain/promotion-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�3�Q��i����}','=+_��<;wlAR��@����z[�4��U','',0,'?'),('e�\'���7�\r������','wp-includes/blocks/group/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/group/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_���=��e��+��!','f� ,�8�ETru\nr�ne�7X�9�q~T\"�','',0,'?'),('e�d�8�9�\0Ӳ���','wp-content/plugins/wp-migrate-db-pro/class/Common/Migration/InitiateMigration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Migration/InitiateMigration.php',0,'��\"?�a��=�q0i�u','��\"?�a��=�q0i�u','��˪��:}z�����c�|1���&�','',0,'?'),('e�����zQU�/�3��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isError.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isError.js',0,'���+�$<\r�\Z�','���+�$<\r�\Z�','ɲ�}�����1`)�����^�]b�Ru�rI��','',0,'?'),('e������g�轺','wp-content/themes/mint/node_modules/less/dist/less-1.3.3.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.3.3.min.js',0,'�k=��-���6�','�k=��-���6�','�Up��G�b��� /�?=z뎔w\0���','',0,'?'),('e�~졸��o��G�','wp-content/themes/mint/node_modules/bower/lib/node_modules/buffers/examples/splice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/buffers/examples/splice.js',0,'�ϼ�?��0�8�r��C','�ϼ�?��0�8�r��C','�d���\Z�z���w&��/36�3u� Vc�k��','',0,'?'),('e���=aI#�R���','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-help.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-help.svg',0,'�_\"߰�Y��.�','�_\"߰�Y��.�','�p/�`������j�2��\r@/5�d\n�6�','',0,'?'),('e�#�Gz�Y&/;�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-zh_CN.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-zh_CN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eT��:�a1����JK�','�r�<X���A�M��u��kC��:+sz[�','',0,'?'),('e�.�y���>���k','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-ultimate-seo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-ultimate-seo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=0M�5�����i0','W=:����iT�L��7�rƆ9Go��+����','',0,'?'),('e�7�Vw��ܸ�C�','wp-content/plugins/wordpress-seo/src/surfaces/classes-surface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/surfaces/classes-surface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>�Њ�D��;�u\r�\r','Y��̥��\n�\0��n|vI-��:�*�','',0,'?'),('e�Tؙ�_J�;a�CF','wp-content/themes/mint/node_modules/bower/lib/node_modules/pump/node_modules/end-of-stream/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/pump/node_modules/end-of-stream/index.js',0,'�u~�qo�C���~(�','�u~�qo�C���~(�','1����x��1Y�ϔ�Z��i���n�=n�','',0,'?'),('e�gXw�#&��l�l#�','wp-content/plugins/wordpress-seo/src/main.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��݇ލ,��H��\'','�����kq��縱�4�Gcz%�\r�7��k�Ұ)','',0,'?'),('f��\Z�����}��(�','wp-content/themes/mint/node_modules/sigmund/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/sigmund/test/basic.js',0,'��F��a�(%��4X��','��F��a�(%��4X��','�>��N�\\2�6I�\" ��k�;��o�N{�szRRv','',0,'?'),('f ���ȷ��s�ۃ�','wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/Util.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/Util.php',0,'mS#o�\'n>7ɦR �K','mS#o�\'n>7ɦR �K','��<�u�m̏�c.t����O��1O��b','',0,'?'),('f���C����xK;S','wp-content/plugins/gravityforms/includes/fields/class-gf-field-text.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-text.php',0,'3�MqD��#G�yB�mp�','3�MqD��#G�yB�mp�','�,���ə6X��°;�m�B_��!l�çw','',0,'?'),('f���E&?�>~�к�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/MIN_INT.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/MIN_INT.js',0,'��R��\Z�X<mp�','��R��\Z�X<mp�','�>6��e\no7=e�K8�}�z?]�!�}Bϱ\\{','',0,'?'),('fnF�ro����:�L�','wp-content/plugins/wordpress-seo/admin/notifiers/interface-notification-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/notifiers/interface-notification-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�έ��VR�`X���','���zؒ��Nu�vw�q�I�[=�R��QE','',0,'?'),('f��pS�G[�D=�','wp-content/plugins/envira-gallery/assets/css/images/icons/envira-ai-black.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/envira-ai-black.svg',0,'�>�X2��Y��n�V��','�>�X2��Y��n�V��','#-��\0��l\"F2�c5����؇���%','',0,'?'),('f!���s*��[','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/properCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/properCase.js',0,'������Jm_W�M�c','������Jm_W�M�c','��L=f��Qqg:Z�2�4�?��iӣ���&���J','',0,'?'),('f����dWT��~','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/words.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/words.js',0,'n^�?�^7���{���%','n^�?�^7���{���%','>g��U��bd����S��_@A��I@���','',0,'?'),('fz��\Z lI�/�m�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php',0,'R\" �\r�{9��q+E^[','R\" �\r�{9��q+E^[','�Ol��]%�����$R�Co�m��b�Tr�>�\ZG�','',0,'?'),('f!n�ެ��cPVP�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Exception/RuntimeException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Exception/RuntimeException.php',0,'��T���[H�~X�g','��T���[H�~X�g','�s����2�U\r6��;$��\\��enܪ�%','',0,'?'),('f,�i��_k:��.�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js',0,'�?-�kW�<��\0���','�?-�kW�<��\0���','�DuT�~Ȭ!և�%��b�߂�r�Rƛ�','',0,'?'),('f,� #QliKZ��k','wp-content/plugins/envira-gallery/src/Frontend/Shortcode_Link.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Shortcode_Link.php',0,'�/2-�R��嵝�\r ','�/2-�R��嵝�\r ','�F>��5!V{�:E�K�|Ľ���M���/DՖ','',0,'?'),('f-�� ��0!�ɪ\'�_','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isNaN.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isNaN.js',0,'e���{`�j:�LU�k','e���{`�j:�LU�k','r�&�`E��P�g@�C�<gR�aU^̌','',0,'?'),('f3�ߢ�Ʈ��/��L','wp-content/plugins/envira-gallery/assets/css/images/icons/animations.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/animations.svg',0,'9�,��^\n�8T�ʋ�_','9�,��^\n�8T�ʋ�_','~��S:1l,��ä�H\Z�^32�4�i�/�S','',0,'?'),('f?��9!�ιnhY�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/BooleanOption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/BooleanOption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ǥ�X*<v`��;v�a','�u��>�,/Dc��߮����\0��<��6�reW<�;','',0,'?'),('fC�z����L','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/rejectLimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/rejectLimit.js',0,'qgb��iF�K�J:|\\','qgb��iF�K�J:|\\','�)e����JnS�k\\24��d4^�P�U b�<','',0,'?'),('fDooH�lN��<�_&�i','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/InstanceDefinition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/InstanceDefinition.php',0,'浊����ʦ���6��','浊����ʦ���6��','�E��R`>Y���H��.��aUSX���;x','',0,'?'),('fEa)riwC4X�ǚ�p','wp-content/plugins/wordpress-seo/src/helpers/site-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/site-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�TK]�{@qVY��I��','�aj��M|s#�d[v��]]��\Z$�\ZҸ؟c�','',0,'?'),('fE�\0T��/UC2q�*о','wp-includes/html-api/html5-named-character-references.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/html5-named-character-references.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����\0��9�OΜ','D��k��֘�;E�y&��,[�ft�\\V\\���','',0,'?'),('fQ\r<_1w~\"�W���?','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createCaseFirst.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createCaseFirst.js',0,'�����U`b�l(�','�����U`b�l(�','��F��&�%���Z�RsT�Ը��C\0�J','',0,'?'),('fW����-1;�co�tI','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/defaultsDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/defaultsDeep.js',0,'��!��7)6U�yN','��!��7)6U�yN','y��H��F���@�X�l��;ɀ0�Λ5�[�','',0,'?'),('fW�{/�T7,��1��!','wp-content/plugins/gravityforms/includes/external-api/class-gf-api-response.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/external-api/class-gf-api-response.php',0,'-�%\\�%h��Kyh�@14','-�%\\�%h��Kyh�@14','G\r�p+\Z�u�#��($Ŕˮ��2�{`~1','',0,'?'),('fX�*���A���)��Og','wp-content/themes/twentytwentyfive/patterns/contact-location-and-link.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/contact-location-and-link.php',0,'�@\0�m^j�Z��=���','�@\0�m^j�Z��=���','��]`��{� ��n��\n���ȱ�Z���}��Mv�','',0,'?'),('fX�h���ǍLY�j��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblemsException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblemsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a���TC�5�����','��Oq:́�}\Z�:�x8�>���5��>%�����','',0,'?'),('f]����&��܈�','wp-includes/images/media/audio.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/audio.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8g�t �&��h','@�E�yڑ[��-�C4���{\Z�кϮ_v��]C','',0,'?'),('fc�m������}���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/functions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/functions.js',0,'�N-��=s\r����0�_','�N-��=s\r����0�_','|*�̓Syj�YQe:��`��$l���]�$���','',0,'?'),('fc�>��>{f3��','wp-content/themes/mint/node_modules/postcss/lib/root.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/root.js',0,'���\'0�w��(��[j�','���\'0�w��(��[j�','|�Do�Y�y�ݩ������:+��[V�Aڼ�8�W�','',0,'?'),('fh\Z���ߝL½A��','wp-content/themes/twentytwentyfive/patterns/text-faqs.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/text-faqs.php',0,'�O��ݲ\Z|�$.Y��','�O��ݲ\Z|�$.Y��','C�ҳTg^�e9`ӏM����Q��,K ��<','',0,'?'),('fm�l�\r߃gTz���','wp-content/plugins/wp-migrate-db-pro/class/Container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Container.php',0,'\"7�$O�9��ո�l�','\"7�$O�9��ո�l�','�b�>���{��o.u�9ۿV��8','',0,'?'),('fp������j�H�\'','wp-content/plugins/wordfence/views/blocking/blocking-status.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/blocking/blocking-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D��a���G]:','^Ķ�U�O�95E�ֹ�~��z��qM�q�3@','',0,'?'),('frb��,�\Z���z8�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/bindAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/bindAll.js',0,'9�V>�N���|�c�^S','9�V>�N���|�c�^S','��\Z%H����kӪ�n}����=a�(v���Q','',0,'?'),('fs� h��\n+1�ir','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/juxt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/juxt.js',0,'���q0�a$(W9e�','���q0�a$(W9e�','\\� R�F�d�^I�)�T�ֳ�(��A�','',0,'?'),('f�u3\n�M\\�}6*0�','wp-includes/class-wp-customize-setting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-customize-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��Y\'���VɎ�c�','���I&>WKi�!%ͯ(7ԧQw���ْ]�#�%�d','',0,'?'),('f�?�D@J�Ͳ��,\n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/propertyOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/propertyOf.js',0,'G�B\r�k�⦍�-/�q','G�B\r�k�⦍�-/�q','�!\\�$r�\0C�ߩ:YƁ�Ze��������','',0,'?'),('f�F�A��l��Up���','wp-includes/blocks/post-featured-image/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-featured-image/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�Y�_�?�T�JIi.','/�C��6�sG�E^�\'�ַC��yk��y','',0,'?'),('f��\'�2��5IN��\r6\n','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/util.js',0,'J;�\\=����3�}�)/','J;�\\=����3�}�)/','_鍶��g��E�!H�v��� �.�l�v�1','',0,'?'),('f���3���u��R�=9','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-block-comment.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-block-comment.js',0,'���>��J5�����i�','���>��J5�����i�','V��2�\0�!�ff��T\Zv|dO��IRK��\0','',0,'?'),('f�霰f؟|h��U�L','wp-admin/includes/ms.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/ms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؚj6f d��lĤb�A','��v�ih�zW����_� ���t/u,sb�0�[�','',0,'?'),('f��mȄ�%�#!y\r�','wp-includes/blocks/navigation-submenu/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-submenu/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eFs)��,��3��+��','qP,�$B�{r�^_z#@��b�+VG�j\n)�`','',0,'?'),('f��\'�G��L���qi','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/BlockCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/BlockCommentSniff.php',0,'�ʪl�?;!%A���H','�ʪl�?;!%A���H','xf\r���1 ��~�Υ-�(R�a��컚9c6�','',0,'?'),('f��ŭ�8��;�slV','wp-admin/js/privacy-tools.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/privacy-tools.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#���ܻ� u�{��',',y6���x��l$�ꠠ�7���N�;Ǟ�-U','',0,'?'),('f�SK�o��k�����T','wp-content/plugins/wordpress-seo/images/text_link_counter.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/text_link_counter.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���d����(���','6���[gnS��ܷ۳�����n�;&O','',0,'?'),('f�j�Bx?`��\Z�n��S','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padChars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padChars.js',0,'��Q@Cft�`�_Ny','��Q@Cft�`�_Ny','�)��fKPP��SA�sy�Z�<�{&��I�5�/','',0,'?'),('f�>�\"(�\"�i1�6','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Debug/Dumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Debug/Dumper.php',0,'S^�]�6j���H�','S^�]�6j���H�','��ڎc�Ҟֶ\\�Ʉc��\Z{^Ǝ �r7̓','',0,'?'),('f��aZ�Y�m[q�d','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_reEscape.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_reEscape.js',0,'��!�E�������','��!�E�������','�f�T���7��6Pm���ΛC7�t�e�\\��S�','',0,'?'),('f���]k�^.�z C-','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/some.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/some.js',0,'� <�� ����c1�','� <�� ����c1�','��p�\n ���N��͘^� \"����Bԫ�]�V','',0,'?'),('f�D��bC�_a����','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/ProcessTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/ProcessTest.php',0,'��3d�k�&~x�]���','��3d�k�&~x�]���','f�#��j�enKg����smN�X!H��׃','',0,'?'),('f¤5֗���C�t�@[','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/stubFalse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/stubFalse.js',0,']\\ a�}M���!7Fu�',']\\ a�}M���!7Fu�','��∖G��M6���4W�b!�ZsNj�','',0,'?'),('f��_m�5��m�@6��','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/BasicVault.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/BasicVault.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q۴܍���\\0�','4\n�so��4e�$.ɧƱCv\"���*ϒ��輳','',0,'?'),('f�<�n�T?��Ü���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/examples/pow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/examples/pow.js',0,'t@ޖ���>=��\r���','t@ޖ���>=��\r���','i�R�ݫ��.^�D�`Cy՞>���m�5','',0,'?'),('f�3��Y����T','wp-includes/js/jquery/ui/tabs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/tabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�/��K�J�S_�ʸ�','��Y�t�Y��3�������5v��ld�\n�zQ�','',0,'?'),('fֈ�����V�Թ)�9','wp-includes/theme-compat/embed-content.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/theme-compat/embed-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��me���8�����','}Ec���z�]#�n���w?y��R�a��0ޅ6','',0,'?'),('f�i�U�{�MQ��','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Annotation/Injectable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Annotation/Injectable.php',0,'�H&�|NM�k\Z3�\Zi��','�H&�|NM�k\Z3�\Zi��','��^Sj�2��BQE�RÈ��3��8�Ų','',0,'?'),('f�.]6o�R���','wp-content/themes/mint/node_modules/bower/lib/node_modules/read-all-stream/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/read-all-stream/index.js',0,'Ʋ==x٥��2��w_','Ʋ==x٥��2��w_','�I|�<�F��ܕN�B�O+�w^�l���Yl핅','',0,'?'),('f��K��\"Gą.;l�','wp-content/themes/mint/node_modules/text-table/test/doubledot.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/text-table/test/doubledot.js',0,'��w�73�����:','��w�73�����:','��8�Fg}�Z���� ��/ՒL��n�,S�','',0,'?'),('f��ޓ�\r��\r�Rxg','wp-content/themes/mint/node_modules/less/dist/less-1.4.0-beta.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.4.0-beta.js',0,'�㶕�O �z��a��','�㶕�O �z��a��','�΄K����2?�5,CQ�QO��@�M6ʀ�G','',0,'?'),('f�����=��de�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseFor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseFor.js',0,'�FC���\r��⻟���','�FC���\r��⻟���','G���c�z2ɑW����%azȅtK0Ȁsۆ �','',0,'?'),('f�5{�F-�_���1�','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_classmap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(tIr?Cڦ�\0F','���rS�1���2�ۓ���`6�%%Z\\.���','',0,'?'),('f�܆ᆽ�Pr`��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/getQuery.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/getQuery.js',0,'Lvhy�H�y��T=L','Lvhy�H�y��T=L','Ъ�����gc\r���:֖>�ߞ��Nb0��b','',0,'?'),('g��Fs�`?/�Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/union.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/union.js',0,'�L?�~��^����^','�L?�~��^����^','!�ڻ{��pwfa��M�-=r�+�w� ��ZI4�','',0,'?'),('g ?���֖�1)�-�','wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/LICENSE.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a1!� ѵ���5�I','8@����9e{�Ӎ#�ң��n\nY�փ��L','',0,'?'),('g#L�ͬK�A]ea�2','wp-content/plugins/wordpress-seo/vendor/composer/autoload_namespaces.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�,}vĨ3��G��)�','E�r4@\0�ԡ$��z�3�$l��\Z�`i�ex�l�','',0,'?'),('g#�,vM������:��','wp-includes/js/jquery/jquery.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b>�|�� <2\\Q\Zs�','�k�+���/fg�ƃL@��cf9�sJ�tX/nn','',0,'?'),('g)��NpJ@o{�Ӱ��','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/ClientInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;{�R���X���','���@��Sz��~��#��3����DmW�eN% �','',0,'?'),('g+yr���q����D��/','wp-includes/vars.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c���(���\"��R','��ا`3���4%ڻc$\"� `���2�ً5','',0,'?'),('g+���wJoG���{b','wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�4�\0��ޮ�颺�','�Y����V��[��6#�\\���^uC�2�f�','',0,'?'),('g,y��mt\r�\"Z?Z&�3','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/initial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/initial.js',0,'�\\r�Ԯc���c/T�','�\\r�Ԯc���c/T�','u�����3�B^��8c��d\Z�n�2��<�M','',0,'?'),('g2�2�7ûⱁR(���','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/PlatformInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/PlatformInterface.php',0,'�@�*\'�8!�6�','�@�*\'�8!�6�','��w��\'�κ�c�v�W��I��{�Xw�O','',0,'?'),('g3�h�)�-܅���NK','wp-content/themes/mint/node_modules/grunt-contrib-watch/tasks/watch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-watch/tasks/watch.js',0,'���{\n�Rl:�_�ׯ','���{\n�Rl:�_�ׯ','4� �ܺFW��lI��V��f2t섧�P�H�c�','',0,'?'),('g5w��8�rAO��O��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/gt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/gt.js',0,'E�%��S��?�]��\\','E�%��S��?�]��\\','��H���CZc�e~,��R��ꠒ\\hV��(}','',0,'?'),('g:��\0zRO .���','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Loader/FileRequireLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Loader/FileRequireLoader.php',0,'��n?����x�:G&5�|','��n?����x�:G&5�|',')Oq��\r>v��)�E��%�(��YݒI3�4��X','',0,'?'),('g;���p�->�Uدr?','wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/examples/levels-werror.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/examples/levels-werror.js',0,'�K�F�&N��c�(;v��','�K�F�&N��c�(;v��','l��P�g\Z]H���6�Yx~�dV/ �!s��p��','',0,'?'),('g@��0�!ȱ�;�r`r','wp-content/plugins/gravityforms/includes/system-status/class-gf-system-report.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/system-status/class-gf-system-report.php',0,']W\0v�1�7��L��',']W\0v�1�7��L��','�_��J�ر}�v:t������}`h�~���','',0,'?'),('gO<Wq;��Nd+���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/find.js',0,'d7��4e�ɩ!°@��','d7��4e�ɩ!°@��','ъl�PF-+�SԽO�>��wNJ�ʬ��F��[�K','',0,'?'),('gO� �_�����ye','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sum.js',0,'�?b?lTcM�و��͞','�?b?lTcM�و��͞','���`[��5���@;.H��4��\0g#�.���yp','',0,'?'),('gQir��똿��/!��','wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���@�ϳ��;�$�s','�@�`�W�*֔���~./\Z Y�W@�$�\\��М','',0,'?'),('gg�N7���e6-���','wp-content/plugins/gravityforms/includes/fields/class-gf-field-singleproduct.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-singleproduct.php',0,'}���%Ux\'H)5�qy�','}���%Ux\'H)5�qy�','��F��M��}��T~�`oٛz+)x�KLp�쪙','',0,'?'),('gu^>Y!���O�ǐTq*','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/ConsoleEvents.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/ConsoleEvents.php',0,'���й5A졇X�F�','���й5A졇X�F�','�m��@����x���A a�\'�\r�','',0,'?'),('gv��+W�D\r���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/register.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/register.js',0,'�Q�=#>�R�W����','�Q�=#>�R�W����','��y�{�n�??m�k3��˸ �g��c\ZG�D','',0,'?'),('gv��\ZUO��������','wp-includes/blocks/html/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/html/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fX=��\"~j���{�','Zc���cp�i4�g!m�BC�K:d)&��/(B','',0,'?'),('g|y_�o4\"��X�N���','wp-includes/images/smilies/mrgreen.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/mrgreen.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-5��^����J�j���','���M��g�$��+;��\0�5����H&\\E6%w','',0,'?'),('g~ȹ�?Q��G�r�l�','wp-content/themes/mint/node_modules/bower/lib/core/resolvers/UrlResolver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/resolvers/UrlResolver.js',0,'AT��L�T��+�','AT��L�T��+�','a[F��@�����\rT�.=a9���hZ2�3�~�','',0,'?'),('g�����]r> ��?}','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/WPEngine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/WPEngine.php',0,']Q{� �V��s���',']Q{� �V��s���','f��XU�\r��ϓ�J�b^Z���\0�r��\ng','',0,'?'),('g�^�NY���m��]m','wp-content/themes/pinnclonesmalltest/dist/scripts/wp-admin_6abb70ab.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/dist/scripts/wp-admin_6abb70ab.js',0,'�[.�Q]�8�;�IǢ؏','�[.�Q]�8�;�IǢ؏','�n���X��;�zZ�RBw�ҍ�?M���c��Aw','',0,'?'),('g�\Z���Ş��|q�(','wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z�W�M��&�8�3�6','TR@pe��S`F�aױC�>+�V�%�8�JyQ','',0,'?'),('g�$G\\��;�r���1X','wp-includes/images/wpicons.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/wpicons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dS��uq��V_���a�','���cZ_��?n�_��K��6��1�\\}r','',0,'?'),('g�K����N>J��4','wp-includes/blocks/freeform/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/freeform/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�ZH�ӔC��W>','Q�t��u>Y-D�ӿ�]h��moh�����#�','',0,'?'),('g�M��H���LI���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php',0,'�WUtV�k_��w���','�WUtV�k_��w���','�n���L�#�u��*���Cc���������=�0','',0,'?'),('g�pŻ�!e�-<���W','wp-content/plugins/wordpress-seo/css/dist/icons-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/icons-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8���2�����ј ','�$�F?�5۸�\"Ri{��cv%[Iu悆�','',0,'?'),('g�z���C�W(Vc/','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library.e78f683305aafa6d30e4.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library.e78f683305aafa6d30e4.min.js',0,'����ʈ�\n{�K��u8','����ʈ�\n{�K��u8','�s���I>R\\x��`J)�G�!p��혷Z.�z','',0,'?'),('g��:�Od�^�k���h','wp-content/plugins/gravityforms/includes/save-form/class-gf-form-crud-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/save-form/class-gf-form-crud-handler.php',0,'5r�H���\ZF���','5r�H���\ZF���','׀4n�^����ʜb�>Þ��3,;�*����J�','',0,'?'),('g���9�G�P����b||','wp-content/plugins/gravityforms/images/cog-hover.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/cog-hover.svg',0,'����,�Ì��4���','����,�Ì��4���','Ċ�Q�bK3�eA���/1��T�z��bM�D','',0,'?'),('g�>{��A�2�Fh,�&','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/traversing-dom-tree.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/traversing-dom-tree.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FH���f�ٞZ�q�','�M��<k�C��2�.w��q������$Ď��)','',0,'?'),('g��\'&q\rxvzKt�X�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/NailgunClosureCompiler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/NailgunClosureCompiler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ut�6i�<1��� }*','7@�+�VQlC>���\nCR�Ls+���L5��A','',0,'?'),('g�f�1�۶�y�;�_','wp-includes/class-wp-http-proxy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-http-proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}4TޗU��|��',']#�j��+x�wę�η:��b�\n�t�c�','',0,'?'),('g�s��)��m��%','wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`r�ll�3@ޠ!s','F+�RZς�eQ$ep�G%Ev�-�xE','',0,'?'),('g�*0�\0�tl��Ey','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isFinite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isFinite.js',0,'<�%�M*L�X�����','<�%�M*L�X�����','���k��e0�:����U��L��Z�u5bi','',0,'?'),('g�]e��!^��(PK���','wp-content/plugins/wordfence/models/common/wfTab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/models/common/wfTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�T�}�HW\'<}\\','Z¥|�s�S�8e��3�Eؗ�$����ܜ-h�','',0,'?'),('g�mD�Bx�*�6�\Zo','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/defaultsAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/defaultsAll.js',0,'��lal�͠o��c','��lal�͠o��c','��4w\ZCqaf�\0 �G��Q�;p��Ǧ','',0,'?'),('g�fVހg�3�o3','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/typecast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/typecast.js',0,'d�mq,ٗ?�À�~�;T','d�mq,ٗ?�À�~�;T','�(2� mf=w�8wB\\C�.��J��8','',0,'?'),('g���Ǩ/恋�]�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/weekOfTheYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/weekOfTheYear.js',0,'2:�W�Fv\r�W�T-\0�','2:�W�Fv\r�W�T-\0�','L�\\��~��\0�n�ns�MD�rY�[Z��','',0,'?'),('g�e؍-6sb,�3)߲','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/array1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/array1.js',0,'�@���U�K[���a�','�@���U�K[���a�','�k��&X�d8�[Ƣ��Z:��Eԕb�SR�A','',0,'?'),('g��~)�~�s�ʞ��I','wp-admin/includes/class-language-pack-upgrader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-language-pack-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h֘˷!Ć7+b���','����F\\V/�;�\\�ҲG���ߪ�\0>���','',0,'?'),('g�3\"���8�9�2:3?E','wp-content/plugins/wordpress-seo/src/analytics/application/missing-indexables-collector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/analytics/application/missing-indexables-collector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1n�J�*$\0E\r��','F\'E0>�߶��Z���4�r���Z�7���8�','',0,'?'),('gӁ�\"}�H��,�d�','wp-includes/blocks/social-links/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-links/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I/��w+%�%��)�','��9�*�Dh�q\0�.#�DC�>o�:�}�','',0,'?'),('g��η��O;��=��','wp-content/themes/mint/node_modules/hooker/parent.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hooker/parent.js',0,'������ʿ�b��','������ʿ�b��','j��N�E�?� ����GEC5�=N�k��r','',0,'?'),('g�&�,�Y�@�Y���','wp-content/themes/mint/node_modules/minimatch/test/caching.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimatch/test/caching.js',0,'�G�����M��@82�k','�G�����M��@82�k','k�CޅY4u�\\=��F�Օq�~���D�`q','',0,'?'),('g�ww���i��Ҩ%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_duplex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_duplex.js',0,'���R��`H�8�!�','���R��`H�8�!�','p6�|9��3�|\n;�R�U�/[�3���Eݺ�','',0,'?'),('g���\0]ϟ�8�Kݒ~�','wp-content/themes/mint/node_modules/tape/test/exit/fail.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/exit/fail.js',0,'Ԉ�&Q��OϽd/*','Ԉ�&Q��OϽd/*','tư��B�Q�+�-��:+�u�i','',0,'?'),('g��]bR%� Z��E�','wp-includes/js/shortcode.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>}OP�8Z,Ob���>','�����:���D�a�!�ق�v����2\"!','',0,'?'),('g��0�+�<�8���','wp-content/plugins/gravityforms/includes/setup-wizard/config/class-gf-setup-wizard-endpoints-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/setup-wizard/config/class-gf-setup-wizard-endpoints-config.php',0,'���6Y�y�2\'�','���6Y�y�2\'�','����j�H��S4V�P�u,30��N��7U','',0,'?'),('g�+�_�P=�y�P�#','wp-content/plugins/wordpress-seo/js/dist/externals/styleGuide.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/styleGuide.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�kO\'�2S*h��;[�\\','!�^eL��s�R͈H&��7�B�����DHQ�','',0,'?'),('g�Ed��1��D}����','wp-includes/js/jquery/ui/autocomplete.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/autocomplete.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jS�4[7�\"b�qhNy','$E]T��B[Uq��ղcα��6��ڟ�0��','',0,'?'),('g��!J�r��&�+l:�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js',0,'Y<�B^[�7WF�5�@','Y<�B^[�7WF�5�@','ؖ��](��L@Y*ɗ�&~&�<Q�rG?�`���','',0,'?'),('h�y뎱��|�S','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/toUInt31.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/toUInt31.js',0,'$�����,\\��r��','$�����,\\��r��','y���lWah)��5�\0�����\\�\"�~{�','',0,'?'),('hi�FǷɵx��N�','wp-content/plugins/wordpress-seo/inc/language-utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/language-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4y�J��`{��Z�YPz','H�\Z�;��N<�yzg�[H �مm6vo����','',0,'?'),('h��3G��K�~���','wp-content/themes/twentytwentyfive/patterns/pricing-2-col.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/pricing-2-col.php',0,'�#.��\ZBc�!M�-L','�#.��\ZBc�!M�-L','z�Pz���xJRCg��� p�t�-lM�2|�M��Ȑ','',0,'?'),('h\Z�+DE��,$S� ','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Factories/ConnectTokenFactory.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Factories/ConnectTokenFactory.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����Z��Ob�j�','��|�I\'V�v�|��u�g�_K���v�','',0,'?'),('hS���>6����*','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Translator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Translator.php',0,'�)�(�AE��}��DL','�)�(�AE��}��DL','�ˮ�T�L&{��\"A\'Ğwj�Cf�$��8r~','',0,'?'),('hZ[���=���w�r�','wp-includes/sodium_compat/src/Core32/XSalsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\������:R/�+','�ɫ�������:���jN�mm����R���[','',0,'?'),('h���.�^����','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-states/checkbox-active.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-states/checkbox-active.svg',0,'E��^LTf:����','E��^LTf:����','/���S�^�ٰ����|@��!���ݫ�r�P�','',0,'?'),('h\ZOhl��_��Lm/�','wp-includes/class-wp-customize-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-customize-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{}�x�,���:��','���:�MK�(\Z�uZ�F��Nr�7>N�I|�','',0,'?'),('h\n���/�L:=��','wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/async.js',0,'Ou}��mO�V��7�','Ou}��mO�V��7�','�4��e�>���p�Қ4��S���k� \r�>','',0,'?'),('h:�u�f�뇝�_Y�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/Sanitize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~贡���\n\0}\Z','=S }\n$|FqH���{��V(�O/�J�X+���','',0,'?'),('h d��껅2��_�r','wp-includes/functions.wp-styles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/functions.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[[V��-��x�o��','6�Th�@���J�[��Nnl�O�[��6*��6��','',0,'?'),('h%͙\\;��1?J��J','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N��l�oDA�(�','�5���->��y���{���/�N?8��~����q�','',0,'?'),('h,�$b�^�(S�aMĩ�','wp-includes/SimplePie/library/SimplePie/Net/IPv6.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Net/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','п�{v�ކ�\Z�X�','�e,��ʷ�p{l�ƷV�I��ż3sd�z�{��Ȇ','',0,'?'),('h0X-�i����^�G`8','wp-includes/pluggable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/pluggable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#$i��� ����mGgx<','�8�6�u��|+�$oPk���|���o�<�','',0,'?'),('h4���#3�`�-݈�\"�','wp-admin/profile.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0��,���g;ꙴ','�C��q��N,�`v�S��*���Z[�`���m�','',0,'?'),('h6)l���4�~�|XW�S','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/Encoder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/Encoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����J���,��','&@���7L��w�����K��/V���\"15�','',0,'?'),('h8�B�X��:�9wc�','wp-content/plugins/wp-optimize/vendor/psr/container/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/psr/container/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s �:�/Ke%��$��','�AZ�-��֭���:\'��<5���F�Wq,��','',0,'?'),('h?b,������Y��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseXor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseXor.js',0,'�+����[lS2���','�+����[lS2���','�l� \n�lFVݾ�8��A8�v��_���t$�','',0,'?'),('h@Z�%�R�F�;ti\\m','wp-admin/css/login-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/login-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v��\0�)�?�\\h\0Y','�j�.R�k8!�I��[����<��V��','',0,'?'),('hE��Y�z)�;�!��S=','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/clone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/clone.js',0,'�3��Fb�֦x�v7�','�3��Fb�֦x�v7�','�#���2��od�<騌OY薏W�/&�����;','',0,'?'),('hH:�O���G�Qױm�G','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/abbreviate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/abbreviate.js',0,'����gGj��9���','����gGj��9���','��U��j=@/��j�Z.Q�]�I���L','',0,'?'),('hX�n!�s}�t��s�','wp-content/plugins/wp-migrate-db-pro/class/Common/Compatibility/Compatibility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Compatibility/Compatibility.php',0,'d]|��\\��<>]�&�6','d]|��\\��<>]�&�6','ǔQ(%�]��;7�%��?X����O\ZH','',0,'?'),('h[�C�l qzx,`�Ē','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseReduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseReduce.js',0,'eD\"f�b_�eGL�','eD\"f�b_�eGL�','U@�fU}��c_��� ~��S���]�i�ֵ��','',0,'?'),('h\\{���t��O<p&�AE','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/HostMessage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/HostMessage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-^�u��r0$� ��L','T�g�W��M�.7��m+����O�8�','',0,'?'),('hc���=� ���0�','wp-includes/block-patterns/social-links-shared-background-color.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-patterns/social-links-shared-background-color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�Q��v���#&OD','�e^]`>qYc�T����.�8�4��S����','',0,'?'),('hh�r|O7�=�H���','wp-content/languages/themes/twentytwentytwo-en_GB.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/languages/themes/twentytwentytwo-en_GB.l10n.php',0,'���p`,����;/','���p`,����;/','}ӝ�Zz)��\"�]��\\L(h�56@ǿ��t��','',0,'?'),('hk��\\�0��J��aJ��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/HelperTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/HelperTest.php',0,'�p��.��n8�v��<','�p��.��n8�v��<','����f��6�8�}���ى��Rq��_]��5','',0,'?'),('hp�>�F�� ���ݧg�','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/node_path/x/aaa/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/node_path/x/aaa/index.js',0,'�K��ʿҴr�<u�','�K��ʿҴr�<u�','�W��w�g%��7є�j��O���*�l@','',0,'?'),('hr1��S��<��{��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDuplicateArgumentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDuplicateArgumentSniff.php',0,'Ot|�*�.T(�\r�}m�','Ot|�*�.T(�\r�}m�','e���4>���\0�\Z�)�o��v-���\\ʫ','',0,'?'),('hr<�3I���ic���','wp-content/plugins/advanced-custom-fields-pro/includes/api/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/api/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('hr~���I�喿v!','wp-content/plugins/advanced-custom-fields-pro/pro/acf-ui-options-page-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/acf-ui-options-page-functions.php',0,'����5�u?�#���','����5�u?�#���','q�W)WʝinM�v{4(��ɨ�E�T�K��','',0,'?'),('hs���m�iؚ�','wp-content/plugins/wp-migrate-db-pro/class/Common/Replace/RegexPair.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Replace/RegexPair.php',0,'�9H�0\0���,�4wr�7','�9H�0\0���,�4wr�7','�q��-�.v��K�������,�@3+KԊ/','',0,'?'),('hzV����z$=���','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RedirectMiddleware.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RedirectMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8d�\0��b�^G��','0�g���(�w�~�8`ʔ~c���C�K��!�','',0,'?'),('h|hE��f:Ʊ2��~','wp-admin/network/theme-install.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','堷ȹ����H^r�','�f�kL��\Z�)h/F_��M�9�j���V�','',0,'?'),('h0��mGA�����','wp-content/themes/mint/node_modules/tape/test/nested.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/nested.js',0,'I�sV:���~s�;�%','I�sV:���~s�;�%','����Lɻ�O{`�\'����`�:�LRg�','',0,'?'),('h�2I}}��A���ۑ','wp-content/themes/mint/node_modules/bower/lib/node_modules/sntp/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sntp/test/index.js',0,'�OT�3W�C�����X�','�OT�3W�C�����X�','��� ���W�����R�\"��ƀ ���\n�)��<','',0,'?'),('h��.��b\"l�^Sj','wp-content/plugins/wordpress-seo/images/academy/all_around_seo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/all_around_seo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�&�����l�P��','�,b�@ 9qPl�.d�\rN�Tvx|@��瘚G','',0,'?'),('h�5P��>1�ŔD\Z\nƪ','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-d6d11dee.min.js.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-d6d11dee.min.js.json',0,'AS�mP���вes','AS�mP���вes','-?���)/s��|����S�\ZO�R�����','',0,'?'),('h�^)����a\'���j�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/MessageBag.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/MessageBag.php',0,'Wy,�^�$jp\r��V','Wy,�^�$jp\r��V','oO6\Z�xh�5(���J�� �ٯ`�_�R�','',0,'?'),('h�}��?T\Z�#/K]�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/reduce.js',0,'\rR�ζ:$�&�}u���','\rR�ζ:$�&�}u���','G9e���Ry�ho��jyi���4�*��\\v�(x','',0,'?'),('h�e��F�҃�M�Ĭ','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Grid.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Grid.php',0,'��_`������(G8�','��_`������(G8�','uh �ؔ�ɒ�1�����O<���((��^�Z/','',0,'?'),('h���������0','wp-includes/js/dist/script-modules/interactivity-router/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/interactivity-router/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Ik�Ԝ\Z�ݲ\0-k�[4','P��c���OlY��7��A��WK�.:�|65','',0,'?'),('h�f?��Μ���VH�(','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/mapValuesSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/mapValuesSeries.js',0,']R�<W�ڷ�|{�L�',']R�<W�ڷ�|{�L�','�P !�{��E���\"��$V�%�:��#��oY','',0,'?'),('h�+ \\K�������','wp-content/plugins/envira-gallery/src/Views/partials/onboarding-wizard/step-4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Views/partials/onboarding-wizard/step-4.php',0,'�%���W4\\��9vU�','�%���W4\\��9vU�','c� DJ>�\'��U��Đx�%�u�@��z�-�D','',0,'?'),('h��� ���Bg�P����','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/DebugClassLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/DebugClassLoader.php',0,'\0eou�6�t���wK8','\0eou�6�t���wK8','�r��v]l���|���8X-W7^?��ʲ4����','',0,'?'),('h��{�z٤��V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/extsprintf/examples/simple.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/extsprintf/examples/simple.js',0,'\"�h1�ܼhd��m�%','\"�h1�ܼhd��m�%','د�\rq�Ŧo�=c�zce���XI�¹\n2��','',0,'?'),('h�vJ\n��Ү,{Z�2','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sr_RS.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sr_RS.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����uZM�f��','>q�\rc��j�p��Zt��2 �H Y�\"� ��@','',0,'?'),('h��\\K~��y��t���','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U�UMx��4g���`Du','��\n���V�yxȗ��\r��Eߏz%�_�9;�>','',0,'?'),('h�OT,$��(�������','wp-includes/blocks/site-title/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YXg+T�n̛�ҧ�','�]r[�u�Ƿ�[��\Z��c�T�C軁�\0�!','',0,'?'),('h�R_o�,�F~��q̤','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream-ignore/ignore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream-ignore/ignore.js',0,'��~�c5�sSǏ�d','��~�c5�sSǏ�d','�m�a~=���b�����E<��ɼ��B� ��','',0,'?'),('h��c!\\d/� \0L]sD','wp-includes/assets/script-loader-react-refresh-runtime.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/assets/script-loader-react-refresh-runtime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0�!�j1M/>��?','�V<���#Y�&=�z;���I�0����Nlz','',0,'?'),('h�T���m{I�k#��','wp-content/themes/mint/lib/scripts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/lib/scripts.php',0,'���#�\r�^n\\&','���#�\r�^n\\&',')�y��[�MT�#VY%��$ݯ4��=&6c�','',0,'?'),('h��~cTOo�y4|','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f\"����#6${ JL\'\"','�eŇ�6\Z(�q�&�ڶ���]���\n�Cli�ީ�','',0,'?'),('h��\nI����{7v','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/util.js',0,'րT#;�`�s8�s�','րT#;�`�s8�s�','�5��E�\0p��ڡ�P�����w��xh����30','',0,'?'),('h�b�;�@&^�|$��F','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/StringDefinition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/StringDefinition.php',0,'�3�f�n��\r���;','�3�f�n��\r���;','4��Ui�[7�ق՛�\r8��m��AB�YU�g�Gu','',0,'?'),('h�M�V�m� ����','wp-includes/blocks/categories/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/categories/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%��!�����\'�g','\'Ύ�s+n[����F<�0�@�^�T�@�k�','',0,'?'),('h��lW8��qG���','wp-content/themes/mint/node_modules/less/dist/less-1.6.0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.6.0.min.js',0,'-F��_�!j��o�� �','-F��_�!j��o�� �','[��h�)����`M�#d�7�y?�ъ��','',0,'?'),('h�<�]���OpNCƴ�','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���@���� ʰ�8: �','K�K�MJ��i���ٍTQ.�9�2=���w1�|�','',0,'?'),('h���K���%���H;NC','wp-content/plugins/wordpress-seo/src/exceptions/indexable/author-not-built-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/indexable/author-not-built-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[z�Z\'�_A����^X�','�dN�*�m$1^�\\@�����S�pe�','',0,'?'),('h�X��ǡ)�����g','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-add.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-add.svg',0,'8Y�S��Q�j?�','8Y�S��Q�j?�','v~yoe����G��b�jA$ ��>��FW �','',0,'?'),('h��/��[ݞ���M�','wp-content/themes/mint/node_modules/pako/dist/pako.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/dist/pako.min.js',0,'�Öf�q&31�pR�}','�Öf�q&31�pR�}','9�+�\'B�\n�\'���^:F��K��Ɠ�(K�<�','',0,'?'),('hƻ�2�=(I�K�Ek�','wp-content/themes/pinnclonesmalltest/vendor/composer/autoload_files.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/autoload_files.php',0,'�`���\Z��9)�k','�`���\Z��9)�k','�6h��.W�)ұ��t�eRZsa&�\\���ѳ�','',0,'?'),('h�-�&\0\n&���b �j�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hashSet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_hashSet.js',0,'j���%�Ҏ�!�}','j���%�Ҏ�!�}','��qS�� �sx��.G�z��n?(ZV','',0,'?'),('h��>��F�`��z7$','wp-content/plugins/envira-gallery/assets/js/lib/choices.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/choices.min.js',0,'v9%?�=��`�8j4&','v9%?�=��`�8j4&','|NI<��Č����Uq�/ߑ5�� ��@2)\r�','',0,'?'),('h�FOȁ�F�;݉�U','wp-content/themes/mint/node_modules/glob/test/zz-cleanup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/glob/test/zz-cleanup.js',0,'#�m��s�I^�@','#�m��s�I^�@','v&�Q���t+wI��x�&�\r�H�=n2','',0,'?'),('h���/�������<�','wp-content/themes/mint/node_modules/bower/lib/node_modules/array-filter/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/array-filter/index.js',0,'�E�T�U�����ҥN/w','�E�T�U�����ҥN/w','$���,}c��\0E��v�ޏ\\7���S|M<�\"o','',0,'?'),('h���˗�P5�\0','wp-content/themes/mint/node_modules/multimatch/node_modules/minimatch/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/multimatch/node_modules/minimatch/test/basic.js',0,'i�\0����v1ʃ%,� ','i�\0����v1ʃ%,� ','K����*�d�س���*�Y3���Lى\nI�K^','',0,'?'),('h�;�3���ut$��&','wp-content/plugins/gravityforms/includes/form-display/full-screen/class-full-screen-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-display/full-screen/class-full-screen-handler.php',0,'6q��������h��','6q��������h��','�D$�������Q_��Suջ)c�@! E�m��','',0,'?'),('h�o3�0`>O<^��O','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sortBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sortBy.js',0,' �&uo�aA����ᤍ',' �&uo�aA����ᤍ','|�N��V �{�p٨,���v��� 鰦��','',0,'?'),('h���QK�V<r:Mg_��','wp-includes/js/dist/format-library.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/format-library.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B���c���JOu�M','��bY���\rg&��JE��I�lݲ�e%','',0,'?'),('h�s�q�&�;3 �<�','wp-content/plugins/wordpress-seo/src/introductions/application/introductions-collector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/introductions/application/introductions-collector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����g���k�^�','��KH��\\�֛w�8E{���ʹ���M�b�','',0,'?'),('h����c�gw�a4�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/intersectionBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/intersectionBy.js',0,'�c83��#k��/0�','�c83��#k��/0�','�;MH��ii��<T\nˍm�e�];>+;@��s��\Z','',0,'?'),('h�I�಼��\"��%+�','wp-content/themes/pinnclonesmalltest/resources/assets/scripts/util/Router.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/scripts/util/Router.js',0,'Rȕ�h����:�0u','Rȕ�h����:�0u','�:i��9\rbK�根��R=��c����+(@E','',0,'?'),('h��d�?0�d�Z��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseKeysIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseKeysIn.js',0,'t��;M��i@>E� ','t��;M��i@>E� ','�ǝL��홳j@g���v���X�U���kxu�','',0,'?'),('i#��m��٪�MLZ','wp-content/plugins/gravityforms/images/template-library/eCommercePayPal.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/eCommercePayPal.svg',0,'d\Z�ֵ�����Zl��f5','d\Z�ֵ�����Zl��f5','�t�`o�v�(�X����J��V̋�����cv�Yi?','',0,'?'),('i��}����\\l�8�','wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-03.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-03.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� U,Gd��[|�Ϩ�','��K��U���t�.92*�7�+�rn�����','',0,'?'),('i����kmCx�ʷ��','wp-content/plugins/wordfence/lib/wfDashboard.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfDashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I��A�-���&R�','�S\0H���\n#8�yܵ\n�;¸@�.�=�!�B�','',0,'?'),('i6oV�5��1�,n�','wp-content/plugins/wordpress-seo/src/config/migrations/20200429105310_TruncateIndexableTables.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200429105310_TruncateIndexableTables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�e�Bg|)\\���`LE','J @�6�LoU�=����-�`�����cC�','',0,'?'),('i�ΒV)�g�o`=\\d-','wp-content/themes/mint/node_modules/grunt-contrib-jshint/tasks/jshint.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-jshint/tasks/jshint.js',0,'⺦.Wv�.e�σ�6�','⺦.Wv�.e�σ�6�','�\\\Z���\' ���-C�.��+���:w�','',0,'?'),('i��{��pW\r��9�/�','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-settings-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-settings-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A���c�P���','d�9��I\">��=�5��i8?A��г:���X�','',0,'?'),('i���\0r�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/clamp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/clamp.js',0,'�5�Se��I���g�','�5�Se��I���g�','5����y�\'��f�S��\'�V/��1y*�','',0,'?'),('i@�n���0$U���o�','wp-content/plugins/wp-optimize/languages/wp-optimize.pot','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/languages/wp-optimize.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4=<��m�G��k','�\\2d,7\\ױ�4����PL:Ŀ2ѝc-M���','',0,'?'),('i��;�&��o�?','wp-includes/IXR/class-IXR-base64.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/IXR/class-IXR-base64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*6���D�T�e��','?F]L�2}���\rS�@b�2�O�o�uU\'O��','',0,'?'),('i(�� �0t7�@�Q�@','wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-bad-request-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/exceptions/class-myyoast-bad-request-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$v�)W���ؔ�E��','X���_<X�Knm�_���&��K$E3S�','',0,'?'),('i3�|� JP���*�','wp-content/plugins/wordpress-seo/src/conditionals/development-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/development-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɋ3 3�G�.�7��1','y6U������t�ĒfDk�w�+т_G�naB','',0,'?'),('i9��С\0���!O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isRegExp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isRegExp.js',0,'��Ȭ����<�;�\'�','��Ȭ����<�;�\'�','\\;_\\��*�G����Cɧ��Ŭ�O��Gء%','',0,'?'),('i<_H��s����Mkf~','wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Module/Tree.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Module/Tree.php',0,'�b��-��V\'�{3g�G','�b��-��V\'�{3g�G','.H�j�u�؍9�i�l4w(e�+���:�~��(','',0,'?'),('iA��w�ׂ2\0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/bindAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/bindAll.js',0,'9�V>�N���|�c�^S','9�V>�N���|�c�^S','��\Z%H����kӪ�n}����=a�(v���Q','',0,'?'),('iF3I��因�o�e�m','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/max.js',0,'�1?����a\\��x$�','�1?����a\\��x$�','0\n>�C�o���{�\Z��\"��ڏ��@�����','',0,'?'),('iIh&�}K��(٤���','wp-content/themes/mint/node_modules/bower/lib/node_modules/builtin-modules/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/builtin-modules/index.js',0,'����\"�lZ�c��','����\"�lZ�c��','2#֊�xс-�\n�wZ?ڂ�i�h��㋷t��','',0,'?'),('iJ����2�řn&�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/some.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/some.js',0,'�`~l��u|^_�^l�;','�`~l��u|^_�^l�;','�Ò��\\wH�>��?���c�{P�����l��','',0,'?'),('iN��n�D�wB���?��','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/base.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/base.js',0,'��!ػ��,0z�$R�7','��!ػ��,0z�$R�7','o��x^\"�(��qJ*�����|E����L��','',0,'?'),('iT\'�=�봁��b(','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/JpegQualityDetector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/JpegQualityDetector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r��^3��[+�ͭ','�_B��V�_��C�rtr�d��v>FK�6�2�p��','',0,'?'),('iU=��E�ۊ�r�8r','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/unescape.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/unescape.js',0,'wڣ�ʣ��:�|Z��s','wڣ�ʣ��:�|Z��s','��#�P��ó�)GÔ s�x�0��\0H�BX�','',0,'?'),('i^��Q����4ߺ�','wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-load-url-task.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-load-url-task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӊ`+w�R]��8�e�','���o�}t^���l�t�p�\0�x+\rKv6��12C','',0,'?'),('i`D�^1\Z^�T��+�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/bg.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/bg.php',0,'�UIY\0E�\nFq6}hTa�','�UIY\0E�\nFq6}hTa�','���j����s�F�r�^�N\"&���U��s�','',0,'?'),('ia{�-��\Z�ؙo��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�<���s��9','��Q�\'�r�� �t7��=s*a`<�z�o�_','',0,'?'),('ib��ݳ$3�{E}��M1','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/iteratee.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/iteratee.js',0,'�%�l�v��,�UmH�','�%�l�v��,�UmH�','\"�T#̧��ooQ���R�)�b�n��b�ѫt','',0,'?'),('idܶ�1�\"���^�','wp-includes/blocks/separator/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E`f�ʐE���','�\n�~ڹ�`7���|p���P�*�6�p��.','',0,'?'),('ig��W�@uB��}�-','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���,Z�y�>����','�L����>U�z�يO|�� ����y��','',0,'?'),('ii�\"o�C����`','wp-includes/sodium_compat/src/Core/HChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Rz@�MMQmr���','�q���X9O���a4�A�����\'���̾e','',0,'?'),('im�Z�Mˢ��h','wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-gutenberg.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-gutenberg.php',0,'��@F�9N��^�E�/�','��@F�9N��^�E�/�','F��58��v�_z͋uUwȆ\Z��3�K�[','',0,'?'),('iu{�?_��R�~�F','wp-content/themes/mint/assets/vendor/jquery/src/css/var/rnumnonpx.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/css/var/rnumnonpx.js',0,'*4����4���f� �','*4����4���f� �','�#^�遲ƾݻ¿y��ZOF\0���1�a�0Rcd]','',0,'?'),('iu~�ozM�b;�I�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isNative.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isNative.js',0,'��u�F9Q�a�Q}6�','��u�F9Q�a�Q}6�','C��N�M�ya��\"���l��p*^<hH��','',0,'?'),('iw�:T���)�%','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseLt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseLt.js',0,'����/�*~��7����','����/�*~��7����','�7c�V#��K}2����]Do\n�h�/��;2','',0,'?'),('i{Dh����tu��I','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invokeArgs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invokeArgs.js',0,'�\\$%���׀����a�','�\\$%���׀����a�','Ƶ8��?��ՠ[���-*h.%�o(���Jn��','',0,'?'),('i}1�v����X�`\n�jE','wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/dotted.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/dotted.js',0,'��`�^,��525՜�','��`�^,��525՜�','8q�rL{���d���T��5�f�]�����','',0,'?'),('i}a�El7K\0�,��7�','wp-content/plugins/envira-gallery/assets/js/lib/envirabox-slideshow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/envirabox-slideshow.js',0,'� [���p�B+��3��\'','� [���p�B+��3��\'','���P�Y�k���]�`��ZjW2f�|���,','',0,'?'),('i��a���%�P��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseForIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseForIn.js',0,'�t����z�*���|\\�/','�t����z�*���|\\�/','-�uK!�u�g\"����vU��^ʏ���\\','',0,'?'),('i�oڤ5?jnA:�%��','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/CLI/Cli.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/CLI/Cli.php',0,';�R���.GE\0�e',';�R���.GE\0�e','��`E�\'\rg+ф�=����������M �','',0,'?'),('i�;+����O�s�ֿ','wp-content/plugins/wordpress-seo/src/conditionals/import-tool-selected-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/import-tool-selected-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_I�&(�iW�[�0��|','/\Z�4���+٭����\"�~�#q�3U�ԗ{�\'�','',0,'?'),('i����QQ���p3','wp-content/themes/mint/node_modules/bower/lib/node_modules/lru-cache/test/memory-leak.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lru-cache/test/memory-leak.js',0,'�x�R&���XP}','�x�R&���XP}','����oP�{�(���K+B7 �c�f�[8*ˎM�','',0,'?'),('i�_Ww�g-H��iԾ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/findLastKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/findLastKey.js',0,'i��I*��N�D6�1��','i��I*��N�D6�1��','�)��o�:B���6�\"|���xr�>����� ��','',0,'?'),('i�Q=�t���wa�\n��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Application.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Application.php',0,'�yv�\nYN�\0a����','�yv�\nYN�\0a����','�h����0k%���59L�&�(s�����\0��S','',0,'?'),('i���E0[=���X/�','wp-content/themes/mint/node_modules/is-builtin-module/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/is-builtin-module/index.js',0,'�;-�M�8�z_�9:','�;-�M�8�z_�9:','��8\'ўU���N��l�ͩ:��0����','',0,'?'),('i�-��X�8V[~E�','wp-admin/css/install-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/install-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@;e�����\n]','�y�( 8�Hᩮk��� =BRN�~��b�','',0,'?'),('i��CC�,�+����','wp-content/plugins/wordfence/lib/wfWebsite.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfWebsite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���t�~�AJ�ao�','�A��lE��T2 :�$����&b��','',0,'?'),('i��2Jݦ1��E���','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/read_tag.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/read_tag.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z4�b\'�@c\'^G','�4B)�{��\'���N�g�@#�]L��C��O','',0,'?'),('i�\"��A�e�#�\";AS','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/lodash/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/lodash/lodash.js',0,'�0ϸ���q�]�r4,','�0ϸ���q�]�r4,','��0H�u(��ق.�f���7��ㆥ8��','',0,'?'),('i���?T�\'��j���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/EntityNotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Queue/EntityNotFoundException.php',0,'jd\0�h\n}I�)�B��','jd\0�h\n}I�)�B��','Cd�����ɘ����\\[b1�sa�j�ӵ<�ve','',0,'?'),('i�\\����=X�h$','wp-admin/js/language-chooser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/language-chooser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ӥ�ku��lLS�','��r4��i���j�\"܈�����6���&','',0,'?'),('iď2c�B��V\\��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/hasOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/hasOwn.js',0,':/γ��hb^�2�|�M',':/γ��hb^�2�|�M','����bg��q��pʖ�!ñ2#�\Z�ɲ��','',0,'?'),('i�4����h� ��','wp-content/plugins/gravityforms/includes/theme-layers/api/fluent/layers/class-fluent-theme-layer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/api/fluent/layers/class-fluent-theme-layer.php',0,'P�˞��q,��Q�`��','P�˞��q,��Q�`��','��G����`����L}|�t}I]a����:\r�B��','',0,'?'),('i�}%�R����q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-json/lib/json.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-json/lib/json.js',0,'ڰ�T�VsߓM ��B','ڰ�T�VsߓM ��B','�ܑ�P���oK���q�B���pI83�1?��','',0,'?'),('i�Q�ؑ<O�Ȧ�XL','wp-includes/SimplePie/src/Registry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�ZZ_�Fk\r��*?','�[�yC��춿�[t�s\r]5�7�8��L��.s','',0,'?'),('i�.��\'����>','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arraySum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arraySum.js',0,'���1�����m\'[�\r','���1�����m\'[�\r','�|����6��ٔ�}��Î�1�]�k\Z�-��\r','',0,'?'),('i�63����C|w�t��','wp-content/plugins/wordpress-seo/images/rest_api.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/rest_api.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�s��r�[\\�','YC.;Pa����J�}����x����c�C�A','',0,'?'),('i�k���C��T,�','wp-content/plugins/wordfence/lib/wfIPWhitelist.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�h��2aE��0','�D�:�]踝z����w%[�j�o����X`�','',0,'?'),('i�j�oO~�.ْ=','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesEvents.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesEvents.php',0,'�f����z�L�Aib','�f����z�L�Aib','S��A��X��������X��m�Xv��c�P�','',0,'?'),('i�2�0�D�,pW','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/compose.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/compose.js',0,'���^fj#�~��� T','���^fj#�~��� T','dE\"������,=k��_U�W�t��XSh','',0,'?'),('i�*!�)}�[PW:{�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/inRange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/inRange.js',0,'�.x�:��*���','�.x�:��*���','nEԃ�;�pP\Z\"P���dC�f���-\Z�S��','',0,'?'),('i�%�h�ݺ;�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/has.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/has.js',0,'K�}o����x�p\0','K�}o����x�p\0','�: &$/��d ��W���� ��j#f','',0,'?'),('i����P�(!��tM�|�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue50.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue50.js',0,'N�H�8(�,:��L5�','N�H�8(�,:��L5�','�-��bX��L��d�J�9�^��t.B~��q','',0,'?'),('i��W��i��4�jR�?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/randSign.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/randSign.js',0,'ν�H�צ�b�7Nn%#','ν�H�צ�b�7Nn%#','X��4�LFwH�E�pdC9!�p�i�!��','',0,'?'),('j\0#@�.�����K��','wp-content/plugins/envira-gallery/assets/js/envira-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/envira-min.js',0,'��6�뭑�,XF\0�S�','��6�뭑�,XF\0�S�','N2��|��t�6�����6�2Α�N�u�!','',0,'?'),('j�i���#QF�yN','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/shuffle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/shuffle.js',0,'.�����%��}�$��','.�����%��}�$��','��UC��o��\n;U/JY�]�8��6�','',0,'?'),('j�P\\\Z�n�V�p`�','wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedCommentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedCommentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kz�iJ���*l��-�','@Y�Zw�У�I8�-��2��3�N�#�L','',0,'?'),('j��OK�Q%�@m��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isLength.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isLength.js',0,'/���Y�2�2�i2�','/���Y�2�2�i2�','���WҎ�{�l6�My�%i&���T�2��q�','',0,'?'),('j�{4\"J��<���j','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-to-browserify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-to-browserify/index.js',0,'-���AP��>��c','-���AP��>��c','�&<���T�$t��G\\I�@ ����-�)g�','',0,'?'),('j�=O�r��E�G\'�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/indexBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/indexBy.js',0,'���0��W�����','���0��W�����','!쎟����V�����؆\n#��ϻ�','',0,'?'),('j�S����^p N �','wp-content/plugins/wordpress-seo/src/generators/schema-generator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generators/schema-generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����۸4X_x�@g��','���C���N��DLd�EP��m���W�79','',0,'?'),('j\rd���G�����{','wp-content/themes/mint/node_modules/bower/lib/node_modules/package-json/node_modules/semver/semver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/package-json/node_modules/semver/semver.js',0,'��g��\"��k�C��','��g��\"��k�C��','E��kұOP.r�n,3\n�F����p�fC�;)��','',0,'?'),('j!�à-G*��:��','wp-content/themes/mint/node_modules/bower/lib/renderers/StandardRenderer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/renderers/StandardRenderer.js',0,'Z٘U+Ɣ��P)b֥�','Z٘U+Ɣ��P)b֥�','�NlDn�~���0ŗ����߸���\'e�>��','',0,'?'),('j&�V1���6�4����','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���r��9 �#��{�','ᄆ��n�ѿ�0c~N��r��Au�g~Δ���I','',0,'?'),('j*�\Z@�����w��','wp-content/plugins/wordpress-seo/src/helpers/date-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/date-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b� +{R\\Knl/N�P','�9�qm_���D�Ie�岺R6˓�h`��Ϲ�','',0,'?'),('j+s�iM!������0','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/base64-vlq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/base64-vlq.js',0,'y�hOI�d����wng','y�hOI�d����wng','�C���{�����/l�d����Dt#�s���Z','',0,'?'),('j;���_�=�\Z����','wp-includes/blocks/group/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/group/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M��lqM����oދ�','1�+�h�E>��g��+��\"��� ��9t��Y','',0,'?'),('j<U��P�M#X^a��','wp-content/themes/mint/node_modules/minimatch/test/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimatch/test/defaults.js',0,'������Ir��J�6Y','������Ir��J�6Y','n �v6I\Z�w�֍�)�sZ-j�`\0�x%e','',0,'?'),('j<ڝ��o��#@l���2','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',0,'Z �\"I���/����','Z �\"I���/����','\"���[&�Pz>|֪!�HX1�������b','',0,'?'),('j@aw� &�D��c��','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/stringify.js',0,'��fnF;�5�ӀI���','��fnF;�5�ӀI���','��6�k����KX��pp1��-��؆��','',0,'?'),('j@�`3xfTB\\����U*','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/propertyOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/propertyOf.js',0,'d�;g��d�\"�Z +�c','d�;g��d�\"�Z +�c','��Q���T�E�����t\r�l���b-h�','',0,'?'),('jQ���e���;�e','wp-includes/css/wp-pointer-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-pointer-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>\r��@�o��4��R','Hף��m|oC4�U\\;uP�6�u�0��\n��l','',0,'?'),('jZ��\nc�^�\\�zk��','wp-includes/SimplePie/library/SimplePie/Cache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g鿢��q���JriY�P','�u��M�hp�#�1�k6�I�����į��','',0,'?'),('jgX�x�rTs���Ƥ�','wp-includes/blocks/comments-pagination/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���24���Wƴa','�7�\"y��>�����\0(Z��tZ�3t����w','',0,'?'),('jmE��AX�uw�>܆','wp-admin/css/colors/ectoplasm/colors-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/ectoplasm/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0��H�7��S���','�����BQ6\rj��*�gTz�7��\"}����S','',0,'?'),('jqE�s�1��\'��;','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trimChars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trimChars.js',0,'�\0�.�P��\r_�9�y�','�\0�.�P��\r_�9�y�','-N�4� \\I������C븓�I���;`�\0?','',0,'?'),('jt��Z��ܿ�,��','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r����a�a��i','{J�L���ͻ&��{��{��T:������B','',0,'?'),('j�䱋����%���]�','wp-includes/class-wp-xmlrpc-server.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-xmlrpc-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$���Bĝ��~&|Q','V�CTa<�xsT��3^��m���-��4�kޠ','',0,'?'),('j�K�fth���Cl@/2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/onlyOnce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/onlyOnce.js',0,'V���G��\r��','V���G��\r��','�_K|���F�)�1ȁ��h�`h0���oA�a','',0,'?'),('j����p�\0Z��','wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<�^�p�5�Ɀ;','Z<Oϰ�w�HS8��O�7\'��������Y9H','',0,'?'),('j���)n�Q8ޮ�D�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vuײ���u�xJ�B|','�_\\�O��ytn����Œ�Z���մ','',0,'?'),('j����5F+���o','wp-includes/images/crystal/interactive.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/crystal/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R�m`��`�9��','$����멘<x1��Փ��IR�V-VZ\\jg.���','',0,'?'),('j�B����\Z��q�','wp-content/plugins/wordpress-seo/js/dist/quick-edit-handler.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/quick-edit-handler.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�5�G_�ZBT���~i','��6io��,����\n���D���թ�','',0,'?'),('j�-n���*L�4��BK�','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/basic.js',0,'(fCf��p+�-�^sh0�','(fCf��p+�-�^sh0�','5�ij_��!�1�Qyf���)4�4��~^���','',0,'?'),('j�>E:p��zG��k�z','wp-content/themes/mint/node_modules/bower/lib/node_modules/slide/lib/async-map-ordered.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/slide/lib/async-map-ordered.js',0,'pBa�>������M ','pBa�>������M ','�Ӄ\"G�N6�G+=�NɋO�a�b\Z*�k�\\F(','',0,'?'),('j�+�.���8�\Z�&��d','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/DeprecatedReviewNoticeOptions.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/DeprecatedReviewNoticeOptions.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ë�8�aԚ�fU��','��xi���#�K~{��-C@�wƞfm�#��U�','',0,'?'),('j�R�Ȳ�/&���P�','wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/Excludes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/Excludes.php',0,'c�K����8�ֿ`c�','c�K����8�ֿ`c�','[���ȣ`�2A�\0(��aJ?&N�f��4,','',0,'?'),('j��\Z9�d�g˟�\0:','wp-content/plugins/gravityforms/images/icon-handle.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/icon-handle.svg',0,'�\'%\0�<�s���}͌�','�\'%\0�<�s���}͌�','��� \Z\'\n�J7a�/6��1��D3`_\"���.','',0,'?'),('j���ei�e\nc`���!','wp-content/plugins/wp-reviews-plugin-for-google/include/cache-plugin-filters.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/include/cache-plugin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��|�<M�+6�,��!','B�F��5��c��\\��v�Қ��_Ȭ���\"','',0,'?'),('j���J��=��~.�l','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/nth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/nth.js',0,'�l�V#��&2>p&�','�l�V#��&2>p&�','�� �����t )0L\"���M2Φ���^�;','',0,'?'),('j�Q��\0�,���`W�#','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/SignalListener.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/SignalListener.php',0,'E!u�S��-Q��T@��','E!u�S��-Q��T@��','`9����5�A.�g:���ȏ?^��K���','',0,'?'),('j�*{$\"u��IKt��#','wp-content/plugins/wordpress-seo/css/dist/ai-generator-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/ai-generator-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�}1�<�ߦl����','��p����Vm��������\ZT�q������v','',0,'?'),('j��_u���}#�ȣ��','wp-content/themes/mint/node_modules/bower/lib/util/cmd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/cmd.js',0,'ux@�\ng�@����Nf','ux@�\ng�@����Nf','� [��s���c���H�������]s�@3�>','',0,'?'),('j��4-�O Մ��rL\n','wp-content/plugins/wordfence/models/block/wfRateLimit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/models/block/wfRateLimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2�9Q{�\'Db2�w','��A�15��2sN� �äU�A�-��V��x','',0,'?'),('j��9���xH���)�o�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/if.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/if.js',0,'#��P9��אeWi�)','#��P9��אeWi�)','���?�V��M���m���D��Q���\'\r���R','',0,'?'),('j�gs�66�$��8*�E�','wp-includes/class-wp-dependency.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-dependency.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r:�G5�+�H݆=K�','���\0�>\'oPH�c=J�ӌQ��T}dDGN','',0,'?'),('j�Lh�7/n�s�c(�','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.form-editor.59107308704c1f6776f7.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.form-editor.59107308704c1f6776f7.min.js',0,'1��7^]/h��T}T�','1��7^]/h��T}T�','�s�!�t�Bǐ���BL�<\0w>���qvそ��','',0,'?'),('j�py���o�x��d�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/index.js',0,'���s&�C����<̓�','���s&�C����<̓�','mW�̐�(�\"�H4�ȿ���{~�3SK','',0,'?'),('j�\r�\\T(D�\"}��Y','wp-content/themes/mint/node_modules/less/lib/less/join-selector-visitor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/join-selector-visitor.js',0,'R9����`��e�4��','R9����`��e�4��','�{�.)���P��}$��N��N�\r��J��y��','',0,'?'),('j���ވ�oF�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createRange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createRange.js',0,'�D)&#DI:s<p�Rz','�D)&#DI:s<p�Rz','����s�S�Eར�v���E6�\"ɣv��]u��\n ','',0,'?'),('jѽ�@u1������','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/AjaxNullComparisonSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/AjaxNullComparisonSniff.php',0,'�GB�\n4a]��eG�','�GB�\n4a]��eG�','`BV��KW\\�O\0�;-u�B�qI{��k�[%Lq�S','',0,'?'),('jԺpR�/���&��c','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/awaitDelay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/awaitDelay.js',0,'�PD��؝�\n�<��tr�','�PD��؝�\n�<��tr�','��x���Ί�g� �e|�����-/y���|^','',0,'?'),('j�SYEc��R�)�*z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/unescapeUnicode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/unescapeUnicode.js',0,'�u�O�Ġ����3','�u�O�Ġ����3','��z�w�D\rýW18!��_Yd�wC��D�e��','',0,'?'),('jء\\�JXN\'w�bc�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/MessageCatalogueTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/MessageCatalogueTest.php',0,'�,�\n�zڡ�e���Q','�,�\n�zڡ�e���Q','�T&�`{��0t�!M��`��w#�\0�;Rl��[X�','',0,'?'),('j�yL�`���}J��\Z&','wp-content/themes/mint/node_modules/underscore.string/dist/underscore.string.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/dist/underscore.string.min.js',0,'\n��G#Y���H��','\n��G#Y���H��','՝`ȥR���Y�!s��� \'�r˂� vc�','',0,'?'),('j�|=pӛ���Q�22','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/math.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/math.js',0,'J�kԒq��Ȭ�*��','J�kԒq��Ȭ�*��','`�1��Dh�Y~� {g\Z���w�P@��j��o','',0,'?'),('j��1��(�\\9<�]K�','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/index.js',0,'f�5���1��','f�5���1��','b��Û~�xB�G�zW\n�|\rW��?~���$s��','',0,'?'),('j�,��t�k��ԧ3�','wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Worker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Worker.php',0,';�s��x�;�F(��',';�s��x�;�F(��','_���9�u#�#���)�G0춂)��ҕ=�l','',0,'?'),('j�d�CT[^�R���','wp-includes/block-patterns/query-large-title-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-patterns/query-large-title-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q��$4�-�1�e�',',���Ch1z`�q������\\2ߑ���{]','',0,'?'),('k\0O$��⩁�qM�;ֲ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_castSlice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_castSlice.js',0,'t�t�Jd%�C�ՕS�','t�t�Jd%�C�ՕS�','����4��/aS��j����\\c�R-�|�M3�','',0,'?'),('k��T�2�o���L','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_addMapEntry.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_addMapEntry.js',0,'u�s?b��� ��z���','u�s?b��� ��z���','�����s�ǘ4>,k��4��J�5F&�9h\"�','',0,'?'),('kE����Ht�i�\0i','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseUnary.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseUnary.js',0,'�����[h�m{^','�����[h�m{^','0S�3Fa��ȥ��8��(�D��Hf2���[q','',0,'?'),('k���$6O��-N�x�','wp-includes/js/tinymce/plugins/charmap/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B�쟄��P\rL��','�x[�G��-�90b.z�G��az�>�r','',0,'?'),('k��?1\0��d�\Z1,k�','wp-content/plugins/soil/src/Options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/src/Options.php',0,'(�k�Ha]ҬYA�','(�k�Ha]ҬYA�','7�2Y>�!��yQ5b��Z�����Hhr�','',0,'?'),('k_=z\Zu�%��?�#','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars.runtime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars.runtime.js',0,'�\Zz�K�[������','�\Zz�K�[������','���FF��y%C��c�W��%�g-Fst�U��','',0,'?'),('k}�a 4� �B 7','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/lookup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/lookup.js',0,'_�v�\'B@�Ҵvi�e]','_�v�\'B@�Ҵvi�e]','i�֮Hs[�[���,���A6����','',0,'?'),('k$���)���k�p܍t','wp-content/plugins/gravityforms/includes/config/items/class-gf-config-admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/config/items/class-gf-config-admin.php',0,'�9�R$�O1Sj��F','�9�R$�O1Sj��F','`�}lY��\0pc��AR�ܧ��o9�.�L�','',0,'?'),('k#lYݗ;���t;\r+�','wp-content/plugins/wordpress-seo/src/conditionals/non-multisite-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/non-multisite-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�\r��[�e�}\rި�','�A�]Ѣl�U�qỲ��Z�_��@�����01�','',0,'?'),('k5e����?vHQ�<','wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-escaped-html-notice.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf-escaped-html-notice.min.js',0,'QQ���s�-��Ӕ�','QQ���s�-��Ӕ�','[�7O��>7.sr�8�? �6Ъ���m\rG���','',0,'?'),('k5���@~��\0���;','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/collect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/collect.js',0,'��,��c�fEj�_0��','��,��c�fEj�_0��','S�����ٯ���E0�/.ά/�m�\"6��]1','',0,'?'),('k6���*���H� �u١','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�ڪ)tdE��;���','?ӟqc��A�\Z�Q�<Ls���u�:�I.����','',0,'?'),('k;�_6v�d-�q`�5>�','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����R�fƀ\\�DԄ�','\'�����E�� �\\�UƘȿ������5','',0,'?'),('k;�}�j�t|*��e5r','wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/dir-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/dir-test.js',0,'��vZ�n�L�.����','��vZ�n�L�.����','��>����slTG*ǠA=�˴�̱��m �','',0,'?'),('k<P�Q�H��E�H��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/rest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/rest.js',0,'n܊�K��MoI���L^','n܊�K��MoI���L^','q���/�z�/0b��v.�}Io�\nj4O�\'k�.<','',0,'?'),('k>�J�)�)��$U6�','wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/css/bootstrap.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/css/bootstrap.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/���°̶=\r(��I','�54W�A���D�mWƽ�쿨��ehs���','',0,'?'),('kA�`�М���r6����','wp-content/themes/mint/node_modules/clean-css/lib/text/splitter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/text/splitter.js',0,'� ����JK����އA','� ����JK����އA','fMZ���q}��3z5ݓ\nK��a����\0�s�2Z','',0,'?'),('kBQoߐ���n����','wp-includes/Requests/src/Session.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,���:]_0��+�','�6���7��x���uv�OAHc�\nd`Ut�m','',0,'?'),('kCt�r;Q���;75o�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/DefinitionFile.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/DefinitionFile.php',0,'�\0�;cÅ��v�!z','�\0�;cÅ��v�!z','*�ش����X�ʈ��2�a�7s����CfF','',0,'?'),('kE��n�fϋߟ�\'qb','wp-includes/blocks/video/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/video/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-��h���Z�h�','��w����\'5۸�a�E�N���k���','',0,'?'),('kH�|��u�E�R�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/range.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/range.js',0,'�?��7�ԡf��� Q!','�?��7�ԡf��� Q!','�B&2����m@���&�ű�6\Z&�ʛ8s�L��','',0,'?'),('kK�xn�i�m9�_�,','wp-content/plugins/wp-migrate-db-pro/vendor/scoper-autoload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/scoper-autoload.php',0,'�W�㎘̸r擶BХ�','�W�㎘̸r擶BХ�','���+�V0��[�5Z�\\�F����Ks��w�PKu','',0,'?'),('kM������̙Ysp','wp-admin/credits.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>�]ı�1w�s��','�K�t�pew\r��o�U���.�����&\n�Ǒ1�','',0,'?'),('kR=�N�UU���K:D','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/values.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/values.js',0,'�0�_�:l�pL��a�','�0�_�:l�pL��a�','M�Q��n�H`[RRv�牢I�o?����','',0,'?'),('kW��!2�h��Ow{J','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/pluck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/pluck.js',0,'f�Y�`\"8����2�','f�Y�`\"8����2�',' O�@`OWe ��Z~��W�i�q��0��9}�','',0,'?'),('k\\pq�8�Jc�\r>','wp-content/plugins/wordpress-seo/src/config/conflicting-plugins.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/conflicting-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C�Y8�\"Ԩ����6�','#�(�\na /E��U��l�;W�ؓ\0T*�','',0,'?'),('k`\n>(����I��','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!|ZZ��@狙�','�G��&��P�ҝ�`�g�I�O�G�TU/+��\rPR','',0,'?'),('ka��}� gQCn','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/ArrayDefinitionExtensionHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/ArrayDefinitionExtensionHelper.php',0,'�\'�Z�2j>Xb��#�6','�\'�Z�2j>Xb��#�6','�Ї���\"k��p�����WK�ƽ(�C&H�kx','',0,'?'),('ka��d-@5�\"���/�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/ModuleConfiguration.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/ModuleConfiguration.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hp�v����:�P9Ӆ','�O�MuP~\\v���g�F����웉����','',0,'?'),('kg�@H�]u7o5!\0N�&','wp-content/plugins/wordpress-seo/js/dist/settings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���j��)o�)\n','��&�ǼD��9悧��ԧ-re�w-٤x��l','',0,'?'),('km�|��Kma0�\"*�k','wp-admin/js/tags-suggest.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/tags-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��6oW���&����9','��hQW�S�x�����%�&� �$#��8曵D�','',0,'?'),('knOB�Rh�����Y','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/dotted.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/dotted.js',0,'��`�^,��525՜�','��`�^,��525՜�','8q�rL{���d���T��5�f�]�����','',0,'?'),('kz�!KՍj0�mi�+0','wp-content/themes/twentytwentyfive/parts/sidebar.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/parts/sidebar.html',0,'.�l �Mb�b��o�-�','.�l �Mb�b��o�-�','��I6�À.��Q�FJU։h,%\nyB���Q�_','',0,'?'),('k~B,���ۈ\\ڛ�dז','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/css/livechat-contact-button.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/css/livechat-contact-button.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DB?�85�\0ӛ_ۄ��','|����s�:ĸ�#��a;8�S��q!r��','',0,'?'),('k���4�ζ\Z���\0�7','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/CastSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/CastSpacingSniff.php',0,'����ӣwj�,C_q�','����ӣwj�,C_q�','Sީ��7/\0���I�52����^`Kj#�b��K+','',0,'?'),('k��|��;[�����j','wp-content/themes/mint/assets/vendor/jquery/src/data.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/data.js',0,'QZ���Rv>N����','QZ���Rv>N����','�n�[l���!Y@>��K��0-��E�/N','',0,'?'),('k���ga�Fz7���','wp-includes/Requests/src/Utility/InputValidator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Utility/InputValidator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\rʮ�Y�e L�l','�a�1��Q�au/d����s��L��Zv�U��','',0,'?'),('k�;�����9g��','wp-content/plugins/gravityforms/includes/locking/js/locking-list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/locking/js/locking-list.js',0,'7�-�>�a55`�\\ �u','7�-�>�a55`�\\ �u','�BWT�z��ر���%Q�|�sYT���_Y��o','',0,'?'),('k�;\0��B�d�+!�C�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/removeAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/removeAll.js',0,'�5i��qU�T�ߝ�5','�5i��qU�T�ߝ�5','W�r�����Tj�Ͷ��_�ni��R\"-���\0��L','',0,'?'),('k��%�v�&�$X����','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-user-role.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-user-role.php',0,'@d�4QR�U���O*��','@d�4QR�U���O*��','Z`t���P��-���w�.�Rh3��BR����','',0,'?'),('k��ǿhO����ª�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/scripts/build-phar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/scripts/build-phar.php',0,'�l�&!�k�KuCMn','�l�&!�k�KuCMn','��ȷ�i�xt�e)~?F�/dn� � O�9�','',0,'?'),('k�O���=\r��J�>Y','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseMerge.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseMerge.js',0,'K�T��/\'��;�O,�','K�T��/\'��;�O,�','8��.o&���M���Ѱ6���q�?0�9����','',0,'?'),('k�A]TT��&���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/hyphenate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/hyphenate.js',0,'-5Yui\nF{����a','-5Yui\nF{����a','��TYa)R(y�s�x��J�![��������&','',0,'?'),('k�x�r�,j��i���(','wp-content/plugins/wordpress-seo/admin/class-asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/i���l����','��~�~u��,����� �Ah�Z�L���O','',0,'?'),('k��B˞�b=y��','wp-includes/user.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���C!$��R`�Ϡ�.','+�\ZG�r�̀\0y!�9�2W�Q֣DE&OU�c�','',0,'?'),('k�a�J\Z���\\D.��P','wp-content/plugins/wordpress-seo/admin/roles/class-register-roles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/roles/class-register-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɏ3��I�!�BW�ڧ','}*0�5�-�Q�̡�p�`ˣ���rP�a','',0,'?'),('k��U/�^���� ','wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9��0�@�����e�v','�BZ�Exܥ+�D`�����H,C Udo�L�u[','',0,'?'),('k�Q�\\&�q��ݰ','wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-delayed-stream-auto-pause.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/delayed-stream/test/integration/test-delayed-stream-auto-pause.js',0,'��ģֽK{d1i�-�','��ģֽK{d1i�-�','\n���hvO�~5M� x9S\0��D�ԒQ�U�A�A��','',0,'?'),('k�� h�ѻ<x�j','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-null-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-null-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�|\'��0�]���','�T!K���-�+[j��je\"a���1��Lг�i','',0,'?'),('k�\'\n+&=��n`�3�','wp-includes/js/dist/dom-ready.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/dom-ready.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w=��,��BXщ/g�','��?,Ɵp(�~���I܁�1<�k�p�|�$7Uu','',0,'?'),('k������^m�\\���','wp-includes/blocks/navigation-link/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-link/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n֩F�f��ͮ�3F�','����������A�~�mHG\"i��N���r','',0,'?'),('k�x��G�kc|�2','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseMergeDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseMergeDeep.js',0,'e��\nx�������','e��\nx�������','�R�!2fN��ƾ�����Y;�\r�+�[�2���','',0,'?'),('k�ә��R�8� ���','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/casemismatch.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/casemismatch.php',0,'����c��ݵ�.QM','����c��ݵ�.QM','��k؎=��%� �`��P}�9O�D��D��J','',0,'?'),('k���&éJ� �__g�','wp-content/plugins/wordpress-seo/images/academy/seo_for_beginners.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/seo_for_beginners.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����4H~�ɛa&��','jZ<�bA�XKz���[\0h�o�����T�A','',0,'?'),('k�M-RK�}g�S�p��','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-radio.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-radio.php',0,'�\07��]�nb�d�','�\07��]�nb�d�','?J/��sD���o��<m}\n��J��\n��#�','',0,'?'),('k����W\\y�(��','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidVersionComparisonString.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Exceptions/InvalidVersionComparisonString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 2�zA���kY��\rW','�+��J~mY�$����6��8/�g���4a�\"�','',0,'?'),('l�Z�Y�jtX�λ@[ ','wp-content/themes/mint/node_modules/bower/lib/node_modules/through/test/auto-destroy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/through/test/auto-destroy.js',0,'y\0&��\"j��7r���','y\0&��\"j��7r���','o�CIF�C7r��b)=��E�3s�','',0,'?'),('lK,D�̜�ļ�I','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/bind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/bind.js',0,'�y�\\涟2\Zg���','�y�\\涟2\Zg���','��)���G�(�r�.���W�&2�89���s)','',0,'?'),('l {:�J��WC�nc��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/equals.js',0,'�����Bh4@DD�P1','�����Bh4@DD�P1','�f�15�S���PLJ\'�k�����~���','',0,'?'),('l�Z�/��mV뮺��X','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/eof.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/eof.js',0,'���3��}j�vX��U��','���3��}j�vX��U��','�]�GS�����6�n�,)2w6���oP��ƨX','',0,'?'),('l>iXV��6���[o','wp-content/themes/mint/node_modules/bower/lib/renderers/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/renderers/index.js',0,'��ɘ�$WͲ\0@�','��ɘ�$WͲ\0@�','�������hO�t��{j>��&����','',0,'?'),('l �.�G�h��','wp-content/plugins/wordpress-seo/src/memoizers/presentation-memoizer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/memoizers/presentation-memoizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�4_���~=.I���','T�N���E)O��z2.�k�DC�����^9�F','',0,'?'),('l����~5�&��&���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_asciiToArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_asciiToArray.js',0,'SY�\n2%�m�\r�\'��','SY�\n2%�m�\r�\'��','��[]��N�p�O�xm37�o��x��~��iF�','',0,'?'),('l��aC7��(�%6`M�','wp-content/themes/mint/assets/vendor/modernizr/test/js/dumpdata.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/js/dumpdata.js',0,'q�x0�n\Z�OT�S$�','q�x0�n\Z�OT�S$�','?��]�n�c���]�V�WP��uC\'��k�3m�','',0,'?'),('l\">���!��?~]�4)','wp-content/plugins/envira-gallery/src/Utils/Shortcode_Utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Utils/Shortcode_Utils.php',0,'��- �o�c�\\���','��- �o�c�\\���','d�>�;�g�\r�\ZW��t�5���*����I�','',0,'?'),('l\'m=��ƴ��_��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\'�8���.ᢥ','W��m\"�����4=B(���c%5 �r��Md�','',0,'?'),('l+�b,Ec���¹?��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/always.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/always.js',0,'������7��}r(�u��','������7��}r(�u��','zz�.P���dY�J`�5w����,\rD�卨��','',0,'?'),('l/\n�Ԁ�W�ͱ-c�','wp-includes/widgets/class-wp-widget-recent-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-recent-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I%*��1��9���','u��כw��x�mI�{��c�u�l��','',0,'?'),('l0�:D�a/L�7��a�;','wp-includes/js/dist/preferences-persistence.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/preferences-persistence.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;n��c��v�A:�;','y+��*����g?�!H��d7��T�w��e�,ܱ','',0,'?'),('l9��=��h�,>���&','wp-content/plugins/wordfence/lib/wfDiagnostic.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�7�L�W�3:B�3','@�p�Fo�\'�����7hF�We�p��\0gLV','',0,'?'),('l;\\F�v_�-x\\3{�','wp-content/plugins/wordpress-seo/src/routes/wincher-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/wincher-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q���\'l�_�O�E','�8�`4Te��I���o��L�0\'�J�� ��)�z','',0,'?'),('l=���\0{lO�\nݻR�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/transform.js',0,'�A�+Q�{}��3�','�A�+Q�{}��3�','PWF�fz ���^�B\\v\r��8�2��R�?��k','',0,'?'),('lD[�l�j���5�\"�','wp-content/plugins/gravityforms/includes/upload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/upload.php',0,'��.�_�ПT(t�x','��.�_�ПT(t�x','Lt��0�f���Y]�q�~OZ<�|,S,�f*','',0,'?'),('lD�#S��Sxr�','wp-content/plugins/wordpress-seo/js/dist/classic-editor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/classic-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$\'ː�O\\���^','9�o��\nW�t_��0@�(�8h���n�$��','',0,'?'),('lI���Fe?3�^X�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue53.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue53.js',0,'n\"����3��k�i�','n\"����3��k�i�','D��7n�\\Rz,m)�Q���?�h�Lq |�','',0,'?'),('lU�a�x��}��q��','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-draggable.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-draggable.svg',0,'㞾~_N��\0��2�','㞾~_N��\0��2�','+�G;�{?�N��:�9�?e^�wL��B�','',0,'?'),('lZ�q�#eS%s��7Y�','wp-includes/js/dist/notices.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/notices.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JOC�L|bS� �4y�','��ZVک��\r������Q��H��=��.�M','',0,'?'),('l\\ +���w�K{A','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isFinite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isFinite.js',0,'��93�&��uy�e�','��93�&��uy�e�','�P����!*a��[�B�*�/��!�}}�','',0,'?'),('le�t�^$Qkr��}','wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/test/modules/test2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/test/modules/test2.js',0,'Ǧ:y�2�:����','Ǧ:y�2�:����','.�{[Y��/9[��Q��h�n�7�G\'��5wc�j','',0,'?'),('lmy�$B�b4Қ7�!','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/globstar-match.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/globstar-match.js',0,'R(�]��TI Wlv��','R(�]��TI Wlv��','��f�؆?���Z�}_���Żpq�=��','',0,'?'),('lo#�V^��A>�ʍcB','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionOpeningBraceSpaceSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionOpeningBraceSpaceSniff.php',0,'t��2,J8�_`4q','t��2,J8�_`4q','O���?����Mui�E ؗ��EZ]r�YY��','',0,'?'),('lq�/�ɦ�W�5��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isObject.js',0,'�F�Ao1e�Ԫ��\n','�F�Ao1e�Ԫ��\n','��0P�^�̘U�0v(�m��-rn��bvh��:)','',0,'?'),('ls��4~7�>�JW�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/gte.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/gte.js',0,'xl�J����gD�߶��','xl�J����gD�߶��','��Tg�~{�.��b�_F��8��ЛS�6,��','',0,'?'),('lt���#C�ݿ5����','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Source.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Source.php',0,'����a9>c2Rנ�','����a9>c2Rנ�','�S��0�ZE1�e�#����A�Yoދ픕�dk','',0,'?'),('lt��%��L���Մp','wp-content/plugins/wordpress-seo/images/question-mark.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/question-mark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|i���)d�pOd(','I�KLl\r�Ҧߐ�� S��ʨre4>bI�]','',0,'?'),('lx��sL��S�V�J�','wp-content/plugins/advanced-custom-fields-pro/includes/class-acf-internal-post-type.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/class-acf-internal-post-type.php',0,'�ݖ%Q@���fp��','�ݖ%Q@���fp��','k�.���9_�p*2�.�L��Y\Z\n8�','',0,'?'),('l���?�� �q','wp-content/plugins/wp-optimize/includes/tables/class-wp-optimize-table-404-detector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/tables/class-wp-optimize-table-404-detector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�ė�T]`wMȪ��','��d!��fu�v�bwM��E�!Ҫ;�}M\'cƈ�','',0,'?'),('l�RM��۳�zt^��o','wp-includes/js/dist/preferences.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/preferences.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�_��3�)��/T�\n','�A�l�|�;H\Z�m��;���N���͵�','',0,'?'),('l�\\\'��q�Ll�N�n�K','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toFinite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toFinite.js',0,'�E[h*I1��eM\n�','�E[h*I1��eM\n�','jL�Z�Z��4�|����I@$8���6�J�','',0,'?'),('l�Y��Ӽ�\0tH�!�r','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-seo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-seo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�u�?m�\0W��-6� ','��&3m��8`l*}�\"����M��O*�T-�','',0,'?'),('l����)�MB�K�','wp-content/themes/mint/node_modules/uri-path/test/main.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uri-path/test/main.js',0,'w�{��@ә�1�3J5�','w�{��@ә�1�3J5�','a5��m%y��Uw�s\"^����Ů[ H�^#w','',0,'?'),('l���[�}�j�9�Be� ','wp-content/themes/mint/node_modules/tough-cookie/lib/pubsuffix.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tough-cookie/lib/pubsuffix.js',0,'::c��(�\Z����Yog','::c��(�\Z����Yog','�h_R��F�ɸ�Qě��y�E�kƌ���','',0,'?'),('l�[ڭj�<�}S>�8��','wp-content/plugins/wordpress-seo/src/builders/indexable-hierarchy-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/builders/indexable-hierarchy-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W\"`���V���� ','��d�t������,�79�b��9@�g5O-�b','',0,'?'),('l�\0��&�7���xd�*3','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php',0,'�_͉}�}e��','�_͉}�}e��','?�=͋�گuY\0��W�3�*�����fQ7 �','',0,'?'),('l�I�vg+\r���z���','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/statusesTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/statusesTest.js',0,'�;&�D�.�GR�cb0a','�;&�D�.�GR�cb0a','�`�T�s˺y�b��R�b����E��Q֞0','',0,'?'),('l��SNVng��y�<','wp-includes/blocks/image/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','djvY#vc|/?�d','�H�7��%��:�����6x�:?ߕ���d�>E','',0,'?'),('l��0�ɮ�)Mo�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_Map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_Map.js',0,'nm��^9*�|���˟��','nm��^9*�|���˟��','��J��J�\rh(�Ű7M\r(��,.&W�T��','',0,'?'),('l���[�3���X�X]�','wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/spawn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/spawn.js',0,'H��\0=r�m�DukP+','H��\0=r�m�DukP+','H�D��dD�Bн~{~��a��Ԧԝ�}ƿ','',0,'?'),('l��<��#��q�,�','wp-includes/blocks/archives/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/archives/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GL�\0��Q���v+s�','\0�B�P��}eGu��6����ؠko��\Z��C�','',0,'?'),('l��;��w�q`�s���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/toUInt31.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/toUInt31.js',0,'��p\Zw��o2�k�\\�','��p\Zw��o2�k�\\�','y)=;#o�OJ�.[���qpz#]R�ź��R�','',0,'?'),('l�T��8}#��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/es.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/es.php',0,'�\r{�C׳̞n!e���','�\r{�C׳̞n!e���','���|k�&+�`��4�iMה�:)��[_��*{','',0,'?'),('lġu�>Q�� \0P�(G','wp-content/plugins/gravityforms/includes/addon/js/gaddon_frontend.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/gaddon_frontend.js',0,'��[����q6���Z{l','��[����q6���Z{l','�l�la�h����}�s�bEq�AW\r���n','',0,'?'),('lŮ\rC�#Gtݝn','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/loader.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/loader.js',0,'�/l�\rF/��O`]\Zb�','�/l�\rF/��O`]\Zb�','n�T�B!c��6@����!<��A��w��','',0,'?'),('l�m(f�_q�`b�C�%t','wp-content/plugins/wordpress-seo/src/presentations/indexable-static-posts-page-presentation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presentations/indexable-static-posts-page-presentation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S��Ys�Oz1K!��','�Lt�i]V$I�F��`��>�s\nwa�C�?o','',0,'?'),('l�w�@�����4�-','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/binary.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/binary.js',0,'S��:SM�6�Ej&��\r','S��:SM�6�Ej&��\r','\Z�#:�p�B���ڹY�=ob�a��B\"̉n�','',0,'?'),('l�߾s���Mv�A�@�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php',0,'�p@�A�߸���u','�p@�A�߸���u','t�+eTn�TN��0�m =�\Z\\�9�����p�','',0,'?'),('l��14��&y�a��W','wp-includes/css/dist/customize-widgets/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/customize-widgets/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/)\\ ��)i3�','|\0a�%���LdQV��\"1��x����N�C','',0,'?'),('l�z� �]��3�>dD[','wp-content/plugins/wordpress-seo/src/editors/framework/site/term-site-information.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/site/term-site-information.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\rp�����1[��','�))\"h�t��OP�-E��\0ږՖf�y ���','',0,'?'),('l�˖�u\n[|��y','wp-includes/html-api/class-wp-html-doctype-info.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-doctype-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T��S\'�<�)O-:','��*W\\s�nbN���MX���\n������o�','',0,'?'),('l�;0�{@d�G�\'=�l','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-link.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-link.php',0,'d�ޥn�:{8XgN���','d�ޥn�:{8XgN���','��ׯ��5��6������~�=Д�)�M7','',0,'?'),('l����(���N��','wp-content/plugins/advanced-custom-fields-pro/includes/acf-post-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/acf-post-functions.php',0,'���r�+�2���G�0u','���r�+�2���G�0u','?~Hv��(�.�qny��N\\��ן[�U�','',0,'?'),('l���d�g���_P�Jz','wp-content/themes/mint/node_modules/eventemitter2/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/eventemitter2/index.js',0,'G��\'\nG��ZB\\\ZW�','G��\'\nG��ZB\\\ZW�','^G `G�;_�N��<\0�A��B�kK�B','',0,'?'),('m)\r����aH���E�','wp-includes/blocks/social-links/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-links/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��J>�O㵝P)�=�','��L^�N���y��ӆ�m��O�/����T�','',0,'?'),('mƗC�����c-�q','wp-content/themes/mint/node_modules/bower/lib/node_modules/create-error-class/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/create-error-class/index.js',0,'�ц���sP_\'��','�ц���sP_\'��','��pj|\ZhIa��Q�\n4��A?x�� �!�.�H','',0,'?'),('m�N��#�0��2','wp-content/plugins/gravityforms/images/select-date.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/select-date.svg',0,'���@X�&e��˝-','���@X�&e��˝-','�b�����SG������)T�(���`����','',0,'?'),('m �_�!,�,��~�h��','wp-content/plugins/wordpress-seo/css/dist/tooltips-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/tooltips-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�W>�vJ*����','fu��s7p8�?��U QPJB�7��o��-��','',0,'?'),('mD��T�ms���A�}','wp-includes/certificates/ca-bundle.crt','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/certificates/ca-bundle.crt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UC%Pʅ�$��p���','�<eN����f�FK�F���o�-�Y����SlU�','',0,'?'),('m�+w�2v,\"xQf','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/DescriptorInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/DescriptorInterface.php',0,'\"G/+wCݰ�\nXj','\"G/+wCݰ�\nXj','v 57rҬ\"B��ْ���_�Q� ��T���0G&�','',0,'?'),('m\r.�qA�\r�m�`','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A.n�YL��S0A.�#�','�iL���f���g$�&�V�n:�O\Zb��{��','',0,'?'),('m\rq��<�d���332�','wp-content/themes/mint/node_modules/bower/lib/node_modules/array-reduce/example/sum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/array-reduce/example/sum.js',0,'�ﯘQ�6�˝$�\n�','�ﯘQ�6�˝$�\n�','r�0I���٥fR�q7�ȋz��Z��J�cF�','',0,'?'),('m�c��������','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/escapeRegExp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/escapeRegExp.js',0,'ٻ���E�J,%Wz�','ٻ���E�J,%Wz�','Z\r]�1ON�\\-���� 6�[B�\r\r4%�5�','',0,'?'),('mY���L~)M�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue10.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue10.js',0,'��ϑ�F2�?�йl ','��ϑ�F2�?�йl ','�Z�j���\"Ri_�:S�r9�]-�R:}�R','',0,'?'),('meD�d� �\n`��','wp-content/plugins/wordpress-seo/src/user-meta/application/custom-meta-collector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/application/custom-meta-collector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3�?�U{X!ub',':168��L�DR&�k<5;~�&�T0���','',0,'?'),('m�߄@M��:����','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5�����8��p�^Z','�\ZZ�v��Ѣ��3kw��9�IO-3ى@�SM','',0,'?'),('m5��nU��v�$�','wp-content/themes/mint/node_modules/bower/lib/node_modules/stringstream/stringstream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/stringstream/stringstream.js',0,'�\r] ���Z��-�h9','�\r] ���Z��-�h9','�8�S��5�Qr�K8���IU���[��ø��','',0,'?'),('m9@���\0�W���P��','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/settings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/settings.js',0,'�d;\\���z]�^�2','�d;\\���z]�^�2','����.�ϳс���V,[��u*�i��3Z���','',0,'?'),('m<A=�1OԶ���6#z�','wp-content/uploads/cache/7d5bcd9c86443a7fb637747870dfef7aa3220605.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/7d5bcd9c86443a7fb637747870dfef7aa3220605.php',0,'������=�\0!G','������=�\0!G','h�:�#��f�8������b�הHƺZ�7HK\'��','',0,'?'),('m@S����Ή\r�1e�t','wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreMultisite.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreMultisite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=�[��#��W��','pǗ�v�9��[�m8A+\r�OQ�!��A����%','',0,'?'),('mA�p�� 1��G�U/','wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ؑ4�䊕�x���1V','\Z|%\0��^��x����\n�?���ֿ�x','',0,'?'),('mA��Y����Rb|�S�','wp-includes/ms-default-constants.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ms-default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���y���j�0©�_��','r����kEB�f ��p�L���\Z���J','',0,'?'),('mE���\\�)��o�','wp-includes/js/jquery/ui/spinner.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/spinner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q��ND���X(*�?','䙨mJ\"��\n��C�Y\r��it\"�uM�_9��%','',0,'?'),('mI�?|��<��ڽ�(S','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.merge-tags.081152c5569c4b96a428.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.merge-tags.081152c5569c4b96a428.min.js',0,'�\'���I�g Cm�^�v','�\'���I�g Cm�^�v','�S�E���#�\rF#h1�(i4�ܲ�st�*(�','',0,'?'),('mJ�G@z\'�C�;�Qs!','wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�A��ݦ�KԼA�T','�.� ��Aj�\Z�M��0�ǥ�\0��Pu&�WA��','',0,'?'),('mLNK̂d���j�O��','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.min.js',0,'�;�R�l����P��_','�;�R�l����P��_','� �G���; �����N��pA5��V�r4U','',0,'?'),('mOy( ~Ȩ\'���p','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isBoolean.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isBoolean.js',0,'W���oh�J�,�OՊ��','W���oh�J�,�OՊ��','aV:��go�U�k��H�ݶ�\\�F�{�u,�%','',0,'?'),('mTZ`xk<Y,��/Ss','wp-includes/class-wpdb.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wpdb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ܫ�aG�\"��qi','f�C�e���c`/��7C=�\"�fc�+\'�f��','',0,'?'),('mW�X6f��`�x�^m','wp-includes/class-wp-classic-to-block-menu-converter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-classic-to-block-menu-converter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n?E\'ѹ.Wm�\r0�S�','/%�Aض�h\0�~@���њ[�~9���F��< �','',0,'?'),('mY����}ɽ��?','wp-includes/js/jquery/jquery.ui.touch-punch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery.ui.touch-punch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�m�Q4փ��]�','k>jT@���z�����՜.OB�j�0\'��t','',0,'?'),('m^�=�tQ�]�x','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/PoFileLoaderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/PoFileLoaderTest.php',0,'�D*0Q��t;6�[a�','�D*0Q��t;6�[a�','G�� �\'@m��ߠ��WQ��JOWM/;GۙDH>S','',0,'?'),('mk�B}��T�i@�.�','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-plain-obj/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-plain-obj/index.js',0,'�ɒdn��7�#X\'+','�ɒdn��7�#X\'+','i,���6���қ�#���m�������JNf','',0,'?'),('mm3eX��D�~��3���','wp-content/themes/mint/assets/vendor/jquery/src/deferred.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/deferred.js',0,'6��7��\0@D#���(','6��7��\0@D#���(','�2%Lz1\"9����K�4��4�m\'�K��P�','',0,'?'),('mqZ��OMP���㋩','wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordfence.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordfence.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"I�<��9��vG','�jiA�E�x�\0*�!��lbZzM�v>\Z��','',0,'?'),('m~�M�Y�0p�ڝFd','wp-content/themes/mint/node_modules/tough-cookie/lib/memstore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tough-cookie/lib/memstore.js',0,'�*������\'x����','�*������\'x����','�Fo,F-�1K��˒\"�W|~��9�2�\Z�-','',0,'?'),('m��5%���*-��Ǒ��','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-0d7815d9.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-0d7815d9.min.js.gz',0,'D�g�◜�GD$�sJ�','D�g�◜�GD$�sJ�','^���ޟ��Z&zb���Up��C��͑G�ej�','',0,'?'),('m��-\Zm1����w��','wp-includes/js/jquery/ui/sortable.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/sortable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�ܟ\Z�v�ɶ�_�۞N',')�rAs`�.H�E�B҃yJS#\"� �p','',0,'?'),('m�U���Hܟs�͈��','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/ObjectDefinitionHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Helper/ObjectDefinitionHelper.php',0,'��%]܋�0�/��','��%]܋�0�/��','��{\r+l��K�o`(�fir�#ת���17Lp`','',0,'?'),('m���>\Z�n�O�mG�','wp-content/plugins/wp-optimize/includes/list-tables/class-wp-optimize-queries-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/list-tables/class-wp-optimize-queries-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�bM^8���ͯ$���',';���K�Z�r\n`*0���Ã�\"7�a�dA��','',0,'?'),('m�ϵd��YI\"����F','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isArray.js',0,'�Z�S��t!�����T','�Z�S��t!�����T','���#-7}�a87��\Z�u����n��g���','',0,'?'),('m�C�+���`����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createSet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createSet.js',0,'_u��٘��,��0�','_u��٘��,��0�','P�ʢ��y��Gc��G<O�^o�Z8����','',0,'?'),('m������WUN��u�*�','wp-content/themes/mint/assets/vendor/jquery/src/traversing/var/rneedsContext.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/traversing/var/rneedsContext.js',0,'�gl\0�~.T�S�(� ','�gl\0�~.T�S�(� ','a!](�2�|�A@(��_��ѭ�-�<��n�','',0,'?'),('m�1\',o�5��9�>e','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/long.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/node_modules/minimist/test/long.js',0,'e.�^i�A獚�_�W�','e.�^i�A獚�_�W�','�P�-�FZ+�-I�\'VRHØ�Vx�0��BH','',0,'?'),('m��|8�x�e�\0�pI�a','wp-content/themes/mint/node_modules/bower/lib/node_modules/which/which.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/which/which.js',0,'\r\r�\"���\Z��\"q@','\r\r�\"���\Z��\"q@','\0���$I��3��:�]��ϤS4k2�YQ9s�P','',0,'?'),('m�B��2�HN�$�O�K�','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/bootstrap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Û�߂��d^t�?Q','6敖�i>t\'R��Ď�ӕw�z��n��n�','',0,'?'),('m���;խ��r1��','wp-content/themes/twentytwentytwo/inc/patterns/header-image-background.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�{veI 7��u�@','$�N���� П_���40D�W-pA���Z','',0,'?'),('m����/ܡ��!��s��','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ControllerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ControllerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G��2.��5U?��','��*�yPi�`�\r����uj����娳~�5��','',0,'?'),('m�5�)\'��aH�\r��-','wp-includes/blocks/home-link/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/home-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�(��`�=�~�','f��gm3뜌�����B�D��~q@��5����','',0,'?'),('m�I�u��%�CnDP�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Validator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Validator.php',0,'�@y�b�@ ��.Ŋz=','�@y�b�@ ��.Ŋz=','��>ųƙ��i���b�47hHc�����|Vwj','',0,'?'),('m�\0x��K-����}�','wp-content/plugins/gravityforms/js/skip.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/skip.min.js',0,'4d�G}ђ0�P�g�u','4d�G}ђ0�P�g�u','��#l�;�¦�,^<{M� ��W@�m&�ldP#','',0,'?'),('m�-r��s�@���.','wp-content/plugins/wp-migrate-db-pro/class/Common/Replace/PairFactory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Replace/PairFactory.php',0,'k�%�4�R�I�[^k�:�','k�%�4�R�I�[^k�:�','e/��NҤ��&_�Xi��M��s�bQ��u�L�^\Z','',0,'?'),('m�2�z�<��@�!��','wp-includes/css/dist/preferences/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/preferences/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӱ����mÏ7L�==','��G�9�{ � �s N�>�,�[�� |S��f','',0,'?'),('m�V Z������GI','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchFrontPage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchFrontPage.php',0,'��HdJm?#@�̯$M>','��HdJm?#@�̯$M>',' �L������[-c+��F����G��q��','',0,'?'),('mڠ�y����d��\n�J�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ClassDefinitionOpeningBraceSpaceSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ClassDefinitionOpeningBraceSpaceSniff.php',0,'7>OeI���JϿ�^�','7>OeI���JϿ�^�','{{5�V��ֳ��{�$CUjȤ;D{*5w','',0,'?'),('m�ҋr2��vb<p&','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpcs-ruleset.xml','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpcs-ruleset.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ي�j{|DuDn�BT','%x�\Z,�H�i*�3�W=���C��p�B(','',0,'?'),('m�\\���\Z�-)��+54','wp-content/plugins/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php',0,'�R���d!�9�/���','�R���d!�9�/���','�ܘ(>U����D/��!��\nv<���F(��Y;','',0,'?'),('m��I#��*Bʟ�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-nl_NL_formal.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-nl_NL_formal.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P_��D��9s.�D��',']�Sn����6�)5��q��n�1m��\0 +�v','',0,'?'),('m��\\�~bu,��bt','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Client.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�����oV��BY','2ƼΞw�������4ф�C�W�S�g��Q��','',0,'?'),('m�\0�5=N/;ЌF��9�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\"�˸���ƽ�P)','���O�ā��[�4�X����YأߚT�2�9�','',0,'?'),('nQ��ʒ\'�k��\"%�','wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\r��Π;K�۔�b/�','ߠ�P x�|�ΘQ=� ���Tc�vL\n*Ȱ','',0,'?'),('n��=s�\\\0�<i��','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/core.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/core.js',0,'_�(?�6\\� ���','_�(?�6\\� ���','����p#�r��\0�[PT\0.�G�X����wJ��','',0,'?'),('n��`�X�K���V','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/MessageCatalogue.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/MessageCatalogue.php',0,'RE�<��&T@=u','RE�<��&T@=u','�ڀ��/��|�ӽAD���d�!����?��)�uo','',0,'?'),('n z����;���C�s','wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/client.js',0,'\nR�4\Zg�:Z#�V��ň','\nR�4\Zg�:Z#�V��ň','\r�9�Un�@v1D3R���,�ܭ\0�N��N','',0,'?'),('nc+z��<��7�','wp-content/themes/mint/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-execArgv-child.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-execArgv-child.js',0,'��.���\0\"mv^�:e3','��.���\0\"mv^�:e3','v[?��ԙx���\07�����q�31�C�yE�','',0,'?'),('n]�j7<3ISsQ�','wp-admin/images/post-formats32-vs.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/post-formats32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t.E���5G�N\Z�v','(Z�,���Im�Y,·�ԗ��tG��������a','',0,'?'),('n[ X���}�0�','wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LL�#��\0�uD,�Y�i]','�~^���ٴ� d��i*����W����<6��','',0,'?'),('n6ߏٌ]|l\rv�ln','wp-content/themes/mint/node_modules/bower/lib/node_modules/run-async/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/run-async/index.js',0,';��sXT��gῐ�',';��sXT��gῐ�','�V��EdyD����@f�=����%:G�|�','',0,'?'),('n��EXiP�-~�ܴh','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/passthrough.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/passthrough.js',0,'�muk��\'�M���Y','�muk��\'�M���Y','�H>Ŵ~�\"A]�1�9y3�)e]ny��rȮ*�','',0,'?'),('n�*gHK\'�%Q�V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/fill.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/fill.js',0,'���Ԕ��ཐ>7�','���Ԕ��ཐ>7�','y���B�- r �C����[��E�U<�j ','',0,'?'),('nN�⣥\\D�w_�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebPWithErrorHandling.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebPWithErrorHandling.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']M��5��+�[��1�r','vO��2��zx<�.DC�53�����','',0,'?'),('n�O�+��*3�>-B�','wp-content/themes/mint/node_modules/pako/lib/zlib/gzheader.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/zlib/gzheader.js',0,'���Ǟ��I��S��L�','���Ǟ��I��S��L�','�[\n\0ݱ���XK�~�+�QŅsB���>�','',0,'?'),('n\Z�r7��6l~)��!','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/i18n/pt-BR.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/i18n/pt-BR.js',0,'R��25�\r&ጳ�L\'�','R��25�\r&ጳ�L\'�','^:�ɵnI���;!�u:\'�ѥ��2�ٰ�&�','',0,'?'),('n#�t=�\'����b]{�','wp-includes/js/tinymce/themes/modern/theme.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/themes/modern/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U���E��|�h(Zf�','ӣ }�ʫ�E�0�).TX��K�d~�H��NlK20','',0,'?'),('n\'�C7#x�Cԍ�ssm','wp-content/plugins/advanced-custom-fields-pro/includes/walkers/class-acf-walker-taxonomy-field.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/walkers/class-acf-walker-taxonomy-field.php',0,'7�f@���3^�Kl\r1�','7�f@���3^�Kl\r1�','�V$�Z�@؏���m\n��%+��O����,3','',0,'?'),('n\'�oY��\n���w','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/AggregateServiceProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/AggregateServiceProvider.php',0,'�!�� \Z�?����x<=','�!�� \Z�?����x<=','3�5�IQ��6��<y�pD9d\Zl����ȁ','',0,'?'),('n0�<Pe���y\0.','wp-content/plugins/wordfence/modules/login-security/classes/model/style.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/style.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+h�J��N�3�}�{�','{�>�ߓv18g<]\'�E�#\\O����@���','',0,'?'),('n4^�\'e�L �h*d5�','wp-content/themes/mint/node_modules/glob/test/root.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/glob/test/root.js',0,'4M�7슎�\"ܚZ','4M�7슎�\"ܚZ','��/�H:rj)ÆAy�%��ϱH �2rY\rv�','',0,'?'),('n?��<}rm\'�eq c','wp-includes/blocks/site-title/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-title/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\Z�g���Do��k�xl','���O�Q?v���Eo\0��\Z������Җ%\\H3','',0,'?'),('nAj+�u��VG7d','wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nR1�՞��\n�ixBi','���S�⃧��=ȌbjK�����i�$��y�','',0,'?'),('nE�kP���,,��4?','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/i18n_.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/i18n_.js',0,'��E�}t3|\"Tz��','��E�}t3|\"Tz��','��n*S$�U��k��h� �$��������','',0,'?'),('nK�.��v�2��-ï','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Config.php',0,'.��%��.�Qm�\n���','.��%��.�Qm�\n���','���5}U���>������#���(����5','',0,'?'),('nQ�)L,wX|���7\'','wp-content/plugins/wp-migrate-db-pro/frontend/public/noop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/public/noop.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('nZ/1T:{&^�/n���','wp-admin/js/media-gallery.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/media-gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_8��5o�?�','Ƥ�$�30��I��X��C,b���\"0l�N�F','',0,'?'),('nZeIJ�\"O��q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/forOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/forOwn.js',0,'7��:�\Z��x.�ؒ�','7��:�\Z��x.�ؒ�','%��3w�(�]MG��줢q�l�w(*�<D��','',0,'?'),('n]��\Zkn�^M;���','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/widgets/quality_badge_widget.html.twig','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/templates/widgets/quality_badge_widget.html.twig',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�WO�=�S �ٜ��ӳ','�N���`z��>�/�?�]���_ZUy','',0,'?'),('nal��=�b�\n���^','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/reject.js',0,'���-�����5c�','���-�����5c�','F\ng5���H4��iM��/���PY��ޕ�<','',0,'?'),('na����\n5�{�D','wp-content/themes/mint/node_modules/clean-css/lib/properties/optimizer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/properties/optimizer.js',0,'���-��+�>���ڈ','���-��+�>���ڈ','���]��?��*u\r\'5��P#r9������>gY','',0,'?'),('ne��8�f����j��3o','wp-content/plugins/gravityforms/includes/setup-wizard/config/class-gf-setup-wizard-config-i18n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/setup-wizard/config/class-gf-setup-wizard-config-i18n.php',0,'�`hD���F�1h�\0�','�`hD���F�1h�\0�','N)��*/@�ѝB81zV7lOup�.�[�ܑ�','',0,'?'),('ng�GI�4��s�(��T','wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' l��#Y^�=u��','r�=X��,�lU���*�F]�� ZQ[6�qф','',0,'?'),('nk�X*V��\Z��Ld�','wp-content/themes/twentytwentytwo/templates/page.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/templates/page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�]6aذ+e����','\'ft�g�x�9I��8&l< P\0�\'�\rQ�h(�3','',0,'?'),('nue�ƫ@��׆;Wv\0Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/node_modules/async/lib/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/node_modules/async/lib/async.js',0,'�H~�nڠRf���W�','�H~�nڠRf���W�','�dxu0�^�Z�6�,���%����x��L�H!','',0,'?'),('n��{��oh\Z��*','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectedPromise.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/RejectedPromise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'��$t���F���f��','n\\G�zO*�bq}=����|)��� ���q�','',0,'?'),('n���3����Mck','wp-content/plugins/wp-optimize/optimizations/revisions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/revisions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���K�,�a�5��p',' �f`�](H�!U�`k�R�������','',0,'?'),('n�[�D��`c5\'�','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-footer-118636ae.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-footer-118636ae.min.js',0,'�RO؟Ph9:n�nl�','�RO؟Ph9:n�nl�','�F�t$��Ķ�7�菕�0����pĕ�','',0,'?'),('n����@��A��F�','wp-admin/network/sites.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�զ��L\"l�t�t','.��������\"��?j�}3=�d���SK�','',0,'?'),('n���[�E.�\0+g�O�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Factory/RequestedEntry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Factory/RequestedEntry.php',0,'h ]��=��)�{�V\n��','h ]��=��)�{�V\n��','g�j�ҲaDAS�/LS�JbW�OX_�<o��=','',0,'?'),('n��zǹ��U�f��-N�','wp-content/plugins/wordfence/js/wfselect2.min.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/wfselect2.min.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ġ� ǧ^t�,g','� u��V nhCPH�]8��*)G��`.r�','',0,'?'),('n���g�7���xՏ�A','wp-content/plugins/wordpress-seo/admin/class-expose-shortlinks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-expose-shortlinks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�I?���,PP5�R��','2��0�o��aĐ1rU����)bf�~fxd','',0,'?'),('n�����vL;��6��','wp-content/themes/mint/node_modules/bower/lib/node_modules/cryptiles/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cryptiles/test/index.js',0,' #�&�b:m�4�PQ�',' #�&�b:m�4�PQ�','ND�!K�e�aԑ�L��M���9�?b����ЌF','',0,'?'),('n�ܴ7���/�\"�nb','wp-content/themes/mint/node_modules/postcss/lib/list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/list.js',0,'5��A4�?1ߌj�KS{�','5��A4�?1ߌj�KS{�','�[�=��3B�˩�8��w��nlSu|�c�q.','',0,'?'),('n�F�`np~vuTk�K','wp-content/plugins/wordpress-seo/src/helpers/indexable-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/indexable-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$U��M�hP/�N`�E','G������T�]�0w�_}#�,��M3���#�','',0,'?'),('nʩ,�QXl1���[�L','wp-content/uploads/cache/d400af2923a4701fe0d320f4815121e95ad26b0e.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/d400af2923a4701fe0d320f4815121e95ad26b0e.php',0,'�;U�Ⱦ��w�a��3','�;U�Ⱦ��w�a��3','�\"���_�c;�y�Q}Wk:��=�eVh�^#','',0,'?'),('n�u�^F�/X~�K','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseExtremum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseExtremum.js',0,'�!&\'G�Nx.�S[�','�!&\'G�Nx.�S[�','3�����t���aq��������\0S��','',0,'?'),('n�ݾ��K���Z{�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/contains.js',0,'�Sz�#�{7^%*� n��','�Sz�#�{7^%*� n��','�.sS���Ÿ\'��#4[A� �Ѥ�p9����','',0,'?'),('n�:_-�������','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/reduceRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/reduceRight.js',0,'�3�:�g>��1�ۖ','�3�:�g>��1�ۖ','<85\'c�����m�nw`˨�b:-��k�|L,�','',0,'?'),('n�к���v�nj=ͮ','wp-admin/includes/class-bulk-plugin-upgrader-skin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n�%�ͤ�Y�m','�qr�؝��(;2%�`��F6�\Z�w���','',0,'?'),('n�\\A�S+G�Z�,n','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/password.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/password.js',0,'l+hj���7��slx','l+hj���7��slx','?LgS ٌJ\Z-�R*ۤ3�ՁH�4���5+���','',0,'?'),('n��)ᖑ�o[d��)x','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/CallbackTemplateFinder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/CallbackTemplateFinder.php',0,'�e _�a&oF�F��}','�e _�a&oF�F��}','�@�8�.%��<�x�B�?C�(�&��&��#�','',0,'?'),('n,�Q���3b��O','wp-includes/js/dist/warning.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/warning.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uX�H��鼟|A�5r�','��o\"^4��u���Q\0�\Z\ZD6X�\n@�+e','',0,'?'),('n�2�嶩�cz�Hߢ�','wp-content/plugins/wp-migrate-db-pro/compatibility/wp-migrate-db-pro-compatibility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/compatibility/wp-migrate-db-pro-compatibility.php',0,'�\\�T����9�טg','�\\�T����9�טg','��-f��p����5��\'�^/C ���-�X�Б�','',0,'?'),('n���0�9j�v8�\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ef���!77#2A','�Q���O�|R)Vq�C�W���(��@��@+��','',0,'?'),('n��t?�z\0R�E\0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/line_count_options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/line_count_options.js',0,'���5��aH0[n���','���5��aH0[n���','H�[�R���Tl6�4Ɗ�G���pp�.%G�','',0,'?'),('n�ߪ�4î��-}G�.','wp-content/plugins/gravityforms/js/gforms_hooks.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/gforms_hooks.min.js',0,';�CJ�x�y[q��G��',';�CJ�x�y[q��G��','��\\��\0\nҼ&a_:B��)�>�霁��O�','',0,'?'),('n��ۗ��vXH)�','wp-includes/sodium_compat/src/Core32/Curve25519/README.md','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Curve25519/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��ϛ�vj��\n���','�S�x�^�V>m�!-�q���D�eV�����','',0,'?'),('o���)$��1�`h','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php',0,'�$g����V� �c:ݔ','�$g����V� �c:ݔ','�f}�����ۃ��WG��H�V<�<�S^�','',0,'?'),('o�?�C��W�y4ud','wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/lib/_stream_passthrough.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/lib/_stream_passthrough.js',0,'�]�T��G����w��54','�]�T��G����w��54','�#��M��ֳM&[8O����zX`�����v�n�~','',0,'?'),('oFף�.n�/����z5','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php',0,'[��{�v���j�p��N�','[��{�v���j�p��N�','�f����<+/�R�Lm�U�.lEy߯��}U','',0,'?'),('o���D��ș','wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/ClassMap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/ClassMap.php',0,'o�~���Kd�#���w�G','o�~���Kd�#���w�G','���l�3�v�a�\0�w�][�;�[��.��a�','',0,'?'),('o�-��@i�9W�R','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-repeater.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-repeater.svg',0,'��zt`�ݮ�z��u�','��zt`�ݮ�z��u�','K�����<�B�g�Ms�����ekX�+̾��{','',0,'?'),('o �];��u3#��-u','wp-content/plugins/gravityforms/images/template-library/Contest.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/Contest.svg',0,'OW���q\0!̼�`��','OW���q\0!̼�`��','y�U?ƭ���/�ݖ�z���q�Ҋ��k\"�왢�K','',0,'?'),('o!Bm:v��oI1�','wp-content/themes/pinnclonesmalltest/vendor/psr/simple-cache/src/CacheInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/simple-cache/src/CacheInterface.php',0,'Do]�К��E!�i�j�','Do]�К��E!�i�j�','>�����\0���i#m�d��w@�Z�ͬ6�2�','',0,'?'),('o#�+��c�U���','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-taxonomy/advanced-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-taxonomy/advanced-settings.php',0,'���\"�!���|s�ИNY','���\"�!���|s�ИNY','�]��̸��YðW}^���j�}J� ��Yd','',0,'?'),('o&�;�;�K��|-%1}3','wp-content/plugins/wordpress-seo/js/dist/installation-success.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/installation-success.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B�1\n+ִ�S��p','��#L���(�.�% �y�6��BNY[�B��W','',0,'?'),('o\'RD-��\0���o��','wp-content/plugins/wordfence/images/support.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/support.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Cl�$��r����n<.','��$�M��Ԯ�&���(ᩘs��^ Ϣ*N��','',0,'?'),('o\'��r+Ԯ�o a','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"f/�2��|f�b','2e��=�1\n2q�x[H�@�JVV#c[<','',0,'?'),('o/O�`�{�F����','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/MemberVarSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/MemberVarSpacingSniff.php',0,'zŨ��^��=.��I6ȉ','zŨ��^��=.��I6ȉ','&S�lf��H��`7~\0\\���,-N���\0`���','',0,'?'),('o1i�L5���z�$��7','wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u1��\\�8���;#j-','P����|�l�_���Z��3z<NɧK���','',0,'?'),('o2h I$F��]Hb�_1','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fill.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fill.js',0,'CP�W���t��/���','CP�W���t��/���','��\Z�Cc�մ�H��9���Uf�(#*�bq','',0,'?'),('o2okv�1I^�]�5{� ','wp-content/plugins/envira-gallery/assets/images/icons/twitter.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/twitter.svg',0,'��{�����z�5�-��','��{�����z�5�-��','�T�]���\\4�._���¬�+s��1��P�','',0,'?'),('o4��َ�G\\��,�$�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/flatten.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/flatten.js',0,'��<�2�\\�\"��]0�','��<�2�\\�\"��]0�','Dn��S4�R��}tU]�\"H�S�)Ia�0մ','',0,'?'),('o6��~�m��f��4��','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/ssh.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/ssh.js',0,'�;_�����տ�l','�;_�����տ�l','.�o�/Ebt�%�7wq�.P��`:��K��02>,','',0,'?'),('o9X\'V�D���8,�','wp-content/themes/mint/node_modules/clean-css/lib/colors/shortener.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/colors/shortener.js',0,'���$U�y��4&kS','���$U�y��4&kS','�M���JG4̭��Æ��y����k�gܡ��','',0,'?'),('o@���@����A���~','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/update.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/update.js',0,'h�|ѧ��*i���@d','h�|ѧ��*i���@d','��]#����jn���[i��k��2:�a�P','',0,'?'),('oA��(.�p?�3','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/cloneDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/cloneDeep.js',0,'�v�b �We\n�\\h��K','�v�b �We\n�\\h��K','B�m_&N��ؽx(r��~�}u(i$�','',0,'?'),('oB12,��`VTv��A','wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-nc-nd.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-nc-nd.svg',0,'a.�N#\Z���2�L��4','a.�N#\Z���2�L��4','�1��됞�\nh���\r+�&F5�O{�y��L','',0,'?'),('oC>F�{�k��64�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Factories/ConnectTokenProviderFactory.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Factories/ConnectTokenProviderFactory.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8)�ΐ!����[�','��@�|w�F�S:\n�����\"f|lf�;�d �W�','',0,'?'),('oC�\"���Q���t��y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+�����%','�4!��H�:�6>�lE��Ec#���a{�A�{','',0,'?'),('oP�c����o�.�r','wp-includes/js/tinymce/skins/lightgray/img/object.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�rdP�E}u\n/M�A�� ','��#;!��I��.�>�uʍ�SV��m{|�e-','',0,'?'),('oS]�~(��7;�\r�','wp-includes/js/dist/shortcode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E�VGϭ�Te�hꌟ','��f��\Z`[ʟr��~�[ˮ/�L���edK�w','',0,'?'),('oS����+��J�A=�4','wp-content/plugins/wp-migrate-db-pro/class/SetupProviders.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/SetupProviders.php',0,'��JN�ZS���z�ͮn','��JN�ZS���z�ͮn','�21G�/�ZӈE\no�y��Iˤ:�f8�[/]9�','',0,'?'),('oU!E4����V\r��6','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php',0,'������f���f�(�','������f���f�(�','�\nͷhyh��H���a�#�;�S�P=i�','',0,'?'),('oU�/cƍ�,v*\r�','wp-content/plugins/gravityforms/includes/assets/admin-dependencies/class-gf-admin-style-dependencies.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/assets/admin-dependencies/class-gf-admin-style-dependencies.php',0,'�.�n7©�Ghk��','�.�n7©�Ghk��','\ZDI�\'��\\ɱm���Gߧ�?�!���R�L','',0,'?'),('o`� ��u�XV�x��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/PasswordBrokerFactory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/PasswordBrokerFactory.php',0,'�]�ڡ��.�k��\n2��','�]�ڡ��.�k��\n2��','�-���giq�Ui&4��ȯ⎾�2�%\Z U��','',0,'?'),('of�Gk�L����`t@','wp-includes/blocks/cover/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/cover/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D¾��(�3�CYF��A','Rp��ư<{C�.9�ng�`]g����>&�','',0,'?'),('og\Z�E}G�S�;','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/templates/test_section.js.tpl','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/templates/test_section.js.tpl',0,'��z�xA�Y���/','��z�xA�Y���/','�\"�q��O��?�\n�w��ee�}j[ډ�HB','',0,'?'),('ok89�~��nU5�','wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-inclusive-language.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-analysis-inclusive-language.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����|�yz#��y5','�v,Ba�Ї}b�Hf����۞-2��1�7�','',0,'?'),('oo��Æ%(sd�A�','wp-content/plugins/wp-optimize/includes/class-updraft-smush-task.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraft-smush-task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���><�Ax��N�','�;ō�4g�d%aWG�B���I��\\�2lUM�~E','',0,'?'),('oo��O��#$ ��Q','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-footer-118236ae.min.js.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-footer-118236ae.min.js.json',0,'G��0\"��?;�m�{','G��0\"��?;�m�{','{���<�D��s�wd��%ɗV��5���;�{','',0,'?'),('o||�44�#�,\n�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php',0,'9�3��o��-;�+&M','9�3��o��-;�+&M','���5�u͝���\\�EM�DvC�fc]%��\r�g','',0,'?'),('o}�C܊8�E��G�','wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E8��u�ChG<�o܅\"','�TQ��t���ݓ��z�ωT��0��A','',0,'?'),('o�\nH���F3�lN�b\r{','wp-content/themes/mint/node_modules/multimatch/node_modules/minimatch/test/caching.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/multimatch/node_modules/minimatch/test/caching.js',0,'�G�����M��@82�k','�G�����M��@82�k','k�CޅY4u�\\=��F�Օq�~���D�`q','',0,'?'),('o�k4e)3?Q�E�#','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/tools/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/tools/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('o�� ��YN��R�','wp-content/plugins/gravityforms/assets/js/dist/281.bea51499dfdaa7c9b9b2.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/281.bea51499dfdaa7c9b9b2.min.js',0,'E,��ɓ�ZVL��iX�','E,��ɓ�ZVL��iX�','Z�1�m�G��i��]� 4Λ\0��c�֕¢','',0,'?'),('o�{ѱ`�r��<����','wp-content/plugins/wordpress-seo/src/generators/schema/abstract-schema-piece.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generators/schema/abstract-schema-piece.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԩ����4~aw���','�\'f��qٟ�ɋ߈<Ew#�o�������','',0,'?'),('o���� H��ٟ`B ��','wp-content/plugins/wordpress-seo/src/conditionals/user-profile-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/user-profile-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ii�Fc|�+�d�����','�X����/�\"��xMy[ׁ�,�[�\rT��&gh','',0,'?'),('o��䧱l���u��<�6','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/ui/bottom-bar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/ui/bottom-bar.js',0,'q�1Jwzfd���\r','q�1Jwzfd���\r','� ѾUdw-Me�߫s��3k5��s�ALLaΊ','',0,'?'),('o� ǻ� &��c���','wp-includes/blocks/paragraph/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/paragraph/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"a\' b+�0ԙ«��O','�����(w���m¤�b�\Z:���7�=�1��','',0,'?'),('o�{w���IG9���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/complement.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/complement.js',0,'����6���qm�','����6���qm�','w��\Zy��A+��I��b@�1jC:�/�DR���','',0,'?'),('o��ܻZ��d���u���','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php',0,'�Ln,�?8�k܋x�','�Ln,�?8�k܋x�','�L_e�/,W�8��y/~bX�#y�A8wעp~SK�','',0,'?'),('o�}�u=5�P�I� �','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/xup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/xup.js',0,'c�t�����[1�w','c�t�����[1�w','��/�d�KP�v֓�S8���f�D�d>�','',0,'?'),('o�w*�\nΛGҜ�]','wp-content/plugins/wordfence/modules/login-security/img/header.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/img/header.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p����]�j-����','8�����#̄(8��O�\"� +h\"Fb��','',0,'?'),('o�m/TteՍڕ��`}�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/sortBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/sortBy.js',0,'d_�����o�{):�','d_�����o�{):�','�\r��c���o���,��ݴE��ń�]P�)�','',0,'?'),('oʼ<�E�#��{]','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/throttle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/throttle.js',0,'��%&���0ǟ�6','��%&���0ǟ�6','�=� j�y��f��;�pCP�4d\" ��{���','',0,'?'),('o��ZJ&,�Z�J�\na','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ڵ��$���W���','Ѓ��y����`I_�I$sG\"aEoTJX��K','',0,'?'),('o�8���y���{�C�','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/x509-pem.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/x509-pem.js',0,'���\\�K�.~�3�\"','���\\�K�.~�3�\"','9L�F�\"\" �p������?�90qL�T\nҽ-�','',0,'?'),('o�IU�[����uY��:','wp-content/themes/twentytwentyfive/patterns/hidden-search.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/hidden-search.php',0,']%�HH��9c���KxW',']%�HH��9c���KxW','����f�?��0���M���`�vƗ�\"n','',0,'?'),('o�q�]�Y�����W�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isNull.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isNull.js',0,'�0I��;^��[��8C��','�0I��;^��[��8C��','w�H����:hr�o1 c\\4_CL�A��\\Cy8�','',0,'?'),('o�V�=�c��]���','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/phpdoc-reader/src/PhpDocReader/AnnotationException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/phpdoc-reader/src/PhpDocReader/AnnotationException.php',0,'����9�Vp����','����9�Vp����','ȬR��B���v�c4�bC�Ѿ�J�1���C','',0,'?'),('oڑ��=�W�&�.','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/map.js',0,'�ex���>t���','�ex���>t���','��!l[�B=gL5}��D��<��τ�}%�\n]','',0,'?'),('o�v����.5��R.k;+','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�uN��|�*;�j�|���','ƣ�d�p���5:�l`�DS�YY��jm8�+��','',0,'?'),('o��#����H��A�','wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/hybi_parser/handshake.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/hybi_parser/handshake.js',0,']�f�R e�kR>��',']�f�R e�kR>��','���TK�G,�ˑG��,��x)@�\ZE\'�e','',0,'?'),('o��L�\'N���9�`�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number.js',0,'�\'Q���OТ��h�y','�\'Q���OТ��h�y','2��6`߽I�$��Xj?O~�e=�O>��\'k(','',0,'?'),('o㮚-�;?X:��pҡ','wp-trackback.php','/home/adaptiv2/juiceelectrical.co.nz/wp-trackback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9}`�#��P��\nk�','����UV 1k-L�.>�ݨ��3#z��3����j','',0,'?'),('o��_��C���T��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/math.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/math.js',0,'��_������M*���','��_������M*���','?����h�fLTP���Ki�¹���[�9WQ�$n�','',0,'?'),('o���Y��څ��X�','wp-content/plugins/wordfence/images/flags.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/flags.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W7� ��(�˿!�\Z7�','Bx�0%Ly�6���!��X\\z/<�n�6=\ZW�','',0,'?'),('o�[��n3u��ʹ�P5','wp-admin/options-general.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/options-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>�t�LW&6�','r����S��绕x��C�$Sz�8���B�{\\�','',0,'?'),('o�R�:o�+5qpi`7','wp-content/themes/mint/node_modules/tough-cookie/lib/store.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tough-cookie/lib/store.js',0,'�m|�s\\e b����','�m|�s\\e b����','}M1��T�Ϟ\nK��B7��4�����V�B','',0,'?'),('o�ώ2���Ǿ� ��U','wp-content/themes/mint/node_modules/core-util-is/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/core-util-is/test.js',0,'J��/Z�ٱ@@ �Q��','J��/Z�ٱ@@ �Q��','8K��\\��A�\"����������\Z�xgV�B�','',0,'?'),('o����g\Zb[','wp-content/plugins/wp-migrate-db-pro/template/pro/block-external-warning.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/template/pro/block-external-warning.php',0,'�Z��̯��ҋS��hq','�Z��̯��ҋS��hq','!\r��H×7����7�)>���):�8`\\','',0,'?'); INSERT INTO `wp_wffilemods` VALUES ('o��:� N���&�f','wp-content/themes/mint/node_modules/pinkie-promise/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pinkie-promise/index.js',0,'jՏ� ��O\0/Y0','jՏ� ��O\0/Y0','H�H�?�})<FC�Hj-i���)wi��<�@��','',0,'?'),('o�^�)e��k�~s�m�','wp-content/plugins/wp-optimize/images/notices/minify-video-preview.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/minify-video-preview.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m�oY����t�p�','\rX+ Z�����b��P�gM�S��GC�N','',0,'?'),('o����Yƽpec&D+�','wp-content/themes/mint/assets/img/tagline.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/img/tagline.svg',0,'����ةO�Xbk��','����ةO�Xbk��','K|X���4 �d���*�,x�My�ء�|̯5','',0,'?'),('p��7u�L�_{2Û�','wp-includes/js/jquery/ui/draggable.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/draggable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZA����[\"�r�r3�C�','5s��ɦ�^�����M�~t$2��{��\\','',0,'?'),('p# �o�5*6&�6','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/home-battery-storage-is-it-the-best-option-for-your-household/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/home-battery-storage-is-it-the-best-option-for-your-household/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('px�� ��','wp-content/cache/wpo-minify/tmp/js-7aed2f93.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-7aed2f93.js.transient',0,'7�����s���~ڴ','7�����s���~ڴ','\\N�>=o�]����1��LJe�m���U\"A�ir��','',0,'?'),('p �����l����','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/HelperSet.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/HelperSet.php',0,'�}H1�v�h�s�q�z[','�}H1�v�h�s�q�z[','r�����!7��7�R_�Y�O��e�C\nu�����','',0,'?'),('pH���>\\�\n�����','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/TableTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/TableTest.php',0,';��#���Ʌ_p���Y',';��#���Ʌ_p���Y','zr�>�b&�9q}��w��ٞOc}�҂/��','',0,'?'),('p��t@��C�F','wp-includes/blocks/template-part/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/template-part/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���E�d]ĬB\r ��','ģ�6o�_i9�-UL9#ܞf�z%c�S���Js�','',0,'?'),('p{\r�� �%>/�Z��:','wp-content/plugins/wordfence/views/scanner/issue-base.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8ϼ��g� v5�aS�*','N��.��0�-?s��?��,��ߟ�`�.B','',0,'?'),('p��0��ћ���*�6','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/readme.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/readme.js',0,'L�m۫��r�!��f�','L�m۫��r�!��f�','��[�AX�;��i��՜x�~=g�$����\"�\r','',0,'?'),('p$`g�k���V�PF','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/nested.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/nested.js',0,'�ym����T���','�ym����T���','s�P�0��@�G\Z�����pr�!r�+7n�\0�','',0,'?'),('p\'A�\\Z�I{�B=��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/reject.js',0,'2�\ZBOj�_��Ӈ~�','2�\ZBOj�_��Ӈ~�','�%x9��sh�q�Pj&(���7Fݎ~����','',0,'?'),('p+~�(�`���_�n�h','wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ڠ���r�Jx��aY','6�wZ��y\"�pq���U��Qx�21W�Y ','',0,'?'),('p6�Y�R��\Z�5��','wp-content/themes/twentytwentyfive/patterns/template-single-offset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-single-offset.php',0,'@Oo��\Zir�Ҵ�EA]','@Oo��\Zir�Ҵ�EA]','�`���}��9�ݻr?�~H;�$!8ǝ��_ST�D6','',0,'?'),('p:!��v��Ep�/�','wp-content/themes/mint/node_modules/bower/lib/node_modules/end-of-stream/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/end-of-stream/test.js',0,'���Q@q\\a1t_�Ĕ�','���Q@q\\a1t_�Ĕ�','�6��j\"�������(�)n�\0��̉��w','',0,'?'),('p:�,�`OlL�(�A','wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�~�H���7�<�B��','\0!�F�E���KP��7�0��\n;6�}��$','',0,'?'),('pH��,VS[��ՠ_','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/fa.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/fa.php',0,'-Ĺ�N\\NxkLB}hP','-Ĺ�N\\NxkLB}hP',' ����\Z��\Z�8�@�M�ؐ�\Z�s ~��R�qa','',0,'?'),('pM���b���VZ��;','wp-includes/blocks/media-text.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/media-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X��M6�|�~dz��','��Kn�:7��Y������$ÓRӆ�5�','',0,'?'),('pQС�B�R����s+�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/DB.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/DB.php',0,'h\0\0�.`n$]���g','h\0\0�.`n$]���g','AdAed��;�܆��a�@�p�J���@�V��g','',0,'?'),('pRjn��ԃ�;w���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePickBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePickBy.js',0,' �]Ą����H�E��ܭ',' �]Ą����H�E��ܭ','��冼[*z6X��L{{P���sZ~4~�g,��','',0,'?'),('pTv�j�-<.�_Q<��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue48.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue48.js',0,' ������rFQ',' ������rFQ','�Ձg���M�����č!�?-�=6��ex','',0,'?'),('pU?%G\Z�J���X=`','wp-content/plugins/wordpress-seo/src/actions/indexing/limited-indexing-action-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/limited-indexing-action-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_4�[��_����','$��LT��\\B\"�1.t\0�`�8Pg>>��,Z�i','',0,'?'),('pUy�a �b��va�;�8','wp-includes/js/comment-reply.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/comment-reply.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U08�\n[Ƈ�L�f\Z@','!OW,`#����w��=�r�[���|���ҧN!5','',0,'?'),('pXIG�a�� ,!h�F�$','wp-content/themes/mint/assets/vendor/jquery/src/var/concat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/var/concat.js',0,'$m�7��c]���+t�','$m�7��c]���+t�','�n��M�+�!�W��X;ӻ��!��:�','',0,'?'),('p\\�ϭ��G�D6','wp-content/plugins/gravityforms/includes/honeypot/config/class-gf-honeypot-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/honeypot/config/class-gf-honeypot-config.php',0,'����\Z �,#���^','����\Z �,#���^','��\\q��<�I ��}]�퉶N�tg�8s�\Z_','',0,'?'),('p^[y���\Z �ʸ\n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/lib/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/lib/utils.js',0,'�y�h�ʾ�t�Qm�y��','�y�h�ʾ�t�Qm�y��','�C�?���/�ӎ�����(E)���;����','',0,'?'),('p`t5ވ�V�]�_oG','wp-content/themes/mint/node_modules/nopt/lib/nopt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/nopt/lib/nopt.js',0,'ݟ\"������5�wK','ݟ\"������5�wK','��p��>�� ��;[�B�K� � \n���\\','',0,'?'),('pb����A]%ꞢSV8�','wp-includes/block-supports/background.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X�ᜫ(R��;�','3�E� �9:�б������i�!R�#�ӣ�Y5�','',0,'?'),('pg���$���8!\0�A\Z','wp-content/themes/mint/node_modules/shelljs/src/pwd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/pwd.js',0,'��J�\0_��v���?','��J�\0_��v���?','g1C�e��5}p_�{f�\r�#��sg�HF�u@�4�','',0,'?'),('pj�sZ--�`���\\FV','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/round.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/round.js',0,'�\\nG�s|�c�����','�\\nG�s|�c�����','� x�s�D�y�@�*��}��6�\0ژ%��ɀ ݄','',0,'?'),('pk�Z�A3~\n��','wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-plugin-inactive-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-plugin-inactive-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�#U���V�O�I�','����P��b��`�5�\0���v\0�뤩�b','',0,'?'),('pmG���#U�\'�lk','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/posls.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/posls.js',0,'�_����W���4\Z�','�_����W���4\Z�','k-��O/�����ٍ��Q�W���&)6 @�','',0,'?'),('pnݱ|�m�X�G�a��','wp-content/themes/mint/node_modules/less/dist/less-1.6.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.6.1.js',0,'\\�&�2.`S�%4�','\\�&�2.`S�%4�','�T7����:�D�R,�W�q����|Q�\0+','',0,'?'),('pqb�\0EUf���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_updateWrapDetails.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_updateWrapDetails.js',0,'���z��p,93�� �','���z��p,93�� �','�~RQY.-i��~�1�9@½\Z���4��{��','',0,'?'),('pry��6I���\".�x!','wp-content/themes/mint/node_modules/noptify/util/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/noptify/util/index.js',0,'m���Z����\"y�\r','m���Z����\"y�\r','�\n�DU��\"���O\n��f�r�`�J#A�<��','',0,'?'),('pw��Q�F�c�ߠb*','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@$�qG�2k5$��z�','ֆF*`�\'�O t�riR:�j0��W\Z�=�j��','',0,'?'),('p{�T��˞\\4o�\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_composeArgsRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_composeArgsRight.js',0,'�D����o�r`�/X','�D����o�r`�/X','y+�r�^0W�CArBH���@�� �\" 3\06�','',0,'?'),('p|\'\r����Q\ny\\��','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/lib/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/lib/async.js',0,'�U�I�\n�W�PY\0�}�','�U�I�\n�W�PY\0�}�','���džcKɲ�P��^�I�l\"\nH��p�K�','',0,'?'),('p}q�U6V���]w�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars.runtime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars.runtime.js',0,'As�0�яNl2$H5�','As�0�яNl2$H5�','`i_�E�~O����0m$�$k��ɩ�{�Ph��','',0,'?'),('p��\r%�/bC2�\r�^Z�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Traits/Macroable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Traits/Macroable.php',0,'�eh�^�m�shvCB�','�eh�^�m�shvCB�','�\"�\n��:�k�M=���@)e��7Pk�D���H','',0,'?'),('p��\'�����V�hO�','wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-nc.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-nc.svg',0,'��Bg!}��$��ߋU','��Bg!}��$��ߋU','�&\'j�o ����2O�h�i�\'�?ؗ��Zf','',0,'?'),('p�\\\'�3���~��','wp-content/plugins/gravityforms/includes/fields/class-gf-field-image-choice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-image-choice.php',0,'ϗ�?�>��]\rXu�g�l','ϗ�?�>��]\rXu�g�l','&�N�{��E[Bi�%���\'aO�Д,�ޢNq','',0,'?'),('p���?�~�����','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ori���c�*�','�`}!3��_]H��6���Mz�q�qG=�0lg','',0,'?'),('p��.а��[ÍD�','wp-includes/deprecated.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Uz�&�R��S2#ed','�����#���e�Ĩ�ͤfR[��_�vh��','',0,'?'),('p�ӀqF$O�k��\0','wp-content/plugins/gravityforms/includes/query/class-gf-query-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/query/class-gf-query-service-provider.php',0,'͖�:��Y1E\r�`���x','͖�:��Y1E\r�`���x','���7쯭Õy_�S���ǏdK���#�WF�E�','',0,'?'),('p�B���)y]0�C�i','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/lerp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/lerp.js',0,'v~��e�D�-j�\rn2','v~��e�D�-j�\rn2','mA�f�Đ���T���VI1>J��@A���_��','',0,'?'),('p�K�ȋ8�}�����','wp-content/plugins/gravityforms/settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/settings.php',0,'V�B��D�B�\'��Z\0','V�B��D�B�\'��Z\0','�[��&��>ݛx����|w�I��vwywֵ�4�','',0,'?'),('p�.�x~Ԓ�Z�I��','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-relationship.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-relationship.php',0,'{��d7|m`ԇb�','{��d7|m`ԇb�','�%${�(��Py����h%b`[r�O1A|��','',0,'?'),('p�b�K���������','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/union.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/union.js',0,'{���lw�g��1vM','{���lw�g��1vM','�E�kSy,�r1f���4#9��]$�-�m','',0,'?'),('p���3�����g��','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/usage.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/usage.js',0,'�P�$�)���U�','�P�$�)���U�','�$Q���4P�_��aP�x��P��7�eC','',0,'?'),('p���xl}`IS��~�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/floor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/floor.js',0,'��z����Z% �D^�','��z����Z% �D^�','\0�e��H�s�ɚ��~{���i$��g\n��','',0,'?'),('p��ȗ�-��wu��','wp-includes/blocks/post-author-biography/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author-biography/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʂ����nX��\'��\'XU','��\nL]���ZU3 ��&�7��=Z��k^�','',0,'?'),('p�ӝ�I�<�A�Y�','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/error.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/error.js',0,'��q/�=��D1b�S*\0','��q/�=��D1b�S*\0','�����-nK�ϦW_��8�Dr2n\'��!','',0,'?'),('p��\\*e�\n\rψ��','wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�cd�x�W{f��Nb','O��j+hŤ\nⵃ8Qܮ#w��_p�C���','',0,'?'),('pŧ�\n�+R�2Z��b','wp-includes/blocks/post-title/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X�Ѿ�i�XZ�#�','.._�Δ��Z+Q����cҤm�\0UR�Iд}','',0,'?'),('p��]J&D��kKy83','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Session.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Session.php',0,'01����f`mN��<','01����f`mN��<','�߬;Rl-;ό��o�qc���G��0b��y','',0,'?'),('p�j�}��u陉��3','wp-content/themes/twentytwentyfive/patterns/hidden-blog-heading.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/hidden-blog-heading.php',0,'R��C�tJ��,�*','R��C�tJ��,�*','�أHv��}�AVA�jġ�����N>�E��','',0,'?'),('p�r����C���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mime/mime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mime/mime.js',0,'=��Dq7X�An�1���','=��Dq7X�An�1���','��<?\n:KD#�C�L��}�5���&�b','',0,'?'),('p̓0�2@��PF�tk','wp-content/plugins/wordfence/views/common/unsubscribe.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/unsubscribe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y:h3�>��a ݑ�4~','E�q����Tg��O>F-��O�(�IƚZ��z','',0,'?'),('pЄ���0>�3D���','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/lib/process.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/lib/process.js',0,'lv�z��9�9N�R(3','lv�z��9�9N�R(3','�\0��Y��H\0�yA���2���Q!���','',0,'?'),('pӬ�qX\"�%�&�D','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/README.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\"�l���G����3','�L��\rY�h\Z�f�Y�PM�?<�ͼ��h','',0,'?'),('p�:�_\Z�C�,����','wp-content/plugins/wordpress-seo/admin/class-admin-gutenberg-compatibility-notification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-admin-gutenberg-compatibility-notification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_��Aɺ�^�O)�9��','�\Z����e���%��ͣ�]$��[g8�0��','',0,'?'),('p�q�l8Յy�Ս��','wp-content/plugins/wordpress-seo/src/actions/indexing/term-link-indexing-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/term-link-indexing-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�h���a�%���j��','�?�20���e�*)�2�HQ�r�2h�?^','',0,'?'),('p��@If���o�0K��','wp-content/plugins/gravityforms/includes/form-display/block-styles/views/class-confirmation-view.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-display/block-styles/views/class-confirmation-view.php',0,'r��e�q�#r�<��Z','r��e�q�#r�<��Z','���k��J����$��x�i���','',0,'?'),('p�}G��J��$��x','wp-includes/block-supports/align.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/align.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'j��o�y��J�','�^�{L7�\\b��r�;�G�τ�R�;���֒�','',0,'?'),('p��W�/p�6��3D','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php',0,'<��eU��Frw�','<��eU��Frw�','1�-�`�ƻ(�n�2���(��\0�kc��|č','',0,'?'),('p�d�Gsm�����0','wp-content/maintenance/assets/timer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/maintenance/assets/timer.js',0,'I�0�84�Եl\0��F','I�0�84�Եl\0��F','E.��OK���\Z�����=JD�K�5�%','',0,'?'),('p�(�[h�L�Q�S','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sl_SI.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sl_SI.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M�2&�}b#���s','�!�]�)Ѥ��pF�,�>�tK`�^O�t\n�&R','',0,'?'),('p����b�~�oBk�Z','wp-content/plugins/akismet/class.akismet.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/class.akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�L���T�6��d��','0-27�(z�p�7K���C�x�w>t�=X1J','',0,'?'),('p���?��o$VM��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-localAddress.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-localAddress.js',0,'g0ޝ�?M!�ۉ���','g0ޝ�?M!�ۉ���','{��W�I�&|�����2 qil�ҍ�<jR','',0,'?'),('q(p@֗�%�^� ','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php',0,'�Α_ZF}G��BU�','�Α_ZF}G��BU�','����\0v�W��$�T��!͆��&\r5�','',0,'?'),('qqC��$�����@','wp-content/plugins/wordfence/views/common/page-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/page-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5��*�<�X;��','N5%��=�kUHVK�A�lEI\"3�j��','',0,'?'),('qs��A�t���d�\\','wp-includes/js/dist/warning.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/warning.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��|�\n\\P=`��J','��>>-Y��2��IPl6�U�qg\'=�1���','',0,'?'),('q ��+��$�W�','wp-content/plugins/gravityforms/includes/query/class-gf-query-json-literal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/query/class-gf-query-json-literal.php',0,'�Üs)��h�|��>��','�Üs)��h�|��>��',';���}�Oz�I�~�f�7:E�,���\\3�ӏ','',0,'?'),('q�/�y�:#�)9�a','wp-content/themes/mint/node_modules/clean-css/lib/properties/shorthand-compactor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/properties/shorthand-compactor.js',0,',,a=����j�>��|�',',,a=����j�>��|�','����hO�f,f���h��>�F�F&�uUT�=','',0,'?'),('q��A�z�m&`�f�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSlice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSlice.js',0,'��r��v�ͳ\0��','��r��v�ͳ\0��','������E˼�Y��ds�kHy�_`.��\"�g','',0,'?'),('q��l������>�\0','wp-content/plugins/wordpress-seo/src/initializers/initializer-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/initializers/initializer-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���X�M��\n�/��0t�','{��b<�K��1�j�<���ĵi1X��̾','',0,'?'),('q�M�ne{4n��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/is.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/is.js',0,'���e������IE��','���e������IE��','0���5\'�\"WQ�{�ߡ|�>Z�2y�bZ��Q','',0,'?'),('qN+�5�\'�?G��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/conformsTo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/conformsTo.js',0,'�:�cj�����4�','�:�cj�����4�','�Jy�y��l�^�M�J��i�-�^�?4U','',0,'?'),('q\"�co���>�2Rh�]','wp-admin/includes/plugin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����~\\��=�H�x','�>��q�<0�}3XFİ���V�ˁ�/�','',0,'?'),('q%��)���ud��� �','wp-includes/blocks/buttons/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/buttons/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���$�p�;X��4䔄','y����(��^ݚ��U=�;�C/_�B�ә��','',0,'?'),('q)4�<�z��; l�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',0,'��إ�g�����]b�','��إ�g�����]b�','gD>IB9���LI� *����1��16��0�C|','',0,'?'),('q-��e������؉��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/LicenseProvider.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/LicenseProvider.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Cܢ\\tq�8�v5`�','���yU�I��f��Ȗ�w���ů\'�>^%�','',0,'?'),('q1�HamH Q&pR-^D�','wp-includes/blocks/image/theme.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','djvY#vc|/?�d','�H�7��%��:�����6x�:?ߕ���d�>E','',0,'?'),('q5��Z! \n0��s��','wp-content/themes/mint/node_modules/cli/node_modules/minimatch/test/brace-expand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/minimatch/test/brace-expand.js',0,'�jM��9MVI\"J7y[','�jM��9MVI\"J7y[','U�P2�J��@Ӎ��>]�#�_;&��k��w��','',0,'?'),('q6�9�y{������L','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/value.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/value.js',0,';��r����1+�v�',';��r����1+�v�','�_.�I&��!�5��?��HIL{�)��Zїk','',0,'?'),('q?K�AF�z��B�9\\�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/times.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/times.js',0,'�GZ���7���','�GZ���7���','.��Jw$G��5S���-֠�ׄ+@Q�Hz�B','',0,'?'),('qL���I�Lc�','wp-includes/class-wp-recovery-mode-link-service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-recovery-mode-link-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z��BW���Z � m\r\0','t\n��_qGƵ�b�����y}�2+\0�I��','',0,'?'),('qNg)ߨϑm����','wp-content/themes/mint/node_modules/bower/lib/node_modules/forever-agent/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/forever-agent/index.js',0,'Ã�r{#8(B�\"[','Ã�r{#8(B�\"[','\'z@�%5J�>u��,�Ծe�\\�N��=�ew��','',0,'?'),('q[A��O!���','wp-content/plugins/gravityforms/includes/fields/class-gf-fields.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-fields.php',0,'��&c�]���Dj�T','��&c�]���Dj�T','\n��y��H\ZVDz�x. �D������RjP�Q�','',0,'?'),('q\\����\"�J���Z�','wp-content/themes/mint/templates/content-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/content-page.php',0,'�P=ڗz�q��V�','�P=ڗz�q��V�','��C�A}��q= �፼C��l\\��8�EL�J-','',0,'?'),('q_�7�\n���~��G�','wp-content/themes/mint/node_modules/loud-rejection/register.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/loud-rejection/register.js',0,'sH������E4ߐ�\0L','sH������E4ߐ�\0L','?J&�Х���4��s)�ɱ=�����r�@|','',0,'?'),('qc��_���Ҳۯ�+','wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-category-quick-edit-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/primary-category-quick-edit-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v$�*:$:aB/ց9:X','��ڍD�.pDcw�.A쐬W�9:\"] W��ۭ','',0,'?'),('qh�665�y|�=�?S ','wp-includes/js/jquery/jquery.serialize-object.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery.serialize-object.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�D�B\ru�6����!','��`�RԶ�2ɀ�`��Mx��i�G�fz�C2�','',0,'?'),('qj��O.C�ެИ}��','wp-includes/blocks/navigation-submenu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-submenu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z4;�/]���\0�C`m','r�����z��l�a!:� �ù��S.t���','',0,'?'),('qk������9ŰupEx�','wp-content/plugins/wp-optimize/templates/database/optimizations-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/database/optimizations-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�}k+Gr�x�YygO','Gm~u�,�\nk�ʋ)��3n|��r1�7u�','',0,'?'),('qp&m�&H)���Tuf','wp-content/plugins/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php',0,'��Yt\n�X��rYV�.','��Yt\n�X��rYV�.','�0U7O��O��.m����7�A��6��tM','',0,'?'),('q{�0x�pG��tW?h�K','wp-content/plugins/envira-gallery/src/Admin/Posttype.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Posttype.php',0,'rM����Î�4��','rM����Î�4��','�2��V�vD����.��~�zs�H���d\rjl','',0,'?'),('q��ѩP�6�����E','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('q��\\o�Y�a\"V��/x','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/forEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/forEach.js',0,'^�2;^\r.jnz$\\.�C','^�2;^\r.jnz$\\.�C','W�U�J�_��<\r[^���B��T$�M��^','',0,'?'),('q��f���EH�7�d�','wp-includes/css/dist/editor/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/editor/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eu&ޖ�p)�h@�uA','�/����}��w�m)�p�,˖�^+tD�}�','',0,'?'),('q��K��6��G��z���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/InlineCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/InlineCommentSniff.php',0,'��R�sU:�\'o�`{a��','��R�sU:�\'o�`{a��','D�:lf�P\r�>j)c�<���y*8����X��','',0,'?'),('q� �F7�6�*�T�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php',0,'UR)��}�g)v���Ws','UR)��}�g)v���Ws','�QT���@�k�������\"�!�9C����a','',0,'?'),('q�s���ƞ�ù��','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5F%G���O��','�c&���XRk�\0�}�C�ɀ�?4�\Z�2 /O','',0,'?'),('q��\rl8�k�ӆiH','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/exception.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/exception.js',0,'�����j��8��\0+','�����j��8��\0+','8 ,������rNЫQ��lwLhO/�r�','',0,'?'),('q��]���o���Ĉ�6)','wp-content/themes/mint/node_modules/domutils/test/tests/helpers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/test/tests/helpers.js',0,'�>aԷǣ^;�Y^L�','�>aԷǣ^;�Y^L�','^_8 ��A��do~�UU]��#�<��ޫ?\'t�O','',0,'?'),('q��OQv�x�Ƃ�b','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/round.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/round.js',0,'ޞ�1�1s�g��yqp�','ޞ�1�1s�g��yqp�','M�N�O0�$٩��֭������yul���','',0,'?'),('q��.��Gu�$','wp-includes/blocks/comment-date/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-date/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\0�8/�>Y��F','�½2}��8ez�F�>X�:�f�\0Y�\"�M�ꄴ','',0,'?'),('q���7�і��3L�CLE','wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/index.js',0,'�4�f#��x�1�s����','�4�f#��x�1�s����',']x��|��@���<�;ź\" �)i�Ҝ','',0,'?'),('q��Z�\0=s�\r��\r�','wp-includes/blocks/text-columns/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/text-columns/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�¦ax�:��`]\'^�','�e±�Q�n�S��0>,�i(tHUn�Z�)�K','',0,'?'),('q����R+�q�\Z�2�','wp-includes/js/dist/edit-post.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ڦm�_b�����T�','�̰�cd[�Db0������0�=v D���RƏx','',0,'?'),('q�~����A�͏�e�','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library-template-library-flyout.0735b47aa3b48c626b48.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.template-library-template-library-flyout.0735b47aa3b48c626b48.min.js',0,'�,Fdq�E��G�Q�y','�,Fdq�E��G�Q�y','S.�&���VU�4j27&�3�2�4מ�t','',0,'?'),('q���C�7�.�ƨ)P�','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-typedarray/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-typedarray/index.js',0,'�����;A�\'�PI�','�����;A�\'�PI�','��`e���2�����>M��}�\\��h��T(','',0,'?'),('q��8JĤH��wpU','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFileException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFileException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_Z��{C�0w(���-','dO�눞�]�����bb>$6��-�?�Z��+','',0,'?'),('q��0#�$�/��qh\n','wp-content/plugins/wordpress-seo/src/helpers/wincher-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/wincher-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W}��4v�������@','沠����ܨt�[�Y��g�x�����\n','',0,'?'),('q�0���������5','wp-includes/sodium_compat/src/Core32/SipHash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5O&?��E� ��%','^%%�hT��,�����k2�Ȯn=n%:��','',0,'?'),('q��E��v��{�Z���[','wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q~�f��������\"�','p,�-�gW���Ԏ��W��.c�E����M','',0,'?'),('q��5@�*=�&��\\X�','wp-content/plugins/wordfence/lib/wfHelperBin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfHelperBin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';��!�ȍ��4Q��X#','��չ%-�^�q��U�q�M��eY���','',0,'?'),('q�j/�:*E����','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/runtime.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/runtime.js',0,'�o������Ŷ���_','�o������Ŷ���_','�K�I�I��U��\'nm�\Z�N��-�O�6�d','',0,'?'),('q�$\'6�e��-W]','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ث������v���','��h���G8J4\"G`���ǖ���MD��z','',0,'?'),('q�C�IV�g�e�,1�','wp-includes/css/dist/block-library/editor-elements.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/editor-elements.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���c|�$\0��{�o��','$�2iQf���~�\'�:�Sr��4:�����A�>','',0,'?'),('q�JƬ���/)�^���','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/visitor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/visitor.js',0,'!�(�?l:й����','!�(�?l:й����','�6��R�R������g��z����w�ͺET�','',0,'?'),('q�O���{�Csb��d[','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/BladeCompiler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/BladeCompiler.php',0,'S@,��O>���\Z��','S@,��O>���\Z��','�6\'IS�PE��E8�/� _�*���3_�','',0,'?'),('q��i֬y�d���+O\'','wp-includes/css/dist/commands/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/commands/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�qn$Ӌ�(|��=��','DS���n!��P ��a�5����9`+v','',0,'?'),('q�Y�������rҖ��','wp-content/themes/mint/node_modules/domutils/test/tests/legacy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/test/tests/legacy.js',0,'Eg=CQ}�֗]0�Hv�','Eg=CQ}�֗]0�Hv�','�����I]4]�����*:*lf V̏,���V','',0,'?'),('q���h�\0\'v\"1�k�','wp-includes/blocks/comment-author-name/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-author-name/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x�9\r�p\r���8K','��|�ާBOCo�i�7��7�=�_!��]Б��','',0,'?'),('rϚ�X�v��u�+','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/randInt.js',0,'�u����wKH���w�','�u����wKH���w�','g5A�\"�-�Y�kp�Q�\0<A,�|k���','',0,'?'),('r\n���O�Jo�5�D','wp-content/themes/mint/node_modules/underscore.string/test/underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/underscore.js',0,'@{)���\\;�Í�m','@{)���\\;�Í�m','\'������m�d�Ts��m喣�5����4V�','',0,'?'),('r��h��v��Lk/��','wp-admin/network/upgrade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�1��hw��3u','o#|�V5�:�P��L\'�|q��|�5�9..�T9','',0,'?'),('r�-b)K�����','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDeclarationSniff.php',0,'&�I8��4�p#��b�','&�I8��4�p#��b�','\0���\n�՚�j�M45R�e����Z�D�jxqPe','',0,'?'),('r|�3c�=�i q','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/need-air-con/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/need-air-con/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('rX�Tx&�vst��\'�','wp-content/plugins/wordpress-seo/images/academy/ai_for_seo_icon_my_yoast.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/ai_for_seo_icon_my_yoast.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕT�3�?��Pڈ\0]�','ԁ�\Z�ᇺ�z\\)�QԊ1�+ͅ�֜�����','',0,'?'),('r���\"��%1�}/2Y�','wp-includes/blocks/pullquote/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ei\\��uEm�^����a','�R*U28�R�!�E�h�{ ���\n�=�','',0,'?'),('r����G���>�e|g','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/split.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/split.js',0,'�<2&����[U�Y�','�<2&����[U�Y�','~s�,YM��?-P)��,5ߍc���T','',0,'?'),('rt5Z0���P\\��~','wp-content/plugins/wordpress-seo/admin/class-product-upsell-notice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-product-upsell-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>���?�����w���','�u�5lG���2]�g��zB�\"\\�6QHf��;�','',0,'?'),('r.*�G��q�=\'/_�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/View/Factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/View/Factory.php',0,'wH�Oe|����~PX�','wH�Oe|����~PX�','�p�. �9��X�x�\Z�m���5B��;','',0,'?'),('r5%q�팇/!�(�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/merge.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/merge.js',0,'cƢ\'���2�`1ƕ�','cƢ\'���2�`1ƕ�','���V�*H����mj�[j����Mf+c�*�M�t�','',0,'?'),('r\"�h~�p���7\\','wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/hashchange.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/hashchange.html',0,'Ơ��Ӭ�,�OyZ�','Ơ��Ӭ�,�OyZ�','�Ω��f��$��q��E&�?M=R g.Co-8','',0,'?'),('r(Xvk�.�Cyg2xq�','wp-content/themes/mint/node_modules/faye-websocket/examples/ws.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/examples/ws.html',0,'Ob��J;ؾ�8#<�S��','Ob��J;ؾ�8#<�S��','G4�F,\"�m�\n�����\Z��8UJ�!|�-','',0,'?'),('r+zk;� 4��WI','wp-includes/js/tinymce/themes/modern/theme.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/themes/modern/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(3�o�U�2ŝU�2�','�2.�pt�\"r�`)��\r.C�l�\\\Z��BIX','',0,'?'),('r-�χ��Y{O�','wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',0,'f\n}�6}�CL^��c�B','f\n}�6}�CL^��c�B','�v#mOk�\"hC��!7x�ޛT���\'���ċ!�','',0,'?'),('r1�9aN���$U���M\\','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/map.js',0,'5D��ͶNx\'{R��','5D��ͶNx\'{R��','ֳ�#|�ٝ�CA���|�\0Cm���c_��3�','',0,'?'),('r3\0��=��\r�jB�Z','wp-includes/js/dist/widgets.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':1����4�\0��W�Ay','Z��>+��%�d\0d�>���c�:@FU4�5j��߈','',0,'?'),('r5��B�pW�lo�Rn\\t','wp-content/themes/mint/node_modules/bower/lib/node_modules/node-uuid/uuid.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/node-uuid/uuid.js',0,'�x0��j��p��t','�x0��j��p��t','��p�����ݨL��q 4��%&K~�','',0,'?'),('r7����%G��ɤ��','wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-cache-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-cache-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)�&�����ӥ�','����h�~���2��\Z��l��e���Hqcx','',0,'?'),('r<;���\"����8','wp-content/themes/mint/node_modules/request/lib/debug.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/request/lib/debug.js',0,'®�\Z��8N?�H��O','®�\Z��8N?�H��O','��w��E8}U�\'�t;$�h�#��T��h','',0,'?'),('rA�p�,c������','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/check-circular.02c190e9.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/check-circular.02c190e9.svg',0,'����E�~l����','����E�~l����','cK�{�<?���\0U\'\\7\"�.l��un���a�','',0,'?'),('rF�^,\r��/��#��','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/a-download.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/a-download.js',0,'W[����!%HGǐ','W[����!%HGǐ','�G��������Y.K��ߥ��\r!�V���Rn','',0,'?'),('rG6#?���ߑA�kT','wp-content/plugins/wp-optimize/images/features/displays-database-table-sta.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/displays-database-table-sta.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����-j7��εԂ','����g��0n�=��{�-�����+hgmf��[','',0,'?'),('rI\0yg�E!���2\0C','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ļ� 0��ͱ�\Z4[�','�a��?\'�J%;�Nį9�l�\\t߰�|X��','',0,'?'),('rN��w����\n\"H','wp-content/themes/mint/node_modules/noptify/test/commandable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/noptify/test/commandable.js',0,'Ņ��L�u#�j�M','Ņ��L�u#�j�M','�Y�W\"e�*E�����<Zʜ��M�v�5�','',0,'?'),('rc��8�_�Cw��V��','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6�[W��r_�r�p','s�-��k�n�)��%G+b�͏���1�+!��','',0,'?'),('rd�Y�-��~�\">~','wp-content/themes/mint/node_modules/bower/lib/node_modules/touch/node_modules/nopt/lib/nopt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/touch/node_modules/nopt/lib/nopt.js',0,'ݟ\"������5�wK','ݟ\"������5�wK','��p��>�� ��;[�B�K� � \n���\\','',0,'?'),('reE�]Jx���ʷO�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isArrayLikeObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isArrayLikeObject.js',0,'�A���\"w�!BA͌0�','�A���\"w�!BA͌0�','q�ɖE@����HD�{��2�1̡e��+\"�','',0,'?'),('rn�u2˻3Θ\0xgxO�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/quick-start.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/quick-start.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q~M�`���|r��J�','�>yʬ��Kct��!��\\��L��h�H��','',0,'?'),('rt�Ig[��;���?','wp-includes/sodium_compat/namespaced/Core/Salsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rV�N�ck0�}/�Ճ�','n�K��kZ�� ���� N$ � EК���e�$','',0,'?'),('rv��lVҧmR��dg','wp-content/themes/mint/node_modules/pako/lib/zlib/inffast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/zlib/inffast.js',0,'z�Ym\nv���v��J','z�Ym\nv���v��J',';��i�E���=��xxnPr.q+R��ln�QC)O','',0,'?'),('rz��<��_���*��','wp-content/plugins/wp-migrate-db-pro/class/WPMigrateDB.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/WPMigrateDB.php',0,'���]e+7x�롖��I','���]e+7x�롖��I','�X�T�\\XX�Gc8h�~\nP��ک.�n b','',0,'?'),('r}q��2�u��z�5�','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\07J줳\n�F�2\\xFu','�B�%;�ea���O��aW���n<��5','',0,'?'),('r���TgWvފIVLA�J','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/debounce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/debounce.js',0,'�B����Ҹ��䒦�','�B����Ҹ��䒦�','Xq��n?��ɏK�)�����-hL(C84S9!4','',0,'?'),('r���+�-�_�`�._�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/MinApp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/MinApp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� 30U.�t�]�',';���1�:l*��p���PCn�7�owR:��l5','',0,'?'),('r��kn_~�Ql~L�|%','wp-content/themes/mint/node_modules/bower/lib/node_modules/inherits/inherits.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inherits/inherits.js',0,' �a%�bp4��܉,',' �a%�bp4��܉,','2$��,|T�CT��7� 6{��&�EO','',0,'?'),('r�(n՞���j��b\"','wp-admin/js/media.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/media.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/�d���bq�0','�m2���\n�e�����b�+H�HV�g��ꖃ@','',0,'?'),('r�Fj;c�z�G���N��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php',0,'h�Ȱ�L��\'\\ �','h�Ȱ�L��\'\\ �','S��2)�}�63�\0�I��/qL=�&v=\'��#','',0,'?'),('r�H�=$M�I��2�!p�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isMasked.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isMasked.js',0,'cv�D4bs+�ˍ%','cv�D4bs+�ˍ%','g�}$�a���Ȋ8����~�1j|Km]��ԑ','',0,'?'),('r�,-h\'g����\"�.�','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Message.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/Message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E���:ϸx�:�S�','Ѥ���I(\ZI��Cd���9A��2���yL7��','',0,'?'),('r��ܾ�4�zp���ӟ','wp-content/themes/mint/node_modules/getobject/test/namespace_test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/getobject/test/namespace_test.js',0,'��<�\'2Q��gQ�3I�','��<�\'2Q��gQ�3I�',' ؠ%�8ja���e:7��+*n�>���+�','',0,'?'),('r�$W��3�+�Y�]��','wp-content/plugins/wordpress-seo/js/dist/externals/propTypes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/propTypes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㙓�վ���@^��f','ź����]p�����\r�xz��B�-po�F�/!u','',0,'?'),('r���7�jԣ�IR','wp-content/themes/mint/node_modules/bower/lib/node_modules/xtend/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/xtend/test.js',0,'�T�D����ѩ+1�A','�T�D����ѩ+1�A','7c0�Q4J������BU \"�s\Z\0p�L:�','',0,'?'),('r��)�Y��1Gl*��Id','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-url.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-url.php',0,':Ͳmw�zr\\���Ha',':Ͳmw�zr\\���Ha','e�[N$ā�E�Nk�5Q��9[�m\n�_�5','',0,'?'),('r����&E��eD�q','wp-includes/blocks/social-links/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-links/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܀�z+1�X�$���\n','����,1�Z������?�AJ{[��L@L\nX','',0,'?'),('r��a��b�>x���','wp-content/themes/mint/templates/sidebar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/sidebar.php',0,'̗C�[~{��{w ݏ�','̗C�[~{��{w ݏ�','�����QA���x���<��]Z���իY','',0,'?'),('r�Լ�\\�s>ݴ��،','wp-content/plugins/wp-migrate-db-pro/vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php',0,'w�s&)�4?�\\��=3','w�s&)�4?�\\��=3','�m����zK���]Tn��l���U���/�','',0,'?'),('r�>��9)Na�^��4#','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/helpers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/helpers.php',0,'�\n>�?��7N51�','�\n>�?��7N51�','0)3ht��l��[m��Iֱ�vK���8��B;��','',0,'?'),('rƅ~8���zU��S�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/contains.js',0,'eO}{����Knr���','eO}{����Knr���','zزF�ϳ��9��\0n�X|��RNr\\��do�$�','',0,'?'),('r�(�-n��L]ڣ��k','wp-content/themes/mint/node_modules/window-size/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/window-size/index.js',0,'go��P���S�n�.3�.','go��P���S�n�.3�.','6�e4�/$���w5ՐTE诩��V��)�:�','',0,'?'),('r�L˘���\'�Vq�]','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/umask_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/umask_sync.js',0,'\Z�en������Yg','\Z�en������Yg','H��j���,�XgG�3�E]�&�+���jP:','',0,'?'),('r�\"R�����ql6�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/keys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/keys.js',0,'� �BŐ���Tu��','� �BŐ���Tu��','~ ��V�,ꅱjT$\'U��X�Y??9P�','',0,'?'),('r�G\'߮�.C�NX6���','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CacheInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CacheInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�35d�=#\n9���','��\Z�E�p�ny��cHNl��㘕5a%�G�','',0,'?'),('r��nz\0`�]�e�#+t','wp-includes/blocks/comments-pagination-previous/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination-previous/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�nq�6ϟ\\����','\0�e�\'�a ��2��A��=Fd]0���$f*�d@','',0,'?'),('r�=?Yb��f֮4>,','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/source-map-generator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/source-map-generator.js',0,'�K�&�����?[J�','�K�&�����?[J�','���e�2HC d��N�� /�XavΏ��P�b��','',0,'?'),('r�3�e\\��,S�q','wp-includes/class-wp-block-supports.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block-supports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�!{���A����� ','���F���4�Ȩ\r�b}�0Z�Pl�]2�Y','',0,'?'),('r�_�/��HG=�%�<�','wp-includes/images/arrow-pointer-blue-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/arrow-pointer-blue-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%m�rތ]4�9c�','��{&DO�z��A�f�/��gá������A]~�(�','',0,'?'),('r�r�(J�g�(�y�t','wp-includes/js/mce-view.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mce-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��(�a3[����M�z>','�B� ��=<G�c�O��.�η7���)f���','',0,'?'),('r��@G9�+�0A��','wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/cors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/cors.js',0,'euЦH\Z����X���','euЦH\Z����X���','���{T�}Gl\0��%�Y����j��=d^�O���','',0,'?'),('r�]3^d�r4','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/style-scoped.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/style-scoped.js',0,'��.f��*`ciNQ','��.f��*`ciNQ','����q+�p�V&τR=l�e�Bˠ���9=$$�','',0,'?'),('r�[撘��&J��?V\\','wp-content/themes/mint/node_modules/bower/lib/node_modules/dot-prop/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/dot-prop/index.js',0,'�(+8_�q}5k�F','�(+8_�q}5k�F','�U����/6!\r[U/�ޥ˖}[f[�9���\"l','',0,'?'),('r�)�����e�l�','wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�dsX\'\Zq��ݟ��\n�','���o�W.p�*�7MN�|��#ϡ)�Ĭ\r��','',0,'?'),('r��h^���g�=��','wp-includes/blocks/embed/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/embed/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����/��P�\\A8�X�','�0�E��H��C��g\\�,1�m��#�5}�','',0,'?'),('r��<@M/\"\n��1]','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/base64-vlq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/lib/base64-vlq.js',0,'�&r����e$�','�&r����e$�','���lC�?x�G�x+��s\n��s�A�W��V��','',0,'?'),('r��\n��b��#��','wp-admin/css/media-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�\Z��2߈�����y�',')�t7�sk���b 3����FM����8�@','',0,'?'),('r�7��/y*�aڛP] 0','wp-content/plugins/wordfence/views/blocking/blocking-create.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/blocking/blocking-create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�V��F��\'��jno','�\r�K�aT�E�f<MhM��F��(�����4P�','',0,'?'),('r�a�[glj9��sl','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php',0,'R���me2}�ős)��','R���me2}�ős)��','>t�ؚk�˧�Zv����]�*��X�\0g��Vt','',0,'?'),('r�c����s�� ���','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Catalogue/AbstractOperationTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Catalogue/AbstractOperationTest.php',0,'���(�� ^c1@X��','���(�� ^c1@X��','D�\\h�E]/�L\\S|���S�WZ�%����','',0,'?'),('r������*��-(','wp-content/plugins/wordpress-seo/inc/class-my-yoast-api-request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-my-yoast-api-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m6� U�lS�`','��(�¿�������G�\"�-\Z���L�h ��9 ','',0,'?'),('s���3�C\"�0�.��\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/ext-name/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ext-name/index.js',0,'隊! %N�Ǹ`>s','隊! %N�Ǹ`>s','�Җ�^k��R����u��g�p�dr�3�ݽ','',0,'?'),('s\r�#3G=�6� I��','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/_/bin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/_/bin.js',0,'[�n7�#?>��ۃH ','[�n7�#?>��ۃH ','��>�h� `�ȥ4�%W����O3daumvAS','',0,'?'),('s\r�USl����{�','wp-content/themes/mint/node_modules/source-map/lib/source-map/base64-vlq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/lib/source-map/base64-vlq.js',0,'y�hOI�d����wng','y�hOI�d����wng','�C���{�����/l�d����Dt#�s���Z','',0,'?'),('s_�,�ס��#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lockfile/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lockfile/test/basic.js',0,'��PoT�K��A���4','��PoT�K��A���4','���b<ppe6S1p0�a&l?�����S9�z�','',0,'?'),('s�Xh�gt����0','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_PR.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_PR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�؋&TE�f�x�g�A�`','���㟧[k��+ݲ�)R\r���<���k�,','',0,'?'),('s�As�Y����D]','wp-content/plugins/wordfence/views/scanner/options-group-advanced.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/options-group-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��(�_���0tKG`C','&I��Ta�w0^}�uT:��]�F��vB+��','',0,'?'),('s����2cv2�N�b�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padCharsStart.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padCharsStart.js',0,'�C�t��w���L�','�C�t��w���L�','B��w��o�ZAq7@\'�,�\"f���4B�','',0,'?'),('s\Z�Pׅev��BǴ�','wp-content/plugins/wordpress-seo/src/conditionals/no-tool-selected-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/no-tool-selected-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N�Rr�{B���\r��','r��>�G�����6�u$��Y �+5�,2]�','',0,'?'),('s\"��y�l��Бi�T','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/definitions.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/definitions.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�P`��4\n�����zh�','AX)J�4x��(,Z��i՜�L\rI_�*��[�','',0,'?'),('s#{��q�t:,2U`�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/range.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/range.js',0,'^p1���WG+_;�','^p1���WG+_;�','�:+�\0#M~y߲������Oq?DT6H��','',0,'?'),('s$�\n\rn����ߠ!�','wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/test/caching.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/test/caching.js',0,'�G�����M��@82�k','�G�����M��@82�k','k�CޅY4u�\\=��F�Օq�~���D�`q','',0,'?'),('s-9��K��\0:�\Z�]','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/reject.js',0,'5�\Z�Ed� YY�N��','5�\Z�Ed� YY�N��',',�S\n��#����Ҍ��[y%\Z�&��sR�','',0,'?'),('s-�J6�|�K+�����','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-export-database.52b56dcc.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-export-database.52b56dcc.svg',0,'ap���4�E0����','ap���4�E0����','��4�;����e�s∄�$i��3w���;c','',0,'?'),('s4��&�\n�t��JL�','wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-image.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-image.php',0,'�,�\r0t��{1%�Q','�,�\r0t��{1%�Q','a�\0ᇸ�̑n��%ں=�߰�h��|3CQ��','',0,'?'),('s8����\'q���zgP�c','wp-content/plugins/wp-reviews-plugin-for-google/include/feature-request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/include/feature-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q>��B�䔫��鏠3','��C�6� ����V���?c��4�x�������Z','',0,'?'),('s<BB(v���ЇR!','wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/README.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0x�Ӊ����','�ۡ����m���D�R\Z�LN�#�\0G��','',0,'?'),('s?`4��4���N�','wp-content/plugins/envira-gallery/src/Admin/Addons.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Addons.php',0,'��6S�#��)ҏļy^','��6S�#��)ҏļy^','��ΪȾ���\0G����*�(hѥ��4�\'({','',0,'?'),('sD������I6��|U�_','wp-includes/blocks/post-template/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-template/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KkD�\'��2����','�E�2찁;+i_����B��;l*.��B�','',0,'?'),('sEK��\n�᧱K��','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/workers-sharedworkers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/workers-sharedworkers.js',0,'��~�¾.���Ç(H�','��~�¾.���Ç(H�','��浨eZ/��������q�%=+����\n4`t','',0,'?'),('sLc��F���;�p','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/reduceRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/reduceRight.js',0,'��熹�a{�w�O���','��熹�a{�w�O���','Լ��q�\"\n��i��oj���.�z6E 8\r��','',0,'?'),('sL�Y���C��a�','wp-includes/blocks/embed/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/embed/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\�\"m�]��@���C��','*�ē�#FϚ\0j���k�����5h�5�ݢ��<��','',0,'?'),('sN�>�ۻ5O9�� W!x','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Redirect.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Redirect.php',0,'�0sz8\n�#�R�|\ZZ','�0sz8\n�#�R�|\ZZ','0�]�]j�J�*}g���\0�m��n�z��k��','',0,'?'),('sS�D��>�\"��ἱ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/proxy-writer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/proxy-writer.js',0,'^dŦNAmTݾ�*U��D','^dŦNAmTݾ�*U��D','oS�1���{=�pm ��rҐ�e�b�E��[','',0,'?'),('s`��y_�r���a2_','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-logger/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-logger/test/test.js',0,'.>�k��)Y@aN��','.>�k��)Y@aN��','\Z�F�7�[�efq�q�o:���J\0nј(���S�=','',0,'?'),('saO�Y�,~r�൭k�','wp-includes/blocks/search/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/search/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��P�M���8�;�q�','tzF�\ZV$!����f���&d7XL�3�<��','',0,'?'),('sg��Դ\"�z�@�h��','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/question.c7be2b1a.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/question.c7be2b1a.svg',0,'����sԕ:pf+�Z�H�','����sԕ:pf+�Z�H�','2 Ǒ�\nn�˅�(%d�oS�\\�z�7�&','',0,'?'),('sjL$1��Hz����','wp-content/themes/mint/node_modules/jshint/src/jshint.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/jshint.js',0,'UCմ9�C�L�@�j�','UCմ9�C�L�@�j�','7Pz�m�d�-Oɱ_0ƶe���\0�\n����','',0,'?'),('skY`7�QBj����B,�','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/stubs/Foundation/scripts/autoload/_foundation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/stubs/Foundation/scripts/autoload/_foundation.js',0,':+r3�^��~�sٯ:',':+r3�^��~�sٯ:',',��F��\"���@�KB����a����G�','',0,'?'),('s�u�\n�6�K����>','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-import.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-import.svg',0,'�tȬ�x��t3{�0�','�tȬ�x��t3{�0�','�\\�g���[U\0��߲�)Rˆ��Y�7K���JM','',0,'?'),('s���h���\r��?b0$�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/NoSeekStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/NoSeekStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>;Cǐ�^3��L��Yl','����l��&*��Z��צ�c��b�3_','',0,'?'),('s�>,�\'\n��c�2<�Y�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/mk.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/mk.php',0,'Z!ݿ�3m�|܌','Z!ݿ�3m�|܌','҃�b3$.��/�ψ�kƍQ$W�c�P=2s','',0,'?'),('s���O�K�,m0�z3','wp-content/themes/mint/node_modules/bower/lib/node_modules/graceful-fs/polyfills.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/graceful-fs/polyfills.js',0,'�\'I�I��qg`�� ��','�\'I�I��qg`�� ��','�r�!��[ݛ�[-�q�q(��U�c8��^�','',0,'?'),('s��K,f���\\��','wp-content/plugins/wordpress-seo/admin/services/class-file-size.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/services/class-file-size.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l [_�=oK��F#;','x_vw���?r~���x?�}�p��n��TI7k','',0,'?'),('s�xeM��K$��O,2Lp','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/match.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/match.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����z���tJ�x�','r��lX !�7�W\0��#��L��u��r�S�t�k�','',0,'?'),('s�U+\Z�.��0%\"�','wp-content/plugins/wp-migrate-db-pro/class/Pro/UsageTracking.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/UsageTracking.php',0,'�)0y�a�Y�E�{','�)0y�a�Y�E�{','t�Q���,o�dX��?��,o)�n=09X!b��','',0,'?'),('s�pӧT��].���<M','wp-content/plugins/gravityforms/includes/config/items/class-gf-config-i18n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/config/items/class-gf-config-i18n.php',0,'\0;Aӹ�O��� �*�','\0;Aӹ�O��� �*�','��@}��w����I\n,�s�����v�g��','',0,'?'),('s��ӣJ���~��k','wp-content/plugins/akismet/views/stats.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/views/stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^=-��m��Ww�xgPO',' .-��[\r�W��y\n���%�B�n�Qb�B�w','',0,'?'),('s���rK[14f\0�jS�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/ConsoleOutputInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/ConsoleOutputInterface.php',0,'�qڄ� ���`q�#��','�qڄ� ���`q�#��','5᪦�~�ori=�q�JsP<n\\\Z9���M','',0,'?'),('s�E�Ξq�p�B���','wp-admin/css/widgets-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<K���Њ\'�}G�','�u�rE\Zd��ٲ�m�t���+��=�~�L�7�','',0,'?'),('s�(��,�x:>E2%G��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/result.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/result.js',0,'��-��s]�] Q��','��-��s]�] Q��','���\\k��`\0���%�wh���i�.�����','',0,'?'),('s�<,��E:��S{��fh','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/TranslatorBagInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/TranslatorBagInterface.php',0,'���gҍV��荋\Zu','���gҍV��荋\Zu','�{Ԓ�M}�ip{(�aǾ��Ls�\"=7','',0,'?'),('s�(���x#j\0;�','wp-content/themes/mint/node_modules/cli/spinner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/spinner.js',0,'�.BΠy�ȱ5���','�.BΠy�ȱ5���','�ԟw�_�dG���z���W��N�f��t�\Zω?%','',0,'?'),('sͻT�c�\Z�\'�2�\'�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/TestToto.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/TestToto.php',0,'^\n/[�o�$P��6��','^\n/[�o�$P��6��','���^\'Ch?%��A1DeO�p�P1����Kbc�','',0,'?'),('s�0yl�ꃋD\\��\"','wp-content/plugins/wordpress-seo/wp-seo-main.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/wp-seo-main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���MZ��́lb C','�N^��K�LK�Y�7�fN\0G�ϝ�_Q��&I','',0,'?'),('s�ŏU\'���e@�d�','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ғ:�K�[�Iw\\��g�','`e�� �n��O���JM�%�N�hA�{gh�f','',0,'?'),('s���GM����J��T','wp-content/plugins/akismet/_inc/img/icon-external.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/_inc/img/icon-external.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l���;�M �D���','�>H�ZF-��$�v|�r\nw���Ą�Y��&','',0,'?'),('s��4�����R�X>O�','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�^n=(��&��݂�N&','S��DIB�z�_-?(Y��pE�y�ƹA�','',0,'?'),('s�+���eESW�I��j','wp-content/cache/wpo-minify/tmp/js-cd582927.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-cd582927.js.transient',0,'I9��$��= ','I9��$��= ','�q\\ωQ���W����?}��1�cY�% \Z','',0,'?'),('s�A�(ԯw���_�%','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/index.html',0,'c-CS���jzW�gŕ','c-CS���jzW�gŕ','l�����4�fRm{Gm�ࠏ6�(���*���','',0,'?'),('s�C4YՑd��w��e','wp-content/plugins/wp-migrate-db-pro/frontend/plugin-update/plugin-update.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/plugin-update/plugin-update.js',0,'�6T�@�x������l','�6T�@�x������l','-2%�2��D��>���K�o�ԋ�Ң�c','',0,'?'),('s�L�+����o��p/','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Carbon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Carbon.php',0,'u�s��v=i�Z�:r','u�s��v=i�Z�:r','�B�#_�mC��[��4��\"{��pB��0?�','',0,'?'),('s��˱�Y*u���O�','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^ˀJΗrhZ/Na$','��� :��H��0v�=�T�$b�Ԇ�^s�\\71͐','',0,'?'),('s�zJ����ܥ�ǝe','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/stubObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/stubObject.js',0,'�a�h�.�QY��!df','�a�h�.�QY��!df','�Φ��&=�C�����{��wj�\Z�|�s�V','',0,'?'),('s�K�Cش�D��5�X�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js',0,'3c@%\'#M���8��','3c@%\'#M���8��','��\Z8�w}RRf����s���E�z\\Չ�n���','',0,'?'),('s���*TV�1�oE','wp-includes/js/jquery/ui/effect-blind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-blind.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�`�4o<�X�#�����','�ai�[�I�7��J�H&���G�v�c','',0,'?'),('s��\r=/�ϵP�\"�0','wp-content/plugins/wordpress-seo/src/user-meta/domain/additional-contactmethod-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/domain/additional-contactmethod-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&q����8mĦ��','�p�A�X#t��7W=bs0�r�eF ��\rGf�2Y','',0,'?'),('s�C4M�*��*B�)�','wp-includes/css/wp-pointer.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-pointer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�ԧ��(��0(y','��Ij��6ʄ�{��鈊��\"� Ԯi�6ǭ','',0,'?'),('s��j\'H]�{4^���','wp-content/plugins/wordpress-seo/src/integrations/blocks/block-categories.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/blocks/block-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}_�畮)1U)E��','i�����܃�L1��F:���jb���<��','',0,'?'),('t`SIF1��i��8��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/parseIso.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/parseIso.js',0,'��y�U$֯|s�d','��y�U$֯|s�d','��ɩ9I�Du�v{�T몘�8��>9k{h3ك','',0,'?'),('t �U� iާ�\"��s�','wp-includes/blocks/buttons/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/buttons/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���$�p�;X��4䔄','y����(��^ݚ��U=�;�C/_�B�ә��','',0,'?'),('t\n��:���97�W����','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/az.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/az.php',0,'N� �Yj�����Ɩ�','N� �Yj�����Ɩ�','\n� e��xg�fR۱L3�~u��R`�����','',0,'?'),('tRz���dpł��','wp-content/plugins/gravityforms/includes/locking/js/locking-view.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/locking/js/locking-view.js',0,'�낲�v����Ij','�낲�v����Ij','����U�\n��j��DQ�ӷ��*��\\��z�s','',0,'?'),('t ~@r���.W�8_','wp-includes/blocks/avatar/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/avatar/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xl���}EG�\0~<�Y>','��W��8�\01W��Sac)#\n7�7������N','',0,'?'),('t!a0���������|','wp-content/plugins/envira-gallery/assets/js/lib/utility.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/utility.js',0,'.�`ߐ�q�\"l�}�','.�`ߐ�q�\"l�}�','�c�̊�윂����࿓���k䬹fg<|','',0,'?'),('t!a��Ro�5��,��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/ArrayInput.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/ArrayInput.php',0,'y���XAn�J��u�x','y���XAn�J��u�x','SOy\nZ�P�F\Z�s��4����(����','',0,'?'),('t#BO�I��xk��x','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-warning-alt-red.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-warning-alt-red.svg',0,'ɮfKp�j����n�','ɮfKp�j����n�','{s�h���4#����HbmD��C','',0,'?'),('t#�Ӻ���C�p����!','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/float.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/float.js',0,'�\r���7�ǭ���','�\r���7�ǭ���','a�^nQA��D�`���v��ݐ��Ja��x�','',0,'?'),('t%�Y�>����,�H','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/index.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/index.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�)���\\�I�E�+�&','��s�.��E�����6�5�r��0� 6�','',0,'?'),('t&Ӆ�~�����e���','wp-content/themes/twentytwentytwo/inc/patterns/header-title-and-button.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-title-and-button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���M���r�=W+�W�','ҵ;\\R�nD��y������U�#��m���a�','',0,'?'),('t(��P\'�o�4\'��jV','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/ContactButtonWidgetDependencies.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/ContactButtonWidgetDependencies.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�9�7Z�������','��\nB���_C��� �v��6�?���ڃ��','',0,'?'),('t*�nݍ��2*]�W','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/contains.js',0,'x���i�Ȍ3�X4','x���i�Ȍ3�X4','�4���i��>�F�>�w�2;����\rs�u��','',0,'?'),('t-�� �=�j�k��T','wp-content/plugins/gravityforms/includes/template-library/templates/templates.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/template-library/templates/templates.php',0,'���|���E� ���','���|���E� ���','���o�pu;�]��ۚd;��m5Z?(','',0,'?'),('t/�����Ji6WX��','wp-includes/class-wp-recovery-mode-cookie-service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-recovery-mode-cookie-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǩ��.������l','��k��uX�x�^-�b\Z��r�P�^Ί��Mi�','',0,'?'),('t5^ kS(1��z�G^��','wp-includes/blocks/archives/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/archives/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ς<X��^zۗ�!\Z-�','�R��/�qE$��H�\\��v2V���\0\r�K�i','',0,'?'),('t6��O�\ra��Ȇ�f','wp-admin/js/plugin-install.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/plugin-install.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ch�P����P\rDW','��)� ��$K�8�v3��X&�okv���','',0,'?'),('t8]�l���)?�t��','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-backgroundsizecover.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-backgroundsizecover.js',0,'ϝO�ׄ�!����A','ϝO�ׄ�!����A','�nN02�Y����x��1!\Z��k}��Ҟ���','',0,'?'),('t8����p�̋�z{jDp','wp-includes/css/buttons-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/buttons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xq��h`R��I\rƢB�','�zϵ���1.��eR��5Ĕ7¿+����?�','',0,'?'),('t>�\0 P���æ�K@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cloneArrayBuffer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cloneArrayBuffer.js',0,'��m�A����e�YX','��m�A����e�YX','���㽣O����f��dQ�+�PnO��L\0�','',0,'?'),('t?\0c�$w)(���8','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js',0,'� \ZG�(�Xvwc;RŢ','� \ZG�(�Xvwc;RŢ','�8���w}Nz_MrfA܇\"�s(U�mi�62D�','',0,'?'),('t?Y�l�������D','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndexBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndexBy.js',0,'��\'b>S�DK�w�','��\'b>S�DK�w�','�����,*7���ׇ?��N�SDS�s ���','',0,'?'),('tB�o�6O&\'�dd,u','wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/select2.full.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/select2.full.js',0,'7����}�g={�R\'xg','7����}�g={�R\'xg','BxJ�]Fa��(�43s6>$��v�$���','',0,'?'),('tDd�A�0��W��\n\r�\n','wp-content/plugins/advanced-custom-fields-pro/includes/admin/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('tE��R���:4y;L','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseMerge.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseMerge.js',0,'��tx֧��S��','��tx֧��S��','�軇!)�3�\r�E��_:a5��7���\n�HY','',0,'?'),('tLS�����ˈ�9��5','wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-query-users.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-query-users.php',0,'����K�J�{�{�|]','����K�J�{�{�|]','�N\'b���=wh��/?��{Ѥ�SQ����3Z','',0,'?'),('tL��C~���Dݮց ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time/convert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time/convert.js',0,':s���_I�-�!�4�',':s���_I�-�!�4�','������.�\"F��W�V-��a������_N','',0,'?'),('tN�\0x��ß���','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/bin/extract-props.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/bin/extract-props.js',0,'����B��`gD�+','����B��`gD�+','��o�ll�j/c7/i��B��m ��[Ј�m\0','',0,'?'),('tOᕡ���Z�A����x','wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-built-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/indexable/post-not-built-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0���CJ��AQ�R�','�_2�LГ�N �J�w�G�L|�D�A�A\rL�','',0,'?'),('tU�/Ds�Iڤ�st�','wp-includes/js/wp-auth-check.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-auth-check.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�6����b�X�+M\'','n@���to�:��\\�e!65��,K�V\\=','',0,'?'),('tY�;Q����I�V��','wp-content/themes/mint/node_modules/uglify-js/lib/propmangle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/lib/propmangle.js',0,'�B��\Z\"\n\\�@m�','�B��\Z\"\n\\�@m�','�վV(�5D�^..nS��x���������4)g','',0,'?'),('t[[�=�6u7;Y��T�','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4s[���lAc4�f���','ƺ�>�y�.~yK�^�)*f�����6F�','',0,'?'),('ta�;_Y\np�=[_:B��','wp-content/plugins/wordfence/images/icons/check.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/check.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��DF������P�L','���+��ʣ�фȯ��?��+�\0_�ŴQq�','',0,'?'),('th)�YC]�+\n��̬','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p�k�~IQ���n�d','�8��P\Z�b�&{���Jn��Q]|Ȓ��','',0,'?'),('tly�}u����8�j','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php',0,'\"{Շ�_��ժu_�*_','\"{Շ�_��ժu_�*_','� 0��w@��0V��\'��Eȇ~��$��\'�P','',0,'?'),('tm6ۗ�q���.��=j','wp-admin/css/colors/blue/colors.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/blue/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\rcr�(���֍\\�6','�j08{e&ͯ5����\Z!hlz�����Y4�a','',0,'?'),('tm�\n��GO \'�\Z','wp-includes/js/jquery/ui/mouse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/mouse.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ÂV�]�jf��Cv','�\Z��µ9�Mҝ�ץ�H�+��28�Þ�i�','',0,'?'),('ty����_r���s��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Junit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Junit.php',0,';�ȣ��]?��و',';�ȣ��]?��و','fP��M�;�5�[o�ƀi|�a^sj�����','',0,'?'),('t|��������>�+','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/attempt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/attempt.js',0,'��j�Cz��� !�','��j�Cz��� !�',' K�}����k�&�6����Ok\Z�� �Ss����','',0,'?'),('t~��ܬ�H\Z3�|��','wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/symlinkme/file.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/symlinkme/file.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('t���y�>�\r,+}�%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/overSome.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/overSome.js',0,'�]�1�!�m�{�U�y�','�]�1�!�m�{�U�y�','#$��qP\"�\Z��J�&�\r�=\\�ʯ��+\0;�%','',0,'?'),('t��\'�-�\\Z���','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsById.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsById.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#��TU��s���\0','��G7:b�r���9pH[ yjYuϯ*��\0ɣ��','',0,'?'),('t�\\D�y�p��QF','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getSymbols.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getSymbols.js',0,'MX��K��(�����b','MX��K��(�����b','�\Zs���d~����XԬ5is���>C`0','',0,'?'),('t��\\�V��G\0]ՙ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/http-signature/lib/parser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/http-signature/lib/parser.js',0,'�j�6��7B�l�l','�j�6��7B�l�l','��e��d5$��9�z��G���\'���9�','',0,'?'),('t��7$A3���G��','wp-content/plugins/advanced-custom-fields-pro/lang/acf-fr_FR.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-fr_FR.l10n.php',0,'-�Q넲Z.R�Ug6','-�Q넲Z.R�Ug6','�Ggx��u��[���\\�~~�Ai�O��[�[��','',0,'?'),('t�U�q���_ُ','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/dist/lodash.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/lodash/dist/lodash.min.js',0,'�;�R�l����P��_','�;�R�l����P��_','� �G���; �����N��pA5��V�r4U','',0,'?'),('t���R��OLZ����\'','wp-includes/blocks/query/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�.���O�mT% i','6��_�z�zH+1��q�\n.�6`�B.�3:\'S��','',0,'?'),('t�dy�H\nc��Ip��','wp-content/plugins/wordpress-seo/src/config/migrations/20200428194858_ExpandIndexableColumnLengths.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200428194858_ExpandIndexableColumnLengths.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V\n���(Te�z��','`ا\'����V.���RPcz[�7mP���E','',0,'?'),('t��]]lZ�\nL�T:�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/hasOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/hasOwn.js',0,':/γ��hb^�2�|�M',':/γ��hb^�2�|�M','����bg��q��pʖ�!ñ2#�\Z�ɲ��','',0,'?'),('t��I�\',�d�l��','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Host.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Host.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L��*8���$o{���','���L!�v�6\'b����;��H�y��P ����','',0,'?'),('t�?G�9D��>p�v','wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2�`�-w���','����{��z6�aw^�ʙm��}�G','',0,'?'),('t��O��p��F(I','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/take.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/take.js',0,'*U�w��u}����W','*U�w��u}����W','�=�3�\0tӜ�r!$���H;j$�`y�X�','',0,'?'),('t�7�p�G�:-G&�','wp-includes/blocks/tag-cloud/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/tag-cloud/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�8q���<#y�q�;','{F\"4�f���½�s��o���Κ>5*YDzbX','',0,'?'),('t�}jl�U����)@�u','wp-includes/css/dist/edit-site/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-site/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�����94��;�\0qL5','*��:]}���w`��\0_�Fs��u��a','',0,'?'),('t��#�>�����C>','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen02.228b60a9a4dbad88977d.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-Screen02.228b60a9a4dbad88977d.min.js',0,'��i#�sIx\\W����L','��i#�sIx\\W����L','p���\'�K��(kX����������+�','',0,'?'),('t�J�ks��9D�','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/objects.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/test_underscore/objects.js',0,'>�x�>\Z\Zb0�4ׄ','>�x�>\Z\Zb0�4ׄ','�,��^M���1u���|�����m�B>e��R','',0,'?'),('t�#����hf5�F��','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config.js',0,'f�I=��T�45j`��','f�I=��T�45j`��','��j8��-�1��h\\aB�b-jY��\nqN�Q�','',0,'?'),('t� ���R�4�F�:�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isObject.js',0,'�w➴1\'���aN̻','�w➴1\'���aN̻','?�����E�[Z�!D��t����!YQ�C�','',0,'?'),('t��\0a��\\��_\'W�','wp-includes/blocks/table/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/table/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�aq�*yz-T,)� ��','B�~�7#��\\����\"�z@�Đ*���fx�5�','',0,'?'),('t����4����|','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/parseIso.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/parseIso.js',0,'��y�U$֯|s�d','��y�U$֯|s�d','��ɩ9I�Du�v{�T몘�8��>9k{h3ك','',0,'?'),('t�{���Q�A�D��n','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/map.js',0,'5D��ͶNx\'{R��','5D��ͶNx\'{R��','ֳ�#|�ٝ�CA���|�\0Cm���c_��3�','',0,'?'),('t�*�t5\Z;�|UD�&','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/last.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/last.js',0,'��X@�6�iQ�|�� �','��X@�6�iQ�|�� �','Q�%�3��O��d�U�\Z�Ӌ5d|[��O;�8�','',0,'?'),('t���7�Ϫ�2�g\ZE7�','wp-content/plugins/gravityforms/includes/telemetry/class-gf-telemetry-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/telemetry/class-gf-telemetry-data.php',0,'���ֺM�Ac���G��','���ֺM�Ac���G��',' 9�L��A�9��4���2��UG�K*���','',0,'?'),('t�p��E���P���b','wp-content/themes/mint/node_modules/exit/test/exit_test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/exit/test/exit_test.js',0,'o�-�¸:䟬��6���','o�-�¸:䟬��6���','�;��[iצ���W�gnV�q�iδ��Wd��J','',0,'?'),('t�P�:���&�g�zŮ�','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_namespaces.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"@�~��Ǵ[��@�A','��Ь��K�ql:�~ҝ٤B��u��$*V�z�)','',0,'?'),('t�1�հ��ވ?��s��','wp-content/themes/mint/node_modules/wordwrap/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/wordwrap/index.js',0,'=���$aSTP��-�','=���$aSTP��-�','D�G\Z���z7e\\h�rC��JTiT`i%�W','',0,'?'),('t�;��H����͓�Y�A','wp-content/themes/mint/node_modules/bower/lib/node_modules/tough-cookie/lib/store.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tough-cookie/lib/store.js',0,'�m|�s\\e b����','�m|�s\\e b����','}M1��T�Ϟ\nK��B7��4�����V�B','',0,'?'),('t�Z����$9~�rAM','wp-content/plugins/wordpress-seo/src/config/schema-ids.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/schema-ids.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�{>��P� I�P[�','Kj�}L_�T�����E�#vꐝ���a�U��)Qd','',0,'?'),('u�6��4E~�:��','wp-content/plugins/wordfence/images/icons/working-indicator.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/working-indicator.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����VF���{N �\'G','�fX��RZ�|:O�b��=f�[y���5 ~ ','',0,'?'),('u\r���_�R��h���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang.js',0,',���A��n��Ng',',���A��n��Ng','�{������)��^��2Ki�#V:/�%BF�U','',0,'?'),('u��*(��z���d�','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-gallery.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-gallery.svg',0,'\Z�K�7]�q����Ƀ��','\Z�K�7]�q����Ƀ��','����ۦ��n��+�%����w��P%�','',0,'?'),('u�`��x��L��','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/gistsTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/gistsTest.js',0,'V!�V,Ɍx~+*\\���','V!�V,Ɍx~+*\\���','���d5������뼷p�)�ítV�\Z��h','',0,'?'),('u�pY�AʏK@��m�','wp-content/plugins/wordpress-seo/src/editors/application/seo/term-seo-information-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/application/seo/term-seo-information-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8�D��jI=��','U��ʧ�\n�\ZQ\\dQ�6�!;�@}j9��};i\\�]|','',0,'?'),('uM7�Rӌ-�)o��','wp-content/themes/mint/assets/vendor/bootstrap/grunt/bs-lessdoc-parser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/grunt/bs-lessdoc-parser.js',0,'��<3�#�)��]a���','��<3�#�)��]a���','i�E�`$BD�zQB�ז�ܔ���)�,��f��','',0,'?'),('u?n(&\'S_��`���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/sortBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/sortBy.js',0,'\Z>|,C�;��%����','\Z>|,C�;��%����','lFi�1����h6,WM� �Zj#9��{�H�!','',0,'?'),('u���<(<{&L�','wp-content/themes/mint/node_modules/bower/lib/node_modules/duplexify/example.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/duplexify/example.js',0,'��Y�\'�|��]5�8','��Y�\'�|��]5�8','�$�j���ǣ�OK$Zl�np\'7�8^��G�\\�.','',0,'?'),('u)z�Z��hL�P�|�','wp-includes/blocks/spacer/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/spacer/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r�zP��#���R�\r$-','ލ!]L�13q+��#u}N�!\"oh\0��x~�','',0,'?'),('u*2�����O�G�}�','wp-content/themes/pinnclonesmalltest/resources/assets/scripts/blocks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/scripts/blocks.js',0,'q5��0k;�3\0j�5�p','q5��0k;�3\0j�5�p','\r@\0�~h��6�8\nإ�r��?�\'nl�,:!��','',0,'?'),('u+ ��Ppɔ_(^�k','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/decorators/inline.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/decorators/inline.js',0,'��ir2�{���\n>,�[','��ir2�{���\n>,�[','ו��@�u�0.���ǖ��k�������#7�','',0,'?'),('u,:v�75���\Z���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/totalDaysInYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/totalDaysInYear.js',0,'E��_�_�p�\Z���\n�!','E��_�_�p�\Z���\n�!','��I�1�0�i.�g�_# �4)<���J4�','',0,'?'),('u2�t�\"[��3�#[','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/TargetNotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/TargetNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�a�yO�c)\rF�H�\"','��I��?Ԗ@b��J� ��i�־��)\Z+_�','',0,'?'),('u>;T{:<0�V�,���','wp-content/themes/mint/node_modules/htmlparser2/test/02-stream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/test/02-stream.js',0,'�[�_���+�������','�[�_���+�������','ܓ�\"R��FX��9K�*A�S�� �e�l���&�','',0,'?'),('u>]\0aO<�G:�5�Z�','wp-includes/blocks/latest-posts/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-posts/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�yJ������d�\\�X�','J�#��}ߚ��sn��nQs�\'YJLA�*�AO%','',0,'?'),('uFTv;��\Z\\w����','wp-content/plugins/gravityforms/includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php',0,'�!+���!�\r�|�^R','�!+���!�\r�|�^R','YM��B�OX:cO���9�[� ��h�A�6���','',0,'?'),('uL����ld�/�p1c\Z\'','wp-content/plugins/envira-gallery/src/Utils/Browser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Utils/Browser.php',0,'��h��;�!�nB#�u','��h��;�!�nB#�u','tm��\r���xi�\0�]���t1h�o�0�<','',0,'?'),('uV�И��$|�����','wp-content/plugins/wordpress-seo/src/presenters/open-graph/site-name-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/open-graph/site-name-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݬgN=th#�m�{� ','� 5߽���j��S6Y�\"v���H,�h��v','',0,'?'),('uZ�_�������','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isBuffer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isBuffer.js',0,'�hJE�y�6��m�?�G','�hJE�y�6��m�?�G',' 8A�ɽ�����֟�D�̹��pp�J','',0,'?'),('u^��A��A��p[��V','wp-content/plugins/wordpress-seo/src/services/health-check/report-builder-factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/report-builder-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M��L`;\Zx�/���','5\r�\n* b��?���آश�%C��خ�#�','',0,'?'),('uapF��[t#��(q[','wp-content/plugins/wordpress-seo/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EЛ��O0��c���Ag3','�� 蚠{�c�FJ�w��!}a���9�','',0,'?'),('ub�|j��XX ��bom','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/difference.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/difference.js',0,'2�x�\\g�U��_��','2�x�\\g�U��_��','E��Qb23�i9t���������\ZW�g��','',0,'?'),('ucZwqk�\r���B','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/makePath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/makePath.js',0,'V��N�Ή�p]k�','V��N�Ή�p]k�','3lˤ�A�.�*j��L;E3�B&&�2��&��','',0,'?'),('ue�,\"\n �h�g.','wp-admin/css/colors/_mixins.scss','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=r��?/pIQ`P�u�z ','�G�\r7�r��W��\'@v.r�;\\i��f�6Y','',0,'?'),('ui��~�j�G����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/timeout.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/timeout.js',0,'%<8��\ZI����r�Ņ\"','%<8��\ZI����r�Ņ\"','@���o�woӜ �7W[^�% �NH�]�E�zF9','',0,'?'),('uja����}]��t6','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/lib/vars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/lib/vars.js',0,'{�D@z�5�̨��','{�D@z�5�̨��','�>&�<�=Ar���z2���|��쩮4�k�/�','',0,'?'),('utSU���b������','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isDate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isDate.js',0,'�\ZӴD���9����','�\ZӴD���9����','�?�_;K���h�%�i9�4\Z��C�2��','',0,'?'),('ut�j��v�^Z촞','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Tag/TaggedValue.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Tag/TaggedValue.php',0,'T¹����|@���\n','T¹����|@���\n','�G~��>e�T�\'����q��X���=�b�','',0,'?'),('u{�����\0�D㿰�','wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/failed-storage-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens/failed-storage-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�\"\r+[�%Ɣ�','�)�+,�+�Lh�Q�>{���G�O+��l','',0,'?'),('u�*�;��p���;� ','wp-content/themes/mint/node_modules/grunt-modernizr/build/modernizr-custom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/build/modernizr-custom.js',0,'���\r�jǥ)\'�E!�','���\r�jǥ)\'�E!�','��<�;&O[�g�����Jgq���/-A4t)�4','',0,'?'),('u�w�>��Ͻ�E���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIndexOf.js',0,'b��C�U�#?��]�','b��C�U�#?��]�','����ה ��Ɗ,w6E%I˟�E\04ߏjA%','',0,'?'),('u�j$o&?6D�_��_��','wp-content/plugins/gravityforms/includes/form-display/full-screen/views/class-full-screen-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-display/full-screen/views/class-full-screen-template.php',0,'��E2�br��G�hv��','��E2�br��G�hv��','m^Fa���,$6����u`��q -.��&V�','',0,'?'),('u�N8B��5��\n�CC�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/IncorrectPatternException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/IncorrectPatternException.php',0,'q�b�.g���̱�','q�b�.g���̱�','���<�F�G^ě�F��Ў[F���>��\n#|r','',0,'?'),('u����[������D','wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#g�x��@�o�TM�','���ee�6s���-�-I�$�Q�¼@ٍy��','',0,'?'),('u�o8�����\ZL�','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/pairs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/pairs.js',0,',@�ն�cs��3��',',@�ն�cs��3��','h�T�Lb[0�]��x��˻�+EG�=��.5��','',0,'?'),('u�_�%�����T','wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/unsafe.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/unsafe.js',0,'n�~5A)*=�7�\\','n�~5A)*=�7�\\','�H&.�d`b;ݿ��Mc��dX/\"�� �Uk{�','',0,'?'),('u�^\n>C�:���Q7Cz','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/equalByTag.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/equalByTag.js',0,'%*,�&��\0n0�>>�7','%*,�&��\0n0�>>�7','� ��d�9��*����c�u�Uh#(uk','',0,'?'),('u��f�k\n�`�DO��Wg','wp-content/themes/pinnclonesmalltest/resources/views/partials/content-search.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/content-search.blade.php',0,'��km�L�s�,�Q��\\�','��km�L�s�,�Q��\\�','�M�ِ�TЯ�ڒa,Nڪtl���3�f�g�','',0,'?'),('u�KϼA�g��9E�>nW','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/bindAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/bindAll.js',0,'�BtJļ�D��+\0','�BtJļ�D��+\0','_�ސ�JBmk���U�ʅx+ Ǿ��S��To','',0,'?'),('u�:�� ��{p8�D','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/log.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/log.js',0,'�z�v��� ��$��Q�','�z�v��� ��$��Q�','�56@}�av�R�X�� ��I�Tr�!p#�ؤ�','',0,'?'),('u��:d���c��v�','wp-content/themes/mint/node_modules/argparse/examples/sub_commands.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/examples/sub_commands.js',0,'�mh�J�w �c���','�mh�J�w �c���','�h�$8��R+���������(�0��F0h�b','',0,'?'),('u�՜���\n��@�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php',0,'������C�E�s�C���','������C�E�s�C���','��@��e*�+K/`�Az(���9_q��:\'�','',0,'?'),('u�L���f�����n\r{c','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-image.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-image.svg',0,'\Z�K�7]�q����Ƀ��','\Z�K�7]�q����Ƀ��','����ۦ��n��+�%����w��P%�','',0,'?'),('u�14v/����w6��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Text.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Text.php',0,'�~k�.��U<�Ռ','�~k�.��U<�Ռ','E�\r\\���͈v�3�<��C�IL�&2','',0,'?'),('u�x9�Ĩi���aW','wp-content/plugins/wp-migrate-db-pro/class/Common/Helpers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Helpers.php',0,'��V�S·bK�������','��V�S·bK�������','30b�y�Ć����{/��ힸ�G�o���r','',0,'?'),('u��?�9��܋���a�','wp-content/themes/mint/node_modules/stringstream/stringstream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/stringstream/stringstream.js',0,'�\r] ���Z��-�h9','�\r] ���Z��-�h9','�8�S��5�Qr�K8���IU���[��ø��','',0,'?'),('u�s���NQY]�0L�n�','wp-content/plugins/gravityforms/includes/webapi/webapi.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/webapi.php',0,'�I���Gj�Lwʐ={9\0','�I���Gj�Lwʐ={9\0','�>� ����ލ@���f/߂[U ԣE���[','',0,'?'),('u�~2}$nƢ��p�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time/toTimeString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time/toTimeString.js',0,'�p&��f5�G)Z,i��','�p&��f5�G)Z,i��','+�-��h�^��՞Ut�Ͳ|�i�$�!�4��8','',0,'?'),('u��3!pA�f�)R�M�','wp-includes/js/tinymce/plugins/wpgallery/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_�vQ8_�$�?��','<��A0�6kJX\nvA/��%O�-v_���\'p�A@ئ','',0,'?'),('u�ƍD�����wE.b','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/random.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/random.js',0,'s��\"h;�]@�J�\'IP','s��\"h;�]@�J�\'IP','^*�b�r��j��Y,�@����GL��$;/�','',0,'?'),('uƦ�<#�Ω�ݛʐ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isElement.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isElement.js',0,'��dQ���C�HP\"�','��dQ���C�HP\"�','Y�A���� �鼚v)^��\0p^e?�Y���','',0,'?'),('u�m-O��\'ߝ�]�#','wp-includes/sodium_compat/src/SodiumException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�HDf��ae���z��R','㶜\\��L>L�N-@G\'��tmG��i��kR߮g\0','',0,'?'),('u�.h+����f�g0 �','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/ssl/ca/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/ssl/ca/server.js',0,'�R\n��6����/nWr�','�R\n��6����/nWr�','?��A��{5e���y�^���U��\n\n�e','',0,'?'),('u�^�ȅ��ŏ�W͍','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSome.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSome.js',0,'珊ȧx�ʸ�L�P2','珊ȧx�ʸ�L�P2','A(Xiyv�r6�)\0��|�� �0��*��]�n\"�','',0,'?'),('u�m$oh{U�j��9[+','wp-content/themes/mint/node_modules/bower/lib/node_modules/array-find-index/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/array-find-index/index.js',0,'��{fq�?���`�m','��{fq�?���`�m','��a��/�f)k���a��&v�bu!W.�\n','',0,'?'),('u��k6��O�>�&�W','wp-includes/blocks/text-columns/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/text-columns/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c^�*��w��G㐾Q�','�+\\���1{*C�G+����J���Lv','',0,'?'),('u�G�F\\:���)���','wp-includes/blocks/post-comments-form/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-comments-form/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?U�����ذoE�<[�','Ue;�zK)�W�\0;8�ԅ�H$�)ܧu�','',0,'?'),('u�qg\Z\0�8�hԭ�\0�','wp-admin/custom-header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y����&�','�Θ�4��C�w@�Xdo��N=w���<~o�','',0,'?'),('u�H.树��*˰��+','wp-content/plugins/wp-reviews-plugin-for-google/static/img/special_30.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/special_30.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�46�g.�Ȉ4��','���Ä��`L�&�IG���^�|[B�˔','',0,'?'),('u��ʺ6�� ��q�','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/InternalClass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/InternalClass.php',0,'��7l_j[\"��G�','��7l_j[\"��G�','Sܤ9�B��(�X��d^!��4]�+AӍ��D','',0,'?'),('u�ҫ���;^�\'B�*','wp-includes/global-styles-and-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/global-styles-and-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o�YkV����I�','>� !�l̝5j���\\Ϩ[�J��6jbz=.��','',0,'?'),('u�:�z�2�DQ��4','wp-includes/blocks/tag-cloud.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\"B�/<L��^�\'�','�u�&�����yN���+\'��w��C�l','',0,'?'),('u���cC�`��{��v','wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-LightItalic.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-LightItalic.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R����擝Xs�p','\"!#����/��vꢽ���>8h�{g�铩@Ye�','',0,'?'),('u�qD���b&G�r','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/ControlSignatureSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/ControlSignatureSniff.php',0,'�1f��W��(^E�HQ�)','�1f��W��(^E�HQ�)','�]�d½�`_ �d�p|�\Z��$�Ә�\Z�%�h','',0,'?'),('u���cz��J��D���M','wp-includes/blocks/image.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l��x��>��L���','q �A��퉘����nK9��������A(�','',0,'?'),('u��\\�ؠ��\Z_H','wp-content/plugins/wp-optimize/cache/php-5.3-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/cache/php-5.3-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vm�鋌8�a�8��Z+�','ڕ�I�F`z�v�l�5�7����ȝA\r�}�\Z','',0,'?'),('u�\"�w�U�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/lib/extractors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/lib/extractors.js',0,'�]�dQ\r[�����\'�','�]�dQ\r[�����\'�','��N��u�����{ȃ!��(�O��tI�٨r','',0,'?'),('u���\'M���2�','wp-includes/blocks/embed/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/embed/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v�M0AW+{�-�W','����Λ���Q=1��2��g6�0��j�0','',0,'?'),('u�)��f�\'R�]�k�','wp-includes/Requests/src/Exception/Http/Status407.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status407.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Zq�mP���\'ˈ[�s','\\M�#E��&��[~��W������>�A�l','',0,'?'),('v�n�bW�ظt�;y','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Validator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Validator.php',0,'�g����d}�g�:r.�','�g����d}�g�:r.�','�B�Q-��V2�4�\r�k�Dםi�e�Y��}�','',0,'?'),('v \'qG\\�\\ڟ��','wp-content/themes/twentytwentyfive/patterns/template-search-photo-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-search-photo-blog.php',0,'��57y�X���M\\�','��57y�X���M\\�','�9*y��8���nj6M��q0�o�͛�9���','',0,'?'),('v\n�rp�=�љ�','wp-content/themes/twentytwentyfive/patterns/post-navigation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/post-navigation.php',0,'�|��L�(�[W蔽','�|��L�(�[W蔽','{��y�hv��@�s��C��X� ��]��U�h','',0,'?'),('v\n�t��1�\ZeH&�','wp-content/plugins/wp-optimize/templates/database/settings-auto-cleanup.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/database/settings-auto-cleanup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ͻ}�>��tW��D�:','g#,��ps���N�̆���^���\0��|��','',0,'?'),('v\n�.�u%����w��','wp-content/plugins/wp-optimize/templates/status/status-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/status/status-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��c�k]i� W��K�C','B�����_���9<f�{s�Ge��O^�}e�','',0,'?'),('vڴ����V���K��P','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���PNڡ\'f���','\r]�~[�������_˳�P�B�TA`��*,O','',0,'?'),('v\r7i��B-N�\"��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/pick.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/pick.js',0,'�F�uGf� ��ָe�','�F�uGf� ��ָe�','mb�2�%m\0B�^����rv\r\r �?j5�6%��q','',0,'?'),('v�)F��~q���?b','wp-admin/includes/class-plugin-upgrader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-plugin-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*�D��1��\0�\rI�','�|Q\'�����*�ٽ?�`�}cP���Ǹ���','',0,'?'),('v%,���WS��E�^�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/applyEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/applyEach.js',0,'`L���g��ة�','`L���g��ة�','w��.\"��Gh� \n.\'10���8���!�','',0,'?'),('v&5�jr�jL #�ܲ�','wp-includes/blocks/categories/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/categories/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K��#��u �_��40','�jꄓ��b���7#�x��m��$]���v%8','',0,'?'),('v).��x�3�.#Ul��','wp-content/plugins/wordpress-seo/js/dist/post-edit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/post-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<o )ʋ*���HZ�\n�',')z�-0{Uh#�#�\Z��]�(�a\0/�t�E�6C','',0,'?'),('v1��,->d.����#�','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y[�ǡh�b���','2b�V�CΖz������MOp���2�6ݢ�ׁ�','',0,'?'),('v3S�+7\rĠ9C��{','wp-includes/blocks/navigation/view-modal.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/view-modal.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G9�ZL��l�<�','�}$�gv���F�JUR�*��a\Z�m�X','',0,'?'),('v4&�EM�5�/��5.=','wp-content/plugins/gravityforms/includes/config/items/class-gf-config-legacy-check.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/config/items/class-gf-config-legacy-check.php',0,'�8�(��j��|��K�','�8�(��j��|��K�','�&�����a�0�tZ����y�i;�VO���t�','',0,'?'),('v5�8����,��U;�','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/ClientCredentials.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/ClientCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@d����ic�U���+','e]6H�GJ���dk��I�`�ߟ�$��}Nbj','',0,'?'),('v9N�oN���tØ�.','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-spec.js',0,'�0�~fM]���JJE','�0�~fM]���JJE','�n6*&�o�B�-=C��يTK�p ?��ki','',0,'?'),('v>\n��A?�U���(�','wp-includes/blocks/post-terms/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-terms/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4�������\"h�','�@�\Z\'�_���:���e�$�)�n�F','',0,'?'),('v?�\"\"�\' �~2z��','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-taxonomy/basic-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-taxonomy/basic-settings.php',0,'�\\2\\�O��A�H�@�','�\\2\\�O��A�H�@�','�+���:��HD�s�܀Ѓƫ� v�\\ ��F�','',0,'?'),('v?�g����o�+.O','wp-content/themes/mint/assets/vendor/modernizr/test/caniuse.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/caniuse.html',0,'�᪗�4�k;�6�D|','�᪗�4�k;�6�D|','�z(\\B:%1���DK�!,��B��H','',0,'?'),('vC]̈��ZQi�B�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/seq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/seq.js',0,'~���b[9u_�#-���','~���b[9u_�#-���','��� B+��q��@�%�bs��ZND\Z��Ï�r','',0,'?'),('vH6�z�+SOg�V\0`','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/bool.js',0,'�%�3i 9K��-�F��','�%�3i 9K��-�F��','���@��cb]�%�L�6�\0�%(R�� rj6[�','',0,'?'),('vK;@�s�aU1;� ^�','wp-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-config.php',0,'`_T\n�5�g�Ŋs@�~','`_T\n�5�g�Ŋs@�~','\n��Q]nW��$B�t�+�=s��H�*fA�','',0,'?'),('vK�\"e3�A����C�\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/remove.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/remove.js',0,'�S���hq�j�x$!S','�S���hq�j�x$!S','�i2Y��|$�`x3��:� k�Q�rHy:MH\"','',0,'?'),('vLM�.f���%OMR','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�O�����q+O','5�\'����R����Eһ56���d����go','',0,'?'),('vM�m*&Z�`\'/b�+','wp-includes/js/jquery/ui/effect-puff.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-puff.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9D�J��i�\\�d�]�','pkC��i��,-�e}%6�a� �c�\n]','',0,'?'),('vV0 RSZ�8ܞ���g','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-displayrunin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-displayrunin.js',0,'!�Y:�3��$��ٙG','!�Y:�3��$��ٙG','\"�\Z�O��?#�ׂbԊ�r����w���','',0,'?'),('vWA=������ݵ��','wp-content/plugins/gravityforms/includes/fields/class-gf-field-option.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-option.php',0,'�^�5ڙ�\Z��B�','�^�5ڙ�\Z��B�','<��x\Z݇m��i�-��{��2F��]�D�_�ޞ��','',0,'?'),('vY�3$\\P?v�ԅ�','wp-content/themes/mint/node_modules/js-base64/test/es5.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-base64/test/es5.js',0,'6��7Ѝ]�/�m4�3','6��7Ѝ]�/�m4�3','���kFR\rt �@Y#�\'���J�Z�M��&�','',0,'?'),('vc�zu�jb\\{x���','wp-content/plugins/wordpress-seo/blocks/structured-data-blocks/faq/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/blocks/structured-data-blocks/faq/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�0ֻ������M6w[','y�Q�lͳ��o�B�qD!��d��e>�:(@_','',0,'?'),('ve\\�l.�х{','wp-includes/js/dist/vendor/wp-polyfill-formdata.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/wp-polyfill-formdata.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S|���hDO�3\n�\n2�','4��N^p��Z$B��o�T#Z��v�R\r8vw','',0,'?'),('vi�fuP�0^�>d��','wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��SG��˺��F���','[�(��R�������$��2o���t�b��','',0,'?'),('vn-�*ɇI����','wp-content/plugins/gravityforms/includes/theme-layers/framework/traits/trait-enqueues-assets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/traits/trait-enqueues-assets.php',0,'�sX�f�I8�f�|EO�','�sX�f�I8�f�|EO�','����+}���2���^��{˅s\Z;\"ţ�,ӓE','',0,'?'),('vr�\Z��Ba1@��i�','wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib-convenience-methods.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/browserify-zlib/test/test-zlib-convenience-methods.js',0,'�[o�&Wd�^��\0','�[o�&Wd�^��\0','�2y��vw0��]&,�Q���������v���','',0,'?'),('vvޯF�B/����','wp-content/themes/mint/node_modules/less/build/amd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/build/amd.js',0,'gЧ\\��:C��o��\nG','gЧ\\��:C��o��\nG','�����ʌ���_C>���9�\0�, G{,�:','',0,'?'),('vw��@�H��z�F�','wp-admin/ms-admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/ms-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�UjA�ڦYq�u�� ','���\"G\n��ڔ���Mh�Q�2��l�\'�ܵ�','',0,'?'),('v]�z������3�tB','wp-admin/includes/class-wp-importer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z��o-����Օ㿃','\\��v�+6)�l�\'\n�ts��ݡUh���P�?pJ','',0,'?'),('v���y�������\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseHasIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseHasIn.js',0,'�і���dlX\r�_�X','�і���dlX\r�_�X','�z�76Q��6��}ġ�����Z�<�{�','',0,'?'),('v�<g`��u��]��y','wp-content/plugins/wp-migrate-db-pro/vendor/composer/autoload_real.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/composer/autoload_real.php',0,'-�f�9M���o;��p','-�f�9M���o;��p','�0����2yx�=zf�Cˌ�ʒ\'����>�','',0,'?'),('v���f���L���','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('v��\0b�]T4(8���xi','wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreUser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreUser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';�DԠ�U�Ye�1','��6�2��-}obܷ�D=���\n6�pj^','',0,'?'),('v�5|�v�La+�>�','wp-content/themes/mint/templates/footer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/footer.php',0,'tB�w�M:`�\0�Q�Y','tB�w�M:`�\0�Q�Y','�ȁ�ߐ�%�\n��!��f6���耾�b\ri�','',0,'?'),('v��ޣ�R�','wp-includes/js/jquery/jquery-migrate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b*�����Z{�ϖ','�\0m��\\$�6�E�������I*[dwLw','',0,'?'),('v�D�����/��\0��V','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/multipart.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/multipart.js',0,'E�13[�Cn��3��','E�13[�Cn��3��',')�����h�T�����)�q0\0��?���=','',0,'?'),('v����0�-����-:2','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_attr.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_attr.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5��v����=���2�','��x�OZG�g�$Xb#��>g\0�%H�>W8�','',0,'?'),('v���v�%`��k-<�T','wp-includes/Requests/src/Proxy/Http.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Proxy/Http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�4�j�(� ��-��','e\\;�\Z���oA �<?{�zrɩЧ�Y\']','',0,'?'),('v�ozMѾޒ6�a�$�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/EchoLogger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/EchoLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y��P��Ԃ�P!�>�','��E��\'BqF�\\�M���Ms�a�@>�b','',0,'?'),('v�y����8;݃�C�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/matches.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/matches.js',0,'q���d�2��m��H�5','q���d�2��m��H�5','��\rU��V�l�]�N�y�m9��i�m��\Z','',0,'?'),('v�^��r�k��{�/','wp-content/plugins/wp-optimize/includes/class-wp-optimize-commands.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f6��<}59F)1\Z,��','�{CSu�C�1�KiDC�\r<����i�hg��Y','',0,'?'),('v�[vⷣ����k�','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/README.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#�a���Hrݼ���x','N�M%{ɳ��S�u�R��l����4P��{','',0,'?'),('v��i���;���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/invoke.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/invoke.js',0,'�Q�Fob����ᮮS','�Q�Fob����ᮮS','�ۙ��s\"����rh�)�f2Id�G�k��delF','',0,'?'),('vâ,\\�+Q�����֧','wp-admin/css/l10n-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/l10n-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�H�<^6��P��R�','��0ӣu���{i;�2s�J�}䭇�Q�Äw�u�','',0,'?'),('v�D\0��x@f�g�','wp-content/themes/mint/node_modules/bower/lib/node_modules/filled-array/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/filled-array/index.js',0,'���3�+5ѝgi��\0','���3�+5ѝgi��\0','��`��ikm6�c^�yI֑��g3�','',0,'?'),('v�.�#P�����H2��','wp-includes/blocks/buttons/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/buttons/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�F����h5%p�D?','�v��F?��˨��l@c~J5�?��5�tN4�','',0,'?'),('v̴yЎWcwD\\�a;ړ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pipe.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pipe.js',0,'� ��Y��ⴹ2\\','� ��Y��ⴹ2\\','ɵ���̴�=������[�6��<\r��^���^','',0,'?'),('v��q?\0�{��=�ŭe','wp-includes/blocks/site-logo/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-logo/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\0ؼc�(Y\'~��:���','BG��eJ�A�8�����*��[���M�Q�Uxm','',0,'?'),('v��2ȷ��XO��6','wp-includes/blocks/list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��hEމ����Y�ҫ',' �O*�1������2��nl���������','',0,'?'),('v�?Qӎ|��7��s��','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/dump.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/dump.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\'�w;�+���',' Z�q��єO��Ζ��7��S�\0�\"�Gu','',0,'?'),('v�G�.�g�A��#�r�','wp-admin/images/align-right-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/align-right-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�l�>r�]�lW��x','�V:�h���#ȆBT�5i\0�?��c�Bc���','',0,'?'),('v���4�|>�<����','wp-admin/js/xfn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/xfn.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�wcW��_~\r�1��>p','4�[����Ÿ$[�\\��Ə�4�-3���z��x�','',0,'?'),('v�{#��l��b\0}��B','wp-admin/css/colors/light/colors.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/light/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�TG;\Z�Ͽ!�+ �','s��|����Q.Ý��mz��fh�l�/,ٗ','',0,'?'),('v��%��Os�i��','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�8!�b�I]��w�F��','It��<(]��%�TW~���Í#z\rr��� ��a�','',0,'?'),('v�Ҹ);�D��~J\"�q','wp-includes/js/jquery/jquery.form.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery.form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O����f������N',':�U��a�8��\ZP�����I�� ���j�','',0,'?'),('v���x��F^\"D','wp-content/themes/twentytwentytwo/styles/pink.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/styles/pink.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PNH��{�f*�T]a���','[��f��SmYRg�Wϥt�<)�8ݪ�~�>?','',0,'?'),('v�T�\0V�����','wp-content/plugins/gravityforms/images/template-library/eCommerce.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/eCommerce.svg',0,'x�r��cX��5�x3','x�r��cX��5�x3','�LW�w���Ϊ;�$��R���#�z�; �_�','',0,'?'),('w�ó�3�����','wp-content/plugins/wordfence/modules/login-security/css/ionicons.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/ionicons.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*�ƣٿc;���z���','��N�J�s�@�3 �:h)�7K�<�\\N�+','',0,'?'),('w2�!�y��bf&�1','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/escape.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/escape.js',0,'�#��\rP}��\0���A��','�#��\rP}��\0���A��','��z1�D���a��9���ŧ���BY�%J�','',0,'?'),('wu�l|��p��Q','wp-includes/js/autosave.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/autosave.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7P���E�CA�','�ߺ��K\ZX�Lz^ƙ)�Y̧��D���,�d','',0,'?'),('w�s�4a���.���','wp-content/themes/mint/node_modules/less/lib/less/tree/unicode-descriptor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/unicode-descriptor.js',0,'A�3N�0�X��q��','A�3N�0�X��q��','7�O�����Q!������d��ew��!\'�D','',0,'?'),('w+���P��N~�\rV��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/result.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/result.js',0,'��-��s]�] Q��','��-��s]�] Q��','���\\k��`\0���%�wh���i�.�����','',0,'?'),('w,�a\Z\r)�wb#�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/StreamHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/StreamHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A������;�z;','ٸ�r����j���:X7]��.+ZF����oƖ','',0,'?'),('w3*J��^Ȣ��2|@>�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_ListCache.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_ListCache.js',0,'�c2XF��\'��N�T!��','�c2XF��\'��N�T!��',' �>\Z��\'1���/��7��9���@��Z�9\'��','',0,'?'),('w5��Y�j\nʘ[?�[','wp-content/themes/twentytwentyfive/templates/archive.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/templates/archive.html',0,'�p�9����t��','�p�9����t��',';`������uUk�j��^�K��/���*H:4y�','',0,'?'),('w5�n3$���LZ��2`7','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-home-page-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-home-page-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=r����q��r���','��E�уM���7���\0+�ƿ�����','',0,'?'),('w8h*�\\;���e�[�','wp-includes/blocks/archives/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/archives/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����� Kݑ�։�','�9��j鹠�٠��4��Sq�ò��_\\`�','',0,'?'),('w@h(�\'���U','wp-content/themes/mint/node_modules/less/test/sourcemaps/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/sourcemaps/index.html',0,'j!E���c|�=�i��','j!E���c|�=�i��','�\\ߞqN�x�}V>��\"�tN�=�2�msjI�~','',0,'?'),('w@�+�/�F�L��M6�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/ror.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/ror.js',0,'���ٲ�Z�d��,�','���ٲ�Z�d��,�','K��c\'�D�y�0�V���D>�=�,ý�e','',0,'?'),('wAEF����w','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dissoc.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dissoc.js',0,',���1�.n9,5�(��',',���1�.n9,5�(��','�agM�G�eS�[��G����L/�7@[��','',0,'?'),('wC��)�.X~Mi�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_nativeKeysIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_nativeKeysIn.js',0,'��G�>��as\Z\'j�;','��G�>��as\Z\'j�;','��ܫz�0ōI�+(i\07D��X�c�a�(1���','',0,'?'),('wDI��-E��I�l�','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����e4�ʟ��E','���4N+&�:�<Y\Zt��\Z��qڡl�Y��','',0,'?'),('wG�5�����]T�� B','wp-content/themes/mint/node_modules/grunt-contrib-jshint/tasks/lib/jshint.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-jshint/tasks/lib/jshint.js',0,'���;.��p�U��','���;.��p�U��','͐�����=$\"��~��?�DA?�SU�t�H�','',0,'?'),('wHV�ҵ�l���%F','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchTaxonomy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchTaxonomy.php',0,'Qv��L�=Ҏ�9\0%�','Qv��L�=Ҏ�9\0%�','��7��SD1���\\��K�!�,��Ø8,T�','',0,'?'),('wJ�(��=h>V\"k]','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7415d9.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7415d9.min.js',0,'B\ZG챔���~���!','B\ZG챔���~���!','v\'�LL\0D]������O癚�Su���;#h�','',0,'?'),('wSEޕ=��w,��\\��','wp-content/plugins/envira-gallery/src/Functions/themes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/themes.php',0,'/ҳB�^�91ū','/ҳB�^�91ū',':�s��1G%���vR�)�l��!6E�b��','',0,'?'),('wTg>o�6��������^','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/once.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/once.js',0,'�/,\nPuI��ުo�,','�/,\nPuI��ުo�,','wB|�=��+�R�[4.B�\Z1����_��1�','',0,'?'),('wU���/Ya>؎&�H5�','wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Tables/Remote.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Tables/Remote.php',0,'�;4��9SqV���<�','�;4��9SqV���<�','E+u�ƨx4k���[pK9\"�bP�\Ze:e�PJ\\��m','',0,'?'),('wWX���[è9��F��','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/dash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/dash.js',0,'9�}�\rP���ǘ-V�','9�}�\rP���ǘ-V�','��fY��/,\r�h�cv���<��s�U*�f] �','',0,'?'),('wZ��kFD9�����h','wp-includes/blocks/site-tagline/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�fS.���J�',' ��B�TlPI���oH�gG�lmFybU�,@�N�','',0,'?'),('w\\����;������','wp-content/themes/mint/node_modules/js-base64/package.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-base64/package.js',0,'\r����\'\rЩ��ag','\r����\'\rЩ��ag','��Xk[��pG����q�r�⳹^�����wK��','',0,'?'),('w_Z�2V�#��','wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.7.2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.7.2.js',0,'����G�&fr1�','����G�&fr1�','W�������}N</�i�--G���*��','',0,'?'),('w`b����B���U�\"W','wp-content/plugins/wp-migrate-db-pro/class/Pro/ClassMap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/ClassMap.php',0,'Qg>�ű�&��(�р','Qg>�ű�&��(�р','#5Td\'�(I���o��y\n�Jq�\rSw�{��','',0,'?'),('weß�Y-��$�Y:�','wp-content/plugins/gravityforms/includes/class-gf-upgrade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/class-gf-upgrade.php',0,'�3�5Y�r�AE ���','�3�5Y�r�AE ���','�s˨2l�G�\0����Bv� u_e\0���Y','',0,'?'),('wgN���O��� c�','wp-content/themes/twentytwentyfive/patterns/event-3-col.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/event-3-col.php',0,'ƒ�l<����W��H�\r�','ƒ�l<����W��H�\r�','E~�NO��t��c�zMO�hC���y^�Y','',0,'?'),('wq�A��k�ԔD����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/uniqBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/uniqBy.js',0,'JH��x5��\\�V�R','JH��x5��\\�V�R','�o�Vk�6�Ѳ�>ط���v�;�-���1w','',0,'?'),('ww�c��A%��G��A','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/kk.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/kk.php',0,',<ŝS���z�uF�(�',',<ŝS���z�uF�(�','��J2h���~j��&�}����}���{�','',0,'?'),('wGuY��\"�jb��','wp-content/themes/mint/node_modules/bower/lib/node_modules/md5-hex/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/md5-hex/browser.js',0,'��*�� �L�+]0�\\%','��*�� �L�+]0�\\%','%zp%<���Nܿ�O����#���6q���xC4C8','',0,'?'),('w��M��\r$�Nb5�]','wp-includes/images/media/spreadsheet.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/spreadsheet.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','68�\'���;��6.G','��fNjB�ΐFl8� U�WFj�&YW�� �n','',0,'?'),('w��g���r�{֚�^','wp-content/plugins/wordpress-seo/vendor/composer/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]_�#D���\0��','\Z ��ے�%�4~N�~Gh!b��:w��Ɍ��\'','',0,'?'),('w�c(F\n��M�)ɢξ�','wp-content/plugins/soil/src/Modules/CleanUpModule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/src/Modules/CleanUpModule.php',0,'0z?�Om��#�m','0z?�Om��#�m','���t�����u[0FȞi�[��\r���|�','',0,'?'),('w��u�J���ݏ5W��','wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/test/test.js',0,'��fSy��0���ś �p','��fSy��0���ś �p','?\"��� �f�Ǣ�_���G�ܙ\0�H�b]�ʣ','',0,'?'),('w�ž�!�J�La/+�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Pool.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Pool.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���G�����j�q�','�ZK��Z!��S��˱���|�Mt��J�','',0,'?'),('w��\'�\Z���/����','wp-content/plugins/wordpress-seo/src/helpers/sanitization-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/sanitization-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8��+�d}��UP','fi��8�S��ҥ��zT����d�\"w�\'�q�4','',0,'?'),('w�y���[��笑X�{','wp-content/plugins/gravityforms/images/template-library/UserRegistration.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/UserRegistration.svg',0,'EsmH��D4S��-pV','EsmH��D4S��-pV','�Pj�Y@qV���`�#H�6]�\Z߰__�','',0,'?'),('w��\"|���\Z^$(f�\n','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/test/registry-url.test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/test/registry-url.test.js',0,'��I�X\r�Ͽ���o/','��I�X\r�Ͽ���o/','��Ҳ�dQ�Σ���bw_��>�\'u,�:!3�D','',0,'?'),('w�)V:�H&2\'$C��R','wp-content/themes/mint/node_modules/form-data/node_modules/async/lib/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/form-data/node_modules/async/lib/async.js',0,'W�d5��F��|%Ź\n�s','W�d5��F��|%Ź\n�s','���Vn�QC`��+�L\0N�ѡ�*���','',0,'?'),('w��V7ip��R�rʆ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/pluck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/pluck.js',0,'D�?`%eM�����r','D�?`%eM�����r','`�Cy��A�-ڢ,q�G�iڑ9G���ŋ','',0,'?'),('w���L��0���]r.','wp-includes/images/crystal/code.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/crystal/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�1�����1�9',';�67����\r�!����x\Z_@H��&C��-��','',0,'?'),('w�@�I�e��R�f�7��','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����h�R���','���=�mH��/�\ne��C��3�u58�','',0,'?'),('w��`M��>�{���','wp-admin/includes/noop.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/noop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�Ðo�K�KV�e','��(��CF�γ�ϓa���s��FI`I��s�DD','',0,'?'),('w���3��E~0F��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/CreateWidgetTypeCallbackSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/CreateWidgetTypeCallbackSniff.php',0,'Y\\|��� �ƞ�','Y\\|��� �ƞ�','2¨\Z=k8�Иd��p+��0�9΄a��F;T','',0,'?'),('wË���9/,+1��','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g۰/*���C,k#�','avxu��흶j��=�I�S��D{����!','',0,'?'),('w�cΪ���@v��W','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Collection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Collection.php',0,'^���Z��8L/-�ߊ','^���Z��8L/-�ߊ','d��s�V]�\'�p�hct��{���m���g�','',0,'?'),('w�������9','wp-content/themes/mint/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary.js',0,'ϥ�x��e@�����','ϥ�x��e@�����','%z�7D78�����;|ɹ]M>�u��\\L���','',0,'?'),('w�A���``�{��b','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/takeWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/takeWhile.js',0,'K�����w�g���97�','K�����w�g���97�','�\"��\\r���>&$@c��V#��c���','',0,'?'),('w�Ջ\\�G�&���A','wp-includes/blocks/template-part/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/template-part/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{oŅ�t�c�7��S�/(','��v*�r����u��ߩ�MqR !�g)M?��','',0,'?'),('w�D���?�[#�/pg4','wp-content/themes/mint/node_modules/bower/lib/node_modules/core-util-is/lib/util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/core-util-is/lib/util.js',0,'�ʭ+�#�;=s��$','�ʭ+�#�;=s��$','!�c֮��M����C�(d��Pg��s�','',0,'?'),('w�+2v�)wq0�\'OG�','wp-content/plugins/wordpress-seo/src/routes/yoast-head-rest-field.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/yoast-head-rest-field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�c��[I/��ބ v','��*M�a��n��8C�H)0����.��-T��','',0,'?'),('w�hL��m�$�p�','wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/prettify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/prettify.js',0,'��%�Z@���UO��9','��%�Z@���UO��9','�� ]�|�4��~�H����.��k��Ĺs��','',0,'?'),('w�$Y�Ra\'��,ض ','wp-content/plugins/wordpress-seo/src/values/twitter/images.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/values/twitter/images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ɗB�o��iӖ�b�','�=�]MKg9`��D,�=�t��5m���T�','',0,'?'),('w������:}V��P','wp-admin/js/common.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/common.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Vn ̿J��Qݔw�','���W��S���3ݪ�R1�Y�U��/�','',0,'?'),('w��Q���Sg\r��','wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-04.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-04.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jS�M�vՖ��{Q�:<','5��u�_�Պ�`�7\0���]��7�%�]�','',0,'?'),('w�(�>\n��e���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/zipWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/zipWith.js',0,'Ud�����on��܅','Ud�����on��܅','��LܢP[���N}���4.X&�C�����|��','',0,'?'),('x3��=��0�A��ߒ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/pad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/pad.js',0,'a\r�3�w#��e/�~�','a\r�3�w#��e/�~�','s��Ӻ\nN\Z7�����,H97�>���pg����E','',0,'?'),('x��4�cyS�jE�8!�','wp-content/plugins/envira-gallery/assets/js/lib/min/envirabox-thumbs-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/min/envirabox-thumbs-min.js',0,'�3��1�}~��r�I�','�3��1�}~��r�I�','!�181�܅t�.�EGx���E�β��v�/�','',0,'?'),('x G!N�$�.�d�Tb�','wp-includes/ID3/module.audio-video.flv.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/module.audio-video.flv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(���AZ?�!x&3h�','�7T@�7�l��E�œ#�����V�,�Li��\'�','',0,'?'),('xFO���0uO- ','wp-includes/SimplePie/library/SimplePie/Enclosure.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Enclosure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`��^�w��~A�L����',',�ù|}d�yw�l�m�~ �\\L��(g�*C3','',0,'?'),('xU��?<x3)����','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Notifications/ConfirmIdentityNotice.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Notifications/ConfirmIdentityNotice.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�2�xP\\zF���`�','��zdU��U�܀p���WOI ,���]\0\'��%�','',0,'?'),('xq��S�ig-�6N9','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php',0,'�*3]�<��]��\'��','�*3]�<��]��\'��','нrt��}�Q�7��@��I=}�amu�(�Q','',0,'?'),('x\"�����0�>�s]5�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php',0,'~��s���4\0�%k�','~��s���4\0�%k�',']��\0�>�����\\�\Z�kgX�4�u�QOi$','',0,'?'),('x#�bW;i�{i�g�','wp-content/plugins/wordpress-seo/packages/js/images/g2_logo_white_optm.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/g2_logo_white_optm.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����m�j<�]�5K�','���!�ON@h�A��v-���4��J\n','',0,'?'),('x)�K!bJq��\n�;�1','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/UnusedSystemSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/UnusedSystemSniff.php',0,'��>p���c�⬻','��>p���c�⬻','�r��E\'�w�רO7�\r^ X���c 1��d��','',0,'?'),('x*��{\ns\rm�L�_g�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/unescapeHtml.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/unescapeHtml.js',0,'�87�͠hP+��l','�87�͠hP+��l','*a����[:��\"TT��W�DP�/r����K�7','',0,'?'),('x6\"��Ɛ�p{U���','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php',0,'��S�(ؒ�Y�K��\Z�','��S�(ؒ�Y�K��\Z�','������Q���2W�\n�aEd�`F}E���a(','',0,'?'),('x6��\\$=w&�+���Z','wp-content/themes/mint/node_modules/less/lib/less/tree/assignment.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/assignment.js',0,'�L2�0m=���s֖','�L2�0m=���s֖','��Yh1 �^���rʃ�a��)�?QwF�G�\"��','',0,'?'),('x7DG����,��\n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/doParallelLimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/doParallelLimit.js',0,'wM;���oĤt\\��D','wM;���oĤt\\��D','~t`g�/���!}�T\0݅n_�`��G��Z5p','',0,'?'),('x9@^6��ߑ��o��','wp-includes/images/w-logo-blue.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[N�W��_p�w�0','ޣ^Q�t�3�H�unU❻��~�\'�T2','',0,'?'),('x9����ܡ B1�B','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/childNodes.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/childNodes.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�`~�n�gDB؟','��9Ȼv&qt��d�2/�ì�aK�261','',0,'?'),('xD.!��5C�T�bW6','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-color_picker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-color_picker.php',0,'��o�h���p�v9�`�','��o�h���p�v9�`�','6�o�Ο�*��`�\\��ڿ\nz���@e� >a�','',0,'?'),('xIH�.�9�Y��BO','wp-admin/css/colors/coffee/colors.scss','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/coffee/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Qw:���ҫa8��h4','8ճ��-\'V�����\'�ݣOH�;dN�\r\Z�ܡ<','',0,'?'),('xIĉ7�W��~�3�p','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementByTagName.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementByTagName.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d+�,���+�k��\r','��ia�$I�G\\�*�0���!��M�j�W�H','',0,'?'),('xJ����ɘYtw�d','wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/composer.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o�l(�;�\\W��h','��D�j���4���7���1ʹip�����/�c','',0,'?'),('xLKx ��2��Is�!#Q','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�U������CB\"','��)M���쩂tU��δ�Ԫ���F.�','',0,'?'),('xV�M��>�n�{O�ǟ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I,0�`�-=�OxH��','Ⰱm�Wka���2��Sj�>����\"�w�<','',0,'?'),('x`�s�p�(�7$\'��','wp-content/plugins/wordpress-seo/admin/views/partial-notifications-warnings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/partial-notifications-warnings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ն���F��>','(\Z�9[�h�a����=��o�Y�^L{_A�.S','',0,'?'),('xa�KP9��j� �','wp-includes/blocks/comment-date/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-date/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E.^��-�u�M��c','�Hx玩b��=J�����]�t�qx���u','',0,'?'),('xb�*oW_��R��)`�','wp-content/themes/pinnclonesmalltest/vendor/composer/ClassLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/ClassLoader.php',0,'�����|%��*T*�`�','�����|%��*T*�`�','�����289v�u3�n C2�s��va/�','',0,'?'),('xdq�䳢��s� ��ـ','wp-content/themes/mint/node_modules/camelcase-keys/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/camelcase-keys/index.js',0,'�X�A���ä��%��a','�X�A���ä��%��a','\"\ZK�ʥg9�����%�G7\\w�6Ð','',0,'?'),('xe�˅�诹<��/eY','wp-includes/blocks/tag-cloud/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/tag-cloud/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�8q���<#y�q�;','{F\"4�f���½�s��o���Κ>5*YDzbX','',0,'?'),('xo�<��q1�8�\r','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/DataCollector/TranslationDataCollectorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/DataCollector/TranslationDataCollectorTest.php',0,'���4)��`#�r��','���4)��`#�r��','q��Ȕl�BF��0�Ũ�&��|I@bT��','',0,'?'),('xs�6+�+Y� +��T�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/lpad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/lpad.js',0,'z�T\0eWWa�L3 Ζ�','z�T\0eWWa�L3 Ζ�','��9��Ů��X�ƀ\Z%Gj�+�����}\'\r*L','',0,'?'),('xw�>��K���~\0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arraySampleSize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arraySampleSize.js',0,'*q�u^SRK�6��','*q�u^SRK�6��','2 6�$+cA���Sݯ��|m\0 �M=��x<]','',0,'?'),('xy�!��q�)�.ˉ\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m����͟��r�� 9','; �_�Y���t�7K��s��mC��\r����o','',0,'?'),('x~6�wj�B��a��� ','wp-content/plugins/wp-migrate-db-pro/template/common/muplugin-failed-update-warning.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/template/common/muplugin-failed-update-warning.php',0,'��T9Ƿ ���lL��','��T9Ƿ ���lL��','{�x�����:��g��r�(V��y/�Ih','',0,'?'),('x�7.D�&�ڹ�g�','wp-includes/blocks/navigation-submenu/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-submenu/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó����K�|?M��','g�9�S)[�\"K���oA��~�<�PK<�|��','',0,'?'),('x��2D��n{�M[/E','wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7���\\���\Z���En','{GS��0�����)��.~��#m�}�:2��','',0,'?'),('x�^m�]̲�/��L4vU','wp-admin/includes/revision.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���P���J�>�0','��F\\H�-SC��d7���8����z��(�NN�c','',0,'?'),('x��\r�TۯaT�H�S','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/whitespace-control.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/whitespace-control.js',0,'e�Q��@u\Z�+�','e�Q��@u\Z�+�','�e����XL�fm5B#6���D�À#�#+%','',0,'?'),('x��F�9�IY��6��A','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-vhunit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-vhunit.js',0,'_��\0����1��/�\n>�','_��\0����1��/�\n>�','�+?�AЂ�����(���~�\'�d@�����','',0,'?'),('x�a���s2���X�','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/updates.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/updates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�ںښ�\npʦ��M','�A�9�jd��@kýS�H�O��\0��\0�J�~','',0,'?'),('x�����-��ƌ\0:��','wp-content/plugins/gravityforms/includes/honeypot/class-gf-honeypot-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/honeypot/class-gf-honeypot-handler.php',0,'Ū$=�P��:jhO֒X','Ū$=�P��:jhO֒X','�����5�,�)�u�D��&��ez#�sb��5','',0,'?'),('x����5LC�}��','wp-content/plugins/wordpress-seo/admin/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EЛ��O0��c���Ag3','�� 蚠{�c�FJ�w��!}a���9�','',0,'?'),('x�*��3u<�e�Z��H\"','wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-salmon-background.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-salmon-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H7����K�� 9w�','��.��s�FRp��A�T.�,E��H�QL','',0,'?'),('x��F�����2�J�d','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/ceil.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/ceil.js',0,'dZp��c��1L�D)�\0\Z','dZp��c��1L�D)�\0\Z','^Я|���i�f�c d�;bH.xq���M�bg','',0,'?'),('x��\0��ꨰ���S+6]','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-archive-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-author-archive-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c��}�0y\n������','ߎ�Q��¬b(:`#�PA��3DfE��P�cF','',0,'?'),('x��e�(�i��j\r�<','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isArray.js',0,'��g�ӻ\"�j�k����','��g�ӻ\"�j�k����','�@���lm�\Z݂q�l;��|P���aR�1�','',0,'?'),('x��9��~X?1��=','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createFindIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createFindIndex.js',0,'PA�$e��K־C�j1','PA�$e��K־C�j1','�s���\re&4(��yj%���-�>��\0�գ�E','',0,'?'),('x�4E�����<�� 恑','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Exception.php',0,'����e����ѫ���','����e����ѫ���','g��QO���~���@��,�r�Gr�He�W','',0,'?'),('x�����m�a@nn��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/wrap.js',0,'�T-c\"��u#Ѩh= ','�T-c\"��u#Ѩh= ','@�+��,�I�\r���x��$�6S^%-�傈�8:','',0,'?'),('x�6r�ʼn��`G�JD','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createExtremum.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createExtremum.js',0,'-W͘\"�5ɪ�HI�','-W͘\"�5ɪ�HI�','�[\'�n\\�?ԩ�\">?��I�#� \'���H~ǰ','',0,'?'),('x��~��\"�{ҺM��-','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ImportProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ImportProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0�}��c���wo','�(�Ƅj����\Z��%��A�E��Ÿc�','',0,'?'),('x�f��@�_}c�}x�','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/redeyed.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/redeyed.js',0,'��\n�JG�l6�M�b','��\n�JG�l6�M�b','PD�x��.\r�Y3@r��\r�o��\ZȪy�2','',0,'?'),('xɭ5�\Z9V!eT���5','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/LoggerTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/LoggerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r��).�X��i�@�KS','i�l��6~?���+Z� ]_;戼9\"�ü�C�H','',0,'?'),('x�q�q���t�X3ʪ','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-utils/test/deepOwnEqual.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver-utils/test/deepOwnEqual.js',0,',����oӏ���l',',����oӏ���l','o�p���R-�eO���]����J���@��I2','',0,'?'),('x͙r0Mh���S]�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php',0,'�3���k(=IH\Z���n�','�3���k(=IH\Z���n�','�ZX�c�cJ��iӣ7���d�ٻ�L�$D�','',0,'?'),('xљl1Ӽ��B�4���','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-mk_MK.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-mk_MK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�Z3��U:�t�Q(','�`,��3� Y�м�j�m4@�\r��>��|','',0,'?'),('xԑ���\"\Z�aK�EbD�','wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/minimatch/test/basic.js',0,'i�\0����v1ʃ%,� ','i�\0����v1ʃ%,� ','K����*�d�س���*�Y3���Lى\nI�K^','',0,'?'),('x�\Z�W�1��ȟ��>g�','wp-content/plugins/soil/soil.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/soil.php',0,'+��\Zޒ&<�;��q$','+��\Zޒ&<�;��q$','F�E9�E�:�f�SMl�-w��r���q~{','',0,'?'),('x�.���X��J$�ɮܹ','wp-includes/blocks/pullquote/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��W�z�� ︎\n��',')6V�-l.w>�!ؘ�!�\\tC�t�;\\�1','',0,'?'),('x��&V��+,3��4�','wp-content/themes/pinnclonesmalltest/resources/views/partials/content.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/content.blade.php',0,'�+5e54-.>f�,P','�+5e54-.>f�,P','��Wl�8R��s�E�L�����Ҡ�Z|d|�','',0,'?'),('x�@��`y�QQ�u9*','wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/package.sh','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/package.sh',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8���U�~䰷T�R(','�!�8�\',�\Z]�\\<��\0Y�6���\\# &<','',0,'?'),('x妉+��=�ؒ\"��j','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/invert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/invert.js',0,'9;�}ʹ=}@\Ze��','9;�}ʹ=}@\Ze��','\01�b�`�f�sDI��4e*�<dۧ� /FO �','',0,'?'),('x�`�+9��[��a�;��','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/NotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/NotFoundException.php',0,'�o2�u\"8�� ��','�o2�u\"8�� ��','�v�����zO%6w+j�ދ]C���KD�q4��','',0,'?'),('x덂��@}Y��i�+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ώ�@�/@M�m�N�','�xM��\'Ȥ��=�ڷ�?$�S,Fy���֥','',0,'?'),('x�z#�]�r�u?0��O�','wp-includes/sodium_compat/namespaced/Core/XChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h���g`ɸ:ڕ^','���F/Q�H\0���^l 0�BΓի6S@Ph�','',0,'?'),('x�>q�^pE)���lz','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayReduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayReduce.js',0,'0L�?d/>�}��M�','0L�?d/>�}��M�','��&T�&�W�\"�g�}�ق���-�pi��','',0,'?'),('x��R�2�(���b���','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthUser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthUser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��e>=�Z\\��ˀ#(�','�I�8\"�[�\\�C��ې�$\\��#�1���Y','',0,'?'),('x��w�kV\'��.ˇ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/bin/esvalidate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/bin/esvalidate.js',0,'�ǾŶ)?�ǷNV��k','�ǾŶ)?�ǷNV��k','��R���A��4!�m�%��Qx��{7� W��?#','',0,'?'),('x�܌c�{QY#�F{S{P','wp-content/themes/mint/node_modules/argparse/examples/choice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/examples/choice.js',0,'�8��W�f�)D;9��','�8��W�f�)D;9��','�/uP�-罳��ƭy~.�^r��O��tS�P\n�','',0,'?'),('yj�\"��(9d��~�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/CommentedOutCodeSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/CommentedOutCodeSniff.php',0,'� �oOH�\0z�닓��','� �oOH�\0z�닓��','~D�BmEKQ�y�����y6��!���U�','',0,'?'),('y���1��-�/fIנ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��09\r�ɘa�d���P','F*O�Оq^�l��gz���,I?�b�R�]K�ֳE','',0,'?'),('y���Z�#h�^S�','wp-content/themes/mint/assets/vendor/jquery/src/css/addGetHookIf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/css/addGetHookIf.js',0,',$����\n�4�o$�',',$����\n�4�o$�','�ʋ�\nG��q���P�ۣP�}ls��F���','',0,'?'),('y�1��ݡ��}�{F','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/thru.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/thru.js',0,'d�zn�j&�rrV�C�+','d�zn�j&�rrV�C�+','�V�dBaX��\\��k�{i]��䌃{���0','',0,'?'),('y���P��Wt��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/dayOfTheYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/dayOfTheYear.js',0,'�t�}v�]u_���','�t�}v�]u_���','�T�A@r�}��->z�~�i��o`)�I0=�c','',0,'?'),('y\Zn��U|��o�Qv9','wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/test/env_fn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/test/env_fn.js',0,'���c}/��oP�Bn','���c}/��oP�Bn','��$��/?�|#/Dϭ����C�gI��W_�(`�','',0,'?'),('y!��)\0�r��J�H�','wp-content/themes/mint/assets/vendor/jquery/src/var/indexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/var/indexOf.js',0,'b%���\\����u��','b%���\\����u��','y#}�Ҝ&�L>5W�,|\0]�f�W��C\n<\\�;�','',0,'?'),('y&E�zݜ�Z�yڲ','wp-includes/class-wp-recovery-mode-key-service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-recovery-mode-key-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�Ae�ハ+?�-��','\\��kC�R?���oE��筓\no�hٞ��\\\\�%�','',0,'?'),('y+�|pU��\"�AY�$F�','wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-rss.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҋ�U�X\n���ݚ.','蕸�A�4�#)��)��śoG�e�9�l�/�p&','',0,'?'),('y+����ukAS �','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_castFunction.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_castFunction.js',0,' �:�|�e�ڄ�\r�`',' �:�|�e�ڄ�\r�`','����<\0����$(پ|1*��\Z�ݧ�&�a\'','',0,'?'),('y2����&TݼZ�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/whitespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/whitespace.js',0,'�j�.bS���B�j','�j�.bS���B�j','��4ͼ��X$�C1.���W�����~�;\\','',0,'?'),('y52�m�\0�l�\"�e','wp-includes/js/dist/priority-queue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/priority-queue.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e$0Ahڰ���~�M','�� �g��V��\n��UЬ�y6�e$~RP1�8�','',0,'?'),('y6��(��Ie�-=���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isTypedArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isTypedArray.js',0,'Y����y�8���','Y����y�8���','W|Ќ �ɿ�)�eK�V~����e���','',0,'?'),('y7ͧ�V_�UB�}�','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/file-writer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/file-writer.js',0,'�Ŀ$2sA!5�o�','�Ŀ$2sA!5�o�','q���$�ޗ=�8�:\n�4�=�t���1��','',0,'?'),('y;�w(�\Z�C�M�','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-root/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-root/index.js',0,'4馫��A\0�Z��\ns','4馫��A\0�Z��\ns','� ��Vh4N�᠋4�JT�bp-�ȏC�%�6L','',0,'?'),('yA��0���Xz(��\'\\','wp-admin/js/widgets/media-gallery-widget.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/media-gallery-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W����l�3I�E�h��','�ZhX\0����� ,P�6[�=��2���','',0,'?'),('yM]x��%���_^#\n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/mergeData.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/mergeData.js',0,'�u-�÷1�\nA�� ','�u-�÷1�\nA�� ',']K!b��l��m��W��\\x�ۄ�{=7+��','',0,'?'),('yOi�f\0��\"?]ż','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php',0,'oG�����E���\r','oG�����E���\r','�}�Dl�q��X��\"a�G��Gu��VX}��=','',0,'?'),('yO�\0yj�eB\nVp��','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{��$��Ǽ�����','j�5=�Y��$�����Q��Uм�u�*E','',0,'?'),('yPƨ��8C��V�6�','wp-content/themes/mint/assets/vendor/jquery/src/jquery.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/jquery.js',0,'�ݥ�*c�M�%m��pG�','�ݥ�*c�M�%m��pG�','h-�\"̏v�z8 ��նՌF���vKZ�U�C','',0,'?'),('yT�:��Xi�\'�&����','wp-content/plugins/wp-optimize/includes/class-wp-optimize-updates.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-updates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�auV�� ?;R��8���','�?�P�-���\0��zj�E��o<��&�\"A\n��','',0,'?'),('yW�K�:�/i�JZ`�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mime-db/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mime-db/index.js',0,'����K7B��\r`8�','����K7B��\r`8�','�K,�\'T�S]��z(t�w�y��356\n�sZ','',0,'?'),('y[Mz��:8|дdF��','wp-content/themes/mint/node_modules/bower/lib/node_modules/untildify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/untildify/index.js',0,'4,��\'�W�Y#F�','4,��\'�W�Y#F�','��fa�ײ�:@��ÈW��tzE�-\"��5��\0','',0,'?'),('y^��|nBA(�U���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/head.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/head.js',0,'\Z�����G�ɠ?���U','\Z�����G�ɠ?���U','܃�bl��ґ�� ���t[�t�]lz��,���','',0,'?'),('yi[�\"Y�hoԣm���','wp-includes/css/dist/patterns/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/patterns/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Y![m�=��S�o','IV�\\��_�����u��5{C_Y�c��','',0,'?'),('yi뷌�����Ӊ0L�2','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toUpper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toUpper.js',0,'`\"d06S\Z�T�ۏ�','`\"d06S\Z�T�ۏ�','p�]@ʭ�^c�c��n˦%\'����7�\'�?E�','',0,'?'),('yq�����uv�k�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-vwunit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-vwunit.js',0,'�\\�=qGg� �����U','�\\�=qGg� �����U','���P\r �MK�T�w%����Đ�D�.�(rZ�@','',0,'?'),('yuh��m\06��2�6�v\0','wp-content/plugins/wordpress-seo/src/helpers/image-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/image-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$�gD��wp�;���','�M�vP�|��-^\Z?�oY �p��VΖ�^j�(�F','',0,'?'),('y��\n�,\nC�|[i','wp-includes/customize/class-wp-customize-selective-refresh.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���P�Wgi�g��c','+�tiʃY�A5���n}}- ���,� �rQ','',0,'?'),('y�r;���9)3W�+�(j','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-transformer-service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-robots-transformer-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V��N��Y`��|�\"$','B�yyŪ������S�s۹�!���','',0,'?'),('y����B��\0�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Hashing/Hasher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Hashing/Hasher.php',0,'�M�\rV��=/+�V��','�M�\rV��=/+�V��','�m�SI�\0����!� ��0jW��U����P','',0,'?'),('y��Z�����U2t','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Traits/Localizable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Traits/Localizable.php',0,'0C��-|��\n�D��','0C��-|��\n�D��','��.����Ա�ql��K@�4���\rj���EJ�2','',0,'?'),('y�ܣ���(��wL��O','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-0d7815d9.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-header-0d7815d9.min.js',0,'�Cl�s8\\�Rw�5�w','�Cl�s8\\�Rw�5�w','�w�=���x[�ԴV<ȕ�)F�ƚ�/L,�a\n','',0,'?'),('y��{�\\b�a\'�\\','wp-includes/customize/class-wp-sidebar-block-editor-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-sidebar-block-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]m��L-D���+Zٕ','�o,bL�nB��Qv�-|q�d���\'B=�X&','',0,'?'),('y�xM���@�O�','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-smartcrawl.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-smartcrawl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t@��N����j��^E','�~���/��|kc��gj�#�㠻�0��t�c','',0,'?'),('y���8�yD�/���.�','wp-content/plugins/wp-migrate-db-pro/frontend/template/public/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/template/public/index.html',0,'R�vҳ��3�w4��U','R�vҳ��3�w4��U','J���<����L�Q���\Z��b�8O�ֶ��C�:~','',0,'?'),('y���zҶ�a��W6���','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/ZendPlatform.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/ZendPlatform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#I�6$r\0߅\Zҷ�','�\0CX��p��l�7�T�ۀ!�:�zC�<��','',0,'?'),('y��������R?kZB�','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':�pD��8ƾ�u���2','��#�wy?�V�ڧ��e�0M��(�%3*���\r�','',0,'?'),('y�zhY��b_�G����','wp-content/plugins/gravityforms/includes/form-editor/dialog-alert/config/class-gf-dialog-config-i18n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-editor/dialog-alert/config/class-gf-dialog-config-i18n.php',0,'4��H7�~~ �0ŽF,�','4��H7�~~ �0ŽF,�','\0�Tn��Ȁ�S䨮�\rN)���{����I�}�','',0,'?'),('y��V�|/�N/����','wp-content/plugins/wordpress-seo/js/dist/externals-contexts.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals-contexts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@@�8X��ٵy]�','�0��k��uPIPQ{!�ե@[�\nm','',0,'?'),('y�6}�0Ud �z:�r2','wp-content/themes/mint/node_modules/bower/lib/node_modules/infinity-agent/https.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/infinity-agent/https.js',0,'a^�跺H3���$','a^�跺H3���$','�˜6��l��.�(\0Ba�,��Y9^� \"DA:�','',0,'?'),('y�X����k�~xOAM�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/ocCheck.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/ocCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+��sl�Ap�� 5��','�a曽��,=\Z�E���(i����\\��m\\�l','',0,'?'),('y�� ����ٓ}���','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-cs_CZ.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-cs_CZ.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M�\rJ(���Y','c�Kk�ړ� Ɔԉ�c���I\'V�$N�@�0TC�','',0,'?'),('y��9mٝ�)8�\'�p','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isError.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isError.js',0,'6C\"d2#�%$��}','6C\"d2#�%$��}','��͆=����T2Ir��jy�#ס��gC\\��@','',0,'?'),('y��:���#qP��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Drivers/HttpClient.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Drivers/HttpClient.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�٢t�T0�,p�m�=�','\\_��e#��~ч�>f�<4\r�%l�I0$���','',0,'?'),('y���E�a��:�[\0','wp-includes/class.wp-dependencies.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class.wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o=`,W���Q�-��8�','\"]_���1ts�\"d����-{����Ă��^�\\','',0,'?'),('y�ɮ;�E�_M���H','wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/test/escaper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/test/escaper.js',0,'�xȢkt�س�wd�Ȝ','�xȢkt�س�wd�Ȝ',' �s9\Zm�.����(��,��I$�U!+�4Ɠ8','',0,'?'),('y��]�m-w��4�-{�','wp-content/plugins/wp-optimize/includes/updraftcentral.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/updraftcentral.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��fW(�٧.Q�Ba\\�','*i/b�wO�hZ���OQA[�`�J����v4O','',0,'?'),('y�F�^��K2l-�սb','wp-content/plugins/gravityforms/legacy/images/datepicker/datepicker.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/legacy/images/datepicker/datepicker.svg',0,'gޮ�ɲ�c*�j[��h','gޮ�ɲ�c*�j[��h','c���nx7)c@���$�N���5m�','',0,'?'),('y�R���K;��]p}��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',0,'KE6�����P\0I�6�','KE6�����P\0I�6�','U�=�^���k\\p\'}4&��dt�fhU3[','',0,'?'),('y�Ԣ�[�LEȤ��$','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_static.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n_��\0$F�������','�m5Sx��r�P�;Z7�TÓ�]ơ���m`','',0,'?'),('y�#�Hc��s����','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-footer-118236ae.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-footer-118236ae.min.js',0,'v�a$�v��\n����1','v�a$�v��\n����1','��еx���{�4�_o�Z������V�щ&��5','',0,'?'),('y˼� n�5��Yi\rf','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ControlSignatureSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ControlSignatureSniff.php',0,'�i�[7���>N�','�i�[7���>N�','�̔\ZVc�OQ7t��{�JOfW\n\0�0�pa�','',0,'?'),('y��a�^��/���.�7\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/utils.js',0,'7��I2�Jfa+\n���e','7��I2�Jfa+\n���e',']��s���j�:6�s�т�/{�)�����D','',0,'?'),('y�H���D8o�i���2�','wp-content/themes/mint/node_modules/loud-rejection/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/loud-rejection/index.js',0,'2��>�/~�]C* �L�','2��>�/~�]C* �L�','Y9s>a�j\05��Jb�ϧ�C��?�ѷD��1','',0,'?'),('yк�p�6�,i����','wp-content/themes/mint/node_modules/text-table/test/ansi-colors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/text-table/test/ansi-colors.js',0,'T/�,&�)\nɘ}SQPT','T/�,&�)\nɘ}SQPT','iҒu��87ؑ��90�[U�H�8G�/�9�?�5','',0,'?'),('yѨ9 HM4\r���\n/�','wp-content/themes/mint/node_modules/pako/dist/pako_deflate.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/dist/pako_deflate.min.js',0,'�!������+�','�!������+�','��e��T~��\"uG�V�A@������\Z4q^a�','',0,'?'),('yӄ����9tr����','wp-content/themes/mint/node_modules/escape-string-regexp/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/escape-string-regexp/index.js',0,'{6lm#d����o�\0�5','{6lm#d����o�\0�5','B��<o2��)�Ď�N�Dq�L�?#wC�','',0,'?'),('y٥Nr\r\".M� C1�','wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/test/test.js',0,'Z��\'A\n�ёr�O\\�','Z��\'A\n�ёr�O\\�','��z�u[�V��+��-q�XL*�w�4��״','',0,'?'),('y�3���2/��[X#��F','wp-includes/blocks/query-title/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�!K-�Į���rM','��[*�����N/e�+H_%QX�@3r�gu','',0,'?'),('y���G�\\`��MR�','wp-admin/network/site-new.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/site-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�WTIS@$�q�8���','ET�3*?����\"Ŗ��.u]���k�Z>��=','',0,'?'),('y�e�m$�J����S','wp-content/plugins/wordfence/lib/wfDeactivationOption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfDeactivationOption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� }?�� ����5','�\'���zg/�ٽn+u���F=�[��\Zl�','',0,'?'),('y���\0Lz�㶵�و','wp-includes/blocks/group/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/group/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}]x�^E�����-��','y� [q�j\Z\ZO�2��;��Ja�t��E��mB','',0,'?'),('z\n�IX��\r��Ԓ:��\n','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/noindex-author.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/noindex-author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~���\0|����|','+j�O�0����҄�*r,�B���RS ����z\0','',0,'?'),('zɐ���@�/�/@�','wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�58O�O�}��s','����$9�dS>;�:���\n��ad_�X��[F','',0,'?'),('z��.ˆi!,���','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php',0,'�|�?B���Nфה�','�|�?B���Nфה�','��\n���o�\"iR�oK`�/i�o�]�p�PA�-','',0,'?'),('z�q�\'&�\Z-*�oUz','wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-custom-field.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-custom-field.php',0,'SU �����g��T1x','SU �����g��T1x','�8��]��\n^���O��)�G��d~��ʌb��','',0,'?'),('zz*�Sd&�!�\"���','wp-content/themes/mint/node_modules/bower/lib/node_modules/tweetnacl/nacl-fast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tweetnacl/nacl-fast.js',0,'���Y^�\"�$o\"�/','���Y^�\"�$o\"�/','g�GH�|e7��1����3�Bm}��0&\r��2�','',0,'?'),('z.[�D8�R�','wp-includes/js/codemirror/jsonlint.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/codemirror/jsonlint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I)fy��kT�+��<՟','�$D;;����0���F�~p��GғF�ˁ��','',0,'?'),('z1�f��5,��!b�4','wp-content/plugins/gravityforms/images/check.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/check.svg',0,'߃^Xd��?J0P��','߃^Xd��?J0P��','$�m����X��K����H\'bД}Ft0��1','',0,'?'),('z3+D��s�iQ��\\X^','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/MessageSelector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/MessageSelector.php',0,'5ǹ�p��1�h����','5ǹ�p��1�h����','�kx�h��/�u��*h��:���\ZOz{М�}�0','',0,'?'),('z8\r���4� #U�&','wp-content/themes/mint/assets/vendor/jquery/src/ajax/var/rquery.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/ajax/var/rquery.js',0,'��H�~���]�@<','��H�~���]�@<','h������O��h�YGE��/�1~\\�\n��_��','',0,'?'),('z;j2WD�6��[�V','wp-admin/js/accordion.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&�PT!��#�7Y�R','9���m���.�@B��G�L��WksE�','',0,'?'),('z>&�\\˅e��-����','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-clone.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-clone.svg',0,'�����ʿK����$ ','�����ʿK����$ ','aYm����WÄ�1h���@��9a��U�','',0,'?'),('z?ѧ��TA\nʐ��)�','wp-content/plugins/wp-optimize/vendor/composer/installed.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�Պ��&�fY�%`\'W','Ώ\nr*0�Ŧ�\'���gUbZX=�H?p�','',0,'?'),('zI��C��lD�*�8iQ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedLastIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedLastIndex.js',0,'��Uأ���dj����','��Uأ���dj����','�ܧ�.���z>1������ۡ}t��{��:@','',0,'?'),('zL�(̫4�V��BR{m','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/enable.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/enable.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(K2�_�JAD$��Ņu','p�}|�V0wwAh4�Qhmg �(aW��\rc+1yz','',0,'?'),('zPu^�iM��v�~��','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/898.d64597f6c89a.chunk.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/898.d64597f6c89a.chunk.js',0,'��o~���)&��~�K','��o~���)&��~�K','��wo�yU�i?����]��͕U2Sz�E��Z','',0,'?'),('zQ����H���0܉�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-objectfit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-objectfit.js',0,'a4�T���9s|�:j','a4�T���9s|�:j','�~7z|S 3�d�\ZO��e#���х��J','',0,'?'),('zZa���h9V���\'','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/InvalidImageTypeException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/InvalidImageTypeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+oq��R���v_�','b�\'l��h���w3����:H�ejØx�C�','',0,'?'),('zd8�F�M�$S�[���','wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�R0F�Z��\0>&V�Q','��(d.���\"�\\�n���qF�w {/��:a\"��','',0,'?'),('zh����6N!¶\Z�IM','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GN\\r�wT|ni��(\'Q','.�QE�����l�b>�f3H��;uV��09}i','',0,'?'),('zl,sW�6�uD�Wѵ�','wp-content/plugins/wordpress-seo/src/helpers/robots-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/robots-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','% \\���QX���p�C�','�:�ީ{E����P1�uь�R�8�fg+��ޘ�y','',0,'?'),('zn�3���,��M��m�','wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-check.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/default-tagline-check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m�7T�L��','I����&�+�i��(�`e�\Z�=~�Œ�.S�0�','',0,'?'),('znɿ.\ZMh�C����','wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/00-setup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/00-setup.js',0,'��1����gʩ�y�:?','��1����gʩ�y�:?','�*���;U\0�z.��ڤpWa_I�K`�?U','',0,'?'),('zo�Y\0�m�k晸S��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/reduce.js',0,'������be����','������be����','Ve���y��1�H��x���X������%�v�','',0,'?'),('zo��ܲ�~��b','wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�5��uNi��!�z','����#���ɛ!w�c�w�}6���~A���','',0,'?'),('zp�?h=�x�$((�}\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/uniqWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/uniqWith.js',0,'�����|�k�R����','�����|�k�R����','��v<��p_-�A��)Aa��V��z#ލAt','',0,'?'),('zq\\X̿�����Q���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isKeyable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isKeyable.js',0,'PmL�P��v�l�Na','PmL�P��v�l�Na','�k%���!����q�ro��� ��[U� ��p','',0,'?'),('zsBV��J(�>�~\Z̉','wp-content/themes/mint/node_modules/bower/lib/node_modules/ecc-jsbn/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ecc-jsbn/test.js',0,'3U�q�,+�G��7�','3U�q�,+�G��7�',';�n!�c�9vO�%���U`cUJˍ���~','',0,'?'),('zz�Co�U���i����','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/WidgetDependencies.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/WidgetDependencies.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6COG`7p�v�7�V','�E�|׃/�=�Q�XI�벰6\'+b��X�3�','',0,'?'),('z|�����L��F�D�','wp-includes/css/dist/edit-widgets/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-widgets/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���M~\r��mp�x�9','��n7��d��n\'B�h^uGf��p܇_���&','',0,'?'),('z}6(W�(���ma]�� ','wp-content/themes/mint/node_modules/repeating/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/repeating/index.js',0,'��\\�Sύ\n���D��7|','��\\�Sύ\n���D��7|','dos���m=�Z��#D\08aTo��)M','',0,'?'),('z�LM�����`6�-','wp-content/plugins/wordpress-seo/src/config/migrations/20200728095334_AddIndexesForProminentWordsOnIndexables.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200728095334_AddIndexesForProminentWordsOnIndexables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-��w��P� F.!�\Z','U������x��\\�0f��Vy����o��','',0,'?'),('z�m�SA�}I���)','wp-includes/sodium_compat/namespaced/Compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�i�k�/��j\rn�3','1�\'����ջ.�O��}5�Afi�~��>�:}s','',0,'?'),('z�#��ũ�Jv1vG�','wp-content/plugins/wp-optimize/templates/minify/js-settings-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/minify/js-settings-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G?ȿHt���.�','[BÈ��ڐXHo�\\�-��\Z���/��3�e܌','',0,'?'),('z��W�:/�2@կ��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',0,'[�}��_�ە���X�','[�}��_�ە���X�',';��ܶڏi��Kx好[�\0�ܥ�}*3�','',0,'?'),('z��Oi.?��Q���','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/InputValidator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/InputValidator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U\\����g��\0�\0r�','����{{�_\'S-��_j�ݫ���g!��{��','',0,'?'),('z����I�C��1��','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/merge.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/merge.js',0,'�v\\� 0)�\"�!0�y�','�v\\� 0)�\"�!0�y�','pߍ��-)X9^c:R�/)1��&Wq.�O�U','',0,'?'),('z�2]�w\'��=\"�-�4','wp-includes/blocks/query-pagination-previous/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination-previous/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?(�f=�GWrv�','1 \ZNT9Zɯg0�&�/\r�3\nm�DVǯ<���\\','',0,'?'),('z��z�]���!�}Hi','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/series.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/series.js',0,'�G��!�+U��;�','�G��!�+U��;�','�鐠�E`l��\r��jaH��v��]�� ','',0,'?'),('z�\Z�R5o�̅�`)]�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/GravInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',0,'>�ޑ���U�@^L�]','>�ޑ���U�@^L�]',')����LB|@����\"�U�eJE�Wz ��','',0,'?'),('z�\0��R|�Db���','wp-content/themes/mint/node_modules/bower/lib/commands/search.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/search.js',0,')Pܖ�A���x�(',')Pܖ�A���x�(','���1\n���@\'Z���{t��ӌ������','',0,'?'),('z��E\"�s�O��X[;\'','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Unescaper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Unescaper.php',0,'�WM��/�ݑϲ��','�WM��/�ݑϲ��','�&0\r�ؕ�@�(�2sL�Egfh����\"@(4E','',0,'?'),('z�L�M�ĹN���X�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/weekOfTheYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/weekOfTheYear.js',0,'�E�$�\\ro���','�E�$�\\ro���','��lj)>0\r� �;mT���ҥ�Հ�\nU�','',0,'?'),('z�5�*\ZADZCk��j��','wp-content/plugins/wordfence/images/icons/magnifier.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/magnifier.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���uO�{:qcV��\'','� at��v��dQ��0(�Ij�Ɩ�O��$e(*','',0,'?'),('z���L��5 g5�Ď�','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{���U]K\'��x�^4�','���|�,`n�2�J �qd�8L���押��ϒ','',0,'?'),('z����8 L�{��q','wp-content/plugins/wordfence/lib/menu_scanner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_scanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8��)���Ջd�J�','��.ٔGe��!V��*�Ef2P�?`�fq��P','',0,'?'),('z��Q<��\'��U~�R\\','wp-includes/css/wp-embed-template.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-embed-template.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@c���9�Qey','EVMs��y0����{H{.Kg��҂ngD{;','',0,'?'),('z����JX�w{!\rF���','wp-admin/includes/class-wp-upgrader-skins.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-upgrader-skins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\"������ґ�-щ','.��7j3?̶��·?��2U�E�.�G�W','',0,'?'),('z���\nC0�R��3�','wp-content/plugins/advanced-custom-fields-pro/pro/fields/class-acf-field-repeater.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/fields/class-acf-field-repeater.php',0,'�\\�s9����H�Tq_�','�\\�s9����H�Tq_�','�L���*�ӿ�SKL�?m\'��fvk΅�p�f�^','',0,'?'),('z�5\"^M���4����\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/filterSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/filterSeries.js',0,'.Ж�s~v�$��.��A','.Ж�s~v�$��.��A','wo%��j㘸��Uۖ!���eq�?\0�k�%$�9','',0,'?'),('z��1���$*0#�-','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�\\R{�ެX�/z-m','�M����п�~�+��6 I*�_�6a����C���','',0,'?'),('z����[���\n��\0 ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/constant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/constant.js',0,'�0sը�X�\rz�j��','�0sը�X�\rz�j��','D0��v%P��\Z��=\",�e��*h7f��_�T','',0,'?'),('z�[��A�k��y�0c�&','wp-includes/blocks/avatar/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/avatar/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8����Rd�-u��','7o��W��ݹ�����P��*��\0ӛ��^�Ũt','',0,'?'),('z��-ko�o��+w�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/perm_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/perm_sync.js',0,'�7���V�4��\" ��Rp','�7���V�4��\" ��Rp','��N������<a6���L�¥�Q� �','',0,'?'),('z�;\Z�3J;�Uy�?','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createWrapper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createWrapper.js',0,'�iR�\Zi�`Z��6iu]','�iR�\Zi�`Z��6iu]','ئ�s�g����\0^G}��$�?J��]w(p�~�l','',0,'?'),('z�9��A�B\'S�Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/pick.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/pick.js',0,'���fEr�brer{�','���fEr�brer{�','��M�A����T}h�n��K����r�H�','',0,'?'),('zۗ�`�瀃��1\0','wp-includes/js/jquery/ui/effect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�+ܕ�F>,Z��A','4ؗ��M\"�I�xx*Z_��k۲��\\�F|r�','',0,'?'),('z���E`��� ����','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-time.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-time.svg',0,'9F�&>���D`��3�/','9F�&>���D`��3�/','\'��e��A!WEoq���\"�燮$�{(�V��Ƚ','',0,'?'),('z�M�o��n#YK��g�','wp-content/themes/mint/node_modules/htmlparser2/test/Feeds/02-atom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/test/Feeds/02-atom.js',0,'[�n)+��+)��]��%E','[�n)+��+)��]��%E','K>S���M�≝;\\J��*�d2�w��','',0,'?'),('z�O�>bB8��z�BKE','wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/cli-width/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/cli-width/index.html',0,'�Lx:鍹���EOʶI0','�Lx:鍹���EOʶI0','rb֚c�θ�vJ��#W\'̶����R�Q�','',0,'?'),('z�RY���Ic��Y','wp-content/plugins/wp-migrate-db-pro/vendor/brumann/polyfill-unserialize/src/DisallowedClassesSubstitutor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/brumann/polyfill-unserialize/src/DisallowedClassesSubstitutor.php',0,'�k�q����k텶\'6TR','�k�q����k텶\'6TR','X�7�\\Su�?˧��݂0c��\r�Y��%b#Z�q ','',0,'?'),('z�8ͱw\Zʑ���AǬ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/lib/retry_operation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/lib/retry_operation.js',0,'���Փ��+��H��}','���Փ��+��H��}',']ʾ�א��\r �>�O�3*��I��z','',0,'?'),('z�}�w�es���9A','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php',0,'`�mx�-ت�� ^�','`�mx�-ت�� ^�','�����f=\r僧d���������4�\Z','',0,'?'),('zݠZ����a��1','wp-content/themes/mint/assets/vendor/modernizr/test/js/lib/detect-global.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/js/lib/detect-global.js',0,'҅�4�b�/������','҅�4�b�/������','\n��S�#��Լ�9~��m�$M�os��G���','',0,'?'),('z�W�sW5ʈ� )��','wp-includes/css/dist/customize-widgets/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/customize-widgets/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���-(�xN���$8!7','�3�T�M�U�����s�Ev��k`��D�','',0,'?'),('z�[Y�d�#$g��Y*g','wp-includes/css/dist/block-editor/content-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-editor/content-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[.����(�F_�)$','�ؒ�b��4�K�A��g��zMtD�e�hc','',0,'?'),('z�h��;��ޛ���','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/utl.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/utl.js',0,'[�Ì8Q��|�`]�;�','[�Ì8Q��|�`]�;�','_7��s�s!G�2\'c���ݽ��7E�~X�','',0,'?'),('z�Kh%��_�� ���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePropertyOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePropertyOf.js',0,'�w��)�όK�V��','�w��)�όK�V��','�D߽�����塁\n�jۖߡ?�<�5t�Yh�23','',0,'?'),('z�gۃ�[�����\n','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/uglify-js.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/uglify-js.js',0,'��<�\Z��t�;�@��','��<�\Z��t�;�@��','�@Q6\\*{�`��m��i���\0�X��C����','',0,'?'),('z��:H�ƆB��9�D','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/ConcatenationSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/ConcatenationSpacingSniff.php',0,'�/(�?���x\Z�o�Y?','�/(�?���x\Z�o�Y?','�����\n�Wș\0���G�\"íXcO�nQJ','',0,'?'),('{�^�=�$���-�4','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/MimeMap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/MimeMap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��g���O�܈0�n�','�d��٠��!8�W��Uj�kl�RE�','',0,'?'),('{ZUL���~��4��','wp-content/themes/mint/node_modules/console-browserify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/console-browserify/index.js',0,'G�q1��_Ae�}�i�N','G�q1��_Ae�}�i�N','�zİڱ�d��j��;<�)�QM<�\n���Ck�','',0,'?'),('{\n���R�o��R=\'g�','wp-admin/js/widgets/custom-html-widgets.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/custom-html-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zW$.�4��垾�{�','�`u�Vć~!�b&r럇��\0^���ň�~(z`R','',0,'?'),('{�o�{E/º���R','wp-content/plugins/gravityforms/images/template-library/Quote.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/Quote.svg',0,'a��E�4Lz�4��Ce��','a��E�4Lz�4��Ce��','��8i��r�E�?W� �\n���:�VjJߖ|*�','',0,'?'),('{N���2�Q�u��= �','wp-admin/network/theme-editor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��( �a�Ԣ[�U?�','�����Јe�gT������G.��=�a\0@�','',0,'?'),('{>\"ݶ�^%5�)��M','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8��M�%E0�cԢ�',' �0���=|.�O��ℎ�toY�cw7��&','',0,'?'),('{����*��zC�Gn','wp-content/plugins/wordpress-seo/images/ai-generator-preview.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/ai-generator-preview.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[zmǎ�ծ��t�Z','���� -\"Y�)��o��`|u�:�)���@ΰy','',0,'?'),('{!�J�\0rͥ8�\"s[','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-backgroundrepeat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-backgroundrepeat.js',0,'�P�xH���<���5','�P�xH���<���5','E�Y���J��&x�G��ڌ�[�m@�P�1֪','',0,'?'),('{!��Y�h���q̵�','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/maxmin/node_modules/chalk/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/maxmin/node_modules/chalk/index.js',0,'g�e�Lc\Z��\"�6���','g�e�Lc\Z��\"�6���','춮�D��1`<�r���{XR�y���','',0,'?'),('{*�w������;�','wp-content/themes/mint/node_modules/less/lib/less/tree.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree.js',0,'�M�� ��E�Ɗg��','�M�� ��E�Ɗg��','�PJ�o���=�u ?�Y��yk��A�^Y�','',0,'?'),('{:��|j*8��<\\�ψ','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesStacks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesStacks.php',0,'ѳ��\Z���ay�s�wm','ѳ��\Z���ay�s�wm',':h��P�.2Nh���� ���q~��g���[�\Z','',0,'?'),('{AF��K��7��eI�\0','wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.underscore.js',0,'� ��ߝ��\n�','� ��ߝ��\n�','�Lg1�S�����S�s)!�)~u���#�I:','',0,'?'),('{FL���l�Ј^���','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/index.js',0,'}�絲v��\r�\"p>4�','}�絲v��\r�\"p>4�','3҂�Q�m�ر?mV5��������6B����','',0,'?'),('{J�=��o;�Kƒn��','wp-content/themes/mint/node_modules/less/dist/less-1.1.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.1.1.js',0,'i~.���W\'\n��h�] �','i~.���W\'\n��h�] �','ChQٵ���1��r:S܂ %�������','',0,'?'),('{Q\'yp�V7�hg�\r���','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7415d9.min.js.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7415d9.min.js.json',0,'�$8� ��nUD�z�P','�$8� ��nUD�z�P','��� ��2�Sl�%�yl�T� C�~��','',0,'?'),('{V=��d����o����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseAssign.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseAssign.js',0,'�n#w��3���q�v[w','�n#w��3���q�v[w','�tQ�堋�U�v5��7�3F�k��O�\"�!��2�','',0,'?'),('{[�/����ڑ��','wp-content/plugins/wordfence/views/dashboard/option-howgetips.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/dashboard/option-howgetips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5夑=�MwK��h','�j�T59O�D�P��I� !�����8\"L��','',0,'?'),('{]��2]$D�^sq','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-default-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-default-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�,��2���|n��h','�d�+�x��M��{&�&߉}nݧ�&��','',0,'?'),('{^I쮷T��{���\n��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/CarbonInterval.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/CarbonInterval.php',0,'1���\Z�g�z?_ů','1���\Z�g�z?_ů','vj\0�z0�ڣH�X�r�?�E����� E','',0,'?'),('{a�{4�;��Moز','wp-includes/block-template-utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-template-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӝ��8�r�`t�O/�n',' ܼGȍO��l�M`�B4��*�M�x_x����','',0,'?'),('{d�>O��y�\"�','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/lodash/dist/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/lodash/dist/lodash.js',0,'��6Ƥ>����^ �','��6Ƥ>����^ �','�Z�1�֯��߁�/�����>v֮�Ng��','',0,'?'),('{e�܃��g�L-�}','wp-content/plugins/envira-gallery/assets/js/lib/isotope.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/isotope.js',0,'����x�#��\'F(','����x�#��\'F(','���N.z/y8���$YNafH�_� ���&','',0,'?'),('{o.�>+� ��Q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/lib/normalize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/lib/normalize.js',0,'x�-��Ϳ��V���Q','x�-��Ϳ��V���Q','��N�]3���9�=F�Tݼ\\�GN�p�\"�','',0,'?'),('{p����;���z\"�8','wp-content/plugins/advanced-custom-fields-pro/includes/legacy/legacy-locations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/legacy/legacy-locations.php',0,'*=Ϲ�x�C�<��','*=Ϲ�x�C�<��',':e�ܱ=��5�`x����A�l�q�\0��6��','',0,'?'),('{t�E~��P�A�1��','wp-admin/js/tags.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/tags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�<@��7K>ʹ3��h�','ѷ��fR��*��z;ܓ�`���c6��|F�3','',0,'?'),('{y\"�ҵ��ݩ�{���','wp-admin/includes/class-walker-category-checklist.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-walker-category-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@1���A�Y�\\e','����G��l��k�V$�5Z`�2rO}V','',0,'?'),('{{a�m�ot�r=�q�N','wp-content/themes/twentytwentyfive/patterns/page-link-in-bio-heading-paragraph-links-image.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/page-link-in-bio-heading-paragraph-links-image.php',0,' 1Ҕ7K�X}�P���D',' 1Ҕ7K�X}�P���D','��(���O��� �rbC1�>;�\rx&4�gn�)','',0,'?'),('{��8A\n�Ż���','wp-content/plugins/wordpress-seo/images/academy/crawlability.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/crawlability.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����z&�o���9ċ�','��^R1!�n���3�g�!w�5�~��&�D�I�','',0,'?'),('{�M�w`���6?�:M','wp-content/plugins/gravityforms/includes/phpqrcode/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/phpqrcode/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('{�����,\Z�16','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeFile.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�VGѳ����SL3���H','a;�\'i��0Y[�Q���M��\'19���4A�','',0,'?'),('{��ݩ����� N�,|�','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-image.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-image.php',0,'<I���L���R�-�','<I���L���R�-�','�+����Ӯ��mU9�d��{\r�D\\1��x�','',0,'?'),('{��}�B/�!-�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/toLookup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/toLookup.js',0,'[�/,2���Y+>YT�','[�/,2���Y+>YT�','��N����Pw�6d;x��h��%��n1]�v�^�','',0,'?'),('{�/�.6�ǹҩ}q�','wp-content/plugins/wp-optimize/optimizations/orphanedtables.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/orphanedtables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\\����G���w;� �','��r\\����Y��E�\n���0#��m7���','',0,'?'),('{����s$>��B^��','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js',0,'�\\\r�\\`*fOB6','�\\\r�\\`*fOB6','��U\Z�T�S%\'�A&�u�:2(\'���\0;\'�','',0,'?'),('{��X̙g^�2 ��','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/options.php',0,'q�qO�k��L��w�','q�qO�k��L��w�','G�)�z�6���.��=w9�Jx�X\Z\'�f[�3\Z','',0,'?'),('{�j�ɏ|n� ^<�WH�','wp-includes/css/dist/nux/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/nux/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����v�� ��C�','�Hsa�\\>�2�QƠ��\n\\%J�[aG���h','',0,'?'),('{�[�=���}{��Mo�','wp-content/uploads/cache/8184955e1d3e1a38851a5d618049109209a0964c.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/8184955e1d3e1a38851a5d618049109209a0964c.php',0,'��Z\0D�������S��','��Z\0D�������S��','L-�L���2FS�q ݸ����P�������','',0,'?'),('{�)�4e4p:�fW�','wp-includes/js/jquery/jquery.query.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery.query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\rġ��L�z;ҿ�0�','���ղ���<�C=��H�:�LW�9b�\n','',0,'?'),('{�Ļ��f�^�C�ɔ','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/assignment.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/assignment.js',0,'\n�\r��i]����E','\n�\r��i]����E','��WZ��S� \0���$N�~ �O�v�1��D','',0,'?'),('{��ðz���m��@�^�','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Config.php',0,'��·�/j�_�Ba�@','��·�/j�_�Ba�@','�����P����ba�)=՜\\��ν��\'�@C','',0,'?'),('{�ؙo3�XT��Z&E','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasClass.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasClass.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�ܻsFQ+��_�G','dϹT|?[4zy3@��آ\0�vӮ8�{� XJZ','',0,'?'),('{�m���X���_����','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php',0,'��0�t���<�\n�w+','��0�t���<�\n�w+','�a�7�aI��I:)Q�ɵ[[��qq*l<X$','',0,'?'),('{�H$�P�8��ʓ|Q�','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-check.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-check.svg',0,'Np�{��/7�/��','Np�{��/7�/��','�r�eF�šl+*�k�;B�Z1�q��6V�','',0,'?'),('{���|�s�� �X','wp-content/themes/mint/assets/vendor/bootstrap/js/tab.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/js/tab.js',0,'���İ��U;6$NJ','���İ��U;6$NJ','4R�U���K��ơ,�9Ŷ��\\s�X̊C�mt','',0,'?'),('{��sZ���WӠB��X�','wp-content/themes/mint/node_modules/date-now/test/static/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/date-now/test/static/index.html',0,'�v�G4\r8�5�Q�wY','�v�G4\r8�5�Q�wY','�9�ƌ�#\Z:�b{�./N\0��Jvp��7!�','',0,'?'),('{�O\'�_��g���y','wp-content/themes/mint/node_modules/less/lib/less/tree/operation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/operation.js',0,'�P�3cUQ-xJ5�{','�P�3cUQ-xJ5�{','��wT�$ߪq���Sw��H��`�����!Eؓ�','',0,'?'),('{�a(���5���wU','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/capitalize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/capitalize.js',0,'����-Qp��\08�r','����-Qp��\08�r','�>7\n��s#6S�<�=b�N�*�@N�du\"kl','',0,'?'),('{�����%R���ުu�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createPadding.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createPadding.js',0,'����p&\r��;��','����p&\r��;��','���6S��J��&L d����\\�\rz8���','',0,'?'),('{���F8��3���5>','wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/duplex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/duplex.js',0,'��DanoI� M<I.�','��DanoI� M<I.�','ǫ��@���v���*1DU\" hT~����','',0,'?'),('{ו{Jq�X�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/func.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/func.js',0,'����\Z��+qq�gӰ','����\Z��+qq�gӰ','���;u +�^L��%�.������[q��!~','',0,'?'),('{��b�\\ߺ��kP8D','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_block_element.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_block_element.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$z�ֈw!�Hc*��','p2�q�|�����\\�cD�,?A(��,��&�','',0,'?'),('{��JK,8JP����\rѯ','wp-content/plugins/wp-optimize/includes/class-re-smush-it-task.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-re-smush-it-task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ڸ�Urm � ��','��ycu,s�`+{�/������st��058qK','',0,'?'),('{X��,<�*�e9�#','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Command/Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Command/Command.php',0,'�Ρw.l7������?M','�Ρw.l7������?M','8N�����V\"v�k���\\ފ�\n�4�J7[','',0,'?'),('{�n��\'���h�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createBindWrapper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createBindWrapper.js',0,'��\0 쮰@Z��r','��\0 쮰@Z��r',' ڕ$W�7uc��_!U�ƶO�hӵ@c��7','',0,'?'),('{�}5�5oj\"���W','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/parse.js',0,'Fk�)����sG/�','Fk�)����sG/�','���i�b\n�d�YT�f:9\"���.�P�G�3�\"','',0,'?'),('{��\n�rI���','wp-admin/widgets-form.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/widgets-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����ض(vC��>','ơ�FK ּ��P�A��|�s&��J��f��ϼ','',0,'?'),('{�U�m�!���l�H�J','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/assignOwnDefaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/assignOwnDefaults.js',0,'1Ǟ�d�̋����L','1Ǟ�d�̋����L','�Q��9zN���BQ�G���Q���3���=�','',0,'?'),('{�RC��\Z�.*\"�Q','wp-includes/feed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�{���Rmށ?Qi','��8t�p��\\��Q��Z���6.�me1��1]','',0,'?'),('{ﹴ빑� a�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperationalException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperationalException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z�-\'�zys)�=��','�<�.���j�.�A�I/�k�@�Z$�2OW�^�','',0,'?'),('{�\r�-��}�^��','wp-includes/images/smilies/frownie.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/frownie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q���������','r�~�Dzo�h߱�����ػ\">E�+�Ke�','',0,'?'),('{�蓥����ݠ�T>mU','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Loader/Parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Loader/Parser.php',0,'T��X��]�2�\"k ','T��X��]�2�\"k ','~}<»��za�!�0��3A�b�m�\\>','',0,'?'),('{�;�13�84��/','wp-content/plugins/wordpress-seo/admin/ajax.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B��X�!��-�7*','\"��I���T5��K�v�Flg�1,C�','',0,'?'),('{���?���\r��\n\'','wp-admin/images/imgedit-icons.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/imgedit-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�\\2���}�G�i;O','T�N�~��-�@��N��̞V�\\��(u$��','',0,'?'),('|���6nGE\"�ܗ?','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isArrayLike.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isArrayLike.js',0,'�S�ޘ�l��k7�o','�S�ޘ�l��k7�o',' !>������bvcO�E��9{��j1\0','',0,'?'),('|j��x7�(Q}�0�\'�','wp-admin/css/list-tables.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/list-tables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǯ��3욑�_���>��','ƞ�� 3ۢV%Z���\r6!#m��T�5���','',0,'?'),('|Wμy�A�.>I�','wp-content/themes/mint/node_modules/grunt-modernizr/lib/helpers/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/helpers/defaults.js',0,'��:Έ��w�8���lV','��:Έ��w�8���lV','�TK�����,ߊN��!ӑV�Oϟ�1�{k','',0,'?'),('|n�H`�oyf����\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/function/wrap.js',0,'z�K��`�>&��[�jg','z�K��`�>&��[�jg','\"��QKE�/���5����ŷ�<�&M��','',0,'?'),('|���L��F8�5<ZM','wp-includes/blocks/gallery/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/gallery/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��\r]M�G���B.\"','��|�e<�V&D��S,��Ow�������ĩ','',0,'?'),('|�.ZQ���^=�|{i�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/parser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/parser.js',0,'Q�\"�_d�\0�37��4','Q�\"�_d�\0�37��4','T}��e� དྷ�Qv�m��LAʰ_����o�','',0,'?'),('|�\nU�7|Z�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars.js',0,'�����5���d��','�����5���d��','\rEbV�P}Q/��z��\'�J�\ZV���<�i$\'','',0,'?'),('|�,��ܷ$q\'W�{\"','wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin-internal-post-type.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin-internal-post-type.php',0,'�\01�|��wҤ�ڊg�','�\01�|��wҤ�ڊg�','�9�@8�O���گ�i��f�v�n����F~','',0,'?'),('|&[VhR8�\Z�P�iF�','wp-content/plugins/gravityforms/includes/webapi/js/gfwebapi_settings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/js/gfwebapi_settings.js',0,'��z�`�B��9��\r','��z�`�B��9��\r','��NX����Fr7���C�A�ז��~fA�','',0,'?'),('|-����z��-�','wp-admin/export-personal-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/export-personal-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����;Y#\0�G��','�����7����\0�I��#\"T���[f��t','',0,'?'),('|.]����0��','wp-includes/blocks/pullquote/theme.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T�_W�1��=\"�0','�%8!K�HӄB� ��E\r<߬��wX<���W�','',0,'?'),('|/ڒ�\0[*4��x��','wp-includes/js/admin-bar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/admin-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�\"M\\�|�H�Ϝ��&�','w��#t��qz0A�胭���\n,�D|:V }�k','',0,'?'),('|8\Z&����UK���X��','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\}�\"���7ڷ��DZ','�.I�H\Z�g\0�H!7`��gޠZ�zȄ�ž6|','',0,'?'),('|=�g�T�/W���8#r�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/video.753d44eb.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/video.753d44eb.svg',0,'tSP��t�S���w��','tSP��t�S���w��','���s�t��Am5���\0Xf�>�;��c��he','',0,'?'),('|>s��Spb�4(�','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-automatic-upgrader-skin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�T.⾩�� �}�','Z��݆j\\�\n����ƈ��D�֦-��p','',0,'?'),('|?�mF���2�����','wp-content/plugins/wordpress-seo/src/helpers/aioseo-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/aioseo-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j�x_�=0� ����','�`�T�LQͨ�∜F��d\r�>�]t�F*','',0,'?'),('|A���5̐<>�ǎ�u','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/time.js',0,'�+��´K&�д���','�+��´K&�д���','g���9��������0�8�A��� �\ZJ','',0,'?'),('|Dr��V Q�J<]','wp-content/plugins/wp-optimize/images/notices/ud_smile.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/ud_smile.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gϑ\0=��nD��MpҬ','x�J�4�y3��u�ۘ*P}U�@k�e^','',0,'?'),('|MJ��%q5J�^�O��N','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Validation/Factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Validation/Factory.php',0,',B�V+���A#L�+Qx',',B�V+���A#L�+Qx',' �\\sB�<_�}���o������a%`�~ �','',0,'?'),('|N!�;x�N&�g��m�','wp-admin/js/widgets/media-image-widget.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/media-image-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G9�Fm�qQ��','J�6�%V��\"�\rK�yɳ�h���8�N�����F','',0,'?'),('|Q�4�7K>��,�-','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/lib/util/paths.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/lib/util/paths.js',0,'\n�j�u�>\\�%j1�','\n�j�u�>\\�%j1�','�内%�L�Z�%�S����7�$�c�&[��0','',0,'?'),('|Uv�ΫY��LL��9','wp-includes/Requests/src/Exception/Http/Status500.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B�N�xTZ�0��z','0���/6�X����\\�ד�!|4&�L�I9�','',0,'?'),('|W2.�\"��JTb��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/min.js',0,'���cd���v�m��p','���cd���v�m��p','� a�c�t�:OƲ�Y�Ď�>q6�Y�,3WQ','',0,'?'),('|]�8a��5B3e�4&)','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/i18n_.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/i18n_.js',0,'�?�����d����','�?�����d����','��&%ٛ4�!]��n�h�$����r[tkNXT','',0,'?'),('|l�+F��#ڟ�����','wp-includes/class-wp-user-request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-user-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>�_�T�v|���0�','M{XP�~\0�*>�ekQYU���P�W#`D�%','',0,'?'),('|m!�KL�����f��','wp-content/themes/mint/node_modules/less/dist/less-1.6.3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.6.3.js',0,'_����dY:��\"�F�.','_����dY:��\"�F�.','�hf��*i�y�w����TO�_=�+&@P��','',0,'?'),('|m�1\0��z�^�m�{�','wp-includes/css/dist/customize-widgets/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/customize-widgets/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��no x`��nY�-K�','(�Ƣ(����x�I��^��L<���W�t�\Z�','',0,'?'),('|� �\Z>UBpVQ�c ','wp-content/plugins/gravityforms/includes/fields/class-gf-field-total.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-total.php',0,' P��0����J���',' P��0����J���','��g�h8����me�|�oT%X�9+-�q.','',0,'?'),('|��C��-�6(Ç�zp�','wp-admin/js/password-toggle.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/password-toggle.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;\0�N���6�ޯ����','���k�!�.�߀��f�ǿ�x��`7�{��','',0,'?'),('|�îi�[��ɠ�\Z�','wp-content/themes/mint/assets/vendor/jquery/src/var/rnotwhite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/var/rnotwhite.js',0,'��x�^����\\4�&','��x�^����\\4�&','5��ˮ{7;�動�\"�x����&�+�D�+','',0,'?'),('|�mɆ�X��Ft@�\\�','wp-content/themes/mint/node_modules/domelementtype/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domelementtype/index.js',0,'-�֬��1�c,Yr^^(1','-�֬��1�c,Yr^^(1','g䉡�[��\r����9�3�JK=TJ�<J~�','',0,'?'),('|�i��$�]�����_�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/namespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/namespace.js',0,'l�/+H`S[c\"j6h�','l�/+H`S[c\"j6h�','yc4;��{�O/ �u�[z�_6�/[��?bœ','',0,'?'),('|�S���MG$�\"/�<','wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Module/Debugger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Module/Debugger.php',0,'����Y��s½��\ZAq','����Y��s½��\ZAq','�K����S �d�\r��qޅok,aXw�lx���','',0,'?'),('|�� �4�x�\\��M�n','wp-admin/js/code-editor.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/code-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2��N��1�B9Xk','�XJ�Ò�Hsf=�]���\n�*vHXПD��C','',0,'?'),('|���*�����','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-follow-all.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-follow-all.js',0,'\070\Zؽj�3�','\070\Zؽj�3�','�\rK�/���\0ã���mP_�fW��1\0�rz','',0,'?'),('|��hl�:�B\"〆\r1','wp-content/themes/mint/node_modules/less/dist/less-1.6.2.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.6.2.min.js',0,'�Β�4�sY�S�A�XҔ','�Β�4�sY�S�A�XҔ','J���^�|1�4�1�7���k�`~����','',0,'?'),('|���4�)�=3}&Ϥ�','wp-content/plugins/wordpress-seo/src/conditionals/get-request-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/get-request-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�al �$G��Lr��jq','�:sT����)�0�P*�<�j5\"�w&�cRb�','',0,'?'),('|�@�������iq#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/trim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/trim.js',0,'�4oR-$�� �f,�=','�4oR-$�� �f,�=','����9����\0i�ځ8�[ڗ���_�_e�A�','',0,'?'),('|����D�W�ƞ��vm','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowInlineIfSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowInlineIfSniff.php',0,'=0(�@�a\0�yk�','=0(�@�a\0�yk�','�`0>����\Zd���-=��?�`�\\��~He�q��','',0,'?'),('|��3�2�^qj���','wp-content/plugins/wordpress-seo/js/dist/frontend-inspector-resources.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/frontend-inspector-resources.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dtx�\0�ǒ��?_�$','5+��mD�U)[�o�ҙ�Oe�B�ݦ�;��Y�P','',0,'?'),('|�N#�0�A�6V�\n','wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/node_modules/minimatch/test/basic.js',0,'i�\0����v1ʃ%,� ','i�\0����v1ʃ%,� ','K����*�d�س���*�Y3���Lى\nI�K^','',0,'?'),('|�s�k��[�c���Й','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��՚K�H/�^��A�-','�~U�j�ڷ�R����������mTD��','',0,'?'),('|�T���E��/�4P','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/replace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/replace.js',0,'b�\\ᶥ�ٛ�V�[�','b�\\ᶥ�ٛ�V�[�','L�=ƯE ����z�SZ����iItQ�Z����','',0,'?'),('|�7g,ZD$(\0ܪ����','wp-content/themes/mint/node_modules/colors/themes/winston-dark.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/colors/themes/winston-dark.js',0,'��5�e.�W�zcυ�','��5�e.�W�zcυ�','�@��k�����%�:I\\��p�����\Z[�','',0,'?'),('|л?�݅�A����R�','wp-content/plugins/envira-gallery/assets/css/images/icons/download-img.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/download-img.svg',0,'�v�n�)*VL�u~T�kV','�v�n�)*VL�u~T�kV',')s7��\0un����5ק�f\r�Z%C<���!M�.','',0,'?'),('|��.�>����+�1V','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/compose.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/compose.js',0,'!0��������2y��','!0��������2y��','��h8Sɼ�+l R߈jB��p�jJN�%','',0,'?'),('|�~�b�ÅL�w�^\\','wp-content/plugins/wordpress-seo/packages/js/images/x-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/x-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2���pT�!(\r','Mw�jg�8�\\Gg`6�<�}{�\Z�N]�{x^�p','',0,'?'),('|ݿ��ׄ��-1�W\Z��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/toNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/toNumber.js',0,'�f\r�V�������','�f\r�V�������','W֏�����c�&S#eDB/��=Y�7��Ƶ��','',0,'?'),('|�7��Z�N������','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Reader/TranslationReaderInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Reader/TranslationReaderInterface.php',0,'��G/s�\'.��1f�7','��G/s�\'.��1f�7','#H!���X3�+@��~����\Z�?��e�','',0,'?'),('|�EnA�>܅�]|��D','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ps.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ps.php',0,'UV \"H��������{�','UV \"H��������{�','��o�B��\nW�H\'Law�����ZZ>:��','',0,'?'),('|��lE��~N Ô','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/doSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/doSeries.js',0,'�`﨔cP�\r뜎�','�`﨔cP�\r뜎�','N�d;9�c縚�Ӌ(���2���}�;�U�Y2','',0,'?'),('|��3^8�{h�� .�','wp-content/themes/mint/node_modules/wordwrap/test/wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/wordwrap/test/wrap.js',0,'�Np�N����\'�m�','�Np�N����\'�m�','¿�,��|��M��f��Φy�35\\a÷ԁ[','',0,'?'),('|�M�Yo�o�yL��9','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/base64.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/base64.js',0,'Xy�5p���n�','Xy�5p���n�','?��^sg�.��\Zׅ�{���1���� v�7�k','',0,'?'),('|���\n�{\rɉ�_L$','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/ContainerBuilder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/ContainerBuilder.php',0,'}�A3N��d��#���','}�A3N��d��#���','`L�6���_�<!�Z=x���gT��;���\Z','',0,'?'),('|��T]��:Y$=\'h�','wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����*B> ��C�r�g','h$V<�`�X)�,�㍬I\nD��X,y�؞','',0,'?'),('|��Y�>�� �Ɔ�','wp-admin/link-add.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/link-add.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���թ\Z]:�\Z�v','�6#�D�-?{M�5�Y�Օ��� �\0h�Eo�','',0,'?'),('}�>C�g<���pBF�','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/run-qunit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/test/run-qunit.js',0,'p�#m8ੁG��1�','p�#m8ੁG��1�','��R�\n�I>�2Y�;֦_g�l�?�%jo��L','',0,'?'),('}ĉ=�t�����','wp-includes/images/toggle-arrow-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/toggle-arrow-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F���\\����CDr�','-��N������7~@�}�_�=���V�_@A�','',0,'?'),('}�aX�]���D*I','wp-includes/blocks/file/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/file/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n8��.g\0B�P�','�T<��xOտW�Yz��?!��%��m�p3�|@�','',0,'?'),('}>p�\'5b�?�2','wp-content/plugins/gravityforms/includes/webapi/v2/class-gf-rest-api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/class-gf-rest-api.php',0,'���o�?KP�S���','���o�?KP�S���','��^M\"Om.e��s�\Zܪ:�u�63$lf�jO','',0,'?'),('}u���kh�X�\nî�','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-current-user.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-current-user.php',0,'_��A�P�^v}�\Z','_��A�P�^v}�\Z','���}Բ�;���Xh��r\"�w-\0��','',0,'?'),('}Z�j������]���','wp-content/plugins/wordpress-seo/css/dist/score_icon-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/score_icon-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��wwV����8����','�w\'��60��L�&�[䐎\r:a���Ա���k','',0,'?'),('}Z�O�Q��������','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/F.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/F.js',0,'���\'���P[E','���\'���P[E','L�Kҳ\\C�8��]\"U����z-\'W2\"zg','',0,'?'),('}!2�Tj9`\\4HBu�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseAt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseAt.js',0,'ʼnr�9NSaSԴܨ��','ʼnr�9NSaSԴܨ��','����R�96R]v�`ۨ��W��Y�C�R�/�l','',0,'?'),('}$)-��_L�D}��b�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zipWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zipWith.js',0,'��G����/�K��','��G����/�K��','�c��f�c�s/D���`@u�H\"�g�O�<!^','',0,'?'),('}(@}*�1��,���g[�','wp-content/themes/twentytwentytwo/inc/patterns/header-image-background-overlay.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fQ83&�7�@ጩ;1','\'���D���%jQS!l�t!��,��A���*�','',0,'?'),('}+θp�A\"��Ŷ','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/readable-browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/readable-browser.js',0,'s���1�=Qٖt�|O','s���1�=Qٖt�|O','��Y�33�k\r�H#<\\�EV�lciC9��','',0,'?'),('}/ń�M�s���k�,','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/dotdot.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/dotdot.js',0,'ha����AaٛM\"|A/','ha����AaٛM\"|A/','��ZC��s��j�X/���\\%#=�f[�sϪ','',0,'?'),('}<��}#*%�V>��ɖ','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ġߘ�T�Z4BB�S','&�.Xt=c����t���APOB[���D��F3','',0,'?'),('}>�G��ЗE���X�','wp-content/themes/mint/node_modules/cli/examples/command.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/examples/command.js',0,'�����DU���R�','�����DU���R�','|�ׂW\r��jS&�>+̞����&*e(%�Yj','',0,'?'),('}B�@�eRƟ���QQ','wp-content/plugins/wp-optimize/includes/class-wp-optimize-system-status-report.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-system-status-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xӧc`(d4]a���?Zu','ₙʠ;X�����d�:%��e�\"��\n_�8�Y','',0,'?'),('}E�Em�\0��Ԥ��|','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/gt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/gt.js',0,'�#M�d���Ij��','�#M�d���Ij��','g�U�\"XΠԲhL~��ȁ��ź���O�u���','',0,'?'),('}O� !ٶ]�O�O[�','wp-includes/block-supports/typography.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!.\0H�2��/b�,JT','�$��*Iɟ��9�Zֺ�ơ����sLc','',0,'?'),('}Q�����i�ʑܡ!_','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-id_ID.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-id_ID.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A���\Z��b�\0�<','�/�� t>��i��#!_���I����f����5Ť','',0,'?'),('}V���i���\n�l','wp-content/plugins/advanced-custom-fields-pro/includes/post-types/class-acf-taxonomy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/post-types/class-acf-taxonomy.php',0,'��L݂�-{P���À�q','��L݂�-{P���À�q','t�c��ך�8���?*X���+�� E�0�\'','',0,'?'),('}\\�5�\r��$�l�W���','wp-admin/js/tags-suggest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/tags-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��룉��anX�z','�u�v\n+T�U��\\�[����.L����%�P��','',0,'?'),('}`��g\"P�2��V��','wp-includes/images/spinner-2x.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1����2��^#�8��','��#�˒�=$c��6����� B��4�6','',0,'?'),('}h:3���Q�B�Ԥ��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/HelperSetTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/HelperSetTest.php',0,'�\r�\Zk���%|(|�','�\r�\Zk���%|(|�','h�Ϭ�L��cŶe�?F�9��{�)/��_����','',0,'?'),('}i���_�\nn��E��С','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-key.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-key.svg',0,'g�~{�\n{�M��=���','g�~{�\n{�M��=���','tpܭ��h��_�j�_� p�/�U��TAi���','',0,'?'),('}j��zd���ht>�','wp-content/uploads/pum/pum-site-scripts.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/pum/pum-site-scripts.js',0,'\Zv��f�L�ʝ�$�K�','\Zv��f�L�ʝ�$�K�','�.�skf����#m�A�����ˊ?zI�','',0,'?'),('}mx����Vj��','wp-content/plugins/advanced-custom-fields-pro/includes/locations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations.php',0,'�\r�����4�V� JY','�\r�����4�V� JY','Iڵ���>e����/�?��mf`��ҎU\'d� ','',0,'?'),('}x�n����G�Sr','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-logger/lib/Logger.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-logger/lib/Logger.js',0,'D�-�ٌp�4�5{!�','D�-�ٌp�4�5{!�','�D\r��Adڡk�q��AXb=Z��ߛkv�ݍ{�','',0,'?'),('}|��\0+�N�6]��R','wp-includes/blocks/audio/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/audio/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f��_��0�4��a','���s8!�20��ڠ������/%�Q?��Sv','',0,'?'),('}���l�3;���2t\Z.�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/clamp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/clamp.js',0,'�|3g��a�P2ʰ%��','�|3g��a�P2ʰ%��','���OVtFj���5�S�����1Ҍ���','',0,'?'),('}���S ��`�p�b�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date.js',0,'�߇}{�&{�G�p�','�߇}{�&{�G�p�','~�����qu�]�;�*�ڹ�sH�w��3w��rw','',0,'?'),('}�/�ԏ>1q�ņd��','wp-content/themes/mint/node_modules/noptify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/noptify/index.js',0,'�8wu��N*�O9h�x�','�8wu��N*�O9h�x�','�\n� ��u��@MT��j���l��S�N����','',0,'?'),('}��iv��7G}���X','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/snakeCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/snakeCase.js',0,'�K<0�Oqܸ�X�P0rZ','�K<0�Oqܸ�X�P0rZ','s\n�D�R\"EXM)��Y�Ն��Q���թ��','',0,'?'),('}�?�sx\0�/�k�u�','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/example.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-my-json-valid/example.js',0,'���6m���>K��9�','���6m���>K��9�','�7�\Z�?��g�\r\'�5�����)�\\_�\\�','',0,'?'),('}��nU8�A�H8�~X','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang.js',0,'�xU��H\'�&��Z���','�xU��H\'�&��Z���','E�?��N3M� ��E9�\"��)m�G��FSĆ�','',0,'?'),('}�}-ܲG���.,�\Z�','wp-content/plugins/gravityforms/includes/query/class-gf-query.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/query/class-gf-query.php',0,'q0�t���0\0SP�Dں','q0�t���0\0SP�Dں','��m��\n�V6-�2��v�5-=�9��F��)','',0,'?'),('}�U|)�i&�D�ߟ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/until.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/until.js',0,'�d[�]���rj�->�','�d[�]���rj�->�','���>���OǼ��%I�z�k(��إ�Iyh�4�','',0,'?'),('}��l�8�\\�;���~','wp-includes/blocks/social-links/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-links/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ayF|��i����','�����<n����9t@B6�QR���R~����','',0,'?'),('}��L���e)����','wp-content/plugins/wordpress-seo/src/user-meta/infrastructure/cleanup-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/infrastructure/cleanup-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i=l%�@����/�','`�?3,ĵ�E�E�&�sR�Ky�N�_�Қb','',0,'?'),('}����9�\Z��w ����','wp-content/plugins/envira-gallery/assets/css/images/icons/social.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/social.svg',0,'�1c[�n]�}�(8�gס','�1c[�n]�}�(8�gס','�u�)=�z7����(�\r�m8r{��zjȺq�','',0,'?'),('}��-�$��L�H_R���','wp-includes/blocks/paragraph/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/paragraph/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>J��;���O�','@B�Jo��X��_|!�W�������5lnW�&��z','',0,'?'),('}��/��_���R\0�','wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-print.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-print.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}`Yg�#o08��}~-I','x\\k�ᒛ��j�Lj`�j�yͱ������q','',0,'?'),('}�yϪ���Z����\n','wp-content/themes/mint/node_modules/grunt-contrib-watch/tasks/lib/taskrunner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-watch/tasks/lib/taskrunner.js',0,'��}�gʜ��;v���','��}�gʜ��;v���','R��-�c�z:e\r\"G�\0�F!ٶ0r�B�k','',0,'?'),('}���HB-��$Těc`�','wp-content/plugins/gravityforms/notification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/notification.php',0,'��˅4�БaJR?*�.','��˅4�БaJR?*�.','`��LU��!�JcN*��)h�tl�L}���','',0,'?'),('}��b�`�I-���0�','wp-content/plugins/wordpress-seo/js/dist/externals/styledComponents.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/styledComponents.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�],\'��5\'��\"��T','��\Z�w1���#z+1�ͺ�̼L.�x��w�','',0,'?'),('}��v�9^��FU��','wp-content/plugins/gravityforms/includes/webapi/v2/class-gf-rest-authentication.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/class-gf-rest-authentication.php',0,'�c���������S�L','�c���������S�L','{>Q|�[ʴ���\Z������i��O]��\Zp\Z�5','',0,'?'),('}�\'��,U��t9l�l{','wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-background.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y���.ʯ+�41nd�','�k�Aϻ���žN��E(n���\"E��\n','',0,'?'),('}�D߅����N�_','wp-content/plugins/wordpress-seo/src/surfaces/values/meta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/surfaces/values/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����sCLxe�s','��o^ɯ�J�\"���ecꏾw�l1��[�G;\\}','',0,'?'),('}����L�Y�)qy','wp-content/plugins/wp-optimize/css/admin-3-8-0.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/css/admin-3-8-0.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z!{ԑmEZxx��i�,','��ˍJ�|Y�A�M?��+A�~����Z���S��','',0,'?'),('}�0���M�0`�\\�*','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7815d9.min.js.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7815d9.min.js.json',0,'a�v��p eR�\\��A','a�v��p eR�\\��A','�r�����H�Z:\'�\r��+�N�?`�R�V','',0,'?'),('}�\"�C�6�P��Kk�','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-dots-grid.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-dots-grid.svg',0,'q�[h{4*��J� �/','q�[h{4*��J� �/','L�?<��|W��h�յa4�E��g\'�Qb�','',0,'?'),('}�}]_�\r����&�n� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/tests/tst.inherit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/tests/tst.inherit.js',0,'r(/��=�0$�%d�','r(/��=�0$�%d�',':�i��,Ҋ�)@y����`_�ԓK�љ�3�','',0,'?'),('}俷�y*��|�,��}�','wp-content/themes/mint/node_modules/grunt-modernizr/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/Gruntfile.js',0,'/�$��.\\�95�','/�$��.\\�95�','M;�.��A�%�+B(?�iy�.���B$#��','',0,'?'),('}�O���BH1\0�K_�[','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/tap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/tap.js',0,'\"��2�\0 kѠ\'��','\"��2�\0 kѠ\'��','Oa334�W�Zq���g����}��f�����x?','',0,'?'),('}�Ȑ�\\L��`���i)','wp-includes/ID3/license.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��5>q%S�\\/,x','� ��\Z3\nԨc�\0�k��ѕ6���k6','',0,'?'),('}�@���T/O�+�\\','wp-content/plugins/wordfence/js/admin.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/admin.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ǞZ��I�� �g_�','�, $B�~\n���MК�6]1�1[TL��Hp','',0,'?'),('}�ä9�� Q�\\�N{\r2','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/pick.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/pick.js',0,'���fEr�brer{�','���fEr�brer{�','��M�A����T}h�n��K����r�H�','',0,'?'),('}���{RҢ���\"','wp-includes/default-constants.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9���\\A�Â�*','�.�%Ö�\'��ɬ4���Ue[�*^����','',0,'?'),('~j ����\r�X�;�0','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-url/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-url/index.js',0,'=�HF��Q~����>','=�HF��Q~����>','f?>�lC�E_�@\"Uq��\"S\r��D�s���','',0,'?'),('~G�\rϢ*�Qq���\'','wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('~\'�r�Z�o��g�(','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date.js',0,'�߇}{�&{�G�p�','�߇}{�&{�G�p�','~�����qu�]�;�*�ڹ�sH�w��3w��rw','',0,'?'),('~ ,x0�-�Q膋�','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/Stack.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/Stack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|���,\"D��ZQ��Y#','�O���QPI���?�<B0z6L��}�r�','',0,'?'),('~f��$�0�d9-n','wp-content/plugins/wordpress-seo/src/presentations/abstract-presentation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presentations/abstract-presentation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',-�ʽ$1cO�i?Y','�dXUQ3+Na���l+��zu*�*%�1\0qe','',0,'?'),('~Ⱦ/�m�ր�!��','wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s�X]�[sC>�Q��','�>��_c\ZJ+�����a��������Umv)�lg','',0,'?'),('~\Z�?O��t�Y�1��','wp-includes/blocks/comments-pagination-numbers/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination-numbers/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ңʟ����;�Vkn4','Lc߽4!BĢ:[���Z���\r��Q��y�','',0,'?'),('~��\\��_b�$�-��!','wp-includes/js/jquery/ui/selectable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/selectable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6w�k��8#Ӳ�9','��\\�{�J�C��8��Y�>W�̦ʶ[�','',0,'?'),('~s��q�+�ٳ�Y','wp-content/themes/mint/node_modules/bower/lib/commands/cache/list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/cache/list.js',0,'�\r_�S���q4�5 ','�\r_�S���q4�5 ','Z�7*ԾnQ�R��Қ>Z#UQ��N�)��e� ','',0,'?'),('~\'K�����_gE_�Iz','wp-content/themes/mint/node_modules/noptify/actions/commandable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/noptify/actions/commandable.js',0,'��8S�.|*���L�','��8S�.|*���L�','�\rpoMO���D�F�y��#�\'��|�/��','',0,'?'),('~\'�C_�h�F�ƶ��','wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-social-images-provider-service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/importing/aioseo/aioseo-social-images-provider-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�elXl,�)geVu','Q�F}��g��\0id1?�#<��\"x4�p\0�&3','',0,'?'),('~(�c]�g��n�?���','wp-content/themes/mint/node_modules/pako/lib/utils/strings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/utils/strings.js',0,'���ެ���т�ig','���ެ���т�ig','9��0�[+��C(�r�����{\Z�S ?�2�v','',0,'?'),('~,�$t: �HG!U�@','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isString.js',0,'��üb%���_�I���9','��üb%���_�I���9','����F��x[�t��a�XYml���<����','',0,'?'),('~/ت�4���E�Ph�','wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/build/js/acf.min.js',0,'�[\\�>>���,��|*','�[\\�>>���,��|*','yO�})U�([�!l��g�����4J�%�;','',0,'?'),('~8�W�pqW/�Lk�4�F','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/callback.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/callback.js',0,'�z��\\�j����9y۠','�z��\\�j����9y۠','��d���b��,�3;�f���J�G7�N�','',0,'?'),('~;&(APӽ��/a��6','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/eachSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/eachSeries.js',0,'P|�\0�7\ZTX^�7KaԐ','P|�\0�7\ZTX^�7KaԐ','�I�u)h���l\Zr��&ϭ\n�\0X��\"3w�R','',0,'?'),('~=��㞶;�`\\�','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/gzip-size/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/gzip-size/index.js',0,';6D�v�&�u��`P�',';6D�v�&�u��`P�',')\n��{����Ŭۙ�b���e-d�Iꥵ��','',0,'?'),('~?�J�I�b*�e�C','wp-admin/images/resize.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/resize.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��lN������','�6��&?�5��?s�qGM`P;','',0,'?'),('~@X�W�i\Z�d���','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/vibration.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/vibration.js',0,'��wD�y-5�*XJ�','��wD�y-5�*XJ�','���i��a}�(ہ4��X|�n3���R�F(F','',0,'?'),('~@Zޖ���t�X���','wp-content/plugins/advanced-custom-fields-pro/assets/inc/datepicker/images/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/datepicker/images/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('~F5�L��qcꂉ','wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Connections/DatabaseConnection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Connections/DatabaseConnection.php',0,'�3@�t�3��\Z��MSb','�3@�t�3��\Z��MSb','vr�4?0��f�j���< ��������t���','',0,'?'),('~F��㫎>dy��j�','wp-includes/css/jquery-ui-dialog-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/jquery-ui-dialog-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�jh�Z��a@>]c�','�9|�7S^�=$��ק�q�6��o�<Kv�\Z�','',0,'?'),('~J�J�a�M�:1�rS','wp-content/plugins/wordpress-seo/src/config/migrations/20200430075614_AddIndexableObjectIdAndTypeIndex.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200430075614_AddIndexableObjectIdAndTypeIndex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��?Nq�({�`��','ƛ��6߀�����nӟ�\n��88�D���5�o','',0,'?'),('~OK�k�v�E�JE�','wp-content/plugins/gravityforms/includes/class-gf-service-container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/class-gf-service-container.php',0,'��6K����AK�\n��;','��6K����AK�\n��;','`R�\r{KP)�~&�����y^�����9��:','',0,'?'),('~SkP�[P+����h-e','wp-includes/js/dist/script-modules/interactivity/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/interactivity/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.E�g��U�Cxf�','�Y�YB�\0���L�Kѥ$b2q���*tw��4-','',0,'?'),('~VXA��&_�M�@em','wp-content/plugins/wordpress-seo/admin/class-export.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i��]�@5��|>�;','1g_\0h˦��i!�KN�.se~J�x*�@','',0,'?'),('~V��Xa]�7p�|R','wp-includes/class-wp-post-type.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\n�e��#xS�','I�2c�ɮ���D8ZNK�$�6��x�k��F�','',0,'?'),('~XzTm��ŏ@��d�s�','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/precedence/aaa.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/precedence/aaa.js',0,'��@-1�h}���r�5f','��@-1�h}���r�5f','����=+! �-�u�2A��)-~�ͻ��I�','',0,'?'),('~YPLF\r�U?�p[UG�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/timezoneOffset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/timezoneOffset.js',0,'ˬy���\rya�|bU�6','ˬy���\rya�|bU�6','��R.�rv\'r��:7�m�,�D]��tG�P�@±','',0,'?'),('~^f=UP�����k1�','wp-content/plugins/wordpress-seo/src/initializers/migration-runner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/initializers/migration-runner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R����\\��`t��','�;���6�n�����,�_��������FU�','',0,'?'),('~i�I�;ݭ]�A��S','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GPE�KT���Y�)&F��','���_�0d���}f!�v�m���EwW�o�','',0,'?'),('~m}�z7`\"�S����','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue50.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue50.js',0,'W֜�:�����~�T�','W֜�:�����~�T�','����V�aϠ[��2��U:M�$����y�','',0,'?'),('~q�IP�I���r��','wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�eY����۬x2���Y','���g�Hn����~<�0^Ff88���.%x8','',0,'?'),('~t��K��}�=?��A','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/flatten.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/flatten.js',0,'��<�2�\\�\"��]0�','��<�2�\\�\"��]0�','Dn��S4�R��}tU]�\"H�S�)Ia�0մ','',0,'?'),('~v�u��e�d\n�U�V','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/join.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/join.js',0,'f<F�^����{WQ��lR','f<F�^����{WQ��lR','���2~���N�\\l(m�\\s��ٻk�1�pb���','',0,'?'),('~}�{ ��>D�}�<','wp-admin/css/code-editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/code-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�3�;�7��v:�P���','JlA��Z��q��F�v�<3�I^��k�','',0,'?'),('~�7;�@��n��V�','wp-content/themes/mint/assets/vendor/jquery/src/ajax.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/ajax.js',0,'��E�z\n��tƳ��r','��E�z\n��tƳ��r','�l����K\r�{��#>=��3U\'UwKyic�`','',0,'?'),('~��ReOX�f2��`�','wp-includes/class-wp-post.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��6<b���Tr���','� m�\\��|+��3���´x�3V�wg','',0,'?'),('~�y\'ڨ.�O���S','wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/chaining.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/test_underscore/chaining.js',0,'��ꨠ��v`����I�','��ꨠ��v`����I�','V��)8p ���>��aMԡ�qTORG˹ָ�','',0,'?'),('~��^�]�.��)\\$�s�','wp-content/themes/mint/node_modules/pako/lib/zlib/zstream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/zlib/zstream.js',0,'�k����0�X*49I�X�','�k����0�X*49I�X�','��+9c�H9rSw���aITn���9u3\rL��','',0,'?'),('~�Z�)�}v3��-`�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/lib/sourcemap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/lib/sourcemap.js',0,'q6zF�\'�{�{|��5/','q6zF�\'�{�{|��5/','�?NϢ�9��� �B�3��*�Q�|�z�-','',0,'?'),('~�C0��2�3*���J','wp-includes/blocks/more/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/more/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����w�.�,$�#>�','+�穩T^3=@��5��_���jzǼ[9+�N.�','',0,'?'),('~�$( �w뱖����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/takeLastWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/takeLastWhile.js',0,'�פ$�J��f��','�פ$�J��f��','N/9�t =Bya����r�XAg�%5�rP�\\�\n�4�','',0,'?'),('~�LH��vpu�� �','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js',0,'X�X��\"�<*��ބ�','X�X��\"�<*��ބ�','�0��)��m8)�+�;�P�YK�K$4���*�','',0,'?'),('~���*S�̙e�','wp-admin/images/freedom-3.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/freedom-3.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��(�縫\ZX��֚�1l','集(���;�F�\n�k����Q���u�','',0,'?'),('~�������Q8�a5�\Z','wp-content/plugins/wp-optimize/images/our-other-plugins/internal-link-juicer-logo-sm.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/our-other-plugins/internal-link-juicer-logo-sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�)�c�\0��痹�','\n����3e��mEn���Z��!�e�c','',0,'?'),('~�2����5�u�=�wt','wp-content/plugins/gravityforms/js/datepicker.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/datepicker.min.js',0,'��WJ�8<�T���','��WJ�8<�T���','fo���_��B_:3r5a�B��6�k�5J','',0,'?'),('~�Pf��ԩ~1�LYw�','wp-includes/blocks/button/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/button/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\'�W�k��bS','�E���%r��|��O�Y?M�b́�#g','',0,'?'),('~�A�l���f�sU ','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_UY.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_UY.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�؋&TE�f�x�g�A�`','���㟧[k��+ݲ�)R\r���<���k�,','',0,'?'),('~ť�s\0�1y�$�L}h','wp-config-sample.php','/home/adaptiv2/juiceelectrical.co.nz/wp-config-sample.php',0,'�����3�F? �.�2','�����3�F? �.�2','��q�� r\Z���-/m�v{��)�v��','',0,'?'),('~�Ӹbc��\Z$�@$��*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8���b;�=YXJ)շ','���̆%\r���N�n_n�\'E�ݸږ�W{=D','',0,'?'),('~����\n��\'��$�<','wp-includes/blocks/details/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/details/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z��$U�p��=','h��D0Dc���ErCQ��6&0�V�Lf�|љ\r','',0,'?'),('~�����4(�6�>�','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitdataTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitdataTest.js',0,'��Qo4� �6���s','��Qo4� �6���s','��-�Eq�GU��P�T�\0�:b�f�J=��r','',0,'?'),('~ʼZT� ҿG��\n{e','wp-content/themes/mint/node_modules/bower/lib/node_modules/infinity-agent/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/infinity-agent/index.js',0,'MXeWj�Q��\'���','MXeWj�Q��\'���','Ը,+fI^����,g�9�,�]�/!yՠ','',0,'?'),('~�o��\Z��bvbQ9\"','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Y}�%�a��0�','�}I�V:�&$�z]��9�z�\'���','',0,'?'),('~�%E�I��N�a\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/reverse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/reverse.js',0,'J�PG-v��1��\Z� ','J�PG-v��1��\Z� ','�\0A�;lv����� D�6����INx\Z3�_C','',0,'?'),('~�Oeғ)����m\rG','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-rpc/class-udrpc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-rpc/class-udrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҷ#�ޮE���J�%�','qGh�[����*����LZ�2#<a�Њ�\"��','',0,'?'),('~��M�����?A���b','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/lib/copy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/lib/copy.js',0,'<��vTt5�O��\'\\','<��vTt5�O��\'\\','�aM:��0���0ժ��QJE��%S0TΒ�&�\\��','',0,'?'),('~��N!U,o<y_�','wp-includes/SimplePie/library/SimplePie/Caption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z=�R/iP����','<:c��#�{ AdgS�Q�~]�OP�N�J�]\0','',0,'?'),('~�{r��\'�������&','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/deepClone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/deepClone.js',0,'���*T73����r','���*T73����r','�(H��t)7D�v��Y,�ѽ�e����5ɪ','',0,'?'),('~�5A����=�$�ݩ�|','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/ClassCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/ClassCommentSniff.php',0,'�GE\"�s.\n���(ɚ�','�GE\"�s.\n���(ɚ�','o���4t��f(�`؈w{ qs�E�pɮ�:;R','',0,'?'),('~� ����Aj��','wp-content/plugins/envira-gallery/assets/css/images/icons/cross-inverse.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/cross-inverse.svg',0,'F�\r�x�nD�nG,���$','F�\r�x�nD�nG,���$','�?If����ĩ ����b\\��3�mH��','',0,'?'),('~�u�������\Zl�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/partial.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/partial.js',0,'�[>[i�_�}4�����','�[>[i�_�}4�����','�M�ms�\'?n���\r��4�-]�r�� ��{Մ��','',0,'?'),('N]t����/\Z','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X�9�Lz���3����','@\Z���|�j\\Z ��8`�d3w[0j��m�G��','',0,'?'),('�j��[#<��Y�*','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/README.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/README.html',0,'-o��R���)�*�','-o��R���)�*�','.21B�wSM�3�S���\"k�X\n���[(�','',0,'?'),('�ldK�м����','wp-includes/js/dist/components.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/components.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w-˗��Ks���5�','�=�\"�� -*��6h-��&4�c�~ލ�','',0,'?'),('�f�F�� ��@�>z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isNil.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isNil.js',0,'KOBqk9$�\\���','KOBqk9$�\\���','+\0�O�P�+�s��J:�I2��h@i���&��I','',0,'?'),('�@��o=�z�<F�%','wp-content/plugins/wordpress-seo/js/dist/externals/componentsNew.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/componentsNew.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��E���*\Z�R@�#�R','�Z�P27��\r����++t�/�AR�I�V]<{f�','',0,'?'),('$�.�L^FvV��z�m�','wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist.bak','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist.bak',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Wx��6����bv�R','�@ݝ��r+�|.i�L[��\Z��i�Z\0�u��','',0,'?'),('$����g�=�P�kDHu','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/size.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/size.js',0,'E[�s���g�S�B�','E[�s���g�S�B�','v�W���(В�\"���7+R�_�ii&)a��T�','',0,'?'),('.\\\\�JQ�-Y��','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-install-plugins-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/user-cannot-install-plugins-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѣ��f96*��/�i�','C��HaF�]��;\'P\\\'sn&�İ�n�B>�','',0,'?'),('.ć�9!X����,','wp-content/plugins/gravityforms/includes/template-library/templates/class-gf-template-library-array-store.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/template-library/templates/class-gf-template-library-array-store.php',0,'�.�ߛ nuX/�B���','�.�ߛ nuX/�B���','Nr\n�;�|\r��+��gb��a�ŋ�d��Y��;','',0,'?'),('4R�������ē','wp-content/themes/mint/node_modules/mkdirp/test/chmod.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/test/chmod.js',0,'\r��\r\n\\ =DE�T��p','\r��\r\n\\ =DE�T��p','`Ap��\Z�Ę���b��@dz9g�k�J�G��g�','',0,'?'),('6\0�O�kvzfTN','wp-includes/js/jquery/ui/effect-fold.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-fold.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7&��<q!�<�9kS�Ѫ','7b.�Hƽ��[/\n�����3� G��O�','',0,'?'),('7�.ʋ5���1�','wp-content/plugins/wordpress-seo/src/generators/schema/person.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generators/schema/person.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ǡR�v,�q�\r��2�','�L߆91��g���8ﮢ*`b5r�ĖO�ҕ','',0,'?'),(';j�묀tJ&�b*O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/apply.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/apply.js',0,'r��0h1�d�����Y�','r��0h1�d�����Y�','��?o�T$ص~�$C[\'�t!�#�J5�\'H�ۮk�9','',0,'?'),('@�={&����}�_','wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`^ɤ=��R@\0>��d','}E�˷�N�.@��0� ���� ����','',0,'?'),('B�2j70�/�zLq��','wp-includes/css/dist/block-library/classic-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/classic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��dc5��?�','�����?�\"4�AH�CǓ����_/�','',0,'?'),('I���G����][��','wp-content/uploads/cache/4457b09d22d097a371c098b7291df39381ab76e0.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/4457b09d22d097a371c098b7291df39381ab76e0.php',0,'u�E��>���b{%8��','u�E��>���b{%8��','�1Q�l�V�u��%�I�o��O[{XQ;nX\r\0I�M','',0,'?'),('L�Js�ކwNO���','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/examples/json.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/examples/json.js',0,'jM�7�������\'','jM�7�������\'','�\\(ֵ��l������e$�2O`��2��e�','',0,'?'),('NWj�&`4 Ȇ�d�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php',0,'���cKP����i�k','���cKP����i�k','�ng�ܛ±��C~�xHi4U.4�48]i�','',0,'?'),('N�H1e&@&iW�E�F','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_compareAscending.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_compareAscending.js',0,'b��vQRK��G���e','b��vQRK��G���e','�w�\n��U=P�X��r�^�@(ˑԱ*,&���2','',0,'?'),('R�(�g�4$��8Է','wp-content/plugins/gravityforms/includes/util/colors/class-color-modifier.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/util/colors/class-color-modifier.php',0,'����.���Ec��X�>','����.���Ec��X�>','�](p��)Z��#`32$q:��p\Z���6Ԙ','',0,'?'),('R�;XJ��GgKe�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/findLastIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/findLastIndex.js',0,'2@���o/�b5��6','2@���o/�b5��6','��\Z���3cDn��飑xKO�a��: lð�','',0,'?'),('c��J�w��eIO�Iq','wp-includes/blocks/cover/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/cover/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�~�P�4!��h\Z','��eg�ė�(�n�\0�B�s�*�(���.�;','',0,'?'),('j&��^���b����','wp-includes/ms-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ms-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~K1Zm�9�8�o[Ŋ','��*JlU�L��rbΘ���6k��OeH�D','',0,'?'),('j^��SN�-O� �','wp-includes/css/dist/components/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/components/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�XA-o������/}','W�\"X/n���Q2����Mb�j\'��\Z��0�','',0,'?'),('tS�\"��lZ�c��Q','wp-admin/js/auth-app.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/auth-app.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','04��z��>�s�,\r','S�\\��|3m�4�:��ϭq��B��\r�7�','',0,'?'),('}BfkV�=�15l��g','wp-includes/blocks/avatar/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/avatar/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*���(\Z���Iz�','e2�,�Ք��e��n�C��L�]���s��+��','',0,'?'),('}�\0�_RJ�a�Z|�w','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseAggregator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseAggregator.js',0,'��oq���M�����=w','��oq���M�����=w','��w<N�P.�=G\'���G\r���r�O����!v','',0,'?'),('�)S��P@4�\'�','wp-content/themes/mint/node_modules/bower/lib/node_modules/tar-stream/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tar-stream/index.js',0,'��7(�(��N�߳�^','��7(�(��N�߳�^','#�h�G�JM���<���z�&r�\\n~9&�S','',0,'?'),('�/���������b','wp-content/themes/mint/node_modules/uglify-js/lib/scope.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/lib/scope.js',0,'�v��t�х K� �:S�','�v��t�х K� �:S�','�ֿ�AoY�=ؖ`�W���/��hՄ�OU͚� K','',0,'?'),('��cK�� n��','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-page.php',0,'����X:Q1��X�','����X:Q1��X�','@���Tg�:\Z*f��[��\nԹ�m��5Õ\"�','',0,'?'),('��^��y�� ��r�','wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.compat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.compat.js',0,'O�����\r�Y�\0��c�;','O�����\r�Y�\0��c�;','�CZ#�D��c�����A��\r��3���L�s','',0,'?'),('��U)�i۲���N','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/spread.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/spread.js',0,'$N�V�ɯ^���<4','$N�V�ɯ^���<4','K��9\Z��\\�^ȱԛb�Qiǹ�\"K��I�J��','',0,'?'),('�\'RCZ�i<E�T �','wp-content/plugins/envira-gallery/assets/js/lib/layout-modes/bnbOverlay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/layout-modes/bnbOverlay.js',0,'Z�{���j+S�$ܧ�,','Z�{���j+S�$ܧ�,','kY�8Fg�\\|{��M\\͗dhs�t��\"E|�Q�','',0,'?'),('��+�������p�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/BusFake.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/BusFake.php',0,'�\\�b�|p��e��','�\\�b�|p��e��','_�v�P�ל\n_�����i�F��X�T0�td','',0,'?'),('�z���~48��l�Go8','wp-includes/js/dist/style-engine.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/style-engine.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�5���_;���I�','�x!^��_�)2�\\�-E���� �D\n��V�','',0,'?'),('�G�ߌg��L~��-J','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/collect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/collect.js',0,',�F\\*�R�7�)4�G',',�F\\*�R�7�)4�G','��Rb�#���Kt��47� ]����Zd�7��','',0,'?'),('���[��A�/��RN','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/filter.js',0,'�F.Z,Y^��C$���b','�F.Z,Y^��C$���b','k\"�I�{��U��\\Ɓ�1˶�=����E�\r�o','',0,'?'),('�skm V!�(3\\�\08','wp-content/themes/mint/node_modules/cli/examples/progress.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/examples/progress.js',0,'v�%� �� �9�8u5','v�%� �� �9�8u5','�\0�6$m!`{���)����^k��p����&','',0,'?'),('����0l��w��c�7�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Foo2Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Foo2Command.php',0,'�6�\'���Kh?��y','�6�\'���Kh?��y','u��7��.�!}ધq0�n��({S���','',0,'?'),('�D�8-���¤r�l','wp-content/plugins/wordfence/images/logos/shield-care.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/logos/shield-care.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' � s�h߉\0��tv�','�f2\"(>�l�H93 ������ ��C$�<','',0,'?'),('�8W{��ӭ��:�{','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/padLeft.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/padLeft.js',0,'��|ĭ��3�6�V�F�','��|ĭ��3�6�V�F�','.�*�g���|-�~Y��d-���?��\"�P','',0,'?'),('���7�>M[��THv','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/RedirectHttpAuthorization.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/RedirectHttpAuthorization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�e�����O��0�','���K|��~R�qv��n�5����g3E�','',0,'?'),('��\"�����[�尲�','wp-content/plugins/envira-gallery/assets/js/media-insert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/media-insert.js',0,'<T�0c>�C�\n��[','<T�0c>�C�\n��[','�:{�#0�VG`%��Lh�ޛOL*l�>`h���','',0,'?'),('��4A�O|yz�x�R','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isDate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isDate.js',0,'�ͥ�oڣ���*��','�ͥ�oڣ���*��','�����\"�he�{y�W��E��pQ<��','',0,'?'),('��,�*A^ \'��|9�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/filesystem/FilesystemAdapter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/filesystem/FilesystemAdapter.php',0,'\r�Ϯjnq��:�vS�','\r�Ϯjnq��:�vS�','��A����C�-Z\0(��ƚ*�|k�r��L\\g�','',0,'?'),('�_ïfn�N��|�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createToPairs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createToPairs.js',0,'6�-h..��1M��Q','6�-h..��1M��Q','��+:Cٍ���Pj-����R�Ik4 ��M��','',0,'?'),('��%G]f�@�%�Z��','wp-content/plugins/wordfence/views/common/section-subtitle.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/section-subtitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n^\r��#f��st��W\Z',':�taQE�&͜�����s١\nGb\\Z S1{�','',0,'?'),('�B��C;�st�3D/�','wp-content/plugins/wordpress-seo/src/exceptions/indexable/not-built-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/indexable/not-built-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\ZW���� ���-�#','���X��왶ѓ��>���07��6��k�2','',0,'?'),('ҋ���#nkU�ɣ\'','wp-content/themes/mint/node_modules/less/test/browser/runner-production-options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-production-options.js',0,'T���/����U]','T���/����U]','��C�2�G����gtf�S���K���lDXt','',0,'?'),('������M*�wؖ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pullAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pullAll.js',0,'LHz�ru�U�Aq�N�','LHz�ru�U�Aq�N�','�H\ng��ҿ紜S_D�ĉ8������U$�<','',0,'?'),('�СqD֚?�i�X','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��M�y�W����n','D���Z_1dȐr��Fŷ���b� C*Ñ��','',0,'?'),('�K�Q�}U&;&���Q','wp-includes/meta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ℒ�Jhz]��\\1�g','?L����sx��f�r�|��0J��{�','',0,'?'),('�)o�ٗ���M�_ ��','wp-content/plugins/gravityforms/includes/embed-form/endpoints/class-gf-embed-endpoint-get-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/embed-form/endpoints/class-gf-embed-endpoint-get-posts.php',0,'��0�QC�(�[� U','��0�QC�(�[� U','$Y\0�0N3�>�Ƅ�~��xQ���(\"��b2','',0,'?'),('�tr�εF_� ���','wp-includes/js/wp-emoji-loader.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-emoji-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�t�\ZUO7l��s:\Z�','��D`�%�Å�9_�]M%�v���zVxZ�(\0�','',0,'?'),('�ؖ��\\z����','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceNotFoundException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/ServiceNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b����h\\�o�R���','�,�7=T�3�*rZ\\�����7�yaX&Dt�z','',0,'?'),('�t�\Z�\Z���s�','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/MST/CliCommand/MultisiteToolsAddonCli.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/MST/CliCommand/MultisiteToolsAddonCli.php',0,'1�2�Ô�Sڲ��b �','1�2�Ô�Sڲ��b �','� ��܌`�����A���OT|��C(x�0��6','',0,'?'),('�Ep�:8\r:�J��','wp-content/themes/mint/node_modules/less/dist/less-1.1.3.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.1.3.min.js',0,'M�S�����r��w�','M�S�����r��w�','��~[ycV&ݷNg�E���sS�cϓ','',0,'?'),('�͍�����ρb�B','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:�CVF���ІR',',)���|F��a��悃��f��>��;J��\\','',0,'?'),('�Ϫb ��@��*��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/CompilerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/CompilerInterface.php',0,'�se�ˊ��������','�se�ˊ��������','�é�1F��x���í���x�?�8أ7wk','',0,'?'),('��pb�����ܗ','wp-content/plugins/wordpress-seo/js/dist/crawl-settings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/crawl-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E3�bH�Wu��ܴ�P�','j�9���f�p*���prOr�$ ��','',0,'?'),('��C4����_�Dm��','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump_node.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump_node.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`\'��v�s�f��h3P','\r�-�p��A�e�Z�>�=��{��^�XL0�','',0,'?'),('�`�3%N��2О`\n','wp-content/plugins/gravityforms/js/form_editor.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/form_editor.min.js',0,'?����i��P\r�','?����i��P\r�','�����;�<7ʕ)��\']X$?4��\'J���','',0,'?'),('�&Ƀ$����(z����','wp-content/plugins/wordpress-seo/src/generators/open-graph-image-generator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generators/open-graph-image-generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ei�K, �?��,�','n�4�w:��K�C�AFM��T��f2��[','',0,'?'),('�(��bbq��A�H��','wp-content/plugins/envira-gallery/src/Utils/Import.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Utils/Import.php',0,'�V��S\'*I\"�f�싲','�V��S\'*I\"�f�싲','�=����;qF���{�T3%4?����\ZǚW�','',0,'?'),('�)�����Е\\�Y�+�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/zip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/zip.js',0,'�)�� �Z�T���]','�)�� �Z�T���]','��#��C�FK�4�3�U�u\'��Q�Y��{�','',0,'?'),('�3-�����f��\n','wp-includes/css/dist/list-reusable-blocks/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/list-reusable-blocks/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xy�DƁ���̵�-','�P��#kKD�*�����\n.P|/�e�s�m�S\'D','',0,'?'),('�:(\ZcK�������9�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/queue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/queue.js',0,'~�a�)_ݳT�x�+','~�a�)_ݳT�x�+','9( >3F��9��\rfK2�h+��8;���g���J','',0,'?'),('�:8q�L�g��v�h_','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/invokePath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/invokePath.js',0,'HG�6��c\\k�]`�','HG�6��c\\k�]`�','������V�ϙ�����7��Ց�⇚�ܸZ�g�','',0,'?'),('�;��!1�>�Y�xQ�','wp-includes/js/dist/block-editor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/block-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����h�:�f1ډ��','X薧��,Q^�*T+j�7:��#�:�3','',0,'?'),('�<��m�^MlQ�}�','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/dash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/dash.js',0,'9�}�\rP���ǘ-V�','9�}�\rP���ǘ-V�','��fY��/,\r�h�cv���<��s�U*�f] �','',0,'?'),('�?y���nC�g�<V�*','wp-content/themes/mint/node_modules/deep-equal/test/cmp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/deep-equal/test/cmp.js',0,'e��}�,?���kz�X8/','e��}�,?���kz�X8/','��c}��:�WG�\',��_�!�y�x�)���','',0,'?'),('�B�o��%�ĺs','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post-status.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post-status.php',0,'�#�<�7�h�뺙R','�#�<�7�h�뺙R','@\"Ć��Z��l�x7�iemE��Ob>k��','',0,'?'),('�H:ȃ{ɻ�a��I','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Null.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Null.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\"����1���X�^��q','y�{�� y�4�\'K�\'�n��\rĸD��,d\0}x��','',0,'?'),('�O�i�!��C�U`','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/values.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/values.js',0,'�0�_�:l�pL��a�','�0�_�:l�pL��a�','M�Q��n�H`[RRv�牢I�o?����','',0,'?'),('�P��,t�Ɔ��x��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mime/build/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mime/build/test.js',0,'��ji��b�c��w�.w','��ji��b�c��w�.w','ͧ��̔��<�3��I�E�g�oo��,2�S�','',0,'?'),('�b��x���� ��qnw','wp-content/themes/pinnclonesmalltest/dist/scripts/customizer_6abb70ab.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/dist/scripts/customizer_6abb70ab.js',0,'-���䳴-�A5kq�l','-���䳴-�A5kq�l','),��=�B��(\r���/R\n&���@N攉','',0,'?'),('�h��8��i�C ����','wp-content/themes/mint/node_modules/load-json-file/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/load-json-file/index.js',0,'���]}g��֯I{�','���]}g��֯I{�','Tp����NKd�Qkԃ,�G\"\r�\"�U\'W�4�','',0,'?'),('�l�q��\"Kh�X���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/isSame.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/isSame.js',0,'��*�PS��M��Z\\','��*�PS��M��Z\\','� �}D}�N�`0 ���˵�h�����L','',0,'?'),('�n�� �c��%��','wp-content/themes/mint/node_modules/asn1/tst/ber/writer.test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/asn1/tst/ber/writer.test.js',0,'c�Eѵ@@�����(�','c�Eѵ@@�����(�','�H�=���k��ğ�m}SOh�0c+X+ �A\r','',0,'?'),('�thG����1��GbT�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/wrapperChain.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/wrapperChain.js',0,'����If?d�?%^','����If?d�?%^','��P�{�fS���{t�W����*:��x��','',0,'?'),('�uU�cy���)L^��!�','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Invokable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Invokable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*K j��R���z','���\"�Ҵ�\0�vt����dH4�5~,#�4�','',0,'?'),('�vx��4yQ��>`��T','wp-content/plugins/soil/tests/Unit/SoilTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/Unit/SoilTest.php',0,'U�e�S6�V�݂�K��','U�e�S6�V�݂�K��','���Y�=p�Q�3��T���|�.�]1y�Oy��Y','',0,'?'),('�x����WZqB�?T�\0�','wp-content/themes/mint/node_modules/noptify/test/fixtures/b.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/noptify/test/fixtures/b.js',0,';]\\7�PB!#<�7�',';]\\7�PB!#<�7�','>#�\09YJ3�Oed�4��z\0��,J�s�՜\0�','',0,'?'),('�}�P8^�(����Jj','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/insert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/insert.js',0,'�u���[�)�Ƽ�K','�u���[�)�Ƽ�K','������\n�\"#8��B�S���j���\'�W� J�','',0,'?'),('��uv��q,OƬ/C@5�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/toPath.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/toPath.js',0,'Ҏ(�^���Q���6','Ҏ(�^���Q���6',',�|�w��\n����B��\r����~����}�-�7��','',0,'?'),('���^D\"_�\0��)x�','wp-content/themes/mint/node_modules/promised-io/engines/rhino/rhino-http-client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/engines/rhino/rhino-http-client.js',0,'�^Ɗr��)�����m','�^Ɗr��)�����m','�c\\���|m��~n�\Z���#+�9���Q�V�','',0,'?'),('���g*� �T�M�','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-base64-vlq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-base64-vlq.js',0,'˛\0�7^���\0�EX8E','˛\0�7^���\0�EX8E','�i@`fCoF�$\n��zI���0�� �\n��;*','',0,'?'),('����@��-���1P�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php',0,'B���l�]ܿw�C�','B���l�]ܿw�C�','����>I��ھ�H����W�0ª����','',0,'?'),('��B��z��qt����','wp-content/plugins/wordpress-seo/js/dist/indexation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/indexation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G���-)�R�7?�\n','�:r]�\r���F!2�έ��}��S��m�D{x��','',0,'?'),('��ah�#��8�c���','wp-includes/js/tinymce/themes/inlite/theme.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/themes/inlite/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4O��DIc`��EJ','p�v�T5Z>j��j�\0\0��f��xa/g=�&�','',0,'?'),('���3�W�_:{β]��U','wp-content/plugins/envira-gallery/assets/css/images/icons/lightbox.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/lightbox.svg',0,'�nz�I;j�C�a��BN','�nz�I;j�C�a��BN','���BF�:af�Wz���~��X����aJ','',0,'?'),('�����s�V����1�N','wp-content/themes/mint/node_modules/less/lib/less/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/index.js',0,'���2�Df9�x~��<�','���2�Df9�x~��<�','���<��ƕ\Z)�Uَ��,���Z�3�','',0,'?'),('��������O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/forIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/forIn.js',0,'�p���-�3^9-�2','�p���-�3^9-�2','��z��{c7Z�DX�\'�CWMm�7d+�','',0,'?'),('��#��\\7��\ZhG�l�','wp-includes/blocks/post-navigation-link/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-navigation-link/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r[�u��׀?�vFq!u','��R���/(+\" ~$W��\r@]c=�@Jw\Z�G','',0,'?'),('���� Q��wxT����','wp-content/plugins/gravityforms/includes/settings/fields/class-button.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-button.php',0,'�g<܅�E��\n@nKR','�g<܅�E��\n@nKR','\Z��fTFB�fY-��x��w$����DI�XGl��','',0,'?'),('���J�<#2��Kor��i','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSortedIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSortedIndex.js',0,'���rA��r�eQ��','���rA��r�eQ��','�����E�:���[L���t�I���','',0,'?'),('��.���̱� �Դ�,','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_Symbol.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_Symbol.js',0,'d��dY@c�','d��dY@c�','����Sӭ���q�-�J>>���Ap��','',0,'?'),('���emg٩����#','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/OptionFactory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/OptionFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hW�M� a�u<��NGA','�}\'��\n�`�ZuhH��D._\nv/8}fD2�[','',0,'?'),('�����m��s@��~�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php',0,'����%��L���3���','����%��L���3���','��D��NV�q��v`_����a�X�O,','',0,'?'),('���r=����c���Mz','wp-includes/js/dist/is-shallow-equal.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/is-shallow-equal.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%+$d=�,�.)','yQ��9I%���H4���B��t�5�)','',0,'?'),('��1�����l��[Uú','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Notifications/Notice.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Notifications/Notice.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T��Q���o2H\\�\n','�-x�Bڗ�c�o�#���%T�6r�s��*W�%','',0,'?'),('��a�=� ���u�1&H�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-taxonomy/list-empty.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-taxonomy/list-empty.php',0,'t���9VG�r�Z+[','t���9VG�r�Z+[','B��{�+�\"��;m:l���8��q��|4��H','',0,'?'),('��% �+�곂4�{:','wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o�ѕbY�R�����','�tiioP7,�R|�q�X��)ᆊ�Ǯf�@Kv� ','',0,'?'),('�Ľ�S��3���l','wp-content/themes/mint/node_modules/grunt-modernizr/test/gruntfiles/Gruntfile.cssclassprefix.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/test/gruntfiles/Gruntfile.cssclassprefix.js',0,'�m��82���0','�m��82���0','��x����৳/$��1��~ �a�jr�^�','',0,'?'),('�ųg�w3�%׆l4','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/after.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/after.js',0,'���`�Il����z^','���`�Il����z^','Mb�}��͍����/PS�i֣�:��c��6','',0,'?'),('���!��h\Z�ɨ$\"R','wp-includes/css/dist/edit-site/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-site/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� Yڸc=���V�+�','�|{�yv�����Q���B����P�<2�','',0,'?'),('���:��W��+3��W�}','wp-content/plugins/gravityforms/includes/settings/js/tabs.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/js/tabs.min.js',0,'U%0ɻͭ��\';]\0b1�','U%0ɻͭ��\';]\0b1�','OT���u�Ĺ�P�\"��]����tuk<�w�','',0,'?'),('��ں�u���M���[\r','wp-admin/images/wpspin_light-2x.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/wpspin_light-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�%�-�E�;����|','�u)��J�A�92���$��N�8�����\'F','',0,'?'),('��Nx��ډ\Z�8yH\\�','wp-admin/js/theme-plugin-editor.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/theme-plugin-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?tS��~5��~���','�w�T�}υ��*e�}�v�W�*!�E���H','',0,'?'),('��sSk�i�<4\'c�-6','wp-includes/js/wp-embed.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�wbs�xg�p��)q2*','�.��b��$-\'�w�P\\/����\"O���XH','',0,'?'),('���)e��.��\nO�','wp-content/plugins/wordpress-seo/images/video_plugin_assistant.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/video_plugin_assistant.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"��0�GiQf���i6�','�<� 2�6^S�]įA��-�0L�}��2�` P�','',0,'?'),('��,�lK�\n�DhDA','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isArguments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isArguments.js',0,'&JvSϴ��\Z*�/�','&JvSϴ��\Z*�/�','>�B,Cc���x�j��K���=Y�\\d6�;۽pM','',0,'?'),('��^Rp������|��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/reject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/reject.js',0,'w0N�7�5�\0�cdo','w0N�7�5�\0�cdo','d�5z�xE.#)N5�E�;H���d;u6�sX�','',0,'?'),('���\r��`>��p��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/rand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/rand.js',0,'QG��&�v�}�+A_p3�','QG��&�v�}�+A_p3�','�#�\Z��Ov8B�)����U��.������^��-t','',0,'?'),('���n!��;�Zd��͒','wp-content/themes/mint/node_modules/currently-unhandled/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/currently-unhandled/browser.js',0,'�\\��\Zt@�ݘШi,','�\\��\Zt@�ݘШi,','��%�l���B���yK?[�χ뾏�Ny�]','',0,'?'),('���?�@B*�Zk�V','wp-content/plugins/advanced-custom-fields-pro/lang/acf-tr_TR.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-tr_TR.l10n.php',0,'���؎gl|�`T��T�%','���؎gl|�`T��T�%','\"����d*_ˎ�Y�*��v�H�m%�C �\"?','',0,'?'),('��@J��Tl�Xf���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createAggregator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createAggregator.js',0,'g*���G�Jx�9�3F�','g*���G�Jx�9�3F�','j����a�d�<�6�t���ɽ��H �By�щ','',0,'?'),('�����^VjLZX�8t��','wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/installation-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation/installation-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?j(X%U�Ġ�c','G�Ն!nG�A��M�^(��0�*p�H��;���','',0,'?'),('���e��97�aJS','wp-includes/images/smilies/icon_smile.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_smile.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3�.)�2���p���','ˠ�\",�Rʨ�Tr=�o��r�З:����','',0,'?'),('��>�6��~�X�4Y� ','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/View.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/View.php',0,'����=&�n;8�','����=&�n;8�','��������8�C�\n��ꖮ� �xw��[�%�','',0,'?'),('�!Lqq�1�R�cj�#','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=\Z�0t�f����','}\\Q2:�E��0��\'Ϲ�|�)�g0w�&.�','',0,'?'),('���S���+�\Z,�=c','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/contains.js',0,'f��X��I�!�g�S','f��X��I�!�g�S','|�A���t��d�%��[\'i��c^)�Ƒ�� ','',0,'?'),('�\nQ��֠b����','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue10.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue10.js',0,'�z/3�,�ybI6����%','�z/3�,�ybI6����%','����@4x��h��d�\nL\'�3��N��\0','',0,'?'),('��XQ���d9r�ڼ��','wp-includes/customize/class-wp-customize-themes-section.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-themes-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��.X�:>�Y��','�`x��0�yy�[]^����ݚ��U���gL','',0,'?'),('�cdcƚq�~�%��','wp-includes/blocks/navigation-link/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i&�Ѷ��R���p%�','���D�.rO��� <�Bd�Z�h�8\r~W]','',0,'?'),('�go�@>3:ۏՍ�h','wp-content/plugins/wordpress-seo/inc/class-wpseo-replacement-variable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-wpseo-replacement-variable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>����\'%�bC��','|�.�#���f��Z�Z��Y 9��~���\Zr�K','',0,'?'),('��{�[�6�f��P�','wp-content/plugins/envira-gallery/assets/css/images/icons/printing.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/printing.svg',0,'��8��\"���*C�ؿ','��8��\"���*C�ؿ','g�?��G��>盄`�����u<fr�x������7','',0,'?'),('�}:bֹA52�r��[','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Stack.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Stack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�[�c$�z�!��E�\"','�ɐ�خ����D����j��/#Q��[�x�s','',0,'?'),('�\Z�\Z�.5VY�ij1\r��','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/test/oauth_server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/test/oauth_server.js',0,'O9��두�O�:�!V�,','O9��두�O�:�!V�,','�ި�\"�\ryH\rZq���,��m��G�#�]ޏc','',0,'?'),('�0Q�����2�\'�g�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseEach.js',0,'S)�ӬK��ݖ��pC','S)�ӬK��ݖ��pC','xj�B*���%�*�w\n)�M_i�1�\n�q�L','',0,'?'),('�5��� b�=��%��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Access/Authorizable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Access/Authorizable.php',0,'�P����\\Q�Ys��>\n','�P����\\Q�Ys��>\n','U�.��pY�»� 5jp�V}\Zy�_הa\\','',0,'?'),('�9�������憁�t','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseMatchesProperty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseMatchesProperty.js',0,'�y����b`�����','�y����b`�����','�y�Ly$�\Z?\'B͓l\"[�:;�A�Y��{','',0,'?'),('�=^ԉRu39M%�!�','wp-content/plugins/wordpress-seo/src/integrations/admin/migration-error-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/migration-error-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r ؈��\Z���_W28','v�*��G���\r$��E�Z�:۞��f��','',0,'?'),('�>{�����S+L˺H','wp-content/themes/mint/node_modules/bower/lib/node_modules/cliui/node_modules/wordwrap/test/wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cliui/node_modules/wordwrap/test/wrap.js',0,'�Np�N����\'�m�','�Np�N����\'�m�','¿�,��|��M��f��Φy�35\\a÷ԁ[','',0,'?'),('�BL��قe��_h�*','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isRegExp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isRegExp.js',0,'���d�)����','���d�)����','ַ�զ\"Q9��ɪ�������ƽ ���;@s�','',0,'?'),('�I����+n��h^��','wp-content/plugins/wordpress-seo/images/stale-cornerstone-content-in-yoast-seo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/stale-cornerstone-content-in-yoast-seo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%l�)�&\r�-���','N�S4���רI����2�)^�Əri\0O�~��','',0,'?'),('�a��c)r2A�\'����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/map.js',0,'N�˕-������Y�','N�˕-������Y�','j_G;�7��t��|�5��=�\Z�4�=�N�D����','',0,'?'),('�e\nL������!','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php',0,'���{z_\r�*@�I;L�','���{z_\r�*@�I;L�','�9q�c?̊K�|K\\����\0�\\���[��B�','',0,'?'),('�el�5�s��E�úQ�','wp-admin/js/media-upload.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/media-upload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WC}��K���F��� j','w@���S¼|\r>��R�4�\n�N��3Ys�S��','',0,'?'),('�j\Z�+�}�)T�����','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/equalCircle.0d086278.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/equalCircle.0d086278.svg',0,'R~J�/E ��x7Y','R~J�/E ��x7Y','�e̺{���◷���^�A�A�딐��y}��f','',0,'?'),('�p?��a\"۞�儳�n','wp-content/themes/mint/node_modules/gzip-size/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/gzip-size/index.js',0,'.�VC��Ibt����*&','.�VC��Ibt����*&','�����oV+�}�&�\0�*:\nH(��=-L�4','',0,'?'),('�s�TILwM<7,a�','wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.js',0,'��6Ƥ>����^ �','��6Ƥ>����^ �','�Z�1�֯��߁�/�����>v֮�Ng��','',0,'?'),('�zq��]�*�QaQ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/take.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/take.js',0,'��P�Dk\'5\r*���MV','��P�Dk\'5\r*���MV','���F#��\'�S!C��\'n�Ȱ@� 3(�]��7','',0,'?'),('���������\"�M\Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createDefaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createDefaults.js',0,'���b�=�����k','���b�=�����k',' �b�#��C AJ5j���E���]�$�ư�]�','',0,'?'),('��,CUU����9i-','wp-includes/css/wp-auth-check.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-auth-check.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^#���N�!�^D�',')�}��f�����aW`mH�ӵ�r)�K�Z��','',0,'?'),('����-Z� ���N�@','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue17.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue17.js',0,'��P=�֓UB����','��P=�֓UB����','~����6�*]���h�|��b.��;b(��d','',0,'?'),('��9��[�~]|W8��','wp-content/themes/mint/node_modules/path-type/node_modules/graceful-fs/legacy-streams.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/path-type/node_modules/graceful-fs/legacy-streams.js',0,'b�Rܛ��p;&','b�Rܛ��p;&','z�a`�@e��M�- ��OF3�\'S��eS��7','',0,'?'),('���d�\\�ϱ2[���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/ManagesFrequencies.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/ManagesFrequencies.php',0,'�[Le\0UXр]�~#�','�[Le\0UXр]�~#�','��Z\r�T�Ie�#nПR��}���x|�@�\'��','',0,'?'),('�����?� E�ռ�U','wp-content/plugins/wordpress-seo/images/link-out-icon.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/link-out-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����)\"��&�S','��|���>�Ѳ��<���_]*[GXr�$��J','',0,'?'),('���t��C\0�]c��','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/dom-createElement-attrs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/dom-createElement-attrs.js',0,'8\r�>D����`oq��','8\r�>D����`oq��','n��1�2�\\�T�JG�PO%Lm?�H�L�G�[�','',0,'?'),('�� ���l<��М�ɿ','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php',0,'����RrZ��z��n�','����RrZ��z��n�','~�*��yU���/�B�iO0K���%S\n�]A}S','',0,'?'),('�ȉV? ��]�)A','wp-includes/js/media-views.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/media-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1$Z0�V�B*�=;�','�?�7�0��yHK�\n�%u�keu�B�Od$[','',0,'?'),('��Vk8������`�+','wp-includes/js/dist/development/react-refresh-entry.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/development/react-refresh-entry.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>��l��_T,��','G\r�f����n���y���YE\0��yw�E�','',0,'?'),('��`h�NkO�N8��','wp-includes/blocks/file/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/file/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i2h�o��8n1Ԡ�','�$�\n�Z�L]�%�m$�y�!C6��D�[�','',0,'?'),('���W���=�ԘHd�z','wp-includes/class-wp-site-query.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-site-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{|c��I�Qo��(N��','�5o:�]�}c�l�����ŗ:�KU���','',0,'?'),('��X����-�4�J�_�3','wp-content/plugins/wordfence/lib/wordfenceHash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wordfenceHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y���!\0�-�?*��L','�3���J�Ԅ3�kU�Pb�X���;9�)��','',0,'?'),('����\'>�[��·�','wp-admin/js/user-profile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/user-profile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z<��l�Ļ5)','S��.� �l��q��M����s�$�8m8�s�','',0,'?'),('���瑛�y^�mT��','wp-content/plugins/gravityforms/includes/locking/css/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/locking/css/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('��,����3�DP�Oh�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_lazyClone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_lazyClone.js',0,'9�v�o��G�k���\'','9�v�o��G�k���\'','�=U4���i��Ɏ�*���1�`6��@�1��r','',0,'?'),('��ȍ���{��X�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/ie8compat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/ie8compat.js',0,'>��m+TB-�#ȝ�U�','>��m+TB-�#ȝ�U�','A?�ɦ\\T���N���g�?�f��W��$:��q','',0,'?'),('���Pd������c�3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��.<$E�\0��g�:T�','ƝER%���f�\\�ɾ�\rv�8C�^�h','',0,'?'),('���V���s���\0�','wp-content/plugins/wordfence/lib/wfIpLocation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfIpLocation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s+�̙g��O;*XW','���jԚ�6��Ĕ- �B��1���&+�n','',0,'?'),('����q�_���ġ��>','wp-content/plugins/wordpress-seo/inc/class-yoast-dynamic-rewrites.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-yoast-dynamic-rewrites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%�7�������W��','gHn*O\Z��e��f<�u��^�vf�Vb�','',0,'?'),('�\0/RX�?\n����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toString.js',0,'@���m�ӈṛG\\K@','@���m�ӈṛG\\K@','��r�\ZH��4�mr�� �U�2��0��`\"','',0,'?'),('�O�X�g]<f@�','wp-admin/css/farbtastic-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/farbtastic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S@��[�\\,�3|��!','�Sm�\'�;d`��e�M�0i=�?>����?{','',0,'?'),('��%4��&�����_','wp-content/themes/mint/node_modules/string_decoder/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/string_decoder/index.js',0,'֡#p��@���@','֡#p��@���@','M���ך�D�Q��\"Y_#�\"8\'�ŷed>��','',0,'?'),('�uWۓ�WP�^��(L�','wp-includes/blocks/post-navigation-link/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-navigation-link/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O���vSi?\0�Â(��','�ŶC�ϭ�h���F0:2�I��v���\Z����T','',0,'?'),('� ]�,/�a�\Z�Wq5','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/intersection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/intersection.js',0,'�Q��F\nz\r���Gc��','�Q��F\nz\r���Gc��','�λ+]^blEͻ�qtw�АWM���*]O���','',0,'?'),('�\n��sقT{5�W','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time/parseMs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time/parseMs.js',0,'�����;��[��6','�����;��[��6','p2�������/uf$�}\\(��n��a�ŷ!','',0,'?'),('��-V���U9Ok�#]','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-dog-fooding.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-dog-fooding.js',0,'2�o�l����sG�q�','2�o�l����sG�q�','���@#�U�\rUljJ���p�l���8���cu','',0,'?'),('��ҁقK6Ad�Zayt','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php',0,'�z��?�fa�Q�$','�z��?�fa�Q�$','����]��KUbA�!e��Y�K�2�e���-�t','',0,'?'),('�3��Ƈe�(ú9�','wp-includes/js/jquery/suggest.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\+A)���n.;��','I<�{\04�`��<!j��Z8돲��D�HW��','',0,'?'),('��b����N�8�hk�','wp-includes/rest-api/search/class-wp-rest-term-search-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0���a�^��bR\\r','0��E�t���Z��[����Ĉ�iu�О���','',0,'?'),('��?��.J�a|/��H','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/guid.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/guid.js',0,'��I~��g����Z\"','��I~��g����Z\"','��<����]��+&��X��i�}a���M��|','',0,'?'),('��\0�O�z�����','wp-includes/js/dist/script-modules/interactivity/debug.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/interactivity/debug.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n�~:���jI�X�','�]�V7.e��\n���md�F�V퐙��&֔','',0,'?'),('��^�X|g�:���\\�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/add.0e409332.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/add.0e409332.svg',0,'�%�\\\r���n���','�%�\\\r���n���','�۵ae����p��\0�ú��X [�^�\"�','',0,'?'),('��o�u��N)�','wp-content/plugins/advanced-custom-fields-pro/pro/post-types/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/post-types/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('��\\�(��wB��I�','wp-admin/network/update.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�� ΒRU;�pp�b�','��,�!��m4f������NR�\n���B��^','',0,'?'),('�(tTlDά7&��MP.�','wp-includes/js/tinymce/tiny_mce_popup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/tiny_mce_popup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B7�I1�0�����d�','���\'З��/!\Z�a!�~�)��1D��','',0,'?'),('�(�����,�6�;�mV.','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php',0,'鵄�`���$�KG���','鵄�`���$�KG���','��J${��6�CF�Yk_<�Ve�ٴ���ÜY','',0,'?'),('�,��Wy q�I�&6:','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/examples/highlight-string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/examples/highlight-string.js',0,'�EP��GDz�n<S�','�EP��GDz�n<S�','���m!�D���4��s��3���<j&2�%G�','',0,'?'),('�/ �E:K�R寥�v�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V��[�SPk�C�','��ںم�Ŵ��}C:�ø=�~��Q�(8��$Q','',0,'?'),('�3rL���D]B��','wp-content/plugins/wp-migrate-db-pro/class/Pro/Beta/BetaManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Beta/BetaManager.php',0,'�,�\rŇ���^��\"','�,�\rŇ���^��\"','%��%j�]�\Zn�\nx�H�%)�.���*kv��A','',0,'?'),('�:�홢�%/�6�$�|','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/Container/TypeHintContainerResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/Container/TypeHintContainerResolver.php',0,'��+L��v���_�','��+L��v���_�','0�.X���<L�(8b�7��Ֆ��d H�~��d','',0,'?'),('�@�F �Ӡ(���e*[','wp-admin/js/theme-plugin-editor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/theme-plugin-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�np��$����|��','�pv�v0���u����TRt.�s�t�-','',0,'?'),('�A�\0B:P��%\0��7','wp-content/plugins/envira-gallery/assets/css/images/icons/downloads.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/downloads.svg',0,'2����t����Y>��','2����t����Y>��','DeV�5YE$DW+�Rg6��W���G�oz�&d','',0,'?'),('�F� �GJ��B��s7�','wp-includes/js/media-models.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/media-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ychx*{əd��W��','�A��5�S(��|����GF��K��E��~','',0,'?'),('�H����T�\0����p�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php',0,'��z�a=��dP','��z�a=��dP','.�����e��C�J���pwsb�V��1_�','',0,'?'),('�K�Q��?q�\r��c�','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/issues.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/issues.js',0,'�ô������F��ξY','�ô������F��ξY','�O\n�r�\"\\��T�AeHY�o���~�qࡠ','',0,'?'),('�MȮs����%}�+=�','wp-includes/blocks/latest-posts/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-posts/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ƚ\"C��ƾ� v5�','�\"�^����C���+���4�-�\Z��ť�','',0,'?'),('�R��A��r�&�ރ�ԡ','wp-content/themes/mint/node_modules/parse-json/vendor/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/parse-json/vendor/parse.js',0,'V}͊��Pjz�R���','V}͊��Pjz�R���','�4\"���6#, )���GILY�۟\"����m��','',0,'?'),('�Vd�������{-\'Q_','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/overflow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/overflow.js',0,'&v���{�N\'5�\r�_','&v���{�N\'5�\r�_','c��e�м��#�\'��tG���<�Q�$�\\V\n','',0,'?'),('�W= \\\'x\"�W��}��d','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���թ�K���^㥾�','�M�8:�naƋGZ�qQdý!����\'��&g1','',0,'?'),('�Y��ػ�甩���*�','wp-includes/css/dist/edit-post/classic-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-post/classic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q�/o��u9�ğ\'�','�(��l����F�Σ��E�\\��WB��=�3���','',0,'?'),('�]�Ϫk���gD��P`','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php',0,'��tUk3�^�j�T�','��tUk3�^�j�T�','+�aj)+;�\n���OT���V���@5�]@','',0,'?'),('�^e�Yy��֓��\\V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/md5-o-matic/lib/md5omatic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/md5-o-matic/lib/md5omatic.js',0,'B;\rew���UĨ+B','B;\rew���UĨ+B','-��ۈ&�a�1r�̙��Q,�9x�W�e�L�!','',0,'?'),('�`|y���� �I�hv3','wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/roles/class-role-manager-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j��t�)]t2M3|��q','Gzh�����Ƅ\\��l�𗊑��̀!�','',0,'?'),('�l˔��%�zx�a%','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Engines/Engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Engines/Engine.php',0,'�W�u�?�k9�','�W�u�?�k9�','����=��bl��L��km�Vv4��Ac','',0,'?'),('�l���;��$�� \n�','wp-content/plugins/wordpress-seo/js/dist/dashboard-widget.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/dashboard-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r\\gV�ڀڄ�n��','�hs���|����ݣG`4�rՄm�c� �','',0,'?'),('�m�i\Zt�T��(_�\rp�','wp-content/plugins/wordpress-seo/js/dist/block-editor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/block-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�{c\n�Ĝ�v���fs','o�E�7l�|��[�L!�֕��,+C$]��ġ�','',0,'?'),('�n�Z+z�5��O��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/CallbackEvent.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/Scheduling/CallbackEvent.php',0,'������(��f�#�!','������(��f�#�!','�\"Z���Й��C��s\\0Yud\n��C�|Y�','',0,'?'),('�p)�T\Z35�������','wp-content/plugins/wordpress-seo/admin/class-gutenberg-compatibility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-gutenberg-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�09�[z.','��yf���:��VN=�\"O(~�*�\\VAg��','',0,'?'),('�s�~%F��R�4mKNZ','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-chevron-left.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-chevron-left.svg',0,'k�rPig�o�z��','k�rPig�o�z��','��WX��vy�-����q;q*A�V�ͳe6[�4','',0,'?'),('�u2y��Ǜ�D�ٚT','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-script-level-return.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-script-level-return.js',0,'uMeZ�D�i�8�ѕ�','uMeZ�D�i�8�ѕ�','9}�!f�Db[@Pn*��eס�#l��+��','',0,'?'),('�u�>�j����ȵ�QI','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/omitBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/omitBy.js',0,'=̓��Р�� �+�s','=̓��Р�� �+�s','�e�^��DQ���5�DЀ�f�����^08s�4','',0,'?'),('�w��5���)���','wp-includes/css/wp-embed-template-ie.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-embed-template-ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)6�� ؞мq ���','�o��+8]�Su�H.�C�g��R9�&�+���\\W�','',0,'?'),('�{J�%B,��=!Z)D','wp-content/plugins/wp-migrate-db-pro/wp-migrate-db-pro.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/wp-migrate-db-pro.php',0,'����su���T+r�','����su���T+r�','ӦlY�u���z����mK��T΄ϐO�Q','',0,'?'),('�~�%��qw��','wp-content/plugins/envira-gallery/src/Functions/common.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/common.php',0,'Է�8vP�ޙ�*w�','Է�8vP�ޙ�*w�','�z@]�)��(�`�W��н���K���� 3��','',0,'?'),('��\0���+OW+�','index.php','/home/adaptiv2/juiceelectrical.co.nz/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m�]�#��N�X�,�','�Dz�\n�}_��7x,�9�t:��\'�\r����','',0,'?'),('��չx3#�`]���f�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Broadcasting/ShouldBroadcast.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Broadcasting/ShouldBroadcast.php',0,'�o�S����bTj5�z','�o�S����bTj5�z','��L��odž�=���o� �O76�?��Ӯz|','',0,'?'),('��*���\Z�[l�@g�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Input/InputOptionTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Input/InputOptionTest.php',0,'N�\'�\"npp-��7#��','N�\'�\"npp-��7#��',')�a-Lo�[v�Z�D�f]��i�!u��@27 \\��','',0,'?'),('���fUvǛ��;a��','wp-content/themes/mint/node_modules/amdefine/intercept.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/amdefine/intercept.js',0,'�=�z��r�VL��<6�','�=�z��r�VL��<6�','}{�l{?Gէ�zVǜ�4:��]����}}C��]','',0,'?'),('����.M2���\\�','wp-content/plugins/wordpress-seo/admin/class-plugin-conflict.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-plugin-conflict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ԵO,��5�wV�L','�\Z�7�E@����^���Ŏl�.\0#��','',0,'?'),('����?;���q�\"��','wp-content/themes/mint/node_modules/tape/example/timing.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/example/timing.js',0,'Irp�\n�>Ay�x','Irp�\n�>Ay�x','����>�A�ܜ�OHL]����2��.�*','',0,'?'),('�����A���1\Z�;�','wp-includes/rss.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uR��z�j��nڿO�','< 鎷��[�>Mz����^��*��l\\���','',0,'?'),('��_z�j�,P�hI;3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/noop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/noop.js',0,'\Z��$�>�mF����<','\Z��$�>�mF����<','���LW��&�Z�YW*6�Ā��mXd�~','',0,'?'),('��]���5�]Y��','wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/array-set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/array-set.js',0,'o��֙��f��J\'��','o��֙��f��J\'��','��tq��W<x/R�]\'�+�\r#]o.�J{��t','',0,'?'),('�����:<��CEly','wp-includes/SimplePie/src/Category.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����k����s�Ð','�e��j��|T�HDJ����t�N-��','',0,'?'),('���V�=� \"]��\Z�','wp-content/plugins/wordpress-seo/src/conditionals/updated-importer-framework-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/updated-importer-framework-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d��!��k�S���Y','b0�����},?�/�����Q�&��N�o','',0,'?'),('�����+�,S�58�','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/mark.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/mark.js',0,'4.#7��U�i��T��','4.#7��U�i��T��','�|��:챑!2\Z\\�ijA6�Wى�����','',0,'?'),('��{��h���B-o:Ih�','wp-includes/blocks/query-pagination-numbers/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination-numbers/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@E�(1�˱�e��B�','O;\nV��[%��\Z3����Eh�d�x�:�{�','',0,'?'),('�Ѣ/# |g��[) )','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q8�Z�5�Զ�x�F��','ub{<ah�##4��\0B�~<_\n_�!�u�ze','',0,'?'),('��`7����T��m���Z','wp-content/themes/mint/node_modules/argparse/examples/prefix_chars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/examples/prefix_chars.js',0,'�I�On��8W{�?�;N','�I�On��8W{�?�;N','?O�8���/��4%>!)\Z9��4r���T##oE�','',0,'?'),('���b��^�&','wp-content/plugins/wp-optimize/includes/class-updraftcentral-wp-optimize-commands.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-updraftcentral-wp-optimize-commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q(�9��W��pY�','(�{���\n<7o��F���GP\n���cjv�','',0,'?'),('��k�/%����-\rL��','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/network-xhr2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/network-xhr2.js',0,'V�K�.F�A0��2r�/','V�K�.F�A0��2r�/','a���9k�U�։�����D5Ąl¸�rԏ','',0,'?'),('��tU^��6����L��','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U9\rm{P��[k\Z|K�','sy�W�5�� �2#�ي\\�$y����;}�q\r�','',0,'?'),('�ީǕQ�hd^�ܡm','wp-includes/SimplePie/library/SimplePie/Core.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��E�?P[`��Tj[','�ܸ��l*;ya(������l77�C����','',0,'?'),('��՞[�p}\Z9�qv','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/UndefinedFunctionException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/UndefinedFunctionException.php',0,'�H��^g]Y����','�H��^g]Y����','�R�z~Ew��O�_E�1�8��h�ȔT��8','',0,'?'),('���v�A\nGr�3C9`','wp-admin/includes/class-wp-internal-pointers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-internal-pointers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*Yq#Ӈ�w�A)��','����>�8q�`��7a\"v*�G�<�H�t�','',0,'?'),('���Q��\n)\n��U2�Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isKind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isKind.js',0,'n�%u<ٱ~���Ҽ','n�%u<ٱ~���Ҽ','��<��\\j:z�̮;��Le��wc�WIP','',0,'?'),('��P�����\\����!','wp-content/plugins/wp-migrate-db-pro/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php',0,'�����\'S˩]T�','�����\'S˩]T�','�T?�+bl��\'g��ʘ(�$Em�<����','',0,'?'),('�ƶq���� f����','wp-content/plugins/wp-optimize/vendor/bin/minifycss','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/bin/minifycss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6���K���:���9�','Ƶ�J���[5\\�]zF {��o���ي�C\"','',0,'?'),('������Q��&E=*','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/overArgs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/overArgs.js',0,'R�o_)McS/�]�6��','R�o_)McS/�]�6��','t�h��\'L�K(�U�7�?�݂�Ԁ���({�32','',0,'?'),('�\r��s(s��k��\Z�A|','wp-content/plugins/gravityforms/includes/settings/class-gf-settings-encryption.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/class-gf-settings-encryption.php',0,'X!j�:��f�n~�7�K','X!j�:��f�n~�7�K','?,j�r�wBV�D�ONU�$x�\rj�6]+h\rjq','',0,'?'),('�\'`P�LmZ��^<','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/forEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/forEach.js',0,'���H�k���l.��','���H�k���l.��','������Y^6�%Z[yӚ��1|�+�\0�-��','',0,'?'),('�e춵�bk�4��`','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayIncludes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayIncludes.js',0,'�\nXI��W����\n�x��','�\nXI��W����\n�x��','�~U�Y�x�\\6��0|��\n��豁5M3�','',0,'?'),('�JyCR|�������(','wp-content/themes/mint/assets/vendor/respond/src/matchmedia.addListener.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/respond/src/matchmedia.addListener.js',0,'��?��.�����0ߥ�','��?��.�����0ߥ�','�c�\\��X/e\'�ka6��a���D�ˠDp��','',0,'?'),('�^l8ri��J`�?','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/properCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/properCase.js',0,'<�wp��c,g��)b1n�','<�wp��c,g��)b1n�','�r��뇈�j�kK%���s�8�\n���i:5','',0,'?'),('�,����Q��>;��ij','wp-includes/SimplePie/library/SimplePie/Registry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8�]�\\���Os�TK�','��Wc�o|=ġ�R&k�<t��+��p)�F�x+','',0,'?'),('�1b� �z�J�*%�{v^','wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/lodash/dist/lodash.underscore.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/lodash/dist/lodash.underscore.min.js',0,'73t����\n���ލ�\\','73t����\n���ލ�\\','iH�}��~��u�6�Gp���4W�VQ�k','',0,'?'),('�4mo~\"f��h��1��4','wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Jx��H�?h�b�`�sy','z�ϕ�j�D6Ĥ��NR�Y�,[VM2�VX���=�','',0,'?'),('�68��P$��]�q�&�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php',0,'4R8��Q��Uc�4.�H�','4R8��Q��Uc�4.�H�','�]z��Z�KK/y%la��}�h�W��On�','',0,'?'),('�8�Ƨ�� I����H','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-gl_ES.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-gl_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�#a�:�ekr��','k- gQ����3�����:K���wZz�J�?O\re','',0,'?'),('�?��LHa�Mz���','wp-content/themes/mint/node_modules/multimatch/node_modules/minimatch/minimatch.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/multimatch/node_modules/minimatch/minimatch.js',0,'�ZPj[<�[~��/','�ZPj[<�[~��/','۴����s(��l��g�K��_��s��:2f','',0,'?'),('�EB�LK�RһX��','wp-content/themes/mint/assets/vendor/respond/src/matchmedia.polyfill.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/respond/src/matchmedia.polyfill.js',0,'�*�,���f�#��]���','�*�,���f�#��]���','\0��i[Tv�l�XO�&���1$\'�-NUV\0H','',0,'?'),('�Ebl8�y���}����','wp-includes/js/tinymce/plugins/link/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/link/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*NȒmQ������','�`3�cYQ����9Wޭ#l���p�S+G��4','',0,'?'),('�H��3J�BVζ�.w�U','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ca.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ca.php',0,'��;�3�:���w�B','��;�3�:���w�B','J,�vºZ)�Н��_�\'y��G����2��','',0,'?'),('�W�nJ�.\'/x��','wp-includes/blocks/embed/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/embed/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v�M0AW+{�-�W','����Λ���Q=1��2��g6�0��j�0','',0,'?'),('�ZH��>~Z����','wp-content/themes/mint/node_modules/less/test/browser/runner-rootpath-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-rootpath-spec.js',0,'�r�U����OV\r]�}N','�r�U����OV\r]�}N','O�sg9P�c\r���(gU(]-͝��A9�v�O','',0,'?'),('�]���M����S�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue9.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue9.js',0,'�Y�Ҩx��;�\'��','�Y�Ҩx��;�\'��','�uH:��(������W���U�IK�N���','',0,'?'),('�`ss۱G�Ad\r���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/contains.js',0,'f��X��I�!�g�S','f��X��I�!�g�S','|�A���t��d�%��[\'i��c^)�Ƒ�� ','',0,'?'),('�c��tz�\"��ӳ�SP','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/_util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/_util.js',0,'��\'Vw��n��L9�s','��\'Vw��n��L9�s','���S$O����L�Y��L?yUƗ��wK','',0,'?'),('�e���p�2�@�g�','wp-content/plugins/advanced-custom-fields-pro/pro/acf-pro.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/acf-pro.php',0,'i�.\"\Zn�A�,_�Ŋv','i�.\"\Zn�A�,_�Ŋv','I�b���r[��a�\0�+mbn~Ig벲�\'�7�','',0,'?'),('�h�`1�Ն��3\r�','wp-content/themes/mint/node_modules/zlib-browserify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/zlib-browserify/index.js',0,'�E�)��τ3�}�O��T','�E�)��τ3�}�O��T','��EQ�� �-÷ň�2k�\Zή��ky�k�B]','',0,'?'),('�h��\'��h��Q�{9`','wp-includes/Requests/src/Exception/Http/Status401.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status401.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��R�uM��6/�R\\�','�9`�s�-K���GH�ے�w3��7�� ��','',0,'?'),('�oƹ��|�����','wp-content/plugins/soil/src/Modules/JsToFooterModule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/src/Modules/JsToFooterModule.php',0,'��;|�Nz��9�ՐC�','��;|�Nz��9�ՐC�','� �����H�p�^�r_U��ٳ��V�','',0,'?'),('�s��5�{�1T�(��','wp-content/plugins/gravityforms/includes/assets/theme-dependencies/class-gf-theme-script-dependencies.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/assets/theme-dependencies/class-gf-theme-script-dependencies.php',0,'�����>��u�U�','�����>��u�U�','��G]\Z%�D̂ꔒ��A�i��cm��','',0,'?'),('�y�#���2D�fKȏ��','wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/polyfills.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/polyfills.js',0,'u���2��c���jH�','u���2��c���jH�','�\rjhBbU=��n��`�X�OYqPL8�U�C�','',0,'?'),('��+� e��-T`�N�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/findLastIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/findLastIndex.js',0,'F�}��0m��� �*�','F�}��0m��� �*�','kBfo\r�aSϼqw�G��\"��Y��&�;��','',0,'?'),('��\'x�ΌT���Q�q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSampleSize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSampleSize.js',0,'�+H1�5��j]ӧ�edz','�+H1�5��j]ӧ�edz','��#�I�*pz(�=l�!Iǵ��gy��ϵrT','',0,'?'),('��oVu�4���;f��','wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/interface-wpseo-wordpress-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d����uI��(��Y��','�\\Ou�ip\'(y]�� ���+�\nZ���<}��','',0,'?'),('��^�y���eH1\0��','wp-content/plugins/gravityforms/images/arrow-right-icon-help-page.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/arrow-right-icon-help-page.svg',0,'���z�����%d�g','���z�����%d�g','S�W����V���/0G���{? �{�j%��','',0,'?'),('����W�kV������','wp-includes/blocks/comments-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@R���xᛱH���','��/e�A[\'�\\�o=o*�d��E@˛�0�','',0,'?'),('�������˰����','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/rfc4253.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/rfc4253.js',0,'�)\"�����\\w��\r�','�)\"�����\\w��\r�','��\0�<�\n.CN�|�����u��O?��Du','',0,'?'),('��?���z6���aDz','wp-content/plugins/wordfence/images/loading.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:�����mP�','j*�e����doX�~�7��&���N�9�|L���','',0,'?'),('��YO�,H�/�L6GB�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/ClosureCompiler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/ClosureCompiler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˽��,��H�J�C','��~�c�%t�*Oھ�+}�;\"��ۗ��f�[','',0,'?'),('�����LKkLA���Y�','wp-content/plugins/wordpress-seo/src/user-meta/application/cleanup-service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/application/cleanup-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�aD��e�2�gϞ~�P','ȱ��ȉ]\Z\ZN�bu\\�\0nD�)R�,˙�}&�','',0,'?'),('��~C]mѹ�}`m����','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/NamespacedItemResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/NamespacedItemResolver.php',0,'arF�����n��w','arF�����n��w','��?����C�/�G�3�q^�\n���� iV:','',0,'?'),('��1[�f\r���[/','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/uri.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/uri.js',0,'�ң�m\"�6��Ũ�/','�ң�m\"�6��Ũ�/','x��ٛ9-_9��,\r�V�9�9���y#�^?','',0,'?'),('�и+:3�XnN�tex�X','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����{W�7h>���','� 2m��w��3�)zWg��v{Af��Hu`Co','',0,'?'),('�ه��F�ѡ�l_�P','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/km.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/km.php',0,'�J�̜�+Y:tJ�|s5','�J�̜�+Y:tJ�|s5','j����BmPw[k��w��&o����\n','',0,'?'),('�����Ș � \0}�P','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�*2�*ZY.�?�8�','LOo�Mٸz�ӫ7!���*����s�-���&','',0,'?'),('���ʆ��n�D㮖�(','wp-admin/css/install.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/install.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��伴(���jO=5n�','p���>�m`\"N���8zV��\\�)E�n�.R��f�','',0,'?'),('��j����5��f�j�','wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B�����؎�S�-','���R�@@�lQ�F܃\'(m��^znwnxq�O�[','',0,'?'),('�� p�}�t!�\r)i�h','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/reduce.js',0,'������be����','������be����','Ve���y��1�H��x���X������%�v�','',0,'?'),('��Sl8F�O�)@�k��U','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/perm.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/perm.js',0,'�N�I{}��d��\0�','�N�I{}��d��\0�','��ݰ�^X_�>֍W�͈�8�d�˥/� ��L','',0,'?'),('���ɛ��\Z \Z�_�\Z�','wp-content/plugins/wp-optimize/images/features/wp-cli.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/wp-cli.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kޞ߭�y�W/�A�`�','q�L��hj��}�\0�x�yF|�>7��@V��','',0,'?'),('��{��+D�냦$','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/round.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/round.js',0,'����IO8��Q�','����IO8��Q�','�a~��,.Ĝ���\\���DFf��\Z|��','',0,'?'),('�/��\'z�Wg�','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js',0,'X�X��\"�<*��ބ�','X�X��\"�<*��ބ�','�0��)��m8)�+�;�P�YK�K$4���*�','',0,'?'),('��*��Hh�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/escapeUnicode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/escapeUnicode.js',0,'��ąI���G','��ąI���G','�P?YF *��`\Z3J��+�k~����!��\ZK','',0,'?'),('��L7N���Bٙ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/constant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/constant.js',0,'�ϳ\Zz��+�zJc','�ϳ\Zz��+�zJc','Lߨ�x8�U\"��;#���s���\'o�q�1ȇ','',0,'?'),('��}�*�I��ҪD+.','wp-content/plugins/wordpress-seo/src/introductions/infrastructure/introductions-seen-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/introductions/infrastructure/introductions-seen-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ʑ���\n�;)�1ԛAw','�/ФvK��T��%��9�q��3��','',0,'?'),('�K��SE�ō�L�3�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V=����r�@ٸ~kt�','|�J\0�R]-�2����3z���T����H?�U��','',0,'?'),('���-�]����\rn�','wp-content/themes/mint/node_modules/yargs/node_modules/camelcase/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/yargs/node_modules/camelcase/index.js',0,'�H��|JTh��-�-','�H��|JTh��-�-','��x������I���e�ƫh����sF�>Fʼ','',0,'?'),('�~[��،M\'��((�','wp-content/themes/mint/node_modules/asn1/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/asn1/lib/index.js',0,'\"*6ҙQ��sV�~>�','\"*6ҙQ��sV�~>�','� �oL�<�Ҭ�Wę�vɡ�;�J�5b=�;','',0,'?'),('�\"BqG9WN�(%��W�','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.5.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.5.js',0,'f�(�v�7ƚ����','f�(�v�7ƚ����','��-A�7�:��D���\'�\\PW\'\\��+��','',0,'?'),('�$���E��\'\n�','wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/Windsong-webfont.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/caniuse_files/Windsong-webfont.svg',0,'���K�[���\rղ<�','���K�[���\rղ<�','����~��ki�hiw�l&OK��Y!v�)��','',0,'?'),('�)ũ��2[� �4�_a','wp-includes/class-walker-category-dropdown.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-walker-category-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ԃ�IV�*��t�','�Iw�^���KHĶ\\�s��~BW��㺾fI','',0,'?'),('�+o�2��8�E�+K%;�','wp-includes/PHPMailer/PHPMailer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/PHPMailer/PHPMailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S�\Zx���h!O(�G�','R*s����X�����yd%Ųa�$�#K','',0,'?'),('�-|��>2���� ��!W','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/createObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/createObject.js',0,'��[D�U������v','��[D�U������v','YpQ��!��p�=\rQ���B�{5M���rIJWu','',0,'?'),('�0���r p;��H���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/matchesProperty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/matchesProperty.js',0,'��S���9S� �V','��S���9S� �V','!�U��N���8�ěՉ��O��+W��D��z','',0,'?'),('�7W�UgE#�����Xb!','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Comparator/NumberComparator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Comparator/NumberComparator.php',0,',��pPw����D��~',',��pPw����D��~','�C;��/e-�UG��W9��P~������&)�','',0,'?'),('�8Y �e$�)I�IyL�','wp-content/themes/mint/node_modules/argparse/lib/namespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/lib/namespace.js',0,'��]���$��~�U9�','��]���$��~�U9�','e�NU�dD:�s����=M��GwN靚�7�','',0,'?'),('�8��bn��#�','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-wrap.js',0,'�b|CE��Afz@�l\Z�','�b|CE��Afz@�l\Z�','����z�2��0����-��a.��eڊLʏ','',0,'?'),('�95[�;Q|1�o3�z','wp-content/plugins/gravityforms/js/forms.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/forms.min.js',0,'����(���Wȱ�1Y�','����(���Wȱ�1Y�','CEӯ��&�e���g�618�_/�˹�<FF�','',0,'?'),('�:+[��g��CZ���','wp-includes/template-loader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z� ҿ��܌~���','��\'4�h �䱺��[����E��%��J�H�','',0,'?'),('�=�Tɒ�ȑ\"��n�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue48.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue48.js',0,'����d��X>P.�','����d��X>P.�','���{��a\Z��_8c�B�(��G��ٰ','',0,'?'),('�C_ƏN��2�%�yu','wp-content/themes/mint/node_modules/tape/test/throw.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/throw.js',0,'i�fA���_��=���','i�fA���_��=���','nk�x>������!l?�x��`��V.H�� �-�N�','',0,'?'),('�C�DM�RK�`����','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ro_RO.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ro_RO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#H�����Í�','y{������j�Zy~�SZG� �3h�','',0,'?'),('�E���D>��\n���','wp-content/themes/mint/node_modules/path-type/node_modules/graceful-fs/polyfills.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/path-type/node_modules/graceful-fs/polyfills.js',0,'�Eɕ~���\"5eZ�h','�Eɕ~���\"5eZ�h','5��]H��~d�Pi�Ŗ�$���[\"|�Mm','',0,'?'),('�G�/��>��r\n�3','wp-content/themes/mint/node_modules/bower/lib/node_modules/update-notifier/check.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/update-notifier/check.js',0,'�m ��=\';L�=����','�m ��=\';L�=����','���H�ѐ�|\\�8� `�������<�','',0,'?'),('�H Ɩ86���In�','wp-content/plugins/wordpress-seo/src/loadable-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/loadable-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\\;��T��U�*��@l;','�c��Ԥ\Zh��EA�2�f�ԾI��Ɲ�x�-','',0,'?'),('�P\\��\Z�Tܶ�;�`','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/client.js',0,'\r��t]�K�?_�Jz','\r��t]�K�?_�Jz','��\0E�O�[Q��Q�y�`�uRf�nA&��tP�v','',0,'?'),('�S;��}�~V���eI','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ar_Shakl.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ar_Shakl.php',0,'�3�*�K��=��<','�3�*�K��=��<','F�\Z�|���\"\'\'�c>.�\Zy���:�M','',0,'?'),('�T�� uC��r��d�','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/dotdot/abc/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/dotdot/abc/index.js',0,'��>�)ID0�&#�~ L}','��>�)ID0�&#�~ L}','��q-96\\9d���i���FU��C 8�tE','',0,'?'),('�Y��r~Ҁ��:��$�!','wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[{7DYhЧ�m�f}�\rf','�\n��?\ra���ؐAL:, ={L�5}��+,��','',0,'?'),('�_��ED17��䆺���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/escapeHtml.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/escapeHtml.js',0,'�9����Ǜ;�Q�7�','�9����Ǜ;�Q�7�','��`Rl�g�8{1q��m�$D�~�vp{�','',0,'?'),('�gNL�9��ȹG8�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ka.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ka.php',0,'hNq��i<��6�&A�t','hNq��i<��6�&A�t','��SO�y����\'n���d���m7(�{0�R','',0,'?'),('�g^.��.���X�R��','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex.js',0,'�!�el��/n����','�!�el��/n����','��.+^�D� ���Q^���,P�\rij�6��I�','',0,'?'),('�i2O���+�s�X.�','wp-includes/js/jquery/ui/core.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/core.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8��2�Yfg��p�','?U�7��Dosz���X-҂�b|�\Z�����','',0,'?'),('�m�o�X��<��.��','wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/expect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/expect.js',0,'$w������T���+','$w������T���+','N�N^���\'�:���w���ρ��}��P�','',0,'?'),('��H@���C.�}�^�','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/FileParser/Ini.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/FileParser/Ini.php',0,'�C$���%Ű��d','�C$���%Ű��d','�6�ΐ��Q-ޏ�(�af�S���o��^�~5','',0,'?'),('���U]<m����','wp-content/plugins/gravityforms/includes/addon/class-gf-feed-addon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/class-gf-feed-addon.php',0,'+���m���}?��','+���m���}?��','n�a����gS��k�\nH��[��i[P�|��','',0,'?'),('��F4GJɕh|O ','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/memoize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/memoize.js',0,'���ST.6-1AT','���ST.6-1AT','�(wGO���,S1�Zy/����3���gA�����','',0,'?'),('�����b]�ٺ=�0_','wp-content/plugins/wordpress-seo/src/conditionals/news-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/news-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��MU�{�)����O�','QVQ�bK_���Ύ�Rƕ�]�-�mlY��<9iqV','',0,'?'),('������5\"%�ց�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/ast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/ast.js',0,'�Q!\'h�nPo�0ކ��','�Q!\'h�nPo�0ކ��','���eHV`_����\n�m�Vi��R@��V�I0�`','',0,'?'),('����b,����L\"�','wp-content/themes/mint/node_modules/spdx-correct/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/spdx-correct/index.js',0,'eZP��k�9�V�~','eZP��k�9�V�~','/��QTr�y4!�:G��&�!���D��5�L','',0,'?'),('��\'.�Y%��1Q�7O','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/652.f4d6d3465dc2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/652.f4d6d3465dc2.js',0,'���%b>#��x��','���%b>#��x��','��A4�#��\"S]gKٷ$kX\Z!���/�M�ЉW','',0,'?'),('��q�tOD1�v��[','wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/_index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/_index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѓ\"��X��R�qO��','�*/�1��r1�G�a�b;�q���v��=�j|t','',0,'?'),('��bp?R)�ʹ����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/currencyFormat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/currencyFormat.js',0,'�~\"�%��;|�.q)�','�~\"�%��;|�.q)�','#\Zf�)9�dv�3ԟ��^�=h�ܐ1\\�M�','',0,'?'),('��@<N�8iy�����','wp-includes/blocks/separator/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��EO�c���m��{��','�/`i-^�3җ;�B��T�;����#\0�r�}:j','',0,'?'),('���P���M�˝�=U','wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʿm�\\m10��f*�)',' m��Y�_����\\\'.��]���WyW0��0','',0,'?'),('���e��-\n�yV','wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���|�Ww�b>E��yJ','�\'�����~�6ȝ\nB���agz���d��Q','',0,'?'),('���ޢz\'��C�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/matches.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/matches.js',0,'q���d�2��m��H�5','q���d�2��m��H�5','��\rU��V�l�]�N�y�m9��i�m��\Z','',0,'?'),('��(���mé����','wp-content/plugins/wp-reviews-plugin-for-google/static/js/admin-editor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/js/admin-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z ��v������ؿ �','˼T{�m�M�xW*;�d�ƃo ���@N���','',0,'?'),('������PU��ac��','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�YA��G=b�u���','z�,ͥ���t <{@Y{�iy��s���c�(S�L','',0,'?'),('��}�װ�8*�/�c~q','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/negate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/negate.js',0,'�;�I�?�{�h_[�O','�;�I�?�{�h_[�O','U?muy�fꇔʈȗ�����a��\"[4<','',0,'?'),('��?����e}&��','wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϬmM������tѼ�J','f��.�%�*ƚWn�C���s�Si�','',0,'?'),('�ɗ�9��j������G','wp-content/plugins/advanced-custom-fields-pro/includes/assets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/assets.php',0,'���wµ��f���U�G','���wµ��f���U�G','�\\�3y�\0�P�.�7J��z��/�\"`���Q','',0,'?'),('���{����e�l{','wp-content/themes/mint/node_modules/form-data/lib/form_data.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/form-data/lib/form_data.js',0,'3�|p�״d=��4*','3�|p�״d=��4*','�����thT0�h�|^���L%}煔%ۧ�{�','',0,'?'),('��&piV�Rm�\"h���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Route.php',0,'���R����\n����','���R����\n����','5)^����L\ZO����/�g\r=mℓ�','',0,'?'),('��nv��Z�YV��','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�6G�6)��(P�','CX��E�a�/fPK{�˾��^j�\"C3Fe�ִS','',0,'?'),('���\'J:�O���','wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php',0,'a�3Ӧ͉��5��0�','a�3Ӧ͉��5��0�','s��o��c���\0PU�G�g�a�A31�','',0,'?'),('���(Ʌ\n��+\r�E/q','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/timezoneOffset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/timezoneOffset.js',0,'�/��-�[�g\Z.n8','�/��-�[�g\Z.n8',']FWV}#:n��6�\r�8�}�#���X��*�=','',0,'?'),('��Nqݡx˳R� j','wp-content/themes/mint/templates/entry-meta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/entry-meta.php',0,'��r�%�h�Ŏ�D�<�','��r�%�h�Ŏ�D�<�','�+ff1_b�G�e\\��}P�Wů�h�','',0,'?'),('�������e��2I�ÿ','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/TableStyle.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/TableStyle.php',0,'J~z���_�y��\r','J~z���_�y��\r','��x�^ ����Y�5`Ŀj�_�.0��٨�','',0,'?'),('�{���CLRF��v','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Pluralizer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Pluralizer.php',0,'���x��,e<|$��|>T','���x��,e<|$��|>T','_���N��:95Wc`�o:^$}���*D�^o[','',0,'?'),('��m����c�瘕�','wp-content/cache/wpo-minify/tmp/js-d09c2197.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-d09c2197.js.transient',0,'��f���Q�g��zF��','��f���Q�g��zF��','2@X��!\\ז3�7c�bn+AYr�k����[T��','',0,'?'),('�Z��D��l�=�컫','wp-content/plugins/wordfence/views/waf/waf-install.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/waf-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UTFE`q���!ȑG','�s ��9���7ܿ.�ԜWN�����(}�@�\Z7','',0,'?'),('� Vt�ݩ<�{\r�[','wp-content/themes/mint/node_modules/tape/test/exit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/exit.js',0,'P�L������7��','P�L������7��','�Ψ�LB���XbU�D̚~�>51ݜ=��','',0,'?'),('��S��eo��<�<�Z#','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/led-lighting-for-workplaces/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/led-lighting-for-workplaces/index.html',0,'ÃnНg�4�:,�hF�F','ÃnНg�4�:,�hF�F','lG������t\r]�F�@̪�yqC\r��:�','',0,'?'),('����{�/趒�Z�','wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȝ&�bьdujʄ�*','�d3����g\\��-\n�s�g��JQ�L_Z��5Y','',0,'?'),('�.��#z6ka�U�o','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Synchronized.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Synchronized.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{���u�� Dq��','�wEߣ��7�u�v����k��� ć���','',0,'?'),('�\Z�������B~W�b�','wp-content/plugins/wordpress-seo/src/values/open-graph/images.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/values/open-graph/images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���z!�m�:P����','��ฮ�iBX c�M�м1�E���`���\n�','',0,'?'),('�!�d�{�:ɬ�P ](M','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�U�V�Y%�M�.s','>����f�Gm�]��?r�UEE3Y\Z9��\\�4�','',0,'?'),('�&�����\'�{��S','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O��p��)Ű�-�L','x�j7o=\'�)I�4K�<l�{��<NV��,��\r','',0,'?'),('�9���-!1�։2ӝ?�','wp-content/themes/mint/node_modules/rimraf/rimraf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/rimraf/rimraf.js',0,'\0�/�<�_�6��tP��','\0�/�<�_�6��tP��','�W^��xD+��&1��ƶ�!ԣh?O��~�)V{g','',0,'?'),('�?F7�1���g5A�','wp-content/themes/mint/node_modules/bower/lib/node_modules/slide/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/slide/index.js',0,'\\��M¡�fK��a�1A','\\��M¡�fK��a�1A','�.z�=�9��KD� Qh�b����MS�]�p�.','',0,'?'),('�A�^7!]1����/<','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',0,'���(J��_?+4h���','���(J��_?+4h���','��� ��<?~�C�2B��� ����?','',0,'?'),('�B%v6�I\"Jb��4ӡT','wp-admin/link-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/link-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��UE�~�_�a���','T��:�LL��h���Ҭ~�PW��\n','',0,'?'),('�Q�z��9��S�\Z�*','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/NamedColoursSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/NamedColoursSniff.php',0,'GI�<�� �g��A','GI�<�� �g��A','2b��f|�l�M�9�L��T�\">-�=��Ъ��','',0,'?'),('�VWy�� F{?#�V��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string.js',0,'�o=D���gTX#�`E','�o=D���gTX#�`E','�\"��i����VN\0zݑ��\"I���4�,�,','',0,'?'),('�b ʥ�8�۠O���','wp-content/plugins/envira-gallery/assets/js/gallery-themes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/gallery-themes.js',0,'�y�Ѹ%-��(v�Y�','�y�Ѹ%-��(v�Y�','��pH�3U䍄����\"���YE�:Ï�','',0,'?'),('�fR4)[�6��9� u�','wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/conditional_flyout.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/conditional_flyout.js',0,'\'���%�+_�,��','\'���%�+_�,��','���yy�8��8�1c9���\\}�řU�T��','',0,'?'),('�h��E��q���E��*','wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-excerpt.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-post-excerpt.php',0,'��\0!�+ݦs�\'d��x�','��\0!�+ݦs�\'d��x�','���y�l�4� �u�&t�+9�S��Ռ��t','',0,'?'),('�j�!�g�Z�#\'�P��','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-source-map-consumer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-source-map-consumer.js',0,'Y�s>��t�_�84�?��','Y�s>��t�_�84�?��','iP�[��y˿tj�}���R�Ya\'����ٜ[�~�','',0,'?'),('�uפ[wx�XӲ�a','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/get.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/get.js',0,'�k:��)m�f�N\rpd','�k:��)m�f�N\rpd','���eI����QNQ���r�9�>3�U�u?\0','',0,'?'),('�{���%�nm#�Dԇ^�','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-sliders.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-sliders.svg',0,'#o�}�6-��V�?','#o�}�6-��V�?','f=�\n��Bn�)h���I.C�\'\n����dά$�','',0,'?'),('�~O^A�����\0n','wp-content/plugins/wordpress-seo/packages/js/images/connection-assistant.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/connection-assistant.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#@\n��9[�\0E2','\"J�4�+T�^��\n�`��KB@����8�N','',0,'?'),('���9�}#���Ɓ�','wp-includes/blocks/query/view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4��\n5�~K��\'|�','\r���C��줢(�lܶm݈<텽����Z���','',0,'?'),('����c��&�_','wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Flush.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Migration/Flush.php',0,':v�L������L�d',':v�L������L�d','s`c���սݞ�)�/��f�A�zd�7�ů®�','',0,'?'),('���\n�%SJP�;4l�K','wp-content/plugins/wordpress-seo/src/editors/framework/seo/social-data-provider-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/seo/social-data-provider-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������A��M�u',' �h[Y���N�uL�n\0�cF@-P�H�`�p.��','',0,'?'),('��.q����p�(�1','wp-content/themes/pinnclonesmalltest/resources/views/partials/pagination.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/pagination.blade.php',0,'������=�\0!G','������=�\0!G','h�:�#��f�8������b�הHƺZ�7HK\'��','',0,'?'),('����w.( �=���','wp-includes/blocks/navigation-link/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation-link/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�g�xߛ�+��Ύ�1','�{��P8c�SQ��>̳���<8jUj��','',0,'?'),('����Z�U�4 R��:�','wp-content/plugins/gravityforms/includes/fields/class-gf-field.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field.php',0,'�R�9ߜ1�Z��','�R�9ߜ1�Z��','���f^\"&���C�\"�|��\'�Z�Z\"���','',0,'?'),('����I6���F�','wp-includes/blocks/rss/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/rss/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�C?�~���-x�','0K:�FS�2\\dD�Ψ���)\\xd�����','',0,'?'),('��5l^+s\nR���p�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/lists-reversed.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/lists-reversed.js',0,'jѪߜ�p�k&j�_dd','jѪߜ�p�k&j�_dd','l���NB��ܪG��.���s )S��ɴ���','',0,'?'),('��<�!����!�(B&9`','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-azb.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-azb.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r��UZ�K�Kϴ�uV','��A��+�Bx^����a^�\ZՔ�]��Pl�','',0,'?'),('��>�A�B�7�Sz!�e','wp-admin/includes/export.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w+o��Zo>oM��t�','�ӻVC�H@�b[o#jرBm��D�]%','',0,'?'),('��\r��\"�v��_:L�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/range.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/range.js',0,'Z\'��Fࡁ1��<f�','Z\'��Fࡁ1��<f�','{م�~����7?�[^��a?١�6�2�','',0,'?'),('��Ӂ�g\"�t���`C','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parent.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parent.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��6����xL;�Y�AL','Ď��\r\r�T��^U���hP��db�hg/�VU','',0,'?'),('�γ�6Չ<�Q���t�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/conformsTo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/conformsTo.js',0,'&�#;/qIn]��c��b','&�#;/qIn]��c��b','��m�)��?$Mr��\Z��cY���/>��/5O�E','',0,'?'),('��2P&��zZ��.��ۍ','wp-includes/blocks/term-description.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/term-description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7u5�� π;\"','�]�6U��9�`����SqK��КӅnq','',0,'?'),('��qX���S�F��Bhi','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_real.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��q�L���*T�x�5','�ߠ{}�L���WPt|�1���u%�&����h/','',0,'?'),('���Q�?늷�G��q�','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/AbstractVault.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/AbstractVault.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�^R>��H;7?','��e�-3��K^2�!}ӧ8���B�.DZP\r�','',0,'?'),('��/��\rǥ;�´','wp-content/themes/mint/node_modules/bower/lib/util/isPathAbsolute.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/isPathAbsolute.js',0,'D�]S75��bN��b','D�]S75��bN��b','��a\rX���=��� A��g�ǡY�aۭ�P','',0,'?'),('������tr�H!�-�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/unset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/unset.js',0,'#��I�\"�7vKo�Φ�\"','#��I�\"�7vKo�Φ�\"','�SvC$�?��0.��e�R�冘�','',0,'?'),('��|0���O�+�]lU�','wp-includes/js/dist/a11y.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/a11y.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r����\0���GPZ�','��<�ދ��3�s�]�~�G~�(fZ��C��7�','',0,'?'),('��\n�8�^XQ��-�l','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�P�H�S�E\\-��R','k�ٽ�+��/���2�\n� Kl�k�\Zv ���','',0,'?'),('��.;�x��%��:�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�Y�,���}���','J�z%vz:O2�YF��c�A>2�~����5uˉ','',0,'?'),('��\0K1�/�y��g#J�','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/ComposerScript.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/ComposerScript.php',0,'��3�J��@�װ�7p�','��3�J��@�װ�7p�','�|[%�|�\n/�0�}xޭ��(����]�c��','',0,'?'),('��K�]1\Zv�?#~X','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/pluck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/pluck.js',0,'f�Y�`\"8����2�','f�Y�`\"8����2�',' O�@`OWe ��Z~��W�i�q��0��9}�','',0,'?'),('��*�_:}�`�a�lX','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createPartialWrapper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createPartialWrapper.js',0,'�y�1��X2N3�^���=','�y�1��X2N3�^���=','�!�.>�\'����� �\rF���Z$B\\trz��','',0,'?'),('��;^˦]�EM\"�0V��','wp-content/themes/mint/node_modules/cliui/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cliui/index.js',0,'1,��8�K\'��j','1,��8�K\'��j','`PeFo���g��V���\r������4��','',0,'?'),('�B%�y�`LDKpXJ�','wp-content/plugins/envira-gallery/src/Frontend/Background.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Background.php',0,'����̤L��W�2�\'1','����̤L��W�2�\'1','+��P�D�cO��b/Ks�l(��[\\=�3�F�','',0,'?'),('�/s�/W�q�����','wp-content/cache/wpo-cache/juiceelectrical.co.nz/industrial/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/industrial/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('���s?��P�h#�%�','wp-content/plugins/wordpress-seo/src/integrations/blocks/structured-data-blocks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/blocks/structured-data-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�ڗ�aa\\�d��ۀ�','O� �\"BT\'�6��|�S�:o-����7��3S','',0,'?'),('�y�sD�n��֊�@�','wp-content/themes/twentytwentyfive/patterns/template-single-vertical-header-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-single-vertical-header-blog.php',0,'��ι�3(��+T�?��','��ι�3(��+T�?��','�犧;�R�]����a�õI��\r�T�','',0,'?'),('� ~����\Z@���]','wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/introductions/domain/introduction-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�^������p�S','�z�;�D�q����n#+N\"��l,(�Dp�Gʎ','',0,'?'),('�-����֢]Mh��','wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-general-settings-importing-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo/aioseo-general-settings-importing-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]�_�;��p�(��^','U���og�a�6�����(@�^\"h]+h�4','',0,'?'),('�1�eU��MV��^��','wp-admin/includes/misc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`?�WGO�(\n���n��8','u$�\nfᶞ��8��s���EY��_�s�w��QJ','',0,'?'),('�3���H��B�e��l','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/bool.js',0,']�������}^��\"�,',']�������}^��\"�,','���C��ݮ�+�Ĩ��dJ��a�yf','',0,'?'),('�>X;���i��Q\r{n','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.compat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/lodash/dist/lodash.compat.js',0,'O�����\r�Y�\0��c�;','O�����\r�Y�\0��c�;','�CZ#�D��c�����A��\r��3���L�s','',0,'?'),('�F_q���C�F!o4p��','wp-content/plugins/wordfence/views/scanner/scan-starter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/scan-starter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1��x����h3\\','��U�~��A�Vkr�%R�x$p��Z1�\"�U�','',0,'?'),('�L�R^�����s�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/SelfMemberReferenceSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/SelfMemberReferenceSniff.php',0,'i{\\Շ)m����\"�','i{\\Շ)m����\"�','�՚a�(�{\r�q��`�Y�\Z���Y�','',0,'?'),('�N�9p\n�=���e��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/objects/choice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/objects/choice.js',0,'0��g<�\"�:r�Y','0��g<�\"�:r�Y','�w��3�����NB��ţ�\'��.Z:��1�%��','',0,'?'),('�P?�]P�n�*�t�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/flattenDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/flattenDeep.js',0,'\r*�웜~w�*$���','\r*�웜~w�*$���','�Yw���2�H�0壹�f���[���-h�','',0,'?'),('�XeW�U�s�xaRhQ�','wp-content/themes/mint/assets/vendor/bootstrap/js/alert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/js/alert.js',0,'`�\\.�&Ӎ+�`�P ','`�\\.�&Ӎ+�`�P ',' �s}��MS�f��$�O���;���¯�i�8�','',0,'?'),('�]-�¼�[Snp�{I,','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js',0,'��^����������','��^����������','�0��y���V�ݣ)�֮�N�I� �%��','',0,'?'),('�^zaw��-�YV?]w4�','wp-includes/js/dist/script-modules/block-library/search/view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/block-library/search/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�aҺ��f�DŽ�v����','Z�Jϵ�-\\�;{��ó�}?��H���','',0,'?'),('�bI`E��eЕ�Š�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/639.7acf224415c9.chunk.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/639.7acf224415c9.chunk.js',0,'$�>D1 \Z�*�\0�K�K','$�>D1 \Z�*�\0�K�K','#�}��5ղ\0�}d���Q�vʸ]T\"�G�(','',0,'?'),('�k�ИI.R���4f�i','wp-content/cache/wpo-minify/tmp/js-6c8b1d41.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-6c8b1d41.js.transient',0,'>Ǵ�Le�{�XF�ҵ','>Ǵ�Le�{�XF�ҵ','h��t?yl�틛����<�/�0#83�$�=>gG�','',0,'?'),('�q�ܞ�8�7xR��O','wp-content/themes/mint/node_modules/less/lib/less/tree/rule.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/rule.js',0,'���A�$������8��','���A�$������8��','�6�F��M0l��Qy�U\n5N�\r�Náʬ|','',0,'?'),('�q7>��6X3��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue28.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue28.js',0,'���:]^�4Ղ����','���:]^�4Ղ����','Ňe1�3ڜ]�n� Up���+���w�26�{','',0,'?'),('�qᧁ\\Q?-v��r4��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php',0,'��8����9�\0�x��','��8����9�\0�x��','����A#/�Gb3����(<-UH��)���','',0,'?'),('�q�Y�M�z�\0�,�9','wp-content/themes/mint/node_modules/bower/lib/node_modules/currently-unhandled/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/currently-unhandled/index.js',0,'/��2ڨ_N�o�,���','/��2ڨ_N�o�,���','��/�`����~8�.~\'=R�J^|�t�B�','',0,'?'),('�{b1��v��^��l�ɩ','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js',0,'��=��$�T?<�z\0��','��=��$�T?<�z\0��','���uNɾ �x�d�`QLW��w�ݏg��','',0,'?'),('�|/���b��;fF*�Y','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isStrictComparable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isStrictComparable.js',0,'/!�OBg_�f̖�','/!�OBg_�f̖�','��u�S�ԩ6����#�FBa��C�D�5��','',0,'?'),('��B�aE��<�A.\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/deepMixIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/deepMixIn.js',0,'T2k�u��g:�0�[�|','T2k�u��g:�0�[�|','{��߶!eV:vT�!�{�G+k\\3rvOf�T','',0,'?'),('������?n�eT�P�','wp-content/plugins/wordpress-seo/src/introductions/domain/invalid-user-id-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/introductions/domain/invalid-user-id-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_�=�\\`����[','��0cYp)�9|&�^���R\r +-��+�H��','',0,'?'),('���y�0s���?','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-category-permalink-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-category-permalink-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˡ�[�����8�','m�o��n&z����!��C`B���e8RA`���','',0,'?'),('���Fճ�D~֫�Cʽ�','wp-includes/css/dist/edit-post/classic.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-post/classic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' N5$�R�,P���b','�LD�u�Mڤ�M�p���䉼ɢ��zЀ�NB','',0,'?'),('��.�&��Wd�m�Qe','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/union.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/union.js',0,'61�!ahъ�I���cU,','61�!ahъ�I���cU,','\0��Yo2L�74��<�cl��(��AT���p��','',0,'?'),('��Z}�D8T�\r=j���','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/lib/safe_format.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/lib/safe_format.js',0,'�!�b����JS5[�\Z','�!�b����JS5[�\Z',';��ȓ������Ͼ��&)i揥�_���','',0,'?'),('��\0�>#����z(','wp-includes/bookmark.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]2s�!f���v��','!���ˈ�/>��<t��P@�m�l���q��h','',0,'?'),('��g�xb��qO�v��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/FileViewFinder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/FileViewFinder.php',0,'b�Y��G��>��]zw','b�Y��G��>��]zw','w���:��Hxd���@���^D.-,2~tl�','',0,'?'),('���\nc4E�U�\"��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/LowercaseDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/LowercaseDeclarationSniff.php',0,'d����E};��+m','d����E};��+m','��pp�/�OZ:��\0f�e�&]��{B\rl���','',0,'?'),('���������}��','wp-admin/media-upload.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/media-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0�\nx�\rO2�P�� ','���j�+��]-�HO����gĩ>\"��O�,','',0,'?'),('���+;�\'@�G�D�z','wp-content/plugins/wordpress-seo/src/helpers/curl-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/curl-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8ᇚcP��O��E\'�','��R�ZS#��\n���2)AT��\'�p���;','',0,'?'),('��y������a\\','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/deepEquals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/deepEquals.js',0,'���A�l ���,','���A�l ���,','��\0�\n��,�~��jZ{©d\n�[�Tv~?]SoB','',0,'?'),('�����u�I�2�!$�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Encryption/EncryptException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Encryption/EncryptException.php',0,'\\��u�?�u9P5l�','\\��u�?�u9P5l�','=�N�QU�W��L0|�a���w�[؉���Jj2m','',0,'?'),('��c�\\a��+�&G�','wp-includes/SimplePie/library/SimplePie/Category.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}pgn��L���~t','\"�d�ʙSLy���?��4(l�lق��G�r״','',0,'?'),('��<��1�Z�\\s�b','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/instagram.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/instagram.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ˈ��G��S�lk�`�','�DZ�٘~�-L��N��\rc5Xm\0�G3��,','',0,'?'),('���z��%���\\=;�','wp-content/plugins/envira-gallery/assets/js/min/addons-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/addons-min.js',0,'��\Z���{C��M�O��','��\Z���{C��M�O��','k]�\Z�m\Z/5v���\'�$\r�^��4>B�4�1�','',0,'?'),('��}��q0\'��K6�3V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_toKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_toKey.js',0,'�\\�ye�kVԆ� `��','�\\�ye�kVԆ� `��','��-�i���u�}�[�*C}\n&d�S\0TI k�8u','',0,'?'),('��4~ӹ���}:','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isArguments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isArguments.js',0,'H��ԌΙ�ސm�rkv','H��ԌΙ�ސm�rkv','Na~a�!�bC\\!|��ߠ�bO$ҵteﺸ\n','',0,'?'),('��ɶmcr0V�Eg�','wp-content/themes/mint/node_modules/semver/semver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/semver/semver.js',0,'��V��9Z\\�eO��','��V��9Z\\�eO��','-���ֱ��b�R�g�S��`�%f������','',0,'?'),('���@��\'�y����q�','wp-includes/blocks/query-pagination/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','呔���`J[��,','7�5��o�j@q�Եucd7��ie�Å�P�\r)','',0,'?'),('��kV��7���2�+','wp-includes/blocks/heading/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/heading/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�<fK/��l�7','H��3Y����F@��&\'s���+��k�}/��','',0,'?'),('����q�}�v.��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/AglInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',0,'��Cc�=W*��Dg','��Cc�=W*��Dg','3�(�W���~;M�<�d���z4��������','',0,'?'),('��䨣�F�w�X','wp-includes/Requests/src/Exception/Http/Status431.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status431.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?M�-�-�k\\�Ѥ�','J]��e&�Ɇ%�49�� �S�3JCػ\04쳫 ','',0,'?'),('��W+N��#u�]\0�!�','wp-content/plugins/wp-optimize/templates/settings/system-status.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/settings/system-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!��h3�^ك*^i����','V���oi<��u�&�PįX.��N��Z:�g','',0,'?'),('��$�E�ۦMdb���}�','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-range.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-range.php',0,'e�����a��V�ȕ','e�����a��V�ȕ','9^d��e��������;4�������ry','',0,'?'),('���ْ&�M�KX���{?','wp-content/plugins/wp-optimize/images/notices/summer.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/summer.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�B��E��\r�','d�,�=>��a�l���x�Ʃ��U6���y�','',0,'?'),('��u�6g��*��$!68','wp-content/plugins/wordpress-seo/src/actions/alert-dismissal-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/alert-dismissal-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��7��j���9�','�l�����vst�����x�nD�\\M�[�9�b�','',0,'?'),('��3��pΜp��=�','wp-content/plugins/wp-migrate-db-pro/class/Common/Replace/CaseSensitivePair.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Replace/CaseSensitivePair.php',0,'�ć�[X��bz����_','�ć�[X��bz����_','!�� X&����NlX:�g#�k�`','',0,'?'),('�s�F���ZR�SJ','wp-content/plugins/gravityforms/includes/save-form/config/class-gf-admin-form-save-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/save-form/config/class-gf-admin-form-save-config.php',0,'/�\n��ùhug~eV','/�\n��ùhug~eV','�j�h�9�J��]���$\Zm�tDU�V�m�7','',0,'?'),('� cF�S�&���[','wp-content/themes/mint/lib/utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/lib/utils.php',0,'x B:�M�;��\0�K','x B:�M�;��\0�K','U�7E��@�г�µ�䑞^���.��h>O�','',0,'?'),('�J�##��!L��\Z','wp-content/plugins/wordpress-seo/src/presenters/admin/notice-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/notice-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h*�o��@�T?$�\"','F��~�nͨO>A�\0\0���T\r\Z3u~����H]�','',0,'?'),('�ק\Z��S�ܹ�c.-','wp-includes/Text/Exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Text/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�ɭ���Q�>\Zw��=�',']n_�ԓ�J�]R��㻁\nk0���+u�s�G�M','',0,'?'),('��J�H6�KF��p~�','wp-includes/blocks/social-link/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-link/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��P�y��x槬KVm@�','���A�𧨤���N�\0�+�4�P��]elR�p','',0,'?'),('���P�w���0�h�9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�����2İ\rm}%��','3��].�BCBe��ʢ�S�( ?�Z{����','',0,'?'),('��`��`W��\Z�^k^','wp-content/plugins/wordpress-seo/images/xml_sitemaps.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/xml_sitemaps.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','* f�E \Z���`','ī�\Z&�\'ѧ�y�Z����!g���u�X�\0\0�','',0,'?'),('�!E��)��~H���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/map.js',0,'y��Sn�jʋ��7��J�','y��Sn�jʋ��7��J�','���N�ɿ����93�@��F!����D�2��td','',0,'?'),('�#�-<��=V�\"�&','wp-content/plugins/soil/tests/__fixtures__/modules/CustomHookModule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/__fixtures__/modules/CustomHookModule.php',0,'��\Z�B����Y�Њ','��\Z�B����Y�Њ','��Xz�K��ez�rw�p�.�pR�pٵ��','',0,'?'),('�\'��5��nGCk�T4`','wp-content/plugins/wp-optimize/templates/minify/advanced-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/minify/advanced-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�^˽������','24@�ٔ�xM�R���_�����\"<�B�r�','',0,'?'),('�.��_ ^4�U���','wp-content/plugins/wp-optimize/images/features/number_of_weeks.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/number_of_weeks.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T-����(����_�','��#h�oi���C&�9�\\��ͤ���\Z���','',0,'?'),('�.ہ��Y)�e�Fn��','wp-content/plugins/wp-optimize/images/features/remove-unwanted-img.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/remove-unwanted-img.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!<^��\Z��*�J{�','�ij��?��ݮ��G���YM�� s��K��=y','',0,'?'),('�68��)�C��JH��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/includes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/includes.js',0,'q��[�Z�_-\Z�X','q��[�Z�_-\Z�X','T:� ���4X�$���\r ��d���E]�S�','',0,'?'),('�;j��|�:1/��','wp-admin/site-health-info.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/site-health-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M��C��ǩ�\"G�','��3z�P�d�H$y2����Π*�@�@�','',0,'?'),('�>��4;�����˺r','wp-content/plugins/wp-optimize/vendor/bin/cssmin','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/bin/cssmin',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�P�t��[W�>��','�Zlt�0���V-)N� �)7W�]�V\"�ա�','',0,'?'),('�A�Nd\'����1�0��3','wp-content/plugins/envira-gallery/assets/css/images/icons/schedule.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/schedule.svg',0,'[�h<��$�G8�[��v','[�h<��$�G8�[��v','SX��L��G��C��}y=o9�sh�!\\�_?C','',0,'?'),('�B y�w�+���|t��','wp-includes/class-wp-http-requests-response.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-http-requests-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f���;�h���%+','߈ÏS#��4{�2_�ʰ��b�H��Tl��','',0,'?'),('�C��\"��?v��','wp-content/plugins/wordpress-seo/packages/js/images/elementor-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/elementor-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r��c)�e������','��2�,�㹂�G��t���8x���qi%��F','',0,'?'),('�J�&_#��3S�q���','wp-admin/images/spinner-2x.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1����2��^#�8��','��#�˒�=$c��6����� B��4�6','',0,'?'),('�V+@�0���p�ɏhi','wp-includes/rest-api/class-wp-rest-response.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/class-wp-rest-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{3i3X%���X>vx','�b\'��(��u�n�\'��� ���\0��+�ۿr�','',0,'?'),('�X�:\"���0k�G�=C','wp-content/plugins/wordpress-seo/src/conditionals/traits/admin-conditional-trait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/traits/admin-conditional-trait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a���c����P9�','?�� 0���?F��}CBh�^p�]��Hyru��','',0,'?'),('�Z���)_��w�\'$�X�','wp-includes/class-wp-block-parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block-parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����UPze;�ӈ3','��sw]���ˢz�}��W*E��<�5��ZC ','',0,'?'),('�^Sx_?u�G�D���','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��H�d9<C�ˤ���bl','K�.Bo����ࣸ�v��b�%����S~1�K��','',0,'?'),('�bN*����l�F�k2�','wp-content/plugins/gravityforms/includes/locking/class-gf-locking.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/locking/class-gf-locking.php',0,'�,xÑK�Q_���','�,xÑK�Q_���','Q��;x:%#��>de�d���kz��K�����ں�','',0,'?'),('�b~5�a���I@)*�','wp-includes/class-wp-site.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�N~M��(ߡ�=��','�+ğ)��Adjrl�C(I�h뾩^\n~�� ��^�','',0,'?'),('�fG<�@៝N���-','wp-admin/includes/class-wp-privacy-requests-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-privacy-requests-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wV�X<�N:��ڼ�@','��tZ�9�J��x�`�>B����)�','',0,'?'),('�f]\Zu2�\rE�m���','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/json.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/json.js',0,'dǫ\'���0?\n7�x','dǫ\'���0?\n7�x','���yi����J��(M��v�L4`��L�!�I�','',0,'?'),('�io���a��J��b','wp-content/plugins/advanced-custom-fields-pro/assets/images/wp-engine-horizontal-white.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/wp-engine-horizontal-white.svg',0,'j%NZ��q+]�7�}-�','j%NZ��q+]�7�}-�',':4�j>�� ײP5��s)�O��A!�ME^�','',0,'?'),('�j��7�n��Q�}ܱ','wp-content/themes/mint/node_modules/bower/lib/node_modules/node-uuid/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/node-uuid/test/test.js',0,'R�=XfJ�.��;Ch^�','R�=XfJ�.��;Ch^�','L��O�\n�e������7���ބ2��i��\Z','',0,'?'),('�s�Q�����Zl�','wp-content/plugins/wordfence/css/jquery-ui.theme.min.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/jquery-ui.theme.min.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�K�0�b��xљ]','4����\n�c�E2=V�{�+�\\goЅ�O��','',0,'?'),('�x9p�2���w���B','wp-includes/ms-network.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ms-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�~��,�|:�䑺`]�','��(�V����β�ؿ�=��ղ\Z_���y','',0,'?'),('�y��/9/�tM��$�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseGetAllKeys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseGetAllKeys.js',0,'�r��x��� n`�a6','�r��x��� n`�a6','��L���$8�כ���� ћ�\Zl�v�`��','',0,'?'),('�z�1� 8�*/�0��','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-tab.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-tab.svg',0,'FăM@���dN{�j�','FăM@���dN{�j�','�N���\r���QG�Z!�M�<�\\�A��\\xY','',0,'?'),('���Mh����%�D','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/FinalClass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/FinalClass.php',0,'�C��$�\Z��zT��7','�C��$�\Z��zT��7','�s���\0�@r�H�g����ڲ�1����7�','',0,'?'),('����콴��)�IS�','wp-includes/Requests/src/Exception/Http/Status418.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status418.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���P���w���u5�`4','�2�en2Τ�}a&\0&�Ҡ������#[�%','',0,'?'),('����ֺ?9̓�?� ','wp-content/plugins/wp-optimize/optimizations/commentmeta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/commentmeta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B��.��!!�3u�','��\'c�CP�M =b�~E{u�S�C�\r��ۿ�','',0,'?'),('��?��>\'P�\\\n��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-errors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-errors.js',0,'��B2���Q�%��\\\Z','��B2���Q�%��\\\Z','�G&�]�[��=�(�I3IpBk��\Z+\0tx�a�6','',0,'?'),('��\\:��ڈ��)g,\\','wp-includes/images/smilies/icon_twisted.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_twisted.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L��v[?��+*8��;�','V�H�hK�����\n���p�����;.�&/E�','',0,'?'),('�����0��놈�\"','wp-content/themes/mint/node_modules/less/lib/less/tree/javascript.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/javascript.js',0,'uʟ�n䘒8Q\'o0��','uʟ�n䘒8Q\'o0��','4|�i8�R��hyk~���B{�ff�ׅ�t\0�','',0,'?'),('���Z�8��äx*|4X','wp-content/themes/mint/node_modules/asn1/lib/ber/errors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/asn1/lib/ber/errors.js',0,'��/k�w�ŵ�?�','��/k�w�ŵ�?�','�����\'�����d�,�^�B;�m/�`�co','',0,'?'),('��6Sk<4�jyW��h�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��$�v��x.���6I�z','�g��A�h��<o��sv�����T5;F��1G','',0,'?'),('��!��E��S7�x����','wp-content/wflogs/rules.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/wflogs/rules.php',0,'�G�)�����pf�','�G�)�����pf�','\Z��V3t�j�Rql\0��%S�Q�7}re5*���','',0,'?'),('�������`�`\'','wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/stringify.js',0,'{mȔ��j:���Y�','{mȔ��j:���Y�','T��Kx�J�!=��Ų#V�l���1K����]','',0,'?'),('���>IlG�xw���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/methodOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/methodOf.js',0,'q��l����g *','q��l����g *','`l]�Ӽ�Vn���δ&Ώ\Zo�ܴ*}��W�Ŋ','',0,'?'),('�����t^czbK4��','wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-basic.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/front-end/crawl-cleanup-basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-I8�\']�\0�R�f�','k҉�r���;L�� i�u�9%�rU��c�v��','',0,'?'),('���3v�U�\Z3�P�^O ','wp-admin/css/widgets-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`_E-c\"^J@I�\\�I[','[鲂>a8�ca�/Չ�Sl^f���;$�h�','',0,'?'),('����K�kȤS�z��F,','wp-content/plugins/advanced-custom-fields-pro/includes/walkers/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/walkers/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('���6I߯Z�x�&\rX','wp-content/plugins/wordpress-seo/packages/js/images/star-rating-half.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/star-rating-half.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����f�l�!��a��]','(��,�*��,13��>�Ԣ�*��?3=�h4S8','',0,'?'),('���&ͱA��QՒ7��','wp-content/themes/mint/node_modules/grunt-contrib-concat/tasks/lib/comment.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/tasks/lib/comment.js',0,'�Ce�\r4�dA▗�<','�Ce�\r4�dA▗�<','�Ӊ�+\'>�����\\8�\Z����?mƭ','',0,'?'),('��L �U���f��u�<','wp-admin/images/icons32-vs.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/icons32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�P*���{>v��Uf','����?U��z��P\\��@�`�8g;\r����E','',0,'?'),('���Y����x���Q','wp-content/plugins/wordpress-seo/src/integrations/front-end/wp-robots-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/front-end/wp-robots-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/f�Hy�ns��J3\'','��xz�/E�4��\ZP�sI��k:�3���]/�','',0,'?'),('��\0�,=Ǽj��\Z��Ԃ','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/af.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/af.php',0,'��i�����}�','��i�����}�',' ��a���#��J��c��-�6���X9^S���','',0,'?'),('���~7���|M�aT','wp-content/themes/mint/node_modules/readable-stream/readable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/readable-stream/readable.js',0,'�|E\'z�\0��D_�u��','�|E\'z�\0��D_�u��','���:\">w��S��rnY<�V����6�\nu��S','',0,'?'),('��G!^+�Dx�J���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Pagination/Paginator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Pagination/Paginator.php',0,'Y�\r�҄���? ','Y�\r�҄���? ','�?�o��B�Чi�{O�.��S/p$��v�Ӡ�','',0,'?'),('��v�d�EI����|�I�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i3�s&���a�\Zw','��M�8Jg��A�\r��`cY5�~>,Ea%��og','',0,'?'),('��[�iロ�x���','wp-content/uploads/cache/7345297182f7c4abd90afa84c2ca92998de9ae18.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/7345297182f7c4abd90afa84c2ca92998de9ae18.php',0,'���Oh��R�G��\0K','���Oh��R�G��\0K','��\Zy�Q����!�d$�@�\"���K��L��','',0,'?'),('�톬[QR1w��F�@','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/time/convert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/time/convert.js',0,'j-�wn���%Df�3Co','j-�wn���%Df�3Co','�Ò3j�1�+A?�u�+*u�����⽂_�','',0,'?'),('����[�������!','wp-content/themes/twentytwentyfive/patterns/template-archive-news-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-archive-news-blog.php',0,'$,��X��xJ�s�7','$,��X��xJ�s�7',' �3_��C0���Pډ\0*�JSFo��,�&��','',0,'?'),('��wn����2)� ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isString.js',0,'��üb%���_�I���9','��üb%���_�I���9','����F��x[�t��a�XYml���<����','',0,'?'),('�����1� ��8�b�','wp-content/themes/mint/node_modules/bower/lib/node_modules/ext-name/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ext-name/cli.js',0,'&Zq.���aC���w���','&Zq.���aC���w���','�H���(���\\(#�]����m��','',0,'?'),('��#�;N�Em�+vyJU','wp-includes/SimplePie/library/SimplePie/Content/Type/Sniffer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Content/Type/Sniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\H��0����:X�]���','.\r���\"[>�7$����O����/\'�','',0,'?'),('��@�x\'��Ү~M���','wp-content/themes/mint/node_modules/bower/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/index.js',0,'�)�%p\"4�o\r%)�3@','�)�%p\"4�o\r%)�3@','�.Z����V���T����g1N2\\ӱ�|�','',0,'?'),('��\ZneQi��ȱ\Z�80','wp-content/plugins/wp-optimize/vendor/composer/autoload_real.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q�)�1\Z�/c��','��v݄\"�^v?y��I� �zj����C�R�1','',0,'?'),('�Z��Q+x�r��0��','wp-includes/blocks/media-text/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/media-text/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ���x&\"��sG��]�','�����7��n�,i��ظ�B���/GJO��߿(','',0,'?'),('� ��B�쉈�\n�O�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/IcuResFileDumperTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/IcuResFileDumperTest.php',0,'�u00�e�B���n�','�u00�e�B���n�','[\Z[����eWn�ߑ۟�0��Z&]�/�t�aܲ','',0,'?'),('�$��I�I��\"�Α','wp-content/themes/pinnclonesmalltest/resources/views/partials/entry-meta.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/entry-meta.blade.php',0,'�\'��.r���&0w�&','�\'��.r���&0w�&','qyi5���z�\ZpK��P)�f�pf���2�o��','',0,'?'),('�\nS��v�e�Y�?R','wp-content/themes/pinnclonesmalltest/resources/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/index.php',0,'?��,��;��7Fi�\\','?��,��;��7Fi�\\','�s\\<��Up�\r-xf<@m��*�����3����','',0,'?'),('����;8�p���p','wp-content/themes/mint/node_modules/decamelize/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/decamelize/index.js',0,'�0��e(���?�͚','�0��e(���?�͚','^}�}M߄��\r`�@�M�v�\"m�鍙t','',0,'?'),('� �Q���e�K���ԗ�','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Loader/AggregateTemplateLoaderInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Loader/AggregateTemplateLoaderInterface.php',0,'�tv�4y��I����ea','�tv�4y��I����ea','�ɣ���D�\r([a�)�EI�ɢ�X*�+W(','',0,'?'),('�\" 6A��7^�H�','wp-includes/blocks/cover/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/cover/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']z�j�违~�*���','[��0�`B�c�$I�skz��iM���S(��\"��3','',0,'?'),('�&ԡj��D��pֳ��','wp-content/themes/mint/node_modules/source-map/test/run-tests.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/test/run-tests.js',0,':�WsI�����:',':�WsI�����:','#�O�N��7@��#L�I��W0H���ѳ�Ty','',0,'?'),('�(�+3�cm ��\"h!','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/FunctionCallSignatureSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/FunctionCallSignatureSniff.php',0,'kO<�i�=S���','kO<�i�=S���',':@VفM<�8��yO���Rzx^��\\��:+','',0,'?'),('�(�]���g�圽�R','wp-content/plugins/envira-gallery/src/Views/partials/metabox-gallery-type.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Views/partials/metabox-gallery-type.php',0,'������w\"�J�}�','������w\"�J�}�','x<r��\'���T��q���sKF�j��:�FMD�','',0,'?'),('�+U�s��b�Нq','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/MAX_UINT.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/MAX_UINT.js',0,'vو$��\r��y\r\'','vو$��\r��y\r\'','�D\"&7��˜���+�$�����\"j!2�=�b','',0,'?'),('�-��-J�����W#','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php',0,'�觖s&�$�,ܯ�\0�','�觖s&�$�,ܯ�\0�','�1���u�z������Q�m�BQfs�1rUSq','',0,'?'),('�5�+l�@-\n]���','wp-includes/js/dist/script-modules/interactivity-router/index.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/interactivity-router/index.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ч�B)��@�*�\0�[�','�0J���:��ģ7�/G�j_-��o�','',0,'?'),('�6�/X��і����˃','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/unique.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/unique.js',0,'�r�Y��\'c��jK�','�r�Y��\'c��jK�','�[1v��ѡ�i�U\\��Ua(�P��\"c�͌_','',0,'?'),('�7�!�!��sx��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Input/ArgvInputTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Input/ArgvInputTest.php',0,'�� �+�Hx�L���t','�� �+�Hx�L���t','M���o�n���Kо^���|�N[\Z��','',0,'?'),('�:���)*W�%+�:','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/equals.js',0,'4��Z��k���`��','4��Z��k���`��','u)�`����D� J������>Y�@�','',0,'?'),('�:=�%����M�۵','wp-includes/template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w���؟�\0�\n��8','l\' \n�< T�:/U1�OB���CI��w�b','',0,'?'),('�:Z��]i��t����K�','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/stop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/stop.js',0,'�Qez��/ʃ��%g�','�Qez��/ʃ��%g�','�J�Hax��|%��DKԐ��9\":�u�K\0DƢ','',0,'?'),('�>��J���*s�K�H�\Z','wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.6.3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.6.3.js',0,'vH�@���','vH�@���','}3gb?�������$�jk*��w�� ����','',0,'?'),('�I�{�?��r�]��7','wp-admin/images/resize-rtl.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/resize-rtl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nC%�Y�f���v�F.z','@St-]�z��\'+k��2��{�j�,�QN��~)� >','',0,'?'),('�M�{V��_v�a;','wp-content/plugins/wordpress-seo/css/dist/alerts-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/alerts-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s\r@\n���U|ȣ��','~�`��2�fM�C��gӻ%��<g\Z�VY�E+V','',0,'?'),('�Q��mf\r]��>�\0B!(','wp-content/plugins/gravityforms/print-entry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/print-entry.php',0,'�������UO�\rߤ','�������UO�\rߤ','�G�*�`T�J�r�Y\'/E8���\r�4�','',0,'?'),('�X�&��%�֝{n`','wp-content/themes/mint/node_modules/shelljs/src/common.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/common.js',0,'��(�ƽtm+-�Ԧ��','��(�ƽtm+-�Ԧ��','#����&0�^��Ay`l7��;~8t��yR�','',0,'?'),('�_ґz@��꡵x���','wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/test/set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/test/set.js',0,'>PG��d�t�tō�','>PG��d�t�tō�','���`\"_��-�F� ����*��=P��r��\'a','',0,'?'),('�`� Ƣ�Xv��{�;�','wp-includes/js/dist/edit-post.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�\0!7�{�/�}\"','��S�1^&P>�\0��7��h����R���H�','',0,'?'),('�c�77��*B�2���','wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U�6��·�K���D','��p��{��x��E<��gNS#���W�n�j+','',0,'?'),('�h��/�ϧqY+�1(m','wp-content/themes/mint/node_modules/autoprefixer-core/lib/old-selector.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/old-selector.js',0,'To\n�yr���IJ\nU�0�','To\n�yr���IJ\nU�0�','���U�2Ә�|���sp\Z�R]<w��+[T��','',0,'?'),('�id�^,�4�@= ��9�','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�kj��J��7r_�a�','\nŘE����s��럣;��v���U:r','',0,'?'),('�p���=��\r?=�5o','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/slugify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/slugify.js',0,'\\����A����5ɇ�:','\\����A����5ɇ�:','���hx�$S�^�dU���K��h�4�zm0�','',0,'?'),('�t�}^[p�Z�E� �J','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/source-map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/node_modules/source-map/source-map.js',0,'���]/�7y�s�=�p','���]/�7y�s�=�p','w4�\'|s ��Q �)o\n$t�A�\Z8�ֆ�zX','',0,'?'),('�v0�O�l�Ӥ���\"�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/identity.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/identity.js',0,'pdޫ�L}���(�','pdޫ�L}���(�','$�X�9��ߌ�x��ЧQ�Zg̮a��R\'�','',0,'?'),('�w���d�:h��V�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trimCharsStart.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/trimCharsStart.js',0,'�%?fQ����� �h�','�%?fQ����� �h�','����Y�9.��b�wJ$p��1���B��#�4','',0,'?'),('�~�c����*c�{i','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9 �� TD$FgiEn�','������S]�S�(n���Z\0�ʲ��','',0,'?'),('���EoF��f��QQ�','wp-content/themes/mint/node_modules/tape/example/static/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/example/static/server.js',0,'�t�_v\Z09�D��t���','�t�_v\Z09�D��t���','3�P߂�w�R=��Q�+_W@�Y�ea��','',0,'?'),('�����n��ih��Sk','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-arrow-up-right.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-arrow-up-right.svg',0,'(�su|F +][�n6�','(�su|F +][�n6�','��N&ܫM�8�X.e^��ɻ��ԷG��,Kr�','',0,'?'),('�� ��of�>/��','wp-content/plugins/gravityforms/includes/orders/summaries/class-gf-order-summary.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/orders/summaries/class-gf-order-summary.php',0,'�qMb�U=�cs����','�qMb�U=�cs����','��>b\nl�� aԹ�\"��xO�R\Z��x\rSa','',0,'?'),('��H�M�[\r��Kwdb','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/window-framed.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/window-framed.js',0,'I��¥T^��~y�[','I��¥T^��~y�[','\'��R!Q��Am,��B���w�� A}t��','',0,'?'),('���Ѹ�H\n7Qhe����','wp-content/themes/mint/node_modules/cryptiles/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cryptiles/lib/index.js',0,'&|������Â\n�v�>�','&|������Â\n�v�>�','�lq����K�`�N?�Pɰ6S0�~/\n�/��','',0,'?'),('���eM�y*Ҟ����','wp-includes/js/backbone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q���_���)�','ꀠ=�=�ܫ�ā�E�ߑ���q�','',0,'?'),('���3.�\Z�=�k_8�','wp-content/plugins/wordpress-seo/src/exceptions/oauth/authentication-failed-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/oauth/authentication-failed-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Jp�l��b�7�','����g1���T�4BP�#�l�l�.���cLE','',0,'?'),('��@k�&X�Itǜ','wp-includes/class-wp-block-styles-registry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block-styles-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zt�UG<���>�','jN����LJ�O_1O���_�z��C�r','',0,'?'),('��#�dl|M�SRə','wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-cache-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/sitemaps/interface-sitemap-cache-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������rY�-��','�����S����� �{o�5���V�z-��','',0,'?'),('��Uh��.���0n�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sq.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sq.php',0,'�M��a%h�-%�_/���','�M��a%h�-%�_/���','4S��8H�_��M��h�1�@��NCū j˳','',0,'?'),('����B�+�y\0x�a�$','wp-includes/blocks/table/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/table/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*������\'V�m�','����B��O����&��\'�o1IYy�%D','',0,'?'),('���&~���{���\"','wp-content/themes/mint/node_modules/bower/lib/commands/info.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/info.js',0,'��)���!ٕ���l','��)���!ٕ���l','�v��P6;�e9��c����n�8\"�)�[C��','',0,'?'),('�����p��A�z1w','wp-includes/blocks/navigation/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҮwU���A��\Z�','����N뀲��������C��W��\\�f�','',0,'?'),('��Kk�f�g��T�#�V','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�er��x��|2c��','����.C��@2��P�c֜�^n\n�\'-�v[~','',0,'?'),('��0D�dǜ�ke5r�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/css/livechat-icons.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/css/livechat-icons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-a�Nfig��5�fl','��t\n�{�A�/x�*�T���%B�aF-�^a�','',0,'?'),('����n�\n�\0܁-i','wp-content/plugins/wordfence/images/blocking.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/blocking.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'-H�f���<1','A5�Y9���\0��O�tq�ЖL\\�}�a��&�','',0,'?'),('���l�3�����xz�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin-tools.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin-tools.php',0,'Io�������a0.Fw9','Io�������a0.Fw9','����?]���4�ư��;�g\\_e��(��T>','',0,'?'),('�����BAmBW̐A7�','wp-content/themes/mint/node_modules/http-signature/lib/util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/http-signature/lib/util.js',0,'z+���F���e��dR0','z+���F���e��dR0','�1EKu�\'�J�wi�&`��$�t��^��','',0,'?'),('��L&�W�/p�Pw','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',0,'Ձ�U�3�Ҿ�P�m','Ձ�U�3�Ҿ�P�m','o�a��/�jnu���F��X]��S{�u��','',0,'?'),('��Uˊ��)6�0>Pb�','wp-content/plugins/advanced-custom-fields-pro/lang/acf-fa_IR.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-fa_IR.l10n.php',0,'����nqH�\0Q9���','����nqH�\0Q9���','�l�@ }P�gd}� ��ձ�h�F�iNo\Z�','',0,'?'),('����M�����\'1���','wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-check-screen.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-check-screen.php',0,'�0���!�+���fGe','�0���!�+���fGe','&�%��Q���*P.Q�Y�jOPg�%��|��\"�','',0,'?'),('�������{�<Yy�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/isKey.js',0,'�m�n��X\0\'','�m�n��X\0\'','�5JNj\r�EW\":j2���_|X�w��Ӎ��jP','',0,'?'),('��e��s�rX\0eT}�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/getParam.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/getParam.js',0,'�Р`��f�;&�����','�Р`��f�;&�����','�#��Apm��@J\'��\0֬F��`�','',0,'?'),('���g���[z�\0ή�','wp-content/plugins/wordfence/modules/login-security/views/page/settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/page/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ݤ)e��&�vW4�',']Z��*W�!Oe�H�v8�al��|�\r�30���','',0,'?'),('�˜rdE�T�3H��<','wp-content/themes/mint/node_modules/meow/node_modules/minimist/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/index.js',0,'�oW�4ۣ��@�6�7K','�oW�4ۣ��@�6�7K',' }��qC��Q&�Eb�\0������C��','',0,'?'),('��:��ƍSU3�T�','wp-content/plugins/wp-optimize/templates/cache/page-cache-advanced.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/cache/page-cache-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֆZ�\"� ���[-�','�G�\n�}P�\\���ld�y�J�-��u ��','',0,'?'),('��\\-\\��f�t�KD�s','wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]�NV��K.�~)_','\"d>��[j��iv��֍��,0�� \r1','',0,'?'),('���w~z�`�0�/,�/','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-key-solid.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-key-solid.svg',0,'w�v��>Vs0w�$�','w�v��>Vs0w�$�','XsK$�G���Q����H�~/す��\"�QQkA','',0,'?'),('��w��i.�w�(M;0D','wp-content/plugins/akismet/.htaccess','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&���*,�� ��','�\'m��uoFTsD��h��{�aT�+�a���','',0,'?'),('��ʁ��&�D���4','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/mapping-list.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/mapping-list.js',0,'����N��Z|��\Zn','����N��Z|��\Zn','��C�����I���곂�`��C��ǹ�w','',0,'?'),('��9�G�)�.�<��i','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/parse_modified.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/parse_modified.js',0,'�OW ��{���','�OW ��{���','ۤ.S��8��\Z}X���R�dC%͆�u��DQ','',0,'?'),('���g��������#','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue16.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue16.js',0,'#m��S(~�P\"�**v','#m��S(~�P\"�**v','�9bCYu6�oX�6P�[��Ļ���bF���','',0,'?'),('�Km)�&c�7�9!�a','wp-content/plugins/wordpress-seo/lib/migrations/column.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/lib/migrations/column.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`�`_^>뻪Ӽ?��','���?�>b�J@�q��Gz��~ӄ��u��a�','',0,'?'),('�\r�zv<�ۙ�# �4�','wp-content/plugins/gravityforms/assets/js/dist/gform-products.c0fa8fcb13397d378d7d.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/gform-products.c0fa8fcb13397d378d7d.min.js',0,'J��!@B0��8l�˒�','J��!@B0��8l�˒�','����}�Gh���_~�%�<�k�ʦh_O��','',0,'?'),('�f�^r�[�ʍy\"�','wp-content/themes/mint/assets/vendor/jquery/src/callbacks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/callbacks.js',0,'�^�{�o}K7�:�h','�^�{�o}K7�:�h',' uUЂ\"Rd���H�� z�)�u��f@���','',0,'?'),('�[��q|�O)0<���','wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-failed-notification-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/indexing-failed-notification-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M��LMt#7����','E)�ia�.U�+jҿADz4vQvxR����b��','',0,'?'),('�+���jk��-b','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',0,'Q��I�.w��>��','Q��I�.w��>��','���FЏ\ZGc���F�-o|���[��4^e','',0,'?'),('� ��g����%�!�','wp-includes/blocks/site-logo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̣�+�:�%3�9.��','hYx�G.pO��ە.��fi��n~u��9���','',0,'?'),('� �&?�F�ZiE�Od','wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/taxonomy/class-taxonomy-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�q,�}�+C�Q�z','���3\nu�!���sz�vE���6���a��0K�','',0,'?'),('�&S*��P,<�I�\nΟ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lru-cache/test/foreach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lru-cache/test/foreach.js',0,'�I#x{괡�N��Z','�I#x{괡�N��Z','$�c\ZHL<���3b�Ⱥ\'�� �\"ƒ�����','',0,'?'),('�.E���ˉ�B��t','wp-content/plugins/wp-optimize/js/modal-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/modal-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�_Җ�6�?#����o','[22�w�>:7Yq���c��e:4��$�k�','',0,'?'),('�.��x�Q}�t\np�','wp-includes/rest-api/endpoints/class-wp-rest-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+$��@3���f����+','Ad���F:qfO,!ѓ��&D6C�I,��','',0,'?'),('�0Q��p��e��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/Widgets/ContactButtonWidgetTemplate.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/Widgets/ContactButtonWidgetTemplate.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>W��[���-�m','3�%�9�GE�\\Ղ�А��Hh�S�\"��','',0,'?'),('�1�D��!e���@N���','wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonpointer/benchmark.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonpointer/benchmark.js',0,'W�(�[ɋ�9�-��s�','W�(�[ɋ�9�-��s�','����H^iJ\ZGʗ��g������F�T�','',0,'?'),('�2�P��@���敘�)�','wp-content/plugins/wp-optimize/images/features/automatic-clean-ups.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/automatic-clean-ups.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?����4�&��9ۧg','���H-��r�Wi���{��Wq��Q�$��_�','',0,'?'),('�3�£M�B%�J�&','wp-content/uploads/cache/cc3980f83b7a3e1eef9d86eb444088c39a90d12f.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/cc3980f83b7a3e1eef9d86eb444088c39a90d12f.php',0,'˰��_@�УhK��','˰��_@�УhK��','$�|�<I��f\Z�ؠo���D�Ίt<v��`@','',0,'?'),('�7*���\"{��\n�K<','wp-admin/includes/ms-deprecated.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�}?{G��j�eGi�','eg��v��\Z�x��!�74��F�\n�����D�','',0,'?'),('�>�̅L��<Љ�K��5','wp-content/plugins/gravityforms/export.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/export.php',0,':{zϭ����ܧv',':{zϭ����ܧv',')P`��w�&�v��յ%֔��8�ҹ3 ����:','',0,'?'),('�?�8������Z��N�','wp-includes/ID3/module.tag.lyrics3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/module.tag.lyrics3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0k��E�.К�a#',' ,�w>M�?%9,�H�b����ץ*�\'�','',0,'?'),('�FDkD,)�g�!�_�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isBoolean.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isBoolean.js',0,'�����68z�k54�Ԛ','�����68z�k54�Ԛ','�o�r6;]�M�9^(��D�T��]nC\"?\'�','',0,'?'),('�P�ͭ�h0�q2��A','wp-content/themes/mint/node_modules/bower/lib/util/rootCheck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/rootCheck.js',0,'@g��zۻ�Ȍ��ih�h','@g��zۻ�Ȍ��ih�h','�N��n7��X~K��^�2��B���{DK�Ҡ','',0,'?'),('�S�jCS�T ڍ`a�*Q','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toFinite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toFinite.js',0,'���ɼ�F��IĴz�R','���ɼ�F��IĴz�R',',����.�\Z�K �h/�&��q��˯NF�52','',0,'?'),('�TU�N��4�0��i,�','wp-content/themes/mint/node_modules/less/dist/less-1.1.5.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.1.5.js',0,'��c-47�8��uEu�8','��c-47�8��uEu�8','0�Q�?�����\0�N�|����p9;��C{1v�','',0,'?'),('�X*����VL �_�','wp-includes/css/dist/block-library/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�DK7s�S[f�1�','\ZjdHh��{^�~煵Pr��9�f�#O�Hkj�4�','',0,'?'),('�_� ��6T���NG?','wp-includes/blocks/search/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/search/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h��`���ˁ)W��','��̴�<�V���N5pE�����A\"C诛','',0,'?'),('�`�o��.QS��`�','wp-includes/blocks/image/theme.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��k~��B0�','��W�ߤ�%��m�d��D�\'.][�\Zԅc<��','',0,'?'),('�d���3(����','wp-includes/sodium_compat/src/Core/AES/KeySchedule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/AES/KeySchedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N�,ß���V��y\r�','���� �a��I�Y6��c�s�R�+�dи�Y','',0,'?'),('�fK!�\"�>n>3-','wp-content/themes/mint/node_modules/bower/lib/commands/init.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/init.js',0,'$^�]�TuL��r�','$^�]�TuL��r�','ZȾ5ȡ`/M��M�i&A�t�2^J���B\n���','',0,'?'),('�h�U9�!�:��\\f��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/ctorApply.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/ctorApply.js',0,'���]~��7\Z�Xw�,R','���]~��7\Z�Xw�,R',')�\\Vxp�R\r�8� hh�ZҺ#x�c','',0,'?'),('�j��I���<��iU','wp-includes/category-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/category-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7l��:ؤ=��)�.�X','�G�;`�9\Z\"�~���j�z�S$�ؕ','',0,'?'),('�y�.Ԏ��%R���','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-search-replace.9c9bf81f.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/action-search-replace.9c9bf81f.svg',0,'#=|ʘ����Ɖ��','#=|ʘ����Ɖ��','�ԫ�)Q�Lޛ�Y��V�W��s\'*�S���P�','',0,'?'),('�y��DKg\Z�ԑ�S��','wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/test/modules/test3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hoek/test/modules/test3.js',0,'��S�e��\'�.Ķ}','��S�e��\'�.Ķ}','�ݏ~��Ň�Xh�\"ux�*�̼\'�]�}.','',0,'?'),('�zT�O�T�����#Y','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/findLast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/findLast.js',0,'�W_��ƯG\0�\nB��','�W_��ƯG\0�\nB��','o��L���������.E/��a��J2��','',0,'?'),('���鱓dMG^�q���t','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-date-picker.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-date-picker.svg',0,'�������R9Vغ�','�������R9Vغ�','�|=�vTY�h\n69e����>�/ST�%^,','',0,'?'),('�������єh\Z��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/WooCommerce/WooCommerceOption.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/WooCommerce/WooCommerceOption.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��$��fC~�{X��','�W�_��I��y����w�z��F�P}��M$})a','',0,'?'),('���&���}?�\Zs`�','wp-includes/js/wp-sanitize.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-sanitize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{���I>��_�@�\"�','�I�0�L\0��\r\'�}��g`��z _(���%','',0,'?'),('��� �]��\rb8','wp-content/themes/twentytwentytwo/assets/videos/birds.mp4','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/videos/birds.mp4',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Pq4�/�-��SU�d','r6��+,��&6VЉ�G3��t���:�9)T�','',0,'?'),('��턢\\�*W}l+�Vj[','wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/script-defer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/script-defer.js',0,'}�je7�Kr��!�,�V','}�je7�Kr��!�,�V','M����}):{�{���^T\Z��\\T��_�','',0,'?'),('���Q��Ws�A7d\n','wp-admin/css/site-icon-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/site-icon-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����b�K�\\�\'��z','�vT7��U��J\0�����#��B�>`��\\m3��','',0,'?'),('����pP��rOSF���5','wp-content/plugins/gravityforms/js/jquery.json.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/jquery.json.js',0,'?~�\rԬ�*.�n��~','?~�\rԬ�*.�n��~','�y��1�e{��@�R˕���F`Tjj�mQ}~�Y�','',0,'?'),('�����nJ-2���5W�','wp-includes/blocks/rss/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/rss/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,u�)���\'&,s�Q�','�>Qk�eG��<ӭ�Q������R�\"��I�B\Z','',0,'?'),('���7�w���^�7њ','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/lib/client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/lib/client.js',0,'X=S�!��:�]A��A','X=S�!��:�]A��A','�X���C0��k{\nh���y�^/�?�byt','',0,'?'),('���ɟ�,>����;','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/bash-comparison.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/bash-comparison.js',0,'�k1���^!�ýL','�k1���^!�ýL','\\���f����h�q�%v��!`4��\\���','',0,'?'),('��.��\"pҶ�e�\"���','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/decorators/inline.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/decorators/inline.js',0,'�.�������؏1�','�.�������؏1�','Qk��+mure��#Gv\"�T��\'AE�=���','',0,'?'),('���vw�6B�m��Pk','wp-content/themes/mint/node_modules/bower/lib/node_modules/validate-npm-package-license/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/validate-npm-package-license/index.js',0,'2yeV%*�Q��;�\0','2yeV%*�Q��;�\0','�گ*�����jށz��u�ya�9�����q���','',0,'?'),('���0s(8�qL9�v�','wp-content/themes/mint/node_modules/faye-websocket/examples/autobahn_client.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/examples/autobahn_client.js',0,'m�K�\\�,�mN�\'�>�','m�K�\\�,�mN�\'�>�','H��m�JY�u�O���\n���f���Wիnfp븵','',0,'?'),('���f1@��3��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Request.php',0,'��WE����0�dآ�r','��WE����0�dآ�r','����h����K��Mz9\"ɸn�7�F[8���d','',0,'?'),('���/��Pp�& j�xC','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/toUInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/number/toUInt.js',0,'�\0Ҭ���9>�cz�r','�\0Ҭ���9>�cz�r','js;�Z���1\'���qF:��֓v#���','',0,'?'),('��e�\\��1�tƋ�< �','wp-content/plugins/wordfence/lib/wfUpdateCheck.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��j��V+KI�~0�\n','�����7��&.����η��Dӛ�]e��','',0,'?'),('�����6�ECn2J���','wp-content/themes/pinnclonesmalltest/vendor/psr/container/src/NotFoundExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/container/src/NotFoundExceptionInterface.php',0,'���� ���\'1W��','���� ���\'1W��','ӘL�HyÉ}i|���\0nn���G$��j���','',0,'?'),('������G�G����a\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*M]YnM$^ù\"�','���ϐ�N���o�KtQ�V���\r3�-��y�-','',0,'?'),('����Z|��0�75�o�','wp-includes/sodium_compat/src/Core32/Int32.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s���iQ��$�g��Fr','�M�=�cS��~[\r�<�)ǖ�3O{�xھ\0�w','',0,'?'),('��B]nȄ�8�7g��','wp-includes/images/smilies/icon_rolleyes.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_rolleyes.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y��u�u�� �2���','�\\�� �u�e�T�\rv��j�!ҳ7R���','',0,'?'),('��T�{��Ͼ�p��Z','wp-content/themes/mint/node_modules/tape/test/max_listeners.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/max_listeners.js',0,'Y�#����W���B','Y�#����W���B','#$��TL�\\�W�\'T���G���\Z6 �yW�','',0,'?'),('�f}����w�N�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Event/ConsoleCommandEvent.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Event/ConsoleCommandEvent.php',0,'�IBa��\Z���@W��','�IBa��\Z���@W��','�힒�]z�M���[��9� #�ׁjy�Ē�N�','',0,'?'),('��i�A��O�p�','wp-content/themes/mint/node_modules/rimraf/bin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/rimraf/bin.js',0,'�T���Y��16���/','�T���Y��16���/','WVJ�t�ĜTНQ���s:�v�)�\\#��A_�','',0,'?'),('��_ �U�h���6,p�~','wp-content/plugins/wordpress-seo/src/presenters/meta-author-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/meta-author-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\n��1�p\"#��','<��lE��T�l����bj�ք篏K]Y��','',0,'?'),('����\07������ :','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js',0,'��pJ�Z�\n�<�ڑ�(','��pJ�Z�\n�<�ڑ�(','�屛�|���b�/�v2j{��V�`bի<� �','',0,'?'),('����!�sx��È','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseToPairs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseToPairs.js',0,'�:�t�,65�E�|&��','�:�t�,65�E�|&��','8J�-o�J��n`ߧ��wB��Z�lz� .|','',0,'?'),('���FJ��߈�И�CH�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/parallelLimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/parallelLimit.js',0,'��\nh����p�X�','��\nh����p�X�','���J[�EP<�d<7�Q䥹J<h\n� �2%��','',0,'?'),('��Q��3����@��*�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&����+�Nok��','.��<O x^E�r��cf4�r�4Cu*p�@�7�ׁ','',0,'?'),('��\n�>����I��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_escapeStringChar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_escapeStringChar.js',0,'=z���M���m�\0\rl','=z���M���m�\0\rl','j�Hk3u�\n2j������O�����ڃ��\nGS2','',0,'?'),('��-�X����6s�L�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/identity.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/identity.js',0,'-�Of�\\�݈uB���=','-�Of�\\�݈uB���=','��*�dž��d����\0L�:�?_\r�9�(��','',0,'?'),('��fR/1����< PC�','wp-includes/js/dist/shortcode.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E��yk0�1�pd5','!��VQ�sc.cM��ö����>S[���k����','',0,'?'),('�����e-�?�F��J','wp-content/plugins/gravityforms/images/template-library/BasicContact.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/BasicContact.svg',0,'�H�įЋ��o�O:','�H�įЋ��o�O:','7������c��Z����5V�JE��ֺ','',0,'?'),('���@\"��[�>XFo�','wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/duplicate-post-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/duplicate-post-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G҅96��^�a�r�',',&+Z:;��X���)i�2��r�A�;���','',0,'?'),('��g�@��-�#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/replaceAccents.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/replaceAccents.js',0,'u �\"$�>P����i�$','u �\"$�>P����i�$',':��?j�a��Z\r��A�5�g�(d����3��','',0,'?'),('��k�z�T�����','wp-content/plugins/wordpress-seo/js/dist/wincher-dashboard-widget.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/wincher-dashboard-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o`}� �^��lt���E','��J9=~:v �R�RL�R��\'�}���$݃\"','',0,'?'),('���EYS�*ע��Q�-','wp-content/plugins/gravityforms/includes/settings/fields/class-radio.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-radio.php',0,'� �ec���fޤ�P�','� �ec���fޤ�P�','5]6 �\'s3��j�����6S\\�%m�@���','',0,'?'),('��%X3�n� ��4','wp-content/themes/mint/node_modules/hoek/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hoek/test/index.js',0,'TY`��9���Hl<Q�','TY`��9���Hl<Q�','��n+z�%`��/;GL����,0��T�<����','',0,'?'),('��V�Z�8�=�v���c','wp-includes/blocks/freeform/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/freeform/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Я\0\"\Zv�O>�b','t��C��I�λ鯼[���\'�G�}�t���\n�#','',0,'?'),('��ڸP���ֺb�','wp-includes/blocks/social-link/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-link/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h����Vf�>�Þ�GIT','�+ɿf;͙\n�-8d�xLv�!$���bƎ�#�F','',0,'?'),('��ᨢR��]�K��|z�','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�||EW|U\rIfa쎗L','s�)��LM\Z(�����F��u؟8Y+x','',0,'?'),('��Dfi���`��','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/baz/quux.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/baz/quux.js',0,'�1�=q���V���','�1�=q���V���','D�i2���)�Wk�-���CX�[n��z;Y�3','',0,'?'),('����1���\\V$��t','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/danger.e1678f77.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/danger.e1678f77.svg',0,'�������.��\'��','�������.��\'��','&��0�!y�,��o\Z%�JN�����Ò�p�c','',0,'?'),('��L�L�I~h��8�:ױ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/ary.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/ary.js',0,'�y��T7�m�W� ��','�y��T7�m�W� ��','���Ko�aR_J�?T��q��s�K�_��7�','',0,'?'),('�@�� D5��gc8>','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mapValues.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mapValues.js',0,'��9���tY�}m��','��9���tY�}m��','w_��s��\\\\�Q�A��(ʥ_Ó�MSH','',0,'?'),('�D�����e�=g�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/random.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/random/random.js',0,'����ݬ�4��uQ�','����ݬ�4��uQ�','�)C���#/$у����Hq��&R�\"�p\0~��','',0,'?'),('�LQ�b?>��\Z���M','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/898.d64597f6c89a.chunk.js.LICENSE.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/js/898.d64597f6c89a.chunk.js.LICENSE.txt',0,'�����M*��s�','�����M*��s�','���iS&8Fgߌ��X\'J-�6hf8km','',0,'?'),('�P�o��`�b�,g�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/location-rule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/location-rule.php',0,'߬�B�M�=+�C��','߬�B�M�=+�C��','AR���o/d�UA���;�?�������O','',0,'?'),('�,���z��M��j','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�B�1y�\r���P��','�`z�D�2b�F��r��V8����+P�+�#','',0,'?'),('���K�ȁ;$��z�','wp-includes/js/dist/notices.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/notices.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�Ōh��2�<\rP�t\n','�_�x������ҍ���{\\��h7H{��=�','',0,'?'),('�I���0�W�x�mQS�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-protocol-changing-redirect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-protocol-changing-redirect.js',0,'��l\\��H�S9�w6,','��l\\��H�S9�w6,','Qq��/���\rT?\0ha8�?p�������?','',0,'?'),('�%� V���?r����','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/TableSeparator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/TableSeparator.php',0,'NY���p�-< {�x�','NY���p�-< {�x�','�=�x��6�\\5�z�y[�;Ot/��I\n�{�','',0,'?'),('�-p>i�E��VQ��','wp-content/themes/mint/node_modules/gaze/lib/gaze.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/gaze/lib/gaze.js',0,'�ć�Ի=L�G�{�x�','�ć�Ի=L�G�{�x�','n�?0]��s\r�_�I���dd\Z��A�Zgo�^�','',0,'?'),('�/��e\"�>)^�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-hi_IN.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-hi_IN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SF\0}K�P��K*wB��','\\ 0���OM[�\ZT3�=k6f�����!���','',0,'?'),('�22wc{%�;�Z1b�','wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/select2.full.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/select2.full.min.js',0,'��������a��4�','��������a��4�','Ժ��ͯ3jL�����\0Vo!��Q��\\\0�','',0,'?'),('�5��;�k�w�N{','wp-content/themes/mint/node_modules/jshint/node_modules/underscore/underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/node_modules/underscore/underscore.js',0,'\\�?��\"���%*gV��','\\�?��\"���%*gV��','��:�4V�����M�̝\r�~� ��>se','',0,'?'),('�7� ��j�Rl��H3-','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',0,'ź���>�pҸ]T��:','ź���>�pҸ]T��:','lO|T�K��f�.��`~���4,X�v�I���t','',0,'?'),('�:4B�}�<% ��L','wp-content/themes/pinnclonesmalltest/resources/views/partials/content-related.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/content-related.blade.php',0,'d,n�R_���ҵW��`','d,n�R_���ҵW��`','�h�q�)�B�ؙE��]���I��btG��<e�f','',0,'?'),('�=��T�O��7\r�7�{','wp-content/plugins/wordpress-seo/packages/js/images/icon-arrow-down.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/icon-arrow-down.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��- ����D�����','�7ݰ��q͊�����C�L�wI㎘|���Y','',0,'?'),('�@�1�-�Ŋ5 �R�j2','wp-content/plugins/gravityforms/includes/webapi/js/enc-base64-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/js/enc-base64-min.js',0,'����<c��]kz<��','����<c��]kz<��','��rR��ϥD�X�YWs}S\r�Xz��S��%�I','',0,'?'),('�C��v��ܥ��Fv+','wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/tumblr.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/additional-contactmethods/tumblr.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|��k�`)s�\rSd�<','J\n�Al�C\Z�鎋�����Բq�O�:l���W�','',0,'?'),('�Up�8�ώ�*x����','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesLoops.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesLoops.php',0,'AM���t�������L�','AM���t�������L�','!�q�}��F�%���דE�a�� �/��','',0,'?'),('�Xq�NM�\r�\\�ZZ>','wp-includes/images/media/interactive.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/interactive.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E�3�aH[�$�^��','����K�����M4g@Mw��U���','',0,'?'),('�\\}3�x�P�Mc7','wp-content/plugins/advanced-custom-fields-pro/includes/l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/l10n.php',0,'��u��� ̲�,5�X��','��u��� ̲�,5�X��','�7�2�ĻE5ъ^lrZae��mZ�ζ9$�XSY','',0,'?'),('�eԖ�vzF9�ms3W','wp-content/themes/mint/node_modules/bower/lib/node_modules/duplexer2/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/duplexer2/index.js',0,'��.u��4�7�0','��.u��4�7�0','��˱c��^dO�ϾGk<UZ>�z�\09��v��<','',0,'?'),('�g��\\b��U1@\r�%�','wp-includes/js/dist/fields.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/fields.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F2������iK��;�[u','el�P�FX �7E����5�)�<Ȃ�Y_K�8\'','',0,'?'),('�kIK����V[�� 5�','wp-includes/sodium_compat/namespaced/Core/Ed25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v>��#��!n�(','�DFUu|�v��/�]�2x_ERL2QlP93s �15�','',0,'?'),('�o?�NM�ւS��N','wp-content/themes/twentytwentyfive/patterns/cta-events-list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/cta-events-list.php',0,'Ȏ�uQv>����n��','Ȏ�uQv>����n��','���}���\0�=���-t�&�ei]p�����a�j','',0,'?'),('�s.�V!���Xtãs�.','wp-content/plugins/wordpress-seo/src/helpers/capability-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/capability-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���̖0i��V�҇�','&%˴��t�E;V���s���%�+2��I�jZ','',0,'?'),('�w.�@=��$�Ȕ�','wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Jobs/WPMDB_Job.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Jobs/WPMDB_Job.php',0,'�\n�G���GMF|��','�\n�G���GMF|��','���C�s�92��\n�^x@�!#��R�@��2�e','',0,'?'),('�w�\Z�d�Ϣ�\ruD\"','wp-includes/IXR/class-IXR-request.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/IXR/class-IXR-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%p.<�Sǡ��z1Ϣ','Q�*k�_}��2���>T�q<�_S�:�Qh�','',0,'?'),('�x(�������<ZK�v�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isFunction.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isFunction.js',0,'�kU,���]L4���','�kU,���]L4���','ޑ�ً몌؝[��#��s����^���r�\rZ�','',0,'?'),('�|�ç��5�X\Z�','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/build/assert-shim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/build/assert-shim.js',0,'�C$uy�Y��� >F�','�C$uy�Y��� >F�','��~o\0\'�X�TwAI�$���%)PM0���Y��','',0,'?'),('���0�w��\'��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/utils/readline.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/utils/readline.js',0,'hʴ� #K��4�Uכ','hʴ� #K��4�Uכ','��¸�� ��_� K�v�r�����gڑ��\'','',0,'?'),('��j� ;^�ٮm)�7;','wp-content/themes/mint/node_modules/less/test/less-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/less-test.js',0,'c\"$j��\0�\'h�U�F','c\"$j��\0�\'h�U�F','���h]z#�7��(�gjz��{�e#|��s�v���','',0,'?'),('��R����$B���%�','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/transition.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/transition.js',0,'�@h�P��h��y+','�@h�P��h��y+','V ���o�1�L�aеI�V8��䗃�*','',0,'?'),('���؈�\n��\n�!+��','wp-content/themes/mint/node_modules/grunt-modernizr/test/runner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/test/runner.js',0,'U�N�����WH�9��','U�N�����WH�9��','�� �d�䄛�S��H�Aj( cr�M����t|�f','',0,'?'),('�����[�Q<��_8&','wp-content/plugins/gravityforms/includes/fields/class-gf-field-page.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-page.php',0,'�ZP{�����\r�C','�ZP{�����\r�C','����2o�1n�Z.�8�X���\'he�K����','',0,'?'),('����v�r@�{�c{','wp-includes/blocks/social-link/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/social-link/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h����Vf�>�Þ�GIT','�+ɿf;͙\n�-8d�xLv�!$���bƎ�#�F','',0,'?'),('����&$k�1Zw��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_equalByTag.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_equalByTag.js',0,'%l�4�|�B����*��w','%l�4�|�B����*��w','���c �S���g�ݐG?��I1ɄP�\0��Ѵ','',0,'?'),('���4�f��G��AZ%','wp-includes/class-wp-styles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����`�\ZK0֨��','B;�\n�D�a�M^��\"Y�qsc�+ځ��6ǹd�w','',0,'?'),('�����Uӻ�=��%cZ','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/utility.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/utility.js',0,'c�L�t�k��A��;�4','c�L�t�k��A��;�4','|J(�\0×��;ѥ���I���=JuҔ�v���~','',0,'?'),('��>�g5 �I�[�','wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/decompress-zip/node_modules/readable-stream/transform.js',0,'�A�+Q�{}��3�','�A�+Q�{}��3�','PWF�fz ���^�B\\v\r��8�2��R�?��k','',0,'?'),('���/��\Z��)y�\r','wp-includes/blocks/html/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/html/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԓ��,�e[�2�^.���','x��L�mR��~� e竚�şzA�E��yz0�','',0,'?'),('���g��j��p����*','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/getLength.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/getLength.js',0,'cMy�5I��e%P!d��','cMy�5I��e%P!d��','N\Z�9a/&�8�`D���t_�����T�t�]�','',0,'?'),('���W�����,����','wp-content/themes/mint/assets/vendor/jquery/dist/jquery.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/dist/jquery.min.js',0,'Ԣ\ru��>-e��\\4�','Ԣ\ru��>-e��\\4�','�{�h!TX���vJ������ԘJ���kt\"{��','',0,'?'),('����DV�h;.\r�4)','wp-content/plugins/gravityforms/assets/js/dist/vendor-theme.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/vendor-theme.min.js',0,'��p.�$�!�^aAo�','��p.�$�!�^aAo�','�����ZH�.碻�|}:�`�{�c�}�','',0,'?'),('��Ld&\'��9�)o','wp-content/themes/mint/node_modules/postcss/lib/rule.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/rule.js',0,'�}1�b7��-*_~�:D','�}1�b7��-*_~�:D','�B�}0�|2J��%�[&N�JJ����3��:','',0,'?'),('��\ZH�\Z��\r�#O_��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assignIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assignIn.js',0,'@0�X�O+jX}���y\r','@0�X�O+jX}���y\r','��O4|�įi�C�ػx�\r1�؊m�','',0,'?'),('��¼c���5����','wp-content/plugins/wordpress-seo/src/surfaces/meta-surface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/surfaces/meta-surface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\nN��p�w�^���B','�2Vp�I��P5���i�,,x�$j�j','',0,'?'),('��$��xM1>�_8P\0','wp-includes/js/swfupload/swfupload.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/swfupload/swfupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#����9��>&YRg','��ݙ���R�YY-�ҕ�&qW1(�K��','',0,'?'),('��35n�o�~.���','wp-includes/blocks/archives/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/archives/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����� Kݑ�։�','�9��j鹠�٠��4��Sq�ò��_\\`�','',0,'?'),('�߫����P%��D��','wp-includes/class-wp-dependencies.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}���G��o,� )','��Z��#Mn<=l><��Z�y;�J�f��dbr�','',0,'?'),('��W��Ŧ�fP�к','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/decorators.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/decorators.js',0,'�b���\'��9a�','�b���\'��9a�','��T)�8$)n��yѶ�{V����5*N߾��-','',0,'?'),('��ta���V/>��P�','wp-content/themes/twentytwentytwo/templates/page-large-header.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/templates/page-large-header.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\Zzݺ���~���ǡ�','�G#\'`&����fB��!���3`�����','',0,'?'),('��6�ʕ��n�w��0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/rimraf/node_modules/glob/glob.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rimraf/node_modules/glob/glob.js',0,'ȗ3䘡;k;K)�$g�','ȗ3䘡;k;K)�$g�','�V��Y�50=�;��������C�D���t?','',0,'?'),('��8�-�;r�BM�5','wp-content/themes/mint/node_modules/jsonify/lib/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jsonify/lib/parse.js',0,'-/ ��x��wB�','-/ ��x��wB�','L�|�@U%ݨ[�3�TZr<�̠�� =���g�','',0,'?'),('��g˓�#�%-BEYq�','wp-content/themes/mint/node_modules/tape/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/index.js',0,'�6���S�����kW�l','�6���S�����kW�l','�[���?��z���@�{7�0};ފ�ue�O','',0,'?'),('�����Um�o\\��[��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isEmpty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isEmpty.js',0,'� A\r�{h��� ��','� A\r�{h��� ��','�ls�����.ʼn�(�T�#sMٿ=XK��','',0,'?'),('��Qs|�c�LVH�)','wp-admin/includes/class-walker-nav-menu-checklist.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-walker-nav-menu-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t�\\v\0h�f8~��a','�H��\r�h�M`/4�5�0V���>��5�U�B�*','',0,'?'),('����V\Z`��ڇJg�','wp-content/plugins/wordpress-seo/blocks/dynamic-blocks/breadcrumbs/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/blocks/dynamic-blocks/breadcrumbs/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�͖^*n�D���S� �','Ԫ�ŭ�����g�|��{J�e��5�J��(l�','',0,'?'),('�*�(-�H�h�7oġ','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-backgroundposition-xy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-backgroundposition-xy.js',0,'ÇȆ$���ed<�Ѓ�','ÇȆ$���ed<�Ѓ�','��U��V/2��d_M`�p!TImaO`Ix���','',0,'?'),('��/8&�D�g|��#','wp-includes/js/dist/viewport.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/viewport.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/a��ܣ!��Ρt-��','y�ԗ�*� ~/L�Z��Z-C�L]�h!','',0,'?'),('���LG��0X����','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-config-with-undefineds.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-config-with-undefineds.js',0,'{oB$}����x��6��5','{oB$}����x��6��5','K/�\'^����\n�D]�_!�4���%w���ghɽ','',0,'?'),('���M���Y�m.�^�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/concatstring.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/concatstring.js',0,'���+>�NK��\0�q�','���+>�NK��\0�q�','���$0Oq��\\��]1\\֖0c���]>M �D','',0,'?'),('�>�`��!����4:','wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/lib/ber/writer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/lib/ber/writer.js',0,'����}�\"zD�����6','����}�\"zD�����6','��Zc�� �A���`ηf�Q�ӝ۩� �6\nZ','',0,'?'),('� �x�k���&Dx','wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/site-analysis.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard/site-analysis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r)Z���VB��','�熿��)�̔�wl���vBޚA�p4�gUy�','',0,'?'),('�!n�����N�`�`P','wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jyQ �]*e_Iᐉv&','�]�$�e���A/л����N��0�4z��','',0,'?'),('�*\\FW�u���Z��o�','wp-content/plugins/gravityforms/js/vendor/simplebar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/vendor/simplebar.js',0,'J;J��5j0���K-�','J;J��5j0���K-�','Џ2Gĺ>���뇧ã�3�#�P�!cǵ.','',0,'?'),('�5%q�0��k`]e��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/castArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/castArray.js',0,']=.s4�QBy�أ����',']=.s4�QBy�أ����','ep�Wm+�² �}�����Yٳd����+�>Ō�','',0,'?'),('�<�͐n�oz#�?:','wp-includes/blocks/widget-group.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/widget-group.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@xߊ��c���a+','��b��Ĵl3?�:<�c�6�d�:��,','',0,'?'),('�?��&�,w��e�<\Z','wp-content/plugins/wordpress-seo/src/conditionals/feature-flag-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/feature-flag-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���eG.�m(P�Z','�W�<˝����dq�ܬ��\'�.�H�GMS��','',0,'?'),('�@D3L �ϭ=�C�','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/ErrorException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/ErrorException.php',0,'08e�v���H�� 8%�','08e�v���H�� 8%�','IO:\\�eҷ{5cY��<�;�#-���Ǯ�ʷ0','',0,'?'),('�@j[���0��`�YT^','wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-nav-menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/forms/form-nav-menu.php',0,'��J�dB/�U:�f�9','��J�dB/�U:�f�9','5@�!��\Z����\Z�AZ�ܟ�I�,�/\0�]�','',0,'?'),('�B�и@ �s�W�w','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/timezoneAbbr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/timezoneAbbr.js',0,'����Hi����0�R','����Hi����0�R','�}^��nޒR��V_>���G���!R\n�\nDV','',0,'?'),('�D�*CVɗ���jG�','wp-content/themes/mint/node_modules/bower/lib/node_modules/generate-object-property/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/generate-object-property/index.js',0,'�Z��0)Y�g+�}�','�Z��0)Y�g+�}�','��}9�D��k.��P�ȝ/��3���Pw��','',0,'?'),('�FZSS�Lw��y��|��','wp-content/themes/mint/node_modules/qs/test/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/qs/test/parse.js',0,'�yQ��)����y��','�yQ��)����y��','(z��Jw�B�� \\T_.�5k��`KP�Uç','',0,'?'),('�H(Q�2�40K��\r�','wp-content/plugins/gravityforms/assets/js/dist/gform-pagination.758a28aa18a065d2730a.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/gform-pagination.758a28aa18a065d2730a.min.js',0,'��\Z:j�²�^��\nS�','��\Z:j�²�^��\nS�','��V�r{h�,v��х��R�?f:?�hF�','',0,'?'),('�Ox��ر��c5(','wp-includes/css/dist/block-library/theme.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AY�Άv��(.�%�ZT','ي���l71� q��� �i��v�(\Zq�C|��','',0,'?'),('�U��z��c��p��','wp-includes/blocks/separator/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٞ�\n��o�\'���','j7W��\0��6�$�e��~RI���p�%zP','',0,'?'),('�[�*����H߹�Ƃ','wp-includes/Requests/src/Cookie.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3E��O+��e�:�ڝ','��1 I��,yr��h=+��_smW�7�N����K','',0,'?'),('�]�縄4}N7�\\xq�','wp-content/themes/mint/node_modules/shelljs/src/sed.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/sed.js',0,'�ȝƈ̹nK-�]�h','�ȝƈ̹nK-�]�h','�-��1N��D5�C%���*��WM0�\\���','',0,'?'),('�]����%n\0x��6@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/insert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/insert.js',0,'�[�@�k�.@,�e%;^','�[�@�k�.@,�e%;^','6�b$�7�P��ja|[aJ~���RM��� �ʂ','',0,'?'),('�n97�I.O�ҝ�','wp-includes/js/heartbeat.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/heartbeat.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0I���s�p���)f�ն','��c<éa���uvH�5�tuX6�w\"V��=B','',0,'?'),('�o9sd�4-�����','wp-includes/blocks/loginout/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/loginout/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S :�ז�_�b��M��','y�T�5���m Z���V�#!�:�Z����','',0,'?'),('�r#�@���U%@�-x�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_noise.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_noise.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>ŧ�x/o���l','f�z��#�64G\\m��8}�3��m����=q��','',0,'?'),('�|ɰ\"�&�]DQ','wp-content/plugins/envira-gallery/assets/js/dist/tabs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/dist/tabs.js',0,'��\0Nx*y�㣄؇��','��\0Nx*y�㣄؇��','i2|=�����=���\";@�8�e����qF�','',0,'?'),('�|Bl�IHҼ�OSƱ','wp-includes/js/mediaelement/mediaelement-migrate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mediaelement-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�C�_hz�3��<7',',b#0�!a�OVc,��ؕSԏI�л%��p)��','',0,'?'),('�~1եR@\'��GNO�A','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-stream/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-stream/index.js',0,'\'x�븲�N���n/','\'x�븲�N���n/','�+�S�J��½��GFk2�D�l,؎�����A','',0,'?'),('��3s�<{l��tp�~','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchSearch.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchSearch.php',0,'@��J�Ir�����','@��J�Ir�����','u��*�wlz>C��Pc��lrZիzѺ)8n[','',0,'?'),('��˨+����ľ���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php',0,';�{joo�t��2J',';�{joo�t��2J','i�d���1H¬,�Z��cZj��Ci\"ݑ[','',0,'?'),('��x�\0.�r.~�7I\'�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/QualityBadgeWidgetDependencies.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/QualityBadgeWidgetDependencies.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W��b�>_�l����','���3w3�iy�x�+yW�-O�Ʃ�@�@�','',0,'?'),('���ب&G�)�k{��','wp-includes/sodium_compat/namespaced/Core/HChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h���P���','K����d�%�.RAO�F��������jo�-','',0,'?'),('���3�w���;N���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/clone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/clone.js',0,'�Ii�j?��8j̥!','�Ii�j?��8j̥!','�Nf��w^ٱ���;��o�� 0|�\r�]�W(','',0,'?'),('��_�@u�p�\n:�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/MetadataAwareInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/MetadataAwareInterface.php',0,'�J�R���\rl��,���','�J�R���\rl��,���','���\r�\0����\"r��bZFA}4:5�~�v��\Z','',0,'?'),('���̎tG�u,�ޚm�&','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/NullOutput.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/NullOutput.php',0,'�4�8��|)I297�','�4�8��|)I297�','��8�+�ѳY��<rMj}L�W6v4�S�^Q','',0,'?'),('��ͩ�AdE5=�\'T��','wp-content/plugins/wp-optimize/js/loadAsync-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/loadAsync-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0\"�8�O��q��62','ܸ�t\0r�]�t�f��rFP⬺�D�F=��˼�','',0,'?'),('�����R�\\�p��','wp-includes/blocks/comment-template/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-template/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:��=���B���W�',' `�gu F�$`m�=�3�c��c�%K��','',0,'?'),('���f;{=��h���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math.js',0,'�LVi����p]F鳍','�LVi����p]F鳍','0�j�����]�+p�%��0��ٓ�D�����','',0,'?'),('���?+x����}k\\','wp-content/plugins/gravityforms/includes/license/class-gf-license-api-response.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/license/class-gf-license-api-response.php',0,'`�d�O�=�n�p3A','`�d�O�=�n�p3A','pUc\r����,\"ʺO��sFtjf˩\n�m��6�','',0,'?'),('��[�6��dcHa ','wp-includes/blocks/latest-posts/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-posts/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4�5��/�`��h�R��','N�t�Hs2*�����g������z,','',0,'?'),('���\"��ݑ�ʔ�xB','wp-content/themes/mint/node_modules/less/dist/less-1.1.4.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.1.4.min.js',0,'0;+`f��V��mb!�g+','0;+`f��V��mb!�g+','�aG���@Ɏmq�T�ǂ��*���.�d�6�� K','',0,'?'),('��\\���֯�B!��a�V','wp-includes/blocks/comment-content/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-content/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?����݅����0�','�?�|��r.EIZ%KW௶��������^�','',0,'?'),('��f餧xM�P]~B��','wp-content/plugins/akismet/class.akismet-cli.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/class.akismet-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�Ve��l��r�}\Z','�7O�d%?���L�`�\"������}5���','',0,'?'),('��S�V=�ꭖ,�m�/','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createCtor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createCtor.js',0,'�c�ф��q�L���','�c�ф��q�L���','=��vG θ����ϛs��Rc���1kUf�C','',0,'?'),('����h+��B����','wp-includes/js/tw-sack.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tw-sack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Xh�+t�\r\r/��A�','�\\mN���톬3��oE�\0�Z��)�y�B','',0,'?'),('��F�\"��vh�$Lb��','wp-includes/js/imgareaselect/border-anim-v.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/imgareaselect/border-anim-v.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �z!�<�7�����*�','��>���d�:���j1�<�!4�6�g��','',0,'?'),('��dg�>�V\Z���2�','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7415d9.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7415d9.min.js.gz',0,'p����/@�կz+D��','p����/@�կz+D��','|y7�@�� �����2�J���zEz~J\n��d!\\','',0,'?'),('����f5줫�sEW�','wp-content/themes/mint/node_modules/bower/lib/node_modules/read-pkg-up/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/read-pkg-up/index.js',0,'\"�2H�\r�K�\r��Ҫ�','\"�2H�\r�K�\r��Ҫ�','*(n�\rC�ˎ�\"F�[koH�z�Q}𰓻�~','',0,'?'),('������L}�e&��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/JsonFileDumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/JsonFileDumper.php',0,'��A��B�Ǧ����I','��A��B�Ǧ����I','1*��\0o\\�k�g\"[M4���E�r��\'��','',0,'?'),('���\'��ש�X�J\0��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/DataCollectorTranslator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/DataCollectorTranslator.php',0,'�E��o\n�{���}�.','�E��o\n�{���}�.','ɨ�J4P�%%�z\" ���GdJ�oyV�','',0,'?'),('�͓*I�6�D��Y��','wp-content/plugins/wordpress-seo/images/support-team.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/support-team.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�_�Rx���D�','�L4���v�&a\'2ev��eؿ���t:A`�','',0,'?'),('�ѕ�����P�S�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesComponents.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesComponents.php',0,'�\\*��A��6������','�\\*��A��6������','JxuxI�.R]J���r�EX�Xe�l��_','',0,'?'),('��˩6�f/�6YjI\0�W','wp-content/plugins/wordfence/modules/login-security/views/settings/options.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/settings/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f���q�+�fw�\0�','̦bF�C~�u�;m�}�PaM2�,0S,�','',0,'?'),('���=���VKT_LĆ��','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/lodash/dist/lodash.underscore.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/lodash/dist/lodash.underscore.min.js',0,'73t����\n���ލ�\\','73t����\n���ލ�\\','iH�}��~��u�6�Gp���4W�VQ�k','',0,'?'),('��f���� l �K','wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-integration-active-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party/wordproof-integration-active-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')C��%}�PnܠI�','#O�Y�A�mʑi�s.6L)�_|�2�?��+f','',0,'?'),('��r��g4�,`l09','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/SwitchDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/SwitchDeclarationSniff.php',0,'?=��Ok� Ul�','?=��Ok� Ul�','ka�?����\0�%t��7q�+ұ}���C�!��','',0,'?'),('�����c�<[��','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7�קE0�I�qX','mO�⩱X�X�\0E�,Z*��y*�z7;�','',0,'?'),('��MAH���\0�[d_�!','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�,}vĨ3��G��)�','E�r4@\0�ԡ$��z�3�$l��\Z�`i�ex�l�','',0,'?'),('��yc�0O�g)ρ�Mf�','wp-admin/network/site-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/site-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��a���b�c���S%[','��X�Dv�X5��҄�:����,�̪z��j��','',0,'?'),('��U�]R���)Y��m','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�j����0�����9','��\Z�Ҩ2�#��s:�Р\n v��Ø+l�','',0,'?'),('��{�ʽ��܈�gy','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/sync.js',0,'�q�q�!T�Gn�����j','�q�q�!T�Gn�����j','�=q�-\'y n��M2��<j(3,z)T�N8��l_�','',0,'?'),('����Le�h�� ��͢','wp-content/themes/mint/node_modules/load-grunt-tasks/load-grunt-tasks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/load-grunt-tasks/load-grunt-tasks.js',0,'i������.ȁՌm�*','i������.ȁՌm�*','�Uą�=�7�f�h��{��\\�-�P�gc+��','',0,'?'),('�\0�$x�����Cg��','wp-content/themes/mint/node_modules/less/dist/less-1.7.1.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.7.1.min.js',0,'vQmԺYW�S� ��#�','vQmԺYW�S� ��#�','lXR�u�w��q���h�ϊ��v�o?$`','',0,'?'),('���!���k� �� \n','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/number.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/number.js',0,'הb�e�@�ԇk','הb�e�@�ԇk','M���\'O=_&��\\��?|�=X�S���k�iy','',0,'?'),('��5Ǵ.�����ऱ','wp-content/plugins/wordpress-seo/admin/pages/redirects.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/pages/redirects.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1���|\\���nj��y','�W��\"���V� ��1��7��]זD��r��','',0,'?'),('�U|6T���4��\0t��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/dayOfTheYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/dayOfTheYear.js',0,'�Ms�YJ�����X\"�.�','�Ms�YJ�����X\"�.�','M�CCKvs6�3r����R�w@�Ȗ�4��^\\CC','',0,'?'),('�7p)���6��','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-url.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-url.svg',0,'x�p�j�\"��X�1�','x�p�j�\"��X�1�','��S�4@�3�B)�̌`�\r�^!p�)�K�AJzQ\"','',0,'?'),('�tDZ%������F','wp-content/plugins/wordfence/lib/wfNotification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfNotification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Ǎ V2�(��dhVD','S�a��Y����gj+|�� ��J��M8��','',0,'?'),('����S��v��~:�\r2','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/perf/small.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/perf/small.js',0,'7q��~�,��r-�=�','7q��~�,��r-�=�','�cJ`�Ju\nY�\'�lRm�\'��M��8���','',0,'?'),('�\nkc��\r�Q�j�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Each.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/Each.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;I|w�F�;�','/DhcEHT��e��\\Q�|��*�i��)��+��','',0,'?'),('�\r7��J��b�U?r�ϴ','wp-includes/Requests/src/Exception/Http/Status410.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status410.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i��L)�)��7�ff}','�B�����R��X�?�� 6E��,n`\\���c','',0,'?'),('�\rd\r}vSQ�>B$��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/startOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/startOf.js',0,'0����[��X:�','0����[��X:�','3v�v�O��ʂ[��t�\"�t����.ɱU�8M','',0,'?'),('���NB�]#\"�]��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/date.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/date.js',0,'�\'o�%�����ɥ','�\'o�%�����ɥ','���w����?*�-����[��n�J���q','',0,'?'),('�z�.�J�\'�|�E���','wp-content/plugins/wordpress-seo/css/dist/featured-image-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/featured-image-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�.� N�|8��b��','�Ī+4c�]�F�� �v�+��D��E&','',0,'?'),('�#��>WSB��[���[','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/choice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/random/choice.js',0,'���iE��m���d\n�','���iE��m���d\n�','1���N�Ѣ#{j���w9?(�\n{ưy��g�7','',0,'?'),('�1��-ٖ�4��1�EH','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseRepeat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseRepeat.js',0,'_�~��ڀ����F��','_�~��ڀ����F��','�O��)��c7��g5�\Z,}B�Y1��u�&�','',0,'?'),('�1��ϣ�����I�','wp-content/plugins/wordfence/lib/wfImportExportController.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfImportExportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����������+>��','�dlы۹`�������J���#|i{�','',0,'?'),('�6�<�#�[�$�(','wp-content/themes/mint/node_modules/bower/lib/node_modules/q/queue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/q/queue.js',0,'#���H�V��5���_','#���H�V��5���_','�40~LX��B�n�Ϊ�I����g1wD��^','',0,'?'),('�<��|~E.�Y^�!�]','wp-admin/js/widgets/media-audio-widget.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/media-audio-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n��tw|茇^��\r�<K','d�^2?P���F��~���>����ݾ��m','',0,'?'),('�?�\n5��H�?����','wp-admin/css/customize-controls.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/customize-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����z�o%^P��0�','�=St�|[Z*2�C;�ޒ ֘k/�F\0�I@ �','',0,'?'),('�Gd�d́�����`�w','wp-includes/assets/script-loader-react-refresh-runtime.min.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/assets/script-loader-react-refresh-runtime.min.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0�!�j1M/>��?','�V<���#Y�&=�z;���I�0����Nlz','',0,'?'),('�G���j{\'��$���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/zipObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/zipObject.js',0,',�b.ɗg���[�xJ�',',�b.ɗg���[�xJ�','�rU.��ì-��i�cQ�~ ;�ΌW�x��','',0,'?'),('�JO+�K@�<�;�N�R\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mapKeys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/mapKeys.js',0,'�\\�e��MM�K;','�\\�e��MM�K;','pf;�\0�`SE��X�m�<��Q��sy��B','',0,'?'),('�Jx���+�`�̤LQ��','wp-content/themes/mint/node_modules/grunt-legacy-log/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/Gruntfile.js',0,'��O��^�H\r4�e','��O��^�H\r4�e','���N�I@�\\��K8r`5�9�xgU,�','',0,'?'),('�S�v\Z�9�:Ɋa','wp-content/maintenance/assets/images/facebook.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/maintenance/assets/images/facebook.svg',0,'�7�^�H^h>�y9','�7�^�H^h>�y9','�.E�����{�rH��-Nq������\n�37','',0,'?'),('�UD�Ğ�;��(Ǩl','wp-content/plugins/wordpress-seo/inc/class-wpseo-content-images.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-wpseo-content-images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v1�+*Z�|�:','����±�2���S%P��CpKy�����s̞Z;�','',0,'?'),('�W6�+����`��','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/search-replace.92ae08a9.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/search-replace.92ae08a9.svg',0,'�gz��9�69��^(V�','�gz��9�69��^(V�','�{G�\"`�n��[+��]�*.�J�O����','',0,'?'),('�Z����R�����','wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Wem�n��q!ZK.BE','���[�os�yTG���I�Aت\"z�l Ϫ��','',0,'?'),('�Z�b=��_�m:8_�','wp-content/plugins/envira-gallery/envira-gallery/lightbox-themes/base_dark/images/audio-on.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/envira-gallery/lightbox-themes/base_dark/images/audio-on.svg',0,'Y�Ъ�v/B�c� ����','Y�Ъ�v/B�c� ����','Nb.��\r/L\r_}��3I7hnx��Я0���2m\\','',0,'?'),('�a��3-�s�?a���>�','wp-content/plugins/wp-optimize/vendor/composer/autoload_classmap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4�\"<��p��5mV�|','��fh(�\'鲳�Sy�����c <�j+S!�','',0,'?'),('�s�N�`��X���3��','wp-content/plugins/wordfence/css/license/response-variables.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/license/response-variables.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�uM��_�Q�SJB���','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Comparator/Comparator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Comparator/Comparator.php',0,' �4��M��L��\\�02�',' �4��M��L��\\�02�','���Y�c�G��Qp��W�:7�#Wȇ�cc','',0,'?'),('�wB~~�����BP�8','wp-includes/blocks/post-date/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-date/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3����٦>�L�\'','����?��a�h����Ɩov���5nh','',0,'?'),('�y-L9���4�Ih','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/search.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/lib/search.js',0,'Z<�Bp���)|Q�','Z<�Bp���)|Q�','���U�a�B�<�9(]:��$�;^3�T�','',0,'?'),('�yy���g�$es�ZG�','wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/src/LocateBinaries.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/src/LocateBinaries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5��.���H���c��0','���G#���F�9��g��8(����J�#dd(�','',0,'?'),('�y����!7�\Z&��|','wp-content/plugins/wp-optimize/vendor/composer/autoload_psr4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S��<�f��{ia��t.','6o�ӫ���]���L���J*��Տ��]�V+','',0,'?'),('�|c��*\ZÒ�*���','wp-content/themes/mint/assets/vendor/modernizr/test/js/lib/polyfills.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/js/lib/polyfills.js',0,'�Wy�n/:I�Ƒ�~ ','�Wy�n/:I�Ƒ�~ ','�_X�TL�����7Ym��t� ��[O\\���� ','',0,'?'),('���[,[�`�Orտ�+','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-util.js',0,'wr��Ze�`�%��','wr��Ze�`�%��','��+��B�l`A1�����_t\Z��kݶ�_���','',0,'?'),('���vU�GU`��; +�y','wp-content/plugins/wordpress-seo/src/presenters/admin/woocommerce-beta-editor-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/admin/woocommerce-beta-editor-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_��HPw\n�,]�R','��o|-�\nWi`�q�s��xp��O���EX�����','',0,'?'),('��8�8��_ fl<DfL','wp-content/themes/mint/node_modules/bower/lib/node_modules/nested-error-stacks/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/nested-error-stacks/index.js',0,'X;�jX� �fT�6','X;�jX� �fT�6','�qAH��xCT7m�Յz�;,;�7�PzA��','',0,'?'),('���il,�fD�۵','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/keys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/keys.js',0,'���&�?v�T�ro�','���&�?v�T�ro�','<F{����v�G��K#�/x��ա�@��','',0,'?'),('�����juGCtO���','wp-admin/css/colors/coffee/colors-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/coffee/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����yd��T�/.l','�\\�n)ʼnN6��=h�j�~�X���H�)','',0,'?'),('��O����gqp(�9��','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('��l�.H|S���{��','wp-includes/js/jquery/ui/effect-transfer.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-transfer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@��h*��kA�i','ne^�P!���y��F1.}.\\\'����Vv','',0,'?'),('��a��s��O���ʻ','wp-content/plugins/wordpress-seo/src/integrations/feature-flag-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/feature-flag-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���xR��\\��-','�#�?t\"�_��� ��I:\0\n���a�[�\"�','',0,'?'),('��ͅՃX�?VdSK��','wp-content/themes/pinnclonesmalltest/resources/assets/scripts/customizer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/scripts/customizer.js',0,'/��3�,��E�I�N','/��3�,��E�I�N','M�2�Y7\r߅E����0N�c\r1)k�c�/r�','',0,'?'),('�����Hf�=>�-�J�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-overflow-scrolling.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-overflow-scrolling.js',0,'�ż<]p]&x�.<','�ż<]p]&x�.<','�UI�|0/Ҹm��_�W����kp�ws9�Jr','',0,'?'),('�������~e/�!','wp-content/themes/twentytwentytwo/theme.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/theme.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��.����0���ֿ\"B','�\":M)�2����_�YK��NK%[��xn�!��','',0,'?'),('���ISU`u���T��F','wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�{�bOs�_a��>','m�n5��ߐ֞βgJ�\\�����3�����','',0,'?'),('���,��3p�BJm�A','wp-content/themes/mint/assets/vendor/jquery/src/css/support.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/css/support.js',0,'&�$k[���T*w4','&�$k[���T*w4','E��-Ac�B2u������0c���2=��Xҵ\r','',0,'?'),('��Md&�LYpp��:y','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Logger/ConsoleLogger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Logger/ConsoleLogger.php',0,'� o͊\\��rcIKRTVK','� o͊\\��rcIKRTVK','��U�r�( N����=�B�C/�a��\\-�G','',0,'?'),('����З���e�DqD�','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php',0,'��=K���;/��Dxw','��=K���;/��Dxw','T�K�� <:*�W%%���c���{�I-�K�P�','',0,'?'),('��w7`ͭ��g�+|�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_listCacheHas.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_listCacheHas.js',0,'������fI��.��庹','������fI��.��庹','�(v����P�^�<!\"���#��I3�G�.V�','',0,'?'),('�֘]�nI�p$P=��m','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php',0,'@���Sj�R\\�4�','@���Sj�R\\�4�','^�3z�66���n�/��]<��j*�`��Ē/5�','',0,'?'),('��S%�ќ\"��r�!�','wp-includes/blocks/list/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/list/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.`K�.R�!��_�','b�\\Fa�]�r���:\rJ~�;W��\0�P6�ruC','',0,'?'),('�㖡g�\"���:��','wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/3/select2.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/3/select2.min.js',0,'o�7!�/h������','o�7!�/h������','X��ah�ȦBؙ�\Z��aj�q�Ӎ���g','',0,'?'),('��7ffœ�X>�3�)w','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/firstChild.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/firstChild.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W6�`����/-�!e�','9�?���Sa���G�¾G��~-@\Z�_�4}o','',0,'?'),('�藡hU_ Vw�2�[','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nextSibling.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nextSibling.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N5�}K5k�$�6�b','&jB��\'��\"$8�S�0܃f~�H7 �a','',0,'?'),('�궑2vCdU�r�a�','wp-content/themes/mint/assets/vendor/jquery/src/css/var/rmargin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/css/var/rmargin.js',0,'���|��d܁�r��_4','���|��d܁�r��_4','�P��Ū�G0�3I�ݸ����(�%�{9Y��0_','',0,'?'),('��\ZH��m%�]�w۬','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G��+>�W�&8\'KgY','��u�:@��ܞ��(��5�\nT�y+�?�=�,�,>','',0,'?'),('�������G��','wp-content/plugins/wp-optimize/cache/file-based-page-cache-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/cache/file-based-page-cache-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5�����c�3��','��3��UY\\Q*�χ6�k�fq��O�1ϑR','',0,'?'),('��Q\n*%-Y�+�z','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/File.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/File.php',0,'��hZ.h��ҵ9�.','��hZ.h��ҵ9�.','J�gϯ�t��*���맊�iUE�U���','',0,'?'),('���5V�\"MZ�tVe','wp-includes/SimplePie/library/SimplePie/Sanitize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8��c���[\\;=E�','�~�)J�@@ؓ����3�>.��X!~\\����8�','',0,'?'),('�=>G�e����n/Z','wp-content/plugins/gravityforms/includes/settings/fields/class-html.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-html.php',0,'�M�|�Ac�)���q','�M�|�Ac�)���q','J�7�������3Ű��\nժX��|m��','',0,'?'),('���ڔ~�c\r8{d���','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/Tachyons.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/Tachyons.php',0,'|*��\0��U+�=�����','|*��\0��U+�=�����','���U��Y;-�F�?�/�)_z�)G{�h','',0,'?'),('����3�mRۮ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePullAt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePullAt.js',0,'O\Z/�+�(_c�e~','O\Z/�+�(_c�e~','�\'�[��D-Ty1 �hl4�h�A���Cf���z','',0,'?'),('� Td��q�oM[]��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',0,'���6g�O5|�� ','���6g�O5|�� ','p�ns��#d�F$���W͕���(Q���7�6','',0,'?'),('��<*$(�����7?','wp-content/themes/mint/node_modules/clean-css/lib/text/escape-store.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/text/escape-store.js',0,'e�j.{on�}��ɒKz','e�j.{on�}��ɒKz','���`ѭ�p��n�sY\"�\n�ܩ\"�aȭ','',0,'?'),('��!��3WB���F��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php',0,'��p�*P�wk�B�`,MT','��p�*P�wk�B�`,MT','k�hY�GV�U�<�N��B\r�D��W�q�b�','',0,'?'),('�\Zh���b��I','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/array-set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/array-set.js',0,'P��%Il�}�J ͠','P��%Il�}�J ͠','fx��W.��� ��2�i�Db�B$�46��','',0,'?'),('�$��b ���o�&��8�','wp-includes/blocks/button/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/button/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Z��Hn�׳��-\Z/','1[�g��ւ8́���7M�f���e�#��~w��','',0,'?'),('�&$�\'=�����w','wp-content/plugins/wordpress-seo/js/dist/introductions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/introductions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�.��1k���\nU\"��','�O��WN�K����@�� �\"����4���','',0,'?'),('�/� �D|�+G~L��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Util/ArrayConverterTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Util/ArrayConverterTest.php',0,'�d�\0��� {��R�w','�d�\0��� {��R�w','��n�s��\':���ǣ�XN��\Z�&l�.�','',0,'?'),('�3�� i��P���p�','wp-content/themes/mint/node_modules/iconv-lite/encodings/big5.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/iconv-lite/encodings/big5.js',0,'�+#?��! �N�|','�+#?��! �N�|','�]A��\r\r)�AX��z��_c�8�M�j','',0,'?'),('�3���D��\r�ZE�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/info.6957118a.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/info.6957118a.svg',0,'(���Z\"6^ep��h','(���Z\"6^ep��h','`�.��ʻ]Gom�[�ʲ�E.cz.rcl�]','',0,'?'),('�4l�r�$�f��BG�','wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Minifier.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Minifier.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')��EQ�ƻh�3�j$�','5�5������`B����U\"��쩂��E��C','',0,'?'),('�9��s\\�p�X�)H','wp-content/plugins/wordpress-seo/src/routes/abstract-indexation-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/abstract-indexation-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/D�0_V�Qm�>t�','� 7&����]�k�p�&���c7�����','',0,'?'),('�:W���x#�S7>�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/rearg.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/rearg.js',0,'�����TYX �ieQ','�����TYX �ieQ','�>�~C����*�{a,U_:�\r2�b�I�x/,:�','',0,'?'),('�CV��%�����i','wp-includes/block-supports/border.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-supports/border.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a��G���o�M����\\�','\Z�oJ���(�F\"��c[�-9乹\"W���\rb\Z','',0,'?'),('�I�\Z+k!߆�N��j�','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/whitespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/whitespace.js',0,'ʡʼn�*��Av$q�̹�','ʡʼn�*��Av$q�̹�','�\0ܐ�(�z�ڋk=[#q�1�Z�l��$\r���','',0,'?'),('�J�ݟ���%j#Ҥ1�R','wp-includes/blocks/site-tagline/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Nd�c�����/�.','��g\Zf�Ȅa���� x��T��D&?�<�','',0,'?'),('�Mn_ ����\\��j*','wp-content/themes/mint/node_modules/bower/lib/node_modules/isexe/access.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/isexe/access.js',0,'o�W�H���8H�ա�','o�W�H���8H�ա�','�H�Dŧ�_Z���ʙ �G�]���g��c� n','',0,'?'),('�[H#Yv�a^��\'��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/array3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/array3.js',0,'�d�̼�z�����@�','�d�̼�z�����@�','�.4��,\r��ړ��cݎ�Q�:�W�s�&��','',0,'?'),('�b)q����UCm��\Z','wp-includes/blocks/comment-edit-link/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-edit-link/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':��S6����0 �iEo','��Oo�*/ѷ�8�?�/hh���\'�*��','',0,'?'),('�b���T�N�K����z','wp-content/cache/wpo-cache/juiceelectrical.co.nz/about-us/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/about-us/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�s��t��p��j�','wp-content/themes/mint/node_modules/browserify-zlib/src/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/browserify-zlib/src/index.js',0,'��U,hY!�Nn�/F1�','��U,hY!�Nn�/F1�','�\0����9ƺ�*4-�I�0#���ҳ����F','',0,'?'),('�x��G�m�P̟�-O�','wp-content/plugins/wp-optimize/images/notices/logo-bg-notice.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/logo-bg-notice.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��� �}>ʠ���h�','���s�\nE����o�K`��&���UOJtMA','',0,'?'),('�y(C��\Z�a��}ڦ','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/times.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/times.js',0,'E�4�a���[��z','E�4�a���[��z','�y�������������+g�;v��q�z�o ','',0,'?'),('�y���Z\\G��yh\r�','wp-content/themes/mint/node_modules/grunt-modernizr/lib/modulizr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/modulizr.js',0,'�2��ii�Qa��i','�2��ii�Qa��i','�R��}�~�0�H��!;P2x>�c��,','',0,'?'),('�} �yT��Z�H�cDJ','wp-admin/js/custom-background.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/custom-background.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|+T��GTt��\0','�r�B~�<W5�9���[;]�ޓ5S��D���','',0,'?'),('�~@�����fX2ص','wp-content/themes/mint/node_modules/bower/lib/node_modules/lockfile/lockfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lockfile/lockfile.js',0,'L{�� a�P6�9���x�','L{�� a�P6�9���x�','�w���M�d���z!��|�4�O��>�','',0,'?'),('��� 5�b+ƟxW���','wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/output-engines/class-php-markup-output-engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/output-engines/class-php-markup-output-engine.php',0,'��3��}MN}�����\\','��3��}MN}�����\\','S`\r�HMY��syJc\"Ϫ�odm�I � �','',0,'?'),('����ZK�*%���','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���* ���*�))��]','F -T]MN�\0�H�S�Ʈ�cϯ���G\0���','',0,'?'),('���x���Ȁ��[','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/camelCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/camelCase.js',0,'e�R>�G�Ŏ{4�','e�R>�G�Ŏ{4�','g�54`��h���t���W����d�bx!�(J��','',0,'?'),('��32�u�g�f�Qe,','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/listener.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/listener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\�1oF�vb�)��','�~M?t�ϏD\rC6y���5\rE�� ��9','',0,'?'),('��l�e��$��<+���V','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/gl.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/gl.php',0,'���P����ʿ��j�','���P����ʿ��j�','\"\r]��Z��m�Y\"��,�Y�_Y\Z��O�v�<','',0,'?'),('�� tb(1�H�db�4','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/merge.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/merge.js',0,'H�����%\r%TIqr�q','H�����%\r%TIqr�q','�VFhVS�\\�\Z�^�ɟ�L�!\0�HIQ�������','',0,'?'),('��y9`���f��C�#','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/ror.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/ror.js',0,'���ٲ�Z�d��,�','���ٲ�Z�d��,�','K��c\'�D�y�0�V���D>�=�,ý�e','',0,'?'),('��ݱ٣�3����s','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/settings.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/settings.js',0,'�QF)����oA��\'','�QF)����oA��\'','8\"Qկ!�gz^#�&- �~��`=65J��','',0,'?'),('��{�0l(Ʋu9,wS�u','wp-includes/js/media-audiovideo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/media-audiovideo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǁR_\"7�-�\ZŠЧ@','d8������J�_X�C�^U\r 2.\\�/�Q�X�','',0,'?'),('���tg�۞T/��U','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-source-node.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-source-node.js',0,'��q��6�1y�M�3�','��q��6�1y�M�3�','}Z�7~��v!~��\\oyF�����nٹ\'�5�K','',0,'?'),('��m�����ĥ���2','wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/nocase-nomagic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/nocase-nomagic.js',0,'\'\r������:)�֪��','\'\r������:)�֪��','*�G�$�g�|q������$�U�(9����Y','',0,'?'),('��\Zn��Ʊ��Q;U�','wp-content/plugins/wordfence/js/jquery.colorbox.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/jquery.colorbox.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(O�0%6�9�e�3�j','{�L�#�\r��]�\ngL8P,���@��Ir,{ �','',0,'?'),('����A��3x}�ZPs','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/parse_modified.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/parse_modified.js',0,'�OW ��{���','�OW ��{���','ۤ.S��8��\Z}X���R�dC%͆�u��DQ','',0,'?'),('�˗!����`��N�,��','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/PhpExecutableFinderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/PhpExecutableFinderTest.php',0,'n���`ʜ�$��+��','n���`ʜ�$��+��','�궩�8�:��\"[���C�h��Em��@��*�','',0,'?'),('��\\5�Au\'-X0�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findLastKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/findLastKey.js',0,'1DMp��#Ԡ[��Н','1DMp��#Ԡ[��Н','K2���]�z7`\\\n�K�b���>1�&l�\0+��','',0,'?'),('��o�(wtV� �\r�!','wp-content/plugins/wp-migrate-db-pro/vendor/symfony/polyfill-ctype/bootstrap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/symfony/polyfill-ctype/bootstrap.php',0,'���|�\r~m;Fk�:','���|�\r~m;Fk�:','2��O��)��2b���B���+>,ޯ˜�6','',0,'?'),('��)!)�6��>}�74','wp-includes/css/dist/block-library/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ʯ��T�*DJ� �','�>VԭVB��Ń����BR�L���jC��','',0,'?'),('����6����pB��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsMap.js',0,'W��^�fe>CXO\n9���','W��^�fe>CXO\n9���','�&���Ě�iT�g6��FN�e��Hw��ξ�h�','',0,'?'),('��I���\\��հ�N{','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/iframe-sandbox.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/iframe-sandbox.js',0,'�& ��}�1����5�','�& ��}�1����5�','YR���J:�k��c�Ie��>m2\'�\\|Υ�','',0,'?'),('���L��V�Y��*','wp-includes/js/plupload/moxie.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/plupload/moxie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���h�j���b�(','�x�T� Z�������$ ���\Z\n�JC؋(��<','',0,'?'),('��a�wy/t�{`O��U','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/max.js',0,'��G�3iq �뵟D�*','��G�3iq �뵟D�*','|�b��:ע��ibN�?-П�#F:P��zH','',0,'?'),('���P�f~�.#N�j�Z','wp-content/themes/mint/node_modules/is-finite/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/is-finite/index.js',0,'Sg�yND�)�&��\r[','Sg�yND�)�&��\r[','Mv�7dĞ��$*o6���Dž�ʢ��ٚ��D','',0,'?'),('�\ra�nN&���X=.','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-button-group.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-button-group.svg',0,' �ͧ�N�\'QtY���',' �ͧ�N�\'QtY���','�.P�?E�X��%��;��b�Vk��{���','',0,'?'),('�n-=*n�$ȳ�ˑ','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-string-config.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-string-config.js',0,'�8(\03���w�c�s�\"','�8(\03���w�c�s�\"','U.:\n��a/�����DM����\n}g�{k2O����','',0,'?'),('��<qɃ��I�@�o^�','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-exec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-exec.js',0,'\'�fշ\"���%��','\'�fշ\"���%��','�M�#\0\r�q�R�,�$�K�v4,LY\' �zzd�','',0,'?'),('�xbNeH���S�`3','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/ConnectTokenProvider.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/ConnectTokenProvider.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>�!K�c�*zn6}�3c','#�>�~���ֶ�(W�� 뮿G��Z#x��','',0,'?'),('�\ZTp�qj -u�)L9','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue21.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue21.js',0,'��/!C����Q��.8�','��/!C����Q��.8�','W ��W�|�ۤ\\�}�$d�,)sPEM6�6','',0,'?'),('� �A$ۤfC�N��37','wp-includes/query.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��E�1 ab�z0S%','P���f�]kZ��t�l�`Ä����W��5�','',0,'?'),('�#G�=JS$�8�\r�','wp-includes/blocks/loginout/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/loginout/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�nm�%H��L�zd��7','Xr�a!�Q{Q<N{��\"�۷Wt�S�g�,�','',0,'?'),('�(���ה�W�h@=a','wp-includes/images/smilies/icon_mad.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_mad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�!�@�c�0�S�','�������d[O:LJ�����jl}�q�','',0,'?'),('�)��X�,m�j��T','wp-includes/blocks/post-content/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-content/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�)��ej��','����<w��c�%dU�.��^qs�Fk�y�','',0,'?'),('�.i��*��_�d(�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/xor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/xor.js',0,'�d��,�k�8$���Ca','�d��,�k�8$���Ca','��WV��Ds�go^��\"ʳ�>4�y��Ql�p?','',0,'?'),('�7�0���,� M','wp-includes/sodium_compat/namespaced/Core/Poly1305.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qy���?�;�8�V\n�','\0�-��]뮳��XEt)�`��1�C�}Mr2�/','',0,'?'),('�8(��:u�ɐY��� ','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/lib/underscore.string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/lib/underscore.string.js',0,'���7�\0\"�3H��9��','���7�\0\"�3H��9��','��G09���ӵ��}[ X6�ڕ���2���','',0,'?'),('�;�*\04�S�;#B��w�','wp-content/plugins/wordpress-seo/lib/orm.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/lib/orm.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$��7��R�%i�S','�d��YϏϚEʣD���]������� �','',0,'?'),('�>:�W��k�/�>R�,�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/faq/0001.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/faq/0001.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Bҽт�\0�','�l N���\Z��!+5�o\r�ע�_C,�0q�u�','',0,'?'),('�C�,ڦ�R1A� X�','wp-includes/blocks/latest-posts/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-posts/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B|�a��@\r@��','����\0�6�[�$�o���i���5�u�+�k�','',0,'?'),('�E�H���!���h�<y','wp-includes/blocks/site-title/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-title/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��G���M��\"��t|','��` ��\rp�J��Ɂ�6ې���\Z��[��2k','',0,'?'),('�G�<Ȅg��� �\04 ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/functionsIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/functionsIn.js',0,'|~��ل��ӕ�~�EI','|~��ل��ӕ�~�EI','@���dA[��&��#h�/M�s� _�� �r','',0,'?'),('�JWC<��Xɜ����','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/default.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Configs/default.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;a�9��\Z\0��^kpN�','��W�,\\܆�Bw�cj|\\��:3dy�ؖ���','',0,'?'),('�MoO�f=���|;)?','wp-content/plugins/envira-gallery/src/Legacy/class-envira-gallery-common.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Legacy/class-envira-gallery-common.php',0,'��.N�ev��N�Yƶ','��.N�ev��N�Yƶ','ч�s1����_s\0�\\�rQi;��{\"愹�','',0,'?'),('�V!r@���;:h�V','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/abbreviate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/abbreviate.js',0,'����gGj��9���','����gGj��9���','��U��j=@/��j�Z.Q�]�I���L','',0,'?'),('�V�J~z�^!6{���9','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createPadding.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createPadding.js',0,'�m&t\\%ӗ;<�_�`>','�m&t\\%ӗ;<�_�`>','���S4�o��%����G�{��r6>F\0_K�hS�','',0,'?'),('�a�|��WP�)���g�','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/InvalidVersionRequirementMessage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/InvalidVersionRequirementMessage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ƣ����Ee\0N\\','��]�pd��0\0nsj��>i])��A2��˵��(','',0,'?'),('�g\Z��\\�\r�`=�m�','wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�#%��Z Ѧ� ','P��;�X]IR�V^4Ƣ\n&���h���˱w','',0,'?'),('�i���B�j����]','wp-includes/sodium_compat/namespaced/Crypto.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G8�J+�� ��z','>8���\'X�i�Ub�Gн�,<T`6��4Ѝ�','',0,'?'),('�o`�B�+�L(�F��gD','wp-content/themes/mint/node_modules/bower/lib/node_modules/json-schema/lib/links.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/json-schema/lib/links.js',0,'N>oz�E��C��','N>oz�E��C��','w�,VLZ�j47�Bǘ�bΞj�v���Ezͧ','',0,'?'),('�qc�����p�k�','wp-content/plugins/gravityforms/images/template-library/WebinarRegistration.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/template-library/WebinarRegistration.svg',0,'i�\0L����ݱ�i�$','i�\0L����ݱ�i�$','S� ��2�����a^4(��\r��(�Y�|iJ�','',0,'?'),('�q���{E��%','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/XCache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/XCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ml��7wK��k��.�','l� :��\\�_$�72@T7�Ș{�q��]��2&','',0,'?'),('�t��ai�Γˡ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/restParam.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/restParam.js',0,'�~�orT�o���N�','�~�orT�o���N�','��ܭ�����%���=6I�܄ٸ�P��<wws','',0,'?'),('�u��Hh����G��','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ka_GE.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ka_GE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ݬ��t;#�ی׳','�v^�܊��Vy�(�T��gB}��muUU��(�','',0,'?'),('�}C|��Ze�4 �K�[�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js',0,'L`�gP=����%n�D','L`�gP=����%n�D','F��!���,nƐ�SH���B�^M�:(�','',0,'?'),('�����j��\\�wEE���','wp-content/plugins/wp-migrate-db-pro/class/Common/Http/RemotePost.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Http/RemotePost.php',0,'g#7d������n����','g#7d������n����','Tq.�?�`E�|���+��� (�U�g��#��|�','',0,'?'),('����v���ό�Y9�','wp-includes/ID3/getid3.lib.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/getid3.lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e]���`Te,-��(�T','�+�ǏY5S�,���jG�h1�D�X��̞*�','',0,'?'),('���6V��++&��F','wp-content/plugins/advanced-custom-fields-pro/includes/fields/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('���-�h%�Uf�}��','wp-content/plugins/akismet/_inc/rtl/akismet-admin-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/_inc/rtl/akismet-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"M�w[ɿj��F�\0_','Rd�n�CR\\�z�1h벌t�m�V�`��܍v','',0,'?'),('��\"�z�+���','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/TPF/ThemePluginFilesAddon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/TPF/ThemePluginFilesAddon.php',0,'�.Es)^�?hc�6��*','�.Es)^�?hc�6��*','h�Z���L9m�8��ݙ*��ˮ��քٝԉ�','',0,'?'),('��S��0�=���cF��','wp-content/plugins/wordfence/css/license/care-global.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/license/care-global.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�kK�.�Ǵ�U��^','2�Ʋ�v{\"S��=��^!��W:C,OJ�e:�9','',0,'?'),('���b���*���.e�~','wp-content/themes/mint/node_modules/shelljs/src/popd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/popd.js',0,'�\r3��D��o�+b>','�\r3��D��o�+b>','�ӹj��n�ek�X��q��|h+8�/�ww�','',0,'?'),('���X����H�o�v�','wp-admin/css/common-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�/��h��U�_(`�','>WZVoHu�+5<척�<��T,\Z}�$�nJ','',0,'?'),('��!N��D�w�`��[�','wp-includes/js/jquery/ui/dialog.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/dialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��vnI��`���uI�\0�','{P�G�/X^_7G:P�q�zi���@V��ay�','',0,'?'),('��� ��Јx�ͣ�x!','wp-content/themes/mint/base.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/base.php',0,'jE/��ף~��$�','jE/��ף~��$�','��NOuf��2Á�{�d�t���G���','',0,'?'),('���Xp����~0D','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�oe�~��oB2�_;','5�q��SrL�]�OX����sq����+l<��ɒ','',0,'?'),('���T���>{��9p�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flow.js',0,'οV�!1X�D��ya�s','οV�!1X�D��ya�s','�ݲ?��Q�m�ΰy�y���d���;�Vd��','',0,'?'),('��֗]NR���S{qv?�','wp-admin/css/wp-admin-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/wp-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',*i����[p]��<','r5S�E�?29/�)��_�PJv�Vh���R�','',0,'?'),('��\Z,z���Ґ�U�','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O��:�\Z/�V��y[','��.h�t�ϋ�MyV�&!�17� j0�J','',0,'?'),('���m&:f�6�T1�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/MethodScopeSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/MethodScopeSniff.php',0,'����n��|=GͳDv�','����n��|=GͳDv�','��8Z�̙�m�%b�*�}rM٦a��LR�9z','',0,'?'),('�Ǘa�)�-�W5E���','wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/IncrementalSizeController.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Files/IncrementalSizeController.php',0,'v�.��3)^~�<la�','v�.��3)^~�<la�','M$�՟��ޡ������Z{���\'@Ъ','',0,'?'),('��(7�jf���$\Z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/union.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/union.js',0,'�L?�~��^����^','�L?�~��^����^','!�ڻ{��pwfa��M�-=r�+�w� ��ZI4�','',0,'?'),('�ρ�@զD�:�Q�M','wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/examples/beep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/archy/examples/beep.js',0,'�\'\n�Y�6i�\Zn��','�\'\n�Y�6i�\Zn��','z��\\]\\\r��c�[��}���Ċ�x���','',0,'?'),('��A�ݶd�3�:��/','wp-content/themes/mint/node_modules/clean-css/lib/images/url-rewriter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/images/url-rewriter.js',0,'\r�z\nu�N��$Bog�','\r�z\nu�N��$Bog�','^ S���#�s�E-=�Fh��g��a^�,�','',0,'?'),('��Z�(����\'e�!','wp-content/themes/mint/node_modules/bower/lib/node_modules/generate-function/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/generate-function/index.js',0,'Gf6�\' �d�o��p�','Gf6�\' �d�o��p�','B�8�^qF��)����i\Z��<B�ϭIT#N\Z��','',0,'?'),('�Ҫ��n��!��Hw','wp-content/plugins/envira-gallery/assets/js/lib/a11y-dialog.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/a11y-dialog.min.js',0,'0�T�����/Ӂ�k�','0�T�����/Ӂ�k�','�@���D\0��F��e�����y.��$��','',0,'?'),('��p��T6�8�+�Y`�','wp-content/plugins/gravityforms/includes/addon/class-gf-results.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/class-gf-results.php',0,'��uJ�jZ����D)','��uJ�jZ����D)',']�7K`+��\"S-աQ��*��%�\Z6쌁PgS','',0,'?'),('��|��\\ˌ��j��\\�d','wp-includes/js/dist/vendor/react-jsx-runtime.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/react-jsx-runtime.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g0�x��D@f���c','�+���;t���������o>|II��I�� ','',0,'?'),('��<+>g��C��Z�ʈ','wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-upgrade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-upgrade.php',0,'�!�(Xq�J.wQ�','�!�(Xq�J.wQ�','ְ��˖�t��\0Z� ��k+o`�_&�t�Pר','',0,'?'),('��\"\0#z\r����F(j�','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\��VwƢ�C(Yc��','����R�we��Q��yTi�]=?-��f','',0,'?'),('��O$8��J�e��','wp-content/plugins/wordfence/models/scanner/wfScanner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/models/scanner/wfScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#��\"\Z*T0��؟�','9v\r���^J��M��M�c��Gŗ�����','',0,'?'),('���g�%=\rDG dΣ','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/Template.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Templates/Template.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ǒk���XK<?�N�','�3�5�.�=�XA�oJ��Y5(~<��S�','',0,'?'),('��*v�<�TC�U�XJn','wp-includes/blocks/column/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/column/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���9���Dx� R','�W$��d��U�UTބ�TbpS��~��Z3\"P','',0,'?'),('�V�܂0\0U�`�5C>','wp-includes/css/dist/components/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/components/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�ѕK~S4������','�[�u;:+�T�t�^��r�OI�L���1_$�','',0,'?'),('� \Z��E�� �:�','wp-content/themes/mint/node_modules/source-map/lib/source-map/source-node.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/lib/source-map/source-node.js',0,'�͖E�INc;���i','�͖E�INc;���i','����\r:%(���d��*�ɐ��8A�5����','',0,'?'),('��=������D�','wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/keyword-analysis-disable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/keyword-analysis-disable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a��\rp���P� r���~','�Q<�;Y^�w\n���j\rCN���\Z2��4��t4','',0,'?'),('�\Z�/� �}���+','wp-content/plugins/wp-migrate-db-pro/frontend/build/noop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/noop.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�\Z� �R����[�\'�>','wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�\\c7�y�x�гl','�~��qV����*\'�1�����]3�^�����m','',0,'?'),('�����[ے��f�','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/mock_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/mock_sync.js',0,'�#ËEb%�ޛȎ�n:','�#ËEb%�ޛȎ�n:','�yQ�$5�qB+�<*�1H>�H���n~�\"�*','',0,'?'),('��FS��|AЭ�\\��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/difference.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/difference.js',0,'�>�/�>�H����','�>�/�>�H����','�N!Lr9����*�-l��c����S_�or\n�','',0,'?'),('�\"PT�D&X���lr7 ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/hasIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/hasIn.js',0,'�`�l?|�kd~黵','�`�l?|�kd~黵','BSykH��Op�ƣ��d�)\"]?���ˏ���','',0,'?'),('�$�����j�X�])D:','wp-load.php','/home/adaptiv2/juiceelectrical.co.nz/wp-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Aؔ�g�����\0p�','������G-�`+�\r������7��G���','',0,'?'),('�,�\0.���LjN�E�@','wp-content/plugins/wp-live-chat-software-for-wordpress/changelog.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u6VL)��m�Á���',',J��`�����R��e��)](..az~�','',0,'?'),('�0�>c�AL��G39','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-nl_NL.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-nl_NL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P_��D��9s.�D��',']�Sn����6�)5��q��n�1m��\0 +�v','',0,'?'),('�2�\\�17Հ�wi�{','wp-includes/js/dist/vendor/wp-polyfill.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/wp-polyfill.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&]G��܉�GG*�8Q','�*<W��p�};�$��Y����������','',0,'?'),('�>L�+U �xG�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zipObj.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zipObj.js',0,'�ЧR�2�3?�5f��','�ЧR�2�3?�5f��','�M�\\�gy6�;GUF2LV�1�H�S�-���`','',0,'?'),('�>���*�#%�T>��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_reEvaluate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_reEvaluate.js',0,'�\nO���2��\"J�.r','�\nO���2��\"J�.r','�}�\Z��}X\"��ǭ|=1�Fˉ�s��t','',0,'?'),('�@��Ĕ�l!$�F�\Z~�','wp-includes/blocks/code/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/code/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\JNPT-�7����]�','���<�/��lU0*ߥW�$V����vC]���4�','',0,'?'),('�CKwF�i��2�zP��','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-search.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-search.js',0,'���|ۑ�&���s�','���|ۑ�&���s�','����d�23FYVs�d���IS���2~���','',0,'?'),('�H�)������jH�j','wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@��ˊtr����u\'','#�_��\n:8a�D��ؠr�٪����2/�ߘ��','',0,'?'),('�NK���}úl�����','wp-content/themes/mint/node_modules/lodash/lodash.underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/lodash/lodash.underscore.js',0,'?�����\Z�ʁ��V�x','?�����\Z�ʁ��V�x','%뻮�2����Έ䐒�M�غ^�=�����\0H','',0,'?'),('�Nsf�#�@Q;�;�{̻','wp-includes/blocks/query-pagination-numbers/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination-numbers/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P,��#0O�%�<�8�|','qn�i�ȅ�\n��фo3Q۾-NP3NH','',0,'?'),('�O�&5�Iyoh��+�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-oauth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-oauth.js',0,'���l�\r�vk�y�Z','���l�\r�vk�y�Z','�bm�٢K�\06_67������N� #���','',0,'?'),('�Q����Ɗ�Џ�','wp-content/themes/mint/assets/vendor/jquery/src/traversing.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/traversing.js',0,'�=����#9�F���','�=����#9�F���','��̾6���b��*��e��T> �J�=�QM','',0,'?'),('�Q�ti��\0`� �M�','wp-content/themes/mint/node_modules/iconv-lite/test/main-test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/iconv-lite/test/main-test.js',0,'O�]%[�.�U[�P2\ZK','O�]%[�.�U[�P2\ZK','��);ܹ��j�u�I�(� ��kp�K/r�','',0,'?'),('�R��@�W�>-�PY�x','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/unicode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/unicode.js',0,'�h��ϧ����<��0�','�h��ϧ����<��0�','g�ǔV�E�X����ѐ�ԇ�[�U9�z���R�','',0,'?'),('�TP�Qv�M�8l]V','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-alert-triangle.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-alert-triangle.svg',0,';گ�t4N�ϑTX9',';گ�t4N�ϑTX9','2���\rWASM�,\0?7.�G7�،�,Ѥ�','',0,'?'),('�T�V����nn����','wp-content/themes/mint/node_modules/cli/examples/cat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/examples/cat.js',0,'��cZ���\\_C�E','��cZ���\\_C�E','�ψfNi�4��\"&: #�C��/�s;�\Z�J�','',0,'?'),('�VkO.��*�6\"���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/forOwnRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/forOwnRight.js',0,'-ψw���~^��3v�\'','-ψw���~^��3v�\'','�Y�X}� \r�;0�@G%M}�k�І�ǤR+�>','',0,'?'),('�YP�����t��w�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/where.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/where.js',0,'�����,�~���','�����,�~���','��h���0FM� r�*DK�/X����i2�7!w��','',0,'?'),('�[$�_���� V���B@','wp-includes/Requests/src/Cookie/Jar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Cookie/Jar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C�n[LM(�','\n����$S����`\'@#����GT��+��w�','',0,'?'),('�^�\\�J����t��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/Installer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/Installer.php',0,'��XW`���Eˮ\"f�','��XW`���Eˮ\"f�','�>���.�\ZU�n_����`�&�^�ZV�B','',0,'?'),('�b~F���}A�ѵ��͋','wp-content/themes/pinnclonesmalltest/resources/views/category.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/category.blade.php',0,';JM,��h-��\0ύ�',';JM,��h-��\0ύ�','�p������s�=S��<�\\��O�;�A��','',0,'?'),('�drv�T�X.�h�Y��','wp-content/plugins/wp-migrate-db-pro/vendor/composer/autoload_psr4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/composer/autoload_psr4.php',0,'+s.Y����,��# �','+s.Y����,��# �','F%^�\n3}��pעY����-�un�A','',0,'?'),('�iY\Zao�FWcd�o','wp-content/plugins/envira-gallery/assets/js/min/tools-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/tools-min.js',0,'�=_��̮���Lo�V','�=_��̮���Lo�V','��2�B`��iȕ{�e@����:���@A�','',0,'?'),('�j%M�ɍ��p)Z��','wp-admin/images/generic.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/generic.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\'�[#98!�','�{u���K[g͆Ex�{�:��lͨG��','',0,'?'),('�n�@G�n/��\0a<i','wp-content/plugins/wordpress-seo/admin/menu/class-menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/menu/class-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����Y���.u���','+�|�7[�.uQi�冤�6yo-�m,y�,�','',0,'?'),('�v\n�<��߬+c��5�','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/ProcessBuilderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/ProcessBuilderTest.php',0,'��`�ޡ~�C��&Y','��`�ޡ~�C��&Y','�U�\r���T�N���*وЃ�r\"�ܷ���','',0,'?'),('�~�]j2qu�x�s�ʹ','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/getProxyFromURI.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/getProxyFromURI.js',0,'��vcu��oR3�̓�','��vcu��oR3�̓�','��R�\0����5�ͩ���N.�OM\nc�e','',0,'?'),('���|j4��8K�H,�','wp-content/plugins/wordpress-seo/src/integrations/third-party/elementor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/third-party/elementor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jW���r@�+3�','�Gū7��R�$`�p+؇�Z�87�DzqeF�K','',0,'?'),('��:\rrF�&��.��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ru.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ru.php',0,'����fV�>)��#���','����fV�>)��#���','˜S_V���kƔA\n�����Э�žF�Wr��','',0,'?'),('��a��N���谉�{�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/gte.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/gte.js',0,'ELF�K�]{~l/�K','ELF�K�]{~l/�K','�\0�ܛ�f���-�kj��7\\��N��J����','',0,'?'),('��Ӄ3�@\r@7z_kj','wp-content/themes/mint/node_modules/tape/test/skip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/skip.js',0,'�u��a�RK8�a���5','�u��a�RK8�a���5','��.�(��9��V�é&��� S+��w','',0,'?'),('��l ��ARP&�����','wp-content/themes/mint/node_modules/grunt-modernizr/test/gruntfiles/Gruntfile.test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/test/gruntfiles/Gruntfile.test.js',0,'ެ���Y_MTޔ,#��','ެ���Y_MTޔ,#��','����O\0���vb]t��Y��6��e8��','',0,'?'),('��X7�v�_��c�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7��-C1�G�','\\$pv�YN��<3[�@Drn��M�|�t��','',0,'?'),('���|�3�/P�#','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/words.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/words.js',0,'�бl�=�C{}h�.1��','�бl�=�C{}h�.1��','S̐W�a�Cփ��a���M���PΚ��','',0,'?'),('���x���F*s�Xŧ','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/ImageMimeTypeGuesser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/ImageMimeTypeGuesser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������3�.���','�� �V@{�+� �g�����\Z��L%','',0,'?'),('��$\n�e��JSt���}U','wp-includes/SimplePie/autoloader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/autoloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�\0|�:�K�9�^�N','��MP�a@��Ч�S��T�8]^kڎ܉','',0,'?'),('�����r%�2�X�N�Q�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/network-eventsource.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/network-eventsource.js',0,'\ZJ,r��%�&�\'���k','\ZJ,r��%�&�\'���k','wXwl��X�Fy��(F���Es�<!J�C0','',0,'?'),('��^-�6��M<Q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_listCacheGet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_listCacheGet.js',0,'\"�o���*y�O\Z�AC�','\"�o���*y�O\Z�AC�','v�\'�J�<���9��m�D�\\��*�m09�\'a�s�','',0,'?'),('������=6u^�}]¸','wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/title-data-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts/title-data-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r= �m5Fnf���cwK','Q0\r����j4�.���>p��1hCcz;','',0,'?'),('��� ��NZe��3�','wp-content/themes/mint/node_modules/less/lib/less/functions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/functions.js',0,'N�O�o�����_���,','N�O�o�����_���,',',�n�nF�\Z)�9����\Z���0��e��(��I','',0,'?'),('��}oS��j`���','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php',0,'` �=�{��`F�\ZG7','` �=�{��`F�\ZG7','c6�y �)������S�����q![d�k�m�','',0,'?'),('��RKQ�5v�-�� ��','wp-includes/css/dist/edit-post/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-post/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X�e��=-�Ja|','�d+v���g�Kx�$�\r(##�]or��p','',0,'?'),('���#_�m���`5','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issues222_324.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issues222_324.js',0,'��p������\"��2','��p������\"��2','���d ��\Z�\0���w�#�&l�\n��}i�\\f','',0,'?'),('��q��뻣D(���j��','wp-includes/blocks/list/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/list/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.`K�.R�!��_�','b�\\Fa�]�r���:\rJ~�;W��\0�P6�ruC','',0,'?'),('���Լ���)�C��Z','wp-content/themes/mint/node_modules/clean-css/lib/colors/rgb-to-hex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/colors/rgb-to-hex.js',0,'9ug�S��\nj~�K��','9ug�S��\nj~�K��','P�\'�< ����o�sR����o�����2�()','',0,'?'),('���\r��NgH/Ԡ�{�s','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/each.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/each.js',0,'�|�e�\Z��6=���.','�|�e�\Z��6=���.','J�}B�]���c�P���b���@QG�Y!','',0,'?'),('�Ӿ�8�1u���bV�O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/time/now.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/time/now.js',0,'��d��^OP�P�','��d��^OP�P�','|bKvH�n0c� }���Hx1����]Fف','',0,'?'),('���M�3�@)����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/subtract.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/subtract.js',0,'}ed���an��]�','}ed���an��]�','�+v�c��?�+\n���Y��:Y����0�Q','',0,'?'),('��S� � �@���M�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/retryable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/retryable.js',0,'.�f\Zu<��e��=','.�f\Zu<��e��=','��7/je�[$����ר�]t�uz�@6','',0,'?'),('��;(Xp`ҙ��pݷ','wp-includes/js/plupload/handlers.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/plupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sD��e�d�U�W���','�<u���?��6�U�PO��o�;P��Vk%�','',0,'?'),('�⮘�� �F���w�\0','wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kEmi�[����tR���a','X��j/+M@�Dpeϫů/-p�Q0Vɂ','',0,'?'),('��C��+����%�','wp-content/plugins/wp-migrate-db-pro/vendor/composer/autoload_static.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/composer/autoload_static.php',0,'�����1��.�)��','�����1��.�)��','Iq�n���Oa�/�,�u*�ߏ�+y�/��','',0,'?'),('��\'��ʇy��\'� ','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/moisture-condensation/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/moisture-condensation/index.html',0,'��z����@���','��z����@���','�D���$��JidV_M��ވ���J���Л���','',0,'?'),('��I�\\�{�e�,Lf','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/identity.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/identity.js',0,'���Є���~��Y^�_�','���Є���~��Y^�_�','r�F����cЏ`��\n�|7y/3���F�O�','',0,'?'),('��2}���3c_ K[D','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isArrayBuffer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isArrayBuffer.js',0,'H��WSWOkt]��','H��WSWOkt]��','CKɊ��Ӓ�!�(��Y ���`<[','',0,'?'),('��Q��k5X��8��E)�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/DetectsApplicationNamespace.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/console/DetectsApplicationNamespace.php',0,'\r@�L?�XU�Q���','\r@�L?�XU�Q���','���68�%rbFa�~���i����t�]�','',0,'?'),('��\Z���Gub|e0w��t','wp-includes/Requests/src/Exception/Http/Status501.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status501.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������j�N��f','�D��Nif��qJ��?�3+B���','',0,'?'),('��t�0�g�a�/��','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~��-����x\'� ','��{ڋ��N�o��#X�+Xe\'�����_����>\Z','',0,'?'),('��*t�����~�p�','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Tests/Command/LintCommandTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Tests/Command/LintCommandTest.php',0,'��\Z��8�l>�OZ�ճ','��\Z��8�l>�OZ�ճ','DR�7x�M%�*���P\0UUD|j�xE�����dz','',0,'?'),('�\n�qo�qZVyX��9','wp-admin/includes/menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7p���F�|`t��b','�g3]�<����*p�3\0�\n\'���1��6','',0,'?'),('��>�j�o�3��[U','wp-content/themes/mint/node_modules/bower/lib/commands/cache/clean.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/commands/cache/clean.js',0,'6ቝ\n��t�5?�a','6ቝ\n��t�5?�a','�(�����_Z�\0���p�Oy1 ','',0,'?'),('�5y嫸���eB�]�C','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Namespaces/UseDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Namespaces/UseDeclarationSniff.php',0,'����!��5#�G�\r�','����!��5#�G�\r�','˦�k��[Dk�N}�5���Dw2����\ng��c�','',0,'?'),('�Ȼq�,���s$�2','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/expect.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/expect.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZK�2�n�sc�>u�A�','Q��Y�78�S��АlT�F���ȯp�c^�<�','',0,'?'),('�Z�{g�}�f�-��0\n','wp-content/plugins/wordpress-seo/vendor/composer/autoload_classmap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����8l���T�','��P�i��I�f�*��T�N��\r\n��X}Xr|J','',0,'?'),('���}��P��p�����','wp-content/themes/mint/node_modules/tape/test/exit/too_few.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/exit/too_few.js',0,'j��jV��*5�A��','j��jV��*5�A��','�����jmê��%��\'�,i��u�9','',0,'?'),('��Z{_��3�X\0R','wp-content/plugins/wordpress-seo/src/presenters/schema-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/schema-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���l�{�SoH\r{\'8�','9s\ZĐ���Ά9�g\'���`ΐ��-�1�)w!�','',0,'?'),('�&.�N$�\n�މ�YQ','wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Cli/Extra/Manager.php',0,'�e\"�s!����W','�e\"�s!����W','��� KIg?þ���>�q�z�̋�n�J��','',0,'?'),('�&Mcݝ�E��\\�D�Kt','wp-content/plugins/wordfence/lib/sodium_compat_fast.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/sodium_compat_fast.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<�{��\n�]�q�Y','��$�/H�pV�8C��.��z���b��`C�','',0,'?'),('�9� �ɠ�ʗy%�$','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assignInAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assignInAll.js',0,'��n[�e��n>�','��n[�e��n>�','�>�f�\'�.�X�-�^@�[\0w����i�FT','',0,'?'),('�CX��\'#��x:Mjqo�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-gd.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-gd.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'��]XZA��#�7D�','��ff\'`�F�<��9$�;lP�⾗M���%,','',0,'?'),('�K�{�\"�Li���\Z�@','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/rol.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/rol.js',0,'��i!p��>ϦM��Q�','��i!p��>ϦM��Q�','�aQ��X�vxH��� ����}��&��Z�','',0,'?'),('�T5=!}��^�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isEqual.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/isEqual.js',0,'�Y���zѭ��>�&z','�Y���zѭ��>�&z','wx�)K����؋����W���<�-b=-8�����','',0,'?'),('�^�%H=0{��,�c,�d','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.4.0.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.4.0.js',0,'��&��Ѵ�@K7,��','��&��Ѵ�@K7,��','�5���φ��\"��N�:�A \rb���','',0,'?'),('�d\n�?�u.��|��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePick.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePick.js',0,'�݂֢���,�[-�','�݂֢���,�[-�','Z�L퓶2�]0�j��lk|��l�!��C����i','',0,'?'),('�hu�`�����!','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fromPairs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fromPairs.js',0,'�ω��su)gGj8ٜ�','�ω��su)gGj8ٜ�','�]���jY��G���/��|�ᛸ8O�폔�','',0,'?'),('�l�#�u�,�\rΠ�','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-number.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-number.php',0,'%�ҁ�}���2k~�','%�ҁ�}���2k~�','�McwcE�qd��N���5j���P���','',0,'?'),('�urkw�\\�2*u�SC','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Template/BladeProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-lib/Template/BladeProvider.php',0,'V� �nM\\a������S�','V� �nM\\a������S�','���W�E����F�z30d�/�)L���ˎxY','',0,'?'),('�zm%[ؼ��J�P�],','wp-content/themes/mint/node_modules/cli/node_modules/minimatch/test/basic.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/minimatch/test/basic.js',0,'i�\0����v1ʃ%,� ','i�\0����v1ʃ%,� ','K����*�d�س���*�Y3���Lى\nI�K^','',0,'?'),('���S0fSC��_���','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/userdata.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/userdata.js',0,'G4��W��&i����','G4��W��&i����','�����7G�[I��\\����F��u���','',0,'?'),('��1��}��P�D^��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/times.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/times.js',0,'E�4�a���[��z','E�4�a���[��z','�y�������������+g�;v��q�z�o ','',0,'?'),('����k\"�5E�k�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ArrayDefinition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ArrayDefinition.php',0,'b����n���K��','b����n���K��','M! ��$hkF���2s1�\"b�EM�@j(���^s','',0,'?'),('�����B��Ȃ�{���','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetWooCommerceSettings.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetWooCommerceSettings.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\Zl �s!N[�A��@�','�}��Tȱ�C�\0�T �CӋ[����j���<.�v','',0,'?'),('�������H+�3dJ��','wp-content/plugins/envira-gallery/assets/js/gallery-help.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/gallery-help.js',0,'��9��*P%aj���1�','��9��*P%aj���1�','O���=���s��6�]3�������kT0o�91','',0,'?'),('��Ư \'CԻ��ګ\Z','wp-includes/images/admin-bar-sprite.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/admin-bar-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S���:�W���^','��rN!�`VO�c��K��viՀ{Fn\Z��le','',0,'?'),('��4��#հ�}��','wp-content/plugins/wordfence/modules/login-security/views/manage/code.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/manage/code.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_���29,HK���','���\0Ø>�$Y^!L��晚e�z5�G�_E','',0,'?'),('���X�k�7��F��\n��','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/num.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/num.js',0,'<k��*�,�qy~(r?��','<k��*�,�qy~(r?��',')���%�Cˋ\"x�*��v����Tf^Έ��t','',0,'?'),('����l����`b=���','wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-date-archive-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/indexable-date-archive-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�T��3�6q[|̸','\\ӾW��Z���+r0U��k���@e��9t�','',0,'?'),('���>�\0� ���z�\Z','wp-includes/blocks/navigation/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���#ԔY���pgx','��|�*�/~�R\'s��ۆ�\r@���9C�\r8���','',0,'?'),('��n���{@$�v��','wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedRegExpException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedRegExpException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̘�\Z�k�wojT�id','3d�Y��tI�z����a����լ�z�Hj�C{','',0,'?'),('��\"�Z0\0ؿe�Ԧp�','wp-admin/css/admin-menu.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/admin-menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����kg�6��\n�e�','Ѹ31��)xS���Ԗ���kJH�E��U�d��,r','',0,'?'),('�Y��C\\o�7e�N�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/css/livechat-general.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/css/livechat-general.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gL��߱�[+�h6��','X��Bl��\ZƲ��D{���\'~��K2�U��.1+','',0,'?'),('��kekQ/ژM�Aх�','wp-content/plugins/gravityforms/includes/addon/js/repeater.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/repeater.js',0,'Ur�8��A�t(�~�','Ur�8��A�t(�~�','L)�9onh��&/�:z�t5�hd�Yc�s�p�','',0,'?'),('��v}�\\�Zp��,l�','wp-content/themes/mint/node_modules/builtin-modules/static.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/builtin-modules/static.js',0,'�pEu��)�͵e���','�pEu��)�͵e���','R��Qam�rD�~gC�#�\r��1l�=���','',0,'?'),('���<^\0m*A�����','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Formatter/OutputFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Formatter/OutputFormatter.php',0,'�]8�I.�c:%����','�]8�I.�c:%����','Jb��b���o�%���œ�Ĩ�ړh�I�M�','',0,'?'),('����\"8Y��74�O<','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','di�BD�J���D�5�O','N�a���i�B���\r��AO]���@�P��','',0,'?'),('����x8[!>�X','wp-admin/includes/class-wp-users-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9��&g�w�ul:��','��K.�l?�;?Vk�oG 9�/�t`��Rx�x','',0,'?'),('��ɏ�{1X6ҏx�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Dumper/ObjectDefinitionDumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Dumper/ObjectDefinitionDumper.php',0,'k�s�%s���8��:2','k�s�%s���8��:2','|�}���Y!��W4�xl��IW�oҹC?�&','',0,'?'),('��X�W�>�����vAF','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isSymbol.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isSymbol.js',0,'��G�u�z6{��f�','��G�u�z6{��f�','t� ��B\n��|�F�2�uh5�\n9�\\��E��','',0,'?'),('��6�<�R���JJ�','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����#��ٍ���74','�S�P��\0T�\"�q��1�������ϸ\0\0�J','',0,'?'),('��7.4�<�����}','wp-content/plugins/wordpress-seo/packages/js/images/edd-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/edd-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\'���T�_�','PiO�ޓR{�z\"�\n2��Ed+���ey���!5','',0,'?'),('��Q����{��\"R','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Facades/wordpress.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Facades/wordpress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D~y��V��ڷ��p{��','6�xI~�C���i;ۖ��$�9���A4��qr','',0,'?'),('����G�#)uol','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/minBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/minBy.js',0,'fs�+ۃ0�#\ZRK��','fs�+ۃ0�#\ZRK��','�k�g�;�kk��:��+�>o��FQ�d#M,','',0,'?'),('��q�:�i�{�R �','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/prop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/prop.js',0,'z�l�%[`&I��`E','z�l�%[`&I��`E','L-^Y��ݽ�x6��9MT� ����Aف,�K','',0,'?'),('���jj���ݛ�(\'','wp-content/themes/mint/node_modules/domutils/test/fixture.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/test/fixture.js',0,'�w��{�5�\ZC%�T','�w��{�5�\ZC%�T','n��\r|(t���\nT�9:��m�g閚 �c祟�','',0,'?'),('��g�h����J�_','wp-content/themes/mint/node_modules/bower/lib/node_modules/http-signature/lib/verify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/http-signature/lib/verify.js',0,'���)���P?)�Kh�,','���)���P?)�Kh�,','fm�@Ւ�mwa�U]��ϫ���\n,��C�� ','',0,'?'),('�zk����\"P�d�ҍ','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BaseLogger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BaseLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZV\n�CEU��n��zA�','�X����0�̂��@\0�@���Z�����J��','',0,'?'),('��V��s�Q}�~b�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/AuthorizedUsers.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/AuthorizedUsers.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ctrmy82�p��','H��l8�����9�����Y* |�','',0,'?'),('�Ueb8pkaP���g','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isString.js',0,'%�7�\r�����]���','%�7�\r�����]���','f�0���p�Q���ѽ.ryq8}���f� ','',0,'?'),('�SzʀU�\n����','wp-content/plugins/wordpress-seo/admin/formatter/interface-metabox-formatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/formatter/interface-metabox-formatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�\Z؍�o��','��U�/�����yI����^�:?Rp$��Rs1��G','',0,'?'),('��ue�{X�1���','wp-includes/sodium_compat/src/Core32/Poly1305/State.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DM\"E�4bќ�B��\0','����\"�C��Y�W6A�\Z���p�7\r� ��','',0,'?'),('�#6�~ A^R��!','wp-admin/images/contribute-main.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/contribute-main.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���UVƦ�2���\0','��9�H;!-�V�$�zd�{m�U�%Y����','',0,'?'),('�\ZMmյ�B�newu','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-az.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-az.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r��UZ�K�Kϴ�uV','��A��+�Bx^����a^�\ZՔ�]��Pl�','',0,'?'),('�\Z�yA��a�L{�ר�','wp-includes/css/dist/commands/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/commands/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cJ����x�}E��','\"VI��}_�[�n��JAQ�H$ƾ��U*�S�+�','',0,'?'),('�^\\5�����ʝ��;�','wp-content/plugins/gravityforms/includes/setup-wizard/endpoints/class-gf-setup-wizard-endpoint-save-prefs.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/setup-wizard/endpoints/class-gf-setup-wizard-endpoint-save-prefs.php',0,'T�X�|�Z��K�U','T�X�|�Z��K�U','��V�SY8�A�E�v�ӕ�`���\0�#�H)$��5','',0,'?'),('� �9e`��Zɭ�P��','wp-content/plugins/gravityforms/includes/util/class-gf-util-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/util/class-gf-util-service-provider.php',0,'L4�c�~��ٝ��]ߏ','L4�c�~��ٝ��]ߏ','�\rY�[◭Lv��T��bA�̆m�d�?��7�\"�','',0,'?'),('�!.�.�#�#�\\�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/mdb-banner.afefa48f.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/mdb-banner.afefa48f.svg',0,'�ފ|$���F�k\r\"','�ފ|$���F�k\r\"','eٚ�ЄYt��2qٸ<���~�)G��\n','',0,'?'),('�(FV�Z��Ք�0���','wp-content/themes/mint/node_modules/normalize-package-data/lib/make_warning.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/normalize-package-data/lib/make_warning.js',0,';�Eh���m8#<�J�P',';�Eh���m8#<�J�P','�\\��f�:%�ٰ��N.�s��uSo��2���+','',0,'?'),('�/��0)���\Z�','wp-content/plugins/wordfence/views/scanner/issue-database.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S��>���Z����G�','���\n��#Pw3Id��}͇%�J���j�U��+','',0,'?'),('�/���I�tۮ�O��','wp-content/plugins/gravityforms/includes/fields/class-gf-field-list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-list.php',0,'�p���ps&C��?�S','�p���ps&C��?�S','�S��\0ce��ԫ+��[n�ŭ�DFI��m�:�','',0,'?'),('�3v;�#�Rst�.�','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/SymfonyFinderAdapter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/SymfonyFinderAdapter.php',0,'����-4Iw���#���','����-4Iw���#���','�q$1@-8��s��Ci���?uj-�]w�#Oa','',0,'?'),('�8�����i1�f��','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-number.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-number.svg',0,'�4�\"\nc��s�o���','�4�\"\nc��s�o���','D��m\"��^CI�J��B��ʎ��b��dkZ�)t','',0,'?'),('�8}��:�K���_�','wp-content/plugins/wordpress-seo/src/presentations/indexable-search-result-page-presentation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presentations/indexable-search-result-page-presentation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.l�{7��2�Րl','4�+��*/�S+��!b��䢈����d��7','',0,'?'),('�;��8W��5n�>�','wp-content/themes/mint/node_modules/bower/lib/node_modules/array-reduce/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/array-reduce/index.js',0,'�A4�Ⱥ R���Yk*','�A4�Ⱥ R���Yk*','۟C�c�\Z˲s!�*\Z/����o$�^y1�,���','',0,'?'),('�<R ��\0j杜zЮ�,','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/AbstractRepository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/AbstractRepository.php',0,'oa� E�|��*)B�','oa� E�|��*)B�','�\03xe��T��!�\0m��ms��9�2��PPFi','',0,'?'),('�@J���R�4Z\'c','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/stop_early.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/stop_early.js',0,' ��M:�M$��L$��',' ��M:�M$��L$��','wT��c�a�_�\\B*R�1��>��S�ɼ�Y�','',0,'?'),('�@�q��G�-$����|�','wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_�wV-^+_���9>','�o��s/��}$� _�x�\0���u>�','',0,'?'),('�A 2��V���G��','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.system-report.c5b520eaa2d67de6c3ef.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.system-report.c5b520eaa2d67de6c3ef.min.js',0,',p�à �lu5�H�ą',',p�à �lu5�H�ą','��W2j�n�:�㩃s����y�ӽۀ�','',0,'?'),('�H:�TB�5��5�2�!�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/lib/_stream_writable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bl/node_modules/readable-stream/lib/_stream_writable.js',0,'�7�tU�g%�\" ','�7�tU�g%�\" ','FK��j��\'A*��-�����7�����','',0,'?'),('�H����6f�]����V�','wp-content/plugins/wordpress-seo/src/editors/framework/readability-analysis.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/readability-analysis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<A�{W�(Ձ���t�s','#��,ᅱs�ٽR\\����l��*�-','',0,'?'),('�P�5�\'�@�+\r�6�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/contains.js',0,'�,~Yb�\0��\0�#g��','�,~Yb�\0��\0�#g��','�W%��|�*K�����-�����0��`��','',0,'?'),('�S���KK2iɈ','wp-includes/comment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8�PF�-;-�[@+','���wI��GL?3(U�`����R��K�^L\0\'�','',0,'?'),('�V_$��3;_�E�R�R','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',0,'h��!�fŪe%�Q��','h��!�fŪe%�Q��','��XT���Q����ms�`��DP�ç,|�쫺d8','',0,'?'),('�_u�xL���an�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSortBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSortBy.js',0,'���\'H����`�ќ','���\'H����`�ќ','A0��i�?�J�LA�G&��K2�l�6S �!�','',0,'?'),('�eJ���\"B�&��v��{','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Queue.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Queue.php',0,'���F\r��3\Z�m\0','���F\r��3\Z�m\0','�o�r�\ng\\`-����x��K�W���G��g�','',0,'?'),('�gc� �,�(�c�','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/incorrect_main/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/incorrect_main/index.js',0,'reO.0{�\Z��귯+x','reO.0{�\Z��귯+x','��us�l�G�{2b]�^ ��_$��o���t�','',0,'?'),('�m(`Q�l����^�\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/imurmurhash/imurmurhash.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/imurmurhash/imurmurhash.min.js',0,'R��A\r���u��b(���','R��A\r���u��b(���','è�yR�s1\\V��($]r�k�M�W�`ԕ^','',0,'?'),('�p^]��u�)��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/constant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/constant.js',0,'��d�����?T����','��d�����?T����','UvSS:e���/��`,��B�����yvf','',0,'?'),('�u&>y��$x���','wp-content/themes/mint/assets/vendor/jquery/src/core.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/core.js',0,'DN��,�z�����','DN��,�z�����','|zR��0�r�H�=}�������m��\Z�� �','',0,'?'),('�x�_,[��5����','wp-content/plugins/wordfence/images/sort_asc_disabled.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/sort_asc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ǐ#a]2������','����[8l�Y���ckl�� ��u#KV���n','',0,'?'),('�yZ�,j���/�\n�','wp-content/plugins/wordpress-seo/css/dist/introductions-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/introductions-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V0%��^,��t�!ހ5','vvC�j-{Je_,\Zy �n�H<zꠞV\r�','',0,'?'),('�y�g��zaU\"� XKG','wp-includes/js/hoverIntent.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/hoverIntent.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������$��a��','y���f`���D�&���LI9�@q=���A�L','',0,'?'),('�|LE3�8,��3�N�,�','wp-content/themes/twentytwentyfive/parts/vertical-header.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/parts/vertical-header.html',0,'�s��~��/���,��','�s��~��/���,��','7I�fIDӱt/�Td���s��;I)]��JK�.c','',0,'?'),('�<&���Y@�@�����','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php',0,'3�Rt2]�I�G�4�','3�Rt2]�I�G�4�','��9V���Jr�ɔܤ�z�c����G����','',0,'?'),('���$���@���e��','wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExists.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExists.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+��\Z�>�f�[O','Q�瞋haV\"�^X5���=�/\\w&]��=Qi\\�','',0,'?'),('���^`�zv�.wѿ�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Extractor/PhpStringTokenParser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Extractor/PhpStringTokenParser.php',0,'�ƍP���Qɉt�e��<','�ƍP���Qɉt�e��<','�XqM�x>1�����L�_��<@^�)�B��\"�','',0,'?'),('����\r��v.hK�','wp-content/themes/mint/assets/vendor/jquery/src/manipulation/var/rcheckableType.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/manipulation/var/rcheckableType.js',0,'��bĨ����*�,a','��bĨ����*�,a','��J\0\0]���u9���(9�^��0�0�aH��','',0,'?'),('��l;�+���or-5�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractScopeSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractScopeSniff.php',0,'���j��0s�xw�X`�>','���j��0s�xw�X`�>','Q�q�>��\'z=��<W�=��>�@�n��tx','',0,'?'),('����\n���/\'�\Zu�','wp-content/themes/mint/node_modules/cryptiles/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cryptiles/test/index.js',0,'k�H����BUh��i','k�H����BUh��i','Ȼ/%���:��}=�ky�J�����߾�7�','',0,'?'),('��s�B���9�]���S','wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/example/quote.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/example/quote.js',0,'F�$bf���\0��ߘ�','F�$bf���\0��ߘ�',']���+W�^�Ĵ9��B��d��Z,�~Nd$w/�','',0,'?'),('��H��}=���{S�d','wp-content/themes/mint/node_modules/bower/lib/node_modules/nopt/lib/nopt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/nopt/lib/nopt.js',0,'X�����epΣ��]\r@s','X�����epΣ��]\r@s','�9��.�$��L����c�s����֟5�j�','',0,'?'),('������^�\n�&~�m7','wp-content/themes/mint/node_modules/underscore/underscore-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore/underscore-min.js',0,'z�]IoY�h���/7]','z�]IoY�h���/7]','�Eҹ�ꖚ�e#[]�JЉMG�UTQ_B��[','',0,'?'),('���\0.T��I�9����','wp-content/plugins/wordpress-seo/src/config/migrations/20201216141134_ExpandPrimaryTermIDColumnLengths.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20201216141134_ExpandPrimaryTermIDColumnLengths.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N��|�_��0\0���','Q�0ՠ���y��\"�I;\n/�j�?�6��^@�','',0,'?'),('������Gۙ��GLeN','wp-content/themes/mint/node_modules/ctype/ctype.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/ctype/ctype.js',0,'mQjp�}�oo]����\"','mQjp�}�oo]����\"','Ϲr�+�ʣ��K��L�a/�F��y�w�\\?L','',0,'?'),('���+y��=v�I`qFϺ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseEachRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseEachRight.js',0,'v6v9o��C��9\Z�f','v6v9o��C��9\Z�f','d�0�]��r�8w�����K�-_j��v�','',0,'?'),('��4��7]��_�\'�-f','wp-content/themes/mint/assets/vendor/jquery/src/outro.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/outro.js',0,'�}Kr��[<�E�M','�}Kr��[<�E�M','Z���;\\j�B؝��q���\'ȲG���','',0,'?'),('��vRz���@7��g*T','wp-includes/blocks/navigation/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0��m���nm K���','��� 5�mC���\Z���:x�� V��3�-��','',0,'?'),('��̇2���!�re]�0','wp-content/themes/mint/node_modules/bower/lib/node_modules/cliui/test/cliui.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cliui/test/cliui.js',0,'D=�}��S�!�~��','D=�}��S�!�~��','*���TO�V� �x5�\n+u{���Ny��\\��G','',0,'?'),('��}�Ne���АA��@�','wp-content/plugins/wordpress-seo/admin/class-admin-asset-dev-server-location.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-admin-asset-dev-server-location.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���z%4 �!�G�SEk','/OAo�8�?A�N�����f��YK�\r���-!','',0,'?'),('�͂i^bn=P�fX���I','wp-content/plugins/wordpress-seo/css/dist/structured-data-blocks-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/structured-data-blocks-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/�����\0��G','�S����JQ*��R/�Z���ggb�u]�e�_','',0,'?'),('��K|����iʼnn��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flatten.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flatten.js',0,'���J�j8U �B�!+','���J�j8U �B�!+','�O��I�T�K�MX���d�#q�f�5��Q2��','',0,'?'),('�Ӈ�\rԐ��ؘU1��)','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/PiwikInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/PiwikInstallerTest.php',0,'8�)���ܚb���','8�)���ܚb���','�&aؙ����t���v��`��p��Q&e�','',0,'?'),('����hNv�R*��=ܘ�','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/FindFirstTemplateTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Finder/FindFirstTemplateTrait.php',0,'���5`��2�jS�%�','���5`��2�jS�%�','㞖��Al�RoON�����\r�{ňI�D|�','',0,'?'),('���NTZt�o\r�%��F','wp-content/plugins/wordfence/views/scanner/options-group-general.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�tL�Ga�\0�oҠbY','2�6��l�n\r��\"� c�:�ƅz�v�J1ܶ��','',0,'?'),('��2�L�%^ߣ�z','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/AvailabilityInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/AvailabilityInterface.php',0,'(8*�P�E��ADVl\r','(8*�P�E��ADVl\r','d�>�����A܅��T�o�?e�\"e��z','',0,'?'),('��R���pB@LJ��','wp-includes/blocks/archives/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/archives/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4? ����U�Ew��','�̴�2I3���QS*\"@L�$ ��\"�V�?��','',0,'?'),('��Os�\n�w�=>üY','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-date_time_picker.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-date_time_picker.php',0,'��R�p$��?�K�','��R�p$��?�K�','��M�,3ѣ� �8y�i%��c��г�a��J�','',0,'?'),('����������wT','wp-includes/blocks/button/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/button/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NT ɜiL,���@_�','��~G 1��ʆ��7cY`Pl��h�szm/T�=W�','',0,'?'),('���z|�ǃD����b�','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/_.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/_.js',0,'Ś�����p7����.','Ś�����p7����.','K� �U�C�1zӀ)\Zb�ߑ��V��5�r[�','',0,'?'),('��3�E\n��N�-����','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')e��f�#�`P�~7�n','-m��z��n�N�F�E\0ѭ\\vq�sL?�Z\Z��','',0,'?'),('���+�*�7�6ΠX','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/Jsonable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/Jsonable.php',0,'�G\0�S��·�˒�','�G\0�S��·�˒�','h��t�M<\nԀc ���BN�Tb�J����q/','',0,'?'),('�o�/�d�4x`��','wp-content/plugins/akismet/readme.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';���\nl�Y�Z�R','C�HL�q�����;�t����t��]\n���5�','',0,'?'),('��Z�3��Z\'Z�о�;','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/save.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/save.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\��2�\Z1xo��%','�\nML�K���]zg �}�2����h ���6{{?','',0,'?'),('�9\r����\rK|�\r�2','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/GenericProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�|1K(�Hod���4�','���ǦH���\r�H\'��\n\'�2�~<I�uFK�`','',0,'?'),('�TEa�MYZ4CDi�','wp-includes/fonts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/fonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����-�p�}L���J�','_��2*nҺ`w:jY�)5�?.Q�Mpw�T/�%','',0,'?'),('�Q%���*��K�','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/wincher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/wincher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�o<\rEܯ�\Z�Xd','����a���+���\"#$ӵ�g��S���z�i�','',0,'?'),('�*l- ��S)z)6�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars.js',0,'g&�����]8fE�\r�','g&�����]8fE�\r�','\0ٰ=FR!��Nq��jQ!�_W=��{k��q*','',0,'?'),('�/�ɘ�]�^�W\\�q','wp-includes/css/wp-embed-template.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/wp-embed-template.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#��\\�3�A0:l>ߟ','�n�W�F���.�˥�0��#gF�Z]��A\0�','',0,'?'),('�7��?;�9�d��L1�','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-wp-rest-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-wp-rest-controller.php',0,'�C����$�4C���','�C����$�4C���','3��b�TW֒U���|O>�,���\Z�wKx','',0,'?'),('�;t�7���F�U��]','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�()NŚmm!p-�a�du','�*�d�Ȅ��Т�r�QG`få��� ��w:�','',0,'?'),('�@�:τ߉���͆%-w','wp-content/plugins/wp-migrate-db-pro/class/Common/Addon/AddonsFacade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Addon/AddonsFacade.php',0,'��n�%/� ��9�fC','��n�%/� ��9�fC','&�*�,ô�\'�g� ���gh����.GB�\n','',0,'?'),('�E�>�C�h��O{�*�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/scripts.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/scripts.js',0,'���Q9�T�ic�Rt:�','���Q9�T�ic�Rt:�','��\\�y*�a�2I��8\Zf<<���{@fl=','',0,'?'),('�J���WL���}�|L�=','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/filter.js',0,'��F��1�/�I�f','��F��1�/�I�f','�O(�݈My�<MI)M���A�)蟡)��','',0,'?'),('�Z���\\b���T��','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/js/function.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/js/function.js',0,'N��[P��d0�r�[ ','N��[P��d0�r�[ ','�G�I8n�De�B�ɴ��R���H�-S�Lo','',0,'?'),('�\\�\Z�e-�����s','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/forOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/forOwn.js',0,'R�A������4ֺك}�','R�A������4ֺك}�','an�b�˿�(��-P�����\0�ʏ�hIz�}��','',0,'?'),('�^�05�M�vN��!0','wp-content/cache/wpo-cache/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�g��ښ��������','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/timeout.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/timeout.js',0,'�^8�b�&��@Ĉ�B','�^8�b�&��@Ĉ�B','�\0�XL$d)�t�`�\Z*���o%~ҧ+� #�K�','',0,'?'),('�hyI�Y���3=���','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-textarea.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-textarea.php',0,'�Tl=C�Y3E���o�0�','�Tl=C�Y3E���o�0�','DK=��W+�,��喿������8�\r��m���','',0,'?'),('�jlฟR`=��j�W&','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/build/test-prefix.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/build/test-prefix.js',0,'�H�F�X^��B|�','�H�F�X^��B|�','��&�e��rAu��O�5�.㸏a�^Rx)Q���','',0,'?'),('�m�j�� ��k�0�m','wp-content/themes/mint/node_modules/supports-color/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/supports-color/cli.js',0,':3N6�\Zw���0ϗ�',':3N6�\Zw���0ϗ�','u�?ˡxu��Ԟrd ���E�q�H���','',0,'?'),('�s8�4_l�:�F�:�','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-footer-55e7069a.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-footer-55e7069a.min.js',0,'QQ���?�ǹ�ۛ`p�','QQ���?�ǹ�ۛ`p�','�l#�p�T���|���C��/ʈ�N��w','',0,'?'),('�s��i��K� �B�Tz','wp-content/themes/mint/node_modules/bower/lib/node_modules/ansi-regex/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ansi-regex/index.js',0,'~v�}�N�y�}�=�Rh','~v�}�N�y�}�=�Rh','�\0�[�l��� VT�T�z��I�dӢ��?� ��-','',0,'?'),('�v{L�Jlō�Yz�`�(','wp-includes/js/thickbox/thickbox.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/thickbox/thickbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7��P�R�n�,(�f�','M�ߍ��V�_�^����ol\'\0��qYL�̘)���','',0,'?'),('��iz���i)��7+O','wp-content/plugins/wordpress-seo/src/presenters/meta-description-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/meta-description-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���6E�Cp��rHs','F ,�q�K�Ԭ���.����e�E����','',0,'?'),('��H0��`�/��^E��','wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/hybi_parser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/faye-websocket/lib/faye/websocket/hybi_parser.js',0,'��c�_}���l�\Z�','��c�_}���l�\Z�','ʹ:2>��8���y���y8ī��;���','',0,'?'),('��/f��2��ݜ���M','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/result.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/result.js',0,'�+�|r3X����� ','�+�|r3X����� ','\nG6�P���H��M#��é�聗��B�?D','',0,'?'),('��}���\0���kZW�!','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time/toTimeString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time/toTimeString.js',0,'�p&��f5�G)Z,i��','�p&��f5�G)Z,i��','+�-��h�^��՞Ut�Ͳ|�i�$�!�4��8','',0,'?'),('���+�F=����H','wp-content/themes/mint/node_modules/has-ansi/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/has-ansi/index.js',0,'I,�\0a��\"}rQ�B\n� ','I,�\0a��\"}rQ�B\n� ','c�}��gm�P�ӗ!��+�5��4�r3','',0,'?'),('���JP�� ���|��','wp-content/themes/mint/node_modules/argparse/lib/action/store.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/lib/action/store.js',0,'��kG��1�\"\Z�Bf�@','��kG��1�\"\Z�Bf�@','V\n�j���͂xa@ŧP�B��ad�(%+ ','',0,'?'),('��\nN\\D�hc\\\"���','wp-content/plugins/wordpress-seo/css/dist/first-time-configuration-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/first-time-configuration-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=[8���p{�Cr','T�,8�n�<)園;Ƥ3O����B\r�7.�6�','',0,'?'),('��˴�#��Ƴ�#]S','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isLaziable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isLaziable.js',0,'�5���{�^FR�y��]','�5���{�^FR�y��]','�H��9���2��kz1�9���,\\@�OL�%�W','',0,'?'),('����n��J{Cb�gC�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_escapeHtmlChar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_escapeHtmlChar.js',0,'���\\��-?��10��y','���\\��-?��10��y',' ���nL���f���}�>w�H����`;)�','',0,'?'),('��s\\�ۑ�%�9��Z','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Guard.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Auth/Guard.php',0,'q��K�_���c$˵�C','q��K�_���c$˵�C','�\n�s>qkJN;@��0A��@|O&�J�+��','',0,'?'),('���k���Z�r�Pɑأ','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/reflect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/reflect.js',0,'z0�2x\Z>��0ms�Y�4','z0�2x\Z>��0ms�Y�4','�=a���Z�-6�Å��V�ؾR��i(��\\{bU�','',0,'?'),('��^� �\"�uZ�S ','wp-includes/blocks/comment-edit-link/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-edit-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kc�����w!11��','��k�wϫ� �������s왃N��I','',0,'?'),('��(��NL�; ��','wp-includes/js/dist/api-fetch.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/api-fetch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����l��^�F���','�Q��UԽ@)�??�Zȋ=��v�x_;k�H8b\0+','',0,'?'),('��d>e����F�a�9','wp-content/plugins/wp-reviews-plugin-for-google/static/img/star.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/star.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<��l�6tG��o���','$X2F�\n�\\$B-Qǒ����h�8ʕkƌ_�p�','',0,'?'),('��DJp�c�t��js�^','wp-content/themes/mint/node_modules/minimist/example/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimist/example/parse.js',0,'U�в�g��e�4Gk�ȅ','U�в�g��e�4Gk�ȅ','LlҸ��\r� j��\nGJ�Y �;I�0%�\Z�gª','',0,'?'),('���o���aL��}��','wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/lodash.js',0,'�0ϸ���q�]�r4,','�0ϸ���q�]�r4,','��0H�u(��ق.�f���7��ㆥ8��','',0,'?'),('�΄���0��Q�2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/uuid.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/uuid.js',0,'Ow��$[O_���&�$/','Ow��$[O_���&�$/','�y�~k��<?�.F��P��:�R�Pl���','',0,'?'),('����i���]>=r�u�-','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/countSteps.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/math/countSteps.js',0,'I��{��x��ũJ�','I��{��x��ũJ�','*V�̑3�>1Tǣ�s(ӱ�H�1ޠ�','',0,'?'),('��+/�u�M4O<�','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/algs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/algs.js',0,'�7�\\ Z�\\4�E{\n','�7�\\ Z�\\4�E{\n','�\rEb��+ƒW�0^������^�R���','',0,'?'),('�غZ���9=��Lp�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/ajax_loader.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/ajax_loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+7w�D:w��k;z��','H����7;鸻��gۺ�]VC;y��2�s�','',0,'?'),('���F�Z�\nQ�CE','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RetryMiddleware.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/RetryMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';�b����z3L��3��','њ�Q`��w�d>O�oJ�����\'N�Ӂ>w�,','',0,'?'),('��Rk�M� ����>�\Z','wp-content/themes/mint/assets/vendor/jquery/src/var/deletedIds.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/var/deletedIds.js',0,'s���$�0\"�᱾<��','s���$�0\"�᱾<��','66��6-�KW�_��\n���Q�[óJ�KW�','',0,'?'),('��\r�m�s\0�@�=[�','wp-includes/blocks/text-columns/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/text-columns/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�Mg5E_\"ۚ6��-�','ݴ���3\0����v\"�EW��Pt��TT�u�,`','',0,'?'),('��?ծ�Q��+�.�','wp-content/plugins/advanced-custom-fields-pro/assets/images/face-sad.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/face-sad.svg',0,'e�naȨ�\0���1��','e�naȨ�\0���1��','��~�[v�@�z���\"�.�����n�\"�v��','',0,'?'),('���k�hd�P�7Hz','wp-content/themes/mint/node_modules/less/lib/less/lessc_helper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/lessc_helper.js',0,'T��o����փ�r��','T��o����փ�r��','��\'c�rľ�*\'�pѴB����#2�/��','',0,'?'),('����ʙj��q��2h','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js',0,'�1�=q���V���','�1�=q���V���','D�i2���)�Wk�-���CX�[n��z;Y�3','',0,'?'),('��֬+I�7���^��','wp-includes/blocks/file/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/file/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F�=�oJ���W.�m','��Q�r��T��n�%����@�n\'��m}4�','',0,'?'),('��R�p�x�O�U�\"','wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��L-\Z���0vf\n�','�+&h-ʚ��j��FpR��$��ɩ 1#t','',0,'?'),('�X�VטO|8}���','wp-includes/theme.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�a�#�.@.�9z�','\Z ��oϛ�r����z���$<����','',0,'?'),('�\'@�z�����,7�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/downCircle.eb822116.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/downCircle.eb822116.svg',0,'�x¢>�e���\0�y�T','�x¢>�e���\0�y�T','⻕l�!�dڮ�6;7�n��E����.@q��','',0,'?'),('� m�<-\'����8Y','wp-includes/css/dist/preferences/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/preferences/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��UL�4=�-�x��','�O�ı�[�p\"�e)A[8�2�a$j{\\o���','',0,'?'),('�&�ї��\0�����','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/InvalidImageTypeException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/InvalidImageTypeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6SX�f���}���ֿ',';���(�B�d��-�&�\"<9Xs����I���Q','',0,'?'),('�\'�ݞ52k�b�y���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/repeat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/repeat.js',0,'zAIfB\rUK��y[25�','zAIfB\rUK��y[25�','F�}C&�� �l�Kf0|0���I�T\Z���S繧','',0,'?'),('�\'��.��s���]q','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/FatalErrorException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/FatalErrorException.php',0,'m?��X/�g��A�X�u','m?��X/�g��A�X�u','�i�ʎ��pj2�rK���CLԩ�4���j�\'�','',0,'?'),('�0\"��G�\Z=�hV4�','wp-includes/blocks/separator/theme.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/separator/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������EȪ��h','א�Z�Ƚn_6{�N�n;�FM>un�����\"','',0,'?'),('�B�H*mz��N83��','wp-admin/css/edit-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/edit-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|t�Z%���1ɍ��','���NU\r.�^\n�jmXb4>W=��W#�l�21�B��','',0,'?'),('�C��V����/h�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/JsonFileDumperTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/JsonFileDumperTest.php',0,'����y��q?��*','����y��q?��*','�ٴ�>��`�{�nrW>e2M[��\'F����','',0,'?'),('�Db�X����$�#%','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Foo4Command.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Foo4Command.php',0,'�G������0i��','�G������0i��','�Dm?a��Y��o��.Ī\\�ehA��','',0,'?'),('�D��q�St�Z�K�+','wp-content/themes/mint/node_modules/argparse/lib/const.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/lib/const.js',0,'�$Bx1�;�J>��C�','�$Bx1�;�J>��C�','��`����0�3\'�\'\'���\'���.��\rJa','',0,'?'),('�Im`�d��w@�G>\0','wp-content/plugins/wp-optimize/images/icon/wpo.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/icon/wpo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ʊ�tn��.|b�O>��','�Oj߽Jq:%�fH���kY�n������','',0,'?'),('�J�X�h�Q��3y�','wp-content/plugins/wp-optimize/images/notices/cache-video-preview.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/cache-video-preview.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2j�З�6H�и','�2���X(�T�y^3�ƈx!�!M�s�dz �','',0,'?'),('�Nw㙱}0������','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',0,'� m_d&Ժ��0w','� m_d&Ժ��0w','0�슿�ksφz�@�ⱇ)��T��+����','',0,'?'),('�RR���\\�}�(1�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/unset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/unset.js',0,'a-V�9�E�1�h���','a-V�9�E�1�h���','��PS�����bRȂ*\"�H,h�Ws��~M','',0,'?'),('�V}�P���m�/�|I*�','wp-includes/js/customize-loader.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5���G1�1Qō�Α','ˎ���4p5�d�����H��m�Ԓz','',0,'?'),('�Vז\"Đ���ڴM�','wp-content/themes/mint/assets/vendor/respond/Gruntfile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/respond/Gruntfile.js',0,'QD�V+XY��JH��','QD�V+XY��JH��','j�զ��7�T#���kV�� D�{�\'܆�E���','',0,'?'),('�X�ILrm�R� �','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/findIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/findIndex.js',0,'���\Z����Y�;Z','���\Z����Y�;Z','��3k�����o<)�0���p^c�����k�','',0,'?'),('�X���kЃ����','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<�ˋB�p��N�7\Z-','�>��\n��M2\\�lYߌ���h������f��X�','',0,'?'),('�d�2�ljOV�T�J�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/max.js',0,'��G�3iq �뵟D�*','��G�3iq �뵟D�*','|�b��:ע��ibN�?-П�#F:P��zH','',0,'?'),('�eܘ�Hy��]���o�','wp-content/themes/twentytwentytwo/templates/archive.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/templates/archive.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0�ռw��E�\'t','Ҟ�1��g�2� ��ʻ�B�s\r��VXL�','',0,'?'),('�fⓖ���.5�7�\"R','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createForEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createForEach.js',0,'*�\Z����/tnU��\"�','*�\Z����/tnU��\"�',' $u~6?1`2B�3./�1�/�40n�zHa�X','',0,'?'),('�i���Y�[�[��ә =','wp-content/plugins/wp-optimize/vendor/composer/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]_�#D���\0��','\Z ��ے�%�4~N�~Gh!b��:w��Ɍ��\'','',0,'?'),('�k[�A��/�Gڄ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js',0,'[��7���\r^��-','[��7���\r^��-','@B���`��6�&.�a2Xŷ�&�k�v`F�','',0,'?'),('�l��t:{0+7�9C�','wp-includes/sodium_compat/src/Core/HSalsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Hx+�07��`�}�','@qz�j�I���� \0D�a�W��6n�{���y�','',0,'?'),('�n\\.)�[y{�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/drop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/drop.js',0,'ů -�7Ղ-`�5�T','ů -�7Ղ-`�5�T','�۵JTl�\\ظ^\0��7`��y�*l*�o?','',0,'?'),('�q�Ȗ0*�\"`�Z!�s','wp-content/plugins/envira-gallery/assets/images/envira-logo-color.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/envira-logo-color.svg',0,'L�+��E\"Ü�+�+�','L�+��E\"Ü�+�+�','W��du4��)������(Sg����;W3Q��','',0,'?'),('�rڄ\Zn�&��N�9','wp-content/themes/mint/node_modules/source-map/build/test-prefix.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/build/test-prefix.js',0,'�H�F�X^��B|�','�H�F�X^��B|�','��&�e��rAu��O�5�.㸏a�^Rx)Q���','',0,'?'),('�v4j� �߆$�zu�','wp-content/plugins/wordfence/modules/login-security/css/admin-global.1731600600.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/css/admin-global.1731600600.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n�!m]\'�x�_�','�W���I�Y��T�įQ�.0(?��F���f#|�M','',0,'?'),('�x��ːlM)��\r','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/DefaultValueResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/DefaultValueResolver.php',0,'>�4��@q�+�V�j','>�4��@q�+�V�j','Y �mF;\Z�z��xi����蔳��M�Ĥ<\'','',0,'?'),('�x��a���ԩ�&�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/WHITE_SPACES.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/WHITE_SPACES.js',0,'0}�����\'��-g��','0}�����\'��-g��','Y&�ؖD7�2��|��{�Q�7)�0�-�+��h','',0,'?'),('�z���]��@D���','wp-content/themes/mint/node_modules/clean-css/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/index.js',0,'�>r�1\\���Ї\Z��','�>r�1\\���Ї\Z��','��\r?x�����+Kt��`L!���{Nj','',0,'?'),('��6v��i:�ڀ��W','wp-content/themes/mint/node_modules/http-signature/lib/signer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/http-signature/lib/signer.js',0,'�@�qJ]n�Ώui�^','�@�qJ]n�Ώui�^','��+����#���)������֤�ΨE��5','',0,'?'),('��u}r��!>�A�w�','wp-content/themes/mint/node_modules/shelljs/src/mv.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/mv.js',0,'��<�,��v�0�8x','��<�,��v�0�8x','���5?� hs�\0��� ���e<~�}�\r','',0,'?'),('��.��v8-rJŕ�qQ','wp-includes/js/wp-auth-check.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-auth-check.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2���YT�x�w�','E�ID(10i�|�V:��^�s\ZXǂ\\�9k�O�G','',0,'?'),('�����>������-�4�','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/composer.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\^��zV!N\\\'�9&\\','yZ)�:R�®v�,s�PE�\\��$��J0wC�','',0,'?'),('����z>�N}!^�x���','wp-includes/l10n/class-wp-translation-file-php.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/l10n/class-wp-translation-file-php.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɖx�+�Y��TM���','��g���)�rǡWK��X�,�I�pLQ�ׯ','',0,'?'),('��YM�m)\"��k���C%','wp-content/themes/mint/assets/vendor/jquery/src/core/access.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/core/access.js',0,'V4��H+��>Ӵ;���{','V4��H+��>Ӵ;���{','o�&��)�B�-�帖 p����A�bC��q','',0,'?'),('��O�����9X�KHo�','wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-section.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?�M��e�&�',',�I��\n��*����6�����Rf U��','',0,'?'),('��U��MN4זy�g`','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-base64.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-base64.js',0,'��1p?A�i��e','��1p?A�i��e','��6��C�b?ہޑ/+�������N�I�','',0,'?'),('����8�s� ݄','wp-content/plugins/soil/resources/views/google-analytics.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/resources/views/google-analytics.php',0,'�n�_i�o6�/,��6!','�n�_i�o6�/,��6!','a����ܥ�e�w��C��\0W��ʒ��yhZ','',0,'?'),('��\'�Y�?,mmk�.�','wp-content/plugins/wordpress-seo/src/initializers/plugin-headers.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/initializers/plugin-headers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=s�T���B��T��','�(�� yӠ%c]�5����Űw���\"�Ps','',0,'?'),('��6��U�Ѧ�u�','wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z O��U�\0��.�Z','ȪR���y��w!<�5�??��\Z�n�PY5s','',0,'?'),('����X\Z�9\n\Z!���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dropRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dropRight.js',0,'0M�@P��^��]@a5-','0M�@P��^��]@a5-','f$�-g֩�N�*���*�X8q�X%P\0���;','',0,'?'),('���P\'��z���,','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',0,'R\\�L뺵\'���Q','R\\�L뺵\'���Q','��0&���M��sԎ����̩c�|��� �av','',0,'?'),('��7��E#�wŧj���','wp-admin/includes/image-edit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/image-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���9\\��- �)e �','��X<$���!*K����͚;{��]/�ee','',0,'?'),('����U��Չ�B���','wp-includes/Requests/src/Exception/Http/Status415.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status415.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�e�\Z��^Ff�m�','���*حҟ�|9��/_<�1����?+�V�','',0,'?'),('�� ��a^\'P�;T�','wp-content/plugins/gravityforms/includes/settings/class-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/class-settings.php',0,'Q�\'=��rH-#�s?��','Q�\'=��rH-#�s?��','�.9E��5:@.&O�\0��Ԅl��ߊg�h<-�','',0,'?'),('����bq�/���F�k','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7��¤\r�F��g','�n�V\'�V����V�)F|*ᑝ2�N��z','',0,'?'),('����_e�K���','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/SignalHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/SignalHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',S�Y3���8�)���','F�����A��DQWt�$E�f:w��rZ/g�','',0,'?'),('��:��L\0\r�Y���','wp-content/themes/mint/node_modules/bower/lib/node_modules/ansi-escapes/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ansi-escapes/index.js',0,'/���Ց<�R;ɀs','/���Ց<�R;ɀs','�,.>�>��az���G�_Z V��G%��K[A��','',0,'?'),('��U.\"6ղaD<*��','wp-content/themes/mint/node_modules/qs/lib/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/qs/lib/utils.js',0,'�-��?@Z�d�s��','�-��?@Z�d�s��','���\n�ǯ�<Sy��$ƚ�q�6y�5/���V','',0,'?'),('���������\0','wp-content/plugins/wp-reviews-plugin-for-google/include/uninstall.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/include/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���0<D*A2�\'��-','��\0X����?\'�g�-��\0좒Xiv�p��2�f','',0,'?'),('��=�N} ���X��y','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/InvalidArgumentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0TY&�d_hQ���]','gdf�i�C����������������ǚ','',0,'?'),('�ܠ�>\"Nw,9*��','wp-content/themes/mint/node_modules/bower/lib/node_modules/promptly/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/promptly/test/test.js',0,'���k�X������ ','���k�X������ ',' Z\Z�ݥ;�������V!�2�\Z:��wh�爽','',0,'?'),('��K~��0���YQ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/trim-newlines/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/trim-newlines/index.js',0,'f�l*�#�Ć4m','f�l*�#�Ć4m','��Ң!$�\n`��!\\��:I�Wn�ol�%u:k','',0,'?'),('��-�8���?�\rI�','wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/Filters/FilterInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/Filters/FilterInterface.php',0,'����\"���\nѣ�MZ','����\"���\nѣ�MZ','ܟn���t남� �[\0R\ZoPM��g��@�','',0,'?'),('��o���ˣo˫y�O','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/SiteDirectInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/SiteDirectInstallerTest.php',0,'�IMnm��1���#�','�IMnm��1���#�','(�;��5ܘ�WߞC5�Ob@�p� ��Z��\r`','',0,'?'),('��K.���*��[٫�','wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/bin/esparse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/bin/esparse.js',0,'V�80 nv,���c','V�80 nv,���c','�)����#*M3H�\0,�d�(yqJ��{�4��','',0,'?'),('���BX�s�\'cR�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/LongConditionClosingCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/LongConditionClosingCommentSniff.php',0,'W6�L!�t��e��','W6�L!�t��e��','�JQ���&�Їފ����\\����[l}��>','',0,'?'),('��v��|�-��','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�<�]��r�','���p[�����L7F��|˖ZB�R�','',0,'?'),('���ɗ�,%@�w�','wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-Light.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-Light.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ѩʲ�[�,�� �7}','-�7�R1}[��n�a�m��b�+(c4�ǽi7','',0,'?'),('���AiJ�h� !mѼ','wp-content/plugins/wp-optimize/templates/settings/settings-trackback-and-comments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/settings/settings-trackback-and-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�KJ�Hj!z�|��.�','�gU���EA�v�R�v��3V�F��\\����','',0,'?'),('����Ȁ����Ӈ�W)','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/SignatureInvalidException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/firebase/php-jwt/src/SignatureInvalidException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VL���i>�M�� ]�','�]���5V� �J<F+y�v��d�|8WH','',0,'?'),('����B���8�v��V��','wp-content/plugins/wp-reviews-plugin-for-google/static/json/example-reviews.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/json/example-reviews.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M����ыI<4)b���b','H�@ �*�v��\Z6�I��S4C�i!���`H','',0,'?'),('��h%�����rd\'&�','wp-content/plugins/advanced-custom-fields-pro/pro/fields/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/fields/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('��ʩ_ig��V;�>','wp-content/languages/plugins/wordpress-seo-en_GB.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/languages/plugins/wordpress-seo-en_GB.l10n.php',0,'\"G�~��A̷͑�7�E','\"G�~��A̷͑�7�E',':�}dQj��ٝH�p�B�_������;>�','',0,'?'),('���Y2�H�ҿ��\\�','wp-content/plugins/envira-gallery/assets/js/lib/envirabox.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/envirabox.js',0,'JC���_�z��q��펝','JC���_�z��q��펝','陱[_�7v��Ӹ��֬x���O�&}1�~�','',0,'?'),('��4I�:�6���J�','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/themes/tomorrow-night.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/themes/tomorrow-night.js',0,'�Wt=�c��\Zz�5g�','�Wt=�c��\Zz�5g�','kH�( \n�<�@�瘒=�l�WBWP��DB�','',0,'?'),('��i�Mu�j�楝','wp-includes/Requests/src/Exception/Http/Status306.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status306.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Hk�{O�;,<`S{~','���Muy��%�h��ח��H�l���c���A','',0,'?'),('������5�_���','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/eo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/eo.php',0,'����Z�����\'��','����Z�����\'��','��8�{-�\Z��=ݲ�J�x�,蝿Og�','',0,'?'),('�������n�ӊU5','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection.js',0,'��@?> P ��)�>\\k','��@?> P ��)�>\\k','�]]$���y��Q$�k=��r�}gd�Jbl�|','',0,'?'),('��*y�u��%ٳ+,','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/assignWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/assignWith.js',0,'�|�[@C�)f��','�|�[@C�)f��','s#[o3ɠ�]��]�o�pv�w\Z��\\��h�','',0,'?'),('� -�\0��B�l��S\Z6','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/SymfonyQuestionHelper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Helper/SymfonyQuestionHelper.php',0,'�V�t����Nx̯8\r','�V�t����Nx̯8\r','�f��A�|���;�=$��@G=7�՜/m��J|','',0,'?'),('�!HUN&�\"����z��','wp-admin/css/widgets.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}��\\�����','������2y��}9�a�X�H��a�`� L���Z�','',0,'?'),('�\"ijg��ߋ��B�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Exception/RuntimeException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Exception/RuntimeException.php',0,'�hi�Ͽ1\r;�m�','�hi�Ͽ1\r;�m�','�ΠS�OB�7Ȼ?*�����HjՕJQ>~o`','',0,'?'),('�#\Z`$0�̇1�H 8','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/quux/foo/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/quux/foo/index.js',0,'�1�=q���V���','�1�=q���V���','D�i2���)�Wk�-���CX�[n��z;Y�3','',0,'?'),('�&?R2 XP..\"�6F','wp-content/plugins/wordpress-seo/src/loggers/logger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/loggers/logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',') kV�����b]�8�F','��{��� k�#���1���� ���I&��F�','',0,'?'),('�)�jB��bҞ����`','wp-content/plugins/advanced-custom-fields-pro/lang/acf-ca.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-ca.l10n.php',0,'��gS�!R�\rR�','��gS�!R�\rR�','P�z��IS�����uk��<�4�ͬh8h(�','',0,'?'),('�*4a��(�b��?/`D','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/border-image.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/border-image.js',0,'�tJ-�+r��1;����','�tJ-�+r��1;����','������M�a�6�X�7��1���/�','',0,'?'),('�*�5uj���p��','wp-content/plugins/wordpress-seo/src/conditionals/wp-robots-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/wp-robots-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1��\"i)%�l\r�\"���]','�Z���������{� �\Z�iUR�E\\�','',0,'?'),('�,���,��\'Q#�','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/composer.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�1-2�ܡ�Vt�;�','�|������٧H^qhx��8�\r��A�kڶa','',0,'?'),('�<#2�y��Q�;�w�1','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-d.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-d.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U�)j���\"�Y��','�b��q�iH�Bgeb��t�f�y�\n�@ş','',0,'?'),('�@��J#u��a���d','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isNumber.js',0,'�r��w}@p�4��z','�r��w}@p�4��z','��纰���\r��˄�-����¸v��','',0,'?'),('�B�HN�i�cy��rK�','wp-includes/js/dist/script-modules/block-library/image/view.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/block-library/image/view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�53�T��R��','^��sr�XD0���~y��������a�ٜ','',0,'?'),('�F߇���#��ata�','wp-includes/block-patterns/query-small-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-patterns/query-small-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f@�I�va�=9��uQ','ͷ%w@3#����F�Zq��t`�s�o���','',0,'?'),('�K��˄*���!�tД�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/interpolate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/interpolate.js',0,'8�+ ξ�;��Ф','8�+ ξ�;��Ф','*��u��i_��G���P�et�I�����d ','',0,'?'),('�L��~iS?�v�C>�@y','wp-includes/blocks/latest-comments/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-comments/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�c��x+}�%P��','j\n�c��I�rt�8���\nhx;�Y�!�Q�\";','',0,'?'),('�NuW@+x�%!ua�','wp-content/themes/mint/node_modules/postcss/lib/result.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/result.js',0,'��M�F�jw� ��','��M�F�jw� ��','<1[M��%�E���c>��z���(��zF','',0,'?'),('�S7��zǫ�W�~�2�','wp-includes/blocks/site-tagline/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9s�+2c�1�\\�%�\0{','��Zk�R�⨈�\Z5�p�����m\\�nz�','',0,'?'),('�T��pR�d�1^\'�y�','wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/dh.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/dh.js',0,'c��� :,���/v4�','c��� :,���/v4�','s7Z�~���R�Ƥ\n6���Y/��&�i�Z��','',0,'?'),('�T�٧r��\0����','wp-content/plugins/wordpress-seo/admin/class-schema-person-upgrade-notification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-schema-person-upgrade-notification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�hw�u$�y�\nT([��','�c�z�e[ <*�s�dAf\'9�R�*(���','',0,'?'),('�U4���Nb<#��_�','wp-includes/blocks/video/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/video/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)>�H�h?7F','3�ᙼ�<H�t?>�N�OuΊ���Eg�ݎJ','',0,'?'),('�V&� d�w��[��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/someSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/someSeries.js',0,'W��]H�#�7��E&�','W��]H�#�7��E&�','}���k?�x9�͐J��ϱ3�<�!dt��]���','',0,'?'),('�W�q���\r��Y��','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/search.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/search.js',0,'���f��(Xw�f:���','���f��(Xw�f:���','�`4i�5ު;�v�E-d��V�����ˢ�S','',0,'?'),('�_��\'��i��P�,�Z|','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php',0,'��J��>��)h\rg67�X','��J��>��)h\rg67�X','P��VS\n}{C;�én�N�!c��{�','',0,'?'),('�a�tU�q�^!�0ƣl�','wp-includes/post-formats.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/post-formats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�oގ����.���O','�c�Tl_\"bM*y���\"�N���;,��','',0,'?'),('�f�NU�S�N����ݔ','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/stop_early.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/stop_early.js',0,' ��M:�M$��L$��',' ��M:�M$��L$��','wT��c�a�_�\\B*R�1��>��S�ɼ�Y�','',0,'?'),('�g�������!5�߿','wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/promotions/application/promotion-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6�U�>yV��Tq��\n','�.��m���R���]�o�������ޓ�A�}X','',0,'?'),('�k���zߣ����bo�R','wp-admin/post-new.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/post-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����c\n1�U�\\EȄ','���lr}^�u1w���3;�.�?NN�`r��','',0,'?'),('�l.�,��P��I�%e)','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSetToString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseSetToString.js',0,'��M��\n��?�\n��ϐ�','��M��\n��?�\n��ϐ�','E�vs]B�U^�2O�dX\n��ƜE�h�D���','',0,'?'),('�s7+�j�L�\\F�4��!','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/restFrom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/restFrom.js',0,'B�foN����eȂ�','B�foN����eȂ�','cA5b%\nH͏�\'5��Z�z��B��l�u1�','',0,'?'),('�u�\n&fm���q�C�','wp-content/plugins/wordpress-seo/src/builders/indexable-date-archive-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/builders/indexable-date-archive-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q��jD�m�(���O',' 7�F���@Nl�s������K������J��','',0,'?'),('�vO��#�J�N��+쁁','wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$�2��J��','�/#?T�iOLyv��u��TK���ɤ��\\ػ�','',0,'?'),('�wV�LaNo�yN� 1�!','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Exceptions/ConfigureCommandException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Console/Exceptions/ConfigureCommandException.php',0,'���S���]�����','���S���]�����','�d����6�a�W�nv]{lQJ�*۵��o','',0,'?'),('�{q�C�J�b�Yh','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/tmp/instrument.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/tmp/instrument.js',0,'�{�\\gԤ�\'�WLQ','�{�\\gԤ�\'�WLQ','�/t�?�/���U3o��U��I�����h]','',0,'?'),('�|v�P��0�fh�T�','wp-includes/js/dist/block-directory.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/block-directory.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ÊD�dHI%;��◮','+��OR�5�I:�\r�I�s\"�z���b�����','',0,'?'),('�|�r��I{^�g�ȸ','wp-content/plugins/wp-migrate-db-pro/class/Common/TPF/ThemePluginFilesAddon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/TPF/ThemePluginFilesAddon.php',0,'��ȅO)^�\n�4��3','��ȅO)^�\n�4��3','�J��.y�\n2x�H���/�I)���l�a�','',0,'?'),('���X��\';y���fF','wp-content/plugins/wordfence/lib/wfFileUtils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfFileUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1��}o!8|�O\'��','jc��O�Ro��x���&#A\\!nj�Р�,2�̖r','',0,'?'),('����Ep��p�\0~� ','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-accordion.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-accordion.php',0,'q{c�Mlh�5�]o-�','q{c�Mlh�5�]o-�','`Di\ZO)��-�U%�Wt���|��P���#�','',0,'?'),('���a\0�\"e�a|IJ�=[','wp-content/themes/mint/node_modules/promised-io/tests/oauth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/tests/oauth.js',0,'�T����6��#&���=�','�T����6��#&���=�','�ؕ���S��]�p�A����\"����L�F�m','',0,'?'),('����o�<\"��b��','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/root-nomount.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/root-nomount.js',0,'=��ʏ�.�̋@�ac�','=��ʏ�.�̋@�ac�','r�|-��~���>.��汾�B�\n�\r����Xu','',0,'?'),('��ڮQ1��l�P�3','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/dash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/dash.js',0,'p���h��k��j','p���h��k��j','F�GW`��&�M/��-�Kk=z�O&I�Ӻ`�','',0,'?'),('��@��{�J��5䷴X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,�:)��؋\"�QqY','\"�Oo�ۈ���<��oES-MO÷�YN�!��','',0,'?'),('�����&�q�j�d6','wp-content/plugins/wp-optimize/js/wpoadmin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/wpoadmin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��cYЮ�~�E}\Z\n�','�4������A���GѭC\r�iL�eDƎ�\"���','',0,'?'),('���+P��%�8���B\0','wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c��|L��7���\0�','K���O=V�AN�:&���1�όE7�ˬ','',0,'?'),('��uXf�R�_z�� ˈ','wp-content/plugins/advanced-custom-fields-pro/includes/rest-api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/rest-api.php',0,'�Tn�%7�$mgi���','�Tn�%7�$mgi���','y2��i�\Z^�lgf?Q�;��9�[���n�','',0,'?'),('��}9Σ��\'�%�7','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Command/XliffLintCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Command/XliffLintCommand.php',0,')E�:D�,�1�i���',')E�:D�,�1�i���','��MA�t���ў`Ee�mR�YB�e||^�Вo','',0,'?'),('����L��6 ��׳','wp-includes/ID3/module.audio.ac3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ID3/module.audio.ac3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>Y����\Zk0�aM','�b��^#��¨(t�^�rߘz���9�F���','',0,'?'),('��|��I�J7�>Ҏ�','wp-content/themes/mint/node_modules/bower/lib/templates/helpers/indent.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/templates/helpers/indent.js',0,'��*N�\"���̟\0y','��*N�\"���̟\0y','-��E\Zc?&���H?��+�=l� oP}:uH','',0,'?'),('��!�ҙ��9+��','wp-content/plugins/wordpress-seo/js/dist/general-page.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/general-page.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w���$�E\n����w�','�y��9�z��?�[U����h8?�6ڙ-K3o','',0,'?'),('��T��V���\\��','wp-admin/import.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';���\0�Z�\'��0�o',' UI#��f_�\\�\n�S3<��2Y�Zm8u','',0,'?'),('��5�l|�~�����/O','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/doWhilst.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/doWhilst.js',0,'g�f����\nZBZ�','g�f����\nZBZ�','���������{��~#�Ӵ���&Iu�1��','',0,'?'),('�ͫ5��>]������t','wp-content/plugins/wordpress-seo/src/models/indexable-extension.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/models/indexable-extension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[��|\0�$�3��1l0','��Q�<�.��0]�Zk�:�:/�m�����','',0,'?'),('��\Z�l�c���RS�','wp-content/themes/twentytwentyfive/patterns/template-home-with-sidebar-news-blog.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-home-with-sidebar-news-blog.php',0,'?B;�6�q~�65\0\0�','?B;�6�q~�65\0\0�','0�y+�M��A4���<�x��a��{����','',0,'?'),('�֍�^�a\r��;���5','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/method.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/method.js',0,'(�\'>��D�K��7C','(�\'>��D�K��7C','z��PZ�Do�?� �R|wԿ#�wբb#�I','',0,'?'),('�ܵ[Ҳm%�6�S8:D','wp-includes/images/toggle-arrow.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/toggle-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��·�a��;�d��*�','[b\Z���;�]�f�0���s|:�����%','',0,'?'),('��)G*5ml�x}0�Z?','wp-content/plugins/wordpress-seo/css/dist/filter-explanation-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/filter-explanation-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����h/��Q�j�ٮ{','[��ak���H���(IG(�9\0pH�wH\"�wu','',0,'?'),('��Q��<��Q/�O�[','wp-content/plugins/wp-optimize/includes/class-wp-optimize-table-management.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-table-management.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{\Z����G9@VW���','Ѣnr�,��ʯzIm�n2M�����m�E�)q�','',0,'?'),('��Z�M�.�\'�A�5F�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/merge.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/merge.js',0,'��m�Ɗ\\u��\\��tS','��m�Ɗ\\u��\\��tS','\"��<nK3_�Ȋ�/�/�]����Ϯ�b�CQn','',0,'?'),('�� �K�8p��\rc�\Z�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/IncludeSystemSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/IncludeSystemSniff.php',0,'ֶ��#�/�M2l|��q','ֶ��#�/�M2l|��q','?A�{q5��gs�?P�^O*5����$w�X|�','',0,'?'),('��ŕ~0N����Җ�b','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/contains.js',0,'�-�]J�^�QsjA\\�l','�-�]J�^�QsjA\\�l','hg��ջ��E}c1v���ԛ�[C-�QI�m','',0,'?'),('��\rI�7u@_�ryr�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseLodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseLodash.js',0,'�D�Yk�_-ctuCh�0','�D�Yk�_-ctuCh�0','.s}b�<O��?�\"T�cG���[��rC�?�^b','',0,'?'),('�����$�Oq�yܹ�','wp-includes/blocks/audio/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/audio/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','px�ں����5)C4\ZM','^}��b�>?����K�8<�R�܊$��{0�6��','',0,'?'),('��!ެ��߳���p','wp-includes/images/crystal/default.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/crystal/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�>)*/��!�-�','���n$���_�u �$Q3��E�r�|Jm�','',0,'?'),('���p��j�T7�7�͚v','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.min.js',0,'v�\0?����4�ҝ�','v�\0?����4�ҝ�','��y�R��f�)���j���>�߮�[�0��','',0,'?'),('���I 2�R�NjY��','wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c+9O˚d��/�R\n','�>����s�$���/���C �y���v�','',0,'?'),('�&�M�X��W��O�','wp-includes/error-protection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/error-protection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@G�X=\"��>�7�Ś�',',��끭@�cZ�/_�,���<Җ�k','',0,'?'),('��2F�=XO���?��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/combine.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/combine.js',0,'T�U�K����&0��','T�U�K����&0��','�+���B$�?�S�g�pJdZ,Y �=��W','',0,'?'),('�\n|��N\0��Vbe�zf','wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/eddsa.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jodid25519/lib/eddsa.js',0,'����c�\Z���|�2u�1','����c�\Z���|�2u�1','LI�W�7obXE0����j��Wv�K��r�i�','',0,'?'),('�K�@��O �%��{f','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/kindOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/kindOf.js',0,'Ѡt�k�g�w�ed_#','Ѡt�k�g�w�ed_#','���U����\\{!�~v�k?�a*\"z�5��$t','',0,'?'),('���\Z�H�a�Ϟ��','wp-content/plugins/envira-gallery/assets/js/addons.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/addons.js',0,'��������v���� ','��������v���� ','f��\n��(?����o�??��a�j�O�m�?*�','',0,'?'),('��\nB��_o7','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^����NK\0Z� ','R0�H�EOp�+���\Z�)�c��D*<o1���;','',0,'?'),('���L�\'����','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-text.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-text.svg',0,'7�v7/�m���kv���','7�v7/�m���kv���','��HhF���>8/��=���qS�qeM|�7��2?�','',0,'?'),('��O�U�;(z�\0�','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/omap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/omap.js',0,'Rt�t_G\0�x,�o��','Rt�t_G\0�x,�o��','�́�?��C�8e��,��mn��qd\\�� �qN7','',0,'?'),('�{���o#P��v��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/hyphenate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/hyphenate.js',0,'��g�N�1�^�Q��','��g�N�1�^�Q��','����7��@yBw`_��5^�L�','',0,'?'),('�����C��o��(','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/InputDefinition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/InputDefinition.php',0,'C6dݘ�&�#��h','C6dݘ�&�#��h','��BX� ��o,�d�8l��V��1/A��%8','',0,'?'),('� ؛�U.�j|&\n��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/lte.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/lang/lte.js',0,'��7<s�O#=�U��l','��7<s�O#=�U��l','4�\"?w��1��C�Qn��0��xB�*�4z','',0,'?'),('�%)��2�@\n�1�','wp-content/plugins/gravityforms/includes/wizard/steps/class-gf-installation-wizard-step-settings.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/wizard/steps/class-gf-installation-wizard-step-settings.php',0,'vN�8��@�$�i�� �','vN�8��@�$�i�� �','yb\'p6;>�����Pt�j.\'��/q�x��s','',0,'?'),('�)�ʲ�Znf�%��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/fo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/fo.php',0,'ܼ���JmS��X�','ܼ���JmS��X�','�����3vNqF�EX��l�,�ױIЗ','',0,'?'),('�2��W`��}�(TK','wp-content/themes/mint/node_modules/less/lib/less/tree/condition.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/condition.js',0,'`Q�c�&2T4u�','`Q�c�&2T4u�','l��7),���v����w��? E��?t�d�','',0,'?'),('�2|�\"U-��2�p�T','wp-content/plugins/gravityforms/includes/addon/class-gf-payment-addon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/class-gf-payment-addon.php',0,'Ҟ~����W�ϰdSfi','Ҟ~����W�ϰdSfi','�nj���۾�A�Jv=\r_2��{C������','',0,'?'),('�5Y\'�ڀ���`��ѫ','wp-content/plugins/wordpress-seo/src/conditionals/admin/post-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/admin/post-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���s�6`�8U��-','�p�qb,��D������.:��s1ȥ�','',0,'?'),('�5�\"�ʹ�W���?e','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/_mapping.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/_mapping.js',0,'� ����9t\n����','� ����9t\n����','�@�K2�\"�B#�~�>g�WZj�c�m�>','',0,'?'),('�7\\�^�<æ���W�','wp-content/plugins/advanced-custom-fields-pro/assets/inc/color-picker-alpha/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/color-picker-alpha/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('�9�x�oN���z','wp-content/plugins/gravityforms/images/hexagons-bg-light-blue.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/hexagons-bg-light-blue.svg',0,'���P+-@�0@r/��q','���P+-@�0@r/��q','�\rN���~��و}�k�/,&uG~�','',0,'?'),('�:iLUC�)���0��','wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/test/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/test/test.js',0,'�6��p\Z՚��_��','�6��p\Z՚��_��','�� 5O1�n*�;x8�ֻ�S1�@O�K�','',0,'?'),('�<Lt(?E�n�O��fEe','wp-content/themes/mint/node_modules/cookie-jar/jar.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cookie-jar/jar.js',0,'�%����;�G��','�%����;�G��','����ܱ�F��� 5�ϸY<6�a�50ޞ�gG','',0,'?'),('�B���1��nU��','wp-content/plugins/envira-gallery/src/Functions/template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/template.php',0,'�tF�*��a��[��9','�tF�*��a��[��9','<�+c����i��ʶf�t��.�T�r�0�','',0,'?'),('�I?��خ���Q��f','wp-content/plugins/envira-gallery/src/Admin/License.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/License.php',0,']������^��,�',']������^��,�',')/����8o���,�DB��vZ�{�z��+~�','',0,'?'),('�L4�oP!J�m.�\"�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Engines/PhpEngine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Engines/PhpEngine.php',0,'�G��٣����:A�','�G��٣����:A�','���d6���*����B.FiB�v�$fI�Z�Y�','',0,'?'),('�OdB\rN��,\"-Ǖ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/findLastKey.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/findLastKey.js',0,'~�\Z?�8>b��:e�','~�\Z?�8>b��:e�','u\'O�P�q6Jͭ�;!}�:���-��S����','',0,'?'),('�PIU��x�f�J�%�q�','wp-includes/blocks/footnotes/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/footnotes/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڌ�\Z��ZS��I�-','P��I�NΙ���Z��tr\'���ׂ=,]�-�','',0,'?'),('�T[��\r\n��^�p�','wp-content/plugins/gravityforms/includes/orders/exporters/class-gf-entry-details-order-exporter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/orders/exporters/class-gf-entry-details-order-exporter.php',0,'L���\Z�yq\0=�s','L���\Z�yq\0=�s','����Uz/�*�.���+����N��+���+','',0,'?'),('�\\��.+�X�W���y','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/loop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/loop.js',0,'�Bw��O�b�H%G&','�Bw��O�b�H%G&','I]`�u$M�K�»�MT^U�g0���/]<7�2�','',0,'?'),('�\\Д��h��c��','wp-includes/blocks/page-list/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��En�t<��4\0�eJ�','��4숐���7��o���D��74:�J[','',0,'?'),('�a�<�d��Q�8���','wp-content/plugins/wordpress-seo/admin/class-bulk-editor-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-bulk-editor-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���)�Mm�Ӊ�1�z��','�B��W��g�/~��ņ�ݨ&Oc�o��<�','',0,'?'),('�j�1���Ǘ�ENk�','wp-content/plugins/gravityforms/includes/merge-tags/config/class-gf-merge-tags-config-i18n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/merge-tags/config/class-gf-merge-tags-config-i18n.php',0,'C�\nH�`(_Ygf{��:','C�\nH�`(_Ygf{��:','E�&)*[��\'Z�>,Q^q��w����j^','',0,'?'),('�ne���1(�{I����','wp-content/themes/mint/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg',0,'�B:BQ�)�UU#���+','�B:BQ�)�UU#���+','�t�;�ס��N�\n�N���/@�.ٖ\\v�','',0,'?'),('�o���4���f?$�','wp-content/plugins/wordpress-seo/src/conditionals/admin/posts-overview-or-ajax-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/admin/posts-overview-or-ajax-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ָ�DU�~��C�8�','��f�Y{�FY&c��;�k���+�<�{��� �','',0,'?'),('�ry7�L�!_[���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Notifications/Dispatcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Notifications/Dispatcher.php',0,'�D���_�a\"��','�D���_�a\"��','��z�/��k ����u�#{� �q|���r�','',0,'?'),('�sr�0/yJ{�1R�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/Debug.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/Debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���&J]k&�t«��Z','\"���=�V��}o�\rdҪ1�K��W���`{�','',0,'?'),('�tSܩ�<��?-%R*�','wp-content/themes/mint/node_modules/bower/lib/node_modules/indent-string/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/indent-string/index.js',0,'���nX!O���4S=�','���nX!O���4S=�','�U���Մ���+�mk �?�����\"e���?','',0,'?'),('�u1HM:E7/�{�','wp-admin/includes/class-wp-site-health.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T\n�/\0�0u�E�','랺[u�w��G����\\~S\0�n��\ZV�','',0,'?'),('�����.�h��:3�','wp-content/plugins/wordpress-seo/js/dist/react-select.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/react-select.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K]�|I}4�H�X','t���Q���N+p�������f�c��+Z��','',0,'?'),('��ʼ\0u#g1��l9尸','wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-sa.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/licensing/cc-by-sa.svg',0,']Ã�2�d_|e���',']Ã�2�d_|e���','���x�tDb��Z!��bhYe��⮴k��`','',0,'?'),('��ZԬ=!Ri=�7�h�','wp-includes/js/dist/vendor/wp-polyfill-object-fit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/wp-polyfill-object-fit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w$�1)x5)L��{p','�Ljv��㡴y\"0�Mp�@���R�Tඒ�K�','',0,'?'),('��%���;�|���Ⱥj','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-zh_TW.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-zh_TW.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eT��:�a1����JK�','�r�<X���A�M��u��kC��:+sz[�','',0,'?'),('����\"R[�IDL��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/rangeStepRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/rangeStepRight.js',0,'`;�t:~,����<ф7','`;�t:~,����<ф7','��T���?2?6-g7Y��A-�v�>�g�Tc�b','',0,'?'),('���aT�̸����e','wp-content/themes/mint/node_modules/hawk/test/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/hawk/test/utils.js',0,'G�X0�\r\n��亟','G�X0�\r\n��亟','�x\nؖ��[���=p�Q$��0;3SuP','',0,'?'),('��6y�a51�R�*�\'|','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�K>�pϺވ�','�;c�{�R:.���):�R�:��|�˺����','',0,'?'),('�������\rM=+^�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue27.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue27.js',0,'�6�&��w��\n�HP�n0','�6�&��w��\n�HP�n0','\n�3o\\��ls�MT >/ٮw��;p��V2bp6','',0,'?'),('�� 1v���+i\\b�9','wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/select.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/select.html',0,'�T��$K�ۂe�%O','�T��$K�ۂe�%O','B�4�V�ȝ��x��$�`���k��H�c�e\nff','',0,'?'),('��p�4�kcQ�(0��h','wp-includes/blocks/avatar/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/avatar/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D||���P��y�XG��','~_�8x~5K���<A����{��ؚe ��','',0,'?'),('��]tj��O5��u[��','wp-content/plugins/wp-reviews-plugin-for-google/tabs/advanced.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/tabs/advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ҁ�c�$��)�','��<PV�*�|�%���\r��s�HZn�Z\"��\'','',0,'?'),('�����RG���ϑ,�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/xor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/xor.js',0,'��H�������?�K','��H�������?�K','��0�#����y���)��0#g�O)�\n�Y�\0�','',0,'?'),('���<f�F1h�����','wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories-post-edit.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/third-party/web-stories-post-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��fldN�`G��r(�%d','t9�v0��%���+|�Qq\Z�M�f��Y�T�F','',0,'?'),('�ǀ3�<��&��YĆ','wp-includes/class-wp-roles.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���UUKXm88�$��','<�K�aT`D��z��4=Džo�?�]�D�{','',0,'?'),('��f0��ͭ��~�)','wp-includes/fonts/dashicons.woff','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/fonts/dashicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�_rY+ʂ;�','��yU�]f��8���t�����l�L.','',0,'?'),('�ͨ�۟Ƽ�u�G','wp-content/themes/mint/node_modules/clean-css/lib/text/quote-scanner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/text/quote-scanner.js',0,'�ط_�I���ٕyb�?}','�ط_�I���ٕyb�?}','�z�ug�3� R�!wƈ4eí�Y�E�\n H;','',0,'?'),('��2չ��9�^�qL��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/toArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/toArray.js',0,'�f�\ZYЗ��&\\>','�f�\ZYЗ��&\\>','��*����O��{A0ΏA�P�X�^�]\"�1','',0,'?'),('��;�!k`�\"O�_*��','wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/lodash/dist/lodash.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-less/node_modules/lodash/dist/lodash.min.js',0,'�;�R�l����P��_','�;�R�l����P��_','� �G���; �����N��pA5��V�r4U','',0,'?'),('��MO,���s���\r��','wp-includes/class-wp-http-encoding.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-http-encoding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Myy�`DJj�4$ڈ','�~����?��r2߭PɅ[ ���\nY9fK����','',0,'?'),('��c��M�<e�}R�\0','wp-content/plugins/wp-optimize/vendor/mrclay/minify/bootstrap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z)��l�\\%���G','�\Z=y��7����5�-@E���G�lU�7��Ds','',0,'?'),('�����(y�<d�١�','wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php',0,'��n!�v��H�u�[,]�','��n!�v��H�u�[,]�','\0v[����j!���y�a$�A�&�픛�P��','',0,'?'),('����X@A�Xl���','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-form.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-form.js',0,'��E+�M��Oqy��','��E+�M��Oqy��',']!6��gڃ�=���|M�J0@�\'�5t\r��','',0,'?'),('�hUμ��}���Qw','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/openssh-cert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/formats/openssh-cert.js',0,'�:Dڗd1{:���/','�:Dڗd1{:���/','EJ5��@�M@I��+�U���ŝ�W�ʾ�T�','',0,'?'),('��q�n�ղ!*��-','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/min.js',0,'�h�+I�N��w\r','�h�+I�N��w\r','�W�%����t�< ���|g�r��k��@�4�� L','',0,'?'),('��v�-�!\\-��<�','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js',0,'*�^+�Ũf���a�2�','*�^+�Ũf���a�2�','j���|]=~����^�&Ϋ��\'�U�ɋ�b ','',0,'?'),('�J�2�E�X{��}wC','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php',0,'����X��u��Dl��','����X��u��Dl��','<ۗL3>�h��V�?+������Rŕ]`nI�','',0,'?'),('��z��J/�B&C�%','wp-includes/blocks/post-featured-image/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-featured-image/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��Bk5n���ϲ�','��ť�X>�e�9WY�eS�>��!��.���4','',0,'?'),('��[(��Fu;�<s�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-kk.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-kk.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>���C ��','�sK�=�6�om�E?������G���d��2��','',0,'?'),('�!ۅ.�4��qdtP��','wp-content/plugins/akismet/views/activate.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/views/activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z���,��4��z@','·^\n�b��q<v`x��K���Z�W��>�Gw��','',0,'?'),('�#ynہ彐[hr\\�U','wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3]>����^#��;Y�','��O����·��]�V�-������n�.','',0,'?'),('�%�t5E��bt�Qlb\Z[','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isnt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isnt.js',0,'hJ��f�5ȵ�.�g1','hJ��f�5ȵ�.�g1','ջ�Ȕ��]*^ �@���`���v���{�','',0,'?'),('�\'a����\0���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/clobber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/clobber.js',0,'~��태��.��D.','~��태��.��D.',':�>X���M�*GX�k �t�hg=&�B8\n�K','',0,'?'),('�*�6���M7O�b�( ','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionTypeException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionTypeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1���xЋ(T�i�','x�&�)�9���P3U�9z%>��r�\rp��N','',0,'?'),('�+����\n}Y#|�;�','wp-content/themes/mint/node_modules/source-map/test/source-map/test-base64.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/test/source-map/test-base64.js',0,'��1p?A�i��e','��1p?A�i��e','��6��C�b?ہޑ/+�������N�I�','',0,'?'),('�.���u��k��;&','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Writer/TranslationWriterTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Writer/TranslationWriterTest.php',0,'B\ZFc�P���[�3�','B\ZFc�P���[�3�','��^Z����q����\\5:��ȇ9p�(���I2U','',0,'?'),('�1����:���\Z\0�','wp-content/themes/mint/node_modules/cli/examples/long_desc.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/examples/long_desc.js',0,'��!f9P����k�','��!f9P����k�','�!]}U���Nf=�_��đ�G�����/5Nչ','',0,'?'),('�4�#ĔGQ��lǬ,ƫ','wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-json-comments/strip-json-comments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-json-comments/strip-json-comments.js',0,'/�����������','/�����������','���@�VX��Λo��}�aE�T�������o�','',0,'?'),('�5��;T��]��\0�','wp-includes/blocks/post-content.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pj�����{����(��','\"�Y���-aN�Ȃ���������8�ba_�a','',0,'?'),('�6�|;�;8�Q�4�k��','wp-admin/install.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�vʋ;_\0^$���','��h.M� �5O�B�~BS��&���X۱��','',0,'?'),('�9�e�E��bݾl�3�','wp-includes/js/wp-lists.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-lists.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�1��+ޫ7o���T�','%�jhAk��\"q2QW��i�x��F��x�Y�$','',0,'?'),('�Hs-���/ɇ�����','wp-content/cache/wpo-cache/juiceelectrical.co.nz/latest-info/page/2/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/latest-info/page/2/index.html',0,'�#�nq��e��c�����','�#�nq��e��c�����','d>�Q�^�m����\Z��Q�t���f��V�','',0,'?'),('�^E^���f\n2y��y','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isNull.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isNull.js',0,'^\ry�H�Z�a�6/l8mz','^\ry�H�Z�a�6/l8mz','w4Ʈi\0�y4!�|�ϭ�������<&��J�','',0,'?'),('�ip��B��z�K_JS','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/example/buf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/example/buf.js',0,'��u ����J p�','��u ����J p�','�z�_3�i.�\n�s�\\�^�����9��\Z��Y','',0,'?'),('�i��Y�vP,�-�\Z���','wp-content/themes/mint/node_modules/grunt-legacy-log/examples.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/examples.js',0,'�@���+�ik����','�@���+�ik����','q\'=*N�:�0��\0�X`��/yfTr��-w�\0*�','',0,'?'),('�q���`���`���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/map.js',0,'����3S�g�SI&�DWV','����3S�g�SI&�DWV','<$�2���X[SϾ|۩;��t!_\"*����','',0,'?'),('�s�6Z��$Ӿy��D(','wp-includes/blocks/group/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/group/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ab��ЖZ�FU��l\Z','b�S������ ��%�q�R7���F����ֻ','',0,'?'),('�s�0�ʜIJ�1���','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/PhpFileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/PhpFileLoader.php',0,'����n5���q@֍u','����n5���q@֍u','���rџr��% �f\n�������^�j�qd�','',0,'?'),('�x`�*e����ajɀ','wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/default_bool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/default_bool.js',0,'�Y�u���TU&�;ELf','�Y�u���TU&�;ELf','N$�m�n���X����6*[�?��R)\\L�v�','',0,'?'),('�x�M���3\\��$','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/startOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/startOf.js',0,'0����[��X:�','0����[��X:�','3v�v�O��ʂ[��t�\"�t����.ɱU�8M','',0,'?'),('�y6q�����Y���!�H','wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/ConverterInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/ConverterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-vm#ɥ�\0���]�','S��Hm��ƃC-��a�c�f� ����3H�','',0,'?'),('�z9� �`�d3�\0�Iay','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��mg��Q~[#�\\�b�','P��M���T1���;�����B�`����','',0,'?'),('�|���8k1�l\0��0�','wp-content/themes/mint/node_modules/source-map/lib/source-map/base64.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/lib/source-map/base64.js',0,'Xy�5p���n�','Xy�5p���n�','?��^sg�.��\Zׅ�{���1���� v�7�k','',0,'?'),('���dh:~�a���5�','wp-content/plugins/envira-gallery/assets/js/metabox.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/metabox.js',0,'$�\r�_�pU����M','$�\r�_�pU����M','�٫�\0�J5Bs[��<G�̫�M�/�BPE�+�#x','',0,'?'),('��m�r�2R����f�','wp-content/themes/mint/node_modules/bower/lib/node_modules/generate-function/test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/generate-function/test.js',0,'O���� Hn��qO','O���� Hn��qO','�!�.��\nE�/ɮ�î4M/��R��c�y��','',0,'?'),('��\Z5o��#R\'/��l','wp-includes/fonts/dashicons.eot','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/fonts/dashicons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N\Z>w���@�R-/Y�','B\nZ\Z��_p�n͂��Q?/�\r3s�}���)','',0,'?'),('��w�#�Q������','wp-content/plugins/akismet/views/predefined.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/views/predefined.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-~��� r���(��','�73���i�ފ]+��䃇� ����� c�k','',0,'?'),('��v��z�&���Lĝ��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/MessageBag.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/MessageBag.php',0,'�v����6S�%�-f.��','�v����6S�%�-f.��','$���\"�E���A�&PJFj�Fa�&��O�z','',0,'?'),('�����o�u��RCs�4','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time/now.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time/now.js',0,'7�í�Mw�|i�u�@�g','7�í�Mw�|i�u�@�g','u�n��q��fl:|�� \"�qǛ�(��;*s','',0,'?'),('��f;��U��2byz��','wp-content/themes/mint/node_modules/bower/lib/util/download.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/download.js',0,'jP����XQ�\'�','jP����XQ�\'�','�x�G�!}��\r�ލ�d��i�����\0�f�','',0,'?'),('�� @56/�hR���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/matches.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/matches.js',0,'�WZ��I<e��l�X�','�WZ��I<e��l�X�','�j�S�6{ !1S�b�y#�cE�jѮl�`','',0,'?'),('����[e�1n���Ⱥ','wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/example/env.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/shell-quote/example/env.js',0,'���ݤ�C�����@�\0','���ݤ�C�����@�\0',':��3�`�8���]��i\'�^3D+HԨW@h�=','',0,'?'),('����ٝ�g.>SNF*�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php',0,'P�>r_�u�]v�~q�z','P�>r_�u�]v�~q�z','jhL�/�:��28��$�|�zu�]�=�EQ���[','',0,'?'),('����E�?��Юᾠ','wp-includes/js/media-views.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/media-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' )�!�\n���ɒ��Z','�`��|�#IA��Q]�7I�Nm+PǾ��me{~','',0,'?'),('� �v����bu)','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=Y����@����_�x','ް�\Z^3�ɟv�U.a�\r]f�h�I��(s��A','',0,'?'),('��-\Z\"��t�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/fingerprint.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/fingerprint.js',0,'���/t�N�0���','���/t�N�0���','��p\0\\�̉�1����4Z�N]����@��YY٦','',0,'?'),('���R:^�e+x2��c','wp-includes/PHPMailer/SMTP.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/PHPMailer/SMTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Zq�t�)���V�0�\\�','�5P�ۑ&��6�E&*��\Z�x��\'�:��','',0,'?'),('��Y\Zx�[k2��d','wp-content/plugins/wordpress-seo/src/conditionals/third-party/w3-total-cache-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/third-party/w3-total-cache-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X҂���_�HSkH�h','�]�c!���Pa��yc�`�)�G�Qb\'A\r��','',0,'?'),('�ש��D��E��i_�','wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-already-installed-exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation/addon-already-installed-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`G�vE0����s','R묥&�F�^��\n�������~=G�1�_�2�','',0,'?'),('��{&��l��: �T\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/randBool.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/random/randBool.js',0,'��2z�o�!�a�\n(��','��2z�o�!�a�\n(��','�p<��+ZO&��Ͼ2�P�%{7m�~�T','',0,'?'),('��WD�$7��w3��S��','wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-activated-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/third-party/elementor-activated-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ը�.�&�D���','�\0{�\ZY�$��\"7%z��9�㟧��l!�','',0,'?'),('���L۠Hc�;�<�2�','wp-content/plugins/advanced-custom-fields-pro/assets/inc/color-picker-alpha/wp-color-picker-alpha.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/color-picker-alpha/wp-color-picker-alpha.js',0,'tkdL�S����5�','tkdL�S����5�','$�Z��-%�4[�-���=��>!��4����R','',0,'?'),('��=���?;�~7S�Q\Z','wp-includes/blocks/comment-author-name.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-author-name.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B\"k\"���Њ�+^��','�Ӥ��B�&�)�`(=ë,[}ߢ��yE��\"','',0,'?'),('��Cg����}|�E��','wp-admin/js/word-count.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/word-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xgU0��V��','��0�t�wT�������z�+o�f/\r��h','',0,'?'),('�ꆞ�o�H\\J�=T','wp-content/themes/mint/node_modules/grunt/lib/grunt/template.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/lib/grunt/template.js',0,'�G\Z6��������M�','�G\Z6��������M�','�T�\"yt: ���q�7ny� aa�IP��','',0,'?'),('��X1��1��(ߨ�5','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/subtract.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/subtract.js',0,'`�1����(�k�:�','`�1����(�k�:�','�;Fe�2���s���rv&چ�l��o�v�','',0,'?'),('���&mM��+���ƲU','wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-ansi/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/strip-ansi/index.js',0,'�,x�Ŗ�9�&A<��','�,x�Ŗ�9�&A<��','`6۲��JժΌV�H����\04����v��','',0,'?'),('��#��\n+��\nF.�9','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/difference.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/difference.js',0,'�k�9��P� n��(','�k�9��P� n��(','�(��j�\r�嗠0`��Wڵ��lܾ�����','',0,'?'),('��u�E�z���#d��','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MultipartStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/MultipartStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ىٝ����!l.��','�:�NI+Q����o�2�J\\�>U�k��&p','',0,'?'),('� v�O.�|ߤҵ�','wp-includes/js/tinymce/license.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�����x:�`����','Y��#wO�g^\'�b��:�^� =跨|��','',0,'?'),('��-Q�J~�;�oc','wp-content/plugins/envira-gallery/assets/js/lib/clipboard.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/clipboard.js',0,'�z~@�W6*�=\\��/F','�z~@�W6*�=\\��/F','���t��5�U��P��{h��\'W+`���','',0,'?'),('���t\0,v�[���(�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/ProgressBarTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/ProgressBarTest.php',0,'�U[[��%Y\Z�A','�U[[��%Y\Z�A','dU͟,�V�㆓s?d �ܽ��O�c�N�_��','',0,'?'),('���e���f���','wp-content/themes/mint/node_modules/bower/lib/node_modules/widest-line/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/widest-line/index.js',0,'�۠��E�qo`� sc\\','�۠��E�qo`� sc\\','��bf̛��Ը!/#�~�������','',0,'?'),('�L<Q��(��_g ��','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ResettableContainerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ResettableContainerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e).7:�4�]7�]�\"J�','��N�����qbG�x�<�B��\'\n}�Z���','',0,'?'),('� �毅8gu�iٶ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/unCamelCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/unCamelCase.js',0,'[��vp��E','[��vp��E','��t&�h�n@�\\����ʅپu����+]��','',0,'?'),('�$��l�⎙�|�m�','wp-includes/SimplePie/src/Cache/Redis.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Cache/Redis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�3�,˰*��\Z�D�','Y=��s�]u|��U�)V�8��`�^+�>�S��','',0,'?'),('�%z�F�� �;��`,','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sr.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sr.php',0,'E�[�8XY�Bñ��}','E�[�8XY�Bñ��}','R�\0�E���`R��<�ɴ�L����e�KR�','',0,'?'),('�*�#�����E�8�Q\Z_','wp-content/themes/pinnclonesmalltest/dist/scripts/blocks_6abb70ab.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/dist/scripts/blocks_6abb70ab.js',0,'J ��V&��8�MM','J ��V&��8�MM','Jm�s�:���\n�t�\nr�Z��|m�]�%�1�','',0,'?'),('�6L�Y��r\\Oa�.�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/reduce.js',0,'!���l��`��4~A','!���l��`��4~A','\r�S�8�S1�\n�N�Jm,A}�>}�O�','',0,'?'),('�9I�xz\"�T�L1�V�<','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/setParam.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/setParam.js',0,'.;Z����\0^���\ZV��','.;Z����\0^���\ZV��','6`�B`�A�1^���01�� ��$�7*','',0,'?'),('�9�쭴\'og����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/pluck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/pluck.js',0,',��@f�o\r^��`��',',��@f�o\r^��`��','4C�Puk��<C��G��L�D@�x��$�~+�','',0,'?'),('�>ܢ�Ӱ�\Z1���=C�','wp-content/plugins/wordpress-seo/src/presenters/canonical-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/canonical-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�MV����_�,o�v','\"�fK�����CѪv���<4 ιT��&i','',0,'?'),('�C�Q%��@ �Ja �','wp-includes/blocks/archives/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/archives/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�՜VH����Zf��','4!\0�}!�;9o�l�_�l�4��f��L��V�l','',0,'?'),('�E�$�.{�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dropRightWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dropRightWhile.js',0,'o�Q=x��،1��\"Sl','o�Q=x��،1��\"Sl','�N<���\0j�;���m;�9ޯ�5g���B�kd�','',0,'?'),('�G�8[�������(�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/Compressor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/Compressor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2*:<����v�w��','���4NC�x\0ü���-�$�,���Pz\Z�I\0','',0,'?'),('�J+�=Ih5���cF','wp-content/themes/mint/assets/vendor/jquery/src/wrap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/wrap.js',0,'9�T��ە��Rw=�','9�T��ە��Rw=�','ηQ��F���Ѽ@R�8*m\0,�(�����W','',0,'?'),('�Lߨ�Ϥ�(��R�','wp-admin/css/code-editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/code-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��gq���i�s�픋-','�~:\"�`�he&@��*����A�����','',0,'?'),('�XMġ��,+�Jd�P@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/endsWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/endsWith.js',0,'8��I�^u\'wh�i','8��I�^u\'wh�i','��@�>�c�0��q�a�&�Ӕ�;�����4P�u��','',0,'?'),('�Z0�D=�d��s�J��','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/arrow.992a73c2.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/arrow.992a73c2.svg',0,'�\r�P�b����4�/�','�\r�P�b����4�/�','��v����\'L��7|L��𡸖մ~ [','',0,'?'),('�Z��^Ưw����$\Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/ansicolors/test/ansicolors.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ansicolors/test/ansicolors.js',0,')Ji3+;���Һ�',')Ji3+;���Һ�','��:$�4�|���}��Ґ��ɧ������qF�\n','',0,'?'),('�[�<S��#j�#��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseDifference.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseDifference.js',0,'�{��J���\"\r��V','�{��J���\"\r��V','Mwd�c\'���O�r1�̙�1.�݅F(d�dL','',0,'?'),('�jHE�4��5�wn','wp-content/plugins/wordpress-seo/src/generators/open-graph-locale-generator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generators/open-graph-locale-generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B+����9���','�7�YmR�t���Y��V���WJn%�����','',0,'?'),('�ji�M\0p(F�Tw�+��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/pluck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/pluck.js',0,'D�?`%eM�����r','D�?`%eM�����r','`�Cy��A�-ڢ,q�G�iڑ9G���ŋ','',0,'?'),('�m�gq�t k�d�','wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/ssh-buffer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/sshpk/lib/ssh-buffer.js',0,'�p~;����djr�ȉ�-','�p~;����djr�ȉ�-','>�@p�eɍ��RlpO\0^-�GS�����I���i','',0,'?'),('�w��.�Iv�=(^,�','wp-content/plugins/advanced-custom-fields-pro/lang/acf-da_DK.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-da_DK.l10n.php',0,'���5N�2M�X/S�S','���5N�2M�X/S�S','y�@����Ɵ ���@��/y�e$�/?�FX�','',0,'?'),('�{^�Y��\rG=�\Z���','wp-content/plugins/envira-gallery/assets/images/icons/facebook.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/facebook.svg',0,'�AQ�����H{���','�AQ�����H{���','���N͕��{r8���4����.��~C{^�','',0,'?'),('����c�FJF�VH��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CloudConverterTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CloudConverterTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���z��\Z�2���','�a���`�#��\'Y��i�\rT�%�RVG��0N=','',0,'?'),('���5W��k�^�.�','wp-content/plugins/wordpress-seo/js/dist/admin-global.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/admin-global.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��xXF4��T�$h�$�]','~TЙ�$�/6��G-\0HƆ\0��⦟fz4�6�\'','',0,'?'),('���l�hm��fsa�\Z','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ProviderRedirectTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/ProviderRedirectTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�R,^c�\rd�n��V�','_��?��\0z~���A���A��2Q,����Z��','',0,'?'),('���5���-[��','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sk_SK.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-sk_SK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q$Lv��4W�XИ�','��L �n�Ҥ�xfǢ��ϏR�_,9�l��','',0,'?'),('����z�l&�&�J�','wp-content/themes/mint/node_modules/less/lib/less/encoder.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/encoder.js',0,'�Ф9ʰ�Th��u�b','�Ф9ʰ�Th��u�b','M��`�ۆ��pu��w�^�<�(�qI*V���','',0,'?'),('���?j��(�\"���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/join.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/join.js',0,'��8����<�L','��8����<�L','�[��^ �L���ES��҄���+���|��','',0,'?'),('���\0�� K,���I�F','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/deburr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/string/deburr.js',0,'�-�=ȫ�W��\r���S$','�-�=ȫ�W��\r���S$','�R�L{ʗ�u��f�P���Υ��}�(��q','',0,'?'),('��g�{��32䚪���','wp-content/themes/mint/node_modules/htmlparser2/test/Feeds/03-rdf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/test/Feeds/03-rdf.js',0,'�z�눦#�sQxT:�','�z�눦#�sQxT:�','�^��ŚAE)$PPݖ�/��,h��g��','',0,'?'),('����)�ȫ�h\'D��o','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Presenters/WPMessagePresenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Presenters/WPMessagePresenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lSc�c�ӗR�>���','r�h�\"��o���\\^ﮄf�<,�a}_����0B�','',0,'?'),('��p��K�b��\0!�(��','wp-includes/css/dist/block-directory/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-directory/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;���I�%̿*�','��tk�9�� \r�*7�!&mY�M�$�\\j��','',0,'?'),('���1�[�hB z2��8','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�{g�N���JǸSa�4',')���c{�Q�8G43�G=�ۘ��<wZ�?��','',0,'?'),('���������&��','wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;¯�^Q��\'�����','g��n�\r��L�aP��E����7�|vR�X�i','',0,'?'),('��9\0\0r!�e/�Q��f','wp-includes/SimplePie/library/SimplePie.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\')�Pl�\\��HEz7D�@','�h����~�����X#|Ē^!�s�#��BjQ','',0,'?'),('���:FUY�0�ތ�P','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/clamp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/math/clamp.js',0,'O���\Z�?�7�c_�+','O���\Z�?�7�c_�+','��0�A�hU��2Ji o��q��k+D�d�= ','',0,'?'),('���Y:\"��$�p}��)','wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-query.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/ajax/class-acf-ajax-query.php',0,'#�lP��:�[2?�[��','#�lP��:�[2?�[��','ϊ���Cȗb��f�4�!z�� �`gU0c�','',0,'?'),('��{��P��|&�.\Z�','wp-content/plugins/wordpress-seo/css/dist/filter-explanation-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/filter-explanation-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����h/��Q�j�ٮ{','[��ak���H���(IG(�9\0pH�wH\"�wu','',0,'?'),('����ufEF�*�k{','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-footer-55e7069a.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-footer-55e7069a.min.js.gz',0,'z8�ip&@�R.�$�j','z8�ip&@�R.�$�j','�&I[q���h�R��Ԧ��oS%�K������','',0,'?'),('��T1��Г�����','wp-content/plugins/wordpress-seo/src/integrations/admin/link-count-columns-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/link-count-columns-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�du4�4��J���(','P�6�s���Yc:N��;�`��DSw���','',0,'?'),('������n������','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-jetpack.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]�~]r�M�ͪ(vu','Yz�Ж�4�/h^DϚ���� �؞�@��&','',0,'?'),('��,�x��\0�)�?1','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/hy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/hy.php',0,'��yFX�y�����dh','��yFX�y�����dh','�x:0a�U�nȅ?l�ɜz�&kQ����nU�','',0,'?'),('�տ\\�V�_B���/�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sortByOrder.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/sortByOrder.js',0,'#90�j�l��ܜ��','#90�j�l��ܜ��','�<��=p:܇U_����j���q%�','',0,'?'),('��-��^�$w�y2�,�','wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/jasmine-helper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/jasmine-helper.js',0,'��̓�����^h\\_O','��̓�����^h\\_O','׃F�mo�,�uu@�(�Φ�>`�6ҧ�6','',0,'?'),('��=d���,M-^@�t�','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-fa_AF.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-fa_AF.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ux�D�}\r9+V���[Â','<�X��Ja�k)7��.�u+�ξ�>]\r','',0,'?'),('��G+S����d��x�','wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/BasicMessage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Messages/BasicMessage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k����S��!E��UJ','�BW���T�}7�S�TpZl�,Q��R*E\"�A','',0,'?'),('��v�/9i�B5�g���','wp-content/plugins/wordpress-seo/src/user-meta/domain/custom-meta-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/user-meta/domain/custom-meta-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<��(ͨğ�_� ���','���c�ZIO�\\��z��NL�F�@b̅��B','',0,'?'),('��C�vO�[�۴���h','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/pick.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/pick.js',0,'�F�uGf� ��ָe�','�F�uGf� ��ָe�','mb�2�%m\0B�^����rv\r\r �?j5�6%��q','',0,'?'),('���~\0�aЩ��SՒ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invokeArgsMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invokeArgsMap.js',0,'�\"�7����Q��R','�\"�7����Q��R','{n]i�?�Q�w��T=�w�l�2�)E�i�:j��','',0,'?'),('���j2�}z\':��f�','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/examples/highlight-self-hide-semicolons.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/examples/highlight-self-hide-semicolons.js',0,'�|Pr1e\nҰ.y�3�-','�|Pr1e\nҰ.y�3�-','@���KU7�����M�33P��K�q�_S��r','',0,'?'),('��|�~�������','wp-includes/sodium_compat/src/Core32/Salsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6��):�������','H0��L�ї?�㞹�.1�M�Ie��٣�','',0,'?'),('��b�������|e~�','wp-admin/css/customize-widgets.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/customize-widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hͺ/�ME�߾_C2','?�ε^d���{)iҲU�;�,=5��A��T','',0,'?'),('��td�b�f4P�\\�5','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/semver.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/semver.js',0,'7�u�o��z15$���','7�u�o��z15$���','+���(�`�n�]T\\I�2�� \Z���o��','',0,'?'),('���al�V�?�f�\Zё�','wp-includes/IXR/class-IXR-server.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/IXR/class-IXR-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d߹��$c�9�','\0�{M��U�\rN.�)���-����`wH���','',0,'?'),('�\0h�Kf��\0�','wp-content/plugins/wordfence/images/forward_enabled.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/forward_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\0/3e4e�����','0��Q7018�ު9-�z9ؽq��SrĒ�P��','',0,'?'),('��K�4�Rʵ�o�/','wp-content/plugins/gravityforms/js/duplicate-submissions.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/duplicate-submissions.js',0,'8_\r��\r̽�c]�y','8_\r��\r̽�c]�y','̛@i�wh��@n �V�\n<�����.C#�','',0,'?'),('���m����s�f','wp-content/themes/mint/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary-fail.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary-fail.js',0,'ʥ�2�݀�W�\nm�G�','ʥ�2�݀�W�\nm�G�','؏�@1��LH���� ��\nsv��R�T�','',0,'?'),('������H�06�','wp-admin/images/browser.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/browser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����K\\�b�$�F','&$�ĉ9����~_SH�_�̓�%L���\'&�','',0,'?'),('����8(\Z�j�Z]}','wp-includes/js/jquery/ui/effect-pulsate.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-pulsate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Հ��ʱ�C\0�(IW','�\"��T�>ݾG�(jЬ;_2�A����\'�{���','',0,'?'),('�k��מˊ\'���&�_','wp-content/plugins/wordpress-seo/admin/class-yoast-columns.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-columns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4��Ď-���&','K���) �����Dbx�\0d�\0��8��0=x E','',0,'?'),('� ;P��6��37PUF�','wp-includes/blocks/comment-content/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-content/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v����%�]K�','�U֑�w@�,m1Ŵ�C,�\"���F��Yjk','',0,'?'),('�\"���71�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-cursor/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-cursor/index.js',0,'��L\0eSQ��� �BS','��L\0eSQ��� �BS','�ż�1���s�0go6��V�~EϓAc�l','',0,'?'),('�$4><c��&�c��Z','wp-content/themes/mint/node_modules/domutils/test/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/test/utils.js',0,'���\0��Ƭ���~�','���\0��Ƭ���~�','�&=�iX@���p�����FY8�f�M�7�ֳ','',0,'?'),('�&O�MෝBUW\Z�\0�','wp-content/themes/pinnclonesmalltest/config/view.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/config/view.php',0,'�Bʸ��7�1���l','�Bʸ��7�1���l','�����yS8dR�D�pβ��\\�&�U�0� �D','',0,'?'),('�5��;�9W���\\�e','wp-content/plugins/advanced-custom-fields-pro/lang/acf-ja.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-ja.l10n.php',0,'�(��G\"ǖ���+�!','�(��G\"ǖ���+�!','b��Z;LJ��.peDđb����� ,&_Lr�','',0,'?'),('�9G��n���\"��QH�','wp-content/plugins/wp-optimize/templates/admin-metabox-smush.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/admin-metabox-smush.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\Z��Џ�\Z(�P�}','dc_|�[��N�q��z�t�v�p��!R�Uw','',0,'?'),('�@*Sk��A@\Z.S�r','wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/jquery-1.12.4.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/jquery-1.12.4.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����^{���ZU�X�','����Np�[s�\"`A�_�ۺs�(d��3��','',0,'?'),('�D�w�ʘݺ�[A#O�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zipObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zipObject.js',0,'Ր�\Z�4��Kf[�w4','Ր�\Z�4��Kf[�w4','\'���#as�h��$��xS�_MR��c��','',0,'?'),('�Hpu{�� ��T(��','wp-content/themes/mint/node_modules/cryptiles/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cryptiles/index.js',0,'���]Y�䷉�f��#�','���]Y�䷉�f��#�','7so�x9n�&X������\r��!\"�]�@�o��ݴ','',0,'?'),('�O������6u�}Vj','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-de_AT.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-de_AT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$i\0 V.W�UJa=ʦ�','`�8#�3��#�D�N{v��Wk�1$�Fҥ0~X','',0,'?'),('�P,�\r��S�>̘�}�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFolderException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFolderException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J#TR��x@$S�BH','xE���\'B��= 3��x�I�5�a9X�L\\ſ�','',0,'?'),('�R%\\�m�!R\Z�:�V','wp-content/themes/mint/node_modules/jshint/src/state.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/state.js',0,'�o?��Y6u�{�#�s','�o?��Y6u�{�#�s','x�2y�_��w�O����L��!�2@�f��','',0,'?'),('�U�S�\rB��c>\r�','wp-includes/blocks/latest-comments/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-comments/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O��w���]Sp?��O�','�2���֞>�ܠ�� s�i1B^�\rI�P�6w','',0,'?'),('�X�R�ev�� O��U','wp-includes/blocks/quote/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/quote/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ևF�&��D���ߤ','Y���v�(��->Ӏ/�X��W�V{�p@��yH�','',0,'?'),('�X����g5��(�=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7I �1F�Gu�j^','�� �û���ͥJ��O�mO�:ϙ���l�W�5','',0,'?'),('�\\fE�\no�����GT','wp-content/plugins/wordpress-seo/src/helpers/indexable-to-postmeta-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/indexable-to-postmeta-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1h\'9�v���b��n�;�','k��K�/ᐺtS/�\r�Y�4��rЮ ?��','',0,'?'),('�]E}I�$4G-�3�l!','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_WeakMap.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_WeakMap.js',0,'��z���3R�~u','��z���3R�~u','*�%X�F\"��E�#G��=�����;<6u��','',0,'?'),('�g��d��з��nX','wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wM�Es<Ȏ����c�[','a��dBtV���V�u�MmÝ\'�bm���1Si2','',0,'?'),('�k���%�Q���D','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/lowerCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/lowerCase.js',0,'��c�̪Cz%�.�)','��c�̪Cz%�.�)','m��-\Z�#EV���\0Ur>)���S,*��','',0,'?'),('�pj{\n���g�ULn','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isArray.js',0,'��,Q�!l�J!�/NƜ','��,Q�!l�J!�/NƜ','e�xm=AGӷ�r�˹��20��ygl��x','',0,'?'),('�pt_ Y����7L�Kt','wp-admin/css/deprecated-media-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/deprecated-media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Sr\rI�sL����','�Uِ1m�����ݨ�:����0���ܒ�>�','',0,'?'),('�s�N4���B��>/�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Style/OutputStyle.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Style/OutputStyle.php',0,'�/$ٷ���˿��l','�/$ٷ���˿��l','��%j�feW��\\S����f�x�-d�!\\','',0,'?'),('�y��l(g��brM�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/map.js',0,'���f�R�\ZŚQB��O�','���f�R�\ZŚQB��O�','*��G֣��ɥ�M�z�jN��\Z���\0{�#�','',0,'?'),('�{4����頎�)�Y�P','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-calc.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-calc.js',0,'�H=^9�G�\'�pԎ�A','�H=^9�G�\'�pԎ�A','��q�|Hd�Dt�H�c�@�?k.Ǐ.���','',0,'?'),('��]�[���\r���','wp-content/plugins/wordpress-seo/src/config/migrations/20191011111109_WpYoastIndexableHierarchy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20191011111109_WpYoastIndexableHierarchy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�1���|m��(�','f�~;��Ɣ�� �^@L@�4S�z^ў�O�4���','',0,'?'),('��l?]�Z�jKY�','wp-content/plugins/wordpress-seo/src/presenters/open-graph/locale-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/open-graph/locale-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�zbI2S8w%�z9�','7�1�-Q��V@�6�[o�Y��FUK!�RY��','',0,'?'),('���Je���R�d���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection.js',0,'��@?> P ��)�>\\k','��@?> P ��)�>\\k','�]]$���y��Q$�k=��r�}gd�Jbl�|','',0,'?'),('����T��D��F�K1�','wp-admin/css/media.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�����sh{��','�{2�?@��@n]Q��ߝ7�7����','',0,'?'),('���N��.�c��� ]`','wp-content/plugins/wordpress-seo/src/actions/indexing/indexation-action-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/indexation-action-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ꍺ�<٩S�HQO��','&��4Dք��P�\"����w?��\r��2q�','',0,'?'),('��N�����6����S�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_defineProperty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_defineProperty.js',0,'�1;\"�?t#�gRP5�','�1;\"�?t#�gRP5�','�|��C�i�W-��4�4{Ϸ��&Ct��\Z�f','',0,'?'),('��Ui��\r5�����','wp-content/plugins/advanced-custom-fields-pro/assets/inc/timepicker/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/timepicker/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('��k��b�Z��4?s�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php',0,'��\0N� E�g�Q$�7','��\0N� E�g�Q$�7','=�#� �&q�����k�*���^�8+�K�','',0,'?'),('��C1L=*��\'���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/curryRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/curryRight.js',0,'Fٔ|�7�� �����','Fٔ|�7�� �����','���[�q�\nuSZ���yK�%6P|m� �?L}','',0,'?'),('��w2)R�����vkk�','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-export.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-export.svg',0,'�S���dz��T0c[','�S���dz��T0c[','^�G낓�j����RE �b�Ӓ\'�����','',0,'?'),('���g&�B�\n��N6���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsNative.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsNative.js',0,'q`$��y��ꯌi��','q`$��y��ꯌi��','5�.�����6��%#ebN�Qz���C!�d2�a','',0,'?'),('��a�F(�n>i�\n��F','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php',0,'���,�-�J�u�\ra��','���,�-�J�u�\ra��','ըs7��P8GG�\Z\\��� ����\n�*=��V\0�','',0,'?'),('���v��H�\r����','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json-file-async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json-file-async.js',0,'~��� D���\Zݘ','~��� D���\Zݘ','-�%wg��o��g���e����Mc�o�KHgw{�','',0,'?'),('�����fOƄ���e&�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/CakePHPInstallerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/tests/Composer/Installers/Test/CakePHPInstallerTest.php',0,'�Y�A*��%Z�ن�Y','�Y�A*��%Z�ن�Y','s>�~�b�\0Xw �3Dd�(����4$\n~���','',0,'?'),('��+i��=@�{#K��','wp-content/plugins/wp-optimize/templates/notices/cache-notice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/notices/cache-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȷo^�����Rg','͋q�g����3��������� $��ͬ8','',0,'?'),('��o����mL+��\"3��','wp-content/plugins/envira-gallery/src/Functions/cache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/cache.php',0,'��.��S�&{-�;\Z','��.��S�&{-�;\Z','�\'5��2%���4I��ߌ7���4����P�f��B','',0,'?'),('��/GΞӶ[�ǜ��C','wp-admin/js/gallery.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':�k�v��T\'n��d','�y=���]�\Z�s�]���jpׅ�̛�6b�v��a','',0,'?'),('���[�/�9}�`:w�P','license.txt','/home/adaptiv2/juiceelectrical.co.nz/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���oѬ�����','�m*c*��%�>_|��ya\rv��y�%_�x','',0,'?'),('����2�b��^�ٶ��','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/cy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/cy.php',0,'���!�B��a�I�C','���!�B��a�I�C','� z�>Lؖ���C�S�]�0DE���*','',0,'?'),('��v���K:�ZF','wp-includes/blocks/site-tagline/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�����r�38�ߟ','��Ų�uΑ�u��-��� x��m�oC�\0��/#�','',0,'?'),('��y��8w>}{��1E�h','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Factory.php',0,'�x-t[�_��[�u\'�','�x-t[�_��[�u\'�','�jO���479�9�L�o�zjc)�3��è�','',0,'?'),('��\'B�G2\'?|@��','wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/LogLevel.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/LogLevel.php',0,'�\"aB�]9\r9��xC','�\"aB�]9\r9��xC','n��Yy��\"\0�����\nd#.eg5�6�d\\��>^','',0,'?'),('���7�%�̬���&�','wp-includes/css/dist/block-library/common.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�`�[\n�*hee�̳','�\n6\Z���Fv%G�6M �����zVn�X�','',0,'?'),('��_��\'P�.��4ֽ ','wp-content/plugins/gravityforms/includes/settings/fields/class-toggle.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-toggle.php',0,'�8���Bg�䫭P�','�8���Bg�䫭P�','�]� \r���(��#���<��2I���?ܧz7��','',0,'?'),('��en\'��LBvj�\r','wp-content/plugins/wordpress-seo/src/integrations/third-party/bbpress.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/third-party/bbpress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q7�$��Pv��K(7m','�z��)y���JV����g{ٱxC�\"vFndPX','',0,'?'),('��/�Y�Lx�|�A�Q��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/unset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/unset.js',0,'y��q�in�f�2�JuM','y��q�in�f�2�JuM','�qwg=�?�쿹)��<p\"��LNe�','',0,'?'),('���K-�4�����t��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/StreamableInputInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/StreamableInputInterface.php',0,':�&Hct�\"�ˬ�',':�&Hct�\"�ˬ�','�N�(}�i�`�W� ���jUZ�m�~�ʝX','',0,'?'),('���\r݅�#cq ��-$','wp-content/plugins/wp-optimize/optimizations/pingbacks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/pingbacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�E��5]�/T���v','h �vYE]��!�Y�\02�\r��2\'&�@ W','',0,'?'),('�\0�����.}�fwA','wp-includes/date.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ͽ�Na�e����\\�E','��CR�H��<f�T�|�Ϫ�/\"�Φ�h$','',0,'?'),('���G�O,,��穟','wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!��Z%8��|e�-B�','��ebvTK��-{�� ����<P����)#�','',0,'?'),('���tv�2*+��','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/fill-available.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/fill-available.js',0,'_�^`lHq6:��;���','_�^`lHq6:��;���','-�V���gk1�9���>9��.N>4cM�d8','',0,'?'),('�\n5�n���V��_$ю','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json-file-sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json-file-sync.js',0,'-�r���E�b��&��','-�r���E�b��&��','��b���u��&Z[y\'o����t3p/��z��-','',0,'?'),('�\r��%�A}�* ��V','wp-content/plugins/wordpress-seo/src/helpers/schema/replace-vars-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/schema/replace-vars-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�t�C-����o5��','<7�>��ʘ��O��yky�M��A��&]��','',0,'?'),('�����P< �`�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection.js',0,'�@摓�[dn֛⪐�','�@摓�[dn֛⪐�','�,{s���Z0.&��Ò����?QO��J��R�','',0,'?'),('�\n\r�u���ٖ���','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/array4.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/array4.js',0,'�B�X��I�Kz�','�B�X��I�Kz�','7���@�|�Gdv��\Z���jSˀ �cHם�','',0,'?'),('�Խf�cN����','wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/jquery.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/jquery.js',0,'��̠\'��Vួ��','��̠\'��Vួ��','���Ϗ/N�\ZYj���n�lՃ0d-5�S�','',0,'?'),('�Q���V1c,����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mapKeys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mapKeys.js',0,'DX�E��9)��\n�o��','DX�E��9)��\n�o��','uhml���n�s�\n���,����\rܒE+�','',0,'?'),('�Ԧ���mtY:\'��','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/mapValues.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/mapValues.js',0,'�\"�b��{x��b]�O�','�\"�b��{x��b]�O�','�\\�aP�چ��-�u��8�ʉ�A�ư7���','',0,'?'),('�$�_s���=��A','wp-content/themes/mint/node_modules/bower/lib/node_modules/tar-fs/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tar-fs/test/index.js',0,'�o=�\Zĵ����B��m','�o=�\Zĵ����B��m','OE��IPr��_s�>����ܝ�LU���\ZK�','',0,'?'),('�)v���^�S�H�G','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-inputnumber-l10n.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/forms-inputnumber-l10n.js',0,'L�A|�+���=#��X','L�A|�+���=#��X','ݬ���1�ӐT��0�?�^uR��t����*%','',0,'?'),('�8]>i\n�gR5D�6�','wp-content/plugins/gravityforms/includes/webapi/v2/includes/class-results-cache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/class-results-cache.php',0,'�z\Z���cǬr��','�z\Z���cǬr��','7�sUV�[2���M�j��˛evY�B�g���','',0,'?'),('�=+/��c%��h�1��','wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/graceful-fs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/node_modules/graceful-fs/graceful-fs.js',0,'�g|h�X�[��J�a��','�g|h�X�[��J�a��','�u�W�RN��ij����:ܧv<܁ݹ�L�S��K','',0,'?'),('�?TEb�V+�#闓HC','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/LogicException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception/LogicException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���%�.v��!�{�9','>-�q;�v�3��R�ј��u�A�Ir,��8�^','',0,'?'),('�NOw(VHJ�Qw.','wp-content/plugins/envira-gallery/assets/css/images/icons/envira-ai-img.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/envira-ai-img.svg',0,'��[g�M�3�;��','��[g�M�3�;��','��{q����*ZlfQF��������+2��','',0,'?'),('�N3�} �B�`K�\'0g�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invertBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/invertBy.js',0,'�X���[k����ׂ�k','�X���[k����ׂ�k','���_\r�W��S�\rzN����5�i^�(��i��','',0,'?'),('�P�M��U����vy','wp-content/themes/mint/node_modules/bower/lib/node_modules/escape-string-regexp/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/escape-string-regexp/index.js',0,'{6lm#d����o�\0�5','{6lm#d����o�\0�5','B��<o2��)�Ď�N�Dq�L�?#wC�','',0,'?'),('�QpTQM�a�0V�q?$�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/split.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/split.js',0,'���j���BݣD%{E&','���j���BݣD%{E&','PE�]�͓\n��4�Oi��.�mj���T�Q2� ','',0,'?'),('�R��z~~�ܘ�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Checkstyle.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Checkstyle.php',0,'p�K�Z��\n�co7','p�K�Z��\n�co7','�M��ϠS��-5�x��\\��k�Kvݚ�z�','',0,'?'),('�R�FYT<�Gh��Z�0n','wp-content/plugins/gravityforms/includes/fields/class-gf-field-price.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-price.php',0,'�o�$��X�:}Wb','�o�$��X�:}Wb','<�?��;�E�(��G��j?���f^S�]3�','',0,'?'),('�Uo�#���ډ�?��','wp-content/themes/mint/node_modules/dateformat/lib/dateformat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/dateformat/lib/dateformat.js',0,'�uOh5�N!Yԟo','�uOh5�N!Yԟo','�Vf y�q�ي��o(Ĵ�j��Ѥ��','',0,'?'),('�Z@on�_t�7�lP��','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-globe.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-globe.svg',0,'I����#a�����','I����#a�����','1���U# ]�K՚<�|� �r��6�T%��C�','',0,'?'),('�[���QH\"pS1Ȫ�c','wp-admin/images/arrows-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/arrows-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� Q�}��ydb#6�','�,c�˿\Z�i(~���)����\'��8[A�/�I��x','',0,'?'),('�\\�l/�S�� ��ʨ�z','wp-includes/blocks/template-part/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/template-part/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%R��ǽ.�ϴ���','Sv��\n�A���t&�2A�U�!�u��£g�\0�','',0,'?'),('�]��M�5i.?�2O�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',0,'�0R��$|~�\n��v','�0R��$|~�\n��v','�k�ipE�0mŗ��1t�M�F�e�Z�\n�RR��','',0,'?'),('�g=��F�谆�#:n�','wp-content/themes/mint/node_modules/dom-serializer/node_modules/entities/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/dom-serializer/node_modules/entities/index.js',0,'ߔ��%���\"��E\n','ߔ��%���\"��E\n','x,��U�,2� C�������24��*j5>�Y�','',0,'?'),('�g[�wED!�ؤ�ң^','wp-content/themes/mint/node_modules/bower/lib/node_modules/parse-json/vendor/parse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/parse-json/vendor/parse.js',0,'V}͊��Pjz�R���','V}͊��Pjz�R���','�4\"���6#, )���GILY�۟\"����m��','',0,'?'),('�v|����U����J!b','wp-content/plugins/wordpress-seo/images/open_graph.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/open_graph.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����&=*��I|��','��:��l���SϮr�������-}=I\Z��','',0,'?'),('�x�++��\r��P�','wp-includes/blocks/footnotes/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/footnotes/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f��`���)�_','D邴]����=�呔��2U�h{HE8�A_','',0,'?'),('�}��bʬ���\'l��\'','wp-content/themes/mint/node_modules/minimist/test/parse_modified.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/minimist/test/parse_modified.js',0,'d��V�&���J�z','d��V�&���J�z','0��+��N��S��GZX�Ά�������ʂ�E','',0,'?'),('��g�l�o\"�#_�','wp-content/uploads/cache/bafa9a10948b32da7423e1093639ef91ff0d5a50.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/bafa9a10948b32da7423e1093639ef91ff0d5a50.php',0,'\0#��Uh�sYy?','\0#��Uh�sYy?','j��F�n�ߚˋI�0i�99�P�p��y�,4','',0,'?'),('������9���93%','wp-includes/blocks/comment-date/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-date/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\0�8/�>Y��F','�½2}��8ez�F�>X�:�f�\0Y�\"�M�ꄴ','',0,'?'),('��Hr��a��\\�Ra','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/methodOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/methodOf.js',0,'�W��7|�`��A\Z��','�W��7|�`��A\Z��','�g5��%˃z4�(���K�Y~�7��\n/','',0,'?'),('��[ixT�q��~Wv�e','wp-admin/network/plugin-editor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8@_vaє͓N�|�j�','<� �gK�K�Ԇ�{�ȑn�V��U�̉\n�2�','',0,'?'),('�����K\"�2Z��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/reInterpolate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/reInterpolate.js',0,'5�A�ݿbȍ�<��f','5�A�ݿbȍ�<��f','II����W}r�y�c���!u�uٸǘ$�','',0,'?'),('��F~���y�c7v-','wp-includes/js/customize-preview-nav-menus.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/customize-preview-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','im�����s[�x��','����U�T&ڬ�V��a������XǍ&a','',0,'?'),('����hԯ\"�\Z�y��*','wp-content/plugins/envira-gallery/src/Widgets/Widget.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Widgets/Widget.php',0,'�wߜd�n�ʂ�WD','�wߜd�n�ʂ�WD','3����}�\Z�ʓ+\Z)��R����\n��I$r','',0,'?'),('��%�d�^�S��j���','wp-content/plugins/soil/tests/TestCaseLegacy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/soil/tests/TestCaseLegacy.php',0,'�eO���Ħ�','�eO���Ħ�','\n�܃��Y�>��j@v���R��Gä�','',0,'?'),('��9 Am���+R�M�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/time.js',0,'�+��´K&�д���','�+��´K&�д���','g���9��������0�8�A��� �\ZJ','',0,'?'),('���h�3t� No���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ScopeIndentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ScopeIndentSniff.php',0,'/{G��� Br�3���','/{G��� Br�3���','e��O��\'��\"ӬژjZ��t������ uj@','',0,'?'),('���j�ii�}��P�L\'','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createHybrid.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createHybrid.js',0,'�A�b;�,_~6^!@��9','�A�b;�,_~6^!@��9','�W�0�9����.�13�/=i�\\�,8/��','',0,'?'),('����0�Q��˧\'��','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/node_path/x/ccc/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/node_path/x/ccc/index.js',0,'��~$�-m\\�(t���','��~$�-m\\�(t���','��S+8eB ��{��y(sh���n��3G2�','',0,'?'),('�����I��hR��L�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-qs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-qs.js',0,'����@U�+�->','����@U�+�->','5�z0��>�qaj��Ḑ�2\\���+״*','',0,'?'),('���P�T�=Hz��m','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Storage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Storage.php',0,'+���P��;��','+���P��;��','P�#�� ���5��X���������8','',0,'?'),('��41��\ZW�:3�$�','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php',0,'9w!�#Q�=��*aF','9w!�#Q�=��*aF','�?M^�4��SZ�X�b �8�����\'9u\0�\'5','',0,'?'),('��ķ�9Q�+��u�=.�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',0,'�u̎��#!?5�','�u̎��#!?5�','���pi��=���z+#�8��=��n�~���}�','',0,'?'),('���Wlc�>��2n','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-scrollbars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-scrollbars.js',0,'y_R�m�:�u~�2`��y','y_R�m�:�u~�2`��y','|xm���;��?����^��o�����^&|B�','',0,'?'),('�����\Z�zќ%}','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/FileDumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/FileDumper.php',0,'���kʳg�$���ˌ','���kʳg�$���ˌ','��3�y�d2�dS��62�[!�{\\��sD[0x','',0,'?'),('�ȕ�o���y^z','wp-includes/blocks/image/view.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/view.asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\"��z_&!�[','��s}l6�8y�a��u4�}Q�K��0s�#','',0,'?'),('��C�HN�d0�j�vD��','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/display-flex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/display-flex.js',0,'<T�]$�H�ёg]��X','<T�]$�H�ёg]��X','cD*LWA�&��� ȨZDŽ�fry�F[`�h�','',0,'?'),('���\Z���\Z=/�ֺz','wp-content/themes/mint/assets/vendor/jquery/src/queue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/queue.js',0,'v$���K��y��','v$���K��y��','>!�w�Q�εwq��������P���','',0,'?'),('�ۡDx��L �<����','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/util.js',0,'\n�0�!]2mhT�KV\r�','\n�0�!]2mhT�KV\r�','�Q�y� �1��w�wFdݔ[�)��,�@.��','',0,'?'),('���^�P������#5','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/series.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/series.js',0,'�k���Zæ������','�k���Zæ������','2������;\nHV��%�yhþ��L�pμ\r','',0,'?'),('��;5��r���tk�f��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFill.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseFill.js',0,'�5#t��n����l��','�5#t��n����l��','�����i�U��]������r��9����`ފ�y','',0,'?'),('�䑖�w�7:\'�h*','wp-includes/js/dist/vendor/lodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/lodash.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����C`�]1~������','׳[�p:� �z���K�QWw�t}H��I�( �','',0,'?'),('��i�%���o�)�#��\\','wp-includes/blocks/image/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����N��9#��','�3�Q�X��AeY���t#��@�s�X��{','',0,'?'),('������%�x��_��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/parseIso.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/date/parseIso.js',0,'��9Q3��\\!��,��W','��9Q3��\\!��,��W','�sl���oB�Tq�}�p���\\Y�rw�b���j#','',0,'?'),('���\r.�\Zz��t','wp-content/themes/mint/node_modules/entities/lib/decode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/entities/lib/decode.js',0,'~�\"�qg_��Srk�(','~�\"�qg_��Srk�(','\0ˣ\n�Z\Z�4H#Xi�\"K)��zq3+XB��','',0,'?'),('���d�W�u�����d�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isKind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/isKind.js',0,'�-\Z����ʛ\"`�','�-\Z����ʛ\"`�','�|:�>~�&�:��@���R���C@�s','',0,'?'),('���3�,�e��:��Z�','wp-content/plugins/envira-gallery/assets/js/min/gallery-select-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/gallery-select-min.js',0,'�Ao�Y�lN�%\'y','�Ao�Y�lN�%\'y','#������p����4�%�e0۸ޯ���8','',0,'?'),('���2���:�����','wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b4�\'��&��','ۼ�4P\'���hN�a�>���E�5ఛ','',0,'?'),('�M�}�n�\"4jd�R��','wp-includes/blocks/post-template/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-template/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ÃNʅ\n�N;,k0��f','�� CJ��-�j��\"��XU�Z���uޟ�ȱ��','',0,'?'),('�@��_gU��9','wp-includes/Requests/src/Auth/Basic.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Auth/Basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w�Y{ӓ1}`o�','o��,،�bD\'&<�؟ ��e]����\'�=\n','',0,'?'),('�秌h��i�Ǔ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_MapCache.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_MapCache.js',0,'����طz�61��m0�','����طz�61��m0�','�K�.��M�j�-�pU\r�%�ƍ��G�z�\\','',0,'?'),('��2�E�w��q�g','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionClosingBraceSpaceSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionClosingBraceSpaceSniff.php',0,'�u�\'�aX���+�N;�','�u�\'�aX���+�N;�','�SOx�.����0�k�,_@!�L=R�!�۽��','',0,'?'),('��q��;KT�J ','wp-content/themes/twentytwentyfive/patterns/template-single-left-aligned-content.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-single-left-aligned-content.php',0,'q+?,����2Ŗ��','q+?,����2Ŗ��','*c8��$���y�o�L�F�ͫB\0u��h','',0,'?'),('���m�\"\'�.a�\nX','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-source-map-generator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/test/source-map/test-source-map-generator.js',0,'�>�,�k�͌Qh\Z�!','�>�,�k�͌Qh\Z�!','�V�CM��_�8�D��L8�액=<p�~','',0,'?'),('�\Z-��x7�(A�4���','wp-includes/js/swfupload/license.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/swfupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[�`�^�-�o�QWz','��:)��6�a\"3r��\rP\rN�4�yJ�ַ��U�q','',0,'?'),('�\"���lj͘�F�;,','wp-content/plugins/wordpress-seo/src/integrations/watchers/option-titles-watcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/watchers/option-titles-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0�ĦoF��','�e�:��U��B�U�t�7_���Fb/T�voV','',0,'?'),('�)��訦�(�T���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Encryption/Encrypter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Encryption/Encrypter.php',0,'�MI6��O��apD','�MI6��O��apD','��q<\05\"&sW�)��[ TT� 6m�O�h�','',0,'?'),('�*��ɦ�=�ǁ!��ނ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/totalDaysInYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/date/totalDaysInYear.js',0,'E��_�_�p�\Z���\n�!','E��_�_�p�\Z���\n�!','��I�1�0�i.�g�_# �4)<���J4�','',0,'?'),('�,:���3�չ�C@�~�','wp-content/plugins/wordfence/modules/login-security/classes/.htaccess','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���A�a�b�vr�','C����\'r�9��@�K�ކt�����w#@k�','',0,'?'),('�0��̮��.~����v7','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/contains.js',0,'x���i�Ȍ3�X4','x���i�Ȍ3�X4','�4���i��>�F�>�w�2;����\rs�u��','',0,'?'),('�1W;c�����N�\"�u','wp-includes/pomo/streams.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a��A��m��@4q#T','��m�C���ؙ~�{ҁ@�F}˗nɨ��','',0,'?'),('�C@�\\C��K�N��\n�','wp-content/plugins/advanced-custom-fields-pro/includes/compatibility.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/compatibility.php',0,'ǃZ\Zm�4���ۀ[','ǃZ\Zm�4���ۀ[','P����dZN[4���N�v��GK�@\r6H�','',0,'?'),('�E�[x#����\\+�`','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/semver.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/semver.min.js.gz',0,'i]N�Qד�[�H��p','i]N�Qד�[�H��p','o��q��\"5\\d)~v18G�Y�6�ڻԂ�\\�','',0,'?'),('�Jc�����8f7�-','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/compact.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/compact.js',0,'x<E��;`�;�)E�4','x<E��;`�;�)E�4','?�l�7�)rZ\ZS��]Zx�Mޚ.','',0,'?'),('�J��B�GT�;,l��T','wp-includes/images/smilies/icon_exclaim.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_exclaim.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\\��>5�\0r���sg�','�L�ɵ�H��A(�xʓ2�EP%� ��#���#�5','',0,'?'),('�K�ɳ�#y��lL� I','wp-content/plugins/wp-migrate-db-pro/class/Common/Compatibility/CompatibilityManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Compatibility/CompatibilityManager.php',0,'����ڰ���\r0��','����ڰ���\r0��','�ܞ�M����6ZXm�˯9c�D�\"\n^7�$t','',0,'?'),('�V=��f2�bdޱH́','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayConcat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/arrayConcat.js',0,'�.5lky����bv�2','�.5lky����bv�2','�+٘�R�۾��f&F�}��0:�Eg>R�Ը�','',0,'?'),('�V�^�3��m6�._P','wp-includes/customize/class-wp-customize-background-image-setting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-background-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#��挷[��^�7,','lxE&�35̅��Nj����!%Ƹ��v��','',0,'?'),('�Wu8}��d����W��','wp-content/themes/mint/assets/vendor/jquery/src/deprecated.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/deprecated.js',0,'U�P��u��.wkn��','U�P��u��.wkn��','Uo�۸�\n�����ٙ�Jj��e-������','',0,'?'),('�[��\'/��cͦh��]�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toArray.js',0,'H$4F+o�.\Z�*{�i�','H$4F+o�.\Z�*{�i�','���DRdޑ��ۦ|�mW����J�e}�%p','',0,'?'),('�[�.g\ZjS9�u�\\��','wp-content/cache/wpo-minify/tmp/js-8e731d57.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-8e731d57.js.transient',0,'V��KKu�ɶ�n�\Z','V��KKu�ɶ�n�\Z','�0�X������\n㠙��=@:�����k','',0,'?'),('�^ΖUt���\nj^����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sampleSize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sampleSize.js',0,'���(V�*�K�Aa�\0','���(V�*�K�Aa�\0','�WQi���6}y�*������KV���)ķ','',0,'?'),('�q2t�rۗ,]s*r�','wp-includes/blocks/audio/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/audio/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C�u��Ȁ�c4B�)','(4�K�qb�Q�X�{d��*�P�\n�z���','',0,'?'),('�|�Q� ���R�H�','wp-content/themes/mint/node_modules/grunt/internal-tasks/subgrunt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/internal-tasks/subgrunt.js',0,'�.�,L6,�]�9�T�','�.�,L6,�]�9�T�','�e�>��&=��A�H���T�+�_�ípY�u','',0,'?'),('����pMʚ����.','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-layout.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-layout.svg',0,'K� �1�CL����','K� �1�CL����','�ncX%H���a�����pE��a�-ː͵Mҝ','',0,'?'),('��i]6Z+\\�Nu^���','wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo-black-background.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo-black-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f��14X���� ','� m�[KzW���`\0�m�5��V+�֩�,��','',0,'?'),('���A��J2��iR)�','wp-content/themes/mint/assets/vendor/bootstrap/js/scrollspy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/js/scrollspy.js',0,'�#6�t�) �x�T���','�#6�t�) �x�T���','/nfrA} �:K-�|K�UUu��S����%蟯 ','',0,'?'),('��?�VSS�Bݒ\"�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/collection/find.js',0,'�:^HZ��d��xx��','�:^HZ��d��xx��','�o�s&�����I�u�n,xN缉�K���','',0,'?'),('��u�G��J��\"r�P�','wp-content/themes/mint/assets/vendor/jquery/src/support.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/support.js',0,'�(>��ln(&.]��','�(>��ln(&.]��','�M��m֡��,�b_��)V��~�}{���F �P','',0,'?'),('���l@��4~�Ζy3��','wp-content/plugins/wordpress-seo/src/editors/framework/previously-used-keyphrase.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/previously-used-keyphrase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�b ��>�/�~�F]�','��m1;_52�5�t�NF���Ṟ���㘌�','',0,'?'),('���7�M3�$��','wp-includes/images/smilies/icon_question.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_question.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[-\0�\'��W��F','�7b��|6#����9/?x��~��[��%t','',0,'?'),('����2@�k�w>K�2','wp-includes/feed-atom.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/feed-atom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��K�:0���w�ʏ','��>�g�H�������:����L3?w=�','',0,'?'),('����H\0ۙ��h�C��','wp-admin/css/colors/ectoplasm/colors.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/ectoplasm/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m���fc�=��!�k&','���,���p�6刅d:���a�_�O7�r','',0,'?'),('���S��g�\n`ET�A','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/range.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/range.js',0,'Z\'��Fࡁ1��<f�','Z\'��Fࡁ1��<f�','{م�~����7?�[^��a?١�6�2�','',0,'?'),('��wt�H���-s�\0�n','wp-includes/js/wplink.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wplink.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~a��\0K㳴P�C]�','�Ⱦ����ū��#[\n��p7S�U|�G��G�m3','',0,'?'),('���8��Y�ʈߟN��','wp-content/themes/mint/assets/vendor/jquery/src/offset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/offset.js',0,'J]a�,v��Z�5� �|�','J]a�,v��Z�5� �|�','/�����^�?�,��T�97=1G �\nj�:/','',0,'?'),('���=֬H�@-i��','wp-includes/css/admin-bar-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/admin-bar-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X�lOa:I�|��,o3','��\Z�~�?zFdم��F��JU�g��{�i','',0,'?'),('��p����6�ɨ��ZL','wp-includes/blocks/widget-group/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/widget-group/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^1��; �:ʊ','�Y^��Ġ0ׁ�s��A��єn�-d�v�IO�','',0,'?'),('��m\Z�7o�\\{,���D','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/insert.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/insert.js',0,'mǸ�lgC\0j����','mǸ�lgC\0j����','���}֬o�j��1(�+K�=�|\'�~x��3��','',0,'?'),('�͗�ҽi�G��D�','wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/test/reflect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/esprima/test/reflect.js',0,'.�Dx]�}�N��y','.�Dx]�}�N��y','\n�=st�SJh��aZ1���Q���N�O]��','',0,'?'),('��-��f)�\"�\"\"�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/queryString.js',0,'����U7%Ͽ҃O�e','����U7%Ͽ҃O�e','�g�t�v�`ds�ʂ�D���B[<.7`�\\','',0,'?'),('���2\'Y���$�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-basic-auth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-basic-auth.js',0,'�F/tz�Tl��Es��ً','�F/tz�Tl��Es��ً','�T��?�Y�^Ek7�d�W{�)�d�W�R\"&�','',0,'?'),('��6ν�8�߀D��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/findLastIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/findLastIndex.js',0,'F�}��0m��� �*�','F�}��0m��� �*�','kBfo\r�aSϼqw�G��\"��Y��&�;��','',0,'?'),('��il&o�;�v�Oc�','wp-content/plugins/envira-gallery/assets/js/lib/envirabox-media.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/envirabox-media.js',0,'�r��}��`(\"<����N','�r��}��`(\"<����N','�f��a�.eʟI5�����8O?F�+ٓ`�cf','',0,'?'),('���~� gj�8��','wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���c����+�.\0���','�ЛT �RsC4�Y?��?ҫzȷ��)F�N9�','',0,'?'),('��(B�A!��������','wp-includes/theme-templates.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/theme-templates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�g~��t���w��','H]l)RkZ�ś�e��[�����~��R�s렃','',0,'?'),('���;��\Z4_��[$','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mergeData.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mergeData.js',0,'��4����ZO�Y�&S','��4����ZO�Y�&S','UI�7D7n 4���E=�v�I����\"g����','',0,'?'),('�����*g~|�u�\r','wp-content/plugins/wp-optimize/js/heartbeat-3-8-0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/heartbeat-3-8-0.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����Gk&L� [���-','H��~��z�;M��;��]��ۻ���|��','',0,'?'),('��Y����\\f���','wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce-seo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/framework/integrations/woocommerce-seo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?6��X�a��D`��','Uj�t�cq��|���PΤ7�\ZMv\\{X�sV�','',0,'?'),('��g�z��ߧY���','wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-page-link.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/field-type-icons/icon-field-page-link.svg',0,'���g&#����R:n\\�','���g&#����R:n\\�','RL�M46��]+��meN�w1/�_<֞�ne�ݾ�','',0,'?'),('��-\'f�ߕ?X:4\r!','wp-includes/blocks/table/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/table/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?�!��A���҉��','������5A�@���ȥ�BC*h/���`��ؒ','',0,'?'),('��h�L���JH�X#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�c)��Re�Y�l�7��','.�`�i�W� t1�}�sty�ɪ���!K','',0,'?'),('��;ql\rD�+��\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toPlainObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toPlainObject.js',0,'��/[�6G%�.���R','��/[�6G%�.���R','ҌD�>q�a����KE��֕qC���I�D|<','',0,'?'),('���\'�Ě�d���\n','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesTranslations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Concerns/ManagesTranslations.php',0,'��BE���5S뚸o\n�','��BE���5S뚸o\n�','���J����A1On;����?X�4Ϙ','',0,'?'),('��b�oΒl�,|�o','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/make_.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/make_.js',0,'�r# BYyU��n,� ','�r# BYyU��n,� ','�\\�����;_�����PhzO�\'Z�D��','',0,'?'),('������\\�g/��B;+','wp-content/themes/pinnclonesmalltest/vendor/illuminate/filesystem/Cache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/filesystem/Cache.php',0,'��ScO�fyک_�G�','��ScO�fyک_�G�','Z�yѫi��G�\'�*]$X}��%9ZE�f�','',0,'?'),('���^��\'�q���0��','wp-links-opml.php','/home/adaptiv2/juiceelectrical.co.nz/wp-links-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\rW5t,}�\"�','�Rysx�L9���5\"�CZ�̜��95�� ;�','',0,'?'),('���9�?Y����H)','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php',0,'v�h(����E��\"��','v�h(����E��\"��','G��Pf�V��kH��O\Z0��Ǎ|�_�/(','',0,'?'),('�8Y<_���w����a','wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-addon-data.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/tracking/class-tracking-addon-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s��C�,�=F�`��','tʒ�k��v�\n��,��f#��f(�P��\\','',0,'?'),('����ޥ㪔�$�U�','wp-content/themes/mint/node_modules/dom-serializer/node_modules/entities/lib/decode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/dom-serializer/node_modules/entities/lib/decode.js',0,'~�\"�qg_��Srk�(','~�\"�qg_��Srk�(','\0ˣ\n�Z\Z�4H#Xi�\"K)��zq3+XB��','',0,'?'),('��3��{���v����','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/unmemoize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/unmemoize.js',0,'<<���\Z��O��D�','<<���\Z��O��D�','�^c �Y�����X�%&�R��\n����g4�','',0,'?'),('� &TL������N:k','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/dropRightWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/dropRightWhile.js',0,'��H�v���\r��9/','��H�v���\r��9/','\n#1�\\K���\'ug+/~T����r���H�\\','',0,'?'),('� ��2��������','wp-content/plugins/wp-optimize/images/features/advanced.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/features/advanced.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`g���P�T��x�\"%�','O�v��K+\r[�\Z@��nr��Y�Q�c-���I','',0,'?'),('�\no[���ė�f��','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���l�We�U{�9�','������G����8�=�\0�> �3�wg3.�4','',0,'?'),('�\"��ʶ�N���','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Exception/UnsupportedFormatException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Exception/UnsupportedFormatException.php',0,'L��VF�K��*�t\ZS','L��VF�K��*�t\ZS','J�:����t��/S�4Eg�¬�e���\\*:�','',0,'?'),('�ۥ�q��{���','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers.js',0,'�={fl���ȹ��S��','�={fl���ȹ��S��','On�T��Xj}�ޠ�Սns}��9��>���ʖ�','',0,'?'),('�#Bk_ٔ�{�=ҥY','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/filter.js',0,'0�M\0v�}6uv�','0�M\0v�}6uv�','-����\\���$����@S�`.�>�|L','',0,'?'),('�%n��Tߒ ^�gXΰ','wp-admin/js/inline-edit-post.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/inline-edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&H�/|5�Pl�CA','z�I��Kz����o��Nԓ\Z��6cv.�!�','',0,'?'),('�0Y��!qᾣ�w�A','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Hgblame.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Hgblame.php',0,'\'�9P�P��bt:�]�Z','\'�9P�P��bt:�]�Z','_Y�*�ڽ��ݤ�+���mq7u�x�m9�w�','',0,'?'),('�3��aD�w�P����q','wp-admin/includes/class-theme-upgrader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-theme-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*,��6��Pغͅ��','w�B\\4�/�U`�w�|ܼ�A�\\�uipCj���L','',0,'?'),('�6��ɥ��D�af��','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.3.2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.3.2.js',0,'��I�R��:\"\"Ү��\Z','��I�R��:\"\"Ү��\Z','���8`��f��V�vTu�������*��','',0,'?'),('�6�Z��Ub2:����','wp-includes/js/dist/style-engine.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/style-engine.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�hq�Nώ,�6��\'k','�7?C��<}��M4�J迷�\"q�\0��mH','',0,'?'),('�6��uQ[��6�̜l��','wp-content/plugins/wordpress-seo/src/wrappers/wp-rewrite-wrapper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/wrappers/wp-rewrite-wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�d�I;r�~~U','��$������sU�%;|�^[� ��y8','',0,'?'),('�7ޡ8�R_\Z�ʊ\\W\\','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-search.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-search.svg',0,'����]��u�r�e�','����]��u�r�e�','D���,?N\n����`D��爥��2 x�r','',0,'?'),('�8,�q�;��{�g','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lY�Z�iਆ�3\02[','(��A#��F���~+���Fgh��S�.�b','',0,'?'),('�8�fnT���9���','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/rejectSeries.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/rejectSeries.js',0,'�X�>4]S���[�\0}\0�','�X�>4]S���[�\0}\0�','zw��Oӻ�<)@��>���RN];qk�p','',0,'?'),('�?���Ds��x�]b�','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-tools.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-tools.svg',0,'�Il�q��x���a�','�Il�q��x���a�','Ar�y�s��\"�����ۆ�__l����fK��','',0,'?'),('�V��ᒘr�պ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/source-map-consumer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/source-map-consumer.js',0,'���G���$�ЗBj�?','���G���$�ЗBj�?','c��5V��ߗs����(��o���*{�d�','',0,'?'),('�b)��lUv�4�2�B�','wp-content/themes/mint/templates/head.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/head.php',0,'RDNB!��h��@{�','RDNB!��h��@{�','��#�k\r��z�P��z�o5soI��)�3�9�','',0,'?'),('�g�V�Sf���Rx','wp-content/plugins/wordpress-seo/js/dist/analysis-worker.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/analysis-worker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ؙ�M?�+�u��','����T���M���Ǯr�(�#Bc<_�Z�loə�','',0,'?'),('�j@b_Eݎ�\rdn��q','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/creating-dom-objects.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/creating-dom-objects.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�S��a?�_���','=����R�1�0�w��@}\'�Mvzk�/�#x��','',0,'?'),('�kA�a��[׳t�6w','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/before.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/before.js',0,'�����l�_��K��$','�����l�_��K��$','���n\n0_aEޞ�D���;-c�$��7��0�','',0,'?'),('�m`��5\n+��7��','wp-includes/blocks/search/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/search/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{� ��pA�5O_D \"','+���LZ`�ՉSK9���\\{�nR�H&��@','',0,'?'),('�o��Ʌ�{6Q\"[L�','wp-content/themes/mint/node_modules/bower/lib/node_modules/amdefine/intercept.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/amdefine/intercept.js',0,'�=�z��r�VL��<6�','�=�z��r�VL��<6�','}{�l{?Gէ�zVǜ�4:��]����}}C��]','',0,'?'),('�u�0눷r�ZH�=r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/node-uuid/test/compare_v1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/node-uuid/test/compare_v1.js',0,']UO�v��ӑ���e',']UO�v��ӑ���e','>���`k>^w�춲����Y���QԛޗE�','',0,'?'),('�zU)��퇵�r���x','wp-content/plugins/wordpress-seo/admin/class-yoast-notifications.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�5m�;����Ρ','>s��x�c��M�ٓ���ҠޡmzA�n','',0,'?'),('�z�\r���zW�_�','wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/soberwp/controller/src/Controller.php',0,'<�;p���̰O�','<�;p���̰O�','����aS+ju�`_�&s{>�i������ڇ�H','',0,'?'),('�{Y� bPq�m�','wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php',0,'4����Є�n>��T��','4����Є�n>��T��','T�U��X�8�������1x<a�a=�?Yr','',0,'?'),('�~�>~��\'�p�\r+��','wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-footer-55e7069a.min.js.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734114517/assets/wpo-minify-footer-55e7069a.min.js.json',0,'��U8���~l-�\"','��U8���~l-�\"','b��p������d�Oy��8��^����Y��','',0,'?'),('���i��>�lb���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/number.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/number.js',0,'p�߲\r�}��r��Q�','p�߲\r�}��r��Q�','������OuEi1��0������_���1j��','',0,'?'),('���3�<���>���\Zb','wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedStringException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedStringException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5�6��y�䢴��','�o<�@H �����\ZQ�J���*��9J�M��','',0,'?'),('����X�1�L�w��^','wp-content/plugins/wordpress-seo/src/presenters/title-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/title-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z�� |e�O~�M�і','��kE��˓�I~��-��I\r[�U�@��ez��g�','',0,'?'),('��n&���n�!崬�','wp-admin/css/site-icon.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/site-icon.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^݈�Dž�~g����','0[w!��h��b�4�Q��,���u�L�W�','',0,'?'),('���euO�9���̕�','wp-content/plugins/gravityforms/includes/external-api/class-gf-api-connector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/external-api/class-gf-api-connector.php',0,'9���ؘ����4��','9���ؘ����4��','��☋šL�l\0�d�J,��)�#���G\r+sB','',0,'?'),('����0��-mVZn۫�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/has.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/has.js',0,'��)!ѳ\n^��\Z�8\"�','��)!ѳ\n^��\Z�8\"�','�*����4�\r��:#\\Vſ8\r]��al������\\','',0,'?'),('���!f5���:~l|�w','wp-content/themes/mint/assets/vendor/respond/cross-domain/example.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/respond/cross-domain/example.html',0,'�J�x�T�`�$ջt','�J�x�T�`�$ջt','KӞ���D�\\�_���yo)7\Z.ڄ����','',0,'?'),('������{�e','wp-includes/blocks/comments-title/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v��#>�:�u �p','3igRʈ�(�L�:ʛ�܋-���@�˪G�?\0�8','',0,'?'),('��/�{ה�d��ө�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/indexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/indexOf.js',0,'@|��~�S�aA�','@|��~�S�aA�','�v�m�ӽL%��E#^����$��pU.o]���','',0,'?'),('���4��G�� 7Ӟ��p','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/pad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/number/pad.js',0,'�$;C�ɺ���#�HV�','�$;C�ɺ���#�HV�','���W��u>��g�7/��bl���1�[���tɊ�','',0,'?'),('��ٕ��^l���@Q�','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/add-white.972fe87d.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/add-white.972fe87d.svg',0,'��@�Ʒ���r��w��','��@�Ʒ���r��w��','�]�8��ۜ����w��r/�R6�:9�9(9�','',0,'?'),('��Xt8؋y1�\n7���V','wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/lib/ber/reader.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/lib/ber/reader.js',0,'��-Ӭ��u�i���','��-Ӭ��u�i���','�q�N�qn?�Gz�\'�W�Ѓ�]����','',0,'?'),('����Yh� ����� �','wp-content/plugins/wordpress-seo/src/helpers/user-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/user-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;�6��U.K�','đ-�����\0xB�1C�+D�O��ɭ��%�H�?3','',0,'?'),('��w��4���eճ��','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/rating-star-active.45821ac6.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/rating-star-active.45821ac6.svg',0,'\\�]�a{�����N\\�','\\�]�a{�����N\\�','��Y�Xh�ܳ+J���B4�+��̐J�����+�','',0,'?'),('��w�?a���ڨ���','wp-content/themes/pinnclonesmalltest/vendor/composer/autoload_namespaces.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/autoload_namespaces.php',0,'5�,}vĨ3��G��)�','5�,}vĨ3��G��)�','E�r4@\0�ԡ$��z�3�$l��\Z�`i�ex�l�','',0,'?'),('��{���{8B%@\0�x�','wp-includes/blocks/post-featured-image/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-featured-image/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��Bk5n���ϲ�','��ť�X>�e�9WY�eS�>��!��.���4','',0,'?'),('����EX���|T��','wp-includes/blocks/media-text/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/media-text/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~��q��q�(s��;',' �a�N�o�2��6-�+>��4�c���x]T','',0,'?'),('��r�qtvҰM���','wp-includes/Requests/src/Proxy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ZLp��y�c���','���\\�WĘ:%��W�|�i���!w�V�m-V','',0,'?'),('��0?�(��@%���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/has.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/has.js',0,'�����OA4A���b�','�����OA4A���b�','��erd<37_=]��:@&��&��@RB��','',0,'?'),('��b��ⱯJE��\r��','wp-includes/js/dist/script-modules/block-library/query/view.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/block-library/query/view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7P���UDjCX^F��','�X��B��R��{ʱ���fJ.p�T&','',0,'?'),('�ιqL�\r���M�','wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-dismiss-notifications.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/content-type-visibility/application/content-type-visibility-dismiss-notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G\\rj���83����','�A��(��kn�_8��N$:�\'����6��ʝ','',0,'?'),('���sGW+h�2ѽ��','wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/num.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/meow/node_modules/minimist/test/num.js',0,'<k��*�,�qy~(r?��','<k��*�,�qy~(r?��',')���%�Cˋ\"x�*��v����Tf^Έ��t','',0,'?'),('���P��i4)���','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/reflect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/example/reflect.js',0,'߆�Ҽ\\- >�z_�o�','߆�Ҽ\\- >�z_�o�','�/�G���U�h]���S�+�1�C��\\kֈ�','',0,'?'),('��]j�l�\'��/x5','wp-includes/js/wp-sanitize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-sanitize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:k���E�t6Q��','yΦV�� }ɛq����K>ۈP6��*��C\ns}','',0,'?'),('���W��{�\\,�Yu�','wp-includes/js/jquery/ui/effect-explode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-explode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%�Q�:��DA�-��','�v�5=%B���Q����b���*�u�c','',0,'?'),('��!��4��r��]�','wp-content/plugins/wordpress-seo/wpml-config.xml','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/wpml-config.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','셵�Y��1����',')?$ �7�*o��:���pƿ@��hjx~L�����','',0,'?'),('��71���}\n��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�2+;�F���нNM��','�w��\"�*��5�U T@��nyȳ�^a�u��\'','',0,'?'),('��2.|�,�I`ӌ�xt�','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/NullLogger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/NullLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѹs��ѓTR���.�','�g�.�cʡ�%c&B�8�RL�@Jm��/v','',0,'?'),('���vzG����٧g���','wp-includes/html-api/class-wp-html-open-elements.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-open-elements.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$i�UI�����','���d�H�1lx,Ç��ӳ�J9�a}��','',0,'?'),('����������؝ ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/rpad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string/rpad.js',0,'�[Bu�v{\0t�ymѧ','�[Bu�v{\0t�ymѧ','��%�O���I�+PɌI��z�~��N��\"\r~wC��','',0,'?'),('��B㲬\r��^,���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cloneDataView.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cloneDataView.js',0,'���|��|�3EӘN|','���|��|�3EӘN|',' �ǻT�W�aW�>S���F6���?j%O��R','',0,'?'),('�У�זm��','wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._blocks_6abb70ab.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/__MACOSX/dist/scripts/._blocks_6abb70ab.js',0,'K��b�G$o������,','K��b�G$o������,','z��p5�� �㐂�H�2��\n��Y�zo(n�K','',0,'?'),('�\nr\'���AZ}��!�d�','wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-fields.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/class-wpseo-custom-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')��;��I�a{Ƭ��','��zI���QZpR:Z֡��im��B�ػ\r0��0','',0,'?'),('�p,�%m�u���','wp-content/themes/mint/assets/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg',0,'�B:BQ�)�UU#���+','�B:BQ�)�UU#���+','�t�;�ס��N�\n�N���/@�.ٖ\\v�','',0,'?'),('�\"�����d�8��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Carbon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Carbon.php',0,'�av3Q�N����;A','�av3Q�N����;A','Q�`��?Z�xMQqG1��6��u~�r�t','',0,'?'),('�4�Z�@8\n7f��(^','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php',0,'�v�� �8����,\ZG','�v�� �8����,\ZG','<)ѱTY����.��5�*�ʍކ)��b','',0,'?'),('� ^�+jg�&��6ԅ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/log.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/log.js',0,'�V�Ts0V@jT-�g�','�V�Ts0V@jT-�g�','~��V�h���/��G :q9kQ����%','',0,'?'),('�2X69G3�\Z�+}A�6','wp-content/plugins/wordfence/views/waf/option-whitelist.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/waf/option-whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.������ #�v�}','�i���$��h�}�ws�������X��2�c','',0,'?'),('�5����\r��k��','wp-admin/js/color-picker.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_����;\Z���5�','\n��m��m^�G&%�\0�SKm��Y2p����#','',0,'?'),('�8�������P5aĨ� ','wp-includes/images/smilies/icon_wink.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_wink.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e?2���i����','�(���V��{�V�Bk����o(`Z��V 6','',0,'?'),('�:�%�����ä��Z ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/min.js',0,'w�aZ��Nj�O��','w�aZ��Nj�O��','��Fh!ƹ�X�x��e6��\\��T�++GQ��v','',0,'?'),('�B�Pfn���a����','wp-content/plugins/wordpress-seo/src/helpers/short-link-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/short-link-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n<o�\r�����>c²',']+��-�O�r�l;���(�y�:ze�R��','',0,'?'),('�D�Й��ʟ?�e','wp-content/themes/mint/node_modules/less/lib/source-map/source-map-0.1.31.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/source-map/source-map-0.1.31.js',0,'��\\>q��������K','��\\>q��������K','JCT�j�����ϔ��#��bF[���i���','',0,'?'),('�F�X�k]�uw�[����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/entriesIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/entriesIn.js',0,'���߯�R]k��\Zr��','���߯�R]k��\Zr��','��U�4�ULBS�&��#�G�vEcB������0','',0,'?'),('�K�?��mU�A�k��-','wp-content/plugins/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCliBar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCliBar.php',0,'N�X~<���K�H��','N�X~<���K�H��','8%��V�\n7�+:�딺��>�1��<#����','',0,'?'),('�L\r��L�w��̪�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php',0,'��������jB8���','��������jB8���','�e���r�5���E��dH��?�\Z�a�A�Rd�','',0,'?'),('�Y\nYT|��0��@Q�v','wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/phpcs-ruleset.xml','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/phpcs-ruleset.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ي�j{|DuDn�BT','%x�\Z,�H�i*�3�W=���C��p�B(','',0,'?'),('�an��}�s6��N��','wp-content/themes/mint/node_modules/bower/lib/node_modules/timed-out/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/timed-out/index.js',0,'4W���S\'�A��d2','4W���S\'�A��d2','aPւ2$?/����l��ɟ�s ��IV�]AS','',0,'?'),('�d�#Cg4�K���qV�','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/BnB_Overlay_Item.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/BnB_Overlay_Item.php',0,'Ux��f�Ǥ!��]','Ux��f�Ǥ!��]','Lk�uf\ZJ��u�R�Q�;I��h�(W�+���','',0,'?'),('�f~��k�����c�(�','wp-content/plugins/wp-optimize/templates/database/tables-list-after.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/database/tables-list-after.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�A��� ��ls�','9(��g� ϠgJ�lƽ=����+�Xݖڟ�','',0,'?'),('�hBd�\"�f\0ʉUW�','wp-content/plugins/envira-gallery/src/Admin/Notices.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Admin/Notices.php',0,'��;~x�\"7fw\0��?','��;~x�\"7fw\0��?','��^U�oŤ��(����P���9�f����RC�','',0,'?'),('�q�O�-��q�?0�B�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/collection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/collection.js',0,'c;��m��L��=���','c;��m��L��=���','Cp�G�HJ����%��ƾ����\"8ƒ��ٛ�S�','',0,'?'),('�y��˓��z∃%�','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/pullRequests.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/pullRequests.js',0,'�܇epXm��Y)��u','�܇epXm��Y)��u','QL�Z*6��5`x����]�a���+L�8�U','',0,'?'),('�~\0I2Xې���4�b�u','wp-content/plugins/wp-migrate-db-pro/class/Common/MigrationState/MigrationState.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/MigrationState/MigrationState.php',0,'Q�Œ���-�4���F/','Q�Œ���-�4���F/','���2G+\\0,U�$�(�c��JA�X>�y�h','',0,'?'),('�����y85���æb�','wp-admin/css/colors/sunrise/colors.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/sunrise/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��sjY��\\�RD�U','���S����@/�q9)j�LQc[V��+8�2�','',0,'?'),('��uHGZ^�ꐿ�w�','wp-includes/html-api/class-wp-html-token.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�4�Uk�ulH#�c','T-���QJ�I�|_�V�P.��r.j��a]���','',0,'?'),('�� ���w��ê���','wp-includes/Requests/src/Exception.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������Y�����','�Z������OO]�U@,�j@��mX��-�k','',0,'?'),('��d�^j�fBV��k�','wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':l|�����x�Fs�','/6�@��\Z�?�^�Ñ!?�\'�Cc�|ܙO��$','',0,'?'),('����Y���:���','wp-content/plugins/gravityforms/includes/fields/class-gf-field-hiddenproduct.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-hiddenproduct.php',0,'���P�u�..,��Ѫ','���P�u�..,��Ѫ','^�耭�\\rv\'a�4���X)�d�_u^��.{�w/','',0,'?'),('�����wtz���� ','wp-includes/blocks/term-description/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/term-description/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_6<-�FS*�4+$��)S','-��l���OO ��v!K�;a��vo>�2v�\Z�','',0,'?'),('���qA#\r\"H��ۦ(R','wp-content/themes/mint/node_modules/less/lib/less/tree/variable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/variable.js',0,'X�ms��~�v!�P��','X�ms��~�v!�P��','��5N�r��XMn�0e���G�aNX���o�J_��','',0,'?'),('������*QoŃ','wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.compat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/globule/node_modules/lodash/dist/lodash.compat.js',0,'�m~=���P��F�\0,','�m~=���P��F�\0,','�=@�B��$N�#$���x@�jL^V]:�W�#','',0,'?'),('����?�ڣ+��x��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/sortBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/sortBy.js',0,'d_�����o�{):�','d_�����o�{):�','�\r��c���o���,��ݴE��ń�]P�)�','',0,'?'),('��N������^�J�W��','wp-content/plugins/wordpress-seo/src/models/seo-links.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/models/seo-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4לs�&+؋r��n','n3�$C�0w\"�.d�\\�ܔVʋ+h1PG/','',0,'?'),('��bpͽ�n�kx�#��g','wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/test/integration/test-retry-operation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/retry/test/integration/test-retry-operation.js',0,'��6�R�@=[�D�!&','��6�R�@=[�D�!&','�E��Q]�T�v��|T�b5ۻ�?���g��!','',0,'?'),('��wp�m�T��c','wp-includes/blocks/page-list-item.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/page-list-item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E@cc�(u��<�','����+�+���W��~ł`?\\���!#e~R�','',0,'?'),('���Q��}�4^nGe�','wp-content/themes/mint/node_modules/clean-css/lib/properties/scanner.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/properties/scanner.js',0,'���RCǓ�N��ZUI��','���RCǓ�N��ZUI��','^�)Ti���ϩ0:��� gI_�\"��1�^� ','',0,'?'),('���~�Z���O�%$�','wp-content/plugins/wp-optimize/optimizations/trackbacks.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/trackbacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a!�3\'�!��GV.�F�','o��0K�\"Ģ;4�}�h���U�s\r\'��','',0,'?'),('��h��b@�qġ�0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseUniq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseUniq.js',0,'� .#˞;}h�.p^[9�','� .#˞;}h�.p^[9�','���#5,n��w���X3$�$���z&I','',0,'?'),('��ﺇ��H�A��U','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/search_noise.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/search_noise.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O4������k�i��qm','�a%\0�gUU��E��\Z2˵OS�0���c���','',0,'?'),('��2��fW��F�\\�Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/base.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tmp/test/base.js',0,'8 ��5���)�i�q��','8 ��5���)�i�q��','�@NG�Ӯۏ%�����i8�֯(M��V�β\n���','',0,'?'),('��<���)�\"���vY4','wp-includes/blocks/verse/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/verse/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v��<_55ڬQ785','+�.�����D[�7� U�=�aI��-H\0w','',0,'?'),('���s4(�t����}�','wp-content/themes/twentytwentyfive/patterns/template-query-loop.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/template-query-loop.php',0,'�E䫨�@t��`���','�E䫨�@t��`���','�|�Dd�L%�æ���M�I�\Z�<��x�\"�','',0,'?'),('����PQ�E|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^���Պ<FԀ~��','0����c��b!�<=/���a���92os��','',0,'?'),('��q�ڄ:,��5.�U','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/lib/underscore.string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/lib/underscore.string.js',0,'���7�\0\"�3H��9��','���7�\0\"�3H��9��','��G09���ӵ��}[ X6�ڕ���2���','',0,'?'),('��U���$�\\*�1^�S�','wp-includes/js/jquery/ui/effect-clip.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-clip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S\0��j�,�ւ��C','���Y��VwK������J-u��OT{','',0,'?'),('���f\r��5�\\e*','wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/source-map-generator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/source-map-generator.js',0,'�����h�=��\n�m','�����h�=��\n�m','�èjlVn�@��go�;ҿǪD���j�J��','',0,'?'),('����P�J�t��1z','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!���E��P]ǡ;��','<����\0�\rIB=\"�P8D�\"�����L~�I[','',0,'?'),('����_�� �\0*�O','wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2��k �Fm=�P�u8�','^��<���\Z�����C�/aa���s�|V�s:','',0,'?'),('��B�3\r�qel�L�','wp-includes/blocks/query-no-results.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-no-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P��^>�����\ZX�','�����O���On�l�Rb�Gx��A����','',0,'?'),('��P\Z��/���l%�','wp-includes/js/jquery/jquery.hotkeys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/jquery.hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j��hI�QLZA$Un�H�','��T����f�RMS�9º��MDR��R��N�','',0,'?'),('�\0� ��k~��U5T','wp-includes/widgets/class-wp-widget-text.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��VP����S��','^m��&�浇�t9���¼U���Uu)��v','',0,'?'),('�\0�qZ����3��ɬ�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/expect.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/expect.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZK�2�n�sc�>u�A�','Q��Y�78�S��АlT�F���ȯp�c^�<�','',0,'?'),('��ǘ��9�eAV���F','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/randInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/random/randInt.js',0,'<�Ky9��QS���M�','<�Ky9��QS���M�','�}:\n�����T�(����KKs&�Y�Ⱦv��b\\','',0,'?'),('�\n%f[!aE�r�tg�i','wp-includes/images/media/video.png','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/media/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����u�h����q��','DBU����MiO�b�,���e��=��W�{���','',0,'?'),('�\n��Cm�Q�Uܓq��','wp-content/plugins/wordpress-seo/src/builders/indexable-social-image-trait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/builders/indexable-social-image-trait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�������:���','�.ji�K!��rm2#�i3��N�eS� ���J�','',0,'?'),('�\0��gI������','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchDate.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchDate.php',0,'�ɏ���tJ�0��','�ɏ���tJ�0��','N+�m���e?k�0���j��[.\"7&�T-���','',0,'?'),('�]=��Eq�4�x��','wp-content/plugins/gravityforms/images/gf-creditcards.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/gf-creditcards.svg',0,'�r����g2�,�r�','�r����g2�,�r�','bԙ����S�MD��ɍ���W�E����x�','',0,'?'),('�΅(��u!��IM�','wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Passthru.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Passthru.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�$6��3W\'\0|�zcn','�#���obJ ��wq�U\Z�6�C���','',0,'?'),('�đ�͎�=�W�+@n','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue372.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue372.js',0,'u�L~��<\n����l','u�L~��<\n����l','O��Qܲ�p�rG��ma��0a��4�w}','',0,'?'),('��Ӡ_�Q?����#','wp-content/plugins/wordfence/images/logos/shield-response.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/logos/shield-response.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�\nو1:/(d%܅�','�\Z�jtY�aW=x!��[�4H!|�����','',0,'?'),('�ʩ8��>��Zs��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mixin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/mixin.js',0,'q�E��r���J�Vt�','q�E��r���J�Vt�','c��ڳ��/�C�M��0�>@�t�F�D�','',0,'?'),('�χ���y2ř���','wp-content/plugins/wordpress-seo/js/dist/languages/pl.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/languages/pl.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(`h0m�N��n���ū','�%9�y�$���ڬPj��h�o�Vj��P) �m','',0,'?'),('�&�S짿o�$�0�n','wp-includes/author-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/author-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�eo\r����o���','i���\n�4��S���G\Z�H�3�Ix�Kݩ��','',0,'?'),('�0~G�t{D��\",r��','wp-includes/SimplePie/src/Cache/DataCache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Cache/DataCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����!FB^�3;nE�','�b�i�� �(;0o�������O�/!g','',0,'?'),('�61eL�8]OD�#8','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/addClass.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/addClass.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~Q(iH��E���ܦ','��!��?(��$)x�T+x��-p���]/��','',0,'?'),('�6խė�u�!�8Q�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/CertProvider.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/CertProvider.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{xv�y0��c�遈','m8>���j_u��B�$�О��|எ�C-�','',0,'?'),('�9fHQ�0�8���','wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-entries.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/v2/includes/controllers/class-controller-entries.php',0,'�\r��Cd\"���F','�\r��Cd\"���F','`�7����@m�=�\05���6�Ks��','',0,'?'),('�?8Rm�ТE7h��<�','wp-includes/blocks/buttons/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/buttons/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\���u�*��5�2F�','�ۨ\r�W�d��� �A��! OI�Rk�D�*��','',0,'?'),('�F=��Y�\\y_V��7&�','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/CLI/CliAddon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/CLI/CliAddon.php',0,'� \'JA��.zb\r<��','� \'JA��.zb\r<��','�o6�Z?���$���i���j=cJ�L','',0,'?'),('�G2�E^G\0H�ц�a�','wp-content/themes/mint/node_modules/less/dist/less-1.1.1.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.1.1.min.js',0,'�ע��(Ն*2�z��','�ע��(Ն*2�z��','���bVim�nɰ�f���<B�a��\'�!h\'','',0,'?'),('�G�|$p֠+(�','wp-admin/js/tags-box.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/tags-box.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g4i�e��ڠ�Y,׃','u,�tsn��`�b�$�D�r�FRS��r�ґ�^\"','',0,'?'),('�QC�{�`�\"����','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/compareAscending.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/compareAscending.js',0,'�%Fٱ�B�8�]�','�%Fٱ�B�8�]�','��DU8jP�1_\"��f�l\'��Bz�/��є','',0,'?'),('�Q����ԁ�2�7u�L','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1���3y����1��',' }��N� <�v���B�S%�s\\���S�','',0,'?'),('�R��B�p��m�Z�;','wp-includes/css/dist/block-editor/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3�V���O��/i�','�h����\\���>\0w#��ڸ��GØU�͝���','',0,'?'),('�UA�Q�,U���q���','wp-includes/blocks/pullquote/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/pullquote/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ْ@�;�J�:m�','��Q�Qg�G�a�P0������9B����]H','',0,'?'),('�W�҆������ _?','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/semver.browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/semver.browser.js',0,'7�Q1�q\Z��+�)8','7�Q1�q\Z��+�)8','���j�!g��I�ȭ�n�jDrsg�W!���','',0,'?'),('�fu4c�$��0���','wp-content/plugins/wp-migrate-db-pro/frontend/template/src/serviceWorker.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/template/src/serviceWorker.js',0,'\\)X�lE�>���','\\)X�lE�>���','�{�,��.�?�u�x8�se���F�g���','',0,'?'),('�h;��x\\�Ʒ��','wp-content/plugins/wordpress-seo/css/dist/dashboard-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/dashboard-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n�q��%`���lY','�[i�R*�g=�dC����j}@�a��R��f�Q','',0,'?'),('�r)F�ScS�I���2C','wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_1_optim.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/mirrored_fit_bubble_woman_1_optim.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æt�V��O��+�mF','��)-n����d��\\Go�Q� 3݁�}�2�','',0,'?'),('�w�J�`���B<��\"�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseEach.js',0,'�L�.�+�[�:\r�@','�L�.�+�[�:\r�@','��� x<6����<]��7Ls�{\r���ĐG:','',0,'?'),('�z,/�� h��8�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__destruct.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__destruct.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�\n\\ Wݙ˪m�6,','+�pi�Q|��嘱W)(v��Vy�xV��','',0,'?'),('�o�j����y��V','wp-content/plugins/wordfence/lib/menu_tools.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':��,��sA �¹��w','RY���ӏ���b&b�?`{S�\Z�[>ndW+*','',0,'?'),('��Ca�s�]��n�/��','wp-includes/css/dist/block-library/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o��,��b�,wa�-�','���%#|����K�=w�GO�B�u�Y�#��2hn`','',0,'?'),('����6����6Dj��@','wp-content/plugins/gravityforms/languages/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/languages/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('��Ѻ�\"�P5��^U�\Zi','wp-admin/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7j�R��\n��X��','C��?�c���wp�o�4m�����z �\n�X�','',0,'?'),('��G���V�`y�H<��','wp-content/uploads/cache/e15e504b76b0ee14d38df533be66efa98d33d00f.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/e15e504b76b0ee14d38df533be66efa98d33d00f.php',0,'��A:��0� �/A;','��A:��0� �/A;','�3�e�$�i��bG�En��\'^����v��L�','',0,'?'),('�����_�2\"�e��b','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/authorizationTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/authorizationTest.js',0,'�x>Ͻ~^�I�\0~�sl','�x>Ͻ~^�I�\0~�sl','��qQ�|�|�N7w �>���@�t��1�@�F','',0,'?'),('���5���)��lt�','wp-content/themes/mint/node_modules/grunt-modernizr/lib/modernizr-dev.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/modernizr-dev.js',0,'��&�;��]V-V�*e','��&�;��]V-V�*e','�74�\"P;�:)!��N;��$i)r���\'�&','',0,'?'),('��m���z4�L��K','wp-admin/images/xit.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�`��p�R��,��_�p','��A�\0|=f�����J�S<�������|','',0,'?'),('��wF��ȶ���# �','wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e���j�-���=�\n','�W�OT�6W���[ܺ�\r�$����x���C��^','',0,'?'),('����A�G,��<���','wp-includes/js/jquery/ui/effect-fade.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-fade.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ɋ��%:�wF�5�ژ�','ND�\"x\'3,��3a���\n��V�l���E^`��\n�','',0,'?'),('��b�jC!.J�-b��Y�','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/bootstrap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/bootstrap.php',0,'���Ɲ\n%\0���','���Ɲ\n%\0���','�g&�Agp��I�84�\Z�����B�j��','',0,'?'),('��3�l8�[,�ݧ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createFlow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createFlow.js',0,'�� Nٍ ���H@�','�� Nٍ ���H@�','�I(���������CqW�fD��`��,�#}�m','',0,'?'),('���tb���`s]\'','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/AbstractProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/AbstractProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ޛ�e��Z���� @','�ڨ,��UQ�;V��]�����b�]�[��+�6','',0,'?'),('��:\Z�`gI ��>P)','wp-includes/assets/script-loader-react-refresh-entry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/assets/script-loader-react-refresh-entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����p��:P�p��`','n�ƿ� �UC��։�:�e���/��<��','',0,'?'),('�ľ��l���z�\nơ','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/css/extra.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/css/extra.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Ѕq�x�{Ԓ_K','z��(W?\r�3`�\"vO��%�%��^�I]�:�J�','',0,'?'),('���a��0}+�=��Ug','wp-content/themes/mint/node_modules/rimraf/test/test-async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/rimraf/test/test-async.js',0,'��.�ԁ�[�05�*�','��.�ԁ�[�05�*�','����w���t�SՉ)(�e��M#\"Ͽ~m0\ri�6','',0,'?'),('�ݐj��xӟ�vFP��\n','wp-includes/Requests/src/Exception/Http/Status305.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e���Q��6�)���',',�����<e�/�r�$����}�S','',0,'?'),('�ߴԺ�I��oZ���8','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/keysIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/keysIn.js',0,'�һ����3q��*\n','�һ����3q��*\n','8�1W����I������V��F,���Fe�}��','',0,'?'),('����C��pewff','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/identity.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/function/identity.js',0,'��v-���}��^�O&�=','��v-���}��^�O&�=','�sS�I��B��s���A�ϫ(����Z��(�6','',0,'?'),('���o���f$�΄��','wp-includes/Requests/src/Exception/Http.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�8��Z�Z���͏�','�Ѐn�W�a*��!c!�E���φ�Ņ>','',0,'?'),('���`\r� �uU��)�I�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`�0�*�$Ґ՞0','P�og߶��ĺ�Nɖ�˂��sӣ���3m�{�','',0,'?'),('��p�h��0TԢ0DN ','wp-includes/class-wp-block-templates-registry.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-block-templates-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l���\\&<H��%2� ��','6;(l���d]�<���v�C�� LWJb\r�y','',0,'?'),('�G#P�z<ۑ�����','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/MarkdownDescriptor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Descriptor/MarkdownDescriptor.php',0,'\"�F#_m?�!�Y','\"�F#_m?�!�Y','��^�ɭ�ԩ5�Tà�%�4=�5?\"�$nD�I','',0,'?'),('������!��_[�a�G','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/QtFileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/QtFileLoader.php',0,'&�e*/�,Į\'�{����','&�e*/�,Į\'�{����','�nʓ�\'�R��3G��l���h��\"D�','',0,'?'),('�y`\"HuL���I��K','wp-content/themes/mint/node_modules/htmlparser2/lib/Tokenizer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/htmlparser2/lib/Tokenizer.js',0,'�N2U�~Ju=i�x�M','�N2U�~Ju=i�x�M','��>n�@��l�_�\\��W�kB���5C%','',0,'?'),('� ς� 1X��v9��Z�','wp-content/themes/mint/node_modules/yargs/lib/usage.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/yargs/lib/usage.js',0,'��LS��I�\r����','��LS��I�\r����','i�j6�|S1d�v�9�\'��]���_�','',0,'?'),('����/�t�j\r�?�#','wp-includes/blocks/site-title/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-title/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?���\Zj�ɛ���','�R+��j�e��,*�6a,R_~O�z�W�k�(','',0,'?'),('�����հ ̋�Ȳ�S','wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��(`]V�ţ[^���3','Fܑ t=Y�+�Y�ҁ��e�۾K�b�6W��','',0,'?'),('�k\n��\n��yq�8\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/indexOfFrom.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/indexOfFrom.js',0,'���\r\r�/�\\����4','���\r\r�/�\\����4','F�w���`a=��l ��g}�0:�}*��c','',0,'?'),('����!MݍQ�(G��~','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/toArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/toArray.js',0,'����1 �)��^Iɞu','����1 �)��^Iɞu','��O�0\nL��*ҠLɠF��vǨ�!���D\'ޙ','',0,'?'),('�jۻ�����2\"�','wp-includes/sodium_compat/src/Core/AEGIS128L.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/AEGIS128L.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sc���s�qA��d+�','M-���f���N�*�7�`�2J�ާO?=�','',0,'?'),('��C�\n��&v��L','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isArrayBuffer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isArrayBuffer.js',0,'A������x0B>�','A������x0B>�','O#5o2Hr�_.��iK;���\'��g�sv�}6��','',0,'?'),('� �n�$��q��^qf��','wp-includes/images/smilies/icon_lol.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_lol.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@�s\\e��|�sˎD0','��Y����a�^F_��8��ت2�3�%�j���','',0,'?'),('�#����S��\r��3�','wp-content/plugins/advanced-custom-fields-pro/pro/admin/post-types/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/post-types/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('�\'^�D��IG�1��!','wp-includes/ms-site.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ms-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�u�Vq\r� �*�1�MN','�<7���=���o6}Υ�ɤ�k�K�鐐S','',0,'?'),('�(���Ϲ��ز���','wp-includes/blocks/video/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/video/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e@W�n�i\r�缎d','����䨉�j�_�\Z�\"��Gp�.L���J','',0,'?'),('�(�� ��o48P��','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/lastIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/lastIndexOf.js',0,'�-蕅s+U�.K�o','�-蕅s+U�.K�o','\Z���@C�}D���N�]���e�M��\ZT�','',0,'?'),('�*T�u\r�����~�m','wp-admin/css/colors/ocean/colors.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/ocean/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&�����$��X�','�;�� �ri�RG�7mo��T*��.d��','',0,'?'),('�,E�y(��\Z��','wp-content/plugins/envira-gallery/src/Functions/gallery.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Functions/gallery.php',0,'���FO/\"d��y���','���FO/\"d��y���','�e,���������i��7��:{ � ,','',0,'?'),('�1l<� t~L�Uw�','wp-includes/class-wp-locale.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�\"�͈�_�o[Y9�(','�����I�z��ސ�;/C�:WCN���לP','',0,'?'),('�=�,��w��\\�7w','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/load.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/load.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|��\rZ���@4�f?#','}�pf�0f\r��iM�y����:6�9B]����','',0,'?'),('�>�c�1�9)','wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.7.1.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.7.1.js',0,'�&��yJ�l��+jZ','�&��yJ�l��+jZ','�A���I��cWˣ�]�p>(��_2���I�','',0,'?'),('�@<=�©�q�iǶ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/umask_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/umask_sync.js',0,'��G��\n�Ȓ([lw ','��G��\n�Ȓ([lw ','��-��\0%�Y�v����t��W�j�@���]��','',0,'?'),('�E-j��1j��\r�E�','wp-includes/registration-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/registration-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q<۾\Z7�M�v��','Kd���_�MF� X��X�.,\'T\\��6���6','',0,'?'),('�E�����%\"9<gԩ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/flowRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/flowRight.js',0,'����j����:���V','����j����:���V','_V�������CBp�N�mt\r��Wɇ��+�]��','',0,'?'),('�Hz�t�Q����j','wp-content/plugins/wordpress-seo/js/dist/faq-block.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/faq-block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D��7�a�/���g4','��}K6�כ����,�{�>�V\'aV\0�h�J�K','',0,'?'),('�Lu���w?���q9','wp-content/plugins/wordpress-seo/js/dist/bulk-editor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/bulk-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f٠�|\'�Z��u(','d\\�t��\"ro��E=G����*�ՙ�]x�O','',0,'?'),('�Mt��A^B��0�D|�l','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_skip.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_skip.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^�GJآ=�e\Z:30a\r','Wf���e]���dҙ9�N���P�\"�Mc','',0,'?'),('�R\'\\�{�j���bg[','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/querystring.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/querystring.js',0,'�տ��/TA�C|��','�տ��/TA�C|��','j�#��b�ݵVf�1�p��O�`�p7~gf�_��','',0,'?'),('�T�qƳUW�\n�q<','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/setAttribute.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/setAttribute.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5?>%��w|�VB��Y','��3vvp#4)}Vp�c�e�����ks���','',0,'?'),('�]oM�se��J4�','wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y�t���䈵�J�','�H��(��\0\"�\0h^\0�u^۴��!\Zl','',0,'?'),('�b_���<&���p��','wp-content/plugins/envira-gallery/assets/css/images/icons/envira-ai-green.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/envira-ai-green.svg',0,'�,mF�M��`n{��','�,mF�M��`n{��','Sw���,~� ��*_r�G��ȜaN*�k��Kl','',0,'?'),('�f ��r�p�(��p�$�','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��bD�@p�G+��','*DZ�>�Bg�&Y�Y������4(<�/','',0,'?'),('���Nl0<+�ox','wp-content/plugins/wordpress-seo/src/generated/assets/plugin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generated/assets/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�.r#�hc�\"���','ǑGiΤ�,��7%�V`�1�<�MƊP�Ma��i�','',0,'?'),('�������<�x�B�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�SPZ�~����>�#�','1\n �����i����#B�\0ِ��o��lE�K','',0,'?'),('�����`�,<��?','wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/AbstractLogger.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/psr/log/Psr/Log/AbstractLogger.php',0,'&�`~S�aS&����','&�`~S�aS&����','��7��Z?ΙA�u�*/��\0�G#�����2F�','',0,'?'),('��ثGl��P����&','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/EmptyClassDefinitionSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/EmptyClassDefinitionSniff.php',0,'ٛ��ϙ�y����\nt','ٛ��ϙ�y����\nt','����Ņ�E0�,a~�ܶ7�^�x�ʽ�','',0,'?'),('��5�&$!�b��11�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/endsWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/endsWith.js',0,'����~�9\'�я�)6','����~�9\'�я�)6','\'�5ȓ�=\0���_�4*�5�r�ج�ô�&�','',0,'?'),('����e&�ZM]܋n�O','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/concat.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/concat.js',0,'F � >��~s��\Z�Ļ','F � >��~s��\Z�Ļ','�F*��3��.kD��C��V�rDS\0Ƀ�ˁ','',0,'?'),('��G����W!��3','wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Creative_Item.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Frontend/Gallery_Markup/Layouts/Creative_Item.php',0,'~k�:ҶXT�����H�','~k�:ҶXT�����H�','%df�ۯ(��1��kkP�n��#��D�DZ F','',0,'?'),('��e�-��Rȉ���L:�','wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q���z��n��z����',',�r��PQ\"q2`�C3�&\Zˀg�Z^�6','',0,'?'),('��~��{��C��}�d','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/AbstractPlatform.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Platforms/AbstractPlatform.php',0,'^���ą(����3�c','^���ą(����3�c','�*֔?�e�>%B�c���`j�m`�+�M�','',0,'?'),('���]I-;I�Fghq�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/equals.js',0,'������SSs��\\f','������SSs��\\f','�K�ܕL��\Z�]��D�q���\nk8�#v���','',0,'?'),('�����Į��:<��<b�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/divide.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/divide.js',0,'K�鼈��E�\0�DZ��','K�鼈��E�\0�DZ��','��7CJ��w��6~��y�3=��)3�Fx9����','',0,'?'),('��ZU9M��(���','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Command/HelpCommand.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Command/HelpCommand.php',0,'0��4r����O�i�6','0��4r����O�i�6','���A��g�D$wtv�c��^�-<;�L�r���','',0,'?'),('����X�l�1�*�J6��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/DeprecatedReviewNoticeDismissed.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/DeprecatedReviewNoticeDismissed.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[\\��}پ2�C�','�B=.���\n���$�e�V�=\0L���KE�.�','',0,'?'),('����2�h6͒�\r�~','wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=Q�\'��,��\09��3','|��\"�`!�Ce�l�U�t�|#o���H�$�','',0,'?'),('��M/���[��^{�=e','wp-content/themes/mint/node_modules/jshint/node_modules/underscore/underscore-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/node_modules/underscore/underscore-min.js',0,'ݖc��q�W�_ۢ�','ݖc��q�W�_ۢ�','��L\00O��2��&�*����:}`u�����N','',0,'?'),('��1�I�i�d����\0','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/border-radius.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/border-radius.js',0,'T@��O�Φ���~n','T@��O�Φ���~n','[V��(��J���-�����r@�y�\"����Z','',0,'?'),('��v���j�H4�%OI�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDeclarationArgumentSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDeclarationArgumentSpacingSniff.php',0,'��������y?��µ','��������y?��µ','e`��*�S��͌\0���/����\Z�0<��`��K','',0,'?'),('�� سf#��\r�y�c�','wp-content/plugins/wp-migrate-db-pro/class/Common/TPF/ThemePluginFilesLocal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/TPF/ThemePluginFilesLocal.php',0,'�\\�+��i%�`Vj�J','�\\�+��i%�`Vj�J','^B��ok��ƽ����e�[dO|���}����','',0,'?'),('��X�*^�ϺR���8�','wp-includes/css/dist/block-editor/default-editor-styles-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' +�bpe�����Q5�','MnP�S�0}s�vـ Cy�O�zO���z����%','',0,'?'),('����##Ցn\ndA\\�e','wp-includes/blocks/latest-comments/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-comments/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����^�^%Ro�n','��^�Տ���I����H ��)���Ma','',0,'?'),('��{0�����l?Ў�','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-basis.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-basis.js',0,'Ҁ���`�X�e�NM�','Ҁ���`�X�e�NM�','��1���\ZW��A�� b�\0wTe��\0�U��','',0,'?'),('��p?E^�@�\'��PE�','wp-admin/edit-comments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/edit-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' WF���\r��B��;','s\"|ڰ�y��,�o?d��aM�E\nJQ�5��/','',0,'?'),('�ﴉ�S:�zb>�6','wp-content/plugins/gravityforms/includes/fields/class-gf-field-multiple-choice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-multiple-choice.php',0,'�~lL~\\�n�n�D�g�','�~lL~\\�n�n�D�g�','Y�r�*�\"�[�}i=dl+Y����͖�H','',0,'?'),('��K�K�?ǫ��<^}','wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/phpcs-ruleset.xml','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/phpcs-ruleset.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ي�j{|DuDn�BT','%x�\Z,�H�i*�3�W=���C��p�B(','',0,'?'),('��*�H�[�T���z','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createFind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_createFind.js',0,'wshq�t��a]�]v]','wshq�t��a]�]v]','��x^5 ��bd��[GY��[�7�Q��D����h','',0,'?'),('��f,\n91��|�8���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/reduceRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/reduceRight.js',0,'�LՁl����Ĺ���','�LՁl����Ĺ���','GG*G�g@rBg�kRfN.3��2`\0-8','',0,'?'),('������U�\\��a�E','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[T�U2x��&^���','*��R��\"���P_p��o���E�F�Β3�1','',0,'?'),('�kG�o��zߜ�N','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/sign.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/sign.js',0,'8۠���f�(z��','8۠���f�(z��','�ݷn�h*x�/��İ<]�w6�,4j8���6_��','',0,'?'),('������ֆ-�8^�','wp-content/plugins/advanced-custom-fields-pro/assets/build/css/pro/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/build/css/pro/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('��dp��O��귾','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Exception/InvalidResourceException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Exception/InvalidResourceException.php',0,'��Fˀ`��C�_�\r�','��Fˀ`��C�_�\r�','w��f���e2 `$EG4�Z�R��Y�;�ϲ','',0,'?'),('�! d����xO\r<�','wp-content/plugins/wordpress-seo/src/routes/workouts-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/routes/workouts-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Н�(��%�;�a(','��� ��\r\0�h�� �^�&�iQ�p9\n','',0,'?'),('�ȴ�Yt�.ƅS�Oj','wp-content/cache/wpo-minify/tmp/js-2b862861.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-2b862861.js.transient',0,'���k�P�J(��','���k�P�J(��','��g|��4Q��b\0$�T4�o n��#����xO','',0,'?'),('�:��Eu�|���*��','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchPage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchPage.php',0,'�I8�C&�h�ǻ��1D','�I8�C&�h�ǻ��1D','P�ba�*0�!g@��H�s*\\C�\r������2�','',0,'?'),('�M=�$J�I�ć�we','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesRawPhp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesRawPhp.php',0,'-D�g��t�U/2R','-D�g��t�U/2R','e�M��/� bL+i�{]�/����E8��S[�','',0,'?'),('�X3�k2����:z�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/zip.js',0,'��[�MXB>�&����W','��[�MXB>�&����W','5�*9=��\"82Պ����!ښ��rG�p�7�','',0,'?'),('��B��S�^H��x�^;','wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/mocha.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tiny-lr-fork/node_modules/qs/test/browser/mocha.js',0,'tw\n�@���i�:','tw\n�@���i�:','�N���Pr�I�\n�=��T�Ka���C-�z?�','',0,'?'),('�7�Zv|x�����t','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p^]��[ZOt���I�g','�t7=܈`_��0�S�����h�V�J@�\0','',0,'?'),('�\Z�*M�E�v��}0','wp-content/plugins/wordpress-seo/css/dist/support-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/support-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\/D�{�c�3��ٵ�','m*]L�j2��j��f��tOy >&�m}Z�','',0,'?'),('�B����!��vݡɶ','wp-content/plugins/wordfence/views/onboarding/banner.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/onboarding/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����]�b�yc~��Kw','�����\Z�T�Di.�qs�ն� �B��`-p�nN','',0,'?'),('����t��cY]/�+�','wp-content/themes/mint/templates/page-header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/templates/page-header.php',0,'��c�;]D���^0','��c�;]D���^0','>2��29�͂�j#������K��B �D�','',0,'?'),('� ����]%��j�%g�','wp-content/plugins/gravityforms/includes/webapi/css/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/css/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('�%�E���V`����','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/mapValuesLimit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/mapValuesLimit.js',0,'�Mk�2��\\Tc� �U�','�Mk�2��\\Tc� �U�','h/T�k\"�y �a�F2<hM�����|%��\0��','',0,'?'),('�&m��\"ˋ:u�!I','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Debug/ExceptionHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Debug/ExceptionHandler.php',0,'���+��\'�\\:dLҸ','���+��\'�\\:dLҸ','���ߕP�i��}�����q��9:�%V�gw/','',0,'?'),('�\'&o�Sw6�����(�','wp-content/plugins/wordpress-seo/src/builders/indexable-home-page-builder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/builders/indexable-home-page-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@+���Sփ�e9�','N�O��8M>�4���$��T8}T�^��d�','',0,'?'),('�+�����nq@�z�ʴ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/foot.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/semver/foot.js',0,'1���|70\\�>7|W','1���|70\\�>7|W','#�4�I�Hx���h,w��ېm��D�\r','',0,'?'),('�2��s|��w�z','wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AbstractGrant.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/AbstractGrant.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N�?�����oK�l�','���Qܪ���@-a<��|ߛ���&','',0,'?'),('�2���̰��O� ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseWrapperValue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseWrapperValue.js',0,'T8!։��e�\nA���','T8!։��e�\nA���','�q�`�9!�T8�X+��ʒ�Ԙ�kR\r[\0n�','',0,'?'),('�4��Zs��.]��*','wp-includes/blocks/table/theme.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/table/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*������\'V�m�','����B��O����&��\'�o1IYy�%D','',0,'?'),('�6D*���F��\n�\0�i','wp-content/plugins/wordpress-seo/src/config/wincher-client.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/wincher-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jH�CL�a�7�\0����','�qz���Ȟ.�\\��Zz�n�4[b�|sA�F�','',0,'?'),('�6J0���w*s���','wp-content/plugins/wp-optimize/vendor/psr/container/src/NotFoundExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/psr/container/src/NotFoundExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bZ����Ü4㩐G�J','Q�Bd���)$�W̺}��fT�t��','',0,'?'),('�9V#}�X�<��\n[R','wp-includes/blocks/template-part/theme.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/template-part/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%R��ǽ.�ϴ���','Sv��\n�A���t&�2A�U�!�u��£g�\0�','',0,'?'),('�:�U/��Zɻ5�52�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/Styles/QualityBadgeStyleDependency.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Dependencies/Styles/QualityBadgeStyleDependency.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z5��ʏ�u�=�I �','�ߦ�y�]��֬�$ʣ�M�mv�Õq�ъn','',0,'?'),('�<��(��*A]�O�','wp-admin/css/colors/ocean/colors-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/ocean/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8L�j�,���AA','�:�cn�G��B&<8�f~Q� c����>{H�','',0,'?'),('�A����`15��V��\r','wp-content/themes/mint/node_modules/grunt-legacy-log-utils/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log-utils/index.js',0,'9�kJ5��D��4�]�','9�kJ5��D��4�]�','�O�,�7�ֻ�z��~v�9�ˢ��C\n','',0,'?'),('�B\"%d��(�L�n�y�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/ReviewNoticeOptions.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/ReviewNoticeOptions.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y��/����4��f','�Gg[6\'ب��m\'ޯ4k����ܪ��$G','',0,'?'),('�B8\ZC_\n �j!\ZH�\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/take.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/take.js',0,'*U�w��u}����W','*U�w��u}����W','�=�3�\0tӜ�r!$���H;j$�`y�X�','',0,'?'),('�CRӢEbcq(�s\'�v','wp-content/plugins/gravityforms/includes/form-editor/save-form/endpoints/class-gf-save-form-endpoint-form-editor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-editor/save-form/endpoints/class-gf-save-form-endpoint-form-editor.php',0,'W�g�-Z��w�ցB��','W�g�-Z��w�ցB��','�����#�L�������YÊ��\\���\\t\"��#','',0,'?'),('�D��d.P˴{-yo�g','wp-content/plugins/wordfence/views/common/status-warning.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/status-warning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��kR�f,�J���k�','��f�!��\rWe��=?��K���jP&�*y�|','',0,'?'),('�I|�K9�(�{s�X','wp-content/plugins/wordfence/lib/menu_scanner_credentials.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_scanner_credentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��.� I\05�A��D�<','ʅ<;Ҩ��&I֘^�dD(��eX�;�;{���','',0,'?'),('�L�J}����s�v�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/tools/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/tools/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('�Q��l�\Z�,���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseClone.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseClone.js',0,'���*�P?�|}t�P\\','���*�P?�|}t�P\\','T���u���$����8�q���sl�Į���','',0,'?'),('�R8X�QR�]�9K0�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/toNumber.js',0,'�����H�)~�R|y�','�����H�)~�R|y�','%�n��\Z��|��U����9���1�h\"','',0,'?'),('�Ug���-�:m�S�','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js',0,'0����ZQ�#���','0����ZQ�#���','�P�PN0��l8OK,1����$�s;K,�3ܓ','',0,'?'),('�X�iq.�^\r��\'','wp-content/plugins/gravityforms/includes/query/class-gf-query-call.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/query/class-gf-query-call.php',0,'�1%�:�iVu��d^�','�1%�:�iVu��d^�','</a�C��*�#BA\0죭�Wf0�!Ɲ�','',0,'?'),('�bv��E��H���΄','wp-includes/js/wp-lists.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-lists.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ר��@��������(�U','�U3K����0��{;;i\Z�$�&I_n[U��','',0,'?'),('�hS����:���`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�+C#+|�fZ���]�','kn\Zy�&��_��[��Igl�(�g\'�^�G','',0,'?'),('�i�0eJؗ��7Ȳuv','wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features/analysis-feature.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z��݇��&.�Ns','�ހ>�\\����Z�0��\Z��q�r�wA��%͎','',0,'?'),('�l�ǀ��2]A�|��','wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/admin.php',0,'���;���(���#�*�','���;���(���#�*�','C�o�\0��E�s��������B1s�GT,tR�','',0,'?'),('��OM/�����ק�`�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/wrapperLodash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/wrapperLodash.js',0,'���=�L�Wq4es','���=�L�Wq4es','�C����N�K/�@Z��K?�%fC��Yc�I&','',0,'?'),('��D!�~3�-7���','wp-includes/blocks/avatar/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/avatar/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xl���}EG�\0~<�Y>','��W��8�\01W��Sac)#\n7�7������N','',0,'?'),('��}�!�F��96}�N','wp-content/themes/mint/node_modules/jsonify/test/stringify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jsonify/test/stringify.js',0,'��Iz���H9Q�0��','��Iz���H9Q�0��','L���_���CM��ZZ9�DϹ�@�.\\','',0,'?'),('����.}\"e�<�=�p�C','wp-content/plugins/advanced-custom-fields-pro/pro/admin/post-types/admin-ui-options-pages.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/pro/admin/post-types/admin-ui-options-pages.php',0,'|P�W�\"$�NW��r��','|P�W�\"$�NW��r��','��I+�\Z�\'����n��Yk��Q�����E��','',0,'?'),('�����Р�V#�q','wp-content/plugins/gravityforms/includes/template-library/templates/class-gf-template-library-templates-store.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/template-library/templates/class-gf-template-library-templates-store.php',0,'fQ����y]��,(�','fQ����y]��,(�','g*�j\02��nZ_��\0S�3�����RK����','',0,'?'),('�����y�GOA�:���','wp-content/themes/mint/node_modules/domhandler/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domhandler/index.js',0,'K[�*0��IF:���','K[�*0��IF:���','�t�tZ7���a���D�\00l�~VR�l/�','',0,'?'),('���÷���@P��[:','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/updateWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/updateWith.js',0,'�AJ��|���?6�-u��','�AJ��|���?6�-u��','��G��r�x��L�_\r���L�(P���F0�','',0,'?'),('��@��%?h\nA@��S�','wp-content/plugins/gravityforms/includes/duplicate-submissions/class-gf-duplicate-submissions-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/duplicate-submissions/class-gf-duplicate-submissions-handler.php',0,'�DIV�A(���W��J','�DIV�A(���W��J','���̊Dڙ|6�dmD�W���1W�\n�?��v','',0,'?'),('����U���������p','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/get.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/get.js',0,'������&���&�:�','������&���&�:�','J��(�WB�Ң%�^ۭ�f�~`��A���','',0,'?'),('��!�(f��!�mA�g','wp-content/plugins/wp-reviews-plugin-for-google/tabs/rate-us.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/tabs/rate-us.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ɷ�-5�IK}s�6��D','UsE�+�EWV�p�6�TH`�(Q2;�','',0,'?'),('��u�.?g�\"6����w','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/filter.js',0,'HB5L��ylt����','HB5L��ylt����','iu�v��p�I+�i�z�a��`�_��j���o&','',0,'?'),('��i�G���j#��)�','wp-content/plugins/wordpress-seo/src/generated/container.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/generated/container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ȉ��R��\"�b�P','�m��ˢ��\\���9���R(�F��Y�R','',0,'?'),('���]��c��uq�|�z','wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f��f-�D��~)','��d�}��\Z�b/��}��[<3�h�J��','',0,'?'),('��c��N�0\'(w٤�','wp-content/themes/mint/node_modules/mkdirp/test/race.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/test/race.js',0,'��2��y�Չ�?:�','��2��y�Չ�?:�','���%D�fd�HU����ٿvQբ�w��a��','',0,'?'),('��\0*8� �\n����=�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/slice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/slice.js',0,':�e5�Rf�f��',':�e5�Rf�f��','��D96�|�E4(�o\Za���\"�E��','',0,'?'),('���!QtDž� {r�\"�','wp-content/plugins/wp-live-chat-software-for-wordpress/readme.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"���J)��s��u','2b�;)G��oU\" _�0����W�ר$�l.�','',0,'?'),('���&��N�,���6P','wp-admin/images/icons32-vs-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/icons32-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*04�G4F� &Z�i}\"','�.a�}��hw�6�WEʭ�(3�Jӭ�9�E�','',0,'?'),('��v��#q���ȃ�','wp-includes/sodium_compat/src/Core32/ChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EOxٕX�2떭','x��aJN�!e���\"\"Nq�}�AMC�1)��{�j','',0,'?'),('�݈�v�֧�G��\\:�','wp-content/plugins/envira-gallery/assets/js/min/tabs-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/tabs-min.js',0,'Ut�\nJ/1>Y�8��ߺC','Ut�\nJ/1>Y�8��ߺC','o�K������)&e�]s��P\r\n�t�ɮ�','',0,'?'),('��Uԅ��l�)%g�N�','wp-includes/class-wp-script-modules.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-script-modules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j]���.%��2��J�h','�p��h�i߮\Z��?���<��s��Ѥ�','',0,'?'),('��W31��N���gפ��','wp-includes/js/dist/vendor/react.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/vendor/react.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';������=U`0(���','hX��\nLb��J��hs�+�L*ݮ�*)���:','',0,'?'),('���\"�w�p�+��/R','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Platform.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Platform.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.�v��\' ��,��','&ʞ}`��S�AnmN��A�\'��f�堠����','',0,'?'),('�皻����AI��|-��','wp-content/themes/mint/node_modules/center-align/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/center-align/index.js',0,'�S58u�k�(.e��','�S58u�k�(.e��','�q@�evy6���S� {7���7�|����','',0,'?'),('��x���Iy��f�Gv�','wp-content/plugins/wordpress-seo/packages/js/images/Yoast_SEO_Icon.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/packages/js/images/Yoast_SEO_Icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X�m���h��GGU�','}SF�����iQc�_F��\"�MD�K��\rɡa','',0,'?'),('��T��b,&���\0#','wp-content/themes/mint/node_modules/grunt-legacy-util/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-util/test/index.js',0,'���\n�H/Xj���','���\n�H/Xj���','UzW�77&\0���hic�*�\09/��\nz�&�','',0,'?'),('��w{!J�hXg\"XvY�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/InputInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Input/InputInterface.php',0,'brB�E:�ĕ<^�Ao','brB�E:�ĕ<^�Ao','.���9�EB�����K�O(\\����y��h��=�','',0,'?'),('��x[�e��>M�','wp-admin/includes/edit-tag-messages.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/edit-tag-messages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.j�A8�r��Uq','�?�uZv��*�32;h�$,\r�ME�~��','',0,'?'),('�����a9�w�H*��4','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/add.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/add.js',0,'ދX�b[d�R=���H�','ދX�b[d�R=���H�','zb�] +QG�^�ў����Jc₷��zxq','',0,'?'),('���@\'v���Y�!ѵ�','wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<zy���sm�g�����','ߑGR��9*�%��ۖ�D�$i�\n<Ծ4�� 9�','',0,'?'),('����g���ud�g~�ܱ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/toString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/toString.js',0,'H9�y�\r\0��s����','H9�y�\r\0��s����','�5U�r�A50x��ؘ����M�}�SÞ�I�n','',0,'?'),('��{�y�&)fQBe','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/fstream.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/fstream.js',0,'S ��lvΣ����L','S ��lvΣ����L','�\"n�7l5G�dG��:�cu\0�R�����oKN�h','',0,'?'),('�@{�#?�i\n}$ݴ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/whitespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/optimist/test/whitespace.js',0,'�X��h\0l��f��?�','�X��h\0l��f��?�','�B�Wa�\"D���?��>��\0�HH�*�M&�','',0,'?'),('�b�[{�=/ʨ۳��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Composer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Composer.php',0,'��bM�H�� ���','��bM�H�� ���','�Q$������\'�a����I�!BlAY\'\r�c','',0,'?'),('����B\'��i��5�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n)��,�0J�`�։�','����{�� e�lWjfq�xhZ��fL!��%v','',0,'?'),('�k�S���s�ے@�','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/unknown.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/unknown.js',0,'hH}�]C#���xwڇ6','hH}�]C#���xwڇ6','���I��E@�#-\rǐ�V{Ny�%{��֖hc','',0,'?'),('�uj\'#��r���','wp-content/themes/mint/node_modules/cli/node_modules/glob/examples/g.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/examples/g.js',0,'*�,u�`��uf���(�','*�,u�`��uf���(�','�1���*���XJր����τ��!��ZP���','',0,'?'),('�������N\\I�Z��','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php',0,'�N^��\'`����H','�N^��\'`����H',';�s ��Z ��מ��0�k(��(�O 3:5','',0,'?'),('�6��\Zr�O{��ͻ�','wp-content/plugins/gravityforms/images/grey-bullet.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/grey-bullet.svg',0,'vtj]>3��kr&�x�[','vtj]>3��kr&�x�[','�Ql����ƙƯSܭ�ۉ;�\0\\���r�','',0,'?'),('�%��p���.UO0�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/lib/server.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/lib/server.js',0,'ḻ}��|��Y-�X� l','ḻ}��|��Y-�X� l',' �˘;�?��\0��Y�575�h���q��G�','',0,'?'),('�6��놉�8�N3�ʨ�','wp-content/themes/twentytwentyfive/patterns/banner-with-description-and-images-grid.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/banner-with-description-and-images-grid.php',0,'�R�9\"$.��ӹٿ$a�','�R�9\"$.��ӹٿ$a�','��{a�v\'��3�ͻ���<4�4�7��o','',0,'?'),('�7�L�K��y=�R��+o','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchAttachment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchAttachment.php',0,']��#�6�M��ظۚ',']��#�6�M��ظۚ','�ތ�r���tج��\"So5���AEO�����','',0,'?'),('�:��J��³\\k\r','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/Facades/HttpAuth.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/Facades/HttpAuth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����\\sU��cN','�@HB���!Aq�zJ���i������{���\"','',0,'?'),('�;o��O�uT}��@T','wp-content/plugins/wordpress-seo/src/integrations/alerts/abstract-dismissable-alert.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/alerts/abstract-dismissable-alert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���-u���J�fO�h�','� A�$��y��[-�d����Bu\\� ^=7Z@J','',0,'?'),('�;�j�?���\ZdZ�=','wp-content/plugins/gravityforms/images/icon-add.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/icon-add.svg',0,'��T�~g)�I@|D��','��T�~g)�I@|D��','6EC�,��f\n��D�/(�[@��V�?h�','',0,'?'),('�=�p����[����VI','wp-content/plugins/envira-gallery/assets/css/images/icons/proofing.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/proofing.svg',0,'+$��u��B�����','+$��u��B�����','r_��L-���A\'�FL��u8=C�5Oϰ�\\�','',0,'?'),('�>����1[���<Vs','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/parseInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/parseInt.js',0,':����=\n8���ߔa�',':����=\n8���ߔa�','�` � qM�@s*ޡ\'�\r�e�c�U���Ť','',0,'?'),('�?�E��nR�*�rҶ','wp-content/cache/wpo-minify/tmp/js-5d2118cb.js.transient','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/tmp/js-5d2118cb.js.transient',0,':4/��I\0H�ơ�',':4/��I\0H�ơ�','+?e�=e��C���J�g��ch<�������','',0,'?'),('�BQC�7R�6+}','wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/TPF/ThemePluginFilesRemote.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Compatibility/Layers/Addons/TPF/ThemePluginFilesRemote.php',0,'�,\'^[Gk��NM�\Z��','�,\'^[Gk��NM�\Z��','ev����i���V�Q���k��������w��\"�','',0,'?'),('�G�z��_��&�I%c�','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/precedence/bbb.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/precedence/bbb.js',0,'�\0ԫq�&,����>','�\0ԫq�&,����>','aq\n%NZ�}��A%�e�����.K�D��','',0,'?'),('�U�{7��\'��$��h','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/flattenDepth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/flattenDepth.js',0,'N�Dz�lz���h;|�\n','N�Dz�lz���h;|�\n','Tf�Mx��YOZ��{mf��N��N���','',0,'?'),('�`N�\rm��F�mz?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/toUInt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/toUInt.js',0,'�\0Ҭ���9>�cz�r','�\0Ҭ���9>�cz�r','js;�Z���1\'���qF:��֓v#���','',0,'?'),('�b�#��ը\0��~�-','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/priorityQueue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/priorityQueue.js',0,'�Ԗ31�:^���t','�Ԗ31�:^���t','\0 *�1��sJ�=�H���������n�)�','',0,'?'),('�e8���Z�V�\'���','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue278.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue278.js',0,'��n���܆��ut��','��n���܆��ut��','�� ��i���\nјX���u�M8���t���\"R','',0,'?'),('�f���=*�bOs�','wp-includes/style-engine/class-wp-style-engine-css-rule.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/style-engine/class-wp-style-engine-css-rule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���D�dz���Z�U�@�','CzV<$$Ő�6]�����}��;c��H&�\"b','',0,'?'),('�q�h���Bc�92��','wp-admin/network/site-themes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/site-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ɥy�CEL��\Zġ','� E�3����Y�5�vFk�r��\Z�;����','',0,'?'),('�x{:�Q%\\�_�˰8�','wp-content/plugins/wordpress-seo/src/integrations/admin/indexables-exclude-taxonomy-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/indexables-exclude-taxonomy-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.��Ig�\Zq�)J@','8[�k�G�����A�/�N��9n趕\"�6\'T','',0,'?'),('�{Q�&-�\'?���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/constant.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/function/constant.js',0,'e�^�xF�ӫ��y�tt','e�^�xF�ӫ��y�tt','R���Bj�����r2�ܻ���^�E��f6��','',0,'?'),('�ϊ��J2�\\�U�','wp-content/plugins/envira-gallery/assets/js/lib/envirabox-thumbs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/lib/envirabox-thumbs.js',0,'��4�~:��?��X�_','��4�~:��?��X�_','p�գV��oĿ��4�1Y;-�3�J�#3v��','',0,'?'),('��=���e\Z�0���q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/example/async.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/example/async.js',0,'y�\Z~�\n}/|�8f���','y�\Z~�\n}/|�8f���','�iV�T�Z���1*=3��V���A:���W��','',0,'?'),('��e�5�ս\0�%T{�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/constants.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/constants.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�mr^�os��쾡EW�','������7�\Z|RI�w��jo>n�����','',0,'?'),('��4��<�\ryˌ!��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/encode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/queryString/encode.js',0,'����`N5@�[�\0\r','����`N5@�[�\0\r','�3��)fonE%�_0&����Ht\r��ȯ�pBy�','',0,'?'),('��j�5ctc$j��NC�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Util/ArrayConverter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Util/ArrayConverter.php',0,'�DF�0�1{����','�DF�0�1{����','nU��=r�>/��u�Y�I>`�P�+[?F�','',0,'?'),('�����ˌU$]�l','wp-content/plugins/wp-migrate-db-pro/class/deactivate.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/deactivate.php',0,'����4Ⲩ6��!~A2','����4Ⲩ6��!~A2','��\n/��F79��1P�2<z.싲\'-��9','',0,'?'),('���.2z�\'#!�O','wp-content/themes/mint/node_modules/jshint/src/options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/src/options.js',0,'MA�U�gp��\"�,P�','MA�U�gp��\"�,P�','�6���S3�u�ݏY��\"pz�-{��z5A','',0,'?'),('��~TJU�ac-��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/difference.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/difference.js',0,'�k�9��P� n��(','�k�9��P� n��(','�(��j�\r�嗠0`��Wڵ��lܾ�����','',0,'?'),('���\'���,0���','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-warning.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-warning.svg',0,'����;v�%�{�σNK','����;v�%�{�σNK','q��/�2�$,�^P~�}����x��rQ>���Th','',0,'?'),('���165A����=V(�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/reorder.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/reorder.js',0,'d��nt�ԤY��g�p','d��nt�ԤY��g�p','�Ӻ�?�z(�s~G)��Pu~�+���k�\\��+','',0,'?'),('��n1.Óu�t���lX','wp-admin/css/colors/modern/colors.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/modern/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k��\\�:^n����','\0%$ٗ����4�a�N����\nv��ƆI�e�','',0,'?'),('����ٛ/\'���/�&)g','wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/index.js',0,'�����L�J���','�����L�J���','v1z�C��L�����\"�r�� ̋6���5�','',0,'?'),('����`%��{��+��','wp-content/plugins/wordfence/images/icons/error128.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/error128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:�%7�!��.�','{h\0,�]�z�k�V�{җ�6nG\n�x��s9�','',0,'?'),('���v��\\Q���-��','wp-includes/js/tinymce/plugins/hr/plugin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' %>�)���;��','F��S�[k���&�f� 6+�b�>��','',0,'?'),('�ä2��8�����j','wp-content/plugins/wordpress-seo/src/presenters/debug/marker-close-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/debug/marker-close-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���v�X�O���#�','�7�|)�h%�8�E��3�q��%�0�����','',0,'?'),('��t��h� ,Gx�\"M','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�!ع�Ù��k?=�ӈ','+�MB��W��E��J1\0g����_��WF,|�','',0,'?'),('����S+kȯJ�\"','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/index.js',0,'����c���#�*','����c���#�*','����?!ǸGw���|NQ$*\Z��R#l5���','',0,'?'),('��Wk����k\"�F�`','wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/schemas/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/har-validator/lib/schemas/index.js',0,'T�r%���n��*','T�r%���n��*','��J,r�jN�WN�N�$��58�qw>�Bm��-Q','',0,'?'),('��d���E&��]�#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/make_.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/make_.js',0,'�:�����IV��q4\\','�:�����IV��q4\\','��m~g�w��e��\'��AXصo�pV�O^o\Z��','',0,'?'),('���9`�]l�\r�̫��','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/obj.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/obj.js',0,'��s!h]V*C�Vf�','��s!h]V*C�Vf�','�)\"d���F�%y��Z\n�C���uh��1w`�','',0,'?'),('��Ū����֍����E','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wpseo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-wpseo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʓ�^Sh��|{��#�=','� 5A�`����S�40-��Q^9���pͬ','',0,'?'),('��������f�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/includes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/includes.js',0,'&=�T�m�s,\\�','&=�T�m�s,\\�','6�#g�Y0=\0���ws�Y�̂P��ݰ6���9P','',0,'?'),('���9�X����U�7�z','wp-content/plugins/wordfence/models/page/wfPage.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/models/page/wfPage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�bo i�%H��Xw�Xv','ƅ1h�/jw�<U���\\�k�q%s|W�6��','',0,'?'),('��і�q��SGKy(�','wp-includes/kses.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D��dk�+�LdP��','7ۗ�&S2-ȯEQSd�Kw��N ��Ϧ�M)\0)�','',0,'?'),('��KwZ\'}^:/�3���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/find.js',0,'�3�\'�\0�h����^','�3�\'�\0�h����^','b�>+�b�ԫ�:ː��*8�uWj���\\','',0,'?'),('���,����^�г1','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isBoolean.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isBoolean.js',0,'��RFlJ�o�J���%(','��RFlJ�o�J���%(','�E��S=ƶ�T���p<�x���.�?�~>�','',0,'?'),('��}B�[�^�cQ�\n;w','wp-content/plugins/wordpress-seo/inc/wpseo-functions-deprecated.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/wpseo-functions-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��҅�:j�)Ȩ�AB��','�w\'lOiS7l68K�9s�7n7��\0+�;+�','',0,'?'),('��~n�K$^�R���','wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-login-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/semrush/semrush-login-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G&JV�a;�|��u��','NE^N�aI\0��?�(��>��C� �#��&���','',0,'?'),('��\'�ttS�U��<A��','wp-includes/html-api/class-wp-html-stack-event.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-stack-event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�:�\0���kC��,W','\"X$ۼ���>F��d\r�@#���Ca�}z�����','',0,'?'),('��eġ3���2�W��','wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.ttf.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.ttf.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@�Z�ɳ�|3�','��_��i���c���B���7H�%K ��','',0,'?'),('����c\"B��%h�yo','wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/main_control.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/components/form_editor/conditional_flyout/views/main_control.html',0,'&I�$l�[a9E�&�+c','&I�$l�[a9E�&�+c','��l\n\'Q������ �(ň?�j��2J��w','',0,'?'),('��:魩�*�/��m¸','wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-type-archive-indexation-action.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/actions/indexing/indexable-post-type-archive-indexation-action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǒ(��\'�\0>�q�','��>?�nM {��W��?��l��*�e���_d','',0,'?'),('����BrOa�e[NW','wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/boot.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/.grunt/grunt-contrib-jasmine/boot.js',0,' ����ȏ�dk���P',' ����ȏ�dk���P','RU+Q��W�����ψ��斷�{i�U','',0,'?'),('���ؗ�̾�,���','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/File.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v�Ä/!fM4�t','H)`��^Xm��v�[A���dE��-�ף��','',0,'?'),('�M)�{2`�Z��@�b','wp-content/themes/mint/node_modules/bower/lib/node_modules/get-stdin/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/get-stdin/index.js',0,'�-��EN�1�ű�u\'�','�-��EN�1�ű�u\'�','v�O��v�ݜN\"�{��[|4}����','',0,'?'),('�\Zu�3��I�zs)�+','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�9 ���vx�@�F�','z]W�D=.)J>ؐk�D`h@vФ��H���=','',0,'?'),('�9��l�ן? r��q�','wp-includes/class-wp-user-query.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-user-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V3��oj�;��zs','虚��k��������A�\\�\"�ޚ��_�','',0,'?'),('�~�ǭA�|��F�','wp-content/themes/mint/node_modules/mkdirp/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/mkdirp/index.js',0,'yA4�j��ۭ\"y�','yA4�j��ۭ\"y�','q�OD�ܚ�P)O�DW����4\rt�`�#C�}','',0,'?'),('��18:|�j�E�9d�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/chmod.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/chmod.js',0,'��S51t�ɂ���|�','��S51t�ɂ���|�','t~[�\\��EX@G�6�f#�|A`)�<A^m��H','',0,'?'),('� p|�bV�����0��','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-close.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-close.svg',0,'\0jKo{7�-u~�� ','\0jKo{7�-u~�� ','z�p�d�w����bz��7d���{o&\0_� �h','',0,'?'),('�!��y^Iϛ�u�Z҅','wp-content/plugins/envira-gallery/assets/css/images/icons/standalone.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/standalone.svg',0,'��5�D�u�˽�03','��5�D�u�˽�03','��R/��[�d40��E\r�`5�C��ǹ6����','',0,'?'),('�%DmN<eJ�i�~5�T','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Pipes/AbstractPipes.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Pipes/AbstractPipes.php',0,'�K�pQ۸V-`�9gf','�K�pQ۸V-`�9gf','zQ�*Wp������ԅ��1�l@;���A��','',0,'?'),('�%��?���)�','wp-content/plugins/wordfence/views/common/section-title.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!z������̥','+���A�S��џbH��濳�$�V�+��N�','',0,'?'),('�39�\\q��2c�& 1>�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue68.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue68.js',0,'��צ�p%�c����','��צ�p%�c����','Y��_\Z��y\0뱗�X�� ,��D~]J9M�9Cj','',0,'?'),('�4��ڝn��w��f','wp-content/plugins/gravityforms/images/datepicker/datepicker.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/datepicker/datepicker.svg',0,'gޮ�ɲ�c*�j[��h','gޮ�ɲ�c*�j[��h','c���nx7)c@���$�N���5m�','',0,'?'),('�;md=�Ȓl�!�M��','wp-content/plugins/wp-optimize/css/wp-optimize-admin.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/css/wp-optimize-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!��&t�� u`����','��PD� O:ْ�F��A���^�}�r�8','',0,'?'),('�=o��y��� 4��6;','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/max.js',0,';�ve��?Cʌ���*�',';�ve��?Cʌ���*�','*o����l ���x���d(�u.��b','',0,'?'),('�>�TOjʻi+�=���','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/bin/cdl.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/bin/cdl.js',0,'\rC�R*m��`h{�/v�','\rC�R*m��`h{�/v�','@�|7��{�!H����6����\n��r�9','',0,'?'),('�A�aD��i���>��','wp-content/themes/mint/node_modules/tape/test/only.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/only.js',0,'v���\'��ҩ;Z��kY','v���\'��ҩ;Z��kY','�p�{�X�x%R�F�O��fIPCwy�@���h�','',0,'?'),('�B�+r�k\nc6�P','wp-content/uploads/cache/ae40e845dafedc4711b32cdbee09b720c0e4daa7.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/ae40e845dafedc4711b32cdbee09b720c0e4daa7.php',0,'��h*�״q���:���f','��h*�״q���:���f','\"[�M�4 ��a�6\'�&UN夭t>ߕ&�5','',0,'?'),('�DS���3.įy}�;','wp-admin/images/browser-rtl.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/browser-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\"��ӠA�\Z����%̝','+啧���0��p�Ɯ��JMk �q�w�Xب�','',0,'?'),('�ENxy~դ0_i�Q��','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Iterator/PathFilterIterator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Iterator/PathFilterIterator.php',0,'���� U�dɫ��\0��Z','���� U�dɫ��\0��Z','�F��o-�T��e;�R\"��?��[�bC�','',0,'?'),('�V���[���i�_L��','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/RequestFactoryInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-factory/src/RequestFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q.���\0ġ���7/','�ہ|֛9�u �U�s/��F��ݒ�?n�� �L�','',0,'?'),('�Yu�z�j���P��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/every.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/every.js',0,':M�קe�*�`\\�',':M�קe�*�`\\�','¸5Ȗ\0�9��-�xe�����l�@�Θ�uHN#@','',0,'?'),('�ZY�G�M\'�V�ׁ�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/quota-management-api.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/quota-management-api.js',0,'5�1�ZÐ���d}�','5�1�ZÐ���d}�','jR~�J>E���[z�\0��3: =Ǫe�QiM��','',0,'?'),('�Z�:�������]�}','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-grow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/flex-grow.js',0,'W 9�Na�:��\r�?','W 9�Na�:��\r�?','��ث#\Z�|��ʇ�2:��k1>�)��_�����','',0,'?'),('�[�Hn[P�.~���FU|','wp-includes/nav-menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$��BD8�7��o]','Xe��\'�o�x\Z�g#�<�����V;9�t��g','',0,'?'),('�_^�U4��m��\r���t','wp-includes/SimplePie/library/SimplePie/Cache/Memcached.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Cache/Memcached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��З!(x�{\rO���6','�7o�a^��\r؊�N���k%��X^���9&̡r','',0,'?'),('�d����_���4�','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/SanityCheck.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/SanityCheck.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\r�5|#lp�S2�q','|ĠQ���I�X�����{`^�G����{�','',0,'?'),('�f��Fq�-+����','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/toIterable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/toIterable.js',0,'O�� OUΧ�I���L��','O�� OUΧ�I���L��','fO�f���==\\l�� Z�S�de�Ԙ`y��','',0,'?'),('�j��\\��Ħ<y�p�','wp-includes/widgets/class-wp-widget-custom-html.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-custom-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!�H�襯ۭ�','�%k�����q�-w1B5f��ub֠��]��6X','',0,'?'),('�m��w�Qdz\0I�b�','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/visionary-led-lighting-for-your-home/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/visionary-led-lighting-for-your-home/index.php',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�p�~M�%~]jY��o�','wp-content/plugins/wp-reviews-plugin-for-google/trustindex-plugin.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/trustindex-plugin.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�X����k�WI�w���','��N+�=�~5p�����\r��I67��','',0,'?'),('�s�0=�V�u�.����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_initCloneByTag.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_initCloneByTag.js',0,'�t�З�_a�L\"F�+z','�t�З�_a�L\"F�+z','<~�D(�\\�/�������P+���vM�','',0,'?'),('�t��.!h�t�%h��','wp-includes/blocks/video/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/video/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A�+kΪYv~)��C','�]�i֦z ��q��-|k��ϣ�<�B','',0,'?'),('�~{���\nޠf��z8�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsArrayBuffer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIsArrayBuffer.js',0,'�KA���H��-�z��','�KA���H��-�z��','����%�<a�-�gv�N\n�3�E��w�ޫ','',0,'?'),('�~���8A5�e��Rf\\B','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-info-solid.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-info-solid.svg',0,'v���\Z�h��N��c��','v���\Z�h��N��c��','��(*���!��_�Q��#(���B�\r��G��','',0,'?'),('��w�]�g.� 帴|+\Z','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/SelfResolvingDefinition.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/SelfResolvingDefinition.php',0,'W�\")���Ի����d','W�\")���Ի����d','s t�?y�����F������L�rr+lW4��Y','',0,'?'),('��<7iR�~� ��X���','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-property/is-property.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-property/is-property.js',0,'8͟��Rb}2U˧x','8͟��Rb}2U˧x','�c��S{�Nt>�ӝ/К�,���5\Zx��u[!�h','',0,'?'),('��`P��/�H�\" ','wp-content/plugins/wp-migrate-db-pro/vendor/composer/autoload_files.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/composer/autoload_files.php',0,'�G]F�Z\ni\\^�','�G]F�Z\ni\\^�','�e7�����°���`�4Վ�4�*','',0,'?'),('����Z�\Zxcy�d��\'','wp-admin/js/language-chooser.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/language-chooser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��U>�p4J�l��5�=','9���\rX�L�dC5@U���K&>̓l��#�','',0,'?'),('���` �\r��O��|','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/FinderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/FinderTest.php',0,'{ BX.���p��dH;','{ BX.���p��dH;','V��v��8{�ņB+���.�cTC�=�b��','',0,'?'),('����/��j�\'ܜ6','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toNumber.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toNumber.js',0,'�ޯ��\n�W���N9','�ޯ��\n�W���N9','8iE�@܂�2I�b������*�=/��L���B�','',0,'?'),('��2���s��k��','wp-includes/blocks/categories/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/categories/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PŚE�#I����ۆཀ','�=�O���-��;N8U�P3�<(o�ن�','',0,'?'),('��U~��-�_��H��','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/ConfigInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/ConfigInterface.php',0,'�˭�b��1�\n8��H.�','�˭�b��1�\n8��H.�','���%VSab������B25-ĥ�����ѳ�','',0,'?'),('���6B�b���M��','wp-content/plugins/wordpress-seo/inc/sitemaps/class-author-sitemap-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/sitemaps/class-author-sitemap-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��9���#��-�,��','?$�n���H_�\\U�E�?Ǧ�E|�������','',0,'?'),('���LC3v-�n{�','wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c����TG�8`;�','�2S`���J�!�N,}.ɧs0? ���#x��','',0,'?'),('�����:x�=�}�','wp-includes/js/jquery/ui/mouse.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/mouse.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j\r�{>\n���A}�8{','p��ZAUU��ב�2s������;Y���;��','',0,'?'),('������na.|����','wp-content/plugins/gravityforms/includes/locking/images/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/locking/images/index.php',0,'6L�2Ӳ�k�1:��B��','6L�2Ӳ�k�1:��B��','|�ٮ�Y�sL�ksi30�\r�vʵ��g','',0,'?'),('���N����;�� *��j','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Command/LockableTraitTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Command/LockableTraitTest.php',0,'�z�\nԅ�#�o{��','�z�\nԅ�#�o{��','�����U��Dq�g+����C�WJ�@�^\\>\Z�','',0,'?'),('����\"�5y5q��\r�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/dropWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/dropWhile.js',0,'��@�����۩��','��@�����۩��','�-�[�:T�d��Ȓ��_ȓ����r','',0,'?'),('����}�*�^��i�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ScopeKeywordSpacingSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ScopeKeywordSpacingSniff.php',0,'���?ӈ�E�:��','���?ӈ�E�:��','��mb��D�Z+Z��~֫@� �?�#8�7^(��','',0,'?'),('��ކ�<�J0�cm�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/floor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/math/floor.js',0,'�\'�5f[���J���','�\'�5f[���J���','k�Q�%H��W���K�RC���F��ǖ�CF','',0,'?'),('��H�a�+����̰I�','wp-content/plugins/wordfence/waf/bootstrap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/waf/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WIB�ַ:W���HP�','�Fv�����K�6`��H�+6f!&�H�Z�UO�','',0,'?'),('��;�;/J�KmR��0�','wp-content/plugins/akismet/views/start.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/views/start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�i�����ZvO[�','���� 3`�+B�vY-��k-���^?�&�','',0,'?'),('��O�I��Y�\\�{=�H','wp-includes/robots-template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/robots-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӎ|Ylm�+�6V��','X�6��hq@!��`+��\rx!���� Е�ī�>','',0,'?'),('��Tn�3<[�� ��5','wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':�+k��j���`�|�w','r�_�A�����/Ƅ��#\"��Yܻ6���G��','',0,'?'),('�� ��Ns�Z���','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/livechat-logo.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/images/livechat-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o���ِ��[=�6��','R���q��Ӝ�v� �t�ͫ�n�_F�w �-','',0,'?'),('��&��TRF\Z]��\Z-��','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-fr_FR.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)�U��ז�)P5','���O�Z�6u&J���M�w�[���\n','',0,'?'),('��y�&a�A�7�]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���%���B\ng�2��;','D,�A�J���lOS�p�e؇�&���','',0,'?'),('���ߙo��c����','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php',0,'%Q�\0 \"�����)vi�`','%Q�\0 \"�����)vi�`','�v뭀�Q�0F�R���+�5��Ʌf��������','',0,'?'),('��E��θ��2��','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-file.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-file.php',0,'\'�Z�n��əz04�s��','\'�Z�n��əz04�s��','qam�F�o�+A�\rc�|��ї4���宸kp','',0,'?'),('��3���,¦U}�P�6','wp-content/themes/mint/node_modules/grunt/lib/grunt/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/lib/grunt/cli.js',0,'FI�h?���>�\"d�','FI�h?���>�\"d�','��*��a��gk��\0���ݸ��3&v���1Km','',0,'?'),('����\0��<\Z��4','wp-content/themes/mint/node_modules/autoprefixer-core/lib/supports.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/supports.js',0,'l�c�g�������U��','l�c�g�������U��','4jT���\rOR<���Sۃ�-��l���1���','',0,'?'),('��X�T���&�<��a ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/endsWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/endsWith.js',0,'�|��+m�J�IX�','�|��+m�J�IX�','5�`cs�h�$��+/Mx����M���f�E','',0,'?'),('����n��SqR��E','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/VersionControl.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/VersionControl.php',0,'������Z��\\١�#�P','������Z��\\١�#�P','is&�R�^��CE�^[Kp��Ъ�Ui���\\!�','',0,'?'),('����m~fҾ��w�','wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Argument/RewindableGenerator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Argument/RewindableGenerator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DK�R��쟙�۹��6','�r��:\' \"��S�\05g�SƢ�\"��@Nwփ�','',0,'?'),('�ƞׅ\ZX�X]�Y�F','wp-includes/js/codemirror/htmlhint.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/codemirror/htmlhint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2�|џ�G�MtP5��','\0U[\0�M\'mCռ5��5k`����5�ё','',0,'?'),('��Ħ=�1��G�Қ_�','wp-content/themes/mint/node_modules/less/lib/less/tree/selector.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/selector.js',0,'[n�ʭ��X�{ZV�Q','[n�ʭ��X�{ZV�Q','3��l�C���U���#�ctYݗ�#x>�S�','',0,'?'),('� ]�1�[d|�[�!9�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/queryString/getParam.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/queryString/getParam.js',0,'�=Ӆh�w�KdؚY','�=Ӆh�w�KdؚY','��\\���a���KV��8��1ӣ,�gMr�m`j','',0,'?'),('�\nS#��WM�+�6','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseMatches.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseMatches.js',0,'�\'��R���c\ZK�','�\'��R���c\ZK�','%��#ᚘ˙�<�L�ύj��V{_(���','',0,'?'),('�H�Y/��,F��v�','wp-includes/blocks/query-title/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-title/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�-m�Cl-���h','�i�)!n��le#���aniq�la\n�O�X�','',0,'?'),('�\Z�\"�]��r��Z^l}T','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/JsonFileLoaderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Loader/JsonFileLoaderTest.php',0,'Z��|�9m�QE� >','Z��|�9m�QE� >','���B�/���x�{�R�Ɂԣ���J�6s��\n','',0,'?'),('�zQ���n���1j','wp-content/plugins/wordpress-seo/src/wrappers/wp-remote-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/wrappers/wp-remote-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�08��N�Pw���,S','-�e�����99;3)vu���u�!�','',0,'?'),('� a\"KwT�bc1S','wp-admin/css/revisions.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/revisions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a��_�W��s.m]��','�]�z�IԗY�8�&s[`���;�\Z�6','',0,'?'),('� ��r��\Z�88��O','wp-content/plugins/gravityforms/includes/ajax/config/class-gf-ajax-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/ajax/config/class-gf-ajax-config.php',0,'�͊1v��+ه.�g�','�͊1v��+ه.�g�','��_p���o<3NoO��?�|h��i�݈�','',0,'?'),('�!`7��K��O��','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/precompiler.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/precompiler.js',0,'�`�\nTq*�)?\\.','�`�\nTq*�)?\\.','�9��^�c�����{t����1q����ەƋ�s\n','',0,'?'),('�\'����+Vέo�','wp-content/themes/mint/node_modules/sigmund/sigmund.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/sigmund/sigmund.js',0,'���|���d�|�����','���|���d�|�����','Ra��=1�y�> ��!�բ�!V�g�dt','',0,'?'),('�\'�\"�a�d葼�@P','wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/userTest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/github/api/v3.0.0/userTest.js',0,'֭B��[Я��(7���','֭B��[Я��(7���','\nU����\Z�Ag@\Z6�EU�F���f��&\r`','',0,'?'),('�*_��w@�=�5�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/View.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/View.php',0,'�1��Z�8%�C��.:�','�1��Z�8%�C��.:�','y�r[��Qg�GlE��a�IG��!jW��(�','',0,'?'),('�-�[ip��\\^���]','wp-includes/widgets/class-wp-widget-tag-cloud.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�l�¹�+�X��Zܚ','p�^B���&������RO��ގ�D\0','',0,'?'),('�0�&�Y�������','wp-content/plugins/wordfence/vendor/composer/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]_�#D���\0��','\Z ��ے�%�4~N�~Gh!b��:w��Ɍ��\'','',0,'?'),('�4g��e���>���ߝ','wp-admin/images/list-2x.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/list-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hջIS�2��i�g�','��J�p�S_��X��#���UB�-z���,�','',0,'?'),('�9��p�@�h�4mYxJ','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Header.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a��C��-H\r0�\ZC','{�j~��䈛� j`���qI�&Sj^ɹ*�','',0,'?'),('�;�f�J1��˘��+C','wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n\n��+ծ.jqAZ�','�\0��I������36���ěn�j7jk�:��','',0,'?'),('�AG�0 .���RΞ|','wp-content/plugins/advanced-custom-fields-pro/assets/images/empty-taxonomies.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/empty-taxonomies.svg',0,'����>6�!N��r骅�','����>6�!N��r骅�','c�Q���!Ap�i�:X��,�����r�,ױF\0','',0,'?'),('�B�m`2~fNԱ��]o','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~��.,�m;N/��q�','�D��u��`������Ɍ�\\�t���-����','',0,'?'),('�Fgp����IC�3','wp-content/plugins/wp-optimize/cache/file-based-page-cache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/cache/file-based-page-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lT9m�����`\Zi','�R���7�F��B�ЪK�wj�|�ǘW��GH�','',0,'?'),('�H3�[�]&�BUS\0','wp-content/plugins/advanced-custom-fields-pro/lang/acf-nl_NL.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-nl_NL.l10n.php',0,'�L��96�iGƹ����','�L��96�iGƹ����','��V��@W0�ʮd�/4�5�A\r����q��`<�','',0,'?'),('�I����]��i���','wp-content/plugins/gravityforms/includes/addon/js/gaddon_token.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/js/gaddon_token.js',0,'J�n��n�\"�D����','J�n��n�\"�D����','����\\Q������b0P�9b�&?)H>g|�{��','',0,'?'),('�OOwT�M\r��Y�!d','wp-includes/js/mediaelement/mediaelement.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ii��:���ρa���0','�F;(�D��ԥ�����$��Tc�#�Vd\0K','',0,'?'),('�P%��V\ZCY؝uX$','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ArrayDefinitionExtension.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/ArrayDefinitionExtension.php',0,'�B�߰��]\' �l2�','�B�߰��]\' �l2�','T!�\Z)�7ΆnW(��pͧ%>�.���%�Q','',0,'?'),('�P��=��s�\Ze�4','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/ref.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/ref.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�SO�\0���)��v','wp-content/plugins/gravityforms/js/layout_editor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/layout_editor.js',0,'n�#��@�tI��TpO','n�#��@�tI��TpO','�\rF��X&h�U�\" �E����Ca�3}�n����','',0,'?'),('�Z��5��ʟ8�E�','wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b?���\\ٰ�YgD\rz','���Od� �:X��� RU�+�@��9','',0,'?'),('�]ǿ|������IC�','wp-includes/js/dist/keycodes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/keycodes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؈��ʏO:�g��','tq��Ch�K�(�ò��+����މ9��','',0,'?'),('�_N~.�RD�a�~Z','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ContainerTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ContainerTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�vo� �]!5]�c�R9','JO�3B8��6�.F[4���>�Y�,�`\0�� �ݔ','',0,'?'),('�fkj��N�Uei4=%�','wp-admin/js/tags.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/tags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0�}���0R�M�T� ','���VkK���C�o��ό8�T�Ayn@��Z\0','',0,'?'),('�g��U|,��_��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/cond.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/cond.js',0,'$�����>�a�p��','$�����>�a�p��','�d��`\\c��٣w��y�����|���ő��O','',0,'?'),('�p��I���{1n���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createFlow.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createFlow.js',0,'S�M�E��\\����','S�M�E��\\����','��u$&%�6-�W�X:�u\\�� 2@�՞O�','',0,'?'),('�q�1A�p/��`Y0��','wp-content/themes/mint/node_modules/grunt/internal-tasks/bump.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/internal-tasks/bump.js',0,'���\n��+X��Rx�Hya','���\n��+X��Rx�Hya','_д����Z��&n���+T=�d��W','',0,'?'),('�s����oG|�ܓ�L','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\Zł2WT��7�c�M','����ec�@\"���3��NR�+�Sa���\"jU�e','',0,'?'),('�s�PP�XV9ċ�$Mk','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/App.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/App.php',0,'�ϝ>]Lp���v���G','�ϝ>]Lp���v���G','�>�=�koP�\r�\\֨�4���|E����|��k','',0,'?'),('�u���m���Z��7�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php',0,'�F���<����S��Q','�F���<����S��Q','C8H$�C��)��;w�}��3��x���Uի�Q','',0,'?'),('�xY��4�(RMj2}5}','wp-content/plugins/wordpress-seo/js/dist/externals-components.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals-components.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n�\"�(V%�B]�;Dy','To���Z��<s��o^�\"�.��6i� ���s','',0,'?'),('�y%���Ǻ~�ne\"V','wp-admin/css/list-tables-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/list-tables-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-��+R�8�{��`�','�?j��o�Af����(wXdL�T�S��2','',0,'?'),('�ynW���]�ijR�mr�','wp-admin/js/site-icon.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/site-icon.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aJ���Y@�l%�C��N','��@A��9&��q`��X�i��2\rC=�','',0,'?'),('�{o�v���m�_b�3','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Event/ConsoleEvent.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Event/ConsoleEvent.php',0,'��he}BD|�Cԇg�','��he}BD|�Cԇg�','���bҩ����ˡ��v\Z�4q\r� (�}','',0,'?'),('��Ŏ�ڬ�õ�b��\n','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����}anГ!�,Dҡ','�}=����;�fBH�\'��V\"\rZ-���ih*z�w','',0,'?'),('��!ak�@�A�7$�','wp-includes/js/dist/script-modules/block-library/file/view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/script-modules/block-library/file/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�4�j����Z6�','rj���4eV�)@���N\n�������F�ş5\n','',0,'?'),('���\"S��!<T�P��7','wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�H�qih��88@','em��@�L���)��1�L�YHZ V��vy�I*E�','',0,'?'),('��Q����L�UG�7\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/mixIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/mixIn.js',0,'1U&cE=%��e�\"�','1U&cE=%��e�\"�','���r�5Ӏ.�c�xIw���\'g:\n3�;q�','',0,'?'),('���/�-�Tǻ�T<�S','wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{��ݏ\\%Dk���wj',']��TS��.{��a����M�l�����\0��','',0,'?'),('���R�V���Щ��','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/lastChild.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/lastChild.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!K����i&+���[','�m�+�L6�?`AG��\\f����@�ɳJ','',0,'?'),('��\'�*6�$�b/H���','wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-publisher-presenter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/presenters/open-graph/article-publisher-presenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4A�x�T�\"���','�n��*�!�Lv}̅99R?y�5�[t�8T��','',0,'?'),('��J�Y3N��k��T ','wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-chevron-right.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/icons/icon-chevron-right.svg',0,'��H�X�A_#[���}�N','��H�X�A_#[���}�N','~�hl{k%�����W/�(�ϥc)�I��*C','',0,'?'),('��b˻ԴMҜ��_�8','wp-content/plugins/wp-optimize/css/smush.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/css/smush.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n�Q�J�+�d�','�X55��yؾ��z�l�3�\0+����imB����','',0,'?'),('��>����1�:�{�','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/vendor/jslitmus.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/vendor/jslitmus.js',0,'F���}]P ��IV2��','F���}]P ��IV2��','W���4��b�}�F�cM����+B4�y�5D�','',0,'?'),('����ة��b`����O','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/README.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����6��O?','��.�w�@�����ȻT�jk��V.�6','',0,'?'),('��W��e�y-Q�c��d','wp-content/plugins/wordfence/js/wfglobal.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/wfglobal.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ow{� �b�@�@=>','\Z�$��u�� s�$-�Ձ��i�%߱:|�','',0,'?'),('��*�0+�j&�{Ew��','wp-includes/css/dist/block-editor/content.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-editor/content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vE ;k��\\ֲwI','�S����鮆5�!��̶�.��À5b P8۟','',0,'?'),('���r���N(��M�\\','wp-includes/blocks/post-title/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-title/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E��9�ʢ.�`���BP','�b�Xj�L�X@�s�o9E�\r{;���mF��','',0,'?'),('���<o��Z =�xe\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseCreate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseCreate.js',0,'�Z��׃� ��o�','�Z��׃� ��o�','a��I@�Tay�E�?I jq��\nS1(����@T��','',0,'?'),('�������6H�:���','wp-content/themes/mint/node_modules/bower/lib/util/removeIgnores.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/util/removeIgnores.js',0,'.r��n[t,�-_�i�','.r��n[t,�-_�i�','���ʄ��8��\'0\0�z�\'�Ӳ�v3!��5','',0,'?'),('��C���NY���@�3~','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�LO8}����`��c�','���v��\0Y�\'��n .Ҥ�{�S.���','',0,'?'),('��g\r2��WqT��PiZ','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/utils.js',0,'�6�>PsV����!�','�6�>PsV����!�','0?���1����h,\"\n�cI����sm�','',0,'?'),('��a�{ f���|��N�','wp-content/plugins/wp-migrate-db-pro/vendor/psr/container/src/ContainerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/psr/container/src/ContainerInterface.php',0,'���Ȑ���⌉��!f','���Ȑ���⌉��!f','�ea$�?h��������\\r}�9!��w4�\'�,�','',0,'?'),('�\0fR�!���l�C�7','wp-content/plugins/wp-migrate-db-pro/class/Common/Upgrades/UpgradeRoutinesManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Upgrades/UpgradeRoutinesManager.php',0,'\0j�21ʀx���*\n�','\0j�21ʀx���*\n�','ӄk9�#���b���ݷ���6�֣�1�Ls','',0,'?'),('�!�Fn��v�M�~6','wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�����$�@g�*\"�','����I)E@��k�C���o�1�QK�\'G�','',0,'?'),('�\n`ӭW�]m纉}a','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/pause-resume.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/pause-resume.js',0,'���C�Ү�$+\0�~eK','���C�Ү�$+\0�~eK','��c��P�粧qA+ּ��kd�j,�8�_�','',0,'?'),('�\r�½C�勺��}�2�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/sync.js',0,'��\0�u%�v��l','��\0�u%�v��l','q(���\0�H��[�ѱ[��)%×�Q6��U�JA','',0,'?'),('�d���5u9�d��V_<','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Թ���Xp`me<','wP\0�p�zuYDS�z(W�ߥ��P�3$S����','',0,'?'),('�(����l[Fd�ۯ','wp-content/plugins/gravityforms/assets/js/dist/vendor-admin.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/vendor-admin.min.js',0,'�s6ؑ0©:<4�,i��','�s6ؑ0©:<4�,i��','pP�]�v�/[P��p aA��t�ةm�0~','',0,'?'),('����֩B��x�\'�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/escape.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/escape.js',0,'������}OtR��c\'','������}OtR��c\'','ei��k���^�����w}�p]���C����!','',0,'?'),('�p��@���wN��j�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U��s� ����','i���lw�\n^��E|�\"� ��S�沄Bi�','',0,'?'),('��T=Ad�_�?��#','wp-content/plugins/wp-optimize/templates/minify/status-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/templates/minify/status-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܿх��v5�m_J6�','E��� 9|��o�\Zf��X���Y�XdE7�','',0,'?'),('��V�ne�.Q��݆+','wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/whitespace.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/whitespace.js',0,'ʡʼn�*��Av$q�̹�','ʡʼn�*��Av$q�̹�','�\0ܐ�(�z�ڋk=[#q�1�Z�l��$\r���','',0,'?'),('�&�;��w)�ؗ�7�l','wp-content/plugins/gravityforms/includes/addon/class-gf-addon.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/class-gf-addon.php',0,'��pV��L�U�r�_�','��pV��L�U�r�_�','�҈�q`~G*�K�\r$��D��1���P�O','',0,'?'),('�1�o%��q�A��','wp-admin/js/inline-edit-post.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/inline-edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�z��3�6�R��3���','g�\\���A���(~6�L$�}�b�\\dC�^U','',0,'?'),('�<�]�@cu�Qm�x','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/collection/filter.js',0,'�;W����u�)ڤR','�;W����u�)ڤR','S�j6^�<e���x�B����e2�&>','',0,'?'),('�F�`Y)���d�}b�j\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/get.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/get.js',0,'�脱�`�>�l4�BO�R','�脱�`�>�l4�BO�R','ڤ��y�K5?�H���q��:H�иS�M�.','',0,'?'),('�S�6SȄiŵ�~��','wp-content/plugins/envira-gallery/envira-gallery/lightbox-themes/base/fonts/envira-icons.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/envira-gallery/lightbox-themes/base/fonts/envira-icons.svg',0,'H��m�W�ϓ�(�o�','H��m�W�ϓ�(�o�','��>��$�v��d�kН��Tm�ñ�v�n\\�','',0,'?'),('�TL �߈,]��զ�m�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8� �����:{��W��e','6{w���^Gk�Ϋ�25�b��\r���','',0,'?'),('�U&lEG�:�$ϓ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/nthArg.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/nthArg.js',0,'!�L�䀷MXU4','!�L�䀷MXU4','*���-i��9�vrt;�Q��\r��G^A��z��','',0,'?'),('�U�\\L�3�.lV�?t�','wp-content/plugins/wordpress-seo/src/helpers/home-url-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/home-url-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�ĄF�z�֍�','hTWNB��ZG����v�R�f�y\Z�e�A','',0,'?'),('�[�v�b�|[٧�o��,','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/Iterator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Tests/Iterator/Iterator.php',0,'>�-����e�ؘ \Z','>�-����e�ؘ \Z','�֠����p�~ʰB\"=�[����vS�=�','',0,'?'),('�hш�Zݻe�d\'���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padStart.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/padStart.js',0,'��e6������I}[�','��e6������I}[�','��~ӹS��C�R�tAw1�-�~����R�','',0,'?'),('�lr+ u!D��E��','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/other_path/lib/other-lib.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/other_path/lib/other-lib.js',0,'��ُ\0�� ��B~','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�r�2�H����h��Le','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/cacheIndexOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/cacheIndexOf.js',0,'�YK�snH\rT���','�YK�snH\rT���','�];D�B�Lj/Y~x�U%Ϡ��*�I5�:��','',0,'?'),('�z�L�?�U�[ߣ�','wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/get-the-juice-on-the-best-way-to-light-up-a-room/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-cache/juiceelectrical.co.nz/blog/get-the-juice-on-the-best-way-to-light-up-a-room/index.html',0,'�TkP5X�wVgU�','�TkP5X�wVgU�','s���Djb�U��3�u�[nl˹\0�T-��','',0,'?'),('�z�h9��ꈦ��Xp�+','wp-content/plugins/wordfence/views/scanner/no-issues.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/no-issues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xt-|�F������e�','��_?7���c���:_��@���E�J��s��[','',0,'?'),('�{*>(ϩ`-�h��\"','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/intersection.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/intersection.js',0,'�`O�����\0�\0L⚰','�`O�����\0�\0L⚰','nR�9��rp��X�l�8��Q���F','',0,'?'),('��3�oN3����NPD(l','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/createTester.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/createTester.js',0,'r���y����6���','r���y����6���','�+퓰�J`��`#���rD�i���[����I','',0,'?'),('����k��u�o�H�vջ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isFlattenable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_isFlattenable.js',0,'���O#���(�-\0','���O#���(�-\0','�H��4��<X3�����y�v ��qQ����S','',0,'?'),('��ҕտ���Jb8���.','wp-content/plugins/wordpress-seo/src/config/migrations/20200617122511_CreateSEOLinksTable.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200617122511_CreateSEOLinksTable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m���u��ɂ���','5ֱ\Z*�!#����~�$��}&\\�O���FQ�m','',0,'?'),('��9����J�$O���c','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/merge.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/merge.js',0,'cƢ\'���2�`1ƕ�','cƢ\'���2�`1ƕ�','���V�*H����mj�[j����Mf+c�*�M�t�','',0,'?'),('��E�S�c+��#�)','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�Nm�S���C��{�','���P~�{p��}x{�8�2�hX�x���','',0,'?'),('����P+ޜ�4M�9\n��','wp-content/themes/mint/node_modules/cli/node_modules/minimatch/test/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/minimatch/test/defaults.js',0,'U�cĽ-¤���p�I�','U�cĽ-¤���p�I�','�wH��Q��V�d��$��vo�]�\r�(p�L+','',0,'?'),('��b��@嵊H�\0߈�','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/SplFileInfo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/SplFileInfo.php',0,'�m�U��b\n��S�a=k�','�m�U��b\n��S�a=k�','3�~�A����ׂU�dޕ�|�*�����EJov�','',0,'?'),('��(��C7�A����Q�','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/lt.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/lt.php',0,'u�X�����H�m�q`','u�X�����H�m�q`','-K�Lo�ŅQf�%;#^=���!�Rj��!��','',0,'?'),('���� �Yj���1�.�','wp-content/plugins/wordpress-seo/src/promotions/domain/abstract-promotion.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/promotions/domain/abstract-promotion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D��7\0��U��`,*�f','�ꧫ��2�Z�r�^l����w��HA{�ʂ','',0,'?'),('��q���i���e�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Gitblame.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Gitblame.php',0,'}�X�jKa�Q�[b�','}�X�jKa�Q�[b�','Tˆx>q�gS��+��A�����L�sR���','',0,'?'),('����9������ڨx','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php',0,'B���X��@���U�k','B���X��@���U�k','��=�m��w#�kG��{T��K��8�{��9h��<','',0,'?'),('��+[|�p�;�','wp-admin/images/contribute-no-code.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/contribute-no-code.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X?���Ll�R�\'1��','l��C�Q,\\#�����[+��*�le2���','',0,'?'),('���C9�l��Ű�T�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/min.js',0,'��>D��Jb��Ƶ���','��>D��Jb��Ƶ���','��������1���\n\\���qڷ��_�#�$-�','',0,'?'),('����@i��F�Q�F;','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/hr.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/hr.php',0,'+��D��wN�\']-','+��D��wN�\']-','sU���V��ݻ�Lc���;8,wae$u��','',0,'?'),('��#ՙ\n)�a,�Z��W','wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/lib/verror.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/verror/lib/verror.js',0,'�\"��H�>�0\Z�','�\"��H�>�0\Z�','N �b���/�S��I�9�^��P���Pwu�','',0,'?'),('��@��f�����=P�','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php',0,'�ቂ\'��$��}k�','�ቂ\'��$��}k�','�R�hk�Gr_��4p�9�^���A䏋8`�','',0,'?'),('��� =���Y�3���','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/no-conflict.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/no-conflict.js',0,'ԑ̣��WnA+-n��','ԑ̣��WnA+-n��','x�^�C�J�Y3TLR�n�#��(\\�R�3�`','',0,'?'),('�ˋ�A�F�wD4B\0�','wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F��5�U�����o�5��','cj��$�Í��K؊7�Ͻd�}[�i<�{','',0,'?'),('��N >����S߾�(�','wp-content/plugins/gravityforms/js/form_admin.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/form_admin.js',0,'�q�l\"��p]� l�Q[','�q�l\"��p]� l�Q[','C��^f�%��>E�+��ȥE����3>i�&�','',0,'?'),('�ۨ��o |*��\nؽ?','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/Output.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Output/Output.php',0,'/���\"*?=�F�CP�','/���\"*?=�F�CP�','�`\0{��{)_b{�CΩ�Ah+���h�=� �-','',0,'?'),('��F�����{��A','wp-content/plugins/wordfence/lib/sysinfo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/sysinfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����㠆�/���ڳE','�MGt�\r=��Ѽ�)#Iz9���=���`Q{k','',0,'?'),('��a-@,�ݰ��q>:�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAttribute.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAttribute.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M��ω:��#�b?��','\'�\Zi���>/ݍ\Z0й�k��M\Z�p���','',0,'?'),('��vh��KL��`F*','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mapCacheGet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_mapCacheGet.js',0,'S�B��s���r��tv','S�B��s���r��tv','�|����d���LN���\'�A�y9�i\\H�j','',0,'?'),('��`O72n(�e','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/MessageProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Support/MessageProvider.php',0,'u��x���ѧ�\'KH�','u��x���ѧ�\'KH�','c�X�69�z�&�Yww����/E���$\Zj�','',0,'?'),('����~�a�De��F�G','wp-content/plugins/wordpress-seo/admin/metabox/class-abstract-sectioned-metabox-tab.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/metabox/class-abstract-sectioned-metabox-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������T�G����}��','}ui<��M����$�ʫjF�\n�|KG2�}��\"','',0,'?'),('��E���Q?�� (�','wp-includes/class-oembed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y���ҿ~�K�H�<�f','? �An�6����&z\'`�,��j�]m����v','',0,'?'),('��KaM��^�+��?h','wp-content/plugins/advanced-custom-fields-pro/includes/local-meta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/local-meta.php',0,'f��m�w�B���YU�','f��m�w�B���YU�','T���r7��L7k�ռ�0�uG�ϥ��^� ','',0,'?'),('�Q�z �v�;���r','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isNaN.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isNaN.js',0,'�K�e�(De��v���D','�K�e�(De��v���D','���L!��J���o�Rهk&�M�鴢A���','',0,'?'),('�.݁B��xK�Y�','wp-includes/ms-default-filters.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ms-default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\"�r�\0�R��','YK��<� �1A�O���AU����hP�C��','',0,'?'),('�����pL��&\'K�','wp-content/themes/mint/node_modules/clean-css/lib/properties/validator.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/properties/validator.js',0,'��y�̒S�C��','��y�̒S�C��','�\'!\Z|�Ý���`۴}���=�J�2��q�F','',0,'?'),('�.����F��g%�>','wp-content/plugins/wordpress-seo/js/dist/reindex-links.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/reindex-links.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W������*b��k�','��(¾<�8C���:�x�AU8Ja�\0��ߙ','',0,'?'),('��z_ t\\a�����rg','wp-includes/blocks/comments-pagination-numbers/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c�P�ude�Oޕū��o','6iO�ɭ�w��X��GV�9�5��-I��Z','',0,'?'),('�1���f&h%����','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/FlattenException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/FlattenException.php',0,'��\Z��(MۮA��\n','��\Z��(MۮA��\n','��h3�U�[��L�-<r�D\r����xP�y���','',0,'?'),('��6����~e�{�\".w','wp-includes/widgets/class-wp-widget-recent-comments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-recent-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<��F��`�����','����ԃ�O�h� ��8q��p����=F[r','',0,'?'),('�!$Y�Y�s{= �','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php',0,'��݊W0����̏�','��݊W0����̏�','���L����LP�Z �}!�E@+V1��>����','',0,'?'),('�)�ƹ�>�cS����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePullAll.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_basePullAll.js',0,'�bG(6#�t��˨8�','�bG(6#�t��˨8�','z�~��2ۍQ^�uY�0�b�-\'�>`ާ��\n','',0,'?'),('�*O-�Lτ���\r[�u','wp-admin/css/about-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/about-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\'x<;!�����t:��','��S�I%��C��u�dܭ��ih,>M�','',0,'?'),('�7`�)�X��<k�u�\"','wp-content/plugins/wp-migrate-db-pro/class/Common/MF/MediaFilesLocal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/MF/MediaFilesLocal.php',0,'[Jm�|�o��� P�','[Jm�|�o��� P�','Jʷ��,̑��ίQ\nlVb�N,u�.KBLR8','',0,'?'),('�??n�����_2g��j','wp-includes/js/wp-util.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/wp-util.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ѱ~�����t\r�(1M�','�@\"L;j����ߖ�;2Lg��r\n�Z2���C�?','',0,'?'),('�?k�a��NJ�H��X|','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php',0,'Wa�J4aޚl�1*��','Wa�J4aޚl�1*��','�4��w$\0�!�Z�\"�_�c�kx2i���Ց','',0,'?'),('�C���EK_���Ay[ж','wp-includes/blocks/site-title/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-title/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���S�ǎ��p&T^�l','�` �*�3��U�ev\'t �u�k����U9r','',0,'?'),('�N�钽�� �T>,ݵ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/forInRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/forInRight.js',0,'��*\\��C�OBa�ϗ�','��*\\��C�OBa�ϗ�','XE��(�|��1�d��\rTr�@��8g|O�,','',0,'?'),('�Yg�$z�H�.Y��','wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','嚚O�ׅ.(\r�\"�\Z\0Z',':���Dz=k:E7�[e��V%�b�3r��\Z��','',0,'?'),('�[Z�i�� (v�y�٣�','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/binary-search.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/binary-search.js',0,'��$x��o�+ց�','��$x��o�+ց�','/e�^ȉc��3��\\���!�eǮҵ�ګQ�$X','',0,'?'),('�_��,\r�)\"J��\Z\"�','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/img-apng.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/img-apng.js',0,'x���>����C����','x���>����C����','k47�B�Z���R�} \nAy�l��b�p���j','',0,'?'),('�b:F16q\\�Z�H\'�','wp-includes/SimplePie/library/SimplePie/Decode/HTML/Entities.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/library/SimplePie/Decode/HTML/Entities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MZb)��@�ɽ4�ٔm','Q��R�qtMmJ�q�{��=�U#��\0��{9','',0,'?'),('�i�eS�7���%��~','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/fillIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/fillIn.js',0,'����sL;�~[�?��','����sL;�~[�?��','�W�Ѹ�|u��;J�=]��J�R��g\n�','',0,'?'),('�j!C�\r�9�u�Da','wp-content/themes/mint/node_modules/uglify-js/bin/extract-props.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/bin/extract-props.js',0,'����B��`gD�+','����B��`gD�+','��o�ll�j/c7/i��B��m ��[Ј�m\0','',0,'?'),('�j�����,D{@ͬ�i','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/qs/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/qs/index.js',0,'�i�:M�2_�&��','�i�:M�2_�&��','��boZԓ~��A�bS�<�H��+]H\\=R��','',0,'?'),('�l�%W�U�5�6�\n�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/wrapperReverse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/wrapperReverse.js',0,'�P8�{{���V�','�P8�{{���V�','���2zl}HZ7/����fpVx�~*�k�','',0,'?'),('�p�8W4�k�c>�8','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/AggregateException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/AggregateException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F���9p9N�C','4�Z�h�I{��]+W�Rf��(�mۦW��','',0,'?'),('�u\Z� ׀+��>�','wp-includes/blocks/image/view.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�53�T��R��','^��sr�XD0���~y��������a�ٜ','',0,'?'),('�u�W�� ș7;�j�','wp-content/themes/mint/node_modules/shelljs/scripts/generate-docs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/scripts/generate-docs.js',0,'�Qa��ώS�q4G���$','�Qa��ώS�q4G���$','�� ]���\r�T�\n},���\r��\'��kzE\'�','',0,'?'),('�z�0]�AO+\\D>�\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isPlainObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isPlainObject.js',0,'�������QQn�X�\r��','�������QQn�X�\r��','�РX�MP�H�C��l<���)��nw·SV�','',0,'?'),('�{��vI*��6�K3','wp-content/themes/mint/node_modules/bower/lib/node_modules/array-map/test/map.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/array-map/test/map.js',0,'�G�2��?�ڥ����','�G�2��?�ڥ����','��Yӄ_�\0L��k�{;~��P�7iV�(����','',0,'?'),('�~`G¤V�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/circular.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/traverse/test/circular.js',0,'�+Bŗbz�u1�]E ','�+Bŗbz�u1�]E ','����c)� P!�zZ�x����I�M�r��^','',0,'?'),('���&���B�C�Ő�Q','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/NamingConventions/ValidVariableNameSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/NamingConventions/ValidVariableNameSniff.php',0,'��W/ݢo#\r�+�','��W/ݢo#\r�+�','�^4����_M+O�e�<��N$����8jT^�','',0,'?'),('�����(|!�:ϧ�7','wp-content/plugins/advanced-custom-fields-pro/includes/rest-api/class-acf-rest-api.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/rest-api/class-acf-rest-api.php',0,'�=e��\\��/��','�=e��\\��/��','��m�*[ب�T�U/ʟVp�Ry�����j�','',0,'?'),('���D�N�Gcf�8u�','wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-check.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/page-comments-check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i� �7_�Ո��H�','�l���4���h�@taNN��?tc��]�','',0,'?'),('���x���g��p=�','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/rc/test/nested-env-vars.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/rc/test/nested-env-vars.js',0,'��EŶ���AFH��','��EŶ���AFH��','r�o��j�`x�m頊0��}�^��]\rґA','',0,'?'),('��b�k�>z/=^�Mx','wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('���uS�����!�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesComments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesComments.php',0,'Qe��\">��?�','Qe��\">��?�','�wd�0��̀��H�MćP�5��?��f��MwC�','',0,'?'),('���;�dAo+��d(�','wp-includes/blocks/quote/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/quote/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�Iu����a7@�͓_�','����l�՟�\"ܽm�#�����>���K','',0,'?'),('��n\n%Z!�\"H�@�#','wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/dash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/minimist/test/dash.js',0,' 4�3��Ū��?�',' 4�3��Ū��?�','�Z�OH�߸�P���P_�Tn7fvT&�Jo/','',0,'?'),('����m��ӟa����','wp-includes/blocks/post-featured-image/editor.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-featured-image/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k0������4ɯ','����ة-��M�DI��!�k�����EE(p','',0,'?'),('�� �z���i}���&','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/DocCommentAlignmentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/DocCommentAlignmentSniff.php',0,'��F������Iш|�','��F������Iш|�','ɥ���n�F>,�A���� �-���7H�','',0,'?'),('��e\0c�e\rH/��3','wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-store.783e9f706252c1a44022.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-admin.setup-wizard-store.783e9f706252c1a44022.min.js',0,'��~C��s�v���oT','��~C��s�v���oT','�Q���d=8[�7�[���)��Z}�խ�','',0,'?'),('��\'�V_9��i�䶯G!','wp-content/themes/mint/node_modules/clean-css/lib/text/comments.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/clean-css/lib/text/comments.js',0,'%�E����R�:s{r�','%�E����R�:s{r�','w~�n6�/��(��˗����BI�>ͮA�^��.T','',0,'?'),('��9XH��mGA(�3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseGet.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseGet.js',0,'�3�m�f�J(|ة','�3�m�f�J(|ة','LO�j�up!n�\'ǹ��=�Q]�p���w� ','',0,'?'),('��oJ�<\'�+G�%:�','wp-content/plugins/envira-gallery/assets/images/bnb-layout.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/bnb-layout.svg',0,'a�T6��I\Z�C\\�','a�T6��I\Z�C\\�','O$���@�R�1�6��݈��?*S�q>���\n+','',0,'?'),('���lL5�����0͚K','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js',0,'w����B������Q','w����B������Q',':��<�����H�EK%��I⡏`���M1','',0,'?'),('��E��e���Ar�и','wp-content/plugins/wordpress-seo/src/conditionals/yoast-admin-and-dashboard-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/yoast-admin-and-dashboard-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oD����E�(3�&d�h','��_[|!�@=��>��X��ԓX�!��F.��s','',0,'?'),('��\n��R�b��x���g','wp-includes/css/dist/block-library/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y�)#��BK3*�k�','�l+�JƘ8�F��z]ȳR�Sk)�ѓ��U','',0,'?'),('��GE��w�����[j','wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/node_modules/q/queue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/p-throttler/node_modules/q/queue.js',0,'#���H�V��5���_','#���H�V��5���_','�40~LX��B�n�Ϊ�I����g1wD��^','',0,'?'),('���qL�I����','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/build/test-suffix.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/build/test-suffix.js',0,'�~/Z1��zqQ ��0�','�~/Z1��zqQ ��0�','���O3Jg\"?�N�(��Ʌ�&�NH�p�l\'� ','',0,'?'),('��Nd;I5�WV���','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tester/ApplicationTester.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tester/ApplicationTester.php',0,'�_�v�!\\�c���j�','�_�v�!\\�c���j�','����\rme��!��h �{&:u7-�����=��','',0,'?'),('��Y�\0)\r/j�)�Ar','wp-includes/customize/class-wp-customize-filter-setting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-filter-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M��`f��\0�iu�','�\0<\n�j:��Y�F���d�w�� ���','',0,'?'),('�\0�ח)�_\"�i�\'2','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',0,'����=`��w�2��6�d','����=`��w�2��6�d','6�ŷ�Wh� �����0�W?�ޝ�Y�ǝm�','',0,'?'),('�c��Y JB�H���','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/LoggerAwareInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Bߛ�H� �}0�','�������w���0����l�����?��','',0,'?'),('���G��J�N`�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isRegExp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isRegExp.js',0,'��D����s �-�-','��D����s �-�-','2�CH�8z��� x@J�\Z����j��@�j��','',0,'?'),('�؉�iIqt#]4','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c¦��y<�:�G�','r��R��J��ͪ���M[��Ut�%���Yx��','',0,'?'),('�2��i6�z%����+','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/NetworkExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-client/src/NetworkExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w��d���qK�@�F�\"','�v�_���-��u� �0*\r�Vfq\0e�1���/','',0,'?'),('��].�x|T���g','wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-watch/node_modules/lodash/dist/lodash.min.js',0,'�;�R�l����P��_','�;�R�l����P��_','� �G���; �����N��pA5��V�r4U','',0,'?'),('�h�\Z��A2rj�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/YamlFileDumperTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/Dumper/YamlFileDumperTest.php',0,'� Nn��Q��E��','� Nn��Q��E��','�)EW��\'�xKv�[J���x<�H[�i�','',0,'?'),('�P�h`|/���:W�\0','wp-includes/blocks/columns/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/columns/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���+�+F�3\rn�','!ã���;h�Z��Da�y^Z�t�U췸���5','',0,'?'),('��kf�\r��w�)[�3','wp-content/plugins/gravityforms/js/tooltip_init.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/tooltip_init.js',0,'��2r��9 ������','��2r��9 ������','�$�*s��ƾ�09���4G�t�DF�i���','',0,'?'),('�$n1��U\\�x(�','wp-includes/blocks/missing/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/missing/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���h�w:9� �5�w^','{˹R�\\\Z���Th�cTT�ʱ�q��>L8*��','',0,'?'),('��-��-ç���ξ','wp-content/plugins/wp-optimize/minify/class-wp-optimize-detect-minify-plugins.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/minify/class-wp-optimize-detect-minify-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K|��DzT<�9�-�','Ғ��E�<�xG���_�S��\"�Z��','',0,'?'),('�r.�yp\n.��*���+','wp-content/themes/mint/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/sync.js',0,'�8C_�����RP�g�','�8C_�����RP�g�','�ӓ��D0f%�e����N\Z~}�q�{��0�t','',0,'?'),('�$_���X��la�','wp-includes/js/jquery/ui/sortable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/sortable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������SI&�@�','�-�mۆZ�I�@�b,8{3��Zy�� ��Q}','',0,'?'),('�+I6�з2����','wp-content/themes/twentytwentytwo/parts/footer.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/parts/footer.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�>x)�V)P�E�G','�1Jg����n�k_�d��N[%Q�`��|�!�(c2','',0,'?'),('�.\'�Ūc��fuϻm�','wp-content/themes/mint/node_modules/grunt-autoprefixer/tasks/autoprefixer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-autoprefixer/tasks/autoprefixer.js',0,']58��x�]9�g�',']58��x�]9�g�','o*hf�,��nIK8�=j_�K��&D ���D','',0,'?'),('�1�[�qs���o-O#�','wp-content/plugins/wordpress-seo/src/config/migrations/20200507054848_DeleteDuplicateIndexables.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20200507054848_DeleteDuplicateIndexables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y�#�.��{)�','\n�;����� �n��C�<\\y)�bA�ϥކ�','',0,'?'),('�1ɡ��+rF�8?Ed','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/FunctionClosingBraceSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/FunctionClosingBraceSniff.php',0,'g/�Q�:���ݑt.��','g/�Q�:���ݑt.��','�f���_�\"���9\"�V݇��@&�}�Z��','',0,'?'),('�26ENL�vA�m','wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-rhino-1.7.2.js',0,'l����I�[m�c~�','l����I�[m�c~�','.F4�?�Ic�W�iS�N[ؓ���t���B�','',0,'?'),('�=�Q�\"�L�X��>V�','wp-content/themes/mint/node_modules/asn1/tst/ber/reader.test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/asn1/tst/ber/reader.test.js',0,'!L2m��d��rm�4','!L2m��d��rm�4','*�7S�F:\0�@�&\'0\'�~Ҟ�C�p�>!m�ؓPi','',0,'?'),('�H �ڳH2�ZT�`','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/tail.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/tail.js',0,'�ċ�����*ІJ.','�ċ�����*ІJ.','�}��U����Ċ9=���\r���li+\02��1','',0,'?'),('�R;lzO�8m<3�Nie','wp-admin/user/freedoms.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/user/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`���U�� }��\n�','�οzB�+q���5Vl�K�l��k���Z/��|','',0,'?'),('�V�@@�{:�$bK��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/OptionsTrait.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/OptionsTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�4��[�\Z�V�Q�','�/��2�F�)\Z�\\���ui�4;�Ef�;','',0,'?'),('�V���{C3V��Q���','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/file-filesystem.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/file-filesystem.js',0,'�;f�S�اU3kl�n�','�;f�S�اU3kl�n�','��\0�K 6!��vWa���f�pk��_����!9','',0,'?'),('�afh=F���T�:��6�','wp-admin/includes/class-ftp-sockets.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-ftp-sockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zc78\r��j��j�ؒ','��Q�,�0\rNQJ����Y�����m�ʼ0��A�','',0,'?'),('�b�y\'<�>4-�Z','wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/output-engines/class-asset-enqueue-output-engine.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/theme-layers/framework/engines/output-engines/class-asset-enqueue-output-engine.php',0,'�m��{�����85�','�m��{�����85�','mG���c�To��Zpi�[P\\b#{.Y�9t˯��','',0,'?'),('�e�L��{����\'6p','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/lib/crypto.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/lib/crypto.js',0,'F5�,���Z��*�','F5�,���Z��*�','rŷpis�\\����}�}q�hS0�z�i���','',0,'?'),('�e�f��S!�\"�]�3','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-plugin-files.0d01933a.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/addons-plugin-files.0d01933a.svg',0,'���-=[��$!}.���','���-=[��$!}.���',';��3Q�Z�I�O����8�\"���>�ͮ','',0,'?'),('�f���r~�v(�A��','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',0,'�<T����W<l0ӵ','�<T����W<l0ӵ','ۡ�-�ON~*���_���>��g�<����','',0,'?'),('�h�Թ�@K�~�&Ң�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-digest-auth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/request/tests/test-digest-auth.js',0,'�M��&2��\\.q�','�M��&2��\\.q�','�PKƨ�<�g>�\'*\\���m�L%v���','',0,'?'),('�ik[!gW��}�v�ȵ','wp-includes/blocks/image/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/image/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�S�LP��7[����5 ','�)�B��/���:��W�8�G�)���*�c�B�','',0,'?'),('�i�CH0�rZ\n��y�','wp-content/themes/mint/node_modules/normalize-package-data/lib/extract_description.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/normalize-package-data/lib/extract_description.js',0,'\\R<J�iXo2Ԝl�ٜ.','\\R<J�iXo2Ԝl�ٜ.','_^S��]�E��S��tC��Mz�m<�e','',0,'?'),('�o��_Qa��KB�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Catalogue/TargetOperation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Catalogue/TargetOperation.php',0,'��?,�N/��#F','��?,�N/��#F','�1>*�,2�l��>�Ş��0J�us�CU�ut�','',0,'?'),('�r����\\�02_>\08','wp-content/plugins/advanced-custom-fields-pro/lang/acf-vi.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-vi.l10n.php',0,'��4I��jASW���','��4I��jASW���','\"D+Juv���x�Yy\'�oo�2�6�u\0� } ','',0,'?'),('�����\n/�xY*Ԏ<��','wp-content/plugins/wordpress-seo/css/dist/tooltips-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/tooltips-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Uo���՜.@B\0�','t�G\\�fb�^�����L#�Wd*�6M�','',0,'?'),('����em�ϵ�c4�(%','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/flatten.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/flatten.js',0,'<�+b!*Q+ޗ���','<�+b!*Q+ޗ���','�6X�<����[d%z*\'bm�hsTm.\'�~϶j�','',0,'?'),('�����y��7>�}L�','wp-content/plugins/gravityforms/includes/form-display/block-styles/block-styles-handler.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/form-display/block-styles/block-styles-handler.php',0,':o�`���@�X����',':o�`���@�X����','Ab�`��� ���T����\0`�7�8�#�wN','',0,'?'),('���;�IχX�u\"��g','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedUniq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/sortedUniq.js',0,'V�oV=G��\r�Ht\rb�','V�oV=G��\r�Ht\rb�','RQ�ށ�^�c��<�?\'�4�AC\"��h�ΉEi','',0,'?'),('��PEb��p>�&|e1','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_CR.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-es_CR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�؋&TE�f�x�g�A�`','���㟧[k��+ݲ�)R\r���<���k�,','',0,'?'),('����I�\0K��u�f\"t8','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseCopy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseCopy.js',0,'�?s�KǞΖwՈb','�?s�KǞΖwՈb','�oV/N>���D��h(��q�\n1-E�Y�F','',0,'?'),('�����;~ӷR�>��','wp-includes/class.wp-scripts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7 ��#K���h�+','r�uڶbW8��7f����G]�k\0���f5��','',0,'?'),('���nvp�e������}�','wp-admin/js/customize-controls.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�hҊ�j�~\\\r��3��','�a�{�ε\\���/�˟���ܱ��ȣ�','',0,'?'),('����b�Z\0���U9','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/XliffFileDumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/XliffFileDumper.php',0,'��k�Yi��g��:*G','��k�Yi��g��:*G','Z��Nȱ��(�꽉�����\'\0�K�ק1','',0,'?'),('��s�:�W��3�Z5��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/ServiceProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/ServiceProvider.php',0,'n��,��\Z/��\\��>','n��,��\Z/��\\��>','k�A\'��\Z�H�9��6�,j��\r�q�f�','',0,'?'),('��*$b�U��)�fX���','wp-content/plugins/gravityforms/includes/setup-wizard/endpoints/class-gf-setup-wizard-endpoint-validate-license.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/setup-wizard/endpoints/class-gf-setup-wizard-endpoint-validate-license.php',0,'�uf�dk��O[��\n','�uf�dk��O[��\n','䧇��hI�EV ��Z>��Jd� �n��B�!','',0,'?'),('���C�(�\r��r�E','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/hu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/hu.php',0,'��4ə/��C\0�$u�','��4ə/��C\0�$u�','�A\'NV6�Y�� P]���y��9�A���8','',0,'?'),('����yr߳E��M qh','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/schema/safe.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/schema/safe.js',0,'������̀���','������̀���','�����T�96��\ZM����4����R���LRl�','',0,'?'),('��.��o;ߠpo�3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/identity.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/identity.js',0,'�����3���;�?','�����3���;�?','��ܽj�ƶb�o@V�.\0�!M�Q��\r��� Xb{','',0,'?'),('��&���#\Z�y��','wp-content/plugins/wordpress-seo/src/integrations/cleanup-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/cleanup-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^��F��Y��!R�A','����P�G�ӵ�ѷ6n��$zƶs��K#','',0,'?'),('���D�Tǡ�#\"�1?�','wp-includes/blocks/cover/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/cover/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f���F�̿�$\n����','J�2���v��T�6n�9�ĺH��c3����|e','',0,'?'),('��P���Z2�7�Mn��','wp-includes/blocks/rss/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/rss/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�C?�~���-x�','0K:�FS�2\\dD�Ψ���)\\xd�����','',0,'?'),('���t���吙q��','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/foo.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/foo.js',0,'�1�=q���V���','�1�=q���V���','D�i2���)�Wk�-���CX�[n��z;Y�3','',0,'?'),('�����1��Af��.�','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7�G\'�u��C�H\0ۙ','��q_��.aF��e{A�%\\o[)�U\rhW��','',0,'?'),('��?����`��cj','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/method.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/utility/method.js',0,'�?ݶ�z-xw��9�`�','�?ݶ�z-xw��9�`�','��\n�ˣ��e�\'KV�W�9<�l�g�����x','',0,'?'),('���y����+��%�9�','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Exception/RuntimeException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Exception/RuntimeException.php',0,'Oo\\`m����_�','Oo\\`m����_�','t�b\0�7\r������LU� \n���[���s�','',0,'?'),('��3t�}�_ �U��z','wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/contextmenu.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/lib/cache/contextmenu.js',0,'�h��,Ͳ�Sn�Z��','�h��,Ͳ�Sn�Z��','\"\\p`�>\r�.�$ �C��*�66�����Ir�','',0,'?'),('��I: ��\'�\ru��:o','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetWordPressSettings.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetWordPressSettings.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�ɥV�eg�M�\'','��G&�.bW�q� ^�Z#��.G���J�','',0,'?'),('����ڠ��s�\0Ś','wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Connection.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Queue/Connection.php',0,'��8�E\'3�\n�@��eՈ','��8�E\'3�\n�@��eՈ','�ˬt��n��mg�Q�ك����\Z�`�','',0,'?'),('���*��h^������','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'c�r�ϙDq5\'G��~','H.���#\nD��u9u�q�<fA�� e��V1��','',0,'?'),('���!��M�s�a�$qK','wp-content/themes/pinnclonesmalltest/vendor/composer/autoload_classmap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/autoload_classmap.php',0,'U����p��@','U����p��@','��d�MF��iu�k%#�y��݃k�ލ`','',0,'?'),('���ヹ������Z��c','wp-content/plugins/gravityforms/includes/locking/js/locking-view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/locking/js/locking-view.min.js',0,'�r�Žwu m�:`*�','�r�Žwu m�:`*�','$�c1�3����~&$[r\0C�Df7�X�B9�@','',0,'?'),('��?����F��6��G','wp-content/themes/mint/assets/vendor/jquery/src/attributes/prop.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/attributes/prop.js',0,'}\rp���QX�+]@7 ','}\rp���QX�+]@7 ','���]��<sU7�ďEW���gy�Xn*�g�\\��','',0,'?'),('���\r5��9�da�N3T\n','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/dropWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/dropWhile.js',0,'����y�ȵ:��4\"','����y�ȵ:��4\"','s���(�=+,�F�<��ľ}�����֩�\\�','',0,'?'),('��wrp���]�9q\r��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortedIndexBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sortedIndexBy.js',0,'���(K�*�c�','���(K�*�c�','����P��Ç�?�O@z1��F:��9���*','',0,'?'),('��.�J_y�jmB�w','wp-content/plugins/wp-reviews-plugin-for-google/static/img/instagram-feed-widget.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/instagram-feed-widget.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a(�d�W{�$��] �','l\0 =���:��{�Ȟ�\rw}`�\n�$o�','',0,'?'),('��ê�^�m��� :��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isObjectLike.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isObjectLike.js',0,'R�Oc��\Z�P�� p.�','R�Oc��\Z�P�� p.�','\'%�,_AB&��̰Մ,��h�>���d�Q�','',0,'?'),('���]ZL��?������','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/script-defer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/script-defer.js',0,'}�je7�Kr��!�,�V','}�je7�Kr��!�,�V','M����}):{�{���^T\Z��\\T��_�','',0,'?'),('���ł��K<�e5&��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/omit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/omit.js',0,'XtDͻ���ANZ��k�','XtDͻ���ANZ��k�','��r�]�I#��y����`�+��Ί�j�z-�m','',0,'?'),('���B\\u}�L�,���','wp-includes/css/dist/block-directory/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-directory/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[���5\'�z*V�����','�-#cu�)�v>U���f~�wI�\\��C:','',0,'?'),('��z`�ෙ�A���`','wp-content/plugins/envira-gallery/assets/css/images/icons/video.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/css/images/icons/video.svg',0,'�m�`��5�_Y�K��','�m�`��5�_Y�K��','%������(p�f����/�3ޝ���w���','',0,'?'),('��TO�{:�VWw','wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/ansi-styles/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-uglify/node_modules/ansi-styles/index.js',0,',Ƶ<�e�/�E�g\0�',',Ƶ<�e�/�E�g\0�','����N��{�}�Zv�\'o{Z�M(\Z\r��),','',0,'?'),('��U�A�8�to�','wp-content/themes/mint/node_modules/punycode/punycode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/punycode/punycode.js',0,'�/�t�)|F��Vp�','�/�t�)|F��Vp�','��7��#�B��>( ����dC� �+9y��I','',0,'?'),('��)�v�\"tI?�E�','wp-content/themes/mint/node_modules/bower/lib/node_modules/signal-exit/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/signal-exit/index.js',0,'�Y�-�\n��_��z>��','�Y�-�\n��_��z>��','��s\\?��p���\0�k�l:�wqG�z��3','',0,'?'),('���B�S\rr�:���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/object.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/object.js',0,'��S��KjX�a��','��S��KjX�a��','�_h>�Li�P��BD�yK,) ��ܣ}��+','',0,'?'),('�\"�Q�OO��P���b','wp-includes/blocks/group/theme.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/group/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�jC�OѺ}�`xݰ�','��GC�f0S�\"hs��p4YuR\Z��$��xqO','',0,'?'),('�#:���Sk�U���{�','wp-content/plugins/wordfence/modules/login-security/classes/model/view.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�:�?��l]�����u','2P��탚��=w=��7Ar�\n�fQ��~,��B','',0,'?'),('�$�;�_fv;E��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/slice.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/slice.js',0,'��>N�t���r��?�c','��>N�t���r��?�c','�ٲ�O�ܐ!��)���� �B���J:ԇ�\n','',0,'?'),('�%�d��&��e�&/','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/findLast.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/findLast.js',0,'R\\�>Ѻ�ZQ��ѹ','R\\�>Ѻ�ZQ��ѹ','r�m���d�6��7V�=��ᒉ���g�|҈','',0,'?'),('�(�|n��sARF�+','wp-includes/js/crop/marqueeHoriz.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/crop/marqueeHoriz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̮����;���Lo\n','|���S�e��|.���/�Q�Y��W�}(','',0,'?'),('�0�,���M���_)','wp-includes/blocks/comment-content/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-content/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v����%�]K�','�U֑�w@�,m1Ŵ�C,�\"���F��Yjk','',0,'?'),('�3 ���^pL�ߓms�','wp-content/plugins/gravityforms/includes/embed-form/config/class-gf-embed-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/embed-form/config/class-gf-embed-config.php',0,'�ϑ����¢�<��z~','�ϑ����¢�<��z~','�V�\0d���`+��L�\r)U�Q�8�P�ا�^�','',0,'?'),('�3��g����|��?�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/intersectionWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/intersectionWith.js',0,'#���\r�D�\'ĄC�1�','#���\r�D�\'ĄC�1�','-L↰�\"�BD��}i�{��\"?�\n3�cR','',0,'?'),('�5\n٪ג��b���','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailedException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/� ��8sbNȫ��','�|\'�`m�h�i2!d�(A�81\0�X�. ���︻','',0,'?'),('�;�Z/�el2�T�UM','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createCache.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createCache.js',0,'ai?kq��e,��','ai?kq��e,��','�\\���5O0ȣ��5,�)DC��7��UbE�','',0,'?'),('�C��^:z:�{�I�','wp-content/themes/mint/node_modules/grunt/lib/util/task.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt/lib/util/task.js',0,'��\"���@���u���/','��\"���@���u���/','�n4���TZ�!>�Y\r7���!��','',0,'?'),('�EXz��Ox�8*k�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php',0,'Y4��-�O��C:\r��s','Y4��-�O��C:\r��s','nx�T�:��F��<F��,�a�+]/�e!�','',0,'?'),('�G ђO�5)l�\n�\Z�','wp-includes/SimplePie/src/Cache/CallableNameFilter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Cache/CallableNameFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5��8�K�*��a��','�]��Ǩ++.#��|>$�d`�����u��%��;','',0,'?'),('�H�A��5�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/spdx-correct/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/spdx-correct/index.js',0,'eZP��k�9�V�~','eZP��k�9�V�~','/��QTr�y4!�:G��&�!���D��5�L','',0,'?'),('�J��p�w91\"��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/css/livechat-quality-badge.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/css/livechat-quality-badge.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/aY��3�+ݸ PV\"i','�2��b�KC �ἶ)�#����/`1��!�','',0,'?'),('�O��\0d�:R�b��XA','wp-content/themes/mint/node_modules/tape/example/nested_fail.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/example/nested_fail.js',0,'������D{��\Z','������D{��\Z','G��>���\'�\'�=ܟ)ޜ+�2�D�F��D.n','',0,'?'),('�Zi�g������Fc','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getMapData.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getMapData.js',0,'�ڇ\\�b9I0���Ƿ+','�ڇ\\�b9I0���Ƿ+','���|\n���o����n�z�?҂�5�e-','',0,'?'),('�[\'�/���;���','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܆)C�/��կ� ٝ','1���\'C�AUu�3�i��f�f�����Dtl~�','',0,'?'),('�]��\"*�#��+4T�}]','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ur.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/ur.php',0,'#E��1�c��k��4�[','#E��1�c��k��4�[','���Sgȟ�V?��@G?$��r<Һ�)1�s','',0,'?'),('�a�;\"�����d�','wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/tst/ber/writer.test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/tst/ber/writer.test.js',0,'���7����J��E.Wq','���7����J��E.Wq','�P̲/�ǒÂ82>ܷW�˪ х�Y�E\"�g�','',0,'?'),('�c:Qk2� �6��','wp-includes/blocks/columns/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/columns/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=����<�^��\\k!�H',',�4��#�ZTUF�&�g � R�-^��JO','',0,'?'),('�o��yF�`��u��','wp-content/plugins/gravityforms/includes/orders/summaries/views/view-order-summary.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/orders/summaries/views/view-order-summary.php',0,'�y�hz�e���Lo','�y�hz�e���Lo','���<r�؟/�9@9C����?�`�?�Ǧ[�N','',0,'?'),('�o�R�T�����e�D','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/confirm.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/confirm.js',0,'�_�Mҵ{��0�L�j\rz','�_�Mҵ{��0�L�j\rz','���|�<�����nW��ku�e�IrߥLX��','',0,'?'),('�r�f�ٽ�X�4�;�','wp-content/plugins/gravityforms/preview.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/preview.php',0,'�6�)\Z!\'pSH��ڎ�{','�6�)\Z!\'pSH��ڎ�{','F�-�z�x��[�/�(In���諶=��r�53','',0,'?'),('��@x$���r��K��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/inRange.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/math/inRange.js',0,'(�ƋҿF�W���>','(�ƋҿF�W���>','Ǒ�Ϊ1lc^]����E��,�S�d�\0\'�\'���','',0,'?'),('����F(�*s+R�x��','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/seq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/seq.js',0,'��m���2o4�\\䴌','��m���2o4�\\䴌','v���L�߂�cR2�t60�6K���8�:ѥK�i','',0,'?'),('���>�T\"����hXK','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/ifreturn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/ifreturn.js',0,'t�����X&�vI�','t�����X&�vI�','{���$|���xH�̃Ȟ�ÊFoԢʤ�<G�','',0,'?'),('��\Z\\�-e&);{?Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/dashdash/lib/dashdash.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/dashdash/lib/dashdash.js',0,'�Ҧ���.��f','�Ҧ���.��f','���S�ʼn�d��0����N�{f�&��','',0,'?'),('��<iLK�ҺJ�{Wz','wp-content/plugins/advanced-custom-fields-pro/assets/images/pro-chip-locked.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/pro-chip-locked.svg',0,'��_��\'���8SRA�','��_��\'���8SRA�','��rR*��Lޫۂȉ�OH���&�Zk��','',0,'?'),('��m\'�7��?��','wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_after.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_after.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';�:8�~��E�D�e','�\Z\Z��aG��k`�}T�C�n?ؚS���','',0,'?'),('�����:[&b�[�hY��','wp-includes/images/smilies/icon_razz.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_razz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9[�w���D�AM�A�',';���P�1]f�UE��;`Qڮ�\ne�Z\0@4�aA�','',0,'?'),('���h�1�\\L\\1\'�','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-nav-menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-nav-menu.php',0,'�\\�l����Tɬ�3','�\\�l����Tɬ�3','��K#f�<~�MkX��1J�P XO�#��ёG�','',0,'?'),('��v�*�Ohb,L��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lockfile/test/fixtures/bad-child.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lockfile/test/fixtures/bad-child.js',0,'�1`$PPq}�h�m�VU�','�1`$PPq}�h�m�VU�','�j�i��I{8?g\";ξ��&��,��I�t���','',0,'?'),('����:�i����@L�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/difference.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/difference.js',0,'�\0 �7�I�F!.���','�\0 �7�I�F!.���','�H\n��[YCF��v�W�Ă:M3�/*�QtJ','',0,'?'),('�����c�ή�ؽ���\0','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/binaryIndexBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/binaryIndexBy.js',0,'8���k�h���}','8���k�h���}','�r�Q��\\� ����ef-�� ıe2��','',0,'?'),('���I��&�(`V�C�U','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/umask.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkpath/test/umask.js',0,'�AS���Q�e��;?sJ�','�AS���Q�e��;?sJ�',',�y�ҟeImF� �V��3~1���|','',0,'?'),('��A�^�O�:\"�/0��','wp-content/plugins/gravityforms/includes/addon/class-gf-feed-processor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/addon/class-gf-feed-processor.php',0,'���Z�=T��]�%','���Z�=T��]�%','ޣ�g�ra�P[r� �f�ݰ)��5Gc�N]�h;','',0,'?'),('���x2�_.�~$�)','wp-includes/js/dist/core-data.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/core-data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#��ux�uW[��C','}�+w]s+9-��ɣ�%��9�ъ�S4�*s�y','',0,'?'),('��Җ�T�u�a���h,','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',0,'8�I�0�mj@0�%�U�','8�I�0�mj@0�%�U�','{��{o�]�vrl�SaX�r��P�Γ?�%.�E','',0,'?'),('��R�2|���e,�)�','wp-content/plugins/advanced-custom-fields-pro/assets/images/pro-upgrade-overlay.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/pro-upgrade-overlay.svg',0,'7�Լ�����Sm�','7�Լ�����Sm�','���y���ZVK�oC�Y-��*�r��9N5��M�','',0,'?'),('��x�c�8_;��r�2l','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/rc/test/ini.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/rc/test/ini.js',0,']Y�{�6�<p9\'�L',']Y�{�6�<p9\'�L','�D�I-����{��yN�|��@��Ӏ�\0��','',0,'?'),('��$�tզ}� �T','wp-includes/blocks/code/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/code/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h����h�w>���C��','#�0�c����k�S��vܾl���n�lJ�7��','',0,'?'),('�Ὀ����5f?�hk','wp-includes/widgets/class-wp-widget-media-audio.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-media-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,{�H-]meZ�y�','3��P�U�{gnҮ�䰊\n���z�� \"ܼ�','',0,'?'),('����z�5ʰWPq#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/pad.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number/pad.js',0,'�$;C�ɺ���#�HV�','�$;C�ɺ���#�HV�','���W��u>��g�7/��bl���1�[���tɊ�','',0,'?'),('���c̍��{GQ&�M�','wp-content/themes/twentytwentyfive/patterns/banner-poster.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/banner-poster.php',0,'��ú\0���ye�8�a','��ú\0���ye�8�a','�d<���Bt�ܻ �j7��[�`��լ��5M��','',0,'?'),('��Z��p�S�C�B','wp-content/plugins/gravityforms/includes/query/class-gf-query-series.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/query/class-gf-query-series.php',0,'y�aUr��I�L؞','y�aUr��I�L؞','�*+�\"u^��%������\Z x\0���','',0,'?'); INSERT INTO `wp_wffilemods` VALUES ('�����Ņb> ���','wp-content/plugins/wordpress-seo/images/ai-generator.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/ai-generator.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ő�rj��ʈ','�R�N�s���Z��m�x�c�j%%D�\r�����','',0,'?'),('��W�N����.5MЏ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assignInWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/assignInWith.js',0,'i�����z��b�Qk�','i�����z��b�Qk�','���c����E�[�6�Hչ���~O��,�;','',0,'?'),('��\\xiα��G#�+','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/last.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/last.js',0,'�h�8d��D�AN�?��','�h�8d��D�AN�?��','ۏb�`���iS�w��Mi�C��7&�q�','',0,'?'),('����8`9��?Bb�Б','wp-includes/js/jquery/ui/effect-puff.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/jquery/ui/effect-puff.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���*G��w�UJ��M','�p�[�SA�g��.#�/���%$�,D�\"e>C','',0,'?'),('�h2�J� J%T�8','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Exception/ProcessTimedOutException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Exception/ProcessTimedOutException.php',0,'\0�`�s�~z^��','\0�`�s�~z^��','�SX�*>c��B\\:4F+�V��q\\��-�S��y','',0,'?'),('��iE6D��6m�Q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/parse-json/vendor/unicode.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/parse-json/vendor/unicode.js',0,'��<ip>{th����R','��<ip>{th����R','\n0¸(�^A��� 3�,�����ox�D�>','',0,'?'),('�\n��� ��/Y','wp-includes/js/dist/data-controls.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/data-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T��K��\'P�~}638�','�� v���f��3�+U��?��CN:��tX�w�','',0,'?'),('�y�m�I�|�<�*','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Console/Kernel.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Console/Kernel.php',0,'J\"�I\\����l�q�9`','J\"�I\\����l�q�9`','D�7S���g����ʐn�M�\"Rx�;','',0,'?'),('���}�V��I���','wp-includes/blocks/cover.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/cover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rK�\\<���2���','9��:%����)/\\&0�\rw��\ZSc��ܝB','',0,'?'),('��s{�8ƞQ���u','wp-content/themes/mint/node_modules/gaze/lib/helper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/gaze/lib/helper.js',0,')<��{���]�P�3',')<��{���]�P�3','\Z۸r�G���(��[.F���N��','',0,'?'),('�et�W���v��B','wp-content/plugins/envira-gallery/src/Views/partials/notifications.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Views/partials/notifications.php',0,'G���G�ҴlЂ\n�c','G���G�ҴlЂ\n�c','��:� ��6C~i?�MA\Z�Z~�\"2��2���D�','',0,'?'),('�$�-I���֔a�','wp-content/plugins/wordpress-seo/src/conditionals/check-required-version-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/check-required-version-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��pݨ�BL\"8*�=L','4��ꎰ`�ih���o����Ǹ4%�i�','',0,'?'),('�(f�K9)bs�w�Э�@','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-buffer/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-buffer/index.js',0,'�A,��6�˗�/��3','�A,��6�˗�/��3','�Mx�\'(�\0�6�2_~�n�dͿq�Qc','',0,'?'),('�(m`���AJ!��b','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/keys.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/keys.js',0,'k�A>��]\nR��|l','k�A>��]\nR��|l','�9f-��#g[�W\r�k�:�}�=CU<�͗<9���','',0,'?'),('�)���� �=&�]BW','wp-content/themes/mint/node_modules/jsonify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jsonify/index.js',0,'��@���\Z�W��p\0','��@���\Z�W��p\0','��:����L�Y,�L���{\\�`�z��]�rn!','',0,'?'),('�+F�4�\n��q���\"]','wp-includes/blocks/table/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/table/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^q�%��mZ��,�1','��WO�)��j�)������Ag3$0��$[��m','',0,'?'),('�1&�[�C���XХ\r','wp-content/plugins/wp-optimize/vendor/mrclay/minify/server-info.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/server-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t3C��(��x]&��','�\'��)�k%�S[��߸�\"����/���Mj�','',0,'?'),('�2�v�\'����{�1\0��','wp-content/plugins/wordpress-seo/src/integrations/admin/background-indexing-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/background-indexing-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���X�����','�t 9����Ǒy��F]��{��Qnշ/qh��','',0,'?'),('�8�(�2^ښ�2�B�&�','wp-content/themes/mint/node_modules/shelljs/src/pushd.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/shelljs/src/pushd.js',0,'�\r3��D��o�+b>','�\r3��D��o�+b>','�ӹj��n�ek�X��q��|h+8�/�ww�','',0,'?'),('�=����Em�ɫ�d��X','wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/AuthentificationException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/AuthentificationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I���od����?�','��=*��[���]w�F+�yg%��`��','',0,'?'),('�H���i.�]W8��q*\r','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flattenDepth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flattenDepth.js',0,'�W�B0{EQjP,�','�W�B0{EQjP,�','�� �z�5>�G��h 额r�/�zl����of','',0,'?'),('�L�r�g�R����F�Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/skip.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/skip.js',0,'�J���\ZOꝽ8�0','�J���\ZOꝽ8�0','u�n}-�I�0�Cy[�)0g�M9rq��H�=�n�','',0,'?'),('�O͠/���F�5�}Ѯ','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cloneSymbol.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_cloneSymbol.js',0,'���<O�L\"܅��c','���<O�L\"܅��c','��LU+���e��x�� ������¶�U(�','',0,'?'),('�S|~M����okv','wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/arrays.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-legacy-log/node_modules/underscore.string/test/test_underscore/arrays.js',0,'z�J�߬�ۗv�l��','z�J�߬�ۗv�l��','������t�Ɲ��Ga���|\"n\\��ʮ�/�','',0,'?'),('�]![�uK�>����˽','wp-content/themes/mint/node_modules/bower/lib/node_modules/prepend-http/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/prepend-http/index.js',0,':�WB���&p�%H��s',':�WB���&p�%H��s','�vUi�.o�E�S�f��E,O��*�z]�T�','',0,'?'),('�]�Wi�I��i9i��','wp-content/plugins/wp-optimize/js/status.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/js/status.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~����n�&?#\"���','p���\rC����FT��Ȧ�A�9s���','',0,'?'),('�b�4.��<w�d絺�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/base.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/base.js',0,'A��V�F�\r|�V�Y��','A��V�F�\r|�V�Y��',']A9�S� �R���{I�_��:���n_�','',0,'?'),('�c�̎��$\n\'@�\r��','wp-admin/setup-config.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/setup-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H/>�o�MTS�ƽ�#7','lc2]�Ə>�\'��N��ߛ�3T���ЋC��-','',0,'?'),('�eVc�=�K�0�n�:|\\','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ColourDefinitionSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ColourDefinitionSniff.php',0,'��-9|ç�nc�8ǿ�','��-9|ç�nc�8ǿ�','����~u���>�b�6ޜRi9BY���i�g','',0,'?'),('�gݥ3-5�U�o[N�D','wp-content/plugins/gravityforms/images/theme/down-arrow.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/theme/down-arrow.svg',0,'�#� �����߯8di%n','�#� �����߯8di%n','F���r����zp�j&+�a|��C�Lg�','',0,'?'),('�k�3�������j8�y','wp-content/plugins/wordpress-seo/src/helpers/permalink-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/permalink-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��bK� �=f��{�Д','`��Իi ��c\'�ԭ��5�R���KMOe','',0,'?'),('�l�i\n��Lu:�P}�','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpcs-ruleset.xml','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpcs-ruleset.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ي�j{|DuDn�BT','%x�\Z,�H�i*�3�W=���C��p�B(','',0,'?'),('�m֙7�,�}��ov','wp-includes/css/dist/block-library/theme-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7���Wƹ����ɐ','��݂X�V}d���դ�>ռ��j�C���','',0,'?'),('�n3T�@����7��ܧ','wp-content/plugins/wordpress-seo/images/succes_marieke_bubble_optm.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/succes_marieke_bubble_optm.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l*��M�1�T�[\n:Z|','� �}�L����25�g�(\\�-fĒ5ۭK�U�','',0,'?'),('�u�jj�4Qf��[��1�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/ViewFinderInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/ViewFinderInterface.php',0,'��$�3���:\\+h�+','��$�3���:\\+h�+','%�V�K]M�(zV�b�S��_̕���H�','',0,'?'),('��-�CY6x;','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/filter.js',0,'&�9��=*b�$�к�Fk','&�9��=*b�$�к�Fk',']p��vP��쯕��\"KXٓ��QCzE���','',0,'?'),('������Ʊ�N��B','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php',0,'I�0�I��l���m�K','I�0�I��l���m�K','���f���JS&���GG��;w�u�\0k�?����','',0,'?'),('���D����\Z�\'�A�','wp-content/themes/mint/node_modules/source-map/build/test-suffix.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/source-map/build/test-suffix.js',0,'�~/Z1��zqQ ��0�','�~/Z1��zqQ ��0�','���O3Jg\"?�N�(��Ʌ�&�NH�p�l\'� ','',0,'?'),('��0Z�����G\'&j�','wp-content/plugins/wordpress-seo/src/services/importing/importable-detector-service.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/importing/importable-detector-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#�\'�XI\0UUzs','�s���\"�jl?Q�6��w����\rON��','',0,'?'),('���V��t�S�-��','wp-content/plugins/wordfence/views/scanner/issue-file.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x���JZ�����','*�ҟ���b�����\\�kp�B��S3���*','',0,'?'),('������%�熪4','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-page-type.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-page-type.php',0,'_��T��_��;i �','_��T��_��;i �','��������������j���p�.�','',0,'?'),('���Y|a�Pj\n�Mݻ','wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/transform.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readable-stream/transform.js',0,'�A�+Q�{}��3�','�A�+Q�{}��3�','PWF�fz ���^�B\\v\r��8�2��R�?��k','',0,'?'),('���J1��M�F��<�','wp-admin/js/tags-box.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/tags-box.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�U����GX ��+�','�ˠ�3�\0�Zg�[�wu��|��H��&R6��','',0,'?'),('��uq��]�$�Ar��','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-page_link.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-page_link.php',0,'�2�#3sSI�7�DU�','�2�#3sSI�7�DU�','�bg0��!l��*Eh0x�$�1�i�k�L�k�]�','',0,'?'),('���W���u\\sT��','wp-content/plugins/gravityforms/includes/orders/items/class-gf-order-item.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/orders/items/class-gf-order-item.php',0,'����T�ڻ6��E�','����T�ڻ6��E�','l| W�SM��e�/�=Y���&z��k��','',0,'?'),('���ѳ�\\�)�w;','wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/DebugDetector.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/DebugDetector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m_��-�i���\0�#�r','���%t�V\'���P=\Z�+�NB��hv�]��','',0,'?'),('���ޣ}N�O��癚+','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/object/find.js',0,'�T!��#-��!�/KA','�T!��#-��!�/KA','���\n�X(��-\\ؓ^d��c.F)�WZffŊ>','',0,'?'),('��*�9LX�;�\Z�. ','wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js',0,'*�^+�Ũf���a�2�','*�^+�Ũf���a�2�','j���|]=~����^�&Ϋ��\'�U�ɋ�b ','',0,'?'),('������I���fs�VZ','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSortByOrder.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseSortByOrder.js',0,'+WGB��[QЌ�v�� �','+WGB��[QЌ�v�� �','h� �;�w��0��>D#����)�4a>�','',0,'?'),('��g��a%媿w��J�m','wp-content/plugins/gravityforms/includes/templates/edit-shortcode-form.tpl.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/templates/edit-shortcode-form.tpl.php',0,'�0���Gݫ��P','�0���Gݫ��P','���� %j`[,��h�n\"���}�U��4e','',0,'?'),('��e��2���#��^G','wp-includes/blocks/heading.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/heading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ELV�RoH��Z��R�','�����#�)��-@!2*�������>�','',0,'?'),('��ة�im����','wp-content/themes/mint/node_modules/boom/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/boom/index.js',0,'���]Y�䷉�f��#�','���]Y�䷉�f��#�','7so�x9n�&X������\r��!\"�]�@�o��ݴ','',0,'?'),('��Y5$a\r�5�b��Q�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/ClassDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/ClassDeclarationSniff.php',0,'_�Bs�����v�9�','_�Bs�����v�9�','�䓚P[o�y#hN��̑���0�ɟ(�(���[�','',0,'?'),('��c�-,R�qee\\�','wp-includes/blocks/group/theme-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/group/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ �ʝ�=�fZ9U','�\ri�$y+�h�?����j魾\Z���b3�sJ)','',0,'?'),('���Od�nP��,��� �','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/forEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/forEach.js',0,'�����=��0�x�:P','�����=��0�x�:P',']M�V���\"[��Z�p%TQ���f�m�u��)f','',0,'?'),('�ϔ6#o���\"�U_�X','wp-content/themes/mint/node_modules/cli/examples/sort.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/examples/sort.js',0,'h$|Q���H����','h$|Q���H����','�;o��\'���;��7`S���RșV�v��E��','',0,'?'),('��\'��OU�5�WUvW','wp-content/plugins/gravityforms/images/grey-check.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/images/grey-check.svg',0,'y)#�MB_I���3i','y)#�MB_I���3i','0n#s�����\nj���S�ēW���>Q����','',0,'?'),('��bS���m��ƕ�f','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/after.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/after.js',0,'��62І}W䏵.�H�','��62І}W䏵.�H�','�9��r�:��>����,z���v��','',0,'?'),('���?ڟ�E���$PF','wp-includes/pomo/translations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Gh������8��','K���7�������c�=՛�ձ��Ŕ�','',0,'?'),('��hY)�W�\'�v\'�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueueInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src/TaskQueueInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/�ص�p��\\�(���','\'�؏�ݫ[[uGjS.zN�����B�z�5�h(','',0,'?'),('�է\n\'y���ј��','wp-content/plugins/wordpress-seo/src/integrations/admin/health-check-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/health-check-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-8����g�ze7�z','.,������I�+�\'_�>S�!���9$�\Z\\�','',0,'?'),('��\0n��.�����4','wp-content/themes/mint/node_modules/less/dist/less-1.3.0.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.3.0.min.js',0,'6f@��l�j�k\n�P','6f@��l�j�k\n�P','���9BQ\\L�gL�C��D�ʊ����x��Z','',0,'?'),('�ۢ�؇=�pU��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Exceptions/ServeFailedException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Exceptions/ServeFailedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����#�@��H/','�$�\Z@s��}�j�_ρ ����McWⲂ','',0,'?'),('��B��cո@aw�jO9N','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createTextNode.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createTextNode.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d��M��ZK`Ҽܦ��','�K87\'�*J��l{�V���f\r�P��x�','',0,'?'),('����v���*�D2','wp-content/plugins/wordpress-seo/src/editors/domain/seo/seo-plugin-data-interface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/domain/seo/seo-plugin-data-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e-4)hyj@m�瓁�','�,ی�F��.�1��P|_�͛��x�7�qǶGI�','',0,'?'),('��:����^� 6T4�','wp-content/plugins/wordpress-seo/src/repositories/primary-term-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/repositories/primary-term-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ﺪ��r�Y3�\'�/','�\'qK���3\"6���������UH��#3','',0,'?'),('���4�h�y qv>','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/PEARClass.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Tests/Fixtures/PEARClass.php',0,';�V*t�V����b���',';�V*t�V����b���','F��f^�(�2�sؓ`U���yg�*���4\'f�','',0,'?'),('��2ᯐ��D��A��','wp-content/plugins/envira-gallery/src/Views/partials/settings-image-licensing-modal.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Views/partials/settings-image-licensing-modal.php',0,'ɡ(����~@M�}','ɡ(����~@M�}','��B�T����=L�L�t5&�\0�\n�����-|','',0,'?'),('���~رI�b>I��M','wp-content/themes/mint/assets/vendor/modernizr/grunt.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/grunt.js',0,'���r����q����','���r����q����','�G�i�ܶ����w�e$]�F��gk[w��','',0,'?'),('��p��ծᗟw���?','wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCliBarNoOp.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCliBarNoOp.php',0,'�ӈ5,;���?%�8 Q�','�ӈ5,;���?%�8 Q�','gKQ-��� �ZEe��� E[���ϛ��?���','',0,'?'),('��m6f�/1�����ϲ','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/mixIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/object/mixIn.js',0,'1U&cE=%��e�\"�','1U&cE=%��e�\"�','���r�5Ӏ.�c�xIw���\'g:\n3�;q�','',0,'?'),('������8�j��c}�','wp-includes/blocks/rss/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/rss/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$Tn���9ƚ����','�ރ��`2̲����&��A+�e�� F�¸','',0,'?'),('��8�H�G��m�3��','wp-content/themes/mint/node_modules/tape/test/exit/ok.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/exit/ok.js',0,'�\0���I�����','�\0���I�����','47�8W�8^��\\���3�����h�^A�','',0,'?'),('����J�j4�-�;G','wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-09.jpg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/reviewer-09.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':͚�3��Л � s\n','\Z��@�d�D�$���?���z��sF��I���$','',0,'?'),('�h�x�*(�&���kO�','wp-content/plugins/wordfence/views/blocking/country-block-map.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/blocking/country-block-map.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u��yGF�,{��X�z','%Ԝ5��;�����x��^)���G(��o','',0,'?'),('�����\'K�z�f��','wp-includes/customize/class-wp-customize-header-image-setting.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-header-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$�,�V��9cRd�6','dV����n�*��m![I�d�Ǻ���a�m��','',0,'?'),('��5#�\"8�%`}','wp-content/wflogs/template.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/wflogs/template.php',0,'lC�db��.�˴�v','lC�db��.�˴�v','Z][W��P�}�,������7*�q��\n��Ƒ��','',0,'?'),('�\nZ��d*��,�L�','wp-content/plugins/wordpress-seo/images/academy/hosting_and_server.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/hosting_and_server.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R��)���_vTrא1','P�7��]|��-pgi�\\�3Ѷ�ߐ-�(�Th�','',0,'?'),('�Hc���1�ް�=','wp-content/plugins/wordpress-seo/admin/views/tool-file-editor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/views/tool-file-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݴ@�����+V�z�','v\\i~:Q��� ����<�4/�tA�����>D?o','',0,'?'),('��l1���b��&���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/chain.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/chain/chain.js',0,'��iR4���{\"����\n�','��iR4���{\"����\n�','� \"`�&��N0P�0�,��k-#ܨk��9 ','',0,'?'),('�Th��\'Z�\r/?#���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Arr.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Arr.php',0,'���h�]�*zgC�1�','���h�]�*zgC�1�','�3K�Eg��Ggj��Ս�T�[�y+l#','',0,'?'),('�� o���� k��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/ltrim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/ltrim.js',0,'��#���w,�:�I�ǐ','��#���w,�:�I�ǐ','�Y�\n֭��>\\�t\'�:p�1b� �FoѲNO','',0,'?'),('�#�?���Gc ¯l1e','wp-includes/class-wp-theme.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r�l\Z��g檯�','���L���Nwfp�q�l���� �:�չhFPg','',0,'?'),('�)P)���W�ل�� ','wp-content/themes/pinnclonesmalltest/resources/views/partials/head.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/head.blade.php',0,'a]��F�$�!s*�<�u','a]��F�$�!s*�<�u','��=y��A7��f�k=�Xz�~���&˽�','',0,'?'),('�)Ϊ@��)b��X[N�','wp-content/plugins/wordpress-seo/src/config/wincher-pkce-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/wincher-pkce-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o8g_9(����l\0,','��He���p&�~��NZ�Vl(�6Q���.��s��','',0,'?'),('�*}^Q���a�Vμ','wp-content/themes/mint/node_modules/bower/lib/node_modules/camelcase-keys/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/camelcase-keys/index.js',0,'�X�A���ä��%��a','�X�A���ä��%��a','\"\ZK�ʥg9�����%�G7\\w�6Ð','',0,'?'),('�0,9�2�����S_�<�','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/UndefinedMethodException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/UndefinedMethodException.php',0,'��4�Q�lsA�=�>�Vo','��4�Q�lsA�=�>�Vo','�B)�:՜�/_��r�V�ϣ��7\n��~Ԣ��','',0,'?'),('�2*8�|c7��Fo�s','wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/InstalledVersions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Y$�R�\0�����','N�Rí2���H�h�&HX:b]��d̳���2O�','',0,'?'),('�@V��T��L\'�~�i�','wp-content/plugins/wordpress-seo/admin/class-yoast-form.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>����N1;شCa�?/j','�휜z?4\Z??d��ݸ�\n�!�V�2`���','',0,'?'),('�H�����Pw��%8��','wp-includes/images/smilies/icon_sad.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/smilies/icon_sad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ix�o��TMz��D-','�b5�yh�9���}���o��W�I��n�n�','',0,'?'),('�H�ՍԤ�ꌀ�Le��','wp-content/themes/twentytwentyfive/patterns/cta-newsletter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/cta-newsletter.php',0,'�i(T���Z��J3','�i(T���Z��J3','l�b��rC�ųqJ�lLmu��)OiY,y�','',0,'?'),('�I]�Sf��]���','wp-content/plugins/wordpress-seo/src/services/indexables/indexable-version-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/indexables/indexable-version-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MquV�֢_�h�N��','D�\n݆j6d5���<��Lˤqݕ�}�m���N�','',0,'?'),('�Q49��Lz�J�','wp-content/plugins/wordfence/lib/wfUtils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R;͇��ZZ�\ra�x�','0�o�j���[���ɐKn,���+@��;�','',0,'?'),('�S~��=}%���^�','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-b.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-b.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ȹs��ă��ŨX�','\'hu��D��\Z\0������T����ٹ?Q','',0,'?'),('�W��%��Y�c-����','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/dotted.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/dotted.js',0,'��`�^,��525՜�','��`�^,��525՜�','8q�rL{���d���T��5�f�]�����','',0,'?'),('�X�k\"��S���SY','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/path.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/path.js',0,'밁��H�3Bt�y�%','밁��H�3Bt�y�%','�}T���h.�}�˓���<)1z��48����','',0,'?'),('�XX*��!2�~�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��.�ӻ�1�A,t/','��~�\"t\\,��4�w�¡�-�~��Mq���','',0,'?'),('�Y/�٪U�̝U���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_compareMultiple.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_compareMultiple.js',0,'�yy�G{K���Ǧ�;k�','�yy�G{K���Ǧ�;k�','��F~հ��x��@������5� ������','',0,'?'),('�[�n�G{�\'��q:�','wp-includes/ms-deprecated.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K��,�Q�&T�j�','�rH�u��ӳkn*.��!��dU�����~X�','',0,'?'),('�\\�h� R�X�<�C�','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���߅�w@L��O�R','��EF�j���r�č;s��.f:��Ϥ�F','',0,'?'),('�c����6��~�6̐','wp-includes/blocks/button/editor-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/button/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e���Q�������U,','皫�<D������e����>/�9� �Zng�','',0,'?'),('�hI0��J2��[o��� ','wp-content/plugins/wordpress-seo/js/dist/import.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/import.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$<-���E�k(\n}�','�J�� 6��n!�9r�q��d�a�/��[','',0,'?'),('�oC���Nu��r���9','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/PropertyDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/PropertyDeclarationSniff.php',0,'��v���L�s�\Z��!۹','��v���L�s�\Z��!۹','tNL�D����j��\'�����!��i�NU&��','',0,'?'),('�o^Q\'l����h���oW','wp-content/plugins/gravityforms/includes/fields/class-gf-field-quantity.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/fields/class-gf-field-quantity.php',0,'Y�f���\0��D�PJY','Y�f���\0��D�PJY','�ݻW;�6VH� t�Pc��U�� D�g�����@','',0,'?'),('�t\nO%���Ez06','wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/root-nomount.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/findup-sync/node_modules/glob/test/root-nomount.js',0,'=��ʏ�.�̋@�ac�','=��ʏ�.�̋@�ac�','r�|-��~���>.��汾�B�\n�\r����Xu','',0,'?'),('�v9�x��\Z���P��+l','wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Exception/ParseException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/hassankhan/config/src/Exception/ParseException.php',0,'�0�g�}1�� �\"�','�0�g�}1�� �\"�','���Y�xR�������?ˇa8�.ۮj��j','',0,'?'),('�����ʊn���Z','wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-image-parser.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemap-image-parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%.���E�l�̕ک�(','�;��|��Jw�#G�<����&�\0�덉;&�j','',0,'?'),('����\Z7�8�-\\�~�','wp-includes/css/dist/edit-post/classic-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-post/classic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mv`�x�\"���B7�ѽ','<\\�ȫ+\0ab�$T=�&VX��}�M�>�!�:�V','',0,'?'),('��lv\"�(����','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h`�D�ni�^�%\Z��','JypG�)��4��V�.��M�U�W֕3�Դ�','',0,'?'),('����-�\"h���','wp-content/plugins/wordpress-seo/src/models/seo-meta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/models/seo-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-��Z���nkxt�n','n�bz`�I�o,���e�L��\'���\"��2p�','',0,'?'),('��@�0-���Z�[}�.','wp-content/plugins/envira-gallery/assets/js/min/metabox-min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/js/min/metabox-min.js',0,'Q�k�Xo@�����','Q�k�Xo@�����','����E���k%�@��YyV��YU{�DZ� ','',0,'?'),('���J�c���i�˔��','wp-content/themes/mint/node_modules/less/lib/less/tree/negative.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/negative.js',0,'p���2}��>���p�','p���2}��>���p�','�~(P�=�|ܷ�u�����XU��N��н�w','',0,'?'),('��^1����X}�3�','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/saving-dom-objects.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/saving-dom-objects.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�SƩ���z�2\'','��L.m̰�r�q*w��Q��=�N{W_�X','',0,'?'),('��3_���[#�g`�','wp-includes/css/dist/block-library/reset-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/reset-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o���G\\�\n\'\0$�a7','*�ӊ��;H�0Tŕ`_���f�e*z3ϻ','',0,'?'),('���6�+��\0;��Kk','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/defaults.js',0,'I�1�2�C�,��8Sb','I�1�2�C�,��8Sb','Og��:��0���³��3���]*��-�lJ�A','',0,'?'),('��J�ח�_yzx�6O','wp-admin/network/privacy.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0��>�H\r��5:�6�','*]X8���%�KқR ���Q�f�;\ne�\r�6\\','',0,'?'),('����Z���/��','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetWordPressDisableMobileOption.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetWordPressDisableMobileOption.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��c�����xA|','��ĭ4l�����5�`�x�5��ˬ��T�','',0,'?'),('���Ȁ�~_q�I��S�','wp-admin/js/password-strength-meter.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/password-strength-meter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Z��3�r�;]�<|�','����1��y吥!�}}�3ɻ}}�te\nt�','',0,'?'),('���\\�D �>�F,���','wp-admin/menu.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?B���\0����#�t','\\�/7�8�R�\r�S8~�~.�d���-','',0,'?'),('�����R�ܨ\'A�)�','wp-content/uploads/cache/799a101f155008f65849bdd41305fd1407e6952d.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/799a101f155008f65849bdd41305fd1407e6952d.php',0,'����\"��������j�','����\"��������j�',' �$�q��R��=�P�0��&Z�/��/U����','',0,'?'),('��l�aމ���L��','wp-includes/css/dist/edit-site/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/edit-site/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Tiۚ,����T�K�A�','�tg$wK��Dcs�.I�nFf��Ӹ�v��y','',0,'?'),('��В�AT�n`��E�e','wp-content/themes/mint/node_modules/bower/lib/node_modules/through/test/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/through/test/index.js',0,'FV�n1�V�`���','FV�n1�V�`���','aZ�Hl�&C��9sL�u:��\0��\Z4ˈ�D','',0,'?'),('���Ҏ\"��b).�K','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/reduceRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/reduceRight.js',0,'�LՁl����Ĺ���','�LՁl����Ĺ���','GG*G�g@rBg�kRfN.3��2`\0-8','',0,'?'),('��O����o�DW!cM�L','wp-includes/SimplePie/src/Net/IPv6.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Net/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`e�L�w/���a�l(�','���&E<�8j(\ni\0?i\\^�g��^�&�','',0,'?'),('��^Z+\'H�>�j-$�','wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/ServiceProvider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/MF/ServiceProvider.php',0,'���5X5ڂ��Q���','���5X5ڂ��Q���','�\n�lwO�:NoY��t;���7�-:�ҡ�+��V�','',0,'?'),('�ͥR��g������','wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/misc/perf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/misc/perf.js',0,'�Sfj*om�՞k�','�Sfj*om�՞k�','s����{ߩf��;�z Gˌ���ū4�','',0,'?'),('������Sf��^�','wp-content/plugins/wp-live-chat-software-for-wordpress/languages/livechat-woocommerce.pot','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/languages/livechat-woocommerce.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P��$ �Ê�]�L�','\n��@�,cF4�4.�GsF�9�C�\0�1^','',0,'?'),('�� �\")�\"��0I�o��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z��q\Zs��q776�','C�D�a�$�=�f[Q�4�JW�7l)�.�=%��','',0,'?'),('��re}/�D���>','wp-content/plugins/wordpress-seo/src/helpers/open-graph/image-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/open-graph/image-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gA�%g.ڦ��δ{Jz','\0�=��s{t�X���ˀ١\\���[��=�A','',0,'?'),('���ۘH%s_t�:�_','wp-content/themes/mint/assets/vendor/modernizr/test/index.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/test/index.html',0,'i����ڎN����','i����ڎN����','�!�!�E��L��9�)�(�m�/�\Z��G�h.|','',0,'?'),('���ꔕTs�\r%�LJ�M','wp-includes/blocks/spacer/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/spacer/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r�zP��#���R�\r$-','ލ!]L�13q+��#u}N�!\"oh\0��x~�','',0,'?'),('�������&Ż�(','wp-admin/js/widgets/custom-html-widgets.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/custom-html-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������ç��m8�,',' �[Q��k��ߊA\nͥ���@N��\rV�]� �','',0,'?'),('���BK!6fn�h�<*','wp-content/plugins/wordpress-seo/css/dist/general-page-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/general-page-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<��lL]��ȭ̺','�f��Q��Mu<�h5�2u�1&?̇��b��','',0,'?'),('����+\"G�h���}$�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php',0,'�\"Я����1�9^�A`','�\"Я����1�9^�A`','�����5ҀA���P8:H¸A�{����(`','',0,'?'),('��Po�7�����','wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/return.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mkdirp/test/return.js',0,'�,�fco9ƙN��8','�,�fco9ƙN��8','�I�#���B����c�_8Y���*��O��','',0,'?'),('��ά����i�@� �}i','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/deepFillIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/object/deepFillIn.js',0,'�r�ME\rV����)','�r�ME\rV����)','!d�B���C��#��\'�\0����Qp&|�?��u','',0,'?'),('�����Y���K|_�<','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getNative.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getNative.js',0,'D�Ra�둎�T/��','D�Ra�둎�T/��','x�WW���m�[�Q#u\'Ƥ�\'�\'�Y���Q','',0,'?'),('��*\'I���Fc�l�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flattenDeep.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/flattenDeep.js',0,'�&���w�4�r\Z @','�&���w�4�r\Z @','�`ZT쵋U�s��%���w\'j�k5kME,','',0,'?'),('��f��(ʛ�R��A���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/pluck.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/pluck.js',0,'�~���R�N�Z��@D','�~���R�N�Z��@D','xz���6?\0�x�|�m��;���.h�+�(E�','',0,'?'),('��OS?kk���#qO$','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/normalizeLineBreaks.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/normalizeLineBreaks.js',0,'�^,�t��Ɗ\0�7�O�','�^,�t��Ɗ\0�7�O�','e=y=��0�;x����\'\'`�{R���ԩ�aNM�','',0,'?'),('�\0[>(\n�?{�f','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toUpper.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/toUpper.js',0,'�wA=F�bY���Y|��','�wA=F�bY���Y|��','���}���6��ƽ5�֭�\"id ���','',0,'?'),('��~+�q�X��\"`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zZBW��m�B�˯��','�Ȅ!�++���8��,vF���+����3 ','',0,'?'),('� �<,/���','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-7bc10e49.min.js.json','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-7bc10e49.min.js.json',0,'�RJK?Y!���9����','�RJK?Y!���9����','�����SQ�r�O�Q��^�oLz��j�','',0,'?'),('�\n��dת�5MS�UP','wp-content/plugins/wordpress-seo/src/content-type-visibility/user-interface/content-type-visibility-dismiss-new-route.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/content-type-visibility/user-interface/content-type-visibility-dismiss-new-route.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bW:��5.���d�Gg�','��M��2�:R꽆� ���\\UW�G8�ؼ.h2oa�','',0,'?'),('����E\"�|�7��s','wp-content/plugins/wp-migrate-db-pro/class/Common/BackupExport.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/BackupExport.php',0,'����\'F���C�ޜ','����\'F���C�ޜ','�Y �-��Ŀ/��V���iv���^v^(���','',0,'?'),('����1 �;șb⍞�','wp-content/themes/mint/node_modules/bower/lib/node_modules/is-arrayish/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/is-arrayish/index.js',0,'7��o^�2����n�','7��o^�2����n�',')���}?u\"7F�_�xl�D����3���\Z�A','',0,'?'),('� �������{(�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayPush.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_arrayPush.js',0,'��|�H��/�:���','��|�H��/�:���','��)�~�d��:}��V3Ns�FBJF����&','',0,'?'),('����)1����','wp-content/plugins/wordpress-seo/admin/class-admin-utils.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-admin-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e��u�����k��2','[�����х�w���\Z�����mF��&lIHl9','',0,'?'),('��g�oy8%��V�2�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/PoFileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/PoFileLoader.php',0,'�v�>���%}g��e�C','�v�>���%}g��e�C','�IHZ�a�&�aŃ&�v%�C��A�e���p','',0,'?'),('��VO�R��5��OZ�j','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/rest.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/rest.js',0,'�-� h��W�\'h]a2','�-� h��W�\'h]a2','J��m[��В��`]^�d�Ok���\r$c�5p','',0,'?'),('�+/��Lf���ʥ^�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/words.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/words.js',0,'�+��\Z�V�Ҹ�','�+��\Z�V�Ҹ�',':^��C���D*��R�A �o^�߮�R7��C��','',0,'?'),('�.$�(�e�]/:��#','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/partition.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/partition.js',0,'QE�z����܌C5j��','QE�z����܌C5j��','k��C�3 ;=�#��\'�i��>�&��j�t�;','',0,'?'),('�6��0��)H2�����','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԙz��@�uߔ�,މ','q�s�.1��;�~_(Fi,�rC��]�[��+؋�','',0,'?'),('�AҊ\\I�i[;��*p','wp-content/uploads/cache/ff407e58c9a88da3ea0a7b66964295277a74889a.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/ff407e58c9a88da3ea0a7b66964295277a74889a.php',0,'\\J�<���T~�OV�','\\J�<���T~�OV�','���]�[r(�fU��x�)�a�BKQ�̭�.M{�','',0,'?'),('�B�ȭd�vv�q�mǘ�','wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+6��Y�L�����','AMI=��}��@;?0��L�YD;/ɵ��mȷ;r','',0,'?'),('�D�W䨇� v\'|�q�','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js',0,'\r&aqND�%4�b�','\r&aqND�%4�b�','��ܛy��8�a�|$ᄮy��<;T��(�U�','',0,'?'),('�H&��G��nPSa�H','wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-TextItalic.woff2','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-TextItalic.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�VR_�㙾�� xxp','pҒ/FN�I�M��]\'�ޟ��A6��:E�','',0,'?'),('�IV�z\n/�/�^��^�','wp-content/plugins/wp-optimize/includes/class-wpo-ajax.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wpo-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E�\'��k���qNI','�\0[��2iol/\'�hE��X��������','',0,'?'),('�Z��.����ZV','wp-content/plugins/gravityforms/includes/settings/fields/class-card.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/settings/fields/class-card.php',0,'�;�K�i�P�E7ڌ\'b�','�;�K�i�P�E7ڌ\'b�','�}��@0 �u����\0f����\Z�\r>�*��','',0,'?'),('�bd~Y��\\�Tܙ���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/number.js',0,'�\'Q���OТ��h�y','�\'Q���OТ��h�y','2��6`߽I�$��Xj?O~�e=�O>��\'k(','',0,'?'),('�c\0��{2��\Zs�O`�','wp-includes/sodium_compat/src/Core/AEGIS256.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/AEGIS256.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Y �\n���lc�����','�?-��6��W�H�����]BR-}����','',0,'?'),('�g�1k\n4`�\0�ab�N','wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/FatalThrowableError.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/debug/Exception/FatalThrowableError.php',0,'�h�h�S��Y}��\'��','�h�h�S��Y}��\'��','��sy��?Z�/���텘����G.f� �','',0,'?'),('�j\Z�;��\r�e���','wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ɡ�5gɶ�qpP�K','Ē�)�)�Jxw�%6��E�c\nh{>�)��*','',0,'?'),('�n�j�ܙh�r.l��\0','wp-content/plugins/wordpress-seo/js/dist/admin-modules.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/admin-modules.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�ƓSd�!��H\\s e','�&�>��#���,���1�[Ⴚ\"1x�fuS��Zk','',0,'?'),('�w���#Gj}6���','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/LoggingTranslatorTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Tests/LoggingTranslatorTest.php',0,'禍mn2R�����:W','禍mn2R�����:W','�\'7�c���� �)Ҿ���Ũ����M','',0,'?'),('�w�wB�I�!�Ha','wp-content/themes/twentytwentyfive/templates/404.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/templates/404.html',0,'Xw�2�ln���ˋ','Xw�2�ln���ˋ','���:��76^��V�8{<R8��|�G���','',0,'?'),('�z瞎�-�^3X�% ','wp-content/themes/mint/node_modules/bower/lib/node_modules/supports-color/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/supports-color/index.js',0,' �$s]K\"�]lD<',' �$s]K\"�]lD<','�(�+�( �<�G�e9�s�g����:��s�-','',0,'?'),('�|Xe��b`���l���','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/battery-api.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/battery-api.js',0,'�?�m��B�d`]�%z','�?�m��B�d`]�%z','ɎԠ\'�)ՙ���e�)��2�5����A<','',0,'?'),('���D�t���b��q�)�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/weekOfTheYear.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/date/weekOfTheYear.js',0,'2:�W�Fv\r�W�T-\0�','2:�W�Fv\r�W�T-\0�','L�\\��~��\0�n�ns�MD�rY�[Z��','',0,'?'),('������R;�+�V�G�','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue25.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue25.js',0,'��fnC�]���1x�v','��fnC�]���1x�v','^.L\n��1�?|�Lc��\")�M�/ǩ��+','',0,'?'),('���{���g�1O깶s','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/MultiLineConditionSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/MultiLineConditionSniff.php',0,'��Ο�b�s����N�','��Ο�b�s����N�','1*�������C�����Ť�+s49�ۛ��','',0,'?'),('��=CѠ��*TX�4','wp-admin/css/colors/_variables.scss','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\s�{�s]��*�i�N^','�p\'Vl�bް�B�ޖ����+�:�zn�7�1�','',0,'?'),('���*�e�a+Ƿ','wp-content/themes/mint/node_modules/less/test/browser/runner-postProcessor-options.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-postProcessor-options.js',0,'�ǨA��\\�1���.��','�ǨA��\\�1���.��','_��b�-|��Pho��w��ƳUy�`-�FGi�','',0,'?'),('��\'���i��3�����','wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-tool-integration.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/admin/indexing-tool-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�wՐY.�q1��h��','����}V�urdA�w�َz��D{��L�^','',0,'?'),('����#�6Y�pR1�P','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/tunnel.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/tunnel.js',0,'�k8V����$�ܽ�{\Z�','�k8V����$�ܽ�{\Z�','oP��gR\Z��1�=�TswW�����}\0�%��','',0,'?'),('���w뒗r=Q��)�� ','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-google-map.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-google-map.php',0,'���\n��~��U�y0','���\n��~��U�y0','[�\r�ڰ[J��I�n��Z�G�ne��V�(4+\'S','',0,'?'),('���&�����{d_�','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/UrlProvider.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/UrlProvider.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����x�؍��','$��>뗦Y���w��u�X6=(1s�}�z=�El','',0,'?'),('����R�ϓX,�^','wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/ends-with/index.js',0,'\ZuzK,�V�Q\\gH�','\ZuzK,�V�Q\\gH�',':c���Z (�)�V���|4��2�[','',0,'?'),('���^kԴ=RP���-','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/wrapperReverse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/wrapperReverse.js',0,'Q(��D�5ٶ���R','Q(��D�5ٶ���R','_1�u�D��R�Ⴭ�=���d�̣A�ϲ','',0,'?'),('��-\n��n��bؘ%+','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/anyPass.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/anyPass.js',0,'��s秷 �iKMDD��','��s秷 �iKMDD��','�T��g̃�5�c�<��c�Q�嵁2K�.P�','',0,'?'),('��`!��>��l)<��T','wp-content/themes/mint/node_modules/argparse/node_modules/underscore.string/lib/underscore.string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/node_modules/underscore.string/lib/underscore.string.js',0,'j���֟�~�u�c','j���֟�~�u�c','N�6��<�_K��ߨ1��FΦ�B����n�%','',0,'?'),('�Ǻ=�_`|��z���I','wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/warning.57362294.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/frontend/build/static/media/warning.57362294.svg',0,'1Do����J�ߥ��','1Do����J�ߥ��','��W�O����c���Y�F�\n�����?���','',0,'?'),('��ڷt�g�Z�gE�','wp-includes/class-wp-http-response.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-http-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*T�/�l��,�I�\0$','�Ң���.��g�L��kJ#���/ZF]��m','',0,'?'),('��9f7l�R��>��P','wp-includes/blocks/comments/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comments/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z~��JK�9Hv�\'^�','��{U�iͷf��$¯37Q���k�;]�O��','',0,'?'),('�Г��]^0�5�\'ǰ;@','wp-content/themes/mint/node_modules/autoprefixer-core/lib/declaration.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/declaration.js',0,'H�\n9\n�ʢ!�A��6V','H�\n9\n�ʢ!�A��6V','J{ȇ���5}��7ڑ�JY!�A�k�Dm�����','',0,'?'),('��jT�ct��Q��#','wp-includes/blocks/navigation/view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/navigation/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T�Y���=��s�','�t��*�(̡�����>U����RM�/e','',0,'?'),('��W\\W�`\\L0�N���','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/omit.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/omit.js',0,'>y.�� �+�߆�P','>y.�� �+�߆�P','����%@VF#��M��� i�Q�\"-����','',0,'?'),('�� ��It13&','wp-admin/js/nav-menu.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/nav-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~��?dkmt8��欫�','���ᒁ �H��ҢN�����kM���&ky','',0,'?'),('��+�٧�\\,��D�4','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/isObject.js',0,'Q/�l���!�U���','Q/�l���!�U���','l���ㅌ@�L1=�����U1��2��oW�8!��','',0,'?'),('��z�ҳl) �6Iq�','wp-content/themes/mint/node_modules/bower/lib/node_modules/stream-shift/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/stream-shift/index.js',0,':�+�\nCRj��g��',':�+�\nCRj��g��','Z�OT����r�QlgMMS�{6��V�X�nC��','',0,'?'),('��Rs�LQ�y����','wp-content/themes/mint/node_modules/bower/lib/node_modules/tweetnacl/nacl-fast.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tweetnacl/nacl-fast.min.js',0,'�P-��� ��4W4','�P-��� ��4W4','g>�z\"��\0(x�\Z��_�+��ǽ�V�mC�','',0,'?'),('��^��p��ˑ���~M','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-current-user-role.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-current-user-role.php',0,'y܇Fӷ����@�RLx�','y܇Fӷ����@�RLx�','�h.���8�߫\"��>|���4Z�^,��R�P~','',0,'?'),('��2a��J�4&X$��@','wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector-cron.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r2�h�}�)���','`߷���d�A�8�U7[��rB�m�7��*�','',0,'?'),('��G�Y�#��5�&�p','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/string.js',0,'<�wT���x�r�','<�wT���x�r�','&�P��z*l�C7�m���u+���e�ЭZ��?�G','',0,'?'),('����?����G����','wp-content/plugins/advanced-custom-fields-pro/includes/admin/tools/class-acf-admin-tool.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/tools/class-acf-admin-tool.php',0,'wV��1F��|�V\"���','wV��1F��|�V\"���','�z�B(U��|@&�i�`����\0�f�t�_','',0,'?'),('��Xqe�*f�b��C��','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/Autowiring.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/php-di/src/DI/Definition/Source/Autowiring.php',0,'{�dzȔ��\'�ś','{�dzȔ��\'�ś','���T����R㸔��[c��V��?�Z���','',0,'?'),('���G�l���ݠ_�','wp-includes/js/dist/date.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/date.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':k3I;�8�@��','z�}�B�U�(�N�����+g��Q��/','',0,'?'),('��I4 ���l�&A\':','wp-content/themes/mint/node_modules/bower/lib/core/Manager.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/core/Manager.js',0,'/[�Lf���ՑL���c','/[�Lf���ՑL���c','���m�.h�T�;��>�I�̽����=I�j؋�','',0,'?'),('�J-狁��\\\"�ץ&�','wp-includes/sodium_compat/src/Core/Util.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z���e���:�^}y�\n','c�Xn���LiM�2ʿt�]���M1H�،','',0,'?'),('�5ھ߇!�#�\"�K�','wp-content/plugins/envira-gallery/src/Utils/Capabilities.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/src/Utils/Capabilities.php',0,'����Ⱥ��k)._','����Ⱥ��k)._','Wx�.���E������Ֆ�Ey� ht���','',0,'?'),('�8%)4�1o�G�S�','wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/indexed-source-map-consumer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-contrib-concat/node_modules/source-map/lib/source-map/indexed-source-map-consumer.js',0,'7���1X���}�0u��','7���1X���}�0u��','��1��i�Y��0v����5&Q*����h�w','',0,'?'),('�9���;_Y;\\H��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Output/NullOutputTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Output/NullOutputTest.php',0,'����Tx���%�i��','����Tx���%�i��','[��ޕW��#{��d 2̕:,;�E���','',0,'?'),('�:|�K6Qu��ɚm6','wp-includes/blocks/comment-reply-link/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-reply-link/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8o�6KRq\Z\r�<�D�','2L@��/��5�;3O\'�U-�(�J8j���Ἱ','',0,'?'),('�;?2��S��\0��p','wp-admin/customize.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2q]_�V}��ٿ��','�в����48���uT��[A7����-���r','',0,'?'),('�H����G��x��ewN\r','wp-content/plugins/envira-gallery/assets/images/icons/twitter-black.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/twitter-black.svg',0,'�U����[2���','�U����[2���','�Lz�\\U/�U)��BEy�oB��x`&��L�','',0,'?'),('�M�L +!� }','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/GLOBAL.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/lang/GLOBAL.js',0,'I1����c��^�!%','I1����c��^�!%','p�2)�qS��r��e������\\I��}�R�','',0,'?'),('�SI�IZ�٘G鰘�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pull.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/pull.js',0,'\0����5Yc-�@���','\0����5Yc-�@���','�LS�hq��[������d\\��*,�+��','',0,'?'),('�W��x����e���&��','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ar.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ar.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z� ��O�ɋ��z.�','���WcN~�j����;����Z�h+#�\0��p��','',0,'?'),('�X��@��%�1C��i','wp-content/plugins/wordfence/images/lightbox-controls.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m]�a���\\$��','Ǘ�h?���S���)�:���i@h.��X�g��','',0,'?'),('�]�.�1\rPXL�','wp-admin/includes/update.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1���v��u��k�','�*6�(5�8լ�g�{��Z�x�d�ɕ�','',0,'?'),('�^������L�`3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/groupBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/groupBy.js',0,'�o�d����9 ��U','�o�d����9 ��U','�1�ռ�q�&��иV��d��UH����\"`${','',0,'?'),('�f(�9��6��yaN|2','wp-content/plugins/wordfence/waf/pomo/translations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/waf/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ā\\c�����g���',' ��ϞO�)3JF�N,���x�r��B\0��\'','',0,'?'),('�h���8����tv','wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/source-map-consumer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-js/node_modules/source-map/lib/source-map-consumer.js',0,'|UM�$sn��RX�W�','|UM�$sn��RX�W�','�������Ղ���~6\Z)r��\nz瘇�(�K��','',0,'?'),('�h�*��+��\r�v','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/contains.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/contains.js',0,'@>W��{�U�M�KA$�','@>W��{�U�M�KA$�','�{���,}u!x��T�@g%\"�V�mp','',0,'?'),('�iDK���Z��$��','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-types.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-types.js',0,'��=gK��p,W����','��=gK��p,W����','�g���\rc����Br��Ewĸ�o�\'7\n�P�','',0,'?'),('�i|�2=�D�1�ϯr�','wp-content/themes/twentytwentyfive/patterns/cta-book-locations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentyfive/patterns/cta-book-locations.php',0,'�)�=�OfJ��!F�~7','�)�=�OfJ��!F�~7','\r���\Z����>��i2�t*����v��\0','',0,'?'),('�qw�_p�|�Cr�Ы`','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/IniFileLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Loader/IniFileLoader.php',0,'���<>f�������\0','���<>f�������\0','�\\V��=&��F]�r�}�Ȗ���4���','',0,'?'),('�rY��\0�S���(z|�','wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g8EQm�v�Ou�TO','5�9��T��Q>|�����_��B�dÏ���','',0,'?'),('�s8��\'��ɀ�\Z%Cx','wp-includes/blocks/archives/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/archives/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yir7���մV�d��','�O��WF4Y�ҷ�請%\Z�#�C��!E�n�O}','',0,'?'),('�u$�{���ܨ��v�','wp-includes/blocks/latest-comments.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/latest-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\Z1\r ĝƄ�_۲L=','�yD_�a��~3|��+����Z���`�S�','',0,'?'),('�~K�Ɂ�wwf�C�','wp-admin/js/widgets/media-gallery-widget.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/media-gallery-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�c/����I���<�','�y�\\�R�T�ܠ�U�tmY�(��㻱̿','',0,'?'),('����q�;���}�:��','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/ParameterResolver.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/ParameterResolver/ParameterResolver.php',0,'���텪L/�i�O�R,','���텪L/�i�O�R,','�a����\0�7��P�[����:��.�����','',0,'?'),('��\r���[��\0�EuJ','wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ͱ�Ȫ\\$�\\�\Z1�','O��u�8�9���.�8W�y\"c��','',0,'?'),('��W=ZC\\W,)�P��H','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_objectToString.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_objectToString.js',0,'���M��rx��*J=�$:','���M��rx��*J=�$:','����J,b���:�EPR�k\r&q�t�ZbR&�%k','',0,'?'),('��4�y�3%k� ����','wp-admin/js/widgets/media-image-widget.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/widgets/media-image-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;k�#?��cQ7��(e','�o��{�\rr�h5��F�w�w� L�e�Fz�]�','',0,'?'),('���LԪ�%��7�Oh','wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.7.4.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/lessc-rhino-1.7.4.js',0,'���ɴ8�6%j7Q,�t','���ɴ8�6%j7Q,�t','��۹~�* �vO�l��vm�7�Kuxp��t�*��','',0,'?'),('���K\n�:�\Z�F�?z','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/keyBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/keyBy.js',0,'��.�\".���{7l�','��.�\".���{7l�','��DC�=̋5Z�i겭�1ouzȐ�UpZ�p��','',0,'?'),('������|� ��','wp-includes/js/masonry.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';?�&��T�Je�xH','$��!�|=#f�c�jc���:��T�Q0b�,ʉ�','',0,'?'),('��s�,kL�JY0���','wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/jsonify/index.js',0,'��@���\Z�W��p\0','��@���\Z�W��p\0','��:����L�Y,�L���{\\�`�z��]�rn!','',0,'?'),('����N�bXt�嘧','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_ME.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_ME.php',0,'��3q���ƣ����','��3q���ƣ����','7i���0?W���K\\ENj�`+���I��허','',0,'?'),('���Xhߤ�/Ϣrd�^','wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���p��q��!�E�','m~��]|\\<�6��O�!\nqش1^7n�&���','',0,'?'),('��<!.l�5�ph�#�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/first.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/first.js',0,'�9 ��cX\\Mܹ�#_j','�9 ��cX\\Mܹ�#_j','��ş��֯V�T!!�^9p�=یu�˖�X','',0,'?'),('���� Q^�!%=��\np','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Exception/ExceptionInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Exception/ExceptionInterface.php',0,'UԨ}��&hRP�/�%','UԨ}��&hRP�/�%','L�9$��,_v���,������S)����=��','',0,'?'),('��\Z�HD����Lz�','wp-content/themes/mint/node_modules/underscore/underscore.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore/underscore.js',0,'����F*{%����.Oy/','����F*{%����.Oy/','��ys̄6�DL؋�{�\0%�X\ng�\"��A�5��','',0,'?'),('��,��|���ZfC','wp-content/plugins/envira-gallery/assets/images/icons/cross.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/cross.svg',0,'���5Mp\'\'����','���5Mp\'\'����','��2R��oBU4�p�s�S�����Ro$N��ב�','',0,'?'),('���(b�-�u.L�.�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseForOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseForOwn.js',0,'ë@�´8�\Z��a��m','ë@�´8�\Z��a��m','�]��F6�ŵ\Z�yUw��D&�ZJ�����#�','',0,'?'),('��1@��d�T� �qqzk','wp-includes/sodium_compat/lib/php84compat_const.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/lib/php84compat_const.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�ݯ���]\"�\0Nh�','`��̪J�,zqNL�/g��.�l�J՟','',0,'?'),('��U~����.�& ��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/Comment.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/Comment.php',0,'\\]-Z�ő���L,�*=','\\]-Z�ő���L,�*=','�k��Y�Cz��h��H-e�Ʈ�(}�`;�i�','',0,'?'),('��q_�jeh���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIndexOfWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseIndexOfWith.js',0,'i~���X��coV� ,','i~���X��coV� ,','��:��M��� R�Ь^��E��7X}{ܟ','',0,'?'),('���\"*L�@�\ne�\Zpc','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/precompiler.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/amd/precompiler.js',0,'na��������,�z�','na��������,�z�','.�B#�pɷ\"�d�Tإ�t��.��{�%�!','',0,'?'),('��Θ��r(��Ł�� ','wp-admin/js/auth-app.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/auth-app.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#���LP���S[��f�','F@H���8�݇��7an���#{�����j�','',0,'?'),('��{c��z`�A=��)','wp-content/themes/mint/node_modules/pako/dist/pako_inflate.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/dist/pako_inflate.min.js',0,'�2��yY��[h�?q4�$','�2��yY��[h�?q4�$','��\\�>|��8{aШ�RC�MI�6߈C(?��48','',0,'?'),('��&��3�֨���;�','wp-content/plugins/wp-migrate-db-pro/vendor/composer/installed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/composer/installed.php',0,'2�#�`/��&�_�y�','2�#�`/��&�_�y�','�yR��J.$�u�N>c���ٳ���%�: ','',0,'?'),('���v{C����ҧ��4I','wp-content/plugins/wordfence/lib/wfViewResult.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfViewResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�����\"J�3Z��w','�m��e�=�H��oD���OT�\0�v���','',0,'?'),('���\0뀄 ;t�/��-','wp-includes/blocks/file/view.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/file/view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�4�j����Z6�','rj���4eV�)@���N\n�������F�ş5\n','',0,'?'),('�оS/�N:���.��','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/transform-value.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/transform-value.js',0,'�u1�0�)����.;W','�u1�0�)����.;W','ez�`w��QEp�n�E�3�d�yK��E','',0,'?'),('��p�$^���d�Z','wp-admin/network/plugin-install.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%(F��v\0�~��F','ڙs-s���~�uYe������T��F�4�!� *','',0,'?'),('��ڦ�<�ۈ_��h','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue34.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/issue34.js',0,'�9ɟ�\'%HU�a8�7','�9ɟ�\'%HU�a8�7','ȥ�qw\r\'�g\'�~G���4\\\0�gs�m��M��','',0,'?'),('�� ��(�=�$��','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/tools/exports.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/tools/exports.js',0,'�w1�枦��\'<�J�','�w1�枦��\'<�J�','�@3,�DT1*m�l�o8����Z���C)�','',0,'?'),('��[K���b���28�','wp-includes/pomo/po.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4�@9y�����G8�','�:ډ��L��ڃ��a���O�w�=�{K��G','',0,'?'),('����P%g ���a�','wp-content/plugins/wp-reviews-plugin-for-google/static/css/admin-notification.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/css/admin-notification.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+\r̬���F�\Z�','j�W2ta7�4�zf0�լ/�O:?S��/]A�%/','',0,'?'),('��\"���=o�#�!�;�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/tools/node.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uglify-js/tools/node.js',0,'dca��X�nv�z����','dca��X�nv�z����','�l�Y�u ��\'j[z�\\�GՏ�y�%�ϟI[h','',0,'?'),('��䚶�tL�͕b���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Mail/Mailer.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Mail/Mailer.php',0,'[k�|��<c���Z�kJ}','[k�|��<c���Z�kJ}','lX4�5 ���\\�߽+W4�6m�aE�P������','',0,'?'),('��M����ms8t','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isDate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isDate.js',0,'��d*6��N(�)���','��d*6��N(�)���',';��DD�AU�o�ү�R��I���֍L��','',0,'?'),('��4ih=�g����7�','wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-reports.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/postname-permalink-reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o��\\�Y\0�s�*٣��','W�5�:��M|SK�\"�)��$�����ٴ-��Y','',0,'?'),('��zb��Kat��l�͂','wp-content/plugins/advanced-custom-fields-pro/assets/images/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/images/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('���ъ!H��b���a','wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cli-width/index.js',0,'\Z#Kce;�gX�9�f','\Z#Kce;�gX�9�f','�ϝ��<Q�|^�B��Lf�۬Uu�~$�`�','',0,'?'),('��Kc����O��','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/getParam.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/queryString/getParam.js',0,'�=Ӆh�w�KdؚY','�=Ӆh�w�KdؚY','��\\���a���KV��8��1ӣ,�gMr�m`j','',0,'?'),('�����\"\0��h\0݆�','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchArchive.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Branch/BranchArchive.php',0,'�4�inɗ���llnSH�','�4�inɗ���llnSH�','�=��`�ODq���8�A�.C���7o��','',0,'?'),('��Dg&\'g�&8�NP��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesComponents.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesComponents.php',0,'�H��eGkd��B�ju','�H��eGkd��B�ju','\\Im�1�*�����B��;��By�\\P̲�� � ','',0,'?'),('����\Z z�ɥ �ު','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/startsWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/startsWith.js',0,'n�r[\"���y;(','n�r[\"���y;(','�4)^��n����v�0�ł:_՝�x/��}NoX�','',0,'?'),('� 2+�H1�r���','wp-content/plugins/wp-reviews-plugin-for-google/static/js/admin-page-settings-connect.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/js/admin-page-settings-connect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oq�9[�P��D��\0���','��ӻ�̲_��isf,�k ��NJt|�v','',0,'?'),('� >�)-��>zMs�','wp-content/themes/mint/assets/vendor/jquery/src/var/hasOwn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/var/hasOwn.js',0,'���S��]�.W�J*','���S��]�.W�J*','\"��n��бP�1�COa\"��֡\n�\'z��','',0,'?'),('� �dDxݲ�e�J��S\0','wp-includes/blocks/comment-reply-link/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-reply-link/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9\r*?���úg�','�UEв�3����T`�2\r�}uv.u���x+$\')I','',0,'?'),('�����JH�l\"G�L�','wp-includes/css/dist/block-library/reset-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/block-library/reset-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$X�yR�I��S���','���2�bm�qV�ɻ,5��\n��e�3rÐ','',0,'?'),('���ݺ�ҳ��|�|^�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/HtmlString.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/HtmlString.php',0,'���iD�ŧ2��ɡ_Q','���iD�ŧ2��ɡ_Q','k=��F%�C��J��xW~]|*v8q{�i�b�','',0,'?'),('����$��ض��n5','wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-true_false.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-true_false.php',0,'\n)T75B~Bo\0%Lh','\n)T75B~Bo\0%Lh','�Ӟҵ����N�h��k]�xT��T��#o��','',0,'?'),('��&���xB����a�c','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/MapCache.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/MapCache.js',0,'n� �|����8�#o�9','n� �|����8�#o�9','�A�@����h�-f]���/!�H��M�i','',0,'?'),('���X����J��p','wp-content/plugins/wordfence/lib/wfBrowscapCache.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T����Q�x�j�','�����1Y����T��Ј�q�W6���h ','',0,'?'),('��t��o����<MPx','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Wpc.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Wpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�(�T�-Q���ۜ�','d��JcP�h�UE�:����u�k��i��','',0,'?'),('�9�[�E:Ѷq ��A','wp-includes/blocks/calendar/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/calendar/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\Z��\"P��{�ў\"-','`�G�n�$�i��C���2{7��$�l�Ix�W','',0,'?'),('�#�\n���ɰ���Ђ�','wp-includes/blocks/query-title/style.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-title/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�l�¥ˀ����3','d\"Q�٥[�Rf?а-[1�����#x�r,md\r_','',0,'?'),('�%+=���,V.�`C`','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createSortedIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/createSortedIndex.js',0,'���a�]lă,Z��z','���a�]lă,Z��z','��[�G3��iE,9�tb���b����h;خ','',0,'?'),('�(W6c�������A','wp-content/themes/mint/node_modules/util-deprecate/node.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/util-deprecate/node.js',0,'(��\Zz-��?+�gӀ','(��\Zz-��?+�gӀ',' \\]\'g�e ���\"��JG�/CW��m�','',0,'?'),('�+�0&O[�H\'?��Lh�','wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/Exception/NotCallableException.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/php-di/invoker/src/Exception/NotCallableException.php',0,'�?�����+�0I�','�?�����+�0I�','��>�/i�2��85�LۑC����4��i�B~�','',0,'?'),('�/�.������(���','wp-content/uploads/cache/ba74a4923a2097ca23a3d9c6ef30470d5e5df8cf.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/ba74a4923a2097ca23a3d9c6ef30470d5e5df8cf.php',0,'�u���\'�V[�\n�','�u���\'�V[�\n�','h��Ռ��zKy��S�@�E�Մ]����M��','',0,'?'),('�2bDWA\"� *��','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/fields.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/acf-field-group/fields.php',0,'����4ܯwE��=�X','����4ܯwE��=�X','��jDj��\Z�m�h�q2>\0L\0��l٧���K','',0,'?'),('�>��^Ŋ-H���*UE','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/floor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/math/floor.js',0,'��$9�D�����','��$9�D�����','RtH��ɘ�m�b�7D���,���������','',0,'?'),('�A�F�U��\"P�� �','wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6�� M��>\r��瞀Q','��֥.7��Q$�P[0��( �bޙ�@��zs{','',0,'?'),('�F��:��K\0���`t','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/combine.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/array/combine.js',0,'�VS�5L����<p�','�VS�5L����<p�','X���+�48�϶\"<�(Gv5|���F��Q�','',0,'?'),('�J랿�h#�:!^`�=�','wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/capabilities/class-capability-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rv,%�f�n���2T��','ᒠ�#0���q*n\\\\!����́\'�A%�!.k','',0,'?'),('�Q]1�c�r]}�L\0d','wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/long.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/registry-auth-token/node_modules/minimist/test/long.js',0,'e.�^i�A獚�_�W�','e.�^i�A獚�_�W�','�P�-�FZ+�-I�\'VRHØ�Vx�0��BH','',0,'?'),('�SQ�6��mA͌�@','wp-content/themes/mint/node_modules/bower/lib/node_modules/repeat-string/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/repeat-string/index.js',0,'_��� �!S� �Di','_��� �!S� �Di','�J��?����;��\\a�:���ViA�9�5d�','',0,'?'),('�S���q�`���M�','wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=B���\nyNx{��','�E��zB�4�/�p�Ř�\r�۞.�B���3','',0,'?'),('�X���Ap�S�EL','wp-content/maintenance/template.phtml','/home/adaptiv2/juiceelectrical.co.nz/wp-content/maintenance/template.phtml',0,'2>ܞ,��B;��t','2>ܞ,��B;��t','�Ɵ~~o���Ӆ«m�\"�>\\�R�9����\r','',0,'?'),('�]_�\Z?ʤ��wHo�','wp-includes/blocks/avatar/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/avatar/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8����Rd�-u��','7o��W��ݹ�����P��*��\0ӛ��^�Ũt','',0,'?'),('�_RWw�p��@n+Mܑ_','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/composeArgs.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/composeArgs.js',0,'��P\\�\Z�)��f�v�','��P\\�\Z�)��f�v�','�\'J\r,��ѫJ��6���z��X���P<','',0,'?'),('�`�/�.!NA��G��2�','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-footer-55e7069a.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-footer-55e7069a.min.js',0,'QQ���?�ǹ�ۛ`p�','QQ���?�ǹ�ۛ`p�','�l#�p�T���|���C��/ʈ�N��w','',0,'?'),('�h��Õ7P}����','wp-content/plugins/wp-optimize/optimizations/postmeta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/optimizations/postmeta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�-�F����I�yG�','z�����p����PK�/�ɹ^8Z�y�=�','',0,'?'),('�i�`�0�V�\\�J5��','wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-front-end.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-front-end.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���BPM�1���\Z8�<','�E�\\:p�B��S�T�})��+��|8��Ǘ��','',0,'?'),('�kx��)u��]�#��','wp-content/plugins/wordpress-seo/vendor/composer/installed.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor/composer/installed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���,W�O(��YҦ','���i�v�4��g��ս�xq��aZڳ�ޗ�','',0,'?'),('�n֢��\r�V5��,�','wp-includes/widgets/class-wp-widget-meta.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/widgets/class-wp-widget-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��j�+(,�^�b��(','��PL+w��it���Z��d���kZ{X�V`�t�','',0,'?'),('�o����l>��x~I� �','wp-admin/network/about.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/network/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~���(���4�G�','��j/}Ӆ���\0E�S��̤\\Hg�#Z��._','',0,'?'),('�pD��h�>������','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Output/OutputTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Output/OutputTest.php',0,'� �[��4{|�aF���','� �[��4{|�aF���','�g�� �m��nx�\r��5O������->�>9[','',0,'?'),('�{���ϲ\"f�~A�?z]','wp-includes/Requests/src/Iri.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Iri.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�je�Qd���2�','�̣ѳ�j쭢&w�F� j�5��JX�','',0,'?'),('�|������gZ} L','wp-content/plugins/gravityforms/js/jquery.json-1.3.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/js/jquery.json-1.3.js',0,'oi���2t�+�Q','oi���2t�+�Q','i���i���<鴯 b�X�;���l��/Ƒ, �','',0,'?'),('���8�{�=kx<�?','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/queryString/setParam.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/queryString/setParam.js',0,'.;Z����\0^���\ZV��','.;Z����\0^���\ZV��','6`�B`�A�1^���01�� ��$�7*','',0,'?'),('���U��`��[�8W�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/nth.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number/nth.js',0,'c\r9�>-�a�z>c�c��','c\r9�>-�a�z>c�c��','ѾǠ��Pl�.�2�̴}$�p���3Gg(�G','',0,'?'),('���0j�l�S�K�','wp-includes/post.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���O.�Y2#\"AӺ�','��� ��Np8~,����oN3b9��\r','',0,'?'),('����ސ�q�ic�=�','wp-includes/class-wp-simplepie-file.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/class-wp-simplepie-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m���%z0I��@h���','����h�J���� �c����3{ T\'�Y�4��','',0,'?'),('���ܥvp�x1FH�%','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Loader/ExtensionMapTemplateLoader.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Loader/ExtensionMapTemplateLoader.php',0,'�Cp�9.�����','�Cp�9.�����','N�Ic���$����^\\r�7˩�x-s����d�','',0,'?'),('�������1De���','wp-content/plugins/wordpress-seo/css/dist/tailwind-2400-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/tailwind-2400-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;vZ��$�+Y=','.���ws����o\"R)��E�JB��@?1IF�','',0,'?'),('���E[Q�O�u��','wp-content/themes/mint/node_modules/underscore.string/test/test_standalone.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/underscore.string/test/test_standalone.html',0,'���@��}�M�v�1<�','���@��}�M�v�1<�','�����>��x?��E:�]��|��\"Q�`a','',0,'?'),('���5�Z��C��ݺ�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isMatchWith.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/isMatchWith.js',0,'F��=p,B�K^��&','F��=p,B�K^��&','I��A#���T֛��_*��i�<�\r�̛^','',0,'?'),('���ڧ9����4~�7z','wp-content/plugins/wordpress-seo/src/deprecated/frontend/frontend.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/deprecated/frontend/frontend.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!��:ԋ�Lf\Zu�','!$\0�9�B}��ti�9�N��K���5�%��J�','',0,'?'),('���l5(d����~8','wp-content/themes/mint/node_modules/normalize-package-data/lib/safe_format.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/normalize-package-data/lib/safe_format.js',0,'}U)���J(��M@N�.','}U)���J(��M@N�.',';��ȓ������Ͼ��&)i揥�_���','',0,'?'),('�����$��t�tq�ːY','wp-content/plugins/advanced-custom-fields-pro/lang/acf-pt_AO.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-pt_AO.l10n.php',0,'�C1#o�\rI��r2�m','�C1#o�\rI��r2�m','9�\'A�w2�}Wō\'�L�[O�Q���s��Z','',0,'?'),('��s�ՌQ��7o���','wp-content/plugins/wordfence/views/common/status-detail.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/status-detail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Ufxy9�9��g4��','���E�F�j&\n��E��&J՟gWk.���T/','',0,'?'),('��_�Q�|�]����`\Z�','wp-includes/blocks/table/theme.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/table/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�e_��\r�k�*��8','A\'��Rr�;�hW��Oؔ!F%S�_�s0� ','',0,'?'),('��x��j���u���','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesTranslations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesTranslations.php',0,'+�߸�q/�Q�\r���PP','+�߸�q/�Q�\r���PP','��[��5�OB�Z~u\Zo���p�ٕ��-��','',0,'?'),('�«��-j=�u�N\\q\'','wp-admin/css/farbtastic.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/farbtastic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8)���}{��C�h2U','|A��L��Mb�x�d8X�jX.���^\n\Z�','',0,'?'),('�ù����OO�Ur;>]','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/filter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/filter.js',0,'� 7i��T��I`','� 7i��T��I`','�g�B�z�g��?��5�.*�N$��}��8>��','',0,'?'),('��X!N�%���H���*','wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/cookies.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/request/lib/cookies.js',0,'��: �v�B','��: �v�B','�c�����İ�W+�:�����*�L&1��','',0,'?'),('��6Y��B珘��ܘ�','wp-content/plugins/advanced-custom-fields-pro/lang/acf-de_CH.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-de_CH.l10n.php',0,'`S�%*�r$j�38E�','`S�%*�r$j�38E�','Õ�� ����3\0^y*��+f;F)n��n�̱k�','',0,'?'),('��Mc�\ZD���q6 �','wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/select2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4/select2.js',0,'(W���#u��K-�g','(W���#u��K-�g','&�R��|�<gE�n���<j�c��Q�r��%2��','',0,'?'),('��s�B�o��`R^l�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/find.js',0,'��x�a�\0���','��x�a�\0���','e�cii\r���I�L��7㻧Hp�\'����tg','',0,'?'),('�ȸF�-3 8sI�c�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getRawTag.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getRawTag.js',0,'��`�?�mq�>���h�','��`�?�mq�>���h�','�Z�\r�)����b2���i��Z@n��F==�','',0,'?'),('��;�_w����*���n','wp-content/themes/mint/assets/vendor/jquery/src/core/var/rsingleTag.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/core/var/rsingleTag.js',0,'�h�z���lv�K','�h�z���lv�K','�/�n��h�0���wg��B6��6�]�\'�Nxm�','',0,'?'),('�ҰJ��?\n���$z�','wp-content/plugins/wordpress-seo/src/helpers/taxonomy-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/taxonomy-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�e�T�Cٗa��sB','dӵ��B�[\"�C��������GP@���W*�=','',0,'?'),('�ۦ���>�)г7','wp-content/plugins/advanced-custom-fields-pro/lang/acf-pt_PT.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-pt_PT.l10n.php',0,'S���\ZJ1lt�^��Θ�','S���\ZJ1lt�^��Θ�','\rF�%ߒ�^_:E� H����/O�Cٖ�Sv���','',0,'?'),('��u�gk�D��E��K','wp-includes/blocks/query-pagination-numbers/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/query-pagination-numbers/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';D}WRq�>�]��$','�x��=f\0_����ꊔ\Z�mL�q�bJ�','',0,'?'),('��ʭ\r�$�W��c��6','wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/quux/foo/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/requireg/node_modules/resolve/test/resolver/quux/foo/index.js',0,'�1�=q���V���','�1�=q���V���','D�i2���)�Wk�-���CX�[n��z;Y�3','',0,'?'),('���(4���F���P','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/message.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/hawk/test/message.js',0,'n���4�6��4���Y','n���4�6��4���Y','�J��&�V `n��L-��r%[�z4�&�?G��','',0,'?'),('��!/��Nd����aC','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/i18n/de-DE.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/i18n/de-DE.js',0,'gO3��Ն�M����','gO3��Ն�M����','h!�</r-�\\l���5��..K�J/s��m��','',0,'?'),('��ᗏ�3�-��4�','wp-admin/css/colors/midnight/colors-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/css/colors/midnight/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g�M�$m�9�¶�d','�{;��lϲ`0�I�\Z=�aS��{�/\"�','',0,'?'),('��f4.=�T����Y:�','wp-content/themes/mint/node_modules/js-base64/base64.html','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-base64/base64.html',0,'��oͷ9r��%��/','��oͷ9r��%��/','Y����3�q��Y���đ�3\0�u������','',0,'?'),('���ql�}Dɯ�b�#��','wp-includes/sodium_compat/lib/php84compat.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/lib/php84compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K-��Z�ԘyQ�6','��i[U�k��|�05�9���J,-��!�9��','',0,'?'),('��H�������|/�','wp-content/plugins/wordpress-seo/images/ai-fix-assessments-thumbnail.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/ai-fix-assessments-thumbnail.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���z�n�9�E�3�-s','���c�m�gT�`��^n#�m���\'`]������','',0,'?'),('��r�ٜ�&��t�','wp-content/themes/mint/node_modules/pako/lib/zlib/inflate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/pako/lib/zlib/inflate.js',0,'���X�u��mk�N֖W(','���X�u��mk�N֖W(','r���\Z�H=��^.:����n�g� :S�p','',0,'?'),('��A8�t��2K)zH�7','wp-includes/css/dist/commands/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/css/dist/commands/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>V���\"�8�8�','�C�:��Q�n��:��=�B�G��%P;@Wi','',0,'?'),('����ߦ>��W�Sg','wp-content/plugins/gravityforms/assets/js/dist/scripts-theme.min.asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-theme.min.asset.php',0,'me��#��&��3�H\n�','me��#��&��3�H\n�','zZ�]�Ri�\Zd莭���{���\0%�=.>d�','',0,'?'),('�n7E���VA��/�{','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Elementor/QualityBadgeWidgetURL.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Elementor/QualityBadgeWidgetURL.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ߪq����� @�z&','��eE�_c��X�����OQPL}��','',0,'?'),('�Q��?���R\n���','wp-content/themes/mint/node_modules/less/dist/less-1.3.2.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/dist/less-1.3.2.js',0,'Tŝ%J�\Z��)ևӴX�','Tŝ%J�\Z��)ևӴX�','���ߪ���zB�RgM��\'��u%�N�E���','',0,'?'),('�K<E����N�xz��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isObject.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/isObject.js',0,'���I4�}�@|>��_','���I4�}�@|>��_','BL���g_��*����O�����.+r]\\�','',0,'?'),('�T�7ݗ6�c`��u��','wp-content/themes/mint/node_modules/less/test/browser/runner-main-spec.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/test/browser/runner-main-spec.js',0,'wo��:���1� �[\"�?','wo��:���1� �[\"�?',']Ӄ &�� �:>��_q@�cF�Y��\'.&�0G','',0,'?'),('� (}f�\r�s:*�','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/pipe.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/pipe.js',0,'|��͗fX���O��z','|��͗fX���O��z','\0�>�D� 7�Vi�o�p<dOd��#y)��e,','',0,'?'),('�\"|��I~?hr���','wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�^���\0�\'Z�&{E\"�','ݮ��H~��hҗ?ON}l�hL��m�]��','',0,'?'),('�\"ڕK[@�G����9�','wp-admin/includes/class-wp-theme-install-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-theme-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n����ꟿ-/�+','Д��|�\"8�c��E�/�S�2�4/Y���N','',0,'?'),('�#���\'�;WXoWV��!','wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/ExecutableFinderTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/process/Tests/ExecutableFinderTest.php',0,'��\'��ju�8!q��','��\'��ju�8!q��','W�tH�T[Kӆ�45ԟ�f9KfЋ>���ծT<�','',0,'?'),('�#��u0�c���}���','wp-includes/js/dist/i18n.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/i18n.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�ï]�7��E�����','�j=�o Y��_\"��.���G���Z �','',0,'?'),('�$�Q�sP���R3}/','wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��sU4���櫋4[t','����_�jA�C5�Oyl�DU!��\0����','',0,'?'),('�\'nH2^:!�.ϥ�','wp-includes/sodium_compat/src/Core/AEGIS/State128L.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/AEGIS/State128L.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','83ݩ�8Z����#���','9/�z5�l\'w���,��\\���Ϸؠ�}�[','',0,'?'),('�/)�Dpud��`�Mi.`','wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7815d9.min.js.gz','/home/adaptiv2/juiceelectrical.co.nz/wp-content/cache/wpo-minify/1734055492/assets/wpo-minify-header-0d7815d9.min.js.gz',0,'��ڕ�\0�?��5÷V�>','��ڕ�\0�?��5÷V�>','�}P(p� p�T�R�ս�H1��IO����C�','',0,'?'),('�3!9�=�6�ݡ','wp-admin/images/resize-rtl-2x.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/resize-rtl-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M���M�H�!�YA','�2��m�o��{�|�ny��˃�4(�φ�=�','',0,'?'),('�Eحa��~�~p&1','wp-includes/blocks/comment-reply-link/style-rtl.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-reply-link/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9\r*?���úg�','�UEв�3����T`�2\r�}uv.u���x+$\')I','',0,'?'),('�G��%}\0�4�=-��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/findIndex.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/findIndex.js',0,'��@���͋Fx�D?C��','��@���͋Fx�D?C��','��Ot��6S|�Mr��,�9�:hpCpE','',0,'?'),('�Ioo�Ԇ5nu�ѭ��H','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0?��4\'+̶�L)$�','�Y ORٴ@�M������=���x�M�K�\Z.','',0,'?'),('�Jq�W,�t���#���','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/delay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/delay.js',0,'���[z2�Hy,ۣ�K','���[z2�Hy,ۣ�K','\\�;�C��Q�LB�c=��ģ5o�%.B�','',0,'?'),('�K\r�OX� �UQd��','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Debug/FirebugConsoleSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Debug/FirebugConsoleSniff.php',0,'�x\Z�(�eY}���','�x\Z�(�eY}���','�YD���]Q� ���u�k�z\r��v�ϧ��O`�','',0,'?'),('�K�˸�N���5*A�HH','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sample.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/sample.js',0,']Dq���+k-\n�=##',']Dq���+k-\n�=##','E�(�,$u���E�;�+�nc��|J\rӻ�Q','',0,'?'),('�NG���4z3�ؑ���','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/decorators.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/decorators.js',0,'�Rp+)sh�ZKk3ߵ�','�Rp+)sh�ZKk3ߵ�','���tP�5�v�����/���J�������\\�','',0,'?'),('�NIƹ%�k>ó& �V','wp-content/plugins/gravityforms/includes/setup-wizard/class-gf-setup-wizard-service-provider.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/setup-wizard/class-gf-setup-wizard-service-provider.php',0,'\'t&� �� �f�w��','\'t&� �� �f�w��','�k�Q�W`�����ɜ��l��f�p\ZƬ�u','',0,'?'),('�P��6��o;1��$�','wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/hawk/test/browser.js',0,'�r�\\T��!��Ư�','�r�\\T��!��Ư�','�>��=+#�o��9��膕:���\\��t�','',0,'?'),('�SG���ѴV\r�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriComparator.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/UriComparator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�4�W� -����X�;','ԙP\\<?��͇8KU�2͌�x�~b�v��];i','',0,'?'),('�U*mn�O�\n�(^�,','wp-content/plugins/gravityforms/includes/assets/class-gf-script-asset.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/assets/class-gf-script-asset.php',0,'J�jqN�gJ�=|�7�\Z','J�jqN�gJ�=|�7�\Z','$�頨F���:�?R�L��Pc�+�{�[*','',0,'?'),('�Uk\n�Y��� 4�N','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getAllKeysIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getAllKeysIn.js',0,'����k�W\'y\ruA�','����k�W\'y\ruA�','��Q�;O�Q��=c�)8Ux���/����]�','',0,'?'),('�X[����f�F�\n�ҥ^','wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Loader/TemplateLoaderInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/brain/hierarchy/src/Loader/TemplateLoaderInterface.php',0,'_��AD�F�q�\"�G','_��AD�F�q�\"�G','>�]B\'�I�������S�j��z�\\Y�!','',0,'?'),('�^2^�T��:�mJ��:�','wp-content/plugins/wordfence/lib/IPTrafList.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/IPTrafList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�P����դ�ueV�m','ϴ�C�rA�X�ͽ�(Ҏ\Z#�?=�߲o�<','',0,'?'),('�b�0݀>j�\"��G','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$�2��J��','�/#?T�iOLyv��u��TK���ɤ��\\ػ�','',0,'?'),('�c\\f� �|�A�ʂ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/includes.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/includes.js',0,'��8S�~6����uw','��8S�~6����uw','����4�3��%F2{ �����<���y��?r','',0,'?'),('�t�<��h� +v�a','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/stripHtmlTags.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/stripHtmlTags.js',0,'�_�3r��w�f�[','�_�3r��w�f�[','uWښ�1)����;؝�P���p\0��� �=!b�','',0,'?'),('�w���8�7{4�\'��','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1731600600.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1731600600.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89�\"��zz��Vv*��]','�ۆ%%l�:J�f<�bq��P���Pt˯}ߝ\"�f','',0,'?'),('�~>�8�qzwL����','wp-content/themes/mint/node_modules/argparse/lib/argparse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/argparse/lib/argparse.js',0,'�4<�W��\Z���','�4<�W��\Z���','��7߸�Q���z�lˬ.��I�b�]�y���','',0,'?'),('�~�^ޥ�R�5��)�k','wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/fixtures/block-comment.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/cardinal/test/fixtures/block-comment.js',0,'�/U}!7��8�f.','�/U}!7��8�f.','I���Dv;J��W���\r�d������Y�`�i','',0,'?'),('��^�F�Os����','wp-content/plugins/envira-gallery/assets/images/icons/linkedin-black.svg','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/envira-gallery/assets/images/icons/linkedin-black.svg',0,'Ⱦ�RF*\r���:A��E','Ⱦ�RF*\r���:A��E','�.>xR,�QmP�E�QJ2�4I�b����','',0,'?'),('���I�x$T�K�/>�Id','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/upperCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/string/upperCase.js',0,'j�2J�����i���Ia','j�2J�����i���Ia','�6f��@k�3�C?�8�VY��l�0�[�','',0,'?'),('�����-1�#��G{','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isPrimitive.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/lang/isPrimitive.js',0,'�a;�U1=\'o��','�a;�U1=\'o��','jWJ�beb��\r�RJ�ֺh]���]Ej\r!%','',0,'?'),('���*�\'O�7���}','wp-content/plugins/wp-migrate-db-pro/class/Pro/Addon/AddonsFacade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Pro/Addon/AddonsFacade.php',0,'��U�\\�j`@dw���','��U�\\�j`@dw���',':�QAt,y�wڮ@��`a/Y/��^�ќ��','',0,'?'),('���9v�\"1ݔ;���%','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/keysIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/keysIn.js',0,'�R�z�^fj���?j�','�R�z�^fj���?j�','Ada7�}��0�H�]�v�c��ݸ��<�f6И�+','',0,'?'),('���%�/��&Ӌ1^��','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Cookie.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Facades/Cookie.php',0,'� �\"<^.���~:�','� �\"<^.���~:�','��+�8Ak�z��~`���ҫ\"ۜ�B�p','',0,'?'),('��g���Å\\hJ��','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/lowerCase.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/lowerCase.js',0,'OG�rUQ\"e�[V��!5�','OG�rUQ\"e�[V��!5�','C�)���k ����N� �[�����+ڢ��U','',0,'?'),('��\"��ֳ��ݸB=@�S','wp-content/plugins/wordpress-seo/src/integrations/front-end/feed-improvements.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/front-end/feed-improvements.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q����K� |\"��>�','$4��̌(�\0�q�ߪ�=�1/�4�>\\X@�73','',0,'?'),('�����_W����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getPrototype.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_getPrototype.js',0,'A�k�5����i��k=jy','A�k�5����i��k=jy','3=�\r`�Ժiu\0�)�,P���8(�b�H~J�My~$','',0,'?'),('��I��o���ւ�Φ�','wp-content/themes/mint/node_modules/postcss/lib/at-rule.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/postcss/lib/at-rule.js',0,'��g���AN����P��','��g���AN����P��','�Ã��e��5�D�(@i�䘹om`���[�#','',0,'?'),('��o���V:N�N�g','wp-includes/Requests/src/Exception/Http/Status428.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/Requests/src/Exception/Http/Status428.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/q�xI圪�����P','<���\Z�4!n��*�\\���U�������','',0,'?'),('���L�8�ޡD~�ɋ1�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/conforms.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/conforms.js',0,'u\"�k�ք .R�Ȫ]','u\"�k�ք .R�Ȫ]','|h�ЏKZ��٪�Go����^��8��','',0,'?'),('���vo��aF�@���q','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/identity.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/identity.js',0,'-�Of�\\�݈uB���=','-�Of�\\�݈uB���=','��*�dž��d����\0L�:�?_\r�9�(��','',0,'?'),('��t���ω��lҜk','wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config-extra-params.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config-extra-params.js',0,'�kJ\nV�����-T��','�kJ\nV�����-T��','��\0�NUU�,��\r3C\"e�����+,�Y�','',0,'?'),('��������u��j`T','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LazyOpenStream.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/LazyOpenStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���oy�� W�T�/#','!6��.8�~+sMQ����vK\r5S�;\'fSR�b','',0,'?'),('����r��5���1�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/ltrim.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/string/ltrim.js',0,']��%sZ�����5',']��%sZ�����5','~a��\\�~�?b`��J+�߬�i�(\n`��R','',0,'?'),('��8x #��7��6{=','wp-includes/blocks/post-author/editor.min.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i����V��x���','��ӻwA:U���\'��2��U7z����Xd���','',0,'?'),('��f5�9G<�Y\0�/.3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/get_buffer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/binary/test/get_buffer.js',0,'1~����W����·','1~����W����·','p���γ�w��8֤��4��6�u^<�,�$�2','',0,'?'),('����h����N2�_��d','wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/github-urls.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/normalize-package-data/test/github-urls.js',0,'���W�����XNKf�','���W�����XNKf�','p�U�p��D��8Z�/��P��)�\'\'T*��','',0,'?'),('���CH��à��d}\r\r','wp-content/themes/mint/node_modules/zlib-browserify/zlib.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/zlib-browserify/zlib.js',0,'���&{�`���b�','���&{�`���b�','��^���t0c�[�D�U�ͩ����<}�','',0,'?'),('��sC<�:���<�A�','wp-includes/sodium_compat/src/Core/SecretStream/State.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/src/Core/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:�Z{���5�o','���<�s�6��\0, Ra�uhX��c���','',0,'?'),('���[ӷp��c�o�','wp-content/themes/mint/node_modules/cli/node_modules/glob/test/readme-issue.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cli/node_modules/glob/test/readme-issue.js',0,'�5��\r�X=��4���','�5��\r�X=��4���','O�����ԅ-��]h6�ߑ����@}��j4�u@','',0,'?'),('���>o�-��ۼ�Cr','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dropWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dropWhile.js',0,'vW���b�Sc��#$�','vW���b�Sc��#$�','�d�1vSG���R��G�����\'��p�)/Y','',0,'?'),('���rB�H$ks��W-','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/SettingsOptions.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/SettingsOptions.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9��4EI��x�\n ',',M^�E$w(��w}2���6��XƎ����)','',0,'?'),('��QԴTR���!<�','wp-includes/html-api/class-wp-html-text-replacement.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/html-api/class-wp-html-text-replacement.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ML��j�D�_m̈:','-�-�����,��t ���� �z�-R8���','',0,'?'),('� Ґ�+.7G���','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Widgets/LiveChatQualityBadgeWidget.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Elementor/Widgets/LiveChatQualityBadgeWidget.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<��n���7��z��','�W�9��H\r?��0С�1x��1�yřE����','',0,'?'),('�%;{�r�ڭ@qU�','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php',0,'�ϓ�d��}iP�ϰ@�','�ϓ�d��}iP�ϰ@�','������Oˊ--隝C������D��','',0,'?'),('���q���z�?;Zu�>','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/remove.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/array/remove.js',0,'�^����q�L�5�Gl','�^����q�L�5�Gl','j\"�q�D%�}W��G#���\r�#����}�K','',0,'?'),('������7j��','wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DummyOutput.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/console/Tests/Fixtures/DummyOutput.php',0,' ��n��8\\t��l�',' ��n��8\\t��l�','��i�[}(��W�O��ѤGE��$�K�M7','',0,'?'),('��*�=�.�G�7','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/matchesProperty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/matchesProperty.js',0,'��͎i�-r���#zV','��͎i�-r���#zV','i���:�$�-���Z�S���qF(%��=�','',0,'?'),('�)[\"J�H��|�jk��$','wp-admin/js/customize-widgets.js','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/js/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���@l�X��V{�:l��','��u�b�S���&�`���\\ܝ�Cұf�=','',0,'?'),('�.�y��X������','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/if-not.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/if-not.js',0,'�w�pf��\r�#','�w�pf��\r�#','RA��Z2�/`�ꍎ�P��gb �Eﯮ','',0,'?'),('�?Fϸ����A��R1�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p��ԏ�d0��lN&7+','^s\n�@G,�ږ\n;|3P nԔ/\rzA�\"\nd','',0,'?'),('�G�*L;%T*��P��','wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/readable.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/concat-stream/node_modules/readable-stream/readable.js',0,'�O��o1���]BS�','�O��o1���]BS�','�a�1�B �l�ЃH�Yu�L�wq�I�C� ','',0,'?'),('�Jݘ���M6:<;�','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/groupBy.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/groupBy.js',0,'�dPg���7���jb/','�dPg���7���jb/','@�v{������d�Ҵ���n<�d�$�8���','',0,'?'),('�JTV0D��oTA[@�','wp-admin/options-discussion.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/options-discussion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�g�=��@b�$�~�','R�z���1]�Q��b+�\0\\G���qq�','',0,'?'),('�LY{�Iݩ9��R �R','wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/theme.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �a�M�a�@Z��\n�','��W� �0�z�ٍ�O�nDCI]� 7I��f�','',0,'?'),('�O����u�K�','wp-content/plugins/advanced-custom-fields-pro/includes/acf-input-functions.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/acf-input-functions.php',0,'3��w�H�kʼn�\Z0*','3��w�H�kʼn�\Z0*','�����r6A]�������T�K\r#��m��W���','',0,'?'),('�P&.!��D�Z~���?R','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/number.js',0,'U�v(�LS��v\'g���','U�v(�LS��v\'g���','�f\n���&,\rt�$\n:=��V`�S�>�uÿ','',0,'?'),('�Q��܀}|\"�D]rL.�','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/link-writer.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/link-writer.js',0,'|)?(��K!Ā��|','|)?(��K!Ā��|','b����(���(�\Z_1��p��R*�sr�=','',0,'?'),('�S \'5��ӿ��g�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/admin-field-group.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/admin-field-group.php',0,'I,m���}M����F��','I,m���}M����F��','�;�y�fc3{)��@��h�>2�_ղ��p�5','',0,'?'),('�S����;Ӣ�K��N','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/array/min.js',0,'W \Z�����<n�|�','W \Z�����<n�|�','�\Z�vQk\0��Lz�s��0�r\rA:\rjq��','',0,'?'),('�iE�^L�������-M','wp-content/themes/mint/node_modules/http-signature/lib/verify.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/http-signature/lib/verify.js',0,'d@ICK�w��P�`','d@ICK�w��P�`','��.���Ω�.,A����Y��)[����3N','',0,'?'),('�k$�Qvl�m�_�k�','wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/rc/index.js',0,'\0�ѝ~��!�k@s.B�','\0�ѝ~��!�k@s.B�','֤a��kAk>�-���7��bD�Pi���iB��','',0,'?'),('�|R���s\\�-fw��4','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-post.php',0,'E`�N�5Qt���E.ǥ','E`�N�5Qt���E.ǥ','��S����&��j�Ю�RG�T\rR�UBH�$��','',0,'?'),('����S�8M�C��>��','wp-includes/js/dist/block-serialization-default-parser.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/block-serialization-default-parser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W���jvu�.4�','��2�%��z�uo:��\n\'A\\eTU�5l�','',0,'?'),('���{�U`x�!_\r�-C','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Extractor/ExtractorInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Extractor/ExtractorInterface.php',0,'�[W\r7o:��R|��.$','�[W\r7o:��R|��.$','��I!f�����֊օ�49��j8�w��','',0,'?'),('���Qi;���l[ׁ��','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/QtFileDumper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Dumper/QtFileDumper.php',0,'^�� ��(��W)�','^�� ��(��W)�','�sR�\\C^����bf�\'nF�)����iۊo�','',0,'?'),('����_�Ot˔v�/','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/every.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/collection/every.js',0,'��X�b���E���','��X�b���E���','��4�<A�&��Qɭ.-N�T���v�?M�Mvyn','',0,'?'),('��h:��}�ttpk��I','wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/MimeContentType.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/MimeContentType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���?��x���&ՓV�','��\'���:$��r�G�P��4b��O����','',0,'?'),('��V8H��jPXȖ�','wp-content/themes/mint/node_modules/uglify-to-browserify/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/uglify-to-browserify/index.js',0,'-���AP��>��c','-���AP��>��c','�&<���T�$t��G\\I�@ ����-�)g�','',0,'?'),('���?�\':P\\�� ','wp-includes/blocks/site-tagline/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�����A�;䊹��','��Н�<�+[D\n�4H�v�����ֳ-�;�','',0,'?'),('��ZjfN�}Z��$K��','wp-content/plugins/wp-optimize/images/notices/image-compression-video-preview.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/images/notices/image-compression-video-preview.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sb�NѸ�a����*�E','Y!����%R�7\nBc��ОK�0��E��`j�','',0,'?'),('�������6��>�4�','wp-content/plugins/wordpress-seo/js/dist/externals/jed.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/externals/jed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','as��r։�#e�:0�e�','��U�6|�>����P����\\���s2�Q#','',0,'?'),('��8\Z�1\nȉ=\n��{�','wp-content/plugins/wordpress-seo/src/helpers/open-graph/values-helper.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/helpers/open-graph/values-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#��?�&�|�\Zt��','��![��D�҉��ܞ�Y�]O�#*�`V','',0,'?'),('���ٖ|;����','wp-content/plugins/wordpress-seo/src/services/health-check/myyoast-api-request-factory.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/services/health-check/myyoast-api-request-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��P��?�Ĵ�=\"�=�','�j_y����T�[�^��֤y�Uv����%\n�~�','',0,'?'),('����S�h���S�%Tz�','wp-includes/js/mediaelement/wp-mediaelement.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/mediaelement/wp-mediaelement.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%/NqOR�g��+\\�','F}\Z\n��v�n�`��Z�!�T��W����s','',0,'?'),('��8�*.ۼJzI�*.','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/defaults.js',0,' bN����I�k��%',' bN����I�k��%','���\'��\r�W�Q2�%��)&�f���','',0,'?'),('���\Z�g����D�L�','wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UriInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src/UriInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������Q��v�m�','u���U����}m�B^ ��9H�M�@q3','',0,'?'),('��V�F���U�����-�','wp-content/themes/mint/node_modules/cliui/test/cliui.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/cliui/test/cliui.js',0,'D=�}��S�!�~��','D=�}��S�!�~��','*���TO�V� �x5�\n+u{���Ny��\\��G','',0,'?'),('���:��m�*�̔D�','wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/fullscreen.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/autoprefixer-core/lib/hacks/fullscreen.js',0,'9�Ҷ��sT��&��r3','9�Ҷ��sT��&��r3','��+��ƙ�\"2u�/���s���v�C�Y','',0,'?'),('���ҍl��$E�1','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/flatten.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/flatten.js',0,'B��p7Hx�\'M�_}a�','B��p7Hx�\'M�_}a�',')N�;x�Qs�t��d��H�ZZ�}�\\Re�','',0,'?'),('���z�Ÿ���=�','wp-content/themes/mint/node_modules/bower/lib/node_modules/osenv/test/windows.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/osenv/test/windows.js',0,'�\Z�Y�X;��O$M�k','�\Z�Y�X;��O$M�k','|^�>@T��د{b�����{D�+�>�z�','',0,'?'),('����Y�+J�5�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/doUntil.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/doUntil.js',0,'��$KI�H#��l�','��$KI�H#��l�',':l�3\n�{-���SNz�\n�@V�O`�B��@','',0,'?'),('���\r�ۜTiES��','wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-promotion-notification.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/integrations/alerts/black-friday-promotion-notification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�fo���<S�I}','��a���[Y�]�*n:���A�Z�P��)��6d`','',0,'?'),('��be�e���n���t�','wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�#����s +�V{\n�','*�n��0pd5��y�w&?��^�8;���N�:9','',0,'?'),('��._ƹ�^�e��E��','wp-content/themes/pinnclonesmalltest/resources/assets/scripts/routes/about.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/assets/scripts/routes/about.js',0,'խ�(�k\Z�Jlv��P$','խ�(�k\Z�Jlv��P$','k�璔�!*ʥOr��n��-}�c���\"�8���:','',0,'?'),('���@�j\"a�mN���','wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php',0,'OÝY�,�\\��-\Z�*','OÝY�,�\\��-\Z�*','V#�|q1V��ׁ-�(��#�����خ3-','',0,'?'),('�н-z�7��e�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseForRight.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/baseForRight.js',0,'�m2�&���X��','�m2�&���X��','�^k�a���ynJ$XՖky�G�\0�F�B�g','',0,'?'),('���Wd�;C\r���O�','wp-content/plugins/akismet/views/notice.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/akismet/views/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��wQ,k��1/�@г','�U����i[c�o8&��K�S\'���J','',0,'?'),('��LE��a��Z<\"���','wp-content/plugins/gravityforms/assets/js/dist/scripts-theme.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/assets/js/dist/scripts-theme.min.js',0,'CMz���2�$ۈ�s�_','CMz���2�$ۈ�s�_','�j�`���㘠ii5���l��KB��I�ÿ�C�)','',0,'?'),('�ԗ����\\�\'r{ �','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/ApiClient.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/ApiClient.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dن�����Xg���_','4\nh�kq��л�����3jg�|��u���:f','',0,'?'),('����k <⒳��','wp-content/themes/mint/node_modules/strip-json-comments/cli.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/strip-json-comments/cli.js',0,'��P%�F�q�=.Ob9','��P%�F�q�=.Ob9','�sF�q��j�g��A�Q!z�On�7ʋ��d','',0,'?'),('��ˋ�_o!\'�u��r','wp-content/plugins/wordfence/views/common/page-tabbar.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/page-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q���VdЌX@q�ș��','S���تA���Ӥ�@5����|�~�?KBK9U','',0,'?'),('�� ~�����w�K','wp-content/plugins/wordpress-seo/css/dist/yst_seo_score-2400.css','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/css/dist/yst_seo_score-2400.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��M~���)�V�\'��','˗�Mɫ���\Z�w����DO��x�;\"U�Y6��','',0,'?'),('����;\n�7�ړ4t>J','wp-includes/blocks/post-date/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-date/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=���a��V����','��C`��bH&2*6Թ(]3����\\��nڶ}�','',0,'?'),('��Z\nu�oK� ��T;e','wp-admin/images/list.png','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/images/list.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��*�ӳ�S��','\\w��T[�=�b�aCk������;c���','',0,'?'),('�㛍p�h������y','wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ary.mo','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/languages/trustindex-plugin-ary.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z� ��O�ɋ��z.�','���WcN~�j����;����Z�h+#�\0��p��','',0,'?'),('�䏂Vܤ�c�Q��\'�3','wp-includes/blocks/comment-reply-link/block.json','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/comment-reply-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�-������o','q�Q��3N �Ky��֦ª����P�~�a','',0,'?'),('��S_Ԗ�uT���0','wp-content/plugins/wp-migrate-db-pro/template/pro/secret-key-warning.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/template/pro/secret-key-warning.php',0,'�\r>�5\\]$�~f�zP�/','�\r>�5\\]$�~f�zP�/','�_ljpĦ���P���}��8cF\0�(���','',0,'?'),('��xDk�y_�:�6^�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/global/navigation.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views/global/navigation.php',0,'�(��u�!�R�','�(��u�!�R�','\0�:5\'y9s6Ha ���Uܹ����E�� �i','',0,'?'),('����.W�t_D����3�','wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N>�Ab��:m�Rv','�+�Sa\'�\0�60���c��er�`t�m� >)&�','',0,'?'),('�� E��C��j�\0�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Classes/ClassDeclarationSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Classes/ClassDeclarationSniff.php',0,'��h��yx����G�$','��h��yx����G�$','u�m3S.J�u��{���%o�,W��$vde_','',0,'?'),('���c�(#���@�','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/InlineCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/InlineCommentSniff.php',0,'q_���\0��I9N��q','q_���\0��I9N��q','�c}�Qz _r�#ٰ� �HU�ɯ���=��','',0,'?'),('���V�s�(tf���','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo-v4.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-aioseo-v4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��mJK���߭��{�','�5Nw�f�~��Z���o�ӈ�S3Q���O7�%','',0,'?'),('��ll���x�L,7W�N�','wp-content/plugins/wordfence/views/common/modal-prompt.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0J�.H[|�E3$d�','�\Z�z%����;�����o��n��m&������','',0,'?'),('�4)tk�l#�<��U�','wp-includes/block-patterns/query-grid-posts.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/block-patterns/query-grid-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/0�K�\0F��OK��M','�Q^D拜��dt�5���TG��)ˊh�`�e� ','',0,'?'),('���D;�dž� ��H','wp-content/themes/mint/node_modules/bower/lib/node_modules/readline2/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/readline2/index.js',0,'-��LhPa{\Z�\r��','-��LhPa{\Z�\r��','K�8Y\nU��5�.T#��\n�y�\0^Z��~��t]','',0,'?'),('�o>;��fUΐ�','wp-content/themes/mint/node_modules/less/lib/less/tree/detached-ruleset.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/less/lib/less/tree/detached-ruleset.js',0,'��L�h��,�v','��L�h��,�v','�GP\'��p��� �) )\r��ۥ\n�u�=�','',0,'?'),('���Uy/�*%��;','wp-admin/includes/update-core.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\"\\�Ol��<Vy','^i��V�5P���6������5�|-�l=$ą�','',0,'?'),('�\rE��U���̈́��','wp-includes/images/wpspin-2x.gif','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/images/wpspin-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�%�-�E�;����|','�u)��J�A�92���$��N�8�����\'F','',0,'?'),('�\r��˻z;��z��','wp-content/themes/mint/node_modules/promised-io/tests/promises-aplus.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/promised-io/tests/promises-aplus.js',0,'<oRȠ4,�E��Kc�','<oRȠ4,�E��Kc�','r3=�A�ɼ�h]ă\'�}�u��%�_��B','',0,'?'),('��!�G�dQ���*�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/deburrLetter.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/internal/deburrLetter.js',0,'P��\\�C,Ƽx<�ޏ�','P��\\�C,Ƽx<�ޏ�','6_^��<o�FP��F��,��r��K�dC=�','',0,'?'),('�W���P旃^q�y�','wp-content/plugins/wordfence/lib/menu_firewall.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/menu_firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�%r��\'NP-Xϼ�A','�`\n\\�-�j�-d��Z{%�p�j����A��','',0,'?'),('��ъ��=�Aꗙ�','wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-nav-menu-item.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/locations/class-acf-location-nav-menu-item.php',0,'�ul����F,| �M�7','�ul����F,| �M�7','������M�=��N/�L�R�ʄYr*\Z+�','',0,'?'),('��L�����iU&\"�(','wp-content/plugins/advanced-custom-fields-pro/lang/acf-en_GB.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-en_GB.l10n.php',0,'|~Ў�G�k\">>�[t�','|~Ў�G�k\">>�[t�','\Z�Z���&�<�g��\\��;�Nw�ɏ','',0,'?'),('�^���&-�30�~�','wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/applyEach.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/form-data/node_modules/async/internal/applyEach.js',0,'����=���I����','����=���I����','��#+;������$�}�X�)1�%k�d�쨾','',0,'?'),('�\"�����;���.','wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetWordPressDisableGuestsOption.class.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/Services/Options/Deprecated/Widget/DeprecatedWidgetWordPressDisableGuestsOption.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l���M�x+\'','�T˖z�]�mT_�)\\��R[��~9�����)R','',0,'?'),('�%���u�U�Ν�w','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/defaults.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/lang/defaults.js',0,'�J��a����0���','�J��a����0���','���@J9+M��SJ�e��v���K��','',0,'?'),('�&����+�t�~uJ�e','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/GLOBAL.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/GLOBAL.js',0,'���^h��P�{�ѶY�%','���^h��P�{�ѶY�%','�/�Vc���\\���w��㸷*!\nCD��4qwT_�','',0,'?'),('�)\nu&\n��n����','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dropLastWhile.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/dropLastWhile.js',0,'��uz\\6��~�dIs','��uz\\6��~�dIs','�/7�d�ǘE��XyZ��w`�U~g��|�bS:P�','',0,'?'),('�95�`FYv�#�x�\r{','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/join.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/join.js',0,'�$Hy��\0��2���M','�$Hy��\0��2���M','�}7�\'��D���G2^Yi�\"�u�}Ϻ\rv','',0,'?'),('�?f{6�[B�[��k��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue34.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/test/issue34.js',0,'W�YN̝Wzp�Q�','W�YN̝Wzp�Q�','�\"M�\n;Jf��8��x2yi�ir�Y+���','',0,'?'),('�E��8�M��t#��(','wp-content/themes/mint/node_modules/js-base64/test/large.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-base64/test/large.js',0,'�\ru\Z,�Ɉ/�0��7�','�\ru\Z,�Ɉ/�0��7�','78�(���ӑ�:S���9Q�A\n��Ď��y>�','',0,'?'),('�H��.�L�r��tc��*','wp-content/themes/mint/node_modules/domutils/lib/manipulation.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/domutils/lib/manipulation.js',0,'��ɋ�P\"�T�����','��ɋ�P\"�T�����','�ORD ����f�b�+���� a�@;���{�','',0,'?'),('�Ix�_W��^8��H','wp-content/plugins/wordpress-seo/js/dist/elementor.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/elementor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<���}���L\'','�IV�-A���9��\ZL�/�q�+�,�����','',0,'?'),('�NR,�J�*�̦G$i�','wp-content/plugins/wordpress-seo/admin/class-option-tabs-formatter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-option-tabs-formatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�bkދm,�)��!p','��2������K�o�[�k|��ZV�T|�c�','',0,'?'),('�V��>���L1ҕc�0','wp-content/plugins/wordpress-seo/js/dist/edit-page.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/js/dist/edit-page.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h<S��]i�����x�','M���8�%���A�����(�DZ�$�','',0,'?'),('�X�����e9���','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createElement.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createElement.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3IH$�oZAٿ�$Y','N�_l���vZ&q��i^QQ���o�3U�y','',0,'?'),('�\\_*�X�y\'�T�¼�','wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Yaml.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/yaml/Yaml.php',0,'�^qz,o)\Z��b�S�','�^qz,o)\Z��b�S�','+=�;��8�F�`t��{��pԁ��0Tgҳ','',0,'?'),('�e�J�W�f�6�\'�','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/expand.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/lib/prompts/expand.js',0,'/R�s�G,m�n\\)D�=','/R�s�G,m�n\\)D�=','A���3�`�f�F�?��4J���+�ٚf\r�','',0,'?'),('�fM[轟�9�+�X�=','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/find.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/collection/find.js',0,'�v�uWt>hÃ<�','�v�uWt>hÃ<�','0�ޒ,�ʎ��齺/�vce�о�r\")F�?','',0,'?'),('�h/͔��j�C�\0�n','wp-admin/includes/class-plugin-upgrader-skin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ƥ���t��G�@�U','O|����G��J��P{Cb��<��2j','',0,'?'),('�i��Cʮ���:�3�','wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js',0,'���JH������\Z','���JH������\Z','/�h#�0�Z|�����sm:����uH��','',0,'?'),('�w���6����`F','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isPrimitive.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isPrimitive.js',0,'\\�B�p�)��g�d�','\\�B�p�)��g�d�','�d�r;cX��b����g�@E�Q��� �F�','',0,'?'),('�x�W���2e�uv�L','wp-includes/customize/class-wp-customize-background-image-control.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/customize/class-wp-customize-background-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1SDM�{KC��(��1�','M\n��K6e@���zM�d��Z%d �Xҁ��','',0,'?'),('�z�]5���x0�A\n Y�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/delay.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/delay.js',0,'��ݺ�wo�qb��4','��ݺ�wo�qb��4','ߵ7^�A�s�A=Kw\"��@[�fb�\"����','',0,'?'),('�6���?�^o�#�','wp-includes/sodium_compat/namespaced/Core/SipHash.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-�e��r^�!�~','��`��R�lԥLz�?i�āACH�Py�n','',0,'?'),('�_V�&����Ҡ»�','wp-content/themes/mint/assets/vendor/jquery/src/manipulation/support.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/jquery/src/manipulation/support.js',0,'�C�A���lG��\"','�C�A���lG��\"','ג�{{i /�Yc}��2\0Hٽ�[��#','',0,'?'),('��c!�|7�Yв�<\\','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/before.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/function/before.js',0,'���Ͱ�Xيx�C2$�','���Ͱ�Xيx�C2$�','�Z��k}���J����P��|��l�l/ct','',0,'?'),('�����b��oq{Ů�S�','wp-content/themes/mint/node_modules/browserify-zlib/src/binding.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/browserify-zlib/src/binding.js',0,'QQJ�{t��%�l�','QQJ�{t��%�l�','��{�\r0]\"��->X�X���v�}� \Z�','',0,'?'),('�����w�u�{+}�\0','wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php',0,'���^#�퓬1�6�y','���^#�퓬1�6�y','����Vz��O\r�����Z��%4k�K5\'[g','',0,'?'),('��v_6Bt�A\Z���(�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/perm_sync.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-registry-client/node_modules/mkdirp/test/perm_sync.js',0,'x.&N���3��/8~�W','x.&N���3��/8~�W','�e�w1B���?��W!B\\�����ͱ��y��{','',0,'?'),('����I�kǵ2�Q�\Z','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/max.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/object/max.js',0,'�b��=�ɓ�I6�\r�C','�b��=�ɓ�I6�\r�C','�YX}\0c�g��`ķA��0N�q�1ȂVzaz','',0,'?'),('���R �(�, !)�Z','wp-content/plugins/wordfence/waf/pomo/mo.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/waf/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D��6��~.���S�[','��\\\'�_F�u�C)CR\"(C�O�YW�!��)','',0,'?'),('�����6��r��z��\0','wp-content/plugins/gravityforms/includes/webapi/js/gfwebapi_settings.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/gravityforms/includes/webapi/js/gfwebapi_settings.min.js',0,'.�qy��95?Q�F/','.�qy��95?Q�F/','�m��\'����ɋs�f�uZ8�7��\0�_�h\"','',0,'?'),('���G�,F-\n�o.�','wp-content/plugins/wordpress-seo/src/values/robots/user-agent-list.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/values/robots/user-agent-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��sXoU\n�K�,�BV','���y!�!�Scͫ�\Z@lP�h^t�,��Pb�','',0,'?'),('���,�eC\"�]\'F�;�r','wp-content/themes/mint/node_modules/grunt-modernizr/tasks/modernizr.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/tasks/modernizr.js',0,'>?Qg���v�\0Y\r','>?Qg���v�\0Y\r','v���>�#�-�b�O$G0�}�0�O:[XW��','',0,'?'),('��U\\G,��%G��Z','wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/da.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/nesbot/carbon/src/Carbon/Lang/da.php',0,'�X��΄���ԋ\\�b','�X��΄���ԋ\\�b','Ʌ�<�YZ���D:��,s�E� �Ʌ�܋� �','',0,'?'),('��ʵ���9m�7ه�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_unicodeSize.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_unicodeSize.js',0,'ެ�F4_\n�ɩ�3of','ެ�F4_\n�ɩ�3of','��/�W�CT���]V>��{��+�f1��+�','',0,'?'),('��݁����Lrv?)���','wp-content/plugins/wp-optimize/LICENSE.txt','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�����o*n+�/��','��\0v1��s�N�>cID٦����I�0�-','',0,'?'),('�����&@p����ɗ','wp-includes/js/dist/wordcount.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/js/dist/wordcount.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?guE��:�;<�H��','.����#��~y�8F��������ֆ��','',0,'?'),('��uMAΜ\"���Iǿ','wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__unset.md','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__unset.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U��F7��{��zh�','� �#s�Q����J\"AO�F�f�;-���^�','',0,'?'),('���{Z��$�\'�Q�','wp-content/plugins/wordfence/lib/wfScanMonitor.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/lib/wfScanMonitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{B蟑b�h�6a\\��F�','r�������BV���d�:*WU�2��n/�','',0,'?'),('�������{�1>;?�\n','wp-content/plugins/advanced-custom-fields-pro/lang/acf-pl_PL.l10n.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/lang/acf-pl_PL.l10n.php',0,'�iɎk�bP��\r\nH�`','�iɎk�bP��\r\nH�`','ȵ�<1mҥ�3π�q�qu�B�kl�yi����','',0,'?'),('���ΦHc�^����)','wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������\'�{=ͺ','���R������_f�W{*3����ݔ �\"�/�','',0,'?'),('���ΧN��ظ�3�','wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/rng-browser.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/uuid/rng-browser.js',0,'r�Ͱ��`:�sC<a�','r�Ͱ��`:�sC<a�',':���{}�;�;��^bn��Q��\0ͼZgX�1','',0,'?'),('��h�SĿQ���R��','wp-content/plugins/wordpress-seo/admin/import/class-import-plugin.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/class-import-plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�$omocg�]N(��','�\n�}�fX�Ĝb<E�o�.[<v6�1_�^','',0,'?'),('��D���3ɨ���t�','wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/tst/ber/reader.test.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/asn1/tst/ber/reader.test.js',0,'�� UI�-�Xx�^�','�� UI�-�Xx�^�','�9*�n�vs+�l�X�c�E�4���p��h��*�','',0,'?'),('��44}�Hđ�λ��','wp-content/themes/mint/node_modules/glob/test/bash-comparison.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/glob/test/bash-comparison.js',0,'�k1���^!�ýL','�k1���^!�ýL','\\���f����h�q�%v��!`4��\\���','',0,'?'),('������sp���e�','wp-admin/includes/class-wp-ms-sites-list-table.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/class-wp-ms-sites-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���+�SO�tߛdF���','\rJ�n`�5�0EaK�xL2-���2��2p�\\&�b','',0,'?'),('���@Pw�y���3�Ks','wp-includes/blocks/site-tagline/editor-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�����r�38�ߟ','��Ų�uΑ�u��-��� x��m�oC�\0��/#�','',0,'?'),('�� �ӭgȱ!n�P�','wp-includes/IXR/class-IXR-client.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/IXR/class-IXR-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a���J�}��!�W��','Yw��1��v.�G3e�d��Ä��y`LR ]','',0,'?'),('���ʜ\\\"���z@*>�\Z','wp-includes/blocks/site-tagline.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/site-tagline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����B-�o�lY���','���p���K1�2 �m���@т��\'P����','',0,'?'),('�\0DS]���3e`���','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/truncate.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/string/truncate.js',0,'Ǵ<o=�Z�ߌ�`.','Ǵ<o=�Z�ߌ�`.','���\'V_�P/d\r \n\\͐&9�,bؕ�N��','',0,'?'),('��1�#1o}ö��','wp-content/plugins/wp-reviews-plugin-for-google/static/img/review-collection-sm.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-reviews-plugin-for-google/static/img/review-collection-sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zl��c��I�S���','f�M\0g���\Z,^�{w/Z}H�ӦNJA3�','',0,'?'),('�\ni_�a*���>�dnP','wp-includes/blocks/post-excerpt/style-rtl.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-excerpt/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=u�`��6��R�B\'�','���X�9�s�3�|����y���a,[�a1','',0,'?'),('�\rT���X�� ���[','wp-includes/php-compat/readonly.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/php-compat/readonly.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����s�ga,�','$��S\n���C+�b,��b���Tr�Q�S�9>�','',0,'?'),('��{��m`]�ro','wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Finder.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/finder/Finder.php',0,'\\���b;&��SiQ$','\\���b;&��SiQ$','�0�d�l�l7c�QB[qhZ^���� w���]��','',0,'?'),('�zJ8tO�Y����1','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-json/lib/util/createError.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-json/lib/util/createError.js',0,'v&��<� ^f���','v&��<� ^f���','8i� ;B0$�\0Y��g_��r�X�F�k','',0,'?'),('�x�Xo\Z;g���\r��','wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.amd.min.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.amd.min.js',0,'u,�QAAn�z*','u,�QAAn�z*','� dlh�a~�cI CUl����T�_�O�@\r+�','',0,'?'),('�\Z�}u�a�>�ƫ�<�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/QueueFake.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/support/Testing/Fakes/QueueFake.php',0,'ҚNyg�<�!E�r�]','ҚNyg�<�!E�r�]','1�\"�.�=���>�\'A(=��J�O�}�','',0,'?'),('��+U�n�\r%�h5f$�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_stringToArray.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_stringToArray.js',0,'4}?�-���_b]$7','4}?�-���_b]$7','�?gj��|#_�+Qc��=�o1847T`Kw�M�;?','',0,'?'),('�$ebv���_ei��','wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/LICENSE','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' l��#Y^�=u��','r�=X��,�lU���*�F]�� ZQ[6�qф','',0,'?'),('�%�Y\n\\@�xa2�!','wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/lib/utils.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/qs/lib/utils.js',0,'hW�J;\rª��/�','hW�J;\rª��/�','W������z�2j��\'���t�ى�y�a�','',0,'?'),('�+�F1��L�Z+���X','wp-content/themes/pinnclonesmalltest/resources/views/partials/content-page.blade.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/resources/views/partials/content-page.blade.php',0,'��֤\0�Y>̯��P�','��֤\0�Y>̯��P�','�D�Oy�\n�t#�7�|�1?~Q��D���gg','',0,'?'),('�-1�8�;�T�/X�]','wp-admin/ms-sites.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/ms-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f3����&S��7F76�','���,�$�y�n)R��Hg���h{�$��U��','',0,'?'),('�D��ߤG���9�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesAuthorizations.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/view/Compilers/Concerns/CompilesAuthorizations.php',0,'�}�y\ny_8����','�}�y\ny_8����',';8�-�¥o�(Lpd�9s3�fϺz��c','',0,'?'),('�D��}U���#��:�','wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Uri.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/Uri.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gT^�8�Mb�H�(P� \r','�<Y7���%��>�D�Ȑw�֞��1\\8�','',0,'?'),('�F]A�46ƕ�Q���','wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/valuesIn.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/inquirer/node_modules/lodash/object/valuesIn.js',0,'|X�y\0ʗ��b��<','|X�y\0ʗ��b��<','/C� �����S��HE��t<$ �T��S�C��','',0,'?'),('�I�Y v�1BI��\'�','wp-content/plugins/wordpress-seo/admin/class-yoast-plugin-conflict.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/class-yoast-plugin-conflict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n9�NN�rk�@��_','[t���Jn@�\Z!`Mi��!���%�oD�@,','',0,'?'),('�J��\'*�߭�K)k�+','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isEmpty.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/lang/isEmpty.js',0,'������w������','������w������','����=�Z�[�CL�(����k|��z03��;','',0,'?'),('�O\"��*��s�3b','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/startOf.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/src/date/startOf.js',0,'R���;��Vo��e�','R���;��Vo��e�','!�W{22FkW�b�(Y�n���N�Y����','',0,'?'),('�V��\"�]��#�\Z�B�o','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/bind.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/function/bind.js',0,'�X\Z{��\"�3�O)���R','�X\Z{��\"�3�O)���R','c�>V�\nAX����f�P�I8|���ަ,I&','',0,'?'),('�[��k5�f/�u��0�','wp-includes/blocks/post-author-name/style.css','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/blocks/post-author-name/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q��T�b��l�G','7�.\"����\\�;�j��-��h|_�%','',0,'?'),('�\\�Ρ0�4t��3$�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Bus/Dispatcher.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Bus/Dispatcher.php',0,'��N9w$�k�pք��','��N9w$�k�pք��','�0̼�&��Z�xF�*<:�&SU���?\Z� �T','',0,'?'),('�a�8��(�>L\"֔�','wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/Bootstrap.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/roots/sage-installer/src/Presets/Bootstrap.php',0,'��\\=ӓ��&�dr��n5','��\\=ӓ��&�dr��n5','�e����\\\0T���3/F�\"�Et*\\�V','',0,'?'),('�en�ײ~���\n1�zv�','wp-content/themes/mint/node_modules/tape/test/harness.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/tape/test/harness.js',0,'�&:��\r�k:yÐ�K�','�&:��\r�k:yÐ�K�','��*~�# Q�@�>�Z�_1��k� \'d#�ye��','',0,'?'),('�e��Y��|E�>\n&E2','wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/reverse.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/mout/array/reverse.js',0,'�̯�8�N�9��','�̯�8�N�9��','���1��P��k\"�\r�P���Ϣ\'�ޙX\'M','',0,'?'),('�f��5������','wp-content/plugins/wordpress-seo/src/conditionals/admin/yoast-admin-conditional.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/conditionals/admin/yoast-admin-conditional.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S���p��!���si�0',' :��������N2���� � ���f6,o�Q� ','',0,'?'),('�j�<M�Dd����4m�','wp-admin/includes/ms-admin-filters.php','/home/adaptiv2/juiceelectrical.co.nz/wp-admin/includes/ms-admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ʊ_��\\�h\Z���E','�5G�F[P��r�T�\'xOQ���1�AN�Hd�w\\','',0,'?'),('�l��˟DRi�\n% 4�','wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Config/Repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/illuminate/contracts/Config/Repository.php',0,'X&�4���]���#��','X&�4���]���#��','�T%ƾs�,��}֫DK�@!$M���ș�','',0,'?'),('�p9�$�k�I\0W�','wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php',0,'G,c.F��h]�W�Ff�','G,c.F��h]�W�Ff�','~�C�r2(Z�Ϸ��a\"&�Y�͕���I��J�','',0,'?'),('�rG��}�.�D�!��','wp-content/themes/mint/node_modules/bower/lib/node_modules/graceful-readlink/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/graceful-readlink/index.js',0,'A�#{� ��L�ptf��','A�#{� ��L�ptf��','�[Z ��R;Oj��^��nʁ(L��0}`���','',0,'?'),('�~�7v1��c�SkB�','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseUniq.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/_baseUniq.js',0,'�)���T��LDŞ�s�','�)���T��LDŞ�s�','�H�EC�~V�Kh���Y���tf����','',0,'?'),('���ׇÌ!a�\"��&','wp-content/plugins/wordpress-seo/src/editors/application/seo/post-seo-information-repository.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/editors/application/seo/post-seo-information-repository.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɠ��a��S�*%0{[��','X���7Z9�q��z�8t~�Iw�y��n�sc��','',0,'?'),('���V����3\Z_���','wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FileCommentSniff.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/pinnclonesmalltest/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FileCommentSniff.php',0,'�B���� 9\Z����:�\"','�B���� 9\Z����:�\"','!>)Bxc���#�����Y�\'\'7�&��Ղ7','',0,'?'),('��;MχW++�X�','wp-content/themes/mint/node_modules/jshint/data/non-ascii-identifier-part-only.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/jshint/data/non-ascii-identifier-part-only.js',0,'~��wtu�%� ��YU','~��wtu�%� ��YU','�l�jTcy��r�]S݆w锪�7�lr��~�','',0,'?'),('�����V\0�{�q��G�)','wp-content/themes/mint/node_modules/bower/lib/node_modules/tunnel-agent/index.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/tunnel-agent/index.js',0,'�*,h��^��܌Č','�*,h��^��܌Č','K�U�T%��J���4�x�<ݩ��=s�{���','',0,'?'),('�����C�s���7���','wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/TransferManager.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wp-migrate-db-pro/class/Common/Transfers/Files/TransferManager.php',0,'v�1�N��zn�ɉ�','v�1�N��zn�ɉ�','ی$��y���R:KڨV��!Á-;��0CMX�','',0,'?'),('��z�5:�ʖ�{�','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/equals.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/array/equals.js',0,'4��Z��k���`��','4��Z��k���`��','u)�`����D� J������>Y�@�','',0,'?'),('����B��wuV�q��','wp-content/uploads/cache/43473a63d0593ec8183885a4b8e6e5a86e34417c.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/uploads/cache/43473a63d0593ec8183885a4b8e6e5a86e34417c.php',0,'��h*�״q���:���f','��h*�״q���:���f','\"[�M�4 ��a�6\'�&UN夭t>ߕ&�5','',0,'?'),('���L��5��@��%I�','wp-includes/SimplePie/src/Decode/HTML/Entities.php','/home/adaptiv2/juiceelectrical.co.nz/wp-includes/SimplePie/src/Decode/HTML/Entities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��jыp&y������U','��WP��*P=Nϻ;\Z���i��8��2�_��� ','',0,'?'),('������TO�$On`','wp-content/themes/mint/node_modules/request/lib/getSafe.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/request/lib/getSafe.js',0,'�����h�G}DC�d��','�����h�G}DC�d��','u���5F��*���l|f���{��T�ű��t?�`','',0,'?'),('���RW*?��T�1�','wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/array-set.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/source-map/lib/source-map/array-set.js',0,'˙7�#6=�[��J+X','˙7�#6=�[��J+X','=q3RIJN�4%��P��4�M�K:p�yq<NS','',0,'?'),('��]h�;Y�-O���K','wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-pointerevents.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/assets/vendor/modernizr/feature-detects/css-pointerevents.js',0,'++U�E��~��~�n�','++U�E��~��~�n�','�lF�J�ιmb���!Y�qn�1�j�`���xQ*','',0,'?'),('���4�b�\Z�!])0��8','wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/values.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/lodash/fp/values.js',0,'F�0{U��Y����I�','F�0{U��Y����I�','�?YY����F�ԍ��x#?=0�\n큯�hC�9','',0,'?'),('���$�����S?��','wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/infinite.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/grunt-modernizr/node_modules/uglify-js/test/unit/compress/expected/infinite.js',0,'â.�3|��8��t� ','â.�3|��8��t� ','j��h<�K�]�05�u�\ry�B+YhĆX����','',0,'?'),('���=cei�ٍ+��','wp-content/plugins/wordpress-seo/src/config/migrations/20201216124002_ExpandIndexableIDColumnLengths.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/src/config/migrations/20201216124002_ExpandIndexableIDColumnLengths.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�=���|�p<�~*i','�1 �ۍCԧ\\��ũ�sژߟT�{G�> �u�','',0,'?'),('��)�d�wg��C=�^-','wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/proxy-reader.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/fstream/lib/proxy-reader.js',0,'[qz��S6��L�B=*','[qz��S6��L�B=*','�D�\'��fk�$9J��&�䲳�I�','',0,'?'),('�����Ԑ���fW\"N','wp-content/themes/twentytwentytwo/inc/patterns/query-image-grid.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/twentytwentytwo/inc/patterns/query-image-grid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1x;����:y�V','s�/��1��K��-��ˑ�Y�x���y�e߽�','',0,'?'),('��S�!X�� ��6�','wp-content/plugins/wordpress-seo/images/academy/site_structure.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/images/academy/site_structure.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƤA�֑����BszC','�p��R��}Tᰂ�[|UǶ�ԭ�&*�$�A','',0,'?'),('��w�ć�5����=','wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/unknown.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/meow/node_modules/minimist/test/unknown.js',0,'hH}�]C#���xwڇ6','hH}�]C#���xwڇ6','���I��E@�#-\rǐ�V{Ny�%{��֖hc','',0,'?'),('��6�!]��T����','wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/reduce.js','/home/adaptiv2/juiceelectrical.co.nz/wp-content/themes/mint/node_modules/bower/lib/node_modules/bower-config/node_modules/mout/src/collection/reduce.js',0,'\rR�ζ:$�&�}u���','\rR�ζ:$�&�}u���','G9e���Ry�ho��jyi���4�*��\\v�(x','',0,'?'),('�Ǡ� v*\Z�@�5p�','wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/index.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/advanced-custom-fields-pro/includes/admin/post-types/index.php',0,'9�i%X=�;�Q�8ͱ�g','9�i%X=�;�Q�8ͱ�g','R�v:6Q��O]c|f�XYC��$��]�ڳ��','',0,'?'),('�Ρ~�ߓ�:����eo','wp-content/plugins/wordfence/images/icons/tick128.png','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordfence/images/icons/tick128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ğ��c�h4\"���','����V��}X e~G[C�峆��5������','',0,'?'),('�ώzkks���k-\0F','wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-rankmath.php','/home/adaptiv2/juiceelectrical.co.nz/wp-content/plugins/wordpress-seo/admin/import/plugins/class-import-rankmath.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','